all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Alan Mackenzie <acm@muc.de>
To: Yuan Fu <casouri@gmail.com>
Cc: Eli Zaretskii <eliz@gnu.org>, 59738@debbugs.gnu.org
Subject: bug#59738: c-ts-mode is slow with large buffers.
Date: Sun, 11 Dec 2022 13:22:31 +0000	[thread overview]
Message-ID: <Y5XZl+lC1pp05Hxd@ACM> (raw)
In-Reply-To: <E8E454C2-5E41-4E85-BE26-962DD6FD6378@gmail.com>

Hello, Yuan.

On Sat, Dec 10, 2022 at 15:14:27 -0800, Yuan Fu wrote:

> > On Dec 10, 2022, at 1:34 PM, Alan Mackenzie <acm@muc.de> wrote:

[ .... ]

> > The bug which was causing it to be very slow is fixed, so I agree,
> > excellent job!

> > But I've measured it as being 62% faster (not twice as fast) as CC
> > Mode.  A "normal" C file (xdisp.c) is around 160% faster, i.e. a
> > little over 2½ times as fast.  These timings are indeed significantly
> > faster.

> > But given how slow CC Mode was held to be, is a factor 2.6 speed-up
> > really all that we were expecting from c-ts-mode?  This is the sort
> > of speed-up one would get by replacing a 5 year old machine with a
> > new one, or using an optimised build in place of a debug build.

> > Was I perhaps a little unrealistic in expecting an order of magnitude
> > speed-up?  Is there still scope for optimisation in c-ts-mode?

> AFAIK not too much room for optimization. Querying the patterns takes
> like 99% of the time during fontification.  Querying time (thus
> fontification time) increases as the buffer size increases, even if we
> limit the range of the query to a fixed region (which is what we do in
> tree-sitter font-lock).

This seems similar to c-mode, where a syntactically coherent region is
determined each time fontification is done.

> This is unlike c-mode, where fontifying a region takes the same amount
> of time regardless of the buffer size.

OK, thanks for the explanation.

> Some benchmarks I did:

> In xdisp.c

> Time        Task
> 0.0008      A single query for comments
> 0.008       All queries in c-ts-mode
> 0.00815     treesit-font-lock-fontify-region (1500 char)
> 0.0214      font-lock-fontify-region in c-mode (1500 char)
> 12.048      time-scroll in c-ts-mode
> 21.206      time-scroll in c-mode
> 5.539       time-scroll in fundamental-mode

> In treesit.c

> Time        Task
> 0.00336     All queries in c-ts-mode
> 0.00391     treesit-font-lock-fontify-region (1500 char)
> 0.0281      font-lock-fontify-region in c-mode (1500 char)
> 1.958       time-scroll in c-ts-mode
> 1.969       time-scroll in c-mode
> 0.535       time-scroll in fundamental-mode

Those look the same as timings I've done.

> Though I’ll note that tree-sitter would provide other benefits. I don’t
> know how much time does c-mode spend on analyzing the buffer content
> when user edits it, ....

It's quite a lot.  Occasionally, it's enough to make the response appear
a little sluggish.  This analysis, time-wise, is less critical than the
time taken for font locking, though.

> .... but I imagine tree-sitter to be faster in that regard, too. That
> should help the perceived performance. Also (unrelated to performance)
> tree-sitter makes it vastly easier to write (and maintain) a major
> mode.

Yes indeed!  We have the advantage that a core part of the functionality
is taken care of by an external party.  But we also have the disadvantage
that a core part of the functionality is taken care of by an external
party.

> Yuan

-- 
Alan Mackenzie (Nuremberg, Germany).





  parent reply	other threads:[~2022-12-11 13:22 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-01 11:50 bug#59738: c-ts-mode is slow with large buffers Alan Mackenzie
2022-12-03 10:37 ` Yuan Fu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-12-07  4:56 ` Yuan Fu
2022-12-07 17:23   ` Eli Zaretskii
2022-12-08  0:40     ` Yuan Fu
2022-12-08 20:37       ` Eli Zaretskii
2022-12-10 21:34         ` Alan Mackenzie
2022-12-10 23:14           ` Yuan Fu
2022-12-11  7:25             ` Eli Zaretskii
2022-12-11 13:22             ` Alan Mackenzie [this message]
2022-12-11 16:38               ` Dmitry Gutov
2022-12-11  6:45           ` Eli Zaretskii
2022-12-11 17:13             ` Alan Mackenzie
2022-12-11 17:38               ` Eli Zaretskii
2022-12-11 18:39                 ` Alan Mackenzie
2022-12-11 19:14                   ` Eli Zaretskii
2022-12-13  1:20           ` Stefan Kangas
2022-12-07 14:34 ` Eli Zaretskii
2022-12-07 14:58   ` Eli Zaretskii
2022-12-07 15:46   ` Alan Mackenzie
2023-01-07 23:08 ` Yuan Fu

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=Y5XZl+lC1pp05Hxd@ACM \
    --to=acm@muc.de \
    --cc=59738@debbugs.gnu.org \
    --cc=casouri@gmail.com \
    --cc=eliz@gnu.org \
    /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.