all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Alan Mackenzie <acm@muc.de>
To: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: emacs-devel@gnu.org
Subject: Re: Idea for syntax-ppss.  Is it new?  Could it be any good?
Date: Sun, 27 Jul 2008 19:20:45 +0000	[thread overview]
Message-ID: <20080727192045.GB1598@muc.de> (raw)
In-Reply-To: <jwvod4j49qz.fsf-monnier+emacs@gnu.org>

Hi, Stefan,

On Sun, Jul 27, 2008 at 11:51:36AM -0400, Stefan Monnier wrote:
> >> Isn't that what syntax-ppss does?
> > It caches the state for several positions, but I don't think they're at
> > regular positions.

> C-h v syntax-ppss-max-span

> It's not exactly perfectly regular, but I don't think the difference
> matters.

I was looking at my 3Mb buffer, and it seemed they were at wildly
irregular positions.  But I think I was seeing something which wasn't
really there.

> > partial-parse-sexp is blindingly fast.  To scan an entire 3Mb C
> > buffer on my elderly 1.2 GHz Athlon takes 0.27s.  That is why I
> > suspect that the lisping in syntax-ppss might need severe
> > optimisation.  But again, it's only a hunch.

> When I wrote syntax-ppss, my main goal was to never be significantly
> slower than parse-partial-sexp.  Even if it's not as fast as it could
> be if written in C (which is pretty much obviously true), that's not a
> reason to recode it in C.

Surely the goal should be to be significantly faster most of the time.
Presumably it achieves this in practice.  The reason to recode in C
would be to make it fast enough, or to couple it up to things which
couldn't be done in lisp.  But probably neither of these things is
needed.

> > What I think really needs doing is to make this function
> > bulletproof: It should work on narrowed buffers,

> That can be done, tho it needs extra info in order to know how to
> interpret the fact that it's narrowed.

Don't understand.  The function is defined as the equivalent of
(parse-partial-sexp (point-min) pos)?  You've said before that the
function is best not called when a buffer is narrowed.  Couldn't we just
redefine it as (parse-partial-sexp 1 pos)?  Then we could just put
(save-extension (widen ..... )) into syntax-ppss.

[ .... ]

> I think this will result in too many cache flushes and will make the
> code too intrusive or too ad-hoc.  I'd rather have a
> syntax-ppss-syntax-table (and force parse-sexp-lookup-properties to t)
> if you want more reliable results.

Hey, syntax-ppss-syntax-table is a brilliant idea!  In its doc string one
could say "after setting this, clear the cache by calling ...
(syntax-ppss-flush-cache 1)".

> > Also, Lennart is asking for it to work nicely with multiple major modes.
> > Surely this would be a Good Thing.  Files containing several major modes
> > are commonplace (awk or sed embedded within a shell script, html
> > embedded within php, ....).

> Yes, that's a desirable extension.

> > At the moment, CC Mode applies a heuristic maximum size of strings and
> > comments, for performance reasons.  Checking for strings and comments is
> > done so frequently that the mode uses elaborate internal caches.  It
> > would be nice if this cacheing could move to the Emacs core.

> You can do it today.  Have you even tried to use syntax-ppss before
> asking for it to be improved?

No.  I think I've been scared by its vagueness (about narrowed regions)
more than anything.  It's defined in the elisp manual as equivalent to
(pps (point-min) pos) rather than (pps 1 pos).  It also uses
syntax-begin-function, which doesn't seem right, and wouldn't work well
in CC Mode; the only way s-b-f can give a cast-iron result is by calling
parse-partial-sexp, or syntax-ppss.  In fact, if syntax-ppss was
bulletproof, syntax-begin-function would be redundant.  I don't think
syntax-ppss is quite the right function for what I want to do.  I need
something like it, but not identical.

Maybe I should test syntax-ppss by coding up inside a macro which
widens.  And I've been less than convinced it's actually faster.  In
fact, I'll go and do some speed tests and report back.

> > Again, this isn't something which can be implemented in a weekend,
> > but I think it would be worthwhile for Emacs 24.

> Other than the multi-major-mode part, it all sounds like very
> minor changes.

Maybe.

>         Stefan

-- 
Alan Mackenzie (Nuremberg, Germany).




  reply	other threads:[~2008-07-27 19:20 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-07-26 21:44 Idea for syntax-ppss. Is it new? Could it be any good? Alan Mackenzie
2008-07-27  0:36 ` Lennart Borgman (gmail)
2008-07-27  1:34 ` Stefan Monnier
2008-07-27 14:50   ` Alan Mackenzie
2008-07-27 15:51     ` Stefan Monnier
2008-07-27 19:20       ` Alan Mackenzie [this message]
2008-07-27 20:17         ` Stefan Monnier
2008-07-28  2:27     ` Richard M Stallman
2008-07-28  4:08       ` Stefan Monnier
2008-07-28 21:47         ` Richard M Stallman
2008-08-31  8:37     ` Better parse-partial-sexp; multiple major modes (was: Idea for syntax-ppss) Daniel Colascione
2008-08-31 15:02       ` Better parse-partial-sexp; multiple major modes Lennart Borgman (gmail)
2008-09-01  6:10       ` Better parse-partial-sexp; multiple major modes (was: Idea for syntax-ppss) Richard M. Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080727192045.GB1598@muc.de \
    --to=acm@muc.de \
    --cc=emacs-devel@gnu.org \
    --cc=monnier@iro.umontreal.ca \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.