[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#71644: 30.0.50; Severe slowdown in larger files with markers beginni
From: |
Stefan Monnier |
Subject: |
bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+ |
Date: |
Fri, 21 Jun 2024 16:53:04 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
>>From 0bafd288faee8cae33fe4a122f6e3ac73ec10d60 Mon Sep 17 00:00:00 2001
> Message-ID:
> <0bafd288faee8cae33fe4a122f6e3ac73ec10d60.1718950719.git.yantar92@posteo.net>
> From: Ihor Radchenko <yantar92@posteo.net>
> Date: Sun, 23 Apr 2023 21:31:46 +0200
> Subject: [PATCH] * src/marker.c (buf_bytepos_to_charpos): Limit marker search
>
> Limit searching across buffer markers to first 50 markers and thus
> avoid performance scaling with the number of markers.
>
> I got 5x `re-search-forward' speed improvement in my setup with this
> dumb change.
Hmm... of course, there'd likely be other circumstances where it would
make it 5x slower. E.g. in a large buffer, doing a forward search from
the middle of the buffer when the first 50 markers happen to all be near
the beginning of the buffer will mean that we always use the "slow path"
which scans all the bytes between PT and the position of interest to
count the number of chars therein.
BTW, we already stop after at most N/50 markers where N is the smallest
distance between the position of interest and point/bob/eob/gap (oh and
the position of the last conversion). So it seems that in your test,
this distance N is >2500. Also when that distance is >5000 we create
a new marker, so next time around that position should be at the
beginning of the marker-list. So I wonder what happens in your test:
why do we jump "very far" (more than 2500) between each call to the
conversion function? Also, maybe we should increase
BYTECHAR_DISTANCE_INCREMENT? ]
This byte_to_char and char_to_byte conversion business is a real PITA.
[ In retrospect I wish we'd stuck to the Emacs-20.1 design where
chars=bytes. I know it introduced a lot of breakage (and it'd be even
worse now), but it is The Right Thing™ if you can ignore backward
compatibility. ]
Using markers as a cheap cache of conversions was a cute hack but we
really need to replace it.
Some options that come to mind:
- Keep the tradition of abusing an existing data structure, and stash
the bytepos info inside the overlay tree or the text properties.
This way the conversion is bounded by O(log BUFFERSIZE).
- Use a dedicated data-structure. E.g. a pair of array-with-a-gap
(one indexed by BYTEPOS/STEP the other indexed by CHARPOS/STEP, where
STEP would be a large enough constant to make those arrays cheap yet
small enough that the remaining scan is cheap).
This way the conversion is O(STEP), i.e. "constant-time".
BTW, among my various local hacks, I've been using the hack below, which
aims to randomize the order in our markers-list, so as to minimize the
risk that we have to wade through lots of markers all clumped around the
same position. I don't think it does a good job of it, but maybe we can
improve the execution of this idea, tho it still doesn't help if there's
no GC involved.
BTW, if/when we use some other data-structure to convert bytes<->chars,
then we could presumably get rid of our markers-list and stash markers
inside our overlay tree (basically represent them as degenerate overlays
with beg==end and no properties).
Stefan
diff --git a/src/alloc.c b/src/alloc.c
index 9304e4e42bb..07409e7cfc3 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -7836,10 +7514,22 @@ sweep_symbols (void)
unchain_dead_markers (struct buffer *buffer)
{
struct Lisp_Marker *this, **prev = &BUF_MARKERS (buffer);
+ /* In order to try and avoid worst case behaviors in buf_charpos_to_bytepos
+ we try and randomize the order of markers here. */
+ unsigned i = 4;
while ((this = *prev))
if (vectorlike_marked_p (&this->header))
- prev = &this->next;
+ {
+ if (!shuffle_markers || i++ % 8)
+ prev = &this->next;
+ else
+ { /* Move this one to front, just to shuffle things a bit. */
+ *prev = this->next;
+ this->next = BUF_MARKERS (buffer);
+ BUF_MARKERS (buffer) = this;
+ }
+ }
else
{
this->buffer = NULL;
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+, Mitchell, 2024/06/19
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+, Eli Zaretskii, 2024/06/19
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+, Mitchell, 2024/06/20
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+, Eli Zaretskii, 2024/06/20
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+, Mitchell, 2024/06/20
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+, Ihor Radchenko, 2024/06/21
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+,
Stefan Monnier <=
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+, Gerd Möllmann, 2024/06/22
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+, Ihor Radchenko, 2024/06/22
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+, Stefan Monnier, 2024/06/22
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+, Stefan Monnier, 2024/06/24
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+, Eli Zaretskii, 2024/06/25
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+, Ihor Radchenko, 2024/06/25
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+, Eli Zaretskii, 2024/06/25
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+, Ihor Radchenko, 2024/06/25
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+, Eli Zaretskii, 2024/06/25
- bug#71644: 30.0.50; Severe slowdown in larger files with markers beginning in emacs 29+, Ihor Radchenko, 2024/06/25