* Some experience with the igc branch
@ 2024-12-22 15:40 Óscar Fuentes
2024-12-22 17:18 ` Gerd Möllmann
` (2 more replies)
0 siblings, 3 replies; 129+ messages in thread
From: Óscar Fuentes @ 2024-12-22 15:40 UTC (permalink / raw)
To: emacs-devel
I've using the igc branch for the past weeks. It was mostly Dart/Flutter
development with lsp-dart / lsp-mode enabled, with all its default
features enabled. On top of that, I use the flx completion algorithm.
This setup puts a lot of stress on GC. To illustrate, on master Emacs
after setting garbage-collection-messages to t, one can see that simply
writing a few characters triggers GC several times, each with its
corresponding pause, which may be very noticeable ("uh! that keypress
didn't register... wait, there it is.") The experience is not great.
Quite miserable, I would say. People suggest playing with
gc-cons-threshold (I have mine set to 10'000'000) but those tricks
simply make things a bit less awful.
With igc the pauses are still there, but they much shorter and
predictable, they no longer distract me from thinking on what I'm
writing, which is a huge improvement. I suspect that some of those
pauses are not related to garbage collection (executing code and moving
data also takes time.)
TL/DR: now I enjoy using Emacs with this setup and I'm no longer tempted
to switch to other editors for this type of work.
A big thank you to all involved on this feature.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-22 15:40 Some experience with the igc branch Óscar Fuentes
@ 2024-12-22 17:18 ` Gerd Möllmann
2024-12-22 17:29 ` Gerd Möllmann
2024-12-22 17:41 ` Pip Cet via Emacs development discussions.
2 siblings, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-22 17:18 UTC (permalink / raw)
To: Óscar Fuentes; +Cc: emacs-devel
Óscar Fuentes <ofv@wanadoo.es> writes:
> I've using the igc branch for the past weeks. It was mostly Dart/Flutter
> development with lsp-dart / lsp-mode enabled, with all its default
> features enabled. On top of that, I use the flx completion algorithm.
>
> This setup puts a lot of stress on GC. To illustrate, on master Emacs
> after setting garbage-collection-messages to t, one can see that simply
> writing a few characters triggers GC several times, each with its
> corresponding pause, which may be very noticeable ("uh! that keypress
> didn't register... wait, there it is.") The experience is not great.
> Quite miserable, I would say. People suggest playing with
> gc-cons-threshold (I have mine set to 10'000'000) but those tricks
> simply make things a bit less awful.
>
> With igc the pauses are still there, but they much shorter and
> predictable, they no longer distract me from thinking on what I'm
> writing, which is a huge improvement. I suspect that some of those
> pauses are not related to garbage collection (executing code and moving
> data also takes time.)
>
> TL/DR: now I enjoy using Emacs with this setup and I'm no longer tempted
> to switch to other editors for this type of work.
>
> A big thank you to all involved on this feature.
👍
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-22 15:40 Some experience with the igc branch Óscar Fuentes
2024-12-22 17:18 ` Gerd Möllmann
@ 2024-12-22 17:29 ` Gerd Möllmann
2024-12-22 17:41 ` Pip Cet via Emacs development discussions.
2 siblings, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-22 17:29 UTC (permalink / raw)
To: Óscar Fuentes; +Cc: emacs-devel
Óscar Fuentes <ofv@wanadoo.es> writes:
> With igc the pauses are still there, but they much shorter and
> predictable, they no longer distract me from thinking on what I'm
> writing, which is a huge improvement. I suspect that some of those
> pauses are not related to garbage collection (executing code and moving
> data also takes time.)
In my case, with Eglot, the following settings made a difference;
:custom
(eglot-sync-connect nil)
(eglot-events-buffer-config '(:size 0 :format full)))
Don't know if Lsp-mode has similar knobs.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-22 15:40 Some experience with the igc branch Óscar Fuentes
2024-12-22 17:18 ` Gerd Möllmann
2024-12-22 17:29 ` Gerd Möllmann
@ 2024-12-22 17:41 ` Pip Cet via Emacs development discussions.
2024-12-22 17:56 ` Gerd Möllmann
` (3 more replies)
2 siblings, 4 replies; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-22 17:41 UTC (permalink / raw)
To: Óscar Fuentes
Cc: emacs-devel, Gerd Möllmann, Helmut Eller, Andrea Corallo
Óscar Fuentes <ofv@wanadoo.es> writes:
> With igc the pauses are still there, but they much shorter and
> predictable, they no longer distract me from thinking on what I'm
> writing, which is a huge improvement. I suspect that some of those
> pauses are not related to garbage collection (executing code and moving
> data also takes time.)
Quite possible. Even if it is GC, please keep in mind that MPS has many
settings which you can play with, and it can improve things a lot. It's
not too early to become a fan of the scratch/igc branch, but it is too
early to reject it for performance reasons. It's a "heads you lose, tails I
win" situation, I guess.
> TL/DR: now I enjoy using Emacs with this setup and I'm no longer tempted
> to switch to other editors for this type of work.
I think this is an important point: ultimately, it's about having daily
drivers. We need to remove the remaining impediments for that:
1. The signal issue. I don't have a good way to fix this and make
everyone happy, but I do have a solution which hasn't caused a crash for
me in quite a while. It may be good enough.
2. no-purespace. Merging that into scratch/igc would help, well, me.
What do others think?
3. bytecode stack marking. That comment raises my red-flag alert,
because it sounds like we're just accepting a preventable crash at this
stage rather than wanting to do anything about it. The reality, of
course, is different, but I'd be happier if we refused to create a byte
code object that intends to use more stack than we can guarantee we
would scan. Can we do that?
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-22 17:41 ` Pip Cet via Emacs development discussions.
@ 2024-12-22 17:56 ` Gerd Möllmann
2024-12-22 19:11 ` Óscar Fuentes
` (2 subsequent siblings)
3 siblings, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-22 17:56 UTC (permalink / raw)
To: Pip Cet; +Cc: Óscar Fuentes, emacs-devel, Helmut Eller, Andrea Corallo
Pip Cet <pipcet@protonmail.com> writes:
> 3. bytecode stack marking. That comment raises my red-flag alert,
> because it sounds like we're just accepting a preventable crash at this
> stage rather than wanting to do anything about it. The reality, of
> course, is different, but I'd be happier if we refused to create a byte
> code object that intends to use more stack than we can guarantee we
> would scan. Can we do that?
>
> Pip
You mean my comment here?
static mps_res_t
scan_bc (mps_ss_t ss, void *start, void *end, void *closure)
{
MPS_SCAN_BEGIN (ss)
{
struct igc_thread_list *t = closure;
struct bc_thread_state *bc = &t->d.ts->bc;
igc_assert (start == (void *) bc->stack);
igc_assert (end == (void *) bc->stack_end);
/* FIXME/igc: AFAIU the current top frame starts at
bc->fp->next_stack and has a maximum length that is given by the
bytecode being executed (COMPILED_STACK_DEPTH). So, we need to
scan upto bc->fo->next_stack + that max depth to be safe. Since
I don't have that number ATM, I'm using an arbitrary estimate for
now.
This must be changed to something better. Note that Mattias said
the bc stack marking will be changed in the future. */
const size_t HORRIBLE_ESTIMATE = 1024;
char *scan_end = bc_next_frame (bc->fp);
scan_end += HORRIBLE_ESTIMATE;
end = min (end, (void *) scan_end);
if (end > start)
IGC_FIX_CALL (ss, scan_ambig (ss, start, end, NULL));
}
MPS_SCAN_END (ss);
return MPS_RES_OK;
}
I never felt like changing the byte code stack, TBH. For reasons :-).
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-22 17:41 ` Pip Cet via Emacs development discussions.
2024-12-22 17:56 ` Gerd Möllmann
@ 2024-12-22 19:11 ` Óscar Fuentes
2024-12-23 0:05 ` Pip Cet via Emacs development discussions.
2024-12-23 6:27 ` Jean Louis
2024-12-22 20:29 ` Helmut Eller
2024-12-22 20:50 ` Gerd Möllmann
3 siblings, 2 replies; 129+ messages in thread
From: Óscar Fuentes @ 2024-12-22 19:11 UTC (permalink / raw)
To: emacs-devel; +Cc: Pip Cet, Gerd Möllmann, Helmut Eller, Andrea Corallo
Pip Cet via "Emacs development discussions." <emacs-devel@gnu.org>
writes:
>> I suspect that some of those
>> pauses are not related to garbage collection (executing code and moving
>> data also takes time.)
>
> Quite possible. Even if it is GC, please keep in mind that MPS has many
> settings which you can play with, and it can improve things a lot. It's
> not too early to become a fan of the scratch/igc branch, but it is too
> early to reject it for performance reasons. It's a "heads you lose, tails I
> win" situation, I guess.
IIRC MPS is well documented and I can look up those settings, but does
Emacs collect the required info for taking informed decisions?
Anyway, with the setup I'm using for this job is totally unrealistic to
expect instant reaction from Emacs, there is too much heavy stuff
kicking in for every keypress.
> 1. The signal issue. I don't have a good way to fix this and make
> everyone happy, but I do have a solution which hasn't caused a crash for
> me in quite a while. It may be good enough.
Inevitably, a few minutes after sending my message Emacs froze after
working flawlessly since you fixed the JSON issue.
Redisplay just stopped while showing the menu, no crash nor infinite
loop, its CPU usage was typical for the repeating timers that my config
creates. Sadly, instead of attaching gdb I tried to wake up Emacs by
sending SIGUSR1 (no effect, as it is the wrong signal, should be
SIGUSR2) and then sent SINGINT by mistake, which terminated the process.
It's very likely that MPS is innocent on this, but I'm happy to apply
and test any stability improvement patch you have and wish to share.
Thanks.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-22 17:41 ` Pip Cet via Emacs development discussions.
2024-12-22 17:56 ` Gerd Möllmann
2024-12-22 19:11 ` Óscar Fuentes
@ 2024-12-22 20:29 ` Helmut Eller
2024-12-22 20:50 ` Gerd Möllmann
3 siblings, 0 replies; 129+ messages in thread
From: Helmut Eller @ 2024-12-22 20:29 UTC (permalink / raw)
To: Pip Cet; +Cc: Óscar Fuentes, emacs-devel, Gerd Möllmann,
Andrea Corallo
On Sun, Dec 22 2024, Pip Cet wrote:
> 2. no-purespace. Merging that into scratch/igc would help, well, me.
> What do others think?
No objections from me.
> 3. bytecode stack marking. That comment raises my red-flag alert,
> because it sounds like we're just accepting a preventable crash at this
> stage rather than wanting to do anything about it. The reality, of
> course, is different, but I'd be happier if we refused to create a byte
> code object that intends to use more stack than we can guarantee we
> would scan. Can we do that?
Maybe the bytecode engine could handle large stack frames differently
from small stack frames.
For large stack frames we would:
1. initialize the stack frame with NULLs
2. bump the stack pointer
3. now the stack frame is usable
For small stack frames, we would skip step 1 but the GC would always
scan one extra "small frame with maximal length".
Helmut
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-22 17:41 ` Pip Cet via Emacs development discussions.
` (2 preceding siblings ...)
2024-12-22 20:29 ` Helmut Eller
@ 2024-12-22 20:50 ` Gerd Möllmann
2024-12-22 22:26 ` Pip Cet via Emacs development discussions.
3 siblings, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-22 20:50 UTC (permalink / raw)
To: Pip Cet; +Cc: Óscar Fuentes, emacs-devel, Helmut Eller, Andrea Corallo
Pip Cet <pipcet@protonmail.com> writes:
> Óscar Fuentes <ofv@wanadoo.es> writes:
>> With igc the pauses are still there, but they much shorter and
>> predictable, they no longer distract me from thinking on what I'm
>> writing, which is a huge improvement. I suspect that some of those
>> pauses are not related to garbage collection (executing code and moving
>> data also takes time.)
>
> Quite possible. Even if it is GC, please keep in mind that MPS has many
> settings which you can play with, and it can improve things a lot. It's
> not too early to become a fan of the scratch/igc branch, but it is too
> early to reject it for performance reasons. It's a "heads you lose, tails I
> win" situation, I guess.
>
>> TL/DR: now I enjoy using Emacs with this setup and I'm no longer tempted
>> to switch to other editors for this type of work.
>
> I think this is an important point: ultimately, it's about having daily
> drivers. We need to remove the remaining impediments for that:
>
> 1. The signal issue. I don't have a good way to fix this and make
> everyone happy, but I do have a solution which hasn't caused a crash for
> me in quite a while. It may be good enough.
TBH, I'd have put it in already.
> 2. no-purespace. Merging that into scratch/igc would help, well, me.
> What do others think?
Doesn't affect me much.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-22 20:50 ` Gerd Möllmann
@ 2024-12-22 22:26 ` Pip Cet via Emacs development discussions.
2024-12-23 3:23 ` Gerd Möllmann
2024-12-23 13:35 ` Some experience with the igc branch Eli Zaretskii
0 siblings, 2 replies; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-22 22:26 UTC (permalink / raw)
To: Gerd Möllmann
Cc: Óscar Fuentes, emacs-devel, Helmut Eller, Andrea Corallo
Gerd Möllmann <gerd.moellmann@gmail.com> writes:
> Pip Cet <pipcet@protonmail.com> writes:
>
>> Óscar Fuentes <ofv@wanadoo.es> writes:
>>> With igc the pauses are still there, but they much shorter and
>>> predictable, they no longer distract me from thinking on what I'm
>>> writing, which is a huge improvement. I suspect that some of those
>>> pauses are not related to garbage collection (executing code and moving
>>> data also takes time.)
>>
>> Quite possible. Even if it is GC, please keep in mind that MPS has many
>> settings which you can play with, and it can improve things a lot. It's
>> not too early to become a fan of the scratch/igc branch, but it is too
>> early to reject it for performance reasons. It's a "heads you lose, tails I
>> win" situation, I guess.
>>
>>> TL/DR: now I enjoy using Emacs with this setup and I'm no longer tempted
>>> to switch to other editors for this type of work.
>>
>> I think this is an important point: ultimately, it's about having daily
>> drivers. We need to remove the remaining impediments for that:
>>
>> 1. The signal issue. I don't have a good way to fix this and make
>> everyone happy, but I do have a solution which hasn't caused a crash for
>> me in quite a while. It may be good enough.
>
> TBH, I'd have put it in already.
Pushed it now. It is imperfect, but better than crashing.
>> 2. no-purespace. Merging that into scratch/igc would help, well, me.
>> What do others think?
>
> Doesn't affect me much.
Well, it does cause some noise, so I thought I'd ask first.
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-22 19:11 ` Óscar Fuentes
@ 2024-12-23 0:05 ` Pip Cet via Emacs development discussions.
2024-12-23 1:00 ` Óscar Fuentes
2024-12-23 3:42 ` Some experience with the igc branch Gerd Möllmann
2024-12-23 6:27 ` Jean Louis
1 sibling, 2 replies; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-23 0:05 UTC (permalink / raw)
To: Óscar Fuentes
Cc: emacs-devel, Gerd Möllmann, Helmut Eller, Andrea Corallo
Óscar Fuentes <ofv@wanadoo.es> writes:
> Pip Cet via "Emacs development discussions." <emacs-devel@gnu.org>
> writes:
>
>>> I suspect that some of those
>>> pauses are not related to garbage collection (executing code and moving
>>> data also takes time.)
>>
>> Quite possible. Even if it is GC, please keep in mind that MPS has many
>> settings which you can play with, and it can improve things a lot. It's
>> not too early to become a fan of the scratch/igc branch, but it is too
>> early to reject it for performance reasons. It's a "heads you lose, tails I
>> win" situation, I guess.
>
> IIRC MPS is well documented and I can look up those settings, but does
> Emacs collect the required info for taking informed decisions?
Not that I'm aware of, at this point.
>> 1. The signal issue. I don't have a good way to fix this and make
>> everyone happy, but I do have a solution which hasn't caused a crash for
>> me in quite a while. It may be good enough.
>
> Inevitably, a few minutes after sending my message Emacs froze after
> working flawlessly since you fixed the JSON issue.
Sorry to hear it, and thanks for letting us know! If it happens again,
any additional information you can provide would be very helpful.
> Redisplay just stopped while showing the menu, no crash nor infinite
> loop, its CPU usage was typical for the repeating timers that my config
> creates.
That's a bit odd. It might be the signal issue, but that's purely a
guess. If it happens again, please let us know.
Which windowing system are you using, and how are you displaying menus,
though?
> It's very likely that MPS is innocent on this, but I'm happy to apply
> and test any stability improvement patch you have and wish to share.
I just pushed the temporary fix for the signal issue, which should
improve stability.
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 0:05 ` Pip Cet via Emacs development discussions.
@ 2024-12-23 1:00 ` Óscar Fuentes
2024-12-24 22:34 ` Pip Cet via Emacs development discussions.
2024-12-23 3:42 ` Some experience with the igc branch Gerd Möllmann
1 sibling, 1 reply; 129+ messages in thread
From: Óscar Fuentes @ 2024-12-23 1:00 UTC (permalink / raw)
To: Pip Cet; +Cc: emacs-devel, Gerd Möllmann, Helmut Eller, Andrea Corallo
Pip Cet <pipcet@protonmail.com> writes:
>> Redisplay just stopped while showing the menu, no crash nor infinite
>> loop, its CPU usage was typical for the repeating timers that my config
>> creates.
>
> That's a bit odd. It might be the signal issue, but that's purely a
> guess. If it happens again, please let us know.
Sure.
> Which windowing system are you using, and how are you displaying menus,
> though?
Configured using:
'configure CPPFLAGS=-I/home/oscar/dev/include/mps
LDFLAGS=-L/home/oscar/dev/other/mps/code --with-native-compilation
--with-tree-sitter --without-toolkit-scroll-bars --with-x-toolkit=lucid
--with-modules --without-imagemagick --with-mps=yes'
Configured features:
CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GSETTINGS HARFBUZZ JPEG LIBOTF
LIBSELINUX LIBXML2 MODULES MPS NATIVE_COMP NOTIFY INOTIFY PDUMPER PNG
SECCOMP SOUND SQLITE3 THREADS TIFF TREE_SITTER WEBP X11 XAW3D XDBE XIM
XINPUT2 XPM LUCID ZLIB
I have the menubar disabled (menu-bar-mode -1) and use a custom command
to open it:
(defun my-menu-bar-open-after ()
(remove-hook 'pre-command-hook 'my-menu-bar-open-after)
(when (eq menu-bar-mode 42)
(menu-bar-mode -1)))
(defun my-menu-bar-open (&rest args)
(interactive)
(let ((open menu-bar-mode))
(unless open
(menu-bar-mode 1))
(funcall 'menu-bar-open args)
(unless open
(setq menu-bar-mode 42)
(add-hook 'pre-command-hook 'my-menu-bar-open-after))))
(global-set-key [f10] 'my-menu-bar-open)
On that same session I used the command multiple times.
>> It's very likely that MPS is innocent on this, but I'm happy to apply
>> and test any stability improvement patch you have and wish to share.
>
> I just pushed the temporary fix for the signal issue, which should
> improve stability.
Emacs is already running here with that commit. Thanks!
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-22 22:26 ` Pip Cet via Emacs development discussions.
@ 2024-12-23 3:23 ` Gerd Möllmann
[not found] ` <m234ieddeu.fsf_-_@gmail.com>
2024-12-23 13:35 ` Some experience with the igc branch Eli Zaretskii
1 sibling, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-23 3:23 UTC (permalink / raw)
To: Pip Cet; +Cc: Óscar Fuentes, emacs-devel, Helmut Eller, Andrea Corallo
Pip Cet <pipcet@protonmail.com> writes:
> Gerd Möllmann <gerd.moellmann@gmail.com> writes:
>
>> Pip Cet <pipcet@protonmail.com> writes:
>>
>>> Óscar Fuentes <ofv@wanadoo.es> writes:
>>>> With igc the pauses are still there, but they much shorter and
>>>> predictable, they no longer distract me from thinking on what I'm
>>>> writing, which is a huge improvement. I suspect that some of those
>>>> pauses are not related to garbage collection (executing code and moving
>>>> data also takes time.)
>>>
>>> Quite possible. Even if it is GC, please keep in mind that MPS has many
>>> settings which you can play with, and it can improve things a lot. It's
>>> not too early to become a fan of the scratch/igc branch, but it is too
>>> early to reject it for performance reasons. It's a "heads you lose, tails I
>>> win" situation, I guess.
>>>
>>>> TL/DR: now I enjoy using Emacs with this setup and I'm no longer tempted
>>>> to switch to other editors for this type of work.
>>>
>>> I think this is an important point: ultimately, it's about having daily
>>> drivers. We need to remove the remaining impediments for that:
>>>
>>> 1. The signal issue. I don't have a good way to fix this and make
>>> everyone happy, but I do have a solution which hasn't caused a crash for
>>> me in quite a while. It may be good enough.
>>
>> TBH, I'd have put it in already.
>
> Pushed it now. It is imperfect, but better than crashing.
100%. Thanks!
>
>>> 2. no-purespace. Merging that into scratch/igc would help, well, me.
>>> What do others think?
>>
>> Doesn't affect me much.
>
> Well, it does cause some noise, so I thought I'd ask first.
>
> Pip
That's nice of you.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 0:05 ` Pip Cet via Emacs development discussions.
2024-12-23 1:00 ` Óscar Fuentes
@ 2024-12-23 3:42 ` Gerd Möllmann
1 sibling, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-23 3:42 UTC (permalink / raw)
To: Pip Cet; +Cc: Óscar Fuentes, emacs-devel, Helmut Eller, Andrea Corallo
Pip Cet <pipcet@protonmail.com> writes:
> Óscar Fuentes <ofv@wanadoo.es> writes:
>
>> Pip Cet via "Emacs development discussions." <emacs-devel@gnu.org>
>> writes:
>>
>>>> I suspect that some of those
>>>> pauses are not related to garbage collection (executing code and moving
>>>> data also takes time.)
>>>
>>> Quite possible. Even if it is GC, please keep in mind that MPS has many
>>> settings which you can play with, and it can improve things a lot. It's
>>> not too early to become a fan of the scratch/igc branch, but it is too
>>> early to reject it for performance reasons. It's a "heads you lose, tails I
>>> win" situation, I guess.
>>
>> IIRC MPS is well documented and I can look up those settings, but does
>> Emacs collect the required info for taking informed decisions?
>
> Not that I'm aware of, at this point.
Me neither.
(And, at least for me personally, "interactive performance", i.e. the
impression a user gets when he's using Emacs interactively, is the only
interesting part. That's difficult to measure of course. I don't care
much about performance improvements I don't notice :-)).
>
>>> 1. The signal issue. I don't have a good way to fix this and make
>>> everyone happy, but I do have a solution which hasn't caused a crash for
>>> me in quite a while. It may be good enough.
>>
>> Inevitably, a few minutes after sending my message Emacs froze after
>> working flawlessly since you fixed the JSON issue.
>
> Sorry to hear it, and thanks for letting us know! If it happens again,
> any additional information you can provide would be very helpful.
>
>> Redisplay just stopped while showing the menu, no crash nor infinite
>> loop, its CPU usage was typical for the repeating timers that my config
>> creates.
>
> That's a bit odd. It might be the signal issue, but that's purely a
> guess. If it happens again, please let us know.
>
> Which windowing system are you using, and how are you displaying menus,
> though?
Yes. I don't think I've ever seen a freeze caused by igc here. It always
was crashes. But one never knows, of course.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-22 19:11 ` Óscar Fuentes
2024-12-23 0:05 ` Pip Cet via Emacs development discussions.
@ 2024-12-23 6:27 ` Jean Louis
1 sibling, 0 replies; 129+ messages in thread
From: Jean Louis @ 2024-12-23 6:27 UTC (permalink / raw)
To: Óscar Fuentes
Cc: emacs-devel, Pip Cet, Gerd Möllmann, Helmut Eller,
Andrea Corallo
* Óscar Fuentes <ofv@wanadoo.es> [2024-12-22 22:13]:
> > 1. The signal issue. I don't have a good way to fix this and make
> > everyone happy, but I do have a solution which hasn't caused a crash for
> > me in quite a while. It may be good enough.
>
> Inevitably, a few minutes after sending my message Emacs froze after
> working flawlessly since you fixed the JSON issue.
>
> Redisplay just stopped while showing the menu, no crash nor infinite
> loop, its CPU usage was typical for the repeating timers that my config
> creates. Sadly, instead of attaching gdb I tried to wake up Emacs by
> sending SIGUSR1 (no effect, as it is the wrong signal, should be
> SIGUSR2) and then sent SINGINT by mistake, which terminated the process.
>
> It's very likely that MPS is innocent on this, but I'm happy to apply
> and test any stability improvement patch you have and wish to share.
I was using that branch for longer, but being heavy daily user of
Emacs with serious business, I cannot use it, it is not yet
stable. Reasons I have sent already to this list, I had no issues
since I switched to standard Emacs.
Most terrible was that ghostly appearance of words and characters
which I didn't type, or totally scrambling characters which I type.
--
Jean Louis
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-22 22:26 ` Pip Cet via Emacs development discussions.
2024-12-23 3:23 ` Gerd Möllmann
@ 2024-12-23 13:35 ` Eli Zaretskii
2024-12-23 14:03 ` Discussion with MPS people Gerd Möllmann
2024-12-23 15:07 ` Some experience with the igc branch Pip Cet via Emacs development discussions.
1 sibling, 2 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-23 13:35 UTC (permalink / raw)
To: Pip Cet; +Cc: gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
> Date: Sun, 22 Dec 2024 22:26:11 +0000
> Cc: Óscar Fuentes <ofv@wanadoo.es>, emacs-devel@gnu.org,
> Helmut Eller <eller.helmut@gmail.com>, Andrea Corallo <acorallo@gnu.org>
> From: Pip Cet via "Emacs development discussions." <emacs-devel@gnu.org>
>
> >> 1. The signal issue. I don't have a good way to fix this and make
> >> everyone happy, but I do have a solution which hasn't caused a crash for
> >> me in quite a while. It may be good enough.
> >
> > TBH, I'd have put it in already.
>
> Pushed it now. It is imperfect, but better than crashing.
Why didn't we discuss this with MPS folks? A program can legitimately
call some code from a signal handler, so the limitations that MPS
seems to impose now are not very reasonable. Maybe we are missing
some feature, or maybe the MPS folks will agree to extend the library
to provide better support for programs that use signals. E.g., AFAIU
with this code installed, we are limiting our profiler too much (it
will never report GC, IIRC?). I think igc_busy_p returns non-zero in
too many situations where delivering signals could not possibly cause
harm, like during object allocation, AFAIR. According to
documentation, that function is not intended for this kind of purpose.
IOW, we had discussions about this which never concluded anything, and
we should pick up where we left off and solve this problem.
We should definitely try improving this before we land the branch on
master. We shouldn't consider this solution "good enough", but just a
temporary kludge meant to avoid too frequent crashes.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Discussion with MPS people
2024-12-23 13:35 ` Some experience with the igc branch Eli Zaretskii
@ 2024-12-23 14:03 ` Gerd Möllmann
2024-12-23 14:04 ` Gerd Möllmann
2024-12-23 15:07 ` Some experience with the igc branch Pip Cet via Emacs development discussions.
1 sibling, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-23 14:03 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: Pip Cet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
> Why didn't we discuss this with MPS folks?
That would be a good thing. Maybe we can get at least some initial
contact going.
I've CC'd Richard Brooksby, who is one of the main people behind MPS.
(AFAIU; sorry Richard if I under-represent your role.) I've seen that he
recently answered on the bug list, so maybe he's interested in helping
us.
@Richard:
Eli is an Emacs co-maintainer, and this mail goes in CC to the
emacs-devel mailing list. Pip Cet has taken over further development of
the branch scratch/igc, which contains a GC for Emacs based on MPS.
Helmut Eller is basically the third person doing importatnt work on
scratch/igc in the past.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Discussion with MPS people
2024-12-23 14:03 ` Discussion with MPS people Gerd Möllmann
@ 2024-12-23 14:04 ` Gerd Möllmann
0 siblings, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-23 14:04 UTC (permalink / raw)
To: Eli Zaretskii
Cc: Pip Cet, ofv, emacs-devel, eller.helmut, acorallo,
Richard Brooksby
Gerd Möllmann <gerd.moellmann@gmail.com> writes:
> Eli Zaretskii <eliz@gnu.org> writes:
>
>> Why didn't we discuss this with MPS folks?
>
> That would be a good thing. Maybe we can get at least some initial
> contact going.
>
> I've CC'd Richard Brooksby, who is one of the main people behind MPS.
> (AFAIU; sorry Richard if I under-represent your role.) I've seen that he
> recently answered on the bug list, so maybe he's interested in helping
> us.
>
> @Richard:
>
> Eli is an Emacs co-maintainer, and this mail goes in CC to the
> emacs-devel mailing list. Pip Cet has taken over further development of
> the branch scratch/igc, which contains a GC for Emacs based on MPS.
> Helmut Eller is basically the third person doing importatnt work on
> scratch/igc in the past.
And of course I've forgotten to actually add Richard in CC. Now done.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Make Signal handling patch platform-dependent?
[not found] ` <m2bjx2h8dh.fsf@gmail.com>
@ 2024-12-23 14:45 ` Pip Cet via Emacs development discussions.
2024-12-23 14:54 ` Gerd Möllmann
0 siblings, 1 reply; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-23 14:45 UTC (permalink / raw)
To: Gerd Möllmann
Cc: Óscar Fuentes, emacs-devel, Helmut Eller, Andrea Corallo
Gerd Möllmann <gerd.moellmann@gmail.com> writes:
> Pip Cet <pipcet@protonmail.com> writes:
>
>> And, who knows, using a separate thread might help (debugging, not
>> performance).
>
> Yeah, more long-term goals, I'd guess. I'm glad we're moving forward,
> ATM :-).
If we come up with a solution to the signal issue which works but
requires the creation of extra threads, would that prevent the merge?
>> The rest of this email is about a half-baked idea to perform dry-run
>> background GCs to facilitate debugging. It's tantalizingly close to
>> offering performance benefits, but doesn't quite get there, and it
>> doesn't have to: it'd help us detect leaked references to objects, and
>> that's all it needs to do.
>>
>> I'm still thinking about double-mapping MPS segments so one thread can
>> scan them using a "privileged" mapping while the barrier is in place for
>> the ordinary mapping and prevents access to that segment.
>
> Quick question upfront; I'll have to think longer about the rest, and
> maybe try to find existing examples: the double-mapping. How would that
> be done? I know about page-table manipulation, but I don't think it's
> easily doable, at least not on macOS. What would you use for
> double-mapping?
My understanding is the two options are SysV shm* (clunky) or mmapping a
file handle corresponding to an already-deleted file, twice (some risk
the OS will synchronize the file to disk, maybe even page it out; also
might count towards the disk quota).
I prefer the latter because I wouldn't actually delete the file, which
would give us a snapshot of the MPS heap in the event of a crash. If
that isn't enough, we could explicitly snapshot the file once in a
while, before moving objects, giving us the ability to detect where an
object moved to. (If THAT isn't enough, we'd have two additional
options: either hack MPS not to reuse virtual addresses unless it really
has to, or store the file on a fully journaled file system allowing us
to time-travel through the MPS heap.) Also, I've never used shm*.
If there's a third option, it'd be great to learn about it.
Needless to say, double-mapping doubles the VM size, which is limited on
32-bit systems.
I don't think virtually-indexed caches are a thing anymore (if the cache
doesn't recognize two VAs correspond to the same PA, well, great fun
ensues).
IIUC, some aarch64 systems, but not those usually running macOS, have
weak cache coherency, and as double-mapping is a valid but rare thing to
do, who knows what would happen.
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Make Signal handling patch platform-dependent?
2024-12-23 14:45 ` Make Signal handling patch platform-dependent? Pip Cet via Emacs development discussions.
@ 2024-12-23 14:54 ` Gerd Möllmann
2024-12-23 15:11 ` Eli Zaretskii
0 siblings, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-23 14:54 UTC (permalink / raw)
To: Pip Cet; +Cc: Óscar Fuentes, emacs-devel, Helmut Eller, Andrea Corallo
Pip Cet <pipcet@protonmail.com> writes:
> Gerd Möllmann <gerd.moellmann@gmail.com> writes:
>
>> Pip Cet <pipcet@protonmail.com> writes:
>>
>>> And, who knows, using a separate thread might help (debugging, not
>>> performance).
>>
>> Yeah, more long-term goals, I'd guess. I'm glad we're moving forward,
>> ATM :-).
>
> If we come up with a solution to the signal issue which works but
> requires the creation of extra threads, would that prevent the merge?
I think that's for Eli to answer.
>>> The rest of this email is about a half-baked idea to perform dry-run
>>> background GCs to facilitate debugging. It's tantalizingly close to
>>> offering performance benefits, but doesn't quite get there, and it
>>> doesn't have to: it'd help us detect leaked references to objects, and
>>> that's all it needs to do.
>>>
>>> I'm still thinking about double-mapping MPS segments so one thread can
>>> scan them using a "privileged" mapping while the barrier is in place for
>>> the ordinary mapping and prevents access to that segment.
>>
>> Quick question upfront; I'll have to think longer about the rest, and
>> maybe try to find existing examples: the double-mapping. How would that
>> be done? I know about page-table manipulation, but I don't think it's
>> easily doable, at least not on macOS. What would you use for
>> double-mapping?
>
> My understanding is the two options are SysV shm* (clunky) or mmapping a
> file handle corresponding to an already-deleted file, twice (some risk
> the OS will synchronize the file to disk, maybe even page it out; also
> might count towards the disk quota).
>
> I prefer the latter because I wouldn't actually delete the file, which
> would give us a snapshot of the MPS heap in the event of a crash. If
> that isn't enough, we could explicitly snapshot the file once in a
> while, before moving objects, giving us the ability to detect where an
> object moved to. (If THAT isn't enough, we'd have two additional
> options: either hack MPS not to reuse virtual addresses unless it really
> has to, or store the file on a fully journaled file system allowing us
> to time-travel through the MPS heap.) Also, I've never used shm*.
>
> If there's a third option, it'd be great to learn about it.
I don't know of a third option.
>
> Needless to say, double-mapping doubles the VM size, which is limited on
> 32-bit systems.
>
> I don't think virtually-indexed caches are a thing anymore (if the cache
> doesn't recognize two VAs correspond to the same PA, well, great fun
> ensues).
>
> IIUC, some aarch64 systems, but not those usually running macOS, have
> weak cache coherency, and as double-mapping is a valid but rare thing to
> do, who knows what would happen.
>
> Pip
Thanks so far!
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 13:35 ` Some experience with the igc branch Eli Zaretskii
2024-12-23 14:03 ` Discussion with MPS people Gerd Möllmann
@ 2024-12-23 15:07 ` Pip Cet via Emacs development discussions.
2024-12-23 15:26 ` Gerd Möllmann
1 sibling, 1 reply; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-23 15:07 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
"Eli Zaretskii" <eliz@gnu.org> writes:
>> Date: Sun, 22 Dec 2024 22:26:11 +0000
>> Cc: Óscar Fuentes <ofv@wanadoo.es>, emacs-devel@gnu.org,
>> Helmut Eller <eller.helmut@gmail.com>, Andrea Corallo <acorallo@gnu.org>
>> From: Pip Cet via "Emacs development discussions." <emacs-devel@gnu.org>
>>
>> >> 1. The signal issue. I don't have a good way to fix this and make
>> >> everyone happy, but I do have a solution which hasn't caused a crash for
>> >> me in quite a while. It may be good enough.
>> >
>> > TBH, I'd have put it in already.
>>
>> Pushed it now. It is imperfect, but better than crashing.
>
> Why didn't we discuss this with MPS folks? A program can legitimately
Because...
> call some code from a signal handler, so the limitations that MPS
> seems to impose now are not very reasonable. Maybe we are missing
...if they were interested, maybe they've read this or some other
blanket accusation of being "unreasonable", and became uninterested
quickly. I know I would.
> some feature, or maybe the MPS folks will agree to extend the library
> to provide better support for programs that use signals. E.g., AFAIU
> with this code installed, we are limiting our profiler too much (it
> will never report GC, IIRC?). I think igc_busy_p returns non-zero in
> too many situations where delivering signals could not possibly cause
> harm, like during object allocation, AFAIR. According to
> documentation, that function is not intended for this kind of purpose.
>
> IOW, we had discussions about this which never concluded anything, and
> we should pick up where we left off and solve this problem.
I have a different idea using a separate allocation thread (for the slow
path only, of course). Would that be potentially acceptable?
It would limit MPS to systems providing a working atomic.h header, and
in practice also require some sort of working (and reasonably fast)
inter-thread signalling (though I suspect it'd be faster to run both
threads on the same core, since it's a handover rather than a
parallelism situation). That excludes very few systems these days
(sorry, MS-DOS).
I'll spare you most of the details for now, but having read the mps
header, MPS allocation is not safe to use from separate threads without
locking the AP (or having per-thread APs), which we might end up doing
on Windows, IIRC. I'd rather give those (potential) issues a wide
berth. Also, by the campsite rule, merging MPS shouldn't make it harder
to move in the direction of multi-threaded Emacs.
Better debugging (which I agree with you is something we need to
improve), no MPS modification. Performance implications TBD.
> We should definitely try improving this before we land the branch on
> master. We shouldn't consider this solution "good enough", but just a
> temporary kludge meant to avoid too frequent crashes.
Agreed.
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Make Signal handling patch platform-dependent?
2024-12-23 14:54 ` Gerd Möllmann
@ 2024-12-23 15:11 ` Eli Zaretskii
0 siblings, 0 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-23 15:11 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: Óscar Fuentes <ofv@wanadoo.es>, emacs-devel@gnu.org,
> Helmut Eller <eller.helmut@gmail.com>, Andrea Corallo <acorallo@gnu.org>
> Date: Mon, 23 Dec 2024 15:54:36 +0100
>
> Pip Cet <pipcet@protonmail.com> writes:
>
> > If we come up with a solution to the signal issue which works but
> > requires the creation of extra threads, would that prevent the merge?
>
> I think that's for Eli to answer.
I don't see why extra threads would be a problem, as long as they
don't use the Lisp machine or any parts of the global state. We
already have several threads on MS-Windows, including for emulating
Posix signals, so I don't see why adding C threads on Posix systems
would be "verboten".
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 15:07 ` Some experience with the igc branch Pip Cet via Emacs development discussions.
@ 2024-12-23 15:26 ` Gerd Möllmann
2024-12-23 16:03 ` Pip Cet via Emacs development discussions.
0 siblings, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-23 15:26 UTC (permalink / raw)
To: Pip Cet; +Cc: Eli Zaretskii, ofv, emacs-devel, eller.helmut, acorallo
Pip Cet <pipcet@protonmail.com> writes:
> I'll spare you most of the details for now, but having read the mps
> header, MPS allocation is not safe to use from separate threads without
> locking the AP (or having per-thread APs), which we might end up doing
> on Windows, IIRC.
Now I'm confused. We're using thread allocation points. See
create_thread_aps, thread_ap, and so on.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 15:26 ` Gerd Möllmann
@ 2024-12-23 16:03 ` Pip Cet via Emacs development discussions.
2024-12-23 16:44 ` Eli Zaretskii
2024-12-23 17:44 ` Gerd Möllmann
0 siblings, 2 replies; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-23 16:03 UTC (permalink / raw)
To: Gerd Möllmann
Cc: Eli Zaretskii, ofv, emacs-devel, eller.helmut, acorallo
Gerd Möllmann <gerd.moellmann@gmail.com> writes:
> Pip Cet <pipcet@protonmail.com> writes:
>
>> I'll spare you most of the details for now, but having read the mps
>> header, MPS allocation is not safe to use from separate threads without
>> locking the AP (or having per-thread APs), which we might end up doing
>> on Windows, IIRC.
>
> Now I'm confused. We're using thread allocation points. See
> create_thread_aps, thread_ap, and so on.
I was confused. This is only a problem if we allocate memory from a
signal handler, which is effectively sharing the per-thread structure.
(I'm still confused. My patch worked on the first attempt, which my code
never does. I suspect that while I made a mistake, it caused a subtle
bug rather than an obvious one.)
And we don't want to allocate memory from signal handlers, right? We
could, now (see warnings below):
diff --git a/src/igc.c b/src/igc.c
index eb72406e529..14ecc30f982 100644
--- a/src/igc.c
+++ b/src/igc.c
@@ -747,19 +747,41 @@ IGC_DEFINE_LIST (igc_root);
/* Registry entry for an MPS thread mps_thr_t. */
+#include <pthread.h>
+#include <stdatomic.h>
+
+struct emacs_ap
+{
+ mps_ap_t mps_ap;
+ struct igc *gc;
+ pthread_t allocation_thread;
+ atomic_uintptr_t usable_memory;
+ atomic_uintptr_t usable_bytes;
+
+ atomic_uintptr_t waiting_threads;
+ atomic_uintptr_t requested_bytes;
+ atomic_intptr_t requested_type;
+};
+
+typedef struct emacs_ap emacs_ap_t;
+
+#ifndef ATOMIC_POINTER_LOCK_FREE
+#error "this probably won't work"
+#endif
+
struct igc_thread
{
struct igc *gc;
mps_thr_t thr;
/* Allocation points for the thread. */
- mps_ap_t dflt_ap;
- mps_ap_t leaf_ap;
- mps_ap_t weak_strong_ap;
- mps_ap_t weak_weak_ap;
- mps_ap_t weak_hash_strong_ap;
- mps_ap_t weak_hash_weak_ap;
- mps_ap_t immovable_ap;
+ emacs_ap_t dflt_ap;
+ emacs_ap_t leaf_ap;
+ emacs_ap_t weak_strong_ap;
+ emacs_ap_t weak_weak_ap;
+ emacs_ap_t weak_hash_strong_ap;
+ emacs_ap_t weak_hash_weak_ap;
+ emacs_ap_t immovable_ap;
/* Quick access to the roots used for specpdl, bytecode stack and
control stack. */
@@ -805,6 +827,8 @@ IGC_DEFINE_LIST (igc_thread);
/* Registered threads. */
struct igc_thread_list *threads;
+
+ pthread_cond_t cond;
};
static bool process_one_message (struct igc *gc);
@@ -2904,8 +2928,84 @@ igc_root_destroy_comp_unit_eph (struct Lisp_Native_Comp_Unit *u)
maybe_destroy_root (&u->data_eph_relocs_root);
}
+static mps_addr_t alloc_impl_raw (size_t size, enum igc_obj_type type, mps_ap_t ap);
+static mps_addr_t alloc_impl (size_t size, enum igc_obj_type type, emacs_ap_t *ap);
+
+static void *igc_allocation_thread (void *ap_v)
+{
+ emacs_ap_t *ap = ap_v;
+ while (true)
+ {
+ if (ap->requested_bytes)
+ {
+ void *p = alloc_impl_raw (ap->requested_bytes, (enum igc_obj_type) ap->requested_type, ap->mps_ap);
+ atomic_store (&ap->usable_memory, (uintptr_t) p);
+ atomic_store (&ap->usable_bytes, ap->requested_bytes);
+ atomic_store (&ap->requested_type, -1);
+ atomic_store (&ap->requested_bytes, 0);
+ }
+ }
+
+ return NULL;
+}
+
+static mps_addr_t alloc_impl (size_t size, enum igc_obj_type type, emacs_ap_t *ap)
+{
+ if (size == 0)
+ return 0;
+ while (true)
+ {
+ uintptr_t other_threads = atomic_fetch_add (&ap->waiting_threads, 1);
+ if (other_threads != 0)
+ {
+ /* we know that the other "thread" is actually on top of us,
+ * and we're a signal handler. Wait, should we even be
+ * allocating memory? We should still eassert that we're the
+ * right thread. */
+ emacs_ap_t saved_state;
+ while (ap->requested_bytes);
+ memcpy (&saved_state, ap, sizeof saved_state);
+ atomic_store (&ap->waiting_threads, 0);
+ mps_addr_t ret = alloc_impl (size, type, ap);
+ atomic_store (&ap->waiting_threads, saved_state.waiting_threads);
+ memcpy (ap, &saved_state, sizeof saved_state);
+ atomic_fetch_add (&ap->waiting_threads, -1);
+ return ret;
+ }
+
+ atomic_store (&ap->requested_type, (uintptr_t) type);
+ atomic_store (&ap->requested_bytes, (uintptr_t) size);
+
+ while (ap->requested_bytes);
+
+ mps_addr_t ret = (mps_addr_t) ap->usable_memory;
+ atomic_fetch_add (&ap->waiting_threads, -1);
+ return ret;
+ }
+}
+
+static mps_res_t emacs_ap_create_k (emacs_ap_t *ap, mps_pool_t pool,
+ mps_arg_s *args)
+{
+ atomic_store(&ap->usable_memory, 0);
+ atomic_store(&ap->usable_bytes, 0);
+ atomic_store(&ap->waiting_threads, 0);
+ atomic_store(&ap->requested_bytes, 0);
+
+ pthread_attr_t thread_attr;
+ pthread_attr_init (&thread_attr);
+ pthread_create(&ap->allocation_thread, &thread_attr, igc_allocation_thread, ap);
+
+ return mps_ap_create_k (&ap->mps_ap, pool, args);
+}
+
+static void emacs_ap_destroy (emacs_ap_t *ap)
+{
+ return;
+}
+
static mps_res_t
-create_weak_ap (mps_ap_t *ap, struct igc_thread *t, bool weak)
+create_weak_ap (emacs_ap_t *ap, struct igc_thread *t, bool weak)
{
struct igc *gc = t->gc;
mps_res_t res;
@@ -2914,14 +3014,14 @@ create_weak_ap (mps_ap_t *ap, struct igc_thread *t, bool weak)
{
MPS_ARGS_ADD (args, MPS_KEY_RANK,
weak ? mps_rank_weak () : mps_rank_exact ());
- res = mps_ap_create_k (ap, pool, args);
+ res = emacs_ap_create_k (ap, pool, args);
}
MPS_ARGS_END (args);
return res;
}
static mps_res_t
-create_weak_hash_ap (mps_ap_t *ap, struct igc_thread *t, bool weak)
+create_weak_hash_ap (emacs_ap_t *ap, struct igc_thread *t, bool weak)
{
struct igc *gc = t->gc;
mps_res_t res;
@@ -2930,7 +3030,7 @@ create_weak_hash_ap (mps_ap_t *ap, struct igc_thread *t, bool weak)
{
MPS_ARGS_ADD (args, MPS_KEY_RANK,
weak ? mps_rank_weak () : mps_rank_exact ());
- res = mps_ap_create_k (ap, pool, args);
+ res = emacs_ap_create_k (ap, pool, args);
}
MPS_ARGS_END (args);
return res;
@@ -2940,12 +3040,15 @@ create_weak_hash_ap (mps_ap_t *ap, struct igc_thread *t, bool weak)
create_thread_aps (struct igc_thread *t)
{
struct igc *gc = t->gc;
+ pthread_condattr_t condattr;
+ pthread_condattr_init (&condattr);
+ pthread_cond_init (&gc->cond, &condattr);
mps_res_t res;
- res = mps_ap_create_k (&t->dflt_ap, gc->dflt_pool, mps_args_none);
+ res = emacs_ap_create_k (&t->dflt_ap, gc->dflt_pool, mps_args_none);
IGC_CHECK_RES (res);
- res = mps_ap_create_k (&t->leaf_ap, gc->leaf_pool, mps_args_none);
+ res = emacs_ap_create_k (&t->leaf_ap, gc->leaf_pool, mps_args_none);
IGC_CHECK_RES (res);
- res = mps_ap_create_k (&t->immovable_ap, gc->immovable_pool, mps_args_none);
+ res = emacs_ap_create_k (&t->immovable_ap, gc->immovable_pool, mps_args_none);
IGC_CHECK_RES (res);
res = create_weak_ap (&t->weak_strong_ap, t, false);
res = create_weak_hash_ap (&t->weak_hash_strong_ap, t, false);
@@ -3007,13 +3110,13 @@ igc_thread_remove (void **pinfo)
destroy_root (&t->d.stack_root);
destroy_root (&t->d.specpdl_root);
destroy_root (&t->d.bc_root);
- mps_ap_destroy (t->d.dflt_ap);
- mps_ap_destroy (t->d.leaf_ap);
- mps_ap_destroy (t->d.weak_strong_ap);
- mps_ap_destroy (t->d.weak_weak_ap);
- mps_ap_destroy (t->d.weak_hash_strong_ap);
- mps_ap_destroy (t->d.weak_hash_weak_ap);
- mps_ap_destroy (t->d.immovable_ap);
+ emacs_ap_destroy (&t->d.dflt_ap);
+ emacs_ap_destroy (&t->d.leaf_ap);
+ emacs_ap_destroy (&t->d.weak_strong_ap);
+ emacs_ap_destroy (&t->d.weak_weak_ap);
+ emacs_ap_destroy (&t->d.weak_hash_strong_ap);
+ emacs_ap_destroy (&t->d.weak_hash_weak_ap);
+ emacs_ap_destroy (&t->d.immovable_ap);
mps_thread_dereg (deregister_thread (t));
}
@@ -3677,7 +3780,7 @@ igc_on_idle (void)
}
}
-static mps_ap_t
+static emacs_ap_t *
thread_ap (enum igc_obj_type type)
{
struct igc_thread_list *t = current_thread->gc_info;
@@ -3698,13 +3801,13 @@ thread_ap (enum igc_obj_type type)
emacs_abort ();
case IGC_OBJ_MARKER_VECTOR:
- return t->d.weak_weak_ap;
+ return &t->d.weak_weak_ap;
case IGC_OBJ_WEAK_HASH_TABLE_WEAK_PART:
- return t->d.weak_hash_weak_ap;
+ return &t->d.weak_hash_weak_ap;
case IGC_OBJ_WEAK_HASH_TABLE_STRONG_PART:
- return t->d.weak_hash_strong_ap;
+ return &t->d.weak_hash_strong_ap;
case IGC_OBJ_VECTOR:
case IGC_OBJ_CONS:
@@ -3719,12 +3822,12 @@ thread_ap (enum igc_obj_type type)
case IGC_OBJ_FACE_CACHE:
case IGC_OBJ_BLV:
case IGC_OBJ_HANDLER:
- return t->d.dflt_ap;
+ return &t->d.dflt_ap;
case IGC_OBJ_STRING_DATA:
case IGC_OBJ_FLOAT:
case IGC_OBJ_BYTES:
- return t->d.leaf_ap;
+ return &t->d.leaf_ap;
}
emacs_abort ();
}
@@ -3796,7 +3899,7 @@ igc_hash (Lisp_Object key)
object. */
static mps_addr_t
-alloc_impl (size_t size, enum igc_obj_type type, mps_ap_t ap)
+alloc_impl_raw (size_t size, enum igc_obj_type type, mps_ap_t ap)
{
mps_addr_t p UNINIT;
size = alloc_size (size);
@@ -3845,7 +3948,7 @@ alloc (size_t size, enum igc_obj_type type)
alloc_immovable (size_t size, enum igc_obj_type type)
{
struct igc_thread_list *t = current_thread->gc_info;
- return alloc_impl (size, type, t->d.immovable_ap);
+ return alloc_impl (size, type, &t->d.immovable_ap);
}
#ifdef HAVE_MODULES
@@ -4883,17 +4986,17 @@ igc_on_pdump_loaded (void *dump_base, void *hot_start, void *hot_end,
igc_alloc_dump (size_t nbytes)
{
igc_assert (global_igc->park_count > 0);
- mps_ap_t ap = thread_ap (IGC_OBJ_CONS);
+ emacs_ap_t *ap = thread_ap (IGC_OBJ_CONS);
size_t block_size = igc_header_size () + nbytes;
mps_addr_t block;
do
{
- mps_res_t res = mps_reserve (&block, ap, block_size);
+ mps_res_t res = mps_reserve (&block, ap->mps_ap, block_size);
if (res != MPS_RES_OK)
memory_full (0);
set_header (block, IGC_OBJ_INVALID, block_size, 0);
}
- while (!mps_commit (ap, block, block_size));
+ while (!mps_commit (ap->mps_ap, block, block_size));
return (char *) block + igc_header_size ();
}
Warnings:
This is the "slow path" only, used for all allocations. Will cause a
great number of busy-looping threads. Will be very slow. Creating
additional emacs threads will result in a proportional number of
additional threads, which will be very, very slow, so don't. Requires
pthread.h and stdatomic.h, and still does things not covered by those
APIs (memcpying over an atomic_uintptr_t, even if we know that its value
won't change, is probably verboten, and definitely should be). I
*think* this code might work if we allocate from signal handlers, and I
think this code might work on systems that don't have lock-free atomics
(once the #error is removed), but it definitely won't do both at the
same time.
Pip
^ permalink raw reply related [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 16:03 ` Pip Cet via Emacs development discussions.
@ 2024-12-23 16:44 ` Eli Zaretskii
2024-12-23 17:16 ` Pip Cet via Emacs development discussions.
2024-12-23 17:44 ` Gerd Möllmann
1 sibling, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-23 16:44 UTC (permalink / raw)
To: Pip Cet; +Cc: gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
> Date: Mon, 23 Dec 2024 16:03:53 +0000
> From: Pip Cet <pipcet@protonmail.com>
> Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org, eller.helmut@gmail.com, acorallo@gnu.org
>
> --- a/src/igc.c
> +++ b/src/igc.c
> @@ -747,19 +747,41 @@ IGC_DEFINE_LIST (igc_root);
>
> /* Registry entry for an MPS thread mps_thr_t. */
>
> +#include <pthread.h>
We cannot use pthreads.h in portable code. If we want to use threads,
we need separate implementations for Posix and Windows, like wedid in
systhread.c for Lisp threads.
> +struct emacs_ap
> +{
> + mps_ap_t mps_ap;
> + struct igc *gc;
> + pthread_t allocation_thread;
pthread_t is non-portable, for the same reasons.
> This is the "slow path" only, used for all allocations. Will cause a
> great number of busy-looping threads.
A lot of threads might be problematic. Each thread reserves memory
for its stack, so you end up with lots of reserved memory, and on
32-bit systems can run out of address space.
Why do we need this, again?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 16:44 ` Eli Zaretskii
@ 2024-12-23 17:16 ` Pip Cet via Emacs development discussions.
2024-12-23 18:35 ` Eli Zaretskii
0 siblings, 1 reply; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-23 17:16 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
"Eli Zaretskii" <eliz@gnu.org> writes:
>> Date: Mon, 23 Dec 2024 16:03:53 +0000
>> From: Pip Cet <pipcet@protonmail.com>
>> Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org, eller.helmut@gmail.com, acorallo@gnu.org
>>
>> --- a/src/igc.c
>> +++ b/src/igc.c
>> @@ -747,19 +747,41 @@ IGC_DEFINE_LIST (igc_root);
>>
>> /* Registry entry for an MPS thread mps_thr_t. */
>>
>> +#include <pthread.h>
>
> We cannot use pthreads.h in portable code. If we want to use threads,
> we need separate implementations for Posix and Windows, like wedid in
> systhread.c for Lisp threads.
Noted.
As an aside, without any relevance to the fact that we should avoid
using them, aren't pthreads available on "mingw"64 systems?
>> +struct emacs_ap
>> +{
>> + mps_ap_t mps_ap;
>> + struct igc *gc;
>> + pthread_t allocation_thread;
>
> pthread_t is non-portable, for the same reasons.
>
>> This is the "slow path" only, used for all allocations. Will cause a
>> great number of busy-looping threads.
>
> A lot of threads might be problematic. Each thread reserves memory
> for its stack, so you end up with lots of reserved memory, and on
> 32-bit systems can run out of address space.
This is a PoC. While we shouldn't share structures between Emacs-side
threads, we should of course use (at most) a single allocation thread
rather than one per thread per AP. Also, yield the CPU once in a while
:-)
> Why do we need this, again?
We can't interrupt allocation, so we move it to a separate thread where
it will complete (unlocking the arena) even if a signal interrupts us.
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 16:03 ` Pip Cet via Emacs development discussions.
2024-12-23 16:44 ` Eli Zaretskii
@ 2024-12-23 17:44 ` Gerd Möllmann
2024-12-23 19:00 ` Eli Zaretskii
1 sibling, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-23 17:44 UTC (permalink / raw)
To: Pip Cet; +Cc: Eli Zaretskii, ofv, emacs-devel, eller.helmut, acorallo
Pip Cet <pipcet@protonmail.com> writes:
> Gerd Möllmann <gerd.moellmann@gmail.com> writes:
>
>> Pip Cet <pipcet@protonmail.com> writes:
>>
>>> I'll spare you most of the details for now, but having read the mps
>>> header, MPS allocation is not safe to use from separate threads without
>>> locking the AP (or having per-thread APs), which we might end up doing
>>> on Windows, IIRC.
>>
>> Now I'm confused. We're using thread allocation points. See
>> create_thread_aps, thread_ap, and so on.
>
> I was confused. This is only a problem if we allocate memory from a
> signal handler, which is effectively sharing the per-thread structure.
>
> (I'm still confused. My patch worked on the first attempt, which my code
> never does. I suspect that while I made a mistake, it caused a subtle
> bug rather than an obvious one.)
>
> And we don't want to allocate memory from signal handlers, right? We
> could, now (see warnings below):
Can't speak for others, but I wouldn't want it :-).
I can't cite myself, but I'm pretty sure I said some time ago already
that in a portable program one cannot do much in a signal handler in the
first place. So I wouldn't be surprised if MPS didn't support being
called from a signal handler. Not unreasonable for me.
But whatever. Maybe Richard Brooksby answers, and can shed light on that
or has ideas, if we don't overload him :-). And anyway, there is now
something workable in the igc branch. Maybe we could wait a bit, and
just proceed with something else meanwhile.
[... Thanks for the patch ...]
> Warnings:
>
> This is the "slow path" only, used for all allocations. Will cause a
> great number of busy-looping threads.
Don't know why, but the busy looping threads makes me feel a bit
uncomfortable :-),
> Will be very slow. Creating additional emacs threads will result in a
> proportional number of additional threads, which will be very, very
> slow, so don't. Requires pthread.h and stdatomic.h, and still does
> things not covered by those APIs (memcpying over an atomic_uintptr_t,
> even if we know that its value won't change, is probably verboten, and
> definitely should be). I *think* this code might work if we allocate
> from signal handlers, and I think this code might work on systems that
> don't have lock-free atomics (once the #error is removed), but it
> definitely won't do both at the same time.
>
> Pip
BTW, do you know which signal handlers use Lisp, i.e. allocate Lisp
objects or access some? All? Or, would it be realistic to rewrite signal
handlers to not do that?
One thing I've seen done elsewhere is to publish a message to a message
board so that it can be handled outside of the signal handler. Something
like that, you know what I mean.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 17:16 ` Pip Cet via Emacs development discussions.
@ 2024-12-23 18:35 ` Eli Zaretskii
2024-12-23 18:48 ` Gerd Möllmann
2024-12-23 20:30 ` Benjamin Riefenstahl
0 siblings, 2 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-23 18:35 UTC (permalink / raw)
To: Pip Cet; +Cc: gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
> Date: Mon, 23 Dec 2024 17:16:32 +0000
> From: Pip Cet <pipcet@protonmail.com>
> Cc: gerd.moellmann@gmail.com, ofv@wanadoo.es, emacs-devel@gnu.org, eller.helmut@gmail.com, acorallo@gnu.org
>
> "Eli Zaretskii" <eliz@gnu.org> writes:
>
> >> +#include <pthread.h>
> >
> > We cannot use pthreads.h in portable code. If we want to use threads,
> > we need separate implementations for Posix and Windows, like wedid in
> > systhread.c for Lisp threads.
>
> Noted.
>
> As an aside, without any relevance to the fact that we should avoid
> using them, aren't pthreads available on "mingw"64 systems?
pthreads are ported to both 32-bit and 64-bit Windows (more than
once), but the ports are buggy, and pthreads.h itself defines all
kinds of stuff that conflicts with various w32 places in Emacs. The
following lines from nt/mingw-site.cfg is one sign of that:
# We don't want pthread.h to be picked up just because it defines timespec
gl_cv_sys_struct_timespec_in_pthread_h=no
# Or at all...
ac_cv_header_pthread_h=no
> > Why do we need this, again?
>
> We can't interrupt allocation, so we move it to a separate thread where
> it will complete (unlocking the arena) even if a signal interrupts us.
How will this allow us to run the Lisp machine from a signal? Because
this is the goal, right?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 18:35 ` Eli Zaretskii
@ 2024-12-23 18:48 ` Gerd Möllmann
2024-12-23 19:25 ` Eli Zaretskii
2024-12-23 20:30 ` Benjamin Riefenstahl
1 sibling, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-23 18:48 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: Pip Cet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
> How will this allow us to run the Lisp machine from a signal? Because
> this is the goal, right?
Today I'm confused.
Can I ask what you mean by running the Lisp Machine from a signal
handler? Sounds to me like calling eval, but I'd doubt that works with
the old GC, or does it?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 17:44 ` Gerd Möllmann
@ 2024-12-23 19:00 ` Eli Zaretskii
2024-12-23 19:37 ` Eli Zaretskii
` (2 more replies)
0 siblings, 3 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-23 19:00 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
> Date: Mon, 23 Dec 2024 18:44:42 +0100
>
> BTW, do you know which signal handlers use Lisp, i.e. allocate Lisp
> objects or access some? All? Or, would it be realistic to rewrite signal
> handlers to not do that?
SIGPROF does (it's the basis for our Lisp profiler).
SIGCHLD doesn't run Lisp (I think), but it examines objects and data
structures of the Lisp machine (those related to child processes).
> One thing I've seen done elsewhere is to publish a message to a message
> board so that it can be handled outside of the signal handler. Something
> like that, you know what I mean.
This is tricky for the profiler, because you want to sample the
function in which you are right there and then, not some time later.
For SIGCHLD this could work, but it might make Emacs slower in
handling subprocesses (there are some Lisp packages that fire
subprocesses at very high rate).
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 18:48 ` Gerd Möllmann
@ 2024-12-23 19:25 ` Eli Zaretskii
0 siblings, 0 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-23 19:25 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: Pip Cet <pipcet@protonmail.com>, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
> Date: Mon, 23 Dec 2024 19:48:08 +0100
>
> Eli Zaretskii <eliz@gnu.org> writes:
>
> > How will this allow us to run the Lisp machine from a signal? Because
> > this is the goal, right?
>
> Today I'm confused.
>
> Can I ask what you mean by running the Lisp Machine from a signal
> handler? Sounds to me like calling eval, but I'd doubt that works with
> the old GC, or does it?
See what I wrote in response to your other questions, regarding what
SIGPROF and SIGCHLD handlers do.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 19:00 ` Eli Zaretskii
@ 2024-12-23 19:37 ` Eli Zaretskii
2024-12-23 20:49 ` Gerd Möllmann
2024-12-23 23:37 ` Some experience with the igc branch Pip Cet via Emacs development discussions.
2 siblings, 0 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-23 19:37 UTC (permalink / raw)
To: gerd.moellmann, pipcet; +Cc: ofv, emacs-devel, eller.helmut, acorallo
> Date: Mon, 23 Dec 2024 21:00:53 +0200
> From: Eli Zaretskii <eliz@gnu.org>
> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
>
> > From: Gerd Möllmann <gerd.moellmann@gmail.com>
> > Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org,
> > eller.helmut@gmail.com, acorallo@gnu.org
> > Date: Mon, 23 Dec 2024 18:44:42 +0100
> >
> > BTW, do you know which signal handlers use Lisp, i.e. allocate Lisp
> > objects or access some? All? Or, would it be realistic to rewrite signal
> > handlers to not do that?
>
> SIGPROF does (it's the basis for our Lisp profiler).
Let me clarify to avoid possible confusion: the SIGPROF handler
doesn't run Lisp, but it does access the Lisp machine, via the
backtrace_top_function and get_backtrace functions.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 18:35 ` Eli Zaretskii
2024-12-23 18:48 ` Gerd Möllmann
@ 2024-12-23 20:30 ` Benjamin Riefenstahl
2024-12-23 23:39 ` Pip Cet via Emacs development discussions.
2024-12-24 3:37 ` Eli Zaretskii
1 sibling, 2 replies; 129+ messages in thread
From: Benjamin Riefenstahl @ 2024-12-23 20:30 UTC (permalink / raw)
To: Eli Zaretskii
Cc: Pip Cet, gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
>> From: Pip Cet <pipcet@protonmail.com>
>> >> +#include <pthread.h>
Eli Zaretskii writes:
>> > We cannot use pthreads.h in portable code. If we want to use
>> > threads, we need separate implementations for Posix and Windows,
>> > like wedid in systhread.c for Lisp threads.
Just a drive-by observation: Signals are a POSIX feature, so we have to
think about the potential conflict between signals and MPS only on
POSIX, not on MS Windows, right?
Regards, benny
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 19:00 ` Eli Zaretskii
2024-12-23 19:37 ` Eli Zaretskii
@ 2024-12-23 20:49 ` Gerd Möllmann
2024-12-23 21:43 ` Helmut Eller
2024-12-24 6:03 ` SIGPROF + SIGCHLD and igc Gerd Möllmann
2024-12-23 23:37 ` Some experience with the igc branch Pip Cet via Emacs development discussions.
2 siblings, 2 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-23 20:49 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>> Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org,
>> eller.helmut@gmail.com, acorallo@gnu.org
>> Date: Mon, 23 Dec 2024 18:44:42 +0100
>>
>> BTW, do you know which signal handlers use Lisp, i.e. allocate Lisp
>> objects or access some? All? Or, would it be realistic to rewrite signal
>> handlers to not do that?
>
> SIGPROF does (it's the basis for our Lisp profiler).
>
> SIGCHLD doesn't run Lisp (I think), but it examines objects and data
> structures of the Lisp machine (those related to child processes).
>
>> One thing I've seen done elsewhere is to publish a message to a message
>> board so that it can be handled outside of the signal handler. Something
>> like that, you know what I mean.
>
> This is tricky for the profiler, because you want to sample the
> function in which you are right there and then, not some time later.
>
> For SIGCHLD this could work, but it might make Emacs slower in
> handling subprocesses (there are some Lisp packages that fire
> subprocesses at very high rate).
Thanks.
I've looked at SIGPROF. From an admittedly brief look at this, I'd
summarize my results as:
- The important part is get_backtrace. The rest could be done elsewhere
by posting that to a message board, or whatever the mechanism is at
the end.
- Didn't see get_backtrace or functions called from it allocating Lisp
objects.
- It reads from a Lisp object because of
#define specpdl (current_thread->m_specpdl)
#define specpdl_end (current_thread->m_specpdl_end)
#define specpdl_ptr (current_thread->m_specpdl_ptr)
current_thread is a struct thread_state which is a PVEC_THREAD.
- I remember that I wrote a scanner for the specpdl stacks, so that's
not a Lisp object but a root, so no problem here, I think.
- struct thread_state allocation is done in igc.c via alloc_immovable in
igc_alloc_pseudovector. That allocated from from an AMS pool, which
doesn't use barriers.
- It doesn't seem to access other Lisp objects except current_thread.
That doesn't look bad, I think. Worth mentioning is perhaps that
directly after get_backtrace here
static void
record_backtrace (struct profiler_log *plog, EMACS_INT count)
{
log_t *log = plog->log;
get_backtrace (log->trace, log->depth);
EMACS_UINT hash = trace_hash (log->trace, log->depth);
we access Lisp objects in trace_hash when computing the hash and in the
other hash table code. IIUC that code counts hits with the same
backtrace. Don't know how long that takes. But if posting the backtrace
would take the same time, we would be on par.
I'll try to also look at SIGCHLD at some later point, but Christmas,
family etc.
Happy holidays!
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 20:49 ` Gerd Möllmann
@ 2024-12-23 21:43 ` Helmut Eller
2024-12-23 21:49 ` Pip Cet via Emacs development discussions.
2024-12-24 4:05 ` Gerd Möllmann
2024-12-24 6:03 ` SIGPROF + SIGCHLD and igc Gerd Möllmann
1 sibling, 2 replies; 129+ messages in thread
From: Helmut Eller @ 2024-12-23 21:43 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: Eli Zaretskii, pipcet, ofv, emacs-devel, acorallo
On Mon, Dec 23 2024, Gerd Möllmann wrote:
> [...]
> Worth mentioning is perhaps that [...]
> directly after get_backtrace here [...]
> we access Lisp objects in trace_hash when computing the hash and in the
> other hash table code.
Also worth mentioning is that trace_hash uses XHASH, which is probably
problematic in combination with a moving GC.
Helmut
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 21:43 ` Helmut Eller
@ 2024-12-23 21:49 ` Pip Cet via Emacs development discussions.
2024-12-23 21:58 ` Helmut Eller
2024-12-24 4:05 ` Gerd Möllmann
1 sibling, 1 reply; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-23 21:49 UTC (permalink / raw)
To: Helmut Eller
Cc: Gerd Möllmann, Eli Zaretskii, ofv, emacs-devel, acorallo
"Helmut Eller" <eller.helmut@gmail.com> writes:
> On Mon, Dec 23 2024, Gerd Möllmann wrote:
>
>> [...]
>> Worth mentioning is perhaps that [...]
>> directly after get_backtrace here [...]
>> we access Lisp objects in trace_hash when computing the hash and in the
>> other hash table code.
>
> Also worth mentioning is that trace_hash uses XHASH, which is probably
> problematic in combination with a moving GC.
Good catch. s/XHASH/sxhash_eq/ there, I think? And let's poison XHASH
when MPS is in use?
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 21:49 ` Pip Cet via Emacs development discussions.
@ 2024-12-23 21:58 ` Helmut Eller
2024-12-23 23:20 ` Pip Cet via Emacs development discussions.
0 siblings, 1 reply; 129+ messages in thread
From: Helmut Eller @ 2024-12-23 21:58 UTC (permalink / raw)
To: Pip Cet; +Cc: Gerd Möllmann, Eli Zaretskii, ofv, emacs-devel, acorallo
On Mon, Dec 23 2024, Pip Cet wrote:
[...]
>> Also worth mentioning is that trace_hash uses XHASH, which is probably
>> problematic in combination with a moving GC.
>
> Good catch. s/XHASH/sxhash_eq/ there, I think? And let's poison XHASH
> when MPS is in use?
sxhash_eq doesn't fly with headerless objects. It should be obsoleted,
IMO.
Helmut
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 21:58 ` Helmut Eller
@ 2024-12-23 23:20 ` Pip Cet via Emacs development discussions.
2024-12-24 5:38 ` Helmut Eller
0 siblings, 1 reply; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-23 23:20 UTC (permalink / raw)
To: Helmut Eller
Cc: Gerd Möllmann, Eli Zaretskii, ofv, emacs-devel, acorallo
"Helmut Eller" <eller.helmut@gmail.com> writes:
> On Mon, Dec 23 2024, Pip Cet wrote:
> [...]
>>> Also worth mentioning is that trace_hash uses XHASH, which is probably
>>> problematic in combination with a moving GC.
>>
>> Good catch. s/XHASH/sxhash_eq/ there, I think? And let's poison XHASH
>> when MPS is in use?
>
> sxhash_eq doesn't fly with headerless objects.
Which objects would that be?
Right now all IGC objects have headers, right? Did I miss any?
> It should be obsoleted, IMO.
I don't see why.
Is this about cons cells exclusively? Because 3 words/cons is too
much (possibly 4 words on W64 or 32-bit systems)?
For vectors we can usually derive the length of the vector from the IGC
header (which has plenty of extra bits), which would have the equivalent
effect. Strings, symbols, floats shouldn't matter.
That leaves conses. My guess so far was that you wanted to implement a
hack where a headerless cons is a two-word object that would turn into a
tagged pointer to another two-word object with a header as soon as its
hash value is taken. That requires slowing down either XCAR or XCDR, I
think, and that's sufficient reason for me not to do it, but I guess I
misunderstood your plans. This would also mean sxhash_eq would allocate
memory, so it couldn't be called from a signal handler without yet
another workaround.
(Note that cons cells used to store long lists are inherently
inefficient: naively storing an n-element list with a header requires
n+1 words, but even headerless cons cells will require 2*n words. So if
we really decide we need to reduce cons memory usage, I'd look into that
instead.)
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 19:00 ` Eli Zaretskii
2024-12-23 19:37 ` Eli Zaretskii
2024-12-23 20:49 ` Gerd Möllmann
@ 2024-12-23 23:37 ` Pip Cet via Emacs development discussions.
2024-12-24 4:03 ` Gerd Möllmann
2024-12-24 12:11 ` Eli Zaretskii
2 siblings, 2 replies; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-23 23:37 UTC (permalink / raw)
To: Eli Zaretskii
Cc: Gerd Möllmann, ofv, emacs-devel, eller.helmut, acorallo
"Eli Zaretskii" <eliz@gnu.org> writes:
>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>> Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org,
>> eller.helmut@gmail.com, acorallo@gnu.org
>> Date: Mon, 23 Dec 2024 18:44:42 +0100
>>
>> BTW, do you know which signal handlers use Lisp, i.e. allocate Lisp
>> objects or access some? All? Or, would it be realistic to rewrite signal
>> handlers to not do that?
I think there are several questions hiding behind the first question
mark:
1. which signal handlers want to read Lisp data
2. which signal handlers want to write Lisp data
3. which signal handlers want to allocate Lisp objects temporarily,
while guaranteeing no references to those objects survive when the
signal handler returns.
4. which signal handlers want to allocate Lisp objects permanently,
storing references to the new objects in "old" data
4a. ... and are willing to call a special transformation function to do
so
4b. ... and want to do so implicitly, expecting memory manipulation to
"just work".
1: definitely works
2: should work, but may hit a write barrier
3: could be made to work if there's interest
4a: if we must
4b: see the other thread. If we have both make_object_writable
(formerly CHECK_IMPURE) and commit_object_changes functions and call
them consistently, it might be possible to find a way.
> SIGPROF does (it's the basis for our Lisp profiler).
That's 1, 2, but not 3 or 4, right?
> SIGCHLD doesn't run Lisp (I think), but it examines objects and data
> structures of the Lisp machine (those related to child processes).
Just 1, then?
>> One thing I've seen done elsewhere is to publish a message to a message
>> board so that it can be handled outside of the signal handler. Something
>> like that, you know what I mean.
>
> This is tricky for the profiler, because you want to sample the
> function in which you are right there and then, not some time later.
But would it be so bad to use a copy of the specpdl stack, placed in a
prepared area which is a GC root so we'd guarantee survival (but not
immutability; I don't think that matters in practice) of entries?
memcpy is safe to call from a signal handler, and then we could do all
of the processing safely.
(My preference would be to make the specpdl stack an ambiguous root
while the profiler is in use: that way, we'd get usable backtraces even
if the SIGPROF happened during GC, which is probably more useful than
merely saying that we were in GC).
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 20:30 ` Benjamin Riefenstahl
@ 2024-12-23 23:39 ` Pip Cet via Emacs development discussions.
2024-12-24 12:14 ` Eli Zaretskii
2024-12-24 3:37 ` Eli Zaretskii
1 sibling, 1 reply; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-23 23:39 UTC (permalink / raw)
To: Benjamin Riefenstahl
Cc: Eli Zaretskii, gerd.moellmann, ofv, emacs-devel, eller.helmut,
acorallo
"Benjamin Riefenstahl" <b.riefenstahl@turtle-trading.net> writes:
>>> From: Pip Cet <pipcet@protonmail.com>
>>> >> +#include <pthread.h>
>
> Eli Zaretskii writes:
>>> > We cannot use pthreads.h in portable code. If we want to use
>>> > threads, we need separate implementations for Posix and Windows,
>>> > like wedid in systhread.c for Lisp threads.
>
> Just a drive-by observation: Signals are a POSIX feature, so we have to
> think about the potential conflict between signals and MPS only on
> POSIX, not on MS Windows, right?
I believe it affects all operating systems we're playing with (well, I'm
also playing with FreeDOS but I'm not going to port MPS to it. It's my
New Year's resolution not to).
The allocation thread approach should work for all of them. If we have
stdatomic.h, performance should be acceptable.
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 20:30 ` Benjamin Riefenstahl
2024-12-23 23:39 ` Pip Cet via Emacs development discussions.
@ 2024-12-24 3:37 ` Eli Zaretskii
2024-12-24 8:48 ` Benjamin Riefenstahl
1 sibling, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-24 3:37 UTC (permalink / raw)
To: Benjamin Riefenstahl
Cc: pipcet, gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
> From: Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
> Cc: Pip Cet <pipcet@protonmail.com>, gerd.moellmann@gmail.com,
> ofv@wanadoo.es, emacs-devel@gnu.org, eller.helmut@gmail.com,
> acorallo@gnu.org
> Date: Mon, 23 Dec 2024 22:30:57 +0200
>
> >> From: Pip Cet <pipcet@protonmail.com>
> >> >> +#include <pthread.h>
>
> Eli Zaretskii writes:
> >> > We cannot use pthreads.h in portable code. If we want to use
> >> > threads, we need separate implementations for Posix and Windows,
> >> > like wedid in systhread.c for Lisp threads.
>
> Just a drive-by observation: Signals are a POSIX feature, so we have to
> think about the potential conflict between signals and MPS only on
> POSIX, not on MS Windows, right?
Emacs on Windows emulates some Posix signals (SIGPROF, SIGCHLD,
SIGALRM), so this affects the Windows build as well.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 23:37 ` Some experience with the igc branch Pip Cet via Emacs development discussions.
@ 2024-12-24 4:03 ` Gerd Möllmann
2024-12-24 10:25 ` Pip Cet via Emacs development discussions.
2024-12-24 12:26 ` Eli Zaretskii
2024-12-24 12:11 ` Eli Zaretskii
1 sibling, 2 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-24 4:03 UTC (permalink / raw)
To: Pip Cet; +Cc: Eli Zaretskii, ofv, emacs-devel, eller.helmut, acorallo
Pip Cet <pipcet@protonmail.com> writes:
> "Eli Zaretskii" <eliz@gnu.org> writes:
>
>>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>>> Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org,
>>> eller.helmut@gmail.com, acorallo@gnu.org
>>> Date: Mon, 23 Dec 2024 18:44:42 +0100
>>>
>>> BTW, do you know which signal handlers use Lisp, i.e. allocate Lisp
>>> objects or access some? All? Or, would it be realistic to rewrite signal
>>> handlers to not do that?
>
> I think there are several questions hiding behind the first question
> mark:
>
> 1. which signal handlers want to read Lisp data
> 2. which signal handlers want to write Lisp data
> 3. which signal handlers want to allocate Lisp objects temporarily,
> while guaranteeing no references to those objects survive when the
> signal handler returns.
> 4. which signal handlers want to allocate Lisp objects permanently,
> storing references to the new objects in "old" data
> 4a. ... and are willing to call a special transformation function to do
> so
> 4b. ... and want to do so implicitly, expecting memory manipulation to
> "just work".
New day, new beliefs :-). Today, when I read my question again, I'd
actually be surprised if a signal handler could allocate Lisp objects
because I wouldn't be able to explain how that works with alloc.c which
isn't reentrant. Not even Fcons is reentrant when I look at it now.
Correct, or am I overlooking something? Could others please check? If
it's right, things get a lot easier.
Maybe allocation of Lisp objects on the stack remains as some sort of
problem (AUTO_CONS etc)? I don't see how though, ATM.
> 1: definitely works
> 2: should work, but may hit a write barrier
> 3: could be made to work if there's interest
> 4a: if we must
> 4b: see the other thread. If we have both make_object_writable
> (formerly CHECK_IMPURE) and commit_object_changes functions and call
> them consistently, it might be possible to find a way.
>
>> SIGPROF does (it's the basis for our Lisp profiler).
>
> That's 1, 2, but not 3 or 4, right?
>
>> SIGCHLD doesn't run Lisp (I think), but it examines objects and data
>> structures of the Lisp machine (those related to child processes).
>
> Just 1, then?
>
>>> One thing I've seen done elsewhere is to publish a message to a message
>>> board so that it can be handled outside of the signal handler. Something
>>> like that, you know what I mean.
>>
>> This is tricky for the profiler, because you want to sample the
>> function in which you are right there and then, not some time later.
>
> But would it be so bad to use a copy of the specpdl stack, placed in a
> prepared area which is a GC root so we'd guarantee survival (but not
> immutability; I don't think that matters in practice) of entries?
> memcpy is safe to call from a signal handler, and then we could do all
> of the processing safely.
>
> (My preference would be to make the specpdl stack an ambiguous root
> while the profiler is in use: that way, we'd get usable backtraces even
> if the SIGPROF happened during GC, which is probably more useful than
> merely saying that we were in GC).
>
> Pip
I'd prefer to send messages from handle_profiler_signal. Or something
equivalent to sending messages. Please see my other mail where I looked
at that function. Implementing such a message board is of course not
easy. But I think it would be easy to understand how things work once one
has something like that.
And if I'm right with what I wrote above about allocation (and I think I
am), we also don't need provisions for allocating Lisp objects from
signal handlers, which would be a great simplification.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 21:43 ` Helmut Eller
2024-12-23 21:49 ` Pip Cet via Emacs development discussions.
@ 2024-12-24 4:05 ` Gerd Möllmann
2024-12-24 8:50 ` Gerd Möllmann
1 sibling, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-24 4:05 UTC (permalink / raw)
To: Helmut Eller; +Cc: Eli Zaretskii, pipcet, ofv, emacs-devel, acorallo
Helmut Eller <eller.helmut@gmail.com> writes:
> On Mon, Dec 23 2024, Gerd Möllmann wrote:
>
>> [...]
>> Worth mentioning is perhaps that [...]
>> directly after get_backtrace here [...]
>> we access Lisp objects in trace_hash when computing the hash and in the
>> other hash table code.
>
> Also worth mentioning is that trace_hash uses XHASH, which is probably
> problematic in combination with a moving GC.
>
> Helmut
Right, I must have overlooked that back then :-/
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 23:20 ` Pip Cet via Emacs development discussions.
@ 2024-12-24 5:38 ` Helmut Eller
2024-12-24 6:27 ` Gerd Möllmann
2024-12-24 10:09 ` Pip Cet via Emacs development discussions.
0 siblings, 2 replies; 129+ messages in thread
From: Helmut Eller @ 2024-12-24 5:38 UTC (permalink / raw)
To: Pip Cet; +Cc: Gerd Möllmann, Eli Zaretskii, ofv, emacs-devel, acorallo
On Mon, Dec 23 2024, Pip Cet wrote:
>> sxhash_eq doesn't fly with headerless objects.
>
> Which objects would that be?
>
> Right now all IGC objects have headers, right? Did I miss any?
Right, but I'd like to keep that option on the table.
>> It should be obsoleted, IMO.
[...]
> That leaves conses. My guess so far was that you wanted to implement a
> hack where a headerless cons is a two-word object that would turn into a
> tagged pointer to another two-word object with a header as soon as its
> hash value is taken. That requires slowing down either XCAR or XCDR, I
> think, and that's sufficient reason for me not to do it, but I guess I
> misunderstood your plans. This would also mean sxhash_eq would allocate
> memory, so it couldn't be called from a signal handler without yet
> another workaround.
I would go the obvious way: use segregated allocation. Each Lisp_Type
gets its own MPS pool, without igc-headers. The dflt pool would only
contain non-lisp types, like IGC_OBJ_STRING_DATA, with igc-headers.
That wouldn't slow down XCAR, but it requires that hash tables use MPS's
location dependencies.
Helmut
^ permalink raw reply [flat|nested] 129+ messages in thread
* SIGPROF + SIGCHLD and igc
2024-12-23 20:49 ` Gerd Möllmann
2024-12-23 21:43 ` Helmut Eller
@ 2024-12-24 6:03 ` Gerd Möllmann
2024-12-24 8:23 ` Helmut Eller
2024-12-24 12:54 ` Eli Zaretskii
1 sibling, 2 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-24 6:03 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
(I've given this a new subject.)
Gerd Möllmann <gerd.moellmann@gmail.com> writes:
> Eli Zaretskii <eliz@gnu.org> writes:
>
>>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>>> Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org,
>>> eller.helmut@gmail.com, acorallo@gnu.org
>>> Date: Mon, 23 Dec 2024 18:44:42 +0100
>>>
>>> BTW, do you know which signal handlers use Lisp, i.e. allocate Lisp
>>> objects or access some? All? Or, would it be realistic to rewrite signal
>>> handlers to not do that?
>>
>> SIGPROF does (it's the basis for our Lisp profiler).
>>
>> SIGCHLD doesn't run Lisp (I think), but it examines objects and data
>> structures of the Lisp machine (those related to child processes).
>>
>>> One thing I've seen done elsewhere is to publish a message to a message
>>> board so that it can be handled outside of the signal handler. Something
>>> like that, you know what I mean.
>>
>> This is tricky for the profiler, because you want to sample the
>> function in which you are right there and then, not some time later.
>>
>> For SIGCHLD this could work, but it might make Emacs slower in
>> handling subprocesses (there are some Lisp packages that fire
>> subprocesses at very high rate).
>
> Thanks.
>
> I've looked at SIGPROF. From an admittedly brief look at this, I'd
> summarize my results as:
>
> - The important part is get_backtrace. The rest could be done elsewhere
> by posting that to a message board, or whatever the mechanism is at
> the end.
>
> - Didn't see get_backtrace or functions called from it allocating Lisp
> objects.
>
> - It reads from a Lisp object because of
>
> #define specpdl (current_thread->m_specpdl)
> #define specpdl_end (current_thread->m_specpdl_end)
> #define specpdl_ptr (current_thread->m_specpdl_ptr)
>
> current_thread is a struct thread_state which is a PVEC_THREAD.
>
> - I remember that I wrote a scanner for the specpdl stacks, so that's
> not a Lisp object but a root, so no problem here, I think.
>
> - struct thread_state allocation is done in igc.c via alloc_immovable in
> igc_alloc_pseudovector. That allocated from from an AMS pool, which
> doesn't use barriers.
>
> - It doesn't seem to access other Lisp objects except current_thread.
>
> That doesn't look bad, I think. Worth mentioning is perhaps that
> directly after get_backtrace here
>
> static void
> record_backtrace (struct profiler_log *plog, EMACS_INT count)
> {
> log_t *log = plog->log;
> get_backtrace (log->trace, log->depth);
> EMACS_UINT hash = trace_hash (log->trace, log->depth);
>
> we access Lisp objects in trace_hash when computing the hash and in the
> other hash table code. IIUC that code counts hits with the same
> backtrace. Don't know how long that takes. But if posting the backtrace
> would take the same time, we would be on par.
>
> I'll try to also look at SIGCHLD at some later point, but Christmas,
> family etc.
>
> Happy holidays!
Been up a bit early, so...
This is about SIGCHLD, and I must say I find it a bit hard to tell if
all other platforms do the same. There are simply too many #if's to
consider in the signal handling code.
Anyway, what I see here: SIGCHLD doesn't do anything dangerous in the
signal handler. Instead, the occurrence of SIGCHLD is added to a queue
with enqueue_async_work and that's basically it.
The work items in the queue are processed by process_pending_signals,
outside of the signal handler. Very nice, that's how it should be :-).
(And maybe, just as an inspiration, one could use that construct for
SIGPROF?)
So, there is actually no problem at all with SIGCHLD that I can see.
My personal summary for SIGPROF + SIGCHLD at this point:
- I recommend rewriting SIGPROF handling in the way I tried to describe,
possibly using the existing work queue mechanism. Everything else looks
too complicated to me.
- Lisp allocation in signal handlers cannot exist because alloc.c is not
reentrant which means we would crash with the old GC. We don't need
anything extra for that in igc.
- No longer wondering why macOS does not show any problems in that whole
area. The only problem is SIGPROF accessing Lisp objects, and the
memory barrier is not a problem on macOS because it doesn't use
signals.
Please double-check!
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 5:38 ` Helmut Eller
@ 2024-12-24 6:27 ` Gerd Möllmann
2024-12-24 10:09 ` Pip Cet via Emacs development discussions.
1 sibling, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-24 6:27 UTC (permalink / raw)
To: Helmut Eller; +Cc: Pip Cet, Eli Zaretskii, ofv, emacs-devel, acorallo
Helmut Eller <eller.helmut@gmail.com> writes:
> On Mon, Dec 23 2024, Pip Cet wrote:
>
>>> sxhash_eq doesn't fly with headerless objects.
>>
>> Which objects would that be?
>>
>> Right now all IGC objects have headers, right? Did I miss any?
>
> Right, but I'd like to keep that option on the table.
>
>>> It should be obsoleted, IMO.
Agree. I thihk sxhash-eq sort of leaks details of the GC implementation.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: SIGPROF + SIGCHLD and igc
2024-12-24 6:03 ` SIGPROF + SIGCHLD and igc Gerd Möllmann
@ 2024-12-24 8:23 ` Helmut Eller
2024-12-24 8:39 ` Gerd Möllmann
2024-12-24 13:05 ` Eli Zaretskii
2024-12-24 12:54 ` Eli Zaretskii
1 sibling, 2 replies; 129+ messages in thread
From: Helmut Eller @ 2024-12-24 8:23 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: Eli Zaretskii, pipcet, ofv, emacs-devel, acorallo
On Tue, Dec 24 2024, Gerd Möllmann wrote:
[...]
> Anyway, what I see here: SIGCHLD doesn't do anything dangerous in the
> signal handler. Instead, the occurrence of SIGCHLD is added to a queue
> with enqueue_async_work and that's basically it.
Wrong branch! enqueue_async_work doesn't exist in master. ISTR that in
master it iterates through process-list. Also, Pip said something that
the queue is not signal safe, because signals can nest or something like
that. Also, Eli didn't like enqueue_async_work much.
> My personal summary for SIGPROF + SIGCHLD at this point:
>
> - I recommend rewriting SIGPROF handling in the way I tried to describe,
> possibly using the existing work queue mechanism. Everything else looks
> too complicated to me.
>
> - Lisp allocation in signal handlers cannot exist because alloc.c is not
> reentrant which means we would crash with the old GC. We don't need
> anything extra for that in igc.
>
> - No longer wondering why macOS does not show any problems in that whole
> area. The only problem is SIGPROF accessing Lisp objects, and the
> memory barrier is not a problem on macOS because it doesn't use
> signals.
>
> Please double-check!
I think, SIGIO might cause trouble. But that async IO code in process.c
is sooo hard to read. I wonder if it would be simpler with threads,
e.g. one thread per Lisp_Process.
Helmut
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: SIGPROF + SIGCHLD and igc
2024-12-24 8:23 ` Helmut Eller
@ 2024-12-24 8:39 ` Gerd Möllmann
2024-12-25 9:22 ` Helmut Eller
2024-12-24 13:05 ` Eli Zaretskii
1 sibling, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-24 8:39 UTC (permalink / raw)
To: Helmut Eller; +Cc: Eli Zaretskii, pipcet, ofv, emacs-devel, acorallo
Helmut Eller <eller.helmut@gmail.com> writes:
> On Tue, Dec 24 2024, Gerd Möllmann wrote:
>
> [...]
>> Anyway, what I see here: SIGCHLD doesn't do anything dangerous in the
>> signal handler. Instead, the occurrence of SIGCHLD is added to a queue
>> with enqueue_async_work and that's basically it.
>
> Wrong branch! enqueue_async_work doesn't exist in master. ISTR that in
> master it iterates through process-list. Also, Pip said something that
> the queue is not signal safe, because signals can nest or something like
> that. Also, Eli didn't like enqueue_async_work much.
Oops, thanks for checking! And 👍 to Pip. Then we have to see what to do
with nested signals if that's a problem.
>> My personal summary for SIGPROF + SIGCHLD at this point:
>>
>> - I recommend rewriting SIGPROF handling in the way I tried to describe,
>> possibly using the existing work queue mechanism. Everything else looks
>> too complicated to me.
>>
>> - Lisp allocation in signal handlers cannot exist because alloc.c is not
>> reentrant which means we would crash with the old GC. We don't need
>> anything extra for that in igc.
>>
>> - No longer wondering why macOS does not show any problems in that whole
>> area. The only problem is SIGPROF accessing Lisp objects, and the
>> memory barrier is not a problem on macOS because it doesn't use
>> signals.
>>
>> Please double-check!
>
> I think, SIGIO might cause trouble. But that async IO code in process.c
> is sooo hard to read. I wonder if it would be simpler with threads,
> e.g. one thread per Lisp_Process.
It's a maze :-(.
BTW, do you agree with my analysis that Lisp allocations can't possibly
exist in signal handlers today?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 3:37 ` Eli Zaretskii
@ 2024-12-24 8:48 ` Benjamin Riefenstahl
2024-12-24 13:52 ` Eli Zaretskii
0 siblings, 1 reply; 129+ messages in thread
From: Benjamin Riefenstahl @ 2024-12-24 8:48 UTC (permalink / raw)
To: Eli Zaretskii
Cc: pipcet, gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii writes:
> Emacs on Windows emulates some Posix signals (SIGPROF, SIGCHLD,
> SIGALRM), so this affects the Windows build as well.
That's interesting. But does this emulation have the same constraints
as POSIX signals have?
benny
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 4:05 ` Gerd Möllmann
@ 2024-12-24 8:50 ` Gerd Möllmann
0 siblings, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-24 8:50 UTC (permalink / raw)
To: Helmut Eller; +Cc: Eli Zaretskii, pipcet, ofv, emacs-devel, acorallo
Gerd Möllmann <gerd.moellmann@gmail.com> writes:
> Helmut Eller <eller.helmut@gmail.com> writes:
>
>> On Mon, Dec 23 2024, Gerd Möllmann wrote:
>>
>>> [...]
>>> Worth mentioning is perhaps that [...]
>>> directly after get_backtrace here [...]
>>> we access Lisp objects in trace_hash when computing the hash and in the
>>> other hash table code.
>>
>> Also worth mentioning is that trace_hash uses XHASH, which is probably
>> problematic in combination with a moving GC.
>>
>> Helmut
>
> Right, I must have overlooked that back then :-/
I've pushed 2 things to igc. One for the above, and a second that
removes XHASH for HAVE_MPS. Hope the second works for all platforms, at
couldn't find uses elsewhere with git-grep.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 5:38 ` Helmut Eller
2024-12-24 6:27 ` Gerd Möllmann
@ 2024-12-24 10:09 ` Pip Cet via Emacs development discussions.
1 sibling, 0 replies; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-24 10:09 UTC (permalink / raw)
To: Helmut Eller
Cc: Gerd Möllmann, Eli Zaretskii, ofv, emacs-devel, acorallo
"Helmut Eller" <eller.helmut@gmail.com> writes:
> On Mon, Dec 23 2024, Pip Cet wrote:
>
>>> sxhash_eq doesn't fly with headerless objects.
>>
>> Which objects would that be?
>>
>> Right now all IGC objects have headers, right? Did I miss any?
>
> Right, but I'd like to keep that option on the table.
I see one specific case where it would be useful: storing 64-bit
integers on 32-bit systems. We don't need the entire integer range,
since -256M .. +256M - 1 are fixnums (assuming we reduce fixnum range by
1 bit). So we have 512M unused values, which is precisely the number of
possible forwarding pointers if we maintain 8-byte alignment. We can
use two "impossible" forwarding pointers for 1-word padding and N-word
padding, so this case works out precisely. No hash problems, since a
u64 is constant and we can hash the contents instead.
The only relevant 2-word object is conses, and I don't see a way to do
it for them.
Most N-word objects with N>2 are either fairly large to begin with, or
they're vectorlikes and we have a redundant size field, which we can get
rid of.
>>> It should be obsoleted, IMO.
>
> [...]
>> That leaves conses. My guess so far was that you wanted to implement a
>> hack where a headerless cons is a two-word object that would turn into a
>> tagged pointer to another two-word object with a header as soon as its
>> hash value is taken. That requires slowing down either XCAR or XCDR, I
>> think, and that's sufficient reason for me not to do it, but I guess I
>> misunderstood your plans. This would also mean sxhash_eq would allocate
>> memory, so it couldn't be called from a signal handler without yet
>> another workaround.
>
> I would go the obvious way: use segregated allocation. Each Lisp_Type
> gets its own MPS pool, without igc-headers. The dflt pool would only
Why bother for non-conses?
> contain non-lisp types, like IGC_OBJ_STRING_DATA, with igc-headers.
> That wouldn't slow down XCAR, but it requires that hash tables use MPS's
> location dependencies.
I don't think we want to use location dependencies: even if we solved
all the other problems (Fsxhash_eq, permanent hashes for those places
where we can't rehash), I'm pretty sure rehashing would kill us. In
particular, if we somehow managed to make GC more fine-grained and move
fewer objects, we'd end up rehashing more, so suddenly we'd have an
incentive not to use minor GCs.
But I confess that I haven't looked at the location dependency code.
There's no need for us to use it, and from the documentation it seemed
it wouldn't be a good idea to start using it if you don't have to.
(Also, at that point, shouldn't we just use an AMS pool for conses?)
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 4:03 ` Gerd Möllmann
@ 2024-12-24 10:25 ` Pip Cet via Emacs development discussions.
2024-12-24 10:50 ` Gerd Möllmann
2024-12-24 13:15 ` Eli Zaretskii
2024-12-24 12:26 ` Eli Zaretskii
1 sibling, 2 replies; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-24 10:25 UTC (permalink / raw)
To: Gerd Möllmann
Cc: Eli Zaretskii, ofv, emacs-devel, eller.helmut, acorallo
Gerd Möllmann <gerd.moellmann@gmail.com> writes:
> New day, new beliefs :-). Today, when I read my question again, I'd
> actually be surprised if a signal handler could allocate Lisp objects
> because I wouldn't be able to explain how that works with alloc.c which
> isn't reentrant. Not even Fcons is reentrant when I look at it now.
>
> Correct, or am I overlooking something? Could others please check? If
> it's right, things get a lot easier.
I agree. But Eli said something about wanting to run Lisp from a signal
handler, which would change that. I was trying to explain why we don't
want to do that.
> Maybe allocation of Lisp objects on the stack remains as some sort of
> problem (AUTO_CONS etc)? I don't see how though, ATM.
Stack objects are always optional, so if there is code that attempts to
avoid alloc.c by using those, it's broken.
My current patch makes it so the main thread never takes the arena lock,
ever. Performance isn't quite the same as scratch/igc: for some reason
I don't understand, it's slightly better. Still needs cleanup,
de-pthreading, and we probably don't need to use atomic types
everywhere.
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 10:25 ` Pip Cet via Emacs development discussions.
@ 2024-12-24 10:50 ` Gerd Möllmann
2024-12-24 13:15 ` Eli Zaretskii
1 sibling, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-24 10:50 UTC (permalink / raw)
To: Pip Cet; +Cc: Eli Zaretskii, ofv, emacs-devel, eller.helmut, acorallo
Pip Cet <pipcet@protonmail.com> writes:
> Gerd Möllmann <gerd.moellmann@gmail.com> writes:
>
>> New day, new beliefs :-). Today, when I read my question again, I'd
>> actually be surprised if a signal handler could allocate Lisp objects
>> because I wouldn't be able to explain how that works with alloc.c which
>> isn't reentrant. Not even Fcons is reentrant when I look at it now.
>>
>> Correct, or am I overlooking something? Could others please check? If
>> it's right, things get a lot easier.
>
> I agree. But Eli said something about wanting to run Lisp from a signal
> handler, which would change that. I was trying to explain why we don't
> want to do that.
Thanks for checking! Must be kind of a misunderstanding going on. And
anyway, it would be a feature we don't have with the old GC, so I'd
declare it out of scope :-).
>> Maybe allocation of Lisp objects on the stack remains as some sort of
>> problem (AUTO_CONS etc)? I don't see how though, ATM.
>
> Stack objects are always optional, so if there is code that attempts to
> avoid alloc.c by using those, it's broken.
Yes!
> My current patch makes it so the main thread never takes the arena lock,
> ever.
Hm, how and why does that work?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 23:37 ` Some experience with the igc branch Pip Cet via Emacs development discussions.
2024-12-24 4:03 ` Gerd Möllmann
@ 2024-12-24 12:11 ` Eli Zaretskii
1 sibling, 0 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-24 12:11 UTC (permalink / raw)
To: Pip Cet; +Cc: gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
> Date: Mon, 23 Dec 2024 23:37:13 +0000
> From: Pip Cet <pipcet@protonmail.com>
> Cc: Gerd Möllmann <gerd.moellmann@gmail.com>, ofv@wanadoo.es, emacs-devel@gnu.org, eller.helmut@gmail.com, acorallo@gnu.org
>
> "Eli Zaretskii" <eliz@gnu.org> writes:
>
> 1. which signal handlers want to read Lisp data
> 2. which signal handlers want to write Lisp data
> 3. which signal handlers want to allocate Lisp objects temporarily,
> while guaranteeing no references to those objects survive when the
> signal handler returns.
> 4. which signal handlers want to allocate Lisp objects permanently,
> storing references to the new objects in "old" data
> 4a. ... and are willing to call a special transformation function to do
> so
> 4b. ... and want to do so implicitly, expecting memory manipulation to
> "just work".
>
> 1: definitely works
> 2: should work, but may hit a write barrier
> 3: could be made to work if there's interest
> 4a: if we must
> 4b: see the other thread. If we have both make_object_writable
> (formerly CHECK_IMPURE) and commit_object_changes functions and call
> them consistently, it might be possible to find a way.
>
> > SIGPROF does (it's the basis for our Lisp profiler).
>
> That's 1, 2, but not 3 or 4, right?
I don't think I understand your categories well enough, and anyway
didn't look at the code to find out where it stops in that scale.
> > SIGCHLD doesn't run Lisp (I think), but it examines objects and data
> > structures of the Lisp machine (those related to child processes).
>
> Just 1, then?
Ditto. It calls various functions, which I didn't trace into.
> >> One thing I've seen done elsewhere is to publish a message to a message
> >> board so that it can be handled outside of the signal handler. Something
> >> like that, you know what I mean.
> >
> > This is tricky for the profiler, because you want to sample the
> > function in which you are right there and then, not some time later.
>
> But would it be so bad to use a copy of the specpdl stack, placed in a
> prepared area which is a GC root so we'd guarantee survival (but not
> immutability; I don't think that matters in practice) of entries?
> memcpy is safe to call from a signal handler, and then we could do all
> of the processing safely.
How will you ensure that the copied specpdl stack faithfully tells the
profile info? It will most probably introduce bias into the profile.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 23:39 ` Pip Cet via Emacs development discussions.
@ 2024-12-24 12:14 ` Eli Zaretskii
2024-12-24 13:18 ` Pip Cet via Emacs development discussions.
2024-12-24 13:42 ` Benjamin Riefenstahl
0 siblings, 2 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-24 12:14 UTC (permalink / raw)
To: Pip Cet
Cc: b.riefenstahl, gerd.moellmann, ofv, emacs-devel, eller.helmut,
acorallo
> Date: Mon, 23 Dec 2024 23:39:41 +0000
> From: Pip Cet <pipcet@protonmail.com>
> Cc: Eli Zaretskii <eliz@gnu.org>, gerd.moellmann@gmail.com, ofv@wanadoo.es, emacs-devel@gnu.org, eller.helmut@gmail.com, acorallo@gnu.org
>
> "Benjamin Riefenstahl" <b.riefenstahl@turtle-trading.net> writes:
>
> The allocation thread approach should work for all of them. If we have
> stdatomic.h, performance should be acceptable.
We should carefully discuss the design and its implications before we
conclude that this is an idea that is good enough to justify such a
significant change. If nothing else, it throws out the window several
months of everyone's experience with the current implementation.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 4:03 ` Gerd Möllmann
2024-12-24 10:25 ` Pip Cet via Emacs development discussions.
@ 2024-12-24 12:26 ` Eli Zaretskii
2024-12-24 12:56 ` Gerd Möllmann
1 sibling, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-24 12:26 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
> Date: Tue, 24 Dec 2024 05:03:36 +0100
>
> I'd prefer to send messages from handle_profiler_signal. Or something
> equivalent to sending messages.
How would that be different? If the messages arrive asynchronously
and are handled asynchronously, that's the moral equivalent of
signals, no? If the messages are not handled asynchronously, how do
we make sure the obtained profile is accurate?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: SIGPROF + SIGCHLD and igc
2024-12-24 6:03 ` SIGPROF + SIGCHLD and igc Gerd Möllmann
2024-12-24 8:23 ` Helmut Eller
@ 2024-12-24 12:54 ` Eli Zaretskii
2024-12-24 12:59 ` Gerd Möllmann
1 sibling, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-24 12:54 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
> Date: Tue, 24 Dec 2024 07:03:53 +0100
>
> (I've given this a new subject.)
Not a second too soon!
> This is about SIGCHLD, and I must say I find it a bit hard to tell if
> all other platforms do the same. There are simply too many #if's to
> consider in the signal handling code.
>
> Anyway, what I see here: SIGCHLD doesn't do anything dangerous in the
> signal handler. Instead, the occurrence of SIGCHLD is added to a queue
> with enqueue_async_work and that's basically it.
Are we looking at the same code? I was talking about
handle_child_signal, which is called thusly:
static void
deliver_child_signal (int sig)
{
deliver_process_signal (sig, handle_child_signal);
}
What I see in handle_child_signal is not what you describe above.
> The work items in the queue are processed by process_pending_signals,
> outside of the signal handler. Very nice, that's how it should be :-).
I think you are looking at how SIGIO and SIGALRM are processed.
> (And maybe, just as an inspiration, one could use that construct for
> SIGPROF?)
Could one? SIGPROF's handler should sample the "program counter", so
delaying the sample will sample it in a wrong place. Right?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 12:26 ` Eli Zaretskii
@ 2024-12-24 12:56 ` Gerd Möllmann
2024-12-24 13:19 ` Pip Cet via Emacs development discussions.
2024-12-24 13:46 ` Eli Zaretskii
0 siblings, 2 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-24 12:56 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>> Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org,
>> eller.helmut@gmail.com, acorallo@gnu.org
>> Date: Tue, 24 Dec 2024 05:03:36 +0100
>>
>> I'd prefer to send messages from handle_profiler_signal. Or something
>> equivalent to sending messages.
>
> How would that be different? If the messages arrive asynchronously
> and are handled asynchronously, that's the moral equivalent of
> signals, no?
I'm using SIGPROF below to make it more concrete. Similar for other
signals.
The idea is to get the backtrace in the SIGPROF handler, without
accessing Lisp data. That can be done, as I've tried to show.
Then place that backtrace somewhere.
In an an actor model architecture, one would use a message that contains
the backtrace and post it to a message board. I used that architecture
just as an example, because I like it a lot. In the same architecture,
typically a scheduler thread would then assign a thread to handle the
message. The handler handling the profiler message would then do what
record_backtrace today does after get_backtrace, i.e. count same
backtraces.
That's only one example architectures, of course. One can use something
else, like queues that are handled by another thread, one doesn't need a
scheduler thread, and so on, and so on. Pip's work queue is an
example.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: SIGPROF + SIGCHLD and igc
2024-12-24 12:54 ` Eli Zaretskii
@ 2024-12-24 12:59 ` Gerd Möllmann
0 siblings, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-24 12:59 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
>> eller.helmut@gmail.com, acorallo@gnu.org
>> Date: Tue, 24 Dec 2024 07:03:53 +0100
>>
>> (I've given this a new subject.)
>
> Not a second too soon!
>
>> This is about SIGCHLD, and I must say I find it a bit hard to tell if
>> all other platforms do the same. There are simply too many #if's to
>> consider in the signal handling code.
>>
>> Anyway, what I see here: SIGCHLD doesn't do anything dangerous in the
>> signal handler. Instead, the occurrence of SIGCHLD is added to a queue
>> with enqueue_async_work and that's basically it.
>
> Are we looking at the same code? I was talking about
> handle_child_signal, which is called thusly:
No we aren't :-). My mistake. I was looking at he code Pip wrote.
See Helmut's later message and my response.
>
> static void
> deliver_child_signal (int sig)
> {
> deliver_process_signal (sig, handle_child_signal);
> }
>
> What I see in handle_child_signal is not what you describe above.
>
>> The work items in the queue are processed by process_pending_signals,
>> outside of the signal handler. Very nice, that's how it should be :-).
>
> I think you are looking at how SIGIO and SIGALRM are processed.
>
>> (And maybe, just as an inspiration, one could use that construct for
>> SIGPROF?)
>
> Could one? SIGPROF's handler should sample the "program counter", so
> delaying the sample will sample it in a wrong place. Right?
Taking the backtrace would be done in the signal handler, the rest would
be done elsewhere. So, no.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: SIGPROF + SIGCHLD and igc
2024-12-24 8:23 ` Helmut Eller
2024-12-24 8:39 ` Gerd Möllmann
@ 2024-12-24 13:05 ` Eli Zaretskii
2024-12-25 10:46 ` Helmut Eller
1 sibling, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-24 13:05 UTC (permalink / raw)
To: Helmut Eller; +Cc: gerd.moellmann, pipcet, ofv, emacs-devel, acorallo
> From: Helmut Eller <eller.helmut@gmail.com>
> Cc: Eli Zaretskii <eliz@gnu.org>, pipcet@protonmail.com, ofv@wanadoo.es,
> emacs-devel@gnu.org, acorallo@gnu.org
> Date: Tue, 24 Dec 2024 09:23:11 +0100
>
> I think, SIGIO might cause trouble.
Why do you think so? Its handler does almost nothing, just sets a
flag (if you ignore the Android-specific stuff there).
> But that async IO code in process.c is sooo hard to read. I wonder
> if it would be simpler with threads, e.g. one thread per
> Lisp_Process.
Heh, see w32proc.c.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 10:25 ` Pip Cet via Emacs development discussions.
2024-12-24 10:50 ` Gerd Möllmann
@ 2024-12-24 13:15 ` Eli Zaretskii
1 sibling, 0 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-24 13:15 UTC (permalink / raw)
To: Pip Cet; +Cc: gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
> Date: Tue, 24 Dec 2024 10:25:38 +0000
> From: Pip Cet <pipcet@protonmail.com>
> Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org, eller.helmut@gmail.com, acorallo@gnu.org
>
> Gerd Möllmann <gerd.moellmann@gmail.com> writes:
>
> > New day, new beliefs :-). Today, when I read my question again, I'd
> > actually be surprised if a signal handler could allocate Lisp objects
> > because I wouldn't be able to explain how that works with alloc.c which
> > isn't reentrant. Not even Fcons is reentrant when I look at it now.
> >
> > Correct, or am I overlooking something? Could others please check? If
> > it's right, things get a lot easier.
>
> I agree. But Eli said something about wanting to run Lisp from a signal
> handler, which would change that.
Not Lisp, but the Lisp machine in general. Which includes access to
Lisp data to read and write it.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 12:14 ` Eli Zaretskii
@ 2024-12-24 13:18 ` Pip Cet via Emacs development discussions.
2024-12-24 13:42 ` Benjamin Riefenstahl
1 sibling, 0 replies; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-24 13:18 UTC (permalink / raw)
To: Eli Zaretskii
Cc: b.riefenstahl, gerd.moellmann, ofv, emacs-devel, eller.helmut,
acorallo
"Eli Zaretskii" <eliz@gnu.org> writes:
>> Date: Mon, 23 Dec 2024 23:39:41 +0000
>> From: Pip Cet <pipcet@protonmail.com>
>> Cc: Eli Zaretskii <eliz@gnu.org>, gerd.moellmann@gmail.com, ofv@wanadoo.es, emacs-devel@gnu.org, eller.helmut@gmail.com, acorallo@gnu.org
>>
>> "Benjamin Riefenstahl" <b.riefenstahl@turtle-trading.net> writes:
>>
>> The allocation thread approach should work for all of them. If we have
>> stdatomic.h, performance should be acceptable.
>
> We should carefully discuss the design and its implications before we
> conclude that this is an idea that is good enough to justify such a
> significant change. If nothing else, it throws out the window several
> months of everyone's experience with the current implementation.
I mostly agree, though I think to say that we throw out months of
experience is to overestimate the magnitude of the change a bit.
I'll push the bugfix I found, but I won't push this until there's some
sort of consensus about whether it's a good idea (we seem to be close to
a consensus that it isn't necessary or desirable; I'm the only one who
disagrees with that, and I can live with the "not desirable" part if
someone can convince me this change isn't necessary).
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 12:56 ` Gerd Möllmann
@ 2024-12-24 13:19 ` Pip Cet via Emacs development discussions.
2024-12-24 13:38 ` Gerd Möllmann
2024-12-24 13:46 ` Eli Zaretskii
1 sibling, 1 reply; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-24 13:19 UTC (permalink / raw)
To: Gerd Möllmann
Cc: Eli Zaretskii, ofv, emacs-devel, eller.helmut, acorallo
Gerd Möllmann <gerd.moellmann@gmail.com> writes:
> I'm using SIGPROF below to make it more concrete. Similar for other
> signals.
>
> The idea is to get the backtrace in the SIGPROF handler, without
> accessing Lisp data. That can be done, as I've tried to show.
I don't understand. We need to access the specpdl, which I consider
Lisp data, and certainly the backtrace includes data which can only be
generated using MPS-managed memory.
> Then place that backtrace somewhere.
I still think it's better to copy the specpdl, since that allows us to
generate the "backtrace" (whatever we choose to use for that) in Lisp.
If we spend too much time allocating short-lived data which triggers too
many GCs, we want to know what to fix in the Lisp code.
Honestly, though, it doesn't matter much, does it?
> That's only one example architectures, of course. One can use something
> else, like queues that are handled by another thread, one doesn't need a
> scheduler thread, and so on, and so on. Pip's work queue is an
> example.
That's Helmut's code, not mine.
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 13:19 ` Pip Cet via Emacs development discussions.
@ 2024-12-24 13:38 ` Gerd Möllmann
0 siblings, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-24 13:38 UTC (permalink / raw)
To: Pip Cet; +Cc: Eli Zaretskii, ofv, emacs-devel, eller.helmut, acorallo
Pip Cet <pipcet@protonmail.com> writes:
> Gerd Möllmann <gerd.moellmann@gmail.com> writes:
>
>> I'm using SIGPROF below to make it more concrete. Similar for other
>> signals.
>>
>> The idea is to get the backtrace in the SIGPROF handler, without
>> accessing Lisp data. That can be done, as I've tried to show.
>
> I don't understand. We need to access the specpdl, which I consider
> Lisp data, and certainly the backtrace includes data which can only be
> generated using MPS-managed memory.
What I meant with it not being Lisp data is union specbinding. The stack
of bindings is a root, and doesn't have a barrier. And accessing the
stack is not a problem because PVEC_THREAD is allocated from AMS which
doesn't have barriers. What we collect in get_backtrace is an array of
Lisp_Objects for the functions, and that's okay.
>
>> Then place that backtrace somewhere.
>
> I still think it's better to copy the specpdl, since that allows us to
> generate the "backtrace" (whatever we choose to use for that) in Lisp.
> If we spend too much time allocating short-lived data which triggers too
> many GCs, we want to know what to fix in the Lisp code.
In a way, what get_backtrace does is copy part of the bindings stack,
only the functions. The resulting backtrace that the user sees could
be done in Lisp, maybe, don't know. Important part for me is that we get
out of the signal handler to do stuff.
> Honestly, though, it doesn't matter much, does it?
Right, it's all details.
>
>> That's only one example architectures, of course. One can use something
>> else, like queues that are handled by another thread, one doesn't need a
>> scheduler thread, and so on, and so on. Pip's work queue is an
>> example.
>
> That's Helmut's code, not mine.
+2👍 to Helmut, -👍 to Pip, -👍 to me :-)
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 12:14 ` Eli Zaretskii
2024-12-24 13:18 ` Pip Cet via Emacs development discussions.
@ 2024-12-24 13:42 ` Benjamin Riefenstahl
1 sibling, 0 replies; 129+ messages in thread
From: Benjamin Riefenstahl @ 2024-12-24 13:42 UTC (permalink / raw)
To: Eli Zaretskii
Cc: Pip Cet, gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
>> From: Pip Cet <pipcet@protonmail.com>
>> [...]
>> "Benjamin Riefenstahl" <b.riefenstahl@turtle-trading.net> writes:
>>
>> The allocation thread approach should work for all of them. If we have
>> stdatomic.h, performance should be acceptable.
JFTR, that quote wasn't from me, I believe it belongs to Pip. ;-)
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 12:56 ` Gerd Möllmann
2024-12-24 13:19 ` Pip Cet via Emacs development discussions.
@ 2024-12-24 13:46 ` Eli Zaretskii
2024-12-24 14:12 ` Gerd Möllmann
1 sibling, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-24 13:46 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
> Date: Tue, 24 Dec 2024 13:56:18 +0100
>
> Eli Zaretskii <eliz@gnu.org> writes:
>
> >> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> >> Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org,
> >> eller.helmut@gmail.com, acorallo@gnu.org
> >> Date: Tue, 24 Dec 2024 05:03:36 +0100
> >>
> >> I'd prefer to send messages from handle_profiler_signal. Or something
> >> equivalent to sending messages.
> >
> > How would that be different? If the messages arrive asynchronously
> > and are handled asynchronously, that's the moral equivalent of
> > signals, no?
>
> I'm using SIGPROF below to make it more concrete. Similar for other
> signals.
>
> The idea is to get the backtrace in the SIGPROF handler, without
> accessing Lisp data. That can be done, as I've tried to show.
> Then place that backtrace somewhere.
Let's be more accurate: when I said "Lisp data", I actually meant any
data that is part of the Lisp machine's global state. That's because
you cannot safely access that state while the Lisp machine runs (and
modifies the state). You need the Lisp machine stopped in its tracks.
Agreed?
Now, with that definition, isn't specpdl stack part of "Lisp data"?
If so, and if we can safely access it from a signal handler, why do we
need to move it aside at all? And how would the "message handler" be
different in that aspect from a signal hanlder?
> In an an actor model architecture, one would use a message that contains
> the backtrace and post it to a message board. I used that architecture
> just as an example, because I like it a lot. In the same architecture,
> typically a scheduler thread would then assign a thread to handle the
> message. The handler handling the profiler message would then do what
> record_backtrace today does after get_backtrace, i.e. count same
> backtraces.
What is the purpose of delaying the part of record_backtrace after
get_backtrace to later? Is the counting it does dangerous when done
from a signal handler?
> That's only one example architectures, of course. One can use something
> else, like queues that are handled by another thread, one doesn't need a
> scheduler thread, and so on, and so on. Pip's work queue is an
> example.
Doing this from another thread raises the problem I describe above: we
need the Lisp thread(s) stopped, because you cannot examine the data
of the Lisp machine while the machine is running. And if we stop the
Lisp threads, why do we need the other thread at all?
I guess we are tossing ideas without sufficient detail, so each one
understands something different from each idea (since we have
different backgrounds and experiences). My suggestion is that to
describe each idea in enough detail to make the design and its
implications clear to all. A kind of DR, if you want. Then we will
be on the same page, and can have an effective discussion of the
various ideas.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 8:48 ` Benjamin Riefenstahl
@ 2024-12-24 13:52 ` Eli Zaretskii
2024-12-24 13:54 ` Benjamin Riefenstahl
0 siblings, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-24 13:52 UTC (permalink / raw)
To: Benjamin Riefenstahl
Cc: pipcet, gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
> From: Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
> Cc: pipcet@protonmail.com, gerd.moellmann@gmail.com, ofv@wanadoo.es,
> emacs-devel@gnu.org, eller.helmut@gmail.com, acorallo@gnu.org
> Date: Tue, 24 Dec 2024 10:48:34 +0200
>
> Eli Zaretskii writes:
> > Emacs on Windows emulates some Posix signals (SIGPROF, SIGCHLD,
> > SIGALRM), so this affects the Windows build as well.
>
> That's interesting. But does this emulation have the same constraints
> as POSIX signals have?
If it's a useful emulation, it must somehow generate an asynchronous
event, and then arrange for that event to call the signal handler.
Right? So the constraints we are talking about, which have to do with
the fact that the signal handlers are invoked asynchronously, are
definitely relevant for this emulation (or any useful emulation),
because the problem we discuss here is the situation where the signal
handler is invoked while MPS holds the arena lock.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 13:52 ` Eli Zaretskii
@ 2024-12-24 13:54 ` Benjamin Riefenstahl
0 siblings, 0 replies; 129+ messages in thread
From: Benjamin Riefenstahl @ 2024-12-24 13:54 UTC (permalink / raw)
To: Eli Zaretskii
Cc: pipcet, gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii writes:
> So the constraints we are talking about, which have to do with the
> fact that the signal handlers are invoked asynchronously, are
> definitely relevant for this emulation (or any useful emulation),
> because the problem we discuss here is the situation where the signal
> handler is invoked while MPS holds the arena lock.
Understood.
Regards, benny
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 13:46 ` Eli Zaretskii
@ 2024-12-24 14:12 ` Gerd Möllmann
2024-12-24 14:40 ` Eli Zaretskii
2024-12-24 21:18 ` Pip Cet via Emacs development discussions.
0 siblings, 2 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-24 14:12 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
>>
>> I'm using SIGPROF below to make it more concrete. Similar for other
>> signals.
>>
>> The idea is to get the backtrace in the SIGPROF handler, without
>> accessing Lisp data. That can be done, as I've tried to show.
>> Then place that backtrace somewhere.
>
> Let's be more accurate: when I said "Lisp data", I actually meant any
> data that is part of the Lisp machine's global state. That's because
> you cannot safely access that state while the Lisp machine runs (and
> modifies the state). You need the Lisp machine stopped in its tracks.
> Agreed?
Ok, let's use that definition.
> Now, with that definition, isn't specpdl stack part of "Lisp data"?
> If so, and if we can safely access it from a signal handler, why do we
> need to move it aside at all? And how would the "message handler" be
> different in that aspect from a signal hanlder?
We're coming from the problem that MPS uses signals for memory barriers.
On platforms != macOS. And I am proposing a solution for that.
The SIGPROF handler does two things: (1) get the current backtrace,
which does not trip on memory barriers, and (2) build a summary, i.e.
count same backtraces using a hash table. (2) trips on memory barriers.
So, my proposal, is to do (1) in the signal handler and do (2)
elsewhere, not in the signal handler. Where (2) is done is a matter of
design. If we use Helmut's work queue, it would be the main thread, I
suppose.
In any case we're in "normal" multi-threading territory, with the usual
restrictions and so on, but these are restrictions Emacs has. And we
don't need anything from MPS, which might or might not be possible to
get.
>
>> In an an actor model architecture, one would use a message that contains
>> the backtrace and post it to a message board. I used that architecture
>> just as an example, because I like it a lot. In the same architecture,
>> typically a scheduler thread would then assign a thread to handle the
>> message. The handler handling the profiler message would then do what
>> record_backtrace today does after get_backtrace, i.e. count same
>> backtraces.
>
> What is the purpose of delaying the part of record_backtrace after
> get_backtrace to later? Is the counting it does dangerous when done
> from a signal handler?
That part (2) which can trip on memory barriers because it accesses
MPS-managed memory like vectors and so on.
>
>> That's only one example architectures, of course. One can use something
>> else, like queues that are handled by another thread, one doesn't need a
>> scheduler thread, and so on, and so on. Pip's work queue is an
>> example.
>
> Doing this from another thread raises the problem I describe above: we
> need the Lisp thread(s) stopped, because you cannot examine the data
> of the Lisp machine while the machine is running. And if we stop the
> Lisp threads, why do we need the other thread at all?
>
> I guess we are tossing ideas without sufficient detail, so each one
> understands something different from each idea (since we have
> different backgrounds and experiences). My suggestion is that to
> describe each idea in enough detail to make the design and its
> implications clear to all. A kind of DR, if you want. Then we will
> be on the same page, and can have an effective discussion of the
> various ideas.
I hope the above helps. Please understand that I'm not proposing a
ready-made design, but mainly recommend moving (2) out of the signal
handler. Sorry if that was too abstract so far, I guess that's just the
way I'm thinking.
If it helps, maybe we should concentrate on solving this with Helmut's
work queue. Put the backtrace from (1) in the work queue, then do (2)
where the work queue is processed. Something like that.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 14:12 ` Gerd Möllmann
@ 2024-12-24 14:40 ` Eli Zaretskii
2024-12-25 4:56 ` Gerd Möllmann
2024-12-24 21:18 ` Pip Cet via Emacs development discussions.
1 sibling, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-24 14:40 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
> Date: Tue, 24 Dec 2024 15:12:40 +0100
>
> Eli Zaretskii <eliz@gnu.org> writes:
>
> > Now, with that definition, isn't specpdl stack part of "Lisp data"?
> > If so, and if we can safely access it from a signal handler, why do we
> > need to move it aside at all? And how would the "message handler" be
> > different in that aspect from a signal hanlder?
>
> We're coming from the problem that MPS uses signals for memory barriers.
> On platforms != macOS. And I am proposing a solution for that.
>
> The SIGPROF handler does two things: (1) get the current backtrace,
> which does not trip on memory barriers, and (2) build a summary, i.e.
> count same backtraces using a hash table. (2) trips on memory barriers.
Can you elaborate on (2) and why it trips? I guess I'm missing
something because I don't understand which code in record_backtrace
does trip on memory barriers and why.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 14:12 ` Gerd Möllmann
2024-12-24 14:40 ` Eli Zaretskii
@ 2024-12-24 21:18 ` Pip Cet via Emacs development discussions.
2024-12-25 5:23 ` Gerd Möllmann
1 sibling, 1 reply; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-24 21:18 UTC (permalink / raw)
To: Gerd Möllmann
Cc: Eli Zaretskii, ofv, emacs-devel, eller.helmut, acorallo
Gerd Möllmann <gerd.moellmann@gmail.com> writes:
> Eli Zaretskii <eliz@gnu.org> writes:
> We're coming from the problem that MPS uses signals for memory barriers.
> On platforms != macOS. And I am proposing a solution for that.
I don't think that's the problem. The problem is that signals can
interrupt MPS, on all platforms. We can't have MPS-signal-MPS stacks,
ever. The best way to ensure that is to keep signals on one stack, and
MPS on another stack. MacOS already does that for their SIGSEGV
equivalent, but we need to do it for all entry points into MPS.
If they don't have separate stacks, and we interrupt MPS, the signal
handler cannot look at any MPS-modifiable memory (including roots, which
may be in an inconsistent state mid-GC), ever. This includes the
specpdl. We can't write to MPS-known memory, ever. This includes any
area we might want to copy the backtrace or specpdl to.
> The SIGPROF handler does two things: (1) get the current backtrace,
> which does not trip on memory barriers, and
Even if the specpdl were an ambiguous root, we'd be making very
permanent and far-reaching assumptions about how MPS handles such roots
if we assumed that we could even look at such roots during GC. This
goes doubly for assuming that we can extract references to
ambiguously-rooted objects and put them into other areas of MPS-visible
memory. Even if this worked perfectly with current MPS on all
platforms, it would still be unreasonable for us to rely on such
implementation details.
We can't do (1).
>> Doing this from another thread raises the problem I describe above: we
>> need the Lisp thread(s) stopped, because you cannot examine the data
>> of the Lisp machine while the machine is running. And if we stop the
>> Lisp threads, why do we need the other thread at all?
Because MPS can continue and reach an MPS-consistent state only if it
has its own stack. In practice, this means an extra thread.
Or we re-raise signals (scratch/igc right now; this will delay signals
unpredictably), or we block them for the allocation fast path
(significant slowdown on some systems) *and* in the SIGSEGV handler
(which we'd need to "steal" from MPS, calling it from our real signal
handler by extracting sa_sigaction and calling that pointer. Recipe for
disaster).
I'm still convinced the extra thread is the least painful option,
followed by what we have now.
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-23 1:00 ` Óscar Fuentes
@ 2024-12-24 22:34 ` Pip Cet via Emacs development discussions.
2024-12-25 4:25 ` Freezing frame with igc Gerd Möllmann
0 siblings, 1 reply; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-24 22:34 UTC (permalink / raw)
To: Óscar Fuentes
Cc: emacs-devel, Gerd Möllmann, Helmut Eller, Andrea Corallo
Óscar Fuentes <ofv@wanadoo.es> writes:
> Pip Cet <pipcet@protonmail.com> writes:
>
>>> Redisplay just stopped while showing the menu, no crash nor infinite
>>> loop, its CPU usage was typical for the repeating timers that my config
>>> creates.
>>
>> That's a bit odd. It might be the signal issue, but that's purely a
>> guess. If it happens again, please let us know.
>
> Sure.
I'm not a hundred percent sure, because I was testing other changes, but
I just observed an Emacs session in a very similar state to what you
describe: very little but nonzero CPU usage, but unresponsive to X
interactions. I attached gdb, observed it was stuck in read_char, then
I messed up and set Vquit_flag to Qt, at which point the Emacs session
recovered and seems fully usable once more (it did take a while to do
so, though). So no valuable debug info this time, hope I'll hit it
again.
Again, it's possible this is a similar-looking but different bug,
possibly caused by local changes.
I don't think read_char or its subroutines even use MPS memory, though?
As this is a GTK build, and yours wasn't, we should probably look at X
interaction code shared between the GTK and non-GTK builds.
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Freezing frame with igc
2024-12-24 22:34 ` Pip Cet via Emacs development discussions.
@ 2024-12-25 4:25 ` Gerd Möllmann
2024-12-25 11:19 ` Pip Cet via Emacs development discussions.
2024-12-25 11:55 ` Óscar Fuentes
0 siblings, 2 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-25 4:25 UTC (permalink / raw)
To: Pip Cet; +Cc: Óscar Fuentes, emacs-devel, Helmut Eller, Andrea Corallo
(Subject changed.)
Pip Cet <pipcet@protonmail.com> writes:
> Óscar Fuentes <ofv@wanadoo.es> writes:
>
>> Pip Cet <pipcet@protonmail.com> writes:
>>
>>>> Redisplay just stopped while showing the menu, no crash nor infinite
>>>> loop, its CPU usage was typical for the repeating timers that my config
>>>> creates.
>>>
>>> That's a bit odd. It might be the signal issue, but that's purely a
>>> guess. If it happens again, please let us know.
>>
>> Sure.
>
> I'm not a hundred percent sure, because I was testing other changes, but
> I just observed an Emacs session in a very similar state to what you
> describe: very little but nonzero CPU usage, but unresponsive to X
> interactions. I attached gdb, observed it was stuck in read_char, then
> I messed up and set Vquit_flag to Qt, at which point the Emacs session
> recovered and seems fully usable once more (it did take a while to do
> so, though). So no valuable debug info this time, hope I'll hit it
> again.
>
> Again, it's possible this is a similar-looking but different bug,
> possibly caused by local changes.
>
> I don't think read_char or its subroutines even use MPS memory, though?
> As this is a GTK build, and yours wasn't, we should probably look at X
> interaction code shared between the GTK and non-GTK builds.
>
> Pip
That reminds of something. Maybe what you've seen is completely
unrelated, it's impossible to tell, but please find below a comment that
I added to do_switch_frame in frame.c.
/* We want to make sure that the next event generates a frame-switch
event to the appropriate frame. This seems kludgy to me, but
before you take it out, make sure that evaluating something like
(select-window (frame-root-window (make-frame))) doesn't end up
with your typing being interpreted in the new frame instead of
the one you're actually typing in. */
/* FIXME/tty: I don't understand this. (The comment above is from
Jim BLandy 1993 BTW, and the frame_ancestor_p from 2017.)
Setting the last event frame to nil leads to switch-frame events
being generated even if they normally wouldn't be because the frame
in question equals selected-frame. See the places in keyboard.c
where make_lispy_switch_frame is called.
This leads to problems at least on ttys.
Imagine that we have functions in post-command-hook that use
select-frame in some way (e.g., with-selected-window). Let these
functions select different frames during the execution of
post-command-hook in command_loop_1. Setting
internal_last_event_frame to nil here makes these select-frame
calls (potentially and in reality) generate switch-frame events.
(But only in one direction (frame_ancestor_p), which I also don't
understand).
These switch-frame events form an endless loop in
command_loop_1. It runs post-command-hook, which generates
switch-frame events, which command_loop_1 finds (bound to '#ignore)
and executes, which again runs post-command-hook etc., ad
infinitum.
Let's not do that for now on ttys. */
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 14:40 ` Eli Zaretskii
@ 2024-12-25 4:56 ` Gerd Möllmann
2024-12-25 12:19 ` Eli Zaretskii
0 siblings, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-25 4:56 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
>> eller.helmut@gmail.com, acorallo@gnu.org
>> Date: Tue, 24 Dec 2024 15:12:40 +0100
>>
>> Eli Zaretskii <eliz@gnu.org> writes:
>>
>> > Now, with that definition, isn't specpdl stack part of "Lisp data"?
>> > If so, and if we can safely access it from a signal handler, why do we
>> > need to move it aside at all? And how would the "message handler" be
>> > different in that aspect from a signal hanlder?
>>
>> We're coming from the problem that MPS uses signals for memory barriers.
>> On platforms != macOS. And I am proposing a solution for that.
>>
>> The SIGPROF handler does two things: (1) get the current backtrace,
>> which does not trip on memory barriers, and (2) build a summary, i.e.
>> count same backtraces using a hash table. (2) trips on memory barriers.
>
> Can you elaborate on (2) and why it trips? I guess I'm missing
> something because I don't understand which code in record_backtrace
> does trip on memory barriers and why.
Ok, (2) begins as shown below.
static void
record_backtrace (struct profiler_log *plog, EMACS_INT count)
{
log_t *log = plog->log;
get_backtrace (log->trace, log->depth);
--- (2) begins after this line -------------------------------
EMACS_UINT hash = trace_hash (log->trace, log->depth);
The SIGPROF can have interrupted Emacs at any point, both the MPS thread
and all others. MPS may have been doing arbitrary stuff when
interrupted, and Emacs threads too. Memory barriers may be on
unpredictable segments of memory, as they usually are, as part of MPS'
GC implementation. Do you agree with this picture?
Elsewhere I tried to explain why I think this works up to the line
marked (2) above. Now enter trace_hash. Current implementation:
static EMACS_UINT
trace_hash (Lisp_Object *trace, int depth)
{
EMACS_UINT hash = 0;
for (int i = 0; i < depth; i++)
{
Lisp_Object f = trace[i];
EMACS_UINT hash1;
#ifdef HAVE_MPS
hash1 = (CLOSUREP (f) ? igc_hash (AREF (f, CLOSURE_CODE)) : igc_hash (f));
^^^^^^^^ ^^^^^^^^ ^^^^
The constructs I marked with ^^^ all access the memory of F. F is a
vectorlike, it's memory is managed by MPS in an MPS pool that uses
memory barriers, so the memory of F can currently be behind a barrier.
It doesn't have to, but it can.
When we access F's memory and it is behind a barrier, the result is a
nested SIgSEGV while handling SIGPROF.
More code accessing memory that is potentially behind a barrier follows
in record_backtrace.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-24 21:18 ` Pip Cet via Emacs development discussions.
@ 2024-12-25 5:23 ` Gerd Möllmann
2024-12-25 10:48 ` Pip Cet via Emacs development discussions.
` (2 more replies)
0 siblings, 3 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-25 5:23 UTC (permalink / raw)
To: Pip Cet; +Cc: Eli Zaretskii, ofv, emacs-devel, eller.helmut, acorallo
Pip Cet <pipcet@protonmail.com> writes:
> Gerd Möllmann <gerd.moellmann@gmail.com> writes:
>
>> Eli Zaretskii <eliz@gnu.org> writes:
>> We're coming from the problem that MPS uses signals for memory barriers.
>> On platforms != macOS. And I am proposing a solution for that.
>
> I don't think that's the problem. The problem is that signals can
> interrupt MPS, on all platforms. We can't have MPS-signal-MPS stacks,
> ever. The best way to ensure that is to keep signals on one stack, and
> MPS on another stack. MacOS already does that for their SIGSEGV
> equivalent, but we need to do it for all entry points into MPS.
>
> If they don't have separate stacks, and we interrupt MPS, the signal
> handler cannot look at any MPS-modifiable memory (including roots, which
> may be in an inconsistent state mid-GC), ever. This includes the
> specpdl. We can't write to MPS-known memory, ever. This includes any
> area we might want to copy the backtrace or specpdl to.
And I don't think that's right :-). It's completely right that in the
SIGPROF handler everything can be inconsistent. That's true both for MPS
and Emacs. For example, the bindings stack (specpdl) may be inconsistent
when SIGPROF arrives. Literally everything we do in the SIGPROF runs the
risk of encountering inconsistencies.
I think that's already true for the old GC. There is nothing
guaranteeing that the contents of the binding stack is consistent, for
example. But we get away with it well enough that the profiler is
useful.
With MPS, from my POV, the situation is pretty similar. Try to get away
with it by not triggering MPS while in a state that we must assume is
inconsistent.
>> The SIGPROF handler does two things: (1) get the current backtrace,
>> which does not trip on memory barriers, and
>
> Even if the specpdl were an ambiguous root, we'd be making very
> permanent and far-reaching assumptions about how MPS handles such roots
> if we assumed that we could even look at such roots during GC. This
> goes doubly for assuming that we can extract references to
> ambiguously-rooted objects and put them into other areas of MPS-visible
> memory. Even if this worked perfectly with current MPS on all
> platforms, it would still be unreasonable for us to rely on such
> implementation details.
>
> We can't do (1).
I disagree, abviously :-)
For me, it's not about a theoretical or even practical solution that
somehow ensures a consistent state in MPS, or some future changes in MPS
or something. It's about getting away with what we do in the profiler
_now_, as we do with the old GC. which is already seeing potentially
inconsistent state in Emacs' memory.
I think the _now_ is also important. From my POV, we could discuss
better solutions later.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: SIGPROF + SIGCHLD and igc
2024-12-24 8:39 ` Gerd Möllmann
@ 2024-12-25 9:22 ` Helmut Eller
2024-12-25 9:43 ` Gerd Möllmann
0 siblings, 1 reply; 129+ messages in thread
From: Helmut Eller @ 2024-12-25 9:22 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: Eli Zaretskii, pipcet, ofv, emacs-devel, acorallo
On Tue, Dec 24 2024, Gerd Möllmann wrote:
[...]
>>> - Lisp allocation in signal handlers cannot exist because alloc.c is not
>>> reentrant which means we would crash with the old GC. We don't need
>>> anything extra for that in igc.
[...]
> BTW, do you agree with my analysis that Lisp allocations can't possibly
> exist in signal handlers today?
I don't know alloc.c well enough to make a judgment. This comment for
XMALLOC_BLOCK_INPUT_CHECK seems to say that signal handlers used to
allocate but no longer do:
If compiled with XMALLOC_BLOCK_INPUT_CHECK, define a symbol
BLOCK_INPUT_IN_MEMORY_ALLOCATORS that is visible to the debugger.
If that variable is set, block input while in one of Emacs's memory
allocation functions. There should be no need for this debugging
option, since signal handlers do not allocate memory, but Emacs
formerly allocated memory in signal handlers and this compile-time
option remains as a way to help debug the issue should it rear its
ugly head again. */
Helmut
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: SIGPROF + SIGCHLD and igc
2024-12-25 9:22 ` Helmut Eller
@ 2024-12-25 9:43 ` Gerd Möllmann
0 siblings, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-25 9:43 UTC (permalink / raw)
To: Helmut Eller; +Cc: Eli Zaretskii, pipcet, ofv, emacs-devel, acorallo
Helmut Eller <eller.helmut@gmail.com> writes:
> On Tue, Dec 24 2024, Gerd Möllmann wrote:
>
> [...]
>>>> - Lisp allocation in signal handlers cannot exist because alloc.c is not
>>>> reentrant which means we would crash with the old GC. We don't need
>>>> anything extra for that in igc.
> [...]
>> BTW, do you agree with my analysis that Lisp allocations can't possibly
>> exist in signal handlers today?
>
> I don't know alloc.c well enough to make a judgment. This comment for
> XMALLOC_BLOCK_INPUT_CHECK seems to say that signal handlers used to
> allocate but no longer do:
>
> If compiled with XMALLOC_BLOCK_INPUT_CHECK, define a symbol
> BLOCK_INPUT_IN_MEMORY_ALLOCATORS that is visible to the debugger.
> If that variable is set, block input while in one of Emacs's memory
> allocation functions. There should be no need for this debugging
> option, since signal handlers do not allocate memory, but Emacs
> formerly allocated memory in signal handlers and this compile-time
> option remains as a way to help debug the issue should it rear its
> ugly head again. */
>
> Helmut
Thanks.
Stefan Monnier seems to have added that 2012, judging from git grep in
the ChangeLogs, and it reads as if it has something to do with
SYNC_INPUT, which I think means no longer doing X event handling in a
SIGIO handler.
And it seems to be no longer in use. XMALLOC_BLOCK_INPUT_CHECK appears
nowhere, and MALLOC_BLOCK_INPUE is always a no-op. alloc.c could need
some love.
Anyway. Just looking at Fcons wrt async-signal-safety, makes me pretty
sure.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: SIGPROF + SIGCHLD and igc
2024-12-24 13:05 ` Eli Zaretskii
@ 2024-12-25 10:46 ` Helmut Eller
2024-12-25 12:45 ` Eli Zaretskii
0 siblings, 1 reply; 129+ messages in thread
From: Helmut Eller @ 2024-12-25 10:46 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: gerd.moellmann, pipcet, ofv, emacs-devel, acorallo
On Tue, Dec 24 2024, Eli Zaretskii wrote:
>> From: Helmut Eller <eller.helmut@gmail.com>
>> I think, SIGIO might cause trouble.
>
> Why do you think so? Its handler does almost nothing, just sets a
> flag (if you ignore the Android-specific stuff there).
Indeed that looks quite tame. Makes me wonder why
handle_interrupt_signal needs to be so complicated in comparison. E.g.
the line
internal_last_event_frame = terminal->display_info.tty->top_frame;
looks problematic for MPS.
Helmut
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 5:23 ` Gerd Möllmann
@ 2024-12-25 10:48 ` Pip Cet via Emacs development discussions.
2024-12-25 13:40 ` Stefan Kangas
2024-12-25 11:48 ` Helmut Eller
2024-12-25 12:31 ` Eli Zaretskii
2 siblings, 1 reply; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-25 10:48 UTC (permalink / raw)
To: Gerd Möllmann
Cc: Eli Zaretskii, ofv, emacs-devel, eller.helmut, acorallo
Gerd Möllmann <gerd.moellmann@gmail.com> writes:
> Pip Cet <pipcet@protonmail.com> writes:
>
>> Gerd Möllmann <gerd.moellmann@gmail.com> writes:
>>
>>> Eli Zaretskii <eliz@gnu.org> writes:
>>> We're coming from the problem that MPS uses signals for memory barriers.
>>> On platforms != macOS. And I am proposing a solution for that.
>>
>> I don't think that's the problem. The problem is that signals can
>> interrupt MPS, on all platforms. We can't have MPS-signal-MPS stacks,
>> ever. The best way to ensure that is to keep signals on one stack, and
>> MPS on another stack. MacOS already does that for their SIGSEGV
>> equivalent, but we need to do it for all entry points into MPS.
>>
>> If they don't have separate stacks, and we interrupt MPS, the signal
>> handler cannot look at any MPS-modifiable memory (including roots, which
>> may be in an inconsistent state mid-GC), ever. This includes the
>> specpdl. We can't write to MPS-known memory, ever. This includes any
>> area we might want to copy the backtrace or specpdl to.
>
> And I don't think that's right :-). It's completely right that in the
> SIGPROF handler everything can be inconsistent. That's true both for MPS
> and Emacs. For example, the bindings stack (specpdl) may be inconsistent
> when SIGPROF arrives. Literally everything we do in the SIGPROF runs the
> risk of encountering inconsistencies.
This is getting into technical details, but I think the specpdl code
was, at one point, carefully written so the specpdl stack would always
look consistent, making some assumptions about the compiler in use.
Then compilers changed to make this impossible (automatic inlining,
LTO), then they changed to make this possible again (stdatomic.h, memory
ordering), and we also introduced an unfortunate feature which breaks
consistency. Now, we can (and should) restore the consistency
assumption, at least if we drop that unfortunate feature (as we should).
Inconsistency of the specpdl stack is avoidable, because we control both
the mutator and the inspection code. Inconsistency of MPS data is not,
unless we take over control of the entire MPS library so we can make
far-reaching assumptions there.
> I think that's already true for the old GC. There is nothing
> guaranteeing that the contents of the binding stack is consistent, for
> example. But we get away with it well enough that the profiler is
> useful.
My understanding is that was true at one point, before C caught up to
memory ordering between a thread and its signal handlers, but with C11,
we have everything we need to ensure consistency, at least on systems
that store words atomically (we don't use memcpy for modifying the
specpdl stack).
And about the usefulness thing: I really want SIGPROF specifically to
improve MPS performance, which means we need to do something in the
"we've interrupted MPS" situation. Or at least I want the option,
rather than make "signal handlers can't do anything useful if
igc_busy_p()" an axiom. And if we start declaring huge chunks of Emacs
data (the entire specpdl, a large area of storage for storing the
"backtrace", all thread stacks, why not the pdumper area while we're at
it?) as ambiguous roots, we risk ending up with AMS pools everywhere and
no copying.
> With MPS, from my POV, the situation is pretty similar. Try to get away
> with it by not triggering MPS while in a state that we must assume is
> inconsistent.
That's one approach. The other approach is to keep arguing about this
until we get a SIGPROF that we're actually happy with, and then we can
tell people interested in other signal handlers to copy that code :-)
> For me, it's not about a theoretical or even practical solution that
> somehow ensures a consistent state in MPS, or some future changes in MPS
> or something. It's about getting away with what we do in the profiler
> _now_, as we do with the old GC. which is already seeing potentially
> inconsistent state in Emacs' memory.
>
> I think the _now_ is also important. From my POV, we could discuss
> better solutions later.
I misunderstood.
We've got a solution that I'm convinced we can get away with, on
scratch/igc, now. It's not pretty or permanent, and I don't think it's
"good enough"; but I don't think splitting SIGPROF handlers improves it
enough to make it "good enough", either.
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Freezing frame with igc
2024-12-25 4:25 ` Freezing frame with igc Gerd Möllmann
@ 2024-12-25 11:19 ` Pip Cet via Emacs development discussions.
2024-12-25 11:55 ` Óscar Fuentes
1 sibling, 0 replies; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-25 11:19 UTC (permalink / raw)
To: Gerd Möllmann
Cc: Óscar Fuentes, emacs-devel, Helmut Eller, Andrea Corallo
Gerd Möllmann <gerd.moellmann@gmail.com> writes:
> That reminds of something. Maybe what you've seen is completely
> unrelated, it's impossible to tell, but please find below a comment that
> I added to do_switch_frame in frame.c.
Thanks! I hope I'll be able to reproduce the issue again.
> These switch-frame events form an endless loop in
> command_loop_1. It runs post-command-hook, which generates
> switch-frame events, which command_loop_1 finds (bound to '#ignore)
> and executes, which again runs post-command-hook etc., ad
> infinitum.
The strange thing is there is not apparently an infinite loop: Emacs
doesn't use 100% CPU, it seems to be calling *select() as usual.
Definitely something to check for, though!
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 5:23 ` Gerd Möllmann
2024-12-25 10:48 ` Pip Cet via Emacs development discussions.
@ 2024-12-25 11:48 ` Helmut Eller
2024-12-25 11:58 ` Gerd Möllmann
2024-12-25 12:52 ` Eli Zaretskii
2024-12-25 12:31 ` Eli Zaretskii
2 siblings, 2 replies; 129+ messages in thread
From: Helmut Eller @ 2024-12-25 11:48 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: Pip Cet, Eli Zaretskii, ofv, emacs-devel, acorallo
On Wed, Dec 25 2024, Gerd Möllmann wrote:
> Pip Cet <pipcet@protonmail.com> writes:
>
>> I don't think that's the problem. The problem is that signals can
>> interrupt MPS, on all platforms.
[...]
> And I don't think that's right :-). It's completely right that in the
> SIGPROF handler everything can be inconsistent. That's true both for MPS
> and Emacs. For example, the bindings stack (specpdl) may be inconsistent
> when SIGPROF arrives. Literally everything we do in the SIGPROF runs the
> risk of encountering inconsistencies.
The SIGPROF handler copies part of the potentially inconsistent state to
the profiler log. That same potentially inconsistent profiler log is
used later, outside the signal handler. Sounds like a problem to me.
Is it not? Or is the probability for inconistencies being copied so low
that we ignore it?
Helmut
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Freezing frame with igc
2024-12-25 4:25 ` Freezing frame with igc Gerd Möllmann
2024-12-25 11:19 ` Pip Cet via Emacs development discussions.
@ 2024-12-25 11:55 ` Óscar Fuentes
1 sibling, 0 replies; 129+ messages in thread
From: Óscar Fuentes @ 2024-12-25 11:55 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: Pip Cet, emacs-devel
(CC list trimmed)
Gerd Möllmann <gerd.moellmann@gmail.com> writes:
>>>>> Redisplay just stopped while showing the menu, no crash nor infinite
>>>>> loop, its CPU usage was typical for the repeating timers that my config
>>>>> creates.
>>>>
>>>> That's a bit odd. It might be the signal issue, but that's purely a
>>>> guess. If it happens again, please let us know.
>>>
>>> Sure.
>>
>> I'm not a hundred percent sure, because I was testing other changes, but
>> I just observed an Emacs session in a very similar state to what you
>> describe: very little but nonzero CPU usage, but unresponsive to X
>> interactions. I attached gdb, observed it was stuck in read_char, then
>> I messed up and set Vquit_flag to Qt, at which point the Emacs session
>> recovered and seems fully usable once more (it did take a while to do
>> so, though). So no valuable debug info this time, hope I'll hit it
>> again.
>>
>> Again, it's possible this is a similar-looking but different bug,
>> possibly caused by local changes.
>>
>> I don't think read_char or its subroutines even use MPS memory, though?
>> As this is a GTK build, and yours wasn't, we should probably look at X
>> interaction code shared between the GTK and non-GTK builds.
>>
>> Pip
>
> That reminds of something. Maybe what you've seen is completely
> unrelated, it's impossible to tell, but please find below a comment that
> I added to do_switch_frame in frame.c.
[snip]
At the time I was working with two frames. The frame where I tried to
show the menu went blank.
I use mini-echo [1], which removes the mode line and uses the echo area
instead, periodically (0.3 seconds) updating the echo area (it has a
cache for not updating when there are no changes, but my experience is
that the updates are very frequent.)
So it could be that mini-echo tried to update the echo area (of both
frames, because it shows the same text on all frames) at an "unfortunate
time" while the menu was being displayed. I don't know if this
hypothesis even makes sense.
BTW, I'm fairly sure that mini-echo was the responsible of the small CPU
activity I saw on htop after Emacs UI froze.
1. https://github.com/liuyinz/mini-echo.el
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 11:48 ` Helmut Eller
@ 2024-12-25 11:58 ` Gerd Möllmann
2024-12-25 12:52 ` Eli Zaretskii
1 sibling, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-25 11:58 UTC (permalink / raw)
To: Helmut Eller; +Cc: Pip Cet, Eli Zaretskii, ofv, emacs-devel, acorallo
Helmut Eller <eller.helmut@gmail.com> writes:
> On Wed, Dec 25 2024, Gerd Möllmann wrote:
>
>> Pip Cet <pipcet@protonmail.com> writes:
>>
>>> I don't think that's the problem. The problem is that signals can
>>> interrupt MPS, on all platforms.
> [...]
>> And I don't think that's right :-). It's completely right that in the
>> SIGPROF handler everything can be inconsistent. That's true both for MPS
>> and Emacs. For example, the bindings stack (specpdl) may be inconsistent
>> when SIGPROF arrives. Literally everything we do in the SIGPROF runs the
>> risk of encountering inconsistencies.
>
> The SIGPROF handler copies part of the potentially inconsistent state to
> the profiler log. That same potentially inconsistent profiler log is
> used later, outside the signal handler. Sounds like a problem to me.
> Is it not? Or is the probability for inconistencies being copied so low
> that we ignore it?
>
> Helmut
I think the latter, i.e. we ignore it. I think, but I can't prove
anything, that the probability is good that we get away with it. For
example, We're only using the backtrace_p binding stack entries,
so the GIGPROF would have to happen when in some code putting them to be
in danger, so to speak. That's not so likely, I think.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 4:56 ` Gerd Möllmann
@ 2024-12-25 12:19 ` Eli Zaretskii
2024-12-25 12:50 ` Gerd Möllmann
0 siblings, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-25 12:19 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
> Date: Wed, 25 Dec 2024 05:56:26 +0100
>
> Eli Zaretskii <eliz@gnu.org> writes:
>
> >> The SIGPROF handler does two things: (1) get the current backtrace,
> >> which does not trip on memory barriers, and (2) build a summary, i.e.
> >> count same backtraces using a hash table. (2) trips on memory barriers.
> >
> > Can you elaborate on (2) and why it trips? I guess I'm missing
> > something because I don't understand which code in record_backtrace
> > does trip on memory barriers and why.
>
> Ok, (2) begins as shown below.
>
> static void
> record_backtrace (struct profiler_log *plog, EMACS_INT count)
> {
> log_t *log = plog->log;
> get_backtrace (log->trace, log->depth);
> --- (2) begins after this line -------------------------------
> EMACS_UINT hash = trace_hash (log->trace, log->depth);
>
> The SIGPROF can have interrupted Emacs at any point, both the MPS thread
> and all others. MPS may have been doing arbitrary stuff when
> interrupted, and Emacs threads too. Memory barriers may be on
> unpredictable segments of memory, as they usually are, as part of MPS'
> GC implementation. Do you agree with this picture?
>
> Elsewhere I tried to explain why I think this works up to the line
> marked (2) above. Now enter trace_hash. Current implementation:
>
> static EMACS_UINT
> trace_hash (Lisp_Object *trace, int depth)
> {
> EMACS_UINT hash = 0;
> for (int i = 0; i < depth; i++)
> {
> Lisp_Object f = trace[i];
> EMACS_UINT hash1;
> #ifdef HAVE_MPS
> hash1 = (CLOSUREP (f) ? igc_hash (AREF (f, CLOSURE_CODE)) : igc_hash (f));
> ^^^^^^^^ ^^^^^^^^ ^^^^
>
> The constructs I marked with ^^^ all access the memory of F. F is a
> vectorlike, it's memory is managed by MPS in an MPS pool that uses
> memory barriers, so the memory of F can currently be behind a barrier.
> It doesn't have to, but it can.
>
> When we access F's memory and it is behind a barrier, the result is a
> nested SIgSEGV while handling SIGPROF.
Two followup questions:
. how is accessing F different from accessing the specpdl stack?
. how does this work with the current GC, where F could have been
collected and its memory freed?
The first question is more important, from where I stand. Looking
forward beyond the point where we land igc on master, I wonder how
will be able to tell, for a random non-trivial change on the C level,
whether what it does can cause trouble with MPS? That is, how can a
mere mortal determine whether a given data structure in igc Emacs can
or cannot be safely touched when MPS happens to do its thing, whether
synchronously or asynchronously? We must have some reasonably
practical way of telling this, or else we will be breaking Emacs high
and low.
> More code accessing memory that is potentially behind a barrier follows
> in record_backtrace.
Which code is that? (It's a serious question: I tried to identify
that code, but couldn't. I'm probably missing something.)
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 5:23 ` Gerd Möllmann
2024-12-25 10:48 ` Pip Cet via Emacs development discussions.
2024-12-25 11:48 ` Helmut Eller
@ 2024-12-25 12:31 ` Eli Zaretskii
2024-12-25 12:54 ` Gerd Möllmann
2 siblings, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-25 12:31 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
> Date: Wed, 25 Dec 2024 06:23:49 +0100
>
> > If they don't have separate stacks, and we interrupt MPS, the signal
> > handler cannot look at any MPS-modifiable memory (including roots, which
> > may be in an inconsistent state mid-GC), ever. This includes the
> > specpdl. We can't write to MPS-known memory, ever. This includes any
> > area we might want to copy the backtrace or specpdl to.
>
> And I don't think that's right :-). It's completely right that in the
> SIGPROF handler everything can be inconsistent. That's true both for MPS
> and Emacs. For example, the bindings stack (specpdl) may be inconsistent
> when SIGPROF arrives.
Theoretically, maybe. But in practice, you'd need to identify the
code which manipulates specpdl that could have specpdl in inconsistent
state if interrupted at some opportune point. Can you identify such
places in the code?
> Literally everything we do in the SIGPROF runs the
> risk of encountering inconsistencies.
Only if we interrupt code which leaves the global state inconsistent,
and if what the SIGPROF handler does involves accessing those
potentially-inconsistent data.
> I think that's already true for the old GC. There is nothing
> guaranteeing that the contents of the binding stack is consistent, for
> example. But we get away with it well enough that the profiler is
> useful.
With the old GC, we have special code to deal with this:
/* Signal handler for sampling profiler. */
static void
add_sample (struct profiler_log *plog, EMACS_INT count)
{
if (EQ (backtrace_top_function (), QAutomatic_GC)) /* bug#60237 */
/* Special case the time-count inside GC because the hash-table
code is not prepared to be used while the GC is running.
More specifically it uses ASIZE at many places where it does
not expect the ARRAY_MARK_FLAG to be set. We could try and
harden the hash-table code, but it doesn't seem worth the
effort. */
plog->gc_count = saturated_add (plog->gc_count, count);
So all we need is for backtrace_top_function to be safe when SIGPROF
arrives while we are in GC. Are you saying backtrace_top_function is
unsafe in that case?
> With MPS, from my POV, the situation is pretty similar. Try to get away
> with it by not triggering MPS while in a state that we must assume is
> inconsistent.
The difference with MPS is that the old GC is synchronous with the
Lisp machine, so it couldn't possibly start while we are modifying
specpdl. That is no longer true with MPS, AFAIU, because MPS could
start GC asynchronously.
> >> The SIGPROF handler does two things: (1) get the current backtrace,
> >> which does not trip on memory barriers, and
> >
> > Even if the specpdl were an ambiguous root, we'd be making very
> > permanent and far-reaching assumptions about how MPS handles such roots
> > if we assumed that we could even look at such roots during GC. This
> > goes doubly for assuming that we can extract references to
> > ambiguously-rooted objects and put them into other areas of MPS-visible
> > memory. Even if this worked perfectly with current MPS on all
> > platforms, it would still be unreasonable for us to rely on such
> > implementation details.
> >
> > We can't do (1).
>
> I disagree, abviously :-)
>
> For me, it's not about a theoretical or even practical solution that
> somehow ensures a consistent state in MPS, or some future changes in MPS
> or something. It's about getting away with what we do in the profiler
> _now_, as we do with the old GC. which is already seeing potentially
> inconsistent state in Emacs' memory.
See above: there's a difference. So I would really like to hear why
you think accessing specpdl from a SIGPROF handler in an igc build is
safe.
> I think the _now_ is also important. From my POV, we could discuss
> better solutions later.
If you are right in your conclusions, certainly.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: SIGPROF + SIGCHLD and igc
2024-12-25 10:46 ` Helmut Eller
@ 2024-12-25 12:45 ` Eli Zaretskii
0 siblings, 0 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-25 12:45 UTC (permalink / raw)
To: Helmut Eller; +Cc: gerd.moellmann, pipcet, ofv, emacs-devel, acorallo
> From: Helmut Eller <eller.helmut@gmail.com>
> Cc: gerd.moellmann@gmail.com, pipcet@protonmail.com, ofv@wanadoo.es,
> emacs-devel@gnu.org, acorallo@gnu.org
> Date: Wed, 25 Dec 2024 11:46:38 +0100
>
> On Tue, Dec 24 2024, Eli Zaretskii wrote:
>
> >> From: Helmut Eller <eller.helmut@gmail.com>
> >> I think, SIGIO might cause trouble.
> >
> > Why do you think so? Its handler does almost nothing, just sets a
> > flag (if you ignore the Android-specific stuff there).
>
> Indeed that looks quite tame. Makes me wonder why
> handle_interrupt_signal needs to be so complicated in comparison. E.g.
> the line
>
> internal_last_event_frame = terminal->display_info.tty->top_frame;
>
> looks problematic for MPS.
SIGINT is different because C-g is programmed to trigger SIGINT on TTY
frames.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 12:19 ` Eli Zaretskii
@ 2024-12-25 12:50 ` Gerd Möllmann
2024-12-25 13:00 ` Eli Zaretskii
` (2 more replies)
0 siblings, 3 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-25 12:50 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
>> eller.helmut@gmail.com, acorallo@gnu.org
>> Date: Wed, 25 Dec 2024 05:56:26 +0100
>>
>> Eli Zaretskii <eliz@gnu.org> writes:
>>
>> >> The SIGPROF handler does two things: (1) get the current backtrace,
>> >> which does not trip on memory barriers, and (2) build a summary, i.e.
>> >> count same backtraces using a hash table. (2) trips on memory barriers.
>> >
>> > Can you elaborate on (2) and why it trips? I guess I'm missing
>> > something because I don't understand which code in record_backtrace
>> > does trip on memory barriers and why.
>>
>> Ok, (2) begins as shown below.
>>
>> static void
>> record_backtrace (struct profiler_log *plog, EMACS_INT count)
>> {
>> log_t *log = plog->log;
>> get_backtrace (log->trace, log->depth);
>> --- (2) begins after this line -------------------------------
>> EMACS_UINT hash = trace_hash (log->trace, log->depth);
>>
>> The SIGPROF can have interrupted Emacs at any point, both the MPS thread
>> and all others. MPS may have been doing arbitrary stuff when
>> interrupted, and Emacs threads too. Memory barriers may be on
>> unpredictable segments of memory, as they usually are, as part of MPS'
>> GC implementation. Do you agree with this picture?
>>
>> Elsewhere I tried to explain why I think this works up to the line
>> marked (2) above. Now enter trace_hash. Current implementation:
>>
>> static EMACS_UINT
>> trace_hash (Lisp_Object *trace, int depth)
>> {
>> EMACS_UINT hash = 0;
>> for (int i = 0; i < depth; i++)
>> {
>> Lisp_Object f = trace[i];
>> EMACS_UINT hash1;
>> #ifdef HAVE_MPS
>> hash1 = (CLOSUREP (f) ? igc_hash (AREF (f, CLOSURE_CODE)) : igc_hash (f));
>> ^^^^^^^^ ^^^^^^^^ ^^^^
>>
>> The constructs I marked with ^^^ all access the memory of F. F is a
>> vectorlike, it's memory is managed by MPS in an MPS pool that uses
>> memory barriers, so the memory of F can currently be behind a barrier.
>> It doesn't have to, but it can.
>>
>> When we access F's memory and it is behind a barrier, the result is a
>> nested SIgSEGV while handling SIGPROF.
>
> Two followup questions:
>
> . how is accessing F different from accessing the specpdl stack?
F's memory is allocated from an MPS pool via alloc_impl in igc.c. Most
objects are allocated from a pool that uses barriers (I think except
PVEC_THREAD). The specpdl stacks are mallocs (see
grow_specpdl_allocation), and uses as a roots. There are currently no
barriers on roots.
> . how does this work with the current GC, where F could have been
> collected and its memory freed?
I think when we find F in a specpdl stack, GC should have seen it and
marked it too in mark_specpdl. So it wouldn't be freed.
(Same for igc, where the stacks are roots, and should have seen F in
that way in scan_specdl.)
> The first question is more important, from where I stand. Looking
> forward beyond the point where we land igc on master, I wonder how
> will be able to tell, for a random non-trivial change on the C level,
> whether what it does can cause trouble with MPS? That is, how can a
> mere mortal determine whether a given data structure in igc Emacs can
> or cannot be safely touched when MPS happens to do its thing, whether
> synchronously or asynchronously? We must have some reasonably
> practical way of telling this, or else we will be breaking Emacs high
> and low.
>
>> More code accessing memory that is potentially behind a barrier follows
>> in record_backtrace.
>
> Which code is that? (It's a serious question: I tried to identify
> that code, but couldn't. I'm probably missing something.)
The example I saw, with ^^^^ marking the call sites:
static void
record_backtrace (struct profiler_log *plog, EMACS_INT count)
{
log_t *log = plog->log;
get_backtrace (log->trace, log->depth);
EMACS_UINT hash = trace_hash (log->trace, log->depth);
int hidx = log_hash_index (log, hash);
int idx = log->index[hidx];
while (idx >= 0)
{
if (log->hash[idx] == hash
&& trace_equal (log->trace, get_key_vector (log, idx), log->depth))
^^^^^^^^^^^
static bool
trace_equal (Lisp_Object *bt1, Lisp_Object *bt2, int depth)
{
for (int i = 0; i < depth; i++)
if (!BASE_EQ (bt1[i], bt2[i]) && NILP (Ffunction_equal (bt1[i], bt2[i])))
^^^^^^^^^^^^^^^
DEFUN ("function-equal", Ffunction_equal, Sfunction_equal, 2, 2, 0,
doc: /* Return non-nil if F1 and F2 come from the same source.
Used to determine if different closures are just different instances of
the same lambda expression, or are really unrelated function. */)
(Lisp_Object f1, Lisp_Object f2)
{
bool res;
if (EQ (f1, f2))
res = true;
else if (CLOSUREP (f1) && CLOSUREP (f2))
^^^^^^^^ ^^^^^^^^
res = EQ (AREF (f1, CLOSURE_CODE), AREF (f2, CLOSURE_CODE));
^^^^ ^^^^
Didn't look further than that, though.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 11:48 ` Helmut Eller
2024-12-25 11:58 ` Gerd Möllmann
@ 2024-12-25 12:52 ` Eli Zaretskii
1 sibling, 0 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-25 12:52 UTC (permalink / raw)
To: Helmut Eller; +Cc: gerd.moellmann, pipcet, ofv, emacs-devel, acorallo
> From: Helmut Eller <eller.helmut@gmail.com>
> Cc: Pip Cet <pipcet@protonmail.com>, Eli Zaretskii <eliz@gnu.org>,
> ofv@wanadoo.es, emacs-devel@gnu.org, acorallo@gnu.org
> Date: Wed, 25 Dec 2024 12:48:44 +0100
>
> On Wed, Dec 25 2024, Gerd Möllmann wrote:
>
> > Pip Cet <pipcet@protonmail.com> writes:
> >
> >> I don't think that's the problem. The problem is that signals can
> >> interrupt MPS, on all platforms.
> [...]
> > And I don't think that's right :-). It's completely right that in the
> > SIGPROF handler everything can be inconsistent. That's true both for MPS
> > and Emacs. For example, the bindings stack (specpdl) may be inconsistent
> > when SIGPROF arrives. Literally everything we do in the SIGPROF runs the
> > risk of encountering inconsistencies.
>
> The SIGPROF handler copies part of the potentially inconsistent state to
> the profiler log. That same potentially inconsistent profiler log is
> used later, outside the signal handler. Sounds like a problem to me.
> Is it not? Or is the probability for inconistencies being copied so low
> that we ignore it?
Or maybe the profiling code is robust in the face of these
inconsistencies?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 12:31 ` Eli Zaretskii
@ 2024-12-25 12:54 ` Gerd Möllmann
0 siblings, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-25 12:54 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>> Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org,
>> eller.helmut@gmail.com, acorallo@gnu.org
>> Date: Wed, 25 Dec 2024 06:23:49 +0100
>>
>> > If they don't have separate stacks, and we interrupt MPS, the signal
>> > handler cannot look at any MPS-modifiable memory (including roots, which
>> > may be in an inconsistent state mid-GC), ever. This includes the
>> > specpdl. We can't write to MPS-known memory, ever. This includes any
>> > area we might want to copy the backtrace or specpdl to.
>>
>> And I don't think that's right :-). It's completely right that in the
>> SIGPROF handler everything can be inconsistent. That's true both for MPS
>> and Emacs. For example, the bindings stack (specpdl) may be inconsistent
>> when SIGPROF arrives.
>
> Theoretically, maybe. But in practice, you'd need to identify the
> code which manipulates specpdl that could have specpdl in inconsistent
> state if interrupted at some opportune point. Can you identify such
> places in the code?
Which is basically what I answered to Helmut in another sub-thread.
...
>> For me, it's not about a theoretical or even practical solution that
>> somehow ensures a consistent state in MPS, or some future changes in MPS
>> or something. It's about getting away with what we do in the profiler
>> _now_, as we do with the old GC. which is already seeing potentially
>> inconsistent state in Emacs' memory.
>
> See above: there's a difference. So I would really like to hear why
> you think accessing specpdl from a SIGPROF handler in an igc build is
> safe.
I tried to answer your questions in a different reply sent a few minutes
ago.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 12:50 ` Gerd Möllmann
@ 2024-12-25 13:00 ` Eli Zaretskii
2024-12-25 13:08 ` Gerd Möllmann
2024-12-25 13:09 ` Eli Zaretskii
2024-12-25 17:40 ` Pip Cet via Emacs development discussions.
2 siblings, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-25 13:00 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
> Date: Wed, 25 Dec 2024 13:50:37 +0100
>
> Eli Zaretskii <eliz@gnu.org> writes:
>
> >> More code accessing memory that is potentially behind a barrier follows
> >> in record_backtrace.
> >
> > Which code is that? (It's a serious question: I tried to identify
> > that code, but couldn't. I'm probably missing something.)
>
> The example I saw, with ^^^^ marking the call sites:
>
> static void
> record_backtrace (struct profiler_log *plog, EMACS_INT count)
> {
> log_t *log = plog->log;
> get_backtrace (log->trace, log->depth);
> EMACS_UINT hash = trace_hash (log->trace, log->depth);
> int hidx = log_hash_index (log, hash);
> int idx = log->index[hidx];
> while (idx >= 0)
> {
> if (log->hash[idx] == hash
> && trace_equal (log->trace, get_key_vector (log, idx), log->depth))
> ^^^^^^^^^^^
>
> static bool
> trace_equal (Lisp_Object *bt1, Lisp_Object *bt2, int depth)
> {
> for (int i = 0; i < depth; i++)
> if (!BASE_EQ (bt1[i], bt2[i]) && NILP (Ffunction_equal (bt1[i], bt2[i])))
> ^^^^^^^^^^^^^^^
>
> DEFUN ("function-equal", Ffunction_equal, Sfunction_equal, 2, 2, 0,
> doc: /* Return non-nil if F1 and F2 come from the same source.
> Used to determine if different closures are just different instances of
> the same lambda expression, or are really unrelated function. */)
> (Lisp_Object f1, Lisp_Object f2)
> {
> bool res;
> if (EQ (f1, f2))
> res = true;
> else if (CLOSUREP (f1) && CLOSUREP (f2))
> ^^^^^^^^ ^^^^^^^^
> res = EQ (AREF (f1, CLOSURE_CODE), AREF (f2, CLOSURE_CODE));
> ^^^^ ^^^^
>
> Didn't look further than that, though.
But CLOSUREP is just
INLINE bool
CLOSUREP (Lisp_Object a)
{
return PSEUDOVECTORP (a, PVEC_CLOSURE);
}
And AREF is even simpler:
INLINE Lisp_Object
AREF (Lisp_Object array, ptrdiff_t idx)
{
eassert (0 <= idx && idx < gc_asize (array));
return XVECTOR (array)->contents[idx];
}
So why are those unsafe? Because they access Lisp objects, or for
some other reason?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 13:00 ` Eli Zaretskii
@ 2024-12-25 13:08 ` Gerd Möllmann
2024-12-25 13:26 ` Eli Zaretskii
0 siblings, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-25 13:08 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
>> eller.helmut@gmail.com, acorallo@gnu.org
>> Date: Wed, 25 Dec 2024 13:50:37 +0100
>>
>> Eli Zaretskii <eliz@gnu.org> writes:
>>
>> >> More code accessing memory that is potentially behind a barrier follows
>> >> in record_backtrace.
>> >
>> > Which code is that? (It's a serious question: I tried to identify
>> > that code, but couldn't. I'm probably missing something.)
>>
>> The example I saw, with ^^^^ marking the call sites:
>>
>> static void
>> record_backtrace (struct profiler_log *plog, EMACS_INT count)
>> {
>> log_t *log = plog->log;
>> get_backtrace (log->trace, log->depth);
>> EMACS_UINT hash = trace_hash (log->trace, log->depth);
>> int hidx = log_hash_index (log, hash);
>> int idx = log->index[hidx];
>> while (idx >= 0)
>> {
>> if (log->hash[idx] == hash
>> && trace_equal (log->trace, get_key_vector (log, idx), log->depth))
>> ^^^^^^^^^^^
>>
>> static bool
>> trace_equal (Lisp_Object *bt1, Lisp_Object *bt2, int depth)
>> {
>> for (int i = 0; i < depth; i++)
>> if (!BASE_EQ (bt1[i], bt2[i]) && NILP (Ffunction_equal (bt1[i], bt2[i])))
>> ^^^^^^^^^^^^^^^
>>
>> DEFUN ("function-equal", Ffunction_equal, Sfunction_equal, 2, 2, 0,
>> doc: /* Return non-nil if F1 and F2 come from the same source.
>> Used to determine if different closures are just different instances of
>> the same lambda expression, or are really unrelated function. */)
>> (Lisp_Object f1, Lisp_Object f2)
>> {
>> bool res;
>> if (EQ (f1, f2))
>> res = true;
>> else if (CLOSUREP (f1) && CLOSUREP (f2))
>> ^^^^^^^^ ^^^^^^^^
>> res = EQ (AREF (f1, CLOSURE_CODE), AREF (f2, CLOSURE_CODE));
>> ^^^^ ^^^^
>>
>> Didn't look further than that, though.
>
> But CLOSUREP is just
>
> INLINE bool
> CLOSUREP (Lisp_Object a)
> {
> return PSEUDOVECTORP (a, PVEC_CLOSURE);
> }
PSEUDOVECTORP reads the vectorlike_header header from A's memory.
> And AREF is even simpler:
>
> INLINE Lisp_Object
> AREF (Lisp_Object array, ptrdiff_t idx)
> {
> eassert (0 <= idx && idx < gc_asize (array));
> return XVECTOR (array)->contents[idx];
> }
And AREF accesses ARRAY's memory via ->contents.
> So why are those unsafe? Because they access Lisp objects, or for
> some other reason?
What do you mean with unsafe? We are accessing an object's memory. That
memory may potentially be protected by a barrier. I thought we agreed on
that.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 12:50 ` Gerd Möllmann
2024-12-25 13:00 ` Eli Zaretskii
@ 2024-12-25 13:09 ` Eli Zaretskii
2024-12-25 13:46 ` Gerd Möllmann
2024-12-25 17:40 ` Pip Cet via Emacs development discussions.
2 siblings, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-25 13:09 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
> Date: Wed, 25 Dec 2024 13:50:37 +0100
>
> > . how is accessing F different from accessing the specpdl stack?
>
> F's memory is allocated from an MPS pool via alloc_impl in igc.c. Most
> objects are allocated from a pool that uses barriers (I think except
> PVEC_THREAD). The specpdl stacks are mallocs (see
> grow_specpdl_allocation), and uses as a roots. There are currently no
> barriers on roots.
So you are saying that the answer to this:
> > The first question is more important, from where I stand. Looking
> > forward beyond the point where we land igc on master, I wonder how
> > will be able to tell, for a random non-trivial change on the C level,
> > whether what it does can cause trouble with MPS? That is, how can a
> > mere mortal determine whether a given data structure in igc Emacs can
> > or cannot be safely touched when MPS happens to do its thing, whether
> > synchronously or asynchronously? We must have some reasonably
> > practical way of telling this, or else we will be breaking Emacs high
> > and low.
is that we need to trace each datum to see whether it is "used as
roots" (what does that mean in practice, btw?) or is "allocated via
alloc_impl in igc.c"? Does the latter include all the Lisp objects
(except fixnums)? Do we allocate non-Lisp data via alloc_impl, and if
so, which data?
Once again, I think this is very important for future maintenance. I
feel that this barrier thing in MPS introduces significant
complications into reasoning about safety of C-level changes.
Previously, we only had the mark bit to worry about if we wanted to
access Lisp objects during GC (see gc_asize, for example), but now we
have a much larger problem, AFAIU. How do we manage that for the next
40 years?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 13:08 ` Gerd Möllmann
@ 2024-12-25 13:26 ` Eli Zaretskii
2024-12-25 14:07 ` Gerd Möllmann
0 siblings, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-25 13:26 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
> Date: Wed, 25 Dec 2024 14:08:34 +0100
>
> Eli Zaretskii <eliz@gnu.org> writes:
>
> > So why are those unsafe? Because they access Lisp objects, or for
> > some other reason?
>
> What do you mean with unsafe? We are accessing an object's memory. That
> memory may potentially be protected by a barrier.
That's what I meant by "unsafe". I'm still wrapping my head around
this stuff, so apologies if I ask stupid questions. Here's another
one: why accessing the same object's memory that may be protected by a
barrier OK from the main (a.k.a. "Lisp") thread, when MPS could have
meanwhile started GC asynchronously? IOW, how is this "normal" access
to Lisp objects different from access from a signal handler?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 10:48 ` Pip Cet via Emacs development discussions.
@ 2024-12-25 13:40 ` Stefan Kangas
2024-12-25 17:03 ` Pip Cet via Emacs development discussions.
0 siblings, 1 reply; 129+ messages in thread
From: Stefan Kangas @ 2024-12-25 13:40 UTC (permalink / raw)
To: Pip Cet, Gerd Möllmann
Cc: Eli Zaretskii, ofv, emacs-devel, eller.helmut, acorallo
Pip Cet via "Emacs development discussions." <emacs-devel@gnu.org>
writes:
>> I think that's already true for the old GC. There is nothing
>> guaranteeing that the contents of the binding stack is consistent, for
>> example. But we get away with it well enough that the profiler is
>> useful.
>
> My understanding is that was true at one point, before C caught up to
> memory ordering between a thread and its signal handlers, but with C11,
> we have everything we need to ensure consistency, at least on systems
> that store words atomically (we don't use memcpy for modifying the
> specpdl stack).
Which parts of C11 help us?
I'm probably missing something obvious, but aren't we using C99 on the
scratch/igc branch also?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 13:09 ` Eli Zaretskii
@ 2024-12-25 13:46 ` Gerd Möllmann
2024-12-25 14:37 ` Eli Zaretskii
0 siblings, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-25 13:46 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
>> eller.helmut@gmail.com, acorallo@gnu.org
>> Date: Wed, 25 Dec 2024 13:50:37 +0100
>>
>> > . how is accessing F different from accessing the specpdl stack?
>>
>> F's memory is allocated from an MPS pool via alloc_impl in igc.c. Most
>> objects are allocated from a pool that uses barriers (I think except
>> PVEC_THREAD). The specpdl stacks are mallocs (see
>> grow_specpdl_allocation), and uses as a roots. There are currently no
>> barriers on roots.
>
> So you are saying that the answer to this:
>
>> > The first question is more important, from where I stand. Looking
>> > forward beyond the point where we land igc on master, I wonder how
>> > will be able to tell, for a random non-trivial change on the C level,
>> > whether what it does can cause trouble with MPS? That is, how can a
>> > mere mortal determine whether a given data structure in igc Emacs can
>> > or cannot be safely touched when MPS happens to do its thing, whether
>> > synchronously or asynchronously? We must have some reasonably
>> > practical way of telling this, or else we will be breaking Emacs high
>> > and low.
>
> is that we need to trace each datum to see whether it is "used as
> roots" (what does that mean in practice, btw?) or is "allocated via
> alloc_impl in igc.c"? Does the latter include all the Lisp objects
> (except fixnums)? Do we allocate non-Lisp data via alloc_impl, and if
> so, which data?
No, I'm not saying anything like that. Apparently I've used some
hints/terms that you are not familiar with. Sorry for that.
Roots: There are GC roots in the old GC. Specpdl stacks are roots,
DEFVARs, control stacks, DEFSYM symbols, the bytecode stacks and so on.
They are marked first at the beginning of GC. The roots and everything
recursively reachable from them are all live objects.
Roots in igc are basically the same thing. There are MPS function with
which one can define roots, if you mean that by "what it means in
practice". These MPS functions are called in igc.c. Please don't ask
which functions :-).
alloc_impl: This function is used for the allocation of all Lisp
objects, vectors, strings, frames, everything that can end up being
references as Lisp_Object. So everything except fixnums. And it is not
used to allocate other stuff, the xmalloc family of functions is used
for that.
WRT to the mere mortal and so on: I was talking specifically about
get_backtrace, and why it can be used as-is, in the way I described, to
get a backtrace in the SIGPROF handler. What's the problem with that? I
think what you write is a grossly exaggerating the situation with "trace
each datum" and a bit implying "all the time" (re your paragraph below).
Does that help?
>
> Once again, I think this is very important for future maintenance. I
> feel that this barrier thing in MPS introduces significant
> complications into reasoning about safety of C-level changes.
> Previously, we only had the mark bit to worry about if we wanted to
> access Lisp objects during GC (see gc_asize, for example), but now we
> have a much larger problem, AFAIU. How do we manage that for the next
> 40 years?
These problems do not exist. The barriers are transparent for the
application, except in vary special circumstances, namely this shit
signal handler.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 13:26 ` Eli Zaretskii
@ 2024-12-25 14:07 ` Gerd Möllmann
2024-12-25 14:43 ` Helmut Eller
0 siblings, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-25 14:07 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
>> eller.helmut@gmail.com, acorallo@gnu.org
>> Date: Wed, 25 Dec 2024 14:08:34 +0100
>>
>> Eli Zaretskii <eliz@gnu.org> writes:
>>
>> > So why are those unsafe? Because they access Lisp objects, or for
>> > some other reason?
>>
>> What do you mean with unsafe? We are accessing an object's memory. That
>> memory may potentially be protected by a barrier.
>
> That's what I meant by "unsafe". I'm still wrapping my head around
> this stuff, so apologies if I ask stupid questions.
No reason to apologize. We're just working on getting onto common
ground, if that's an expression.
> Here's another one: why accessing the same object's memory that may be
> protected by a barrier OK from the main (a.k.a. "Lisp") thread, when
> MPS could have meanwhile started GC asynchronously? IOW, how is this
> "normal" access to Lisp objects different from access from a signal
> handler?
Under "normal" circumstances, in the main thread say, when we access an
object that is behind a barrier, MPS gets invoked (signal, Mach
exception), does its thing, removes the barrier, and lets the
application continue. So the application doesn't notice anything.
A problem occurs only, apparently (I've not read the MPS code), when the
barrier handling code in MPS is called while being in another signal
handler like Emacs' SIGPROF handler.
I don't know what exactly the problem is in the end, in MPS. That would
be a good question for Richard Brooksby, I think.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 13:46 ` Gerd Möllmann
@ 2024-12-25 14:37 ` Eli Zaretskii
2024-12-25 14:57 ` Gerd Möllmann
0 siblings, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-25 14:37 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
> Date: Wed, 25 Dec 2024 14:46:44 +0100
>
> Roots: There are GC roots in the old GC. Specpdl stacks are roots,
> DEFVARs, control stacks, DEFSYM symbols, the bytecode stacks and so on.
> They are marked first at the beginning of GC. The roots and everything
> recursively reachable from them are all live objects.
>
> Roots in igc are basically the same thing. There are MPS function with
> which one can define roots, if you mean that by "what it means in
> practice". These MPS functions are called in igc.c. Please don't ask
> which functions :-).
>
> alloc_impl: This function is used for the allocation of all Lisp
> objects, vectors, strings, frames, everything that can end up being
> references as Lisp_Object. So everything except fixnums. And it is not
> used to allocate other stuff, the xmalloc family of functions is used
> for that.
OK, thanks.
So there are Lisp objects allocated by alloc_impl, roots allocated
via MPS, and data allocated by xmalloc that MPS doesn't know about, is
that correct?
> > Once again, I think this is very important for future maintenance. I
> > feel that this barrier thing in MPS introduces significant
> > complications into reasoning about safety of C-level changes.
> > Previously, we only had the mark bit to worry about if we wanted to
> > access Lisp objects during GC (see gc_asize, for example), but now we
> > have a much larger problem, AFAIU. How do we manage that for the next
> > 40 years?
>
> These problems do not exist. The barriers are transparent for the
> application, except in vary special circumstances, namely this shit
> signal handler.
But I _am_ talking about this "shit signal handler". I'm trying to
understand how would I go about reasoning whether accessing specpdl
from the signal handler is okay. Is that because I'm supposed to know
that the specpdl stack is a root? If so, I'd need to figure out that
for every datum the handler accesses, no?
I guess I'm yearning for some commentary in igc.c, not unlike what you
wrote in xdisp.c at the time, which would explain the basics, like
what are roots, what's the purpose of all those root_create_SOMETHING
functions, what's the difference between exact and ambiguous roots,
etc. Because currently we are not too spoiled by comments in igc.c.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 14:07 ` Gerd Möllmann
@ 2024-12-25 14:43 ` Helmut Eller
2024-12-25 14:59 ` Eli Zaretskii
2024-12-25 15:02 ` Gerd Möllmann
0 siblings, 2 replies; 129+ messages in thread
From: Helmut Eller @ 2024-12-25 14:43 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: Eli Zaretskii, pipcet, ofv, emacs-devel, acorallo
On Wed, Dec 25 2024, Gerd Möllmann wrote:
> A problem occurs only, apparently (I've not read the MPS code), when the
> barrier handling code in MPS is called while being in another signal
> handler like Emacs' SIGPROF handler.
>
>
> I don't know what exactly the problem is in the end, in MPS. That would
> be a good question for Richard Brooksby, I think.
The problem is probably simply that MPS uses a non-recursive lock. The
SIGSEGV signal handler can't claim the lock when it's already claimed.
See:
https://memory-pool-system.readthedocs.io/en/latest/design/arena.html#locks
Helmut
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 14:37 ` Eli Zaretskii
@ 2024-12-25 14:57 ` Gerd Möllmann
2024-12-25 15:28 ` Eli Zaretskii
0 siblings, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-25 14:57 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
> So there are Lisp objects allocated by alloc_impl, roots allocated
> via MPS, and data allocated by xmalloc that MPS doesn't know about, is
> that correct?
Correct.
I'd perhaps change "roots allocated" to "roots declared". One simply
tells MPS a range of memory [start, end] is a root of type so-and-so
(ambiguous, exact). The memory itself can come from xmalloc for example.
>> > Once again, I think this is very important for future maintenance. I
>> > feel that this barrier thing in MPS introduces significant
>> > complications into reasoning about safety of C-level changes.
>> > Previously, we only had the mark bit to worry about if we wanted to
>> > access Lisp objects during GC (see gc_asize, for example), but now we
>> > have a much larger problem, AFAIU. How do we manage that for the next
>> > 40 years?
>>
>> These problems do not exist. The barriers are transparent for the
>> application, except in vary special circumstances, namely this shit
>> signal handler.
>
> But I _am_ talking about this "shit signal handler". I'm trying to
> understand how would I go about reasoning whether accessing specpdl
> from the signal handler is okay. Is that because I'm supposed to know
> that the specpdl stack is a root? If so, I'd need to figure out that
> for every datum the handler accesses, no?
That's right, but perhaps it helps that anything that can end up being
Lisp_Object is not a root. And only those can be affected by barriers.
> I guess I'm yearning for some commentary in igc.c, not unlike what you
> wrote in xdisp.c at the time, which would explain the basics, like
> what are roots, what's the purpose of all those root_create_SOMETHING
> functions, what's the difference between exact and ambiguous roots,
> etc. Because currently we are not too spoiled by comments in igc.c.
Would a reference to the MPS Guide
https://memory-pool-system.readthedocs.io/en/latest/guide/index.html#
help?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 14:43 ` Helmut Eller
@ 2024-12-25 14:59 ` Eli Zaretskii
2024-12-25 20:44 ` Helmut Eller
2024-12-25 15:02 ` Gerd Möllmann
1 sibling, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-25 14:59 UTC (permalink / raw)
To: Helmut Eller; +Cc: gerd.moellmann, pipcet, ofv, emacs-devel, acorallo
> From: Helmut Eller <eller.helmut@gmail.com>
> Cc: Eli Zaretskii <eliz@gnu.org>, pipcet@protonmail.com, ofv@wanadoo.es,
> emacs-devel@gnu.org, acorallo@gnu.org
> Date: Wed, 25 Dec 2024 15:43:21 +0100
>
> On Wed, Dec 25 2024, Gerd Möllmann wrote:
>
> > A problem occurs only, apparently (I've not read the MPS code), when the
> > barrier handling code in MPS is called while being in another signal
> > handler like Emacs' SIGPROF handler.
> >
> >
> > I don't know what exactly the problem is in the end, in MPS. That would
> > be a good question for Richard Brooksby, I think.
>
> The problem is probably simply that MPS uses a non-recursive lock. The
> SIGSEGV signal handler can't claim the lock when it's already claimed.
>
> See:
> https://memory-pool-system.readthedocs.io/en/latest/design/arena.html#locks
Which means we should try talking to the MPS folks so that they
provide us with the means of blocking some signals while the lock is
held. Like some callback MPS would call when it takes the lock and
another one when it releases the lock. I cannot imagine that Emacs is
the first program that uses signals which hits this issue. E.g., can
MPS-based programs be built with -pg and then profiled?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 14:43 ` Helmut Eller
2024-12-25 14:59 ` Eli Zaretskii
@ 2024-12-25 15:02 ` Gerd Möllmann
1 sibling, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-25 15:02 UTC (permalink / raw)
To: Helmut Eller; +Cc: Eli Zaretskii, pipcet, ofv, emacs-devel, acorallo
Helmut Eller <eller.helmut@gmail.com> writes:
> On Wed, Dec 25 2024, Gerd Möllmann wrote:
>
>> A problem occurs only, apparently (I've not read the MPS code), when the
>> barrier handling code in MPS is called while being in another signal
>> handler like Emacs' SIGPROF handler.
>>
>>
>> I don't know what exactly the problem is in the end, in MPS. That would
>> be a good question for Richard Brooksby, I think.
>
> The problem is probably simply that MPS uses a non-recursive lock. The
> SIGSEGV signal handler can't claim the lock when it's already claimed.
>
> See:
> https://memory-pool-system.readthedocs.io/en/latest/design/arena.html#locks
>
> Helmut
Could be, but OTOH then it's strange that things work fine when the
barriers use Mach exceptions.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 14:57 ` Gerd Möllmann
@ 2024-12-25 15:28 ` Eli Zaretskii
2024-12-25 15:49 ` Gerd Möllmann
0 siblings, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-25 15:28 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
> Date: Wed, 25 Dec 2024 15:57:32 +0100
>
> Eli Zaretskii <eliz@gnu.org> writes:
>
> > I guess I'm yearning for some commentary in igc.c, not unlike what you
> > wrote in xdisp.c at the time, which would explain the basics, like
> > what are roots, what's the purpose of all those root_create_SOMETHING
> > functions, what's the difference between exact and ambiguous roots,
> > etc. Because currently we are not too spoiled by comments in igc.c.
>
> Would a reference to the MPS Guide
>
> https://memory-pool-system.readthedocs.io/en/latest/guide/index.html#
>
> help?
Not really. Their documentation is (a) too vague/abstract/circular
(i.e., stuff is not explained for itself, but instead they
cross-reference to some other stuff -- e.g., try to understand what is
a "root"), and (b) not specific to Emacs, so the relation between MPS
terminology and Emacs objects is missing.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 15:28 ` Eli Zaretskii
@ 2024-12-25 15:49 ` Gerd Möllmann
2024-12-25 17:26 ` Eli Zaretskii
0 siblings, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-25 15:49 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
>> eller.helmut@gmail.com, acorallo@gnu.org
>> Date: Wed, 25 Dec 2024 15:57:32 +0100
>>
>> Eli Zaretskii <eliz@gnu.org> writes:
>>
>> > I guess I'm yearning for some commentary in igc.c, not unlike what you
>> > wrote in xdisp.c at the time, which would explain the basics, like
>> > what are roots, what's the purpose of all those root_create_SOMETHING
>> > functions, what's the difference between exact and ambiguous roots,
>> > etc. Because currently we are not too spoiled by comments in igc.c.
>>
>> Would a reference to the MPS Guide
>>
>> https://memory-pool-system.readthedocs.io/en/latest/guide/index.html#
>>
>> help?
>
> Not really. Their documentation is (a) too vague/abstract/circular
> (i.e., stuff is not explained for itself, but instead they
> cross-reference to some other stuff -- e.g., try to understand what is
> a "root"), and (b) not specific to Emacs, so the relation between MPS
> terminology and Emacs objects is missing.
Too bad. In that case, I guess I should consider to begin to think about
planning to start to try write something up. That's a bit like pulling
teeth, TBH. Don't know how long that will take.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 13:40 ` Stefan Kangas
@ 2024-12-25 17:03 ` Pip Cet via Emacs development discussions.
2024-12-26 5:22 ` Gerd Möllmann
2024-12-26 16:12 ` Stefan Kangas
0 siblings, 2 replies; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-25 17:03 UTC (permalink / raw)
To: Stefan Kangas
Cc: Gerd Möllmann, Eli Zaretskii, ofv, emacs-devel, eller.helmut,
acorallo
"Stefan Kangas" <stefankangas@gmail.com> writes:
> Pip Cet via "Emacs development discussions." <emacs-devel@gnu.org>
> writes:
>
>>> I think that's already true for the old GC. There is nothing
>>> guaranteeing that the contents of the binding stack is consistent, for
>>> example. But we get away with it well enough that the profiler is
>>> useful.
>>
>> My understanding is that was true at one point, before C caught up to
>> memory ordering between a thread and its signal handlers, but with C11,
>> we have everything we need to ensure consistency, at least on systems
>> that store words atomically (we don't use memcpy for modifying the
>> specpdl stack).
>
> Which parts of C11 help us?
stdatomic.h, in this case.
Please take the rest of this email with a grain of salt: as far as I
know, compilers and I have reached the promised land of explicit memory
barriers, and I'm actively trying to forget about the precise rules
surrounding implicit memory barriers in the old days.
The summary is we should explicitly indicate thread/signal data
dependencies (atomic_signal_fence) in new or modified code, and
explicitly indicate thread/thread dependencies in new code
(atomic_thread_fence). If the compiler doesn't support it, we must
assume it's too old to reorder stores.
https://github.com/rmind/stdc/blob/master/c11memfences.md seems to
mostly agree with my memory, though.
IIRC, C99 doesn't have usable memory barriers, not even for signal
handler/main thread races such as this one.
Of course almost every compiler that supports C99, and certainly all
compilers usable for compiling Emacs, provides (or doesn't need, in the
case of TinyCC) ways of implementing them. In the case of GCC, that
used to be asm volatile ("" : : : "memory").
> I'm probably missing something obvious, but aren't we using C99 on the
> scratch/igc branch also?
We're using C99 + a lot of assumptions (most importantly, conservative
scanning lore).
If my memory is correct, this particular assumption (as far as the
compiler goes) changed from "C won't reorder stores" to "C won't reorder
stores across a non-inlined function" (where "non-inlined" changed from
"not explicitly inlined", then "in another CU so it can't be inlined",
then to "explicitly defined as non-inlined"), and finally to "you have
to tell C explicitly not to reorder stores".
Emacs hasn't caught up with the final change, so we're currently in a
"nothing guarantees that it'll work, but it kind of does" stage with
regard to the specpdl and profiling. Very old compilers don't support
or require explicit memory barriers; old compilers support but don't
require them; current/future compilers may require them.
Note that Gerd appeared to be disagreeing about some part of this, but
I'm not sure which part precisely.
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 15:49 ` Gerd Möllmann
@ 2024-12-25 17:26 ` Eli Zaretskii
2024-12-26 5:25 ` Gerd Möllmann
0 siblings, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-25 17:26 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
> Date: Wed, 25 Dec 2024 16:49:30 +0100
>
> Eli Zaretskii <eliz@gnu.org> writes:
>
> >> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> >> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
> >> eller.helmut@gmail.com, acorallo@gnu.org
> >> Date: Wed, 25 Dec 2024 15:57:32 +0100
> >>
> >> Eli Zaretskii <eliz@gnu.org> writes:
> >>
> >> > I guess I'm yearning for some commentary in igc.c, not unlike what you
> >> > wrote in xdisp.c at the time, which would explain the basics, like
> >> > what are roots, what's the purpose of all those root_create_SOMETHING
> >> > functions, what's the difference between exact and ambiguous roots,
> >> > etc. Because currently we are not too spoiled by comments in igc.c.
> >>
> >> Would a reference to the MPS Guide
> >>
> >> https://memory-pool-system.readthedocs.io/en/latest/guide/index.html#
> >>
> >> help?
> >
> > Not really. Their documentation is (a) too vague/abstract/circular
> > (i.e., stuff is not explained for itself, but instead they
> > cross-reference to some other stuff -- e.g., try to understand what is
> > a "root"), and (b) not specific to Emacs, so the relation between MPS
> > terminology and Emacs objects is missing.
>
> Too bad. In that case, I guess I should consider to begin to think about
> planning to start to try write something up. That's a bit like pulling
> teeth, TBH. Don't know how long that will take.
Thanks. No matter how long it will take, it will be shorter than
eternity.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 12:50 ` Gerd Möllmann
2024-12-25 13:00 ` Eli Zaretskii
2024-12-25 13:09 ` Eli Zaretskii
@ 2024-12-25 17:40 ` Pip Cet via Emacs development discussions.
2024-12-25 17:51 ` Eli Zaretskii
` (2 more replies)
2 siblings, 3 replies; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-25 17:40 UTC (permalink / raw)
To: Gerd Möllmann
Cc: Eli Zaretskii, ofv, emacs-devel, eller.helmut, acorallo
Gerd Möllmann <gerd.moellmann@gmail.com> writes:
> DEFUN ("function-equal", Ffunction_equal, Sfunction_equal, 2, 2, 0,
> doc: /* Return non-nil if F1 and F2 come from the same source.
> Used to determine if different closures are just different instances of
> the same lambda expression, or are really unrelated function. */)
> (Lisp_Object f1, Lisp_Object f2)
> {
> bool res;
> if (EQ (f1, f2))
This EQ can also trip. Sorry to insist on that, but I think it's an
important point: if we change Lisp internals (such as the slow EQ
thing), the "we're not dereferencing it, just looking at the bit
representation of the pointer" approach will fail again, in unexpected
places.
I haven't seen a technical argument against using separate stacks for
MPS and signals (I don't consider "it's a change and we'd need to test
it" to be any more true for this change than for any other proposed
change, or for what's in scratch/igc now). It would get us on par with
master. (Both versions need to add the best memory barrier we have to
the specpdl_ptr++ code)
(I don't think MPS works on multi-threaded systems if word stores aren't
atomic. If thread A is in the middle of updating an mps_word
referencing another object, and thread B triggers a GC, thread A is
stopped and thread B might scan the segment in the inconsistent state.)
Miraculously, everything can be made to work out in the WIDE_EMACS_INT
case, even though 64-bit words are stored in two insns: we only look at
the LSB 32-bit word when fixing (because we USE_LSB_TAG), so that'll
just work. Late exthdr creation needed to be changed a little, and now
assumes changing a 64-bit value to another 64-bit value which differs
only in one 32-bit half is atomic.
Here's a snapshot of the current code. It still assumes strong memory
ordering between threads because I'm pretty sure MPS needs that, too, so
it's just asm volatile ("" ::: "memory") for now.
diff --git a/src/igc.c b/src/igc.c
index 136667aefea..4342964382a 100644
--- a/src/igc.c
+++ b/src/igc.c
@@ -747,19 +747,42 @@ IGC_DEFINE_LIST (igc_root);
/* Registry entry for an MPS thread mps_thr_t. */
+/* FIXME */
+#include <stdatomic.h>
+
+struct emacs_ap
+{
+ mps_ap_t mps_ap;
+ struct igc *gc;
+ size_t requested_bytes;
+ void *usable_memory;
+ void *usable_memory_end;
+
+#ifdef ENABLE_CHECKING
+ atomic_uintptr_t waiting_threads; /* debug only */
+ sys_thread_t emacs_thread;
+#endif
+};
+
+typedef struct emacs_ap emacs_ap_t;
+
+#ifndef ATOMIC_POINTER_LOCK_FREE
+#error "this probably won't work"
+#endif
+
struct igc_thread
{
struct igc *gc;
mps_thr_t thr;
/* Allocation points for the thread. */
- mps_ap_t dflt_ap;
- mps_ap_t leaf_ap;
- mps_ap_t weak_strong_ap;
- mps_ap_t weak_weak_ap;
- mps_ap_t weak_hash_strong_ap;
- mps_ap_t weak_hash_weak_ap;
- mps_ap_t immovable_ap;
+ emacs_ap_t dflt_ap;
+ emacs_ap_t leaf_ap;
+ emacs_ap_t weak_strong_ap;
+ emacs_ap_t weak_weak_ap;
+ emacs_ap_t weak_hash_strong_ap;
+ emacs_ap_t weak_hash_weak_ap;
+ emacs_ap_t immovable_ap;
/* Quick access to the roots used for specpdl, bytecode stack and
control stack. */
@@ -814,6 +837,15 @@ IGC_DEFINE_LIST (igc_thread);
/* The real signal mask we want to restore after handling pending
* signals. */
sigset_t signal_mask;
+
+ sys_thread_t allocation_thread;
+ sys_mutex_t mutex;
+ sys_cond_t cond;
+ atomic_uintptr_t which_ap;
+ atomic_uintptr_t fault_address;
+ atomic_uintptr_t manual_collections;
+ atomic_uintptr_t idle_time;
+ atomic_uintptr_t idle_work;
};
static bool process_one_message (struct igc *gc);
@@ -2913,8 +2945,179 @@ igc_root_destroy_comp_unit_eph (struct Lisp_Native_Comp_Unit *u)
maybe_destroy_root (&u->data_eph_relocs_root);
}
+static mps_addr_t alloc_impl_raw (size_t size, mps_ap_t ap);
+static mps_addr_t alloc_impl (size_t size, enum igc_obj_type type, emacs_ap_t *ap);
+static void igc_collect_raw (void);
+
+static void *igc_allocation_thread (void *igc_v)
+{
+ uint64_t n_alloc = 0;
+ uint64_t bytes_alloc = 0;
+ struct igc *gc = igc_v;
+ sys_mutex_lock (&gc->mutex);
+ while (true)
+ {
+ uintptr_t fault_address = gc->fault_address;
+
+ if (fault_address)
+ {
+ volatile char *cp = (void *)fault_address;
+ volatile char c = *cp;
+ (void) c;
+ atomic_store (&gc->fault_address, 0);
+ continue;
+ }
+
+ uintptr_t which_ap = gc->which_ap;
+ if (which_ap)
+ {
+ atomic_store (&gc->which_ap, 0);
+ emacs_ap_t *ap = (void *)which_ap;
+ if (gc->allocation_thread != sys_thread_self ())
+ emacs_abort();
+ if (!ap->usable_memory)
+ {
+ igc_root_create_ambig ((char *)&ap->usable_memory,
+ (char *)(&ap->usable_memory+1),
+ "thread ap memory root");
+ }
+ while (ap->requested_bytes)
+ {
+ size_t size = ap->requested_bytes;
+ if (size < 1024 * 1024)
+ size = 1024 * 1024;
+ void *p = alloc_impl_raw (size, ap->mps_ap);
+ n_alloc++;
+ bytes_alloc += size;
+#if 0
+ if (0 == ((n_alloc-1)&n_alloc))
+ fprintf (stderr, "%ld %ld\n", n_alloc, bytes_alloc);
+#endif
+ ap->usable_memory = p;
+ ap->usable_memory_end = (char *)p + size;
+ ap->requested_bytes = 0;
+ sched_yield ();
+ }
+ continue;
+ }
+
+ uintptr_t manual_collections = gc->manual_collections;
+ if (manual_collections)
+ {
+ igc_collect_raw ();
+ atomic_store (&gc->manual_collections, 0);
+ continue;
+ }
+
+ uintptr_t idle_time = gc->idle_time;
+ if (idle_time)
+ {
+ double interval = idle_time * 1e-9;
+ atomic_store (&gc->idle_time, 0);
+ if (mps_arena_step (global_igc->arena, interval, 0))
+ atomic_store (&gc->idle_work, 1);
+ else
+ atomic_store (&gc->idle_work, 0);
+
+ continue;
+ }
+
+ sys_cond_wait (&gc->cond, &gc->mutex);
+ }
+ sys_mutex_unlock (&gc->mutex); /* in case the infloop returns */
+
+ return NULL;
+}
+
+static mps_addr_t alloc_impl (size_t size, enum igc_obj_type type, emacs_ap_t *ap)
+{
+ if (size == 0)
+ return 0;
+
+ while (size & 7)
+ size++;
+
+ mps_addr_t ret = 0;
+ while (!ret)
+ {
+#ifdef ENABLE_CHECKING
+ if (ap->emacs_thread != sys_thread_self ())
+ emacs_abort ();
+ uintptr_t other_threads = atomic_fetch_add (&ap->waiting_threads, 1);
+ if (other_threads != 0)
+ {
+ /* we know that the other "thread" is actually on top of us,
+ * and we're a signal handler, so we shouldn't be allocating
+ * memory. */
+ emacs_abort ();
+ }
+#endif
+
+ void *candidate = ap->usable_memory;
+ void *end = ap->usable_memory_end;
+ if ((char *)candidate + size <= (char *)end)
+ {
+ void *actual = ap->usable_memory;
+ void *actual_end = (char *)actual + size;
+ ap->usable_memory = actual_end;
+ if (actual_end < end)
+ {
+ set_header ((struct igc_header *)actual_end, IGC_OBJ_PAD, (char *)end - (char *)actual_end, 0);
+ }
+ asm volatile ("" : : : "memory");
+ set_header ((struct igc_header *)actual, type, size, alloc_hash ());
+ ret = actual;
+ }
+ else
+ {
+ ap->requested_bytes = (size_t) size;
+
+ while (ap->requested_bytes)
+ {
+ /* No MPS data can be accessed by the main thread while it holds the mutex! */
+ sys_mutex_lock (&ap->gc->mutex);
+ atomic_store (&ap->gc->which_ap, (uintptr_t) ap);
+ sys_cond_broadcast (&ap->gc->cond);
+ sys_mutex_unlock (&ap->gc->mutex);
+ sched_yield ();
+ }
+ }
+#ifdef ENABLE_CHECKING
+ atomic_fetch_add (&ap->waiting_threads, -1);
+#endif
+ }
+ return (mps_addr_t) ret;
+}
+
+static mps_res_t emacs_ap_create_k (emacs_ap_t *ap, mps_pool_t pool,
+ mps_arg_s *args)
+{
+ ap->gc = global_igc;
+ ap->usable_memory = NULL;
+ ap->usable_memory_end = NULL;
+#ifdef ENABLE_CHECKING
+ atomic_store(&ap->waiting_threads, 0);
+#endif
+ ap->requested_bytes = 0;
+
+ static int just_one;
+ if (!(just_one++))
+ if (!sys_thread_create(&ap->gc->allocation_thread, igc_allocation_thread, ap->gc))
+ emacs_abort ();
+
+#ifdef ENABLE_CHECKING
+ ap->emacs_thread = sys_thread_self ();
+#endif
+ return mps_ap_create_k (&ap->mps_ap, pool, args);
+}
+
+static void emacs_ap_destroy (emacs_ap_t *ap)
+{
+ return;
+}
+
static mps_res_t
-create_weak_ap (mps_ap_t *ap, struct igc_thread *t, bool weak)
+create_weak_ap (emacs_ap_t *ap, struct igc_thread *t, bool weak)
{
struct igc *gc = t->gc;
mps_res_t res;
@@ -2923,14 +3126,14 @@ create_weak_ap (mps_ap_t *ap, struct igc_thread *t, bool weak)
{
MPS_ARGS_ADD (args, MPS_KEY_RANK,
weak ? mps_rank_weak () : mps_rank_exact ());
- res = mps_ap_create_k (ap, pool, args);
+ res = emacs_ap_create_k (ap, pool, args);
}
MPS_ARGS_END (args);
return res;
}
static mps_res_t
-create_weak_hash_ap (mps_ap_t *ap, struct igc_thread *t, bool weak)
+create_weak_hash_ap (emacs_ap_t *ap, struct igc_thread *t, bool weak)
{
struct igc *gc = t->gc;
mps_res_t res;
@@ -2939,7 +3142,7 @@ create_weak_hash_ap (mps_ap_t *ap, struct igc_thread *t, bool weak)
{
MPS_ARGS_ADD (args, MPS_KEY_RANK,
weak ? mps_rank_weak () : mps_rank_exact ());
- res = mps_ap_create_k (ap, pool, args);
+ res = emacs_ap_create_k (ap, pool, args);
}
MPS_ARGS_END (args);
return res;
@@ -2949,12 +3152,14 @@ create_weak_hash_ap (mps_ap_t *ap, struct igc_thread *t, bool weak)
create_thread_aps (struct igc_thread *t)
{
struct igc *gc = t->gc;
+ sys_cond_init (&gc->cond);
+ sys_mutex_init (&gc->mutex);
mps_res_t res;
- res = mps_ap_create_k (&t->dflt_ap, gc->dflt_pool, mps_args_none);
+ res = emacs_ap_create_k (&t->dflt_ap, gc->dflt_pool, mps_args_none);
IGC_CHECK_RES (res);
- res = mps_ap_create_k (&t->leaf_ap, gc->leaf_pool, mps_args_none);
+ res = emacs_ap_create_k (&t->leaf_ap, gc->leaf_pool, mps_args_none);
IGC_CHECK_RES (res);
- res = mps_ap_create_k (&t->immovable_ap, gc->immovable_pool, mps_args_none);
+ res = emacs_ap_create_k (&t->immovable_ap, gc->immovable_pool, mps_args_none);
IGC_CHECK_RES (res);
res = create_weak_ap (&t->weak_strong_ap, t, false);
res = create_weak_hash_ap (&t->weak_hash_strong_ap, t, false);
@@ -3016,13 +3221,13 @@ igc_thread_remove (void **pinfo)
destroy_root (&t->d.stack_root);
destroy_root (&t->d.specpdl_root);
destroy_root (&t->d.bc_root);
- mps_ap_destroy (t->d.dflt_ap);
- mps_ap_destroy (t->d.leaf_ap);
- mps_ap_destroy (t->d.weak_strong_ap);
- mps_ap_destroy (t->d.weak_weak_ap);
- mps_ap_destroy (t->d.weak_hash_strong_ap);
- mps_ap_destroy (t->d.weak_hash_weak_ap);
- mps_ap_destroy (t->d.immovable_ap);
+ emacs_ap_destroy (&t->d.dflt_ap);
+ emacs_ap_destroy (&t->d.leaf_ap);
+ emacs_ap_destroy (&t->d.weak_strong_ap);
+ emacs_ap_destroy (&t->d.weak_weak_ap);
+ emacs_ap_destroy (&t->d.weak_hash_strong_ap);
+ emacs_ap_destroy (&t->d.weak_hash_weak_ap);
+ emacs_ap_destroy (&t->d.immovable_ap);
mps_thread_dereg (deregister_thread (t));
}
@@ -3635,7 +3840,16 @@ arena_step (void)
interval = 0.05;
}
- if (mps_arena_step (global_igc->arena, interval, 0))
+ atomic_store (&global_igc->idle_time, interval * 1e9);
+ sys_cond_broadcast (&global_igc->cond);
+ while (global_igc->idle_time)
+ {
+ sched_yield ();
+ sys_mutex_lock (&global_igc->mutex);
+ sched_yield ();
+ sys_mutex_unlock (&global_igc->mutex);
+ }
+ if (global_igc->idle_work)
return true;
}
@@ -3686,7 +3900,7 @@ igc_on_idle (void)
}
}
-static mps_ap_t
+static emacs_ap_t *
thread_ap (enum igc_obj_type type)
{
struct igc_thread_list *t = current_thread->gc_info;
@@ -3707,13 +3921,13 @@ thread_ap (enum igc_obj_type type)
emacs_abort ();
case IGC_OBJ_MARKER_VECTOR:
- return t->d.weak_weak_ap;
+ return &t->d.weak_weak_ap;
case IGC_OBJ_WEAK_HASH_TABLE_WEAK_PART:
- return t->d.weak_hash_weak_ap;
+ return &t->d.weak_hash_weak_ap;
case IGC_OBJ_WEAK_HASH_TABLE_STRONG_PART:
- return t->d.weak_hash_strong_ap;
+ return &t->d.weak_hash_strong_ap;
case IGC_OBJ_VECTOR:
case IGC_OBJ_CONS:
@@ -3728,12 +3942,12 @@ thread_ap (enum igc_obj_type type)
case IGC_OBJ_FACE_CACHE:
case IGC_OBJ_BLV:
case IGC_OBJ_HANDLER:
- return t->d.dflt_ap;
+ return &t->d.dflt_ap;
case IGC_OBJ_STRING_DATA:
case IGC_OBJ_FLOAT:
case IGC_OBJ_BYTES:
- return t->d.leaf_ap;
+ return &t->d.leaf_ap;
}
emacs_abort ();
}
@@ -3746,8 +3960,8 @@ igc_break (void)
{
}
-void
-igc_collect (void)
+static void
+igc_collect_raw (void)
{
struct igc *gc = global_igc;
if (gc->park_count == 0)
@@ -3758,6 +3972,26 @@ igc_collect (void)
}
}
+void
+igc_collect (void)
+{
+ struct igc *gc = global_igc;
+ if (gc->park_count == 0)
+ {
+ atomic_store (&gc->manual_collections, 1);
+ while (gc->manual_collections)
+ {
+ sys_cond_broadcast (&gc->cond);
+ sched_yield ();
+ sys_mutex_lock (&gc->mutex);
+ /* pthread_mutex_lock () directly followed by
+ * pthread_mutex_unlock () doesn't work, IIRC */
+ sched_yield ();
+ sys_mutex_unlock (&gc->mutex);
+ }
+ }
+}
+
DEFUN ("igc--collect", Figc__collect, Sigc__collect, 0, 0, 0,
doc: /* Force an immediate arena garbage collection. */)
(void)
@@ -3805,7 +4039,7 @@ igc_hash (Lisp_Object key)
object. */
static mps_addr_t
-alloc_impl (size_t size, enum igc_obj_type type, mps_ap_t ap)
+alloc_impl_raw (size_t size, mps_ap_t ap)
{
mps_addr_t p UNINIT;
size = alloc_size (size);
@@ -3820,14 +4054,14 @@ alloc_impl (size_t size, enum igc_obj_type type, mps_ap_t ap)
memory_full (0);
/* Object _must_ have valid contents before commit. */
memclear (p, size);
- set_header (p, type, size, alloc_hash ());
+ set_header (p, IGC_OBJ_PAD, size, 0);
}
while (!mps_commit (ap, p, size));
break;
case IGC_STATE_DEAD:
p = xzalloc (size);
- set_header (p, type, size, alloc_hash ());
+ set_header (p, IGC_OBJ_PAD, size, alloc_hash ());
break;
case IGC_STATE_INITIAL:
@@ -3854,7 +4088,7 @@ alloc (size_t size, enum igc_obj_type type)
alloc_immovable (size_t size, enum igc_obj_type type)
{
struct igc_thread_list *t = current_thread->gc_info;
- return alloc_impl (size, type, t->d.immovable_ap);
+ return alloc_impl (size, type, &t->d.immovable_ap);
}
#ifdef HAVE_MODULES
@@ -4087,6 +4321,8 @@ weak_hash_find_dependent (mps_addr_t base)
struct Lisp_Weak_Hash_Table_Strong_Part *w = client;
return w->weak;
}
+ case IGC_OBJ_PAD:
+ return 0;
default:
emacs_abort ();
}
@@ -4448,8 +4684,12 @@ igc_external_header (struct igc_header *h)
exthdr->hash = header_hash (h);
exthdr->obj_type = header_type (h);
exthdr->extra_dependency = Qnil;
- /* On IA-32, the upper 32-bit word is 0 after this, which is okay. */
- h->v = (intptr_t)exthdr + IGC_TAG_EXTHDR;
+ asm volatile ("" : : : "memory");
+ uint64_t v = h->v;
+ /* maintain the upper 32-bit word for WIDE_EMACS_INT builds. */
+ v -= (uintptr_t) v;
+ v += (intptr_t)exthdr + IGC_TAG_EXTHDR;
+ h->v = v;
mps_addr_t ref = (mps_addr_t) h;
mps_res_t res = mps_finalize (global_igc->arena, &ref);
IGC_CHECK_RES (res);
@@ -4893,17 +5133,17 @@ igc_on_pdump_loaded (void *dump_base, void *hot_start, void *hot_end,
igc_alloc_dump (size_t nbytes)
{
igc_assert (global_igc->park_count > 0);
- mps_ap_t ap = thread_ap (IGC_OBJ_CONS);
+ emacs_ap_t *ap = thread_ap (IGC_OBJ_CONS);
size_t block_size = igc_header_size () + nbytes;
mps_addr_t block;
do
{
- mps_res_t res = mps_reserve (&block, ap, block_size);
+ mps_res_t res = mps_reserve (&block, ap->mps_ap, block_size);
if (res != MPS_RES_OK)
memory_full (0);
set_header (block, IGC_OBJ_INVALID, block_size, 0);
}
- while (!mps_commit (ap, block, block_size));
+ while (!mps_commit (ap->mps_ap, block, block_size));
return (char *) block + igc_header_size ();
}
@@ -5050,6 +5290,40 @@ DEFUN ("igc--remove-extra-dependency", Figc__remove_extra_dependency,
return Qt;
}
+static struct sigaction mps_sigaction;
+
+static void sigsegv_sigaction (int sig, siginfo_t *info, void *uap)
+{
+ if (sys_thread_self () == main_thread.s.thread_id)
+ {
+ atomic_store (&global_igc->fault_address, (uintptr_t) info->si_addr);
+ sys_cond_broadcast (&global_igc->cond);
+ sched_yield ();
+ sys_mutex_lock (&global_igc->mutex);
+ /* IIRC, pthread_mutex_lock directly followed by
+ pthread_mutex_unlock causes problems somehow... */
+ sched_yield ();
+ sys_mutex_unlock (&global_igc->mutex);
+ }
+ else
+ {
+ /* Recipe for disaster here, I guess. */
+ mps_sigaction.sa_sigaction (sig, info, uap);
+ }
+}
+
+#ifdef SIGSEGV
+static void steal_sigsegv (void)
+{
+ struct sigaction emacs_sigaction;
+ emacs_sigaction.sa_sigaction = sigsegv_sigaction;
+ sigemptyset (&emacs_sigaction.sa_mask);
+ emacs_sigaction.sa_flags = SA_SIGINFO | SA_RESTART;
+
+ sigaction (SIGSEGV, &emacs_sigaction, &mps_sigaction);
+}
+#endif
+
/***********************************************************************
Init
***********************************************************************/
@@ -5061,6 +5335,9 @@ init_igc (void)
(void) mps_lib_assert_fail_install (igc_assert_fail);
global_igc = make_igc ();
add_main_thread ();
+#ifdef SIGSEGV
+ steal_sigsegv ();
+#endif
set_state (IGC_STATE_USABLE_PARKED);
}
diff --git a/src/lisp.h b/src/lisp.h
index 48585c2d8a1..37cc62052c1 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -4102,7 +4102,14 @@ backtrace_debug_on_exit (union specbinding *pdl)
INLINE void
grow_specpdl (void)
{
+ /* we don't need a memory bus barrier here, but a logical memory
+ barrier so GCC doesn't reorder stores. */
+ asm volatile ("" : : : "memory");
+ /* This increment doesn't need to be atomic in its entirety, but it
+ can't expose an intermediate state of specpdl_ptr; IOW, the store
+ needs to be a single CPU instruction. */
specpdl_ptr++;
+ asm volatile ("" : : : "memory");
if (specpdl_ptr == specpdl_end)
grow_specpdl_allocation ();
}
^ permalink raw reply related [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 17:40 ` Pip Cet via Emacs development discussions.
@ 2024-12-25 17:51 ` Eli Zaretskii
2024-12-26 15:24 ` Pip Cet via Emacs development discussions.
2024-12-26 5:27 ` Gerd Möllmann
2024-12-26 5:29 ` Gerd Möllmann
2 siblings, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-25 17:51 UTC (permalink / raw)
To: Pip Cet; +Cc: gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
> Date: Wed, 25 Dec 2024 17:40:42 +0000
> From: Pip Cet <pipcet@protonmail.com>
> Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org, eller.helmut@gmail.com, acorallo@gnu.org
>
> I haven't seen a technical argument against using separate stacks for
> MPS and signals
You haven't actually presented it. I wrote that we should carefully
discuss this and other ideas, and asked to present each such idea's
design in enough detail to have a useful and concrete discussion of
each idea. (And no, showing the code doesn't cut it, because the
design is not always easy to grasp quickly, and because the code might
not implement the design you have in mind, for various reasons.)
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 14:59 ` Eli Zaretskii
@ 2024-12-25 20:44 ` Helmut Eller
2024-12-26 6:29 ` Eli Zaretskii
0 siblings, 1 reply; 129+ messages in thread
From: Helmut Eller @ 2024-12-25 20:44 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: gerd.moellmann, pipcet, ofv, emacs-devel, acorallo
On Wed, Dec 25 2024, Eli Zaretskii wrote:
> Which means we should try talking to the MPS folks so that they
> provide us with the means of blocking some signals while the lock is
> held. Like some callback MPS would call when it takes the lock and
> another one when it releases the lock.
Your position is that blocking SIGPROF while MPS holds the lock is
the correct thing to do, right?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 17:03 ` Pip Cet via Emacs development discussions.
@ 2024-12-26 5:22 ` Gerd Möllmann
2024-12-26 7:33 ` Eli Zaretskii
2024-12-26 16:12 ` Stefan Kangas
1 sibling, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-26 5:22 UTC (permalink / raw)
To: Pip Cet
Cc: Stefan Kangas, Eli Zaretskii, ofv, emacs-devel, eller.helmut,
acorallo
Pip Cet <pipcet@protonmail.com> writes:
> Note that Gerd appeared to be disagreeing about some part of this, but
> I'm not sure which part precisely.
Then I gave a false impression, sorry. #hat you write is likely correct.
And I'm only saying likely because there's always a chance that
something is wrong.
I'm coming to all this from a completely different angle. My
understanding is (1) the signal handling/MPS thing, is the only thing
preventing landing in master, and (2) the problems with
reordering/consistency and so on basically already exists in master. Add
(3) that I believe landing in master ASAP is desirable. If these
premises are not valid, especially (1) I'd like to be corrected, BTW.
My approach is "focus!" :-). Get a signal handling/MPS thing into igc
that is good enough to be accepted, land in master, and only then
proceed with anything else that has come up. Admittedly, neither the
"focus", nor my "good enough solution" seems to work, so far.
If people find that that the wrong approach, or not helpful, please
tell! I'm not married to the idea. I can as well wait for things to
settle by themselves, because everything works just fine already on the
system in my office :-).
I don't know. Maintainers please take over, I guess.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 17:26 ` Eli Zaretskii
@ 2024-12-26 5:25 ` Gerd Möllmann
2024-12-26 7:43 ` Eli Zaretskii
0 siblings, 1 reply; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-26 5:25 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
>> eller.helmut@gmail.com, acorallo@gnu.org
>> Date: Wed, 25 Dec 2024 16:49:30 +0100
>>
>> Eli Zaretskii <eliz@gnu.org> writes:
>>
>> >> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>> >> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
>> >> eller.helmut@gmail.com, acorallo@gnu.org
>> >> Date: Wed, 25 Dec 2024 15:57:32 +0100
>> >>
>> >> Eli Zaretskii <eliz@gnu.org> writes:
>> >>
>> >> > I guess I'm yearning for some commentary in igc.c, not unlike what you
>> >> > wrote in xdisp.c at the time, which would explain the basics, like
>> >> > what are roots, what's the purpose of all those root_create_SOMETHING
>> >> > functions, what's the difference between exact and ambiguous roots,
>> >> > etc. Because currently we are not too spoiled by comments in igc.c.
>> >>
>> >> Would a reference to the MPS Guide
>> >>
>> >> https://memory-pool-system.readthedocs.io/en/latest/guide/index.html#
>> >>
>> >> help?
>> >
>> > Not really. Their documentation is (a) too vague/abstract/circular
>> > (i.e., stuff is not explained for itself, but instead they
>> > cross-reference to some other stuff -- e.g., try to understand what is
>> > a "root"), and (b) not specific to Emacs, so the relation between MPS
>> > terminology and Emacs objects is missing.
>>
>> Too bad. In that case, I guess I should consider to begin to think about
>> planning to start to try write something up. That's a bit like pulling
>> teeth, TBH. Don't know how long that will take.
>
> Thanks. No matter how long it will take, it will be shorter than
> eternity.
Did what I wrote in this thread help you understand/judge what I
proposed better? Please ask further questions if you want.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 17:40 ` Pip Cet via Emacs development discussions.
2024-12-25 17:51 ` Eli Zaretskii
@ 2024-12-26 5:27 ` Gerd Möllmann
2024-12-26 5:29 ` Gerd Möllmann
2 siblings, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-26 5:27 UTC (permalink / raw)
To: Pip Cet; +Cc: Eli Zaretskii, ofv, emacs-devel, eller.helmut, acorallo
Pip Cet <pipcet@protonmail.com> writes:
> Gerd Möllmann <gerd.moellmann@gmail.com> writes:
>> DEFUN ("function-equal", Ffunction_equal, Sfunction_equal, 2, 2, 0,
>> doc: /* Return non-nil if F1 and F2 come from the same source.
>> Used to determine if different closures are just different instances of
>> the same lambda expression, or are really unrelated function. */)
>> (Lisp_Object f1, Lisp_Object f2)
>> {
>> bool res;
>> if (EQ (f1, f2))
>
> This EQ can also trip. Sorry to insist on that, but I think it's an
> important point: if we change Lisp internals (such as the slow EQ
> thing), the "we're not dereferencing it, just looking at the bit
> representation of the pointer" approach will fail again, in unexpected
> places.
>
> I haven't seen a technical argument against using separate stacks for
> MPS and signals (I don't consider "it's a change and we'd need to test
> it" to be any more true for this change than for any other proposed
> change, or for what's in scratch/igc now). It would get us on par with
> master. (Both versions need to add the best memory barrier we have to
> the specpdl_ptr++ code)
>
> (I don't think MPS works on multi-threaded systems if word stores aren't
> atomic. If thread A is in the middle of updating an mps_word
> referencing another object, and thread B triggers a GC, thread A is
> stopped and thread B might scan the segment in the inconsistent state.)
>
> Miraculously, everything can be made to work out in the WIDE_EMACS_INT
> case, even though 64-bit words are stored in two insns: we only look at
> the LSB 32-bit word when fixing (because we USE_LSB_TAG), so that'll
> just work. Late exthdr creation needed to be changed a little, and now
> assumes changing a 64-bit value to another 64-bit value which differs
> only in one 32-bit half is atomic.
>
> Here's a snapshot of the current code. It still assumes strong memory
> ordering between threads because I'm pretty sure MPS needs that, too, so
> it's just asm volatile ("" ::: "memory") for now.
Thanks.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 17:40 ` Pip Cet via Emacs development discussions.
2024-12-25 17:51 ` Eli Zaretskii
2024-12-26 5:27 ` Gerd Möllmann
@ 2024-12-26 5:29 ` Gerd Möllmann
2 siblings, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-26 5:29 UTC (permalink / raw)
To: Pip Cet; +Cc: Eli Zaretskii, ofv, emacs-devel, eller.helmut, acorallo
Pip Cet <pipcet@protonmail.com> writes:
> Gerd Möllmann <gerd.moellmann@gmail.com> writes:
>> DEFUN ("function-equal", Ffunction_equal, Sfunction_equal, 2, 2, 0,
>> doc: /* Return non-nil if F1 and F2 come from the same source.
>> Used to determine if different closures are just different instances of
>> the same lambda expression, or are really unrelated function. */)
>> (Lisp_Object f1, Lisp_Object f2)
>> {
>> bool res;
>> if (EQ (f1, f2))
>
> This EQ can also trip. Sorry to insist on that, but I think it's an
> important point: if we change Lisp internals (such as the slow EQ
> thing), the "we're not dereferencing it, just looking at the bit
> representation of the pointer" approach will fail again, in unexpected
> places.
>
> I haven't seen a technical argument against using separate stacks for
> MPS and signals (I don't consider "it's a change and we'd need to test
> it" to be any more true for this change than for any other proposed
> change, or for what's in scratch/igc now). It would get us on par with
> master. (Both versions need to add the best memory barrier we have to
> the specpdl_ptr++ code)
>
> (I don't think MPS works on multi-threaded systems if word stores aren't
> atomic. If thread A is in the middle of updating an mps_word
> referencing another object, and thread B triggers a GC, thread A is
> stopped and thread B might scan the segment in the inconsistent state.)
>
> Miraculously, everything can be made to work out in the WIDE_EMACS_INT
> case, even though 64-bit words are stored in two insns: we only look at
> the LSB 32-bit word when fixing (because we USE_LSB_TAG), so that'll
> just work. Late exthdr creation needed to be changed a little, and now
> assumes changing a 64-bit value to another 64-bit value which differs
> only in one 32-bit half is atomic.
>
> Here's a snapshot of the current code. It still assumes strong memory
> ordering between threads because I'm pretty sure MPS needs that, too, so
> it's just asm volatile ("" ::: "memory") for now.
Thanks.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 20:44 ` Helmut Eller
@ 2024-12-26 6:29 ` Eli Zaretskii
2024-12-26 8:02 ` Helmut Eller
0 siblings, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-26 6:29 UTC (permalink / raw)
To: Helmut Eller; +Cc: gerd.moellmann, pipcet, ofv, emacs-devel, acorallo
> From: Helmut Eller <eller.helmut@gmail.com>
> Cc: gerd.moellmann@gmail.com, pipcet@protonmail.com, ofv@wanadoo.es,
> emacs-devel@gnu.org, acorallo@gnu.org
> Date: Wed, 25 Dec 2024 21:44:21 +0100
>
> On Wed, Dec 25 2024, Eli Zaretskii wrote:
>
> > Which means we should try talking to the MPS folks so that they
> > provide us with the means of blocking some signals while the lock is
> > held. Like some callback MPS would call when it takes the lock and
> > another one when it releases the lock.
>
> Your position is that blocking SIGPROF while MPS holds the lock is
> the correct thing to do, right?
Yes, I think so. (If you disagree, please tell why, and let's discuss
that.) It is certainly a relatively simple thing to do.
It is also possible for MPS to somehow manage an attempt to take the
lock which is already held in a smarter way, by stopping the code
which does that until MPS releases the lock. For example, MPS could
define a protocol for such situations not unlike the GIL protocol we
use for Lisp threads. But that's much more complex, and I don't
necessarily expect the MPS folks to go to such lengths.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-26 5:22 ` Gerd Möllmann
@ 2024-12-26 7:33 ` Eli Zaretskii
2024-12-26 8:02 ` Gerd Möllmann
2024-12-26 15:50 ` Stefan Kangas
0 siblings, 2 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-26 7:33 UTC (permalink / raw)
To: Gerd Möllmann
Cc: pipcet, stefankangas, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: Stefan Kangas <stefankangas@gmail.com>, Eli Zaretskii <eliz@gnu.org>,
> ofv@wanadoo.es, emacs-devel@gnu.org, eller.helmut@gmail.com,
> acorallo@gnu.org
> Date: Thu, 26 Dec 2024 06:22:17 +0100
>
> I'm coming to all this from a completely different angle. My
> understanding is (1) the signal handling/MPS thing, is the only thing
> preventing landing in master
That's not so. It is not the only thing we need to figure out and
solve before we can consider landing this on master. At the very
least, we have unresolved issues with patches to MPS for some
platforms, whereby we considered forking MPS or some other course of
actions. Also, there are several FIXMEs in igc.c itself. For the
MS-Windows build, we have the issue of registering some threads with
MPS (see our discussion Re: "MPS: w32 threads" back in May). So we
still have a way to go.
> My approach is "focus!" :-). Get a signal handling/MPS thing into igc
> that is good enough to be accepted, land in master, and only then
> proceed with anything else that has come up.
The "focus!" approach is correct, IMO, but landing the feature on
master is only possible if we believe the branch is stable enough,
because there are enough people who use master for production to
consider its being reasonably stable a necessary requirement. I
believe we still have unresolved reports about freezes on GNU/Linux,
so we are not there yet. I also don't have a clear idea of which
Emacs configurations (in terms of toolkits, PGTK yes/no,
native-compilation yes/no, etc.) were or are being tested on
GNU/Linux -- this is also relevant to assessing the stability.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-26 5:25 ` Gerd Möllmann
@ 2024-12-26 7:43 ` Eli Zaretskii
2024-12-26 7:57 ` Gerd Möllmann
0 siblings, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-26 7:43 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
> Date: Thu, 26 Dec 2024 06:25:33 +0100
>
> Eli Zaretskii <eliz@gnu.org> writes:
>
> >> >> https://memory-pool-system.readthedocs.io/en/latest/guide/index.html#
> >> >>
> >> >> help?
> >> >
> >> > Not really. Their documentation is (a) too vague/abstract/circular
> >> > (i.e., stuff is not explained for itself, but instead they
> >> > cross-reference to some other stuff -- e.g., try to understand what is
> >> > a "root"), and (b) not specific to Emacs, so the relation between MPS
> >> > terminology and Emacs objects is missing.
> >>
> >> Too bad. In that case, I guess I should consider to begin to think about
> >> planning to start to try write something up. That's a bit like pulling
> >> teeth, TBH. Don't know how long that will take.
> >
> > Thanks. No matter how long it will take, it will be shorter than
> > eternity.
>
> Did what I wrote in this thread help you understand/judge what I
> proposed better? Please ask further questions if you want.
It does help, to some extent. But I'm still in the dark regarding
some aspects of this. I'll keep asking questions, but there's a limit
to which I feel myself entitled to ask questions without annoying too
much. Which is why I suggested to write commentary instead, to get
some of the basics out of the way. It doesn't have to be you
personally who writes the commentary, btw: anyone who knows the
answers to the questions I posted could do that. With that in mind,
let me again post the questions which I'm currently struggling with:
. what are "roots"?
. what is the purpose of each root_create_SOMETHING function in igc.c?
. what is the difference between "exact" and "ambiguous" roots, and
when should we use each one in Emacs?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-26 7:43 ` Eli Zaretskii
@ 2024-12-26 7:57 ` Gerd Möllmann
2024-12-26 11:56 ` Eli Zaretskii
2024-12-26 15:27 ` Stefan Kangas
0 siblings, 2 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-26 7:57 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
>> eller.helmut@gmail.com, acorallo@gnu.org
>> Date: Thu, 26 Dec 2024 06:25:33 +0100
>>
>> Eli Zaretskii <eliz@gnu.org> writes:
>>
>> >> >> https://memory-pool-system.readthedocs.io/en/latest/guide/index.html#
>> >> >>
>> >> >> help?
>> >> >
>> >> > Not really. Their documentation is (a) too vague/abstract/circular
>> >> > (i.e., stuff is not explained for itself, but instead they
>> >> > cross-reference to some other stuff -- e.g., try to understand what is
>> >> > a "root"), and (b) not specific to Emacs, so the relation between MPS
>> >> > terminology and Emacs objects is missing.
>> >>
>> >> Too bad. In that case, I guess I should consider to begin to think about
>> >> planning to start to try write something up. That's a bit like pulling
>> >> teeth, TBH. Don't know how long that will take.
>> >
>> > Thanks. No matter how long it will take, it will be shorter than
>> > eternity.
>>
>> Did what I wrote in this thread help you understand/judge what I
>> proposed better? Please ask further questions if you want.
>
> It does help, to some extent. But I'm still in the dark regarding
> some aspects of this. I'll keep asking questions, but there's a limit
> to which I feel myself entitled to ask questions without annoying too
> much. Which is why I suggested to write commentary instead, to get
> some of the basics out of the way. It doesn't have to be you
> personally who writes the commentary, btw: anyone who knows the
> answers to the questions I posted could do that. With that in mind,
> let me again post the questions which I'm currently struggling with:
>
> . what are "roots"?
> . what is the purpose of each root_create_SOMETHING function in igc.c?
> . what is the difference between "exact" and "ambiguous" roots, and
> when should we use each one in Emacs?
Coincidentally, I wrote this today, which might help, and would also be
interesting to get some feedback for.
* Introduction / Garbage collection
Implementing a programming language like Lisp requires automatic
memory management which frees the memory of Lisp objects like conses,
strings etc. when they are no longer in use. The automatic memory
management used for Lisp is called garbage collection (GC), which is
performed by a garbage collector. Objects that are no longer used are
called garbage or dead, objects that are in use or called live
objects. The process of getting rid of garbage is called the GC.
A large number of GC algorithms and implementations exist which differ
in various dimensions. Emacs has two GC implementations which can be
chosen at compile-time. The traditional (old) GC, which was the only
one until recently, is a so-called mark-sweep, non-copying collector.
The new GC implementation in this file is an incremental,
generational, concurrent (igc) collector based on the MPS library from
Ravenbrook. It is a so-called copying collector. The terms used here
will become clearer in the following.
Emacs' traditional mark-sweep GC works in two phases:
1. The mark phase
Start with a set of so-called (GC) roots that are
known to contain live objects. Examples of roots in Emacs are
- the bytecode stacks
- the specpdl (binding) stacks
- Lisp variables defined in C with DEFVAR
- the C stacks (aka control stacks)
- ...
Roots can be either exact or ambiguous.
If we know that a root always contains a valid Lisp object
reference it is called exact. Example for an exact root would be
the root for a DEFVAR. The DEFVAR variable always contains a valid
Lisp object.
If we only know that a root might potentially reference a Lisp
object, that root is called ambiguous. An example for an ambigupus
root is the C stack. The C stack can contain integers that look
like they are a reference to a Lisp object, but actually look like
that only by happenstance. Ambiguous roots are said to be scanned
conservatively. We make the conservative assumption that we
actually have seen a valid reference, even if it is actually not.
GC scans all roots, conservatively or exact, and marks the Lisp
objects found in them live, plus all Lisp objects reachable from
them, recursively. In the end, all live objects are marked, and all
objects not marked are dead, i.e. garbage.
2. The sweep phase.
Sweeping means to free all objects that are not marked live. The
collector iterates over all allocated objects, live or dead, and
frees the ones that are dead so that their memory can be reused.
The traditional mark-sweep GC implementation is
- Not concurrent. Emacs calls GC explicitly in various places, and
proceeds only when the GC is done.
- Not incremental. The GC is not done in steps.
- Not generational. The GC doesn't take advantage of the so-called
generational hypothesis, which says that most objects used by program
die young, i.e. are only used for a short period of time. Other GCs
take this hypothesis into account to reduce pause times.
- Not copying. Lisp objects are never copied by the GC. They stay at
the addresses where they their initial allocation puts them. Special
facilities like allocation in blocks are implemented to avoid memory
fragmentation.
In contrast, the new igc collector, using MPS, is
- Concurrent. The GC runs in its own thread. There are no explicit
calls to start GC, and Emacs doesn't have to wait for the GC to end.
- Incremental. The GC is done in steps.
- Generational. The GC takes advantage of the so-called
generational hypothesis.
- Copying. Lisp objects are copied by the GC, avoiding memory
fragmentation. Special care must be taken to take into account that
the same Lisp object can have different addresses at different
times.
The goal of igc is to reduce pause times when using Emacs
interactively. The properties listed above which come from leveraging
MPS make that possible.
* MPS
A guide and a reference manual for MPS can be found at
https://memory-pool-system.readthedocs.io.
It is recommended to read at least the Guide. And what else to write I
don't know.
* Registry
MPS provides an API of C functions that an application can use to
interface with the MPS. For example, MPS cannot know what the GC roots
of an application are, or what threads the application considers
relevant for GC. So, MPS provides functions that an application can
use to define its roots and threads.
The MPS functions typically return a handle to an MPS object created
for what is defined by them. For example, when we define a root with
mps_root_create_area, MPS gives us a mps_root_t handle back. The
handles returned can later be used to change or delete what we
created. For example, we use the handle we got from MPS for a root to
destroy the root with mps_root_destroy.
All MPS handles we create, we collect in a global registry of type
struct igc which is stored in the global variable global_igc and can
be accessed from amywhere.
* Initialization
- Roots
- Threads
- Pools, Object formats
* Lisp Object Allocation
Object Header?
* Malloc with roots
* Memory barriers
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-26 6:29 ` Eli Zaretskii
@ 2024-12-26 8:02 ` Helmut Eller
2024-12-26 9:32 ` Eli Zaretskii
0 siblings, 1 reply; 129+ messages in thread
From: Helmut Eller @ 2024-12-26 8:02 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: gerd.moellmann, pipcet, ofv, emacs-devel, acorallo
On Thu, Dec 26 2024, Eli Zaretskii wrote:
>> > Which means we should try talking to the MPS folks so that they
>> > provide us with the means of blocking some signals while the lock is
>> > held. Like some callback MPS would call when it takes the lock and
>> > another one when it releases the lock.
>>
>> Your position is that blocking SIGPROF while MPS holds the lock is
>> the correct thing to do, right?
>
> Yes, I think so. (If you disagree, please tell why, and let's discuss
> that.) It is certainly a relatively simple thing to do.
I quite like Pip's proposal of re-installing the SIGSEGV handler with an
additional sa_mask argument to block other signals. That would be nice
because a) we can do that without changing MPS and b) it's likely more
efficient than callbacks.
It would still be nice to simplify some signal handlers, like
handle_interrupt_signal, but with other signals blocked for SIGSEGV, it
would all be quite independent of MPS.
> It is also possible for MPS to somehow manage an attempt to take the
> lock which is already held in a smarter way, by stopping the code
> which does that until MPS releases the lock. For example, MPS could
> define a protocol for such situations not unlike the GIL protocol we
> use for Lisp threads. But that's much more complex, and I don't
> necessarily expect the MPS folks to go to such lengths.
I think that mps_arena_busy, which tests whether MPS holds the lock, is
quite adequate for the SIGPROF handler. It lets us detect the situation
and increment some counter. An advantage of blocking SIGPROF would be
that no #ifdefs HAVE_MPS would be needed.
Helmut
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-26 7:33 ` Eli Zaretskii
@ 2024-12-26 8:02 ` Gerd Möllmann
2024-12-26 15:50 ` Stefan Kangas
1 sibling, 0 replies; 129+ messages in thread
From: Gerd Möllmann @ 2024-12-26 8:02 UTC (permalink / raw)
To: Eli Zaretskii
Cc: pipcet, stefankangas, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>> Cc: Stefan Kangas <stefankangas@gmail.com>, Eli Zaretskii <eliz@gnu.org>,
>> ofv@wanadoo.es, emacs-devel@gnu.org, eller.helmut@gmail.com,
>> acorallo@gnu.org
>> Date: Thu, 26 Dec 2024 06:22:17 +0100
>>
>> I'm coming to all this from a completely different angle. My
>> understanding is (1) the signal handling/MPS thing, is the only thing
>> preventing landing in master
>
> That's not so. It is not the only thing we need to figure out and
> solve before we can consider landing this on master. At the very
> least, we have unresolved issues with patches to MPS for some
> platforms, whereby we considered forking MPS or some other course of
> actions. Also, there are several FIXMEs in igc.c itself. For the
> MS-Windows build, we have the issue of registering some threads with
> MPS (see our discussion Re: "MPS: w32 threads" back in May). So we
> still have a way to go.
>
>> My approach is "focus!" :-). Get a signal handling/MPS thing into igc
>> that is good enough to be accepted, land in master, and only then
>> proceed with anything else that has come up.
>
> The "focus!" approach is correct, IMO, but landing the feature on
> master is only possible if we believe the branch is stable enough,
> because there are enough people who use master for production to
> consider its being reasonably stable a necessary requirement. I
> believe we still have unresolved reports about freezes on GNU/Linux,
> so we are not there yet. I also don't have a clear idea of which
> Emacs configurations (in terms of toolkits, PGTK yes/no,
> native-compilation yes/no, etc.) were or are being tested on
> GNU/Linux -- this is also relevant to assessing the stability.
Hm. If my assumption (1) is not true, I think it's best for me to just
wait and do my other stuff meanwhile.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-26 8:02 ` Helmut Eller
@ 2024-12-26 9:32 ` Eli Zaretskii
2024-12-26 12:24 ` Helmut Eller
0 siblings, 1 reply; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-26 9:32 UTC (permalink / raw)
To: Helmut Eller; +Cc: gerd.moellmann, pipcet, ofv, emacs-devel, acorallo
> From: Helmut Eller <eller.helmut@gmail.com>
> Cc: gerd.moellmann@gmail.com, pipcet@protonmail.com, ofv@wanadoo.es,
> emacs-devel@gnu.org, acorallo@gnu.org
> Date: Thu, 26 Dec 2024 09:02:11 +0100
>
> On Thu, Dec 26 2024, Eli Zaretskii wrote:
>
> >> Your position is that blocking SIGPROF while MPS holds the lock is
> >> the correct thing to do, right?
> >
> > Yes, I think so. (If you disagree, please tell why, and let's discuss
> > that.) It is certainly a relatively simple thing to do.
>
> I quite like Pip's proposal of re-installing the SIGSEGV handler with an
> additional sa_mask argument to block other signals. That would be nice
> because a) we can do that without changing MPS and b) it's likely more
> efficient than callbacks.
Are we sure doing so will solve the problem? AFAIU, MPS can take the
lock before SIGSEGV is delivered, or without its being delivered at
all, isn't that so?
(Besides, the sa_mask way won't work on Windows, which doesn't have
sigaction and its emulation currently ignores sa_mask; we'd need to
extend the emulation, but that will still leave a small window where
the other signals are not immediately blocked after SIGSEGV.)
> It would still be nice to simplify some signal handlers, like
> handle_interrupt_signal, but with other signals blocked for SIGSEGV, it
> would all be quite independent of MPS.
Maybe. What bothers me more is whether the signals are delivered only
to the main thread or to other threads. AFAIU, this behavior is
system-dependent, and currently we seem to rely on the fact that the
signals is delivered to the main thread. Given that we have other
threads, including the MPS thread, I'm not sure we have this figured
out.
> > It is also possible for MPS to somehow manage an attempt to take the
> > lock which is already held in a smarter way, by stopping the code
> > which does that until MPS releases the lock. For example, MPS could
> > define a protocol for such situations not unlike the GIL protocol we
> > use for Lisp threads. But that's much more complex, and I don't
> > necessarily expect the MPS folks to go to such lengths.
>
> I think that mps_arena_busy, which tests whether MPS holds the lock, is
> quite adequate for the SIGPROF handler. It lets us detect the situation
> and increment some counter.
I'd like to have MPS folks confirm that. The documentation of this
function seems to say we shouldn't use it "normally", only for
debugging (so perhaps in some commands in .gdbinit). And see also
this warning in their docs:
Warning: This function only gives a reliable result in
single-threaded programs, and in multi-threaded programs where
all threads but one are known to be stopped (as they are when
the debugger is decoding the call stack in the use case
described above).
AFAIU, Emacs doesn't fulfill the condition they define.
Also, the code we currently have on the branch doesn't just "increment
some counter", it flatly blocks the signal.
For these reasons, I'm not happy with our current usage of that
function for this purpose.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-26 7:57 ` Gerd Möllmann
@ 2024-12-26 11:56 ` Eli Zaretskii
2024-12-26 15:27 ` Stefan Kangas
1 sibling, 0 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-26 11:56 UTC (permalink / raw)
To: Gerd Möllmann; +Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Gerd Möllmann <gerd.moellmann@gmail.com>
> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
> Date: Thu, 26 Dec 2024 08:57:17 +0100
>
> Eli Zaretskii <eliz@gnu.org> writes:
>
> > . what are "roots"?
> > . what is the purpose of each root_create_SOMETHING function in igc.c?
> > . what is the difference between "exact" and "ambiguous" roots, and
> > when should we use each one in Emacs?
>
> Coincidentally, I wrote this today, which might help, and would also be
> interesting to get some feedback for.
Thanks, this is helpful. Especially if you extend the MPS section to
cover the above questions.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-26 9:32 ` Eli Zaretskii
@ 2024-12-26 12:24 ` Helmut Eller
2024-12-26 15:23 ` Eli Zaretskii
0 siblings, 1 reply; 129+ messages in thread
From: Helmut Eller @ 2024-12-26 12:24 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: gerd.moellmann, pipcet, ofv, emacs-devel, acorallo
On Thu, Dec 26 2024, Eli Zaretskii wrote:
>> > Yes, I think so. (If you disagree, please tell why, and let's discuss
>> > that.) It is certainly a relatively simple thing to do.
>>
>> I quite like Pip's proposal of re-installing the SIGSEGV handler with an
>> additional sa_mask argument to block other signals. That would be nice
>> because a) we can do that without changing MPS and b) it's likely more
>> efficient than callbacks.
>
> Are we sure doing so will solve the problem? AFAIU, MPS can take the
> lock before SIGSEGV is delivered, or without its being delivered at
> all, isn't that so?
Ahem. I completely forgot that.
An alternative to callbacks would be to implement our own lock module as
described here:
https://memory-pool-system.readthedocs.io/en/latest/topic/porting.html
It would probably be a clean and efficient solution; but it would
basically be our own fork of MPS.
>> It would still be nice to simplify some signal handlers, like
>> handle_interrupt_signal, but with other signals blocked for SIGSEGV, it
>> would all be quite independent of MPS.
>
> Maybe. What bothers me more is whether the signals are delivered only
> to the main thread or to other threads. AFAIU, this behavior is
> system-dependent, and currently we seem to rely on the fact that the
> signals is delivered to the main thread. Given that we have other
> threads, including the MPS thread, I'm not sure we have this figured
> out.
I thought deliver_process_signal was there to forward signals to the
main thread but you certainly know better what it does and doesn't.
Helmut
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-26 12:24 ` Helmut Eller
@ 2024-12-26 15:23 ` Eli Zaretskii
0 siblings, 0 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-26 15:23 UTC (permalink / raw)
To: Helmut Eller, Paul Eggert; +Cc: gerd.moellmann, pipcet, emacs-devel
> From: Helmut Eller <eller.helmut@gmail.com>
> Cc: gerd.moellmann@gmail.com, pipcet@protonmail.com, ofv@wanadoo.es,
> emacs-devel@gnu.org, acorallo@gnu.org
> Date: Thu, 26 Dec 2024 13:24:13 +0100
>
> On Thu, Dec 26 2024, Eli Zaretskii wrote:
>
> >> I quite like Pip's proposal of re-installing the SIGSEGV handler with an
> >> additional sa_mask argument to block other signals. That would be nice
> >> because a) we can do that without changing MPS and b) it's likely more
> >> efficient than callbacks.
> >
> > Are we sure doing so will solve the problem? AFAIU, MPS can take the
> > lock before SIGSEGV is delivered, or without its being delivered at
> > all, isn't that so?
>
> Ahem. I completely forgot that.
>
> An alternative to callbacks would be to implement our own lock module as
> described here:
>
> https://memory-pool-system.readthedocs.io/en/latest/topic/porting.html
>
> It would probably be a clean and efficient solution; but it would
> basically be our own fork of MPS.
Probably. I still think we should talk to the MPS folks and hear what
they suggest.
> >> It would still be nice to simplify some signal handlers, like
> >> handle_interrupt_signal, but with other signals blocked for SIGSEGV, it
> >> would all be quite independent of MPS.
> >
> > Maybe. What bothers me more is whether the signals are delivered only
> > to the main thread or to other threads. AFAIU, this behavior is
> > system-dependent, and currently we seem to rely on the fact that the
> > signals is delivered to the main thread. Given that we have other
> > threads, including the MPS thread, I'm not sure we have this figured
> > out.
>
> I thought deliver_process_signal was there to forward signals to the
> main thread but you certainly know better what it does and doesn't.
Actually, we need Paul Eggert to chime in, because he knows much more
about this than I do. We have arrangements for when a signal is
delivered to a thread, but I think Paul said this should rarely if
ever happen. My bother is what if the signal is delivered when the
MPS thread runs.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 17:51 ` Eli Zaretskii
@ 2024-12-26 15:24 ` Pip Cet via Emacs development discussions.
2024-12-26 15:57 ` Eli Zaretskii
0 siblings, 1 reply; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-26 15:24 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
"Eli Zaretskii" <eliz@gnu.org> writes:
>> Date: Wed, 25 Dec 2024 17:40:42 +0000
>> From: Pip Cet <pipcet@protonmail.com>
>> Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org, eller.helmut@gmail.com, acorallo@gnu.org
>>
>> I haven't seen a technical argument against using separate stacks for
>> MPS and signals
>
> You haven't actually presented it.
That's correct: we have an idea and a PoC, no design to discuss or
anything close to a proposal, at this point.
My idea was to ask for obvious problems precluding or complicating this
approach.
I've found a few minor things; so far, nothing unfixable, and no
significant effects on performance, but the fixes will have to become
part of the design and discussion. I don't think anyone is actually
running the code (and that's perfectly okay), but if that is incorrect,
please let me know so we don't rediscover bugs that I've already fixed.
I think rr (time-travel/reverse debugging with acceptable performance)
support is important, but I think I'm the only one? It seems to be
really slow on this branch, though I don't know how fast it is on
scratch/igc.
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-26 7:57 ` Gerd Möllmann
2024-12-26 11:56 ` Eli Zaretskii
@ 2024-12-26 15:27 ` Stefan Kangas
1 sibling, 0 replies; 129+ messages in thread
From: Stefan Kangas @ 2024-12-26 15:27 UTC (permalink / raw)
To: Gerd Möllmann, Eli Zaretskii
Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
Gerd Möllmann <gerd.moellmann@gmail.com> writes:
> Coincidentally, I wrote this today, which might help, and would also be
> interesting to get some feedback for.
This text looks good to me as a general introduction, especially if you
extend it to include these points also:
> * Initialization
> - Roots
> - Threads
> - Pools, Object formats
> * Lisp Object Allocation
> Object Header?
> * Malloc with roots
> * Memory barriers
Do you intend to install this on the scratch/igc branch?
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-26 7:33 ` Eli Zaretskii
2024-12-26 8:02 ` Gerd Möllmann
@ 2024-12-26 15:50 ` Stefan Kangas
2024-12-26 16:13 ` Eli Zaretskii
2024-12-26 17:01 ` Pip Cet via Emacs development discussions.
1 sibling, 2 replies; 129+ messages in thread
From: Stefan Kangas @ 2024-12-26 15:50 UTC (permalink / raw)
To: Eli Zaretskii, Gerd Möllmann
Cc: pipcet, ofv, emacs-devel, eller.helmut, acorallo
Eli Zaretskii <eliz@gnu.org> writes:
>> I'm coming to all this from a completely different angle. My
>> understanding is (1) the signal handling/MPS thing, is the only thing
>> preventing landing in master
>
> That's not so. It is not the only thing we need to figure out and
> solve before we can consider landing this on master.
Thanks. Should we perhaps make a list of these items somewhere, e.g. in
README-IGC on the scratch/igc branch?
> we have unresolved issues with patches to MPS for some platforms,
> whereby we considered forking MPS or some other course of actions.
Forking MPS is obviously better to avoid, if at all possible.
Do we have a complete list of these patches, or can we assemble one now?
Are all of these open pull requests to Ravenbrook, so that we are in
effect only waiting for them, or do we need to more work on our end?
> Also, there are several FIXMEs in igc.c itself.
Are all of these important enough to be considered as blockers for
merging to master, or only some of them?
If the latter, how about making a list of the ones that are considered
blockers, or perhaps just marking them as such in the FIXME comment in
the source code?
> For the MS-Windows build, we have the issue of registering some
> threads with MPS (see our discussion Re: "MPS: w32 threads" back in
> May).
In the long run, it is highly desirable to have support for (reasonably
modern) MS-Windows, of course. There is no doubt about that.
But could you elaborate on why you think this is a blocker for merging
this to master? My understanding is that, from the point of view of
GNU, we maintainers can choose to take features even if they only work
on GNU/Linux. They can then be made to work on other systems later.
Maybe I'm missing something.
> The "focus!" approach is correct, IMO, but landing the feature on
> master is only possible if we believe the branch is stable enough,
> because there are enough people who use master for production to
> consider its being reasonably stable a necessary requirement.
I agree that more stability and testing is always better.
However, if we have the fundamental issues worked out to such an extent
that we can demonstrate that the MPS branch is viable, I personally
don't consider "not enough testing" to be a blocker for merging the
branch to master. For example, we could put the MPS GC behind a feature
flag, and mark it as experimental.
I don't suggest that we should rush to merge or anything like that, but
let's keep in mind the benefits of merging also: it could help lead to
faster stabilization, as it will be easier to test than building a
feature branch. It will also be a clear indicator that we consider the
basic approach to be viable enough.
We will also get more testing of the combined result "for free"
(i.e. using the old GC even in the presence of the changes needed for
the new one).
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-26 15:24 ` Pip Cet via Emacs development discussions.
@ 2024-12-26 15:57 ` Eli Zaretskii
0 siblings, 0 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-26 15:57 UTC (permalink / raw)
To: Pip Cet; +Cc: gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
> Date: Thu, 26 Dec 2024 15:24:14 +0000
> From: Pip Cet <pipcet@protonmail.com>
> Cc: gerd.moellmann@gmail.com, ofv@wanadoo.es, emacs-devel@gnu.org, eller.helmut@gmail.com, acorallo@gnu.org
>
> "Eli Zaretskii" <eliz@gnu.org> writes:
>
> >> Date: Wed, 25 Dec 2024 17:40:42 +0000
> >> From: Pip Cet <pipcet@protonmail.com>
> >> Cc: Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org, eller.helmut@gmail.com, acorallo@gnu.org
> >>
> >> I haven't seen a technical argument against using separate stacks for
> >> MPS and signals
> >
> > You haven't actually presented it.
>
> That's correct: we have an idea and a PoC, no design to discuss or
> anything close to a proposal, at this point.
>
> My idea was to ask for obvious problems precluding or complicating this
> approach.
OK, but still, since you wrote the code to implement it, I guess you
have at least some initial design ideas? I hoped you could describe
those ideas, so we could better understand what you have in mind, and
provide a more useful feedback about possible problems, if any, with
those ideas.
In general, as I wrote earlier, there's nothing problematic with
adding a C thread to Emacs. But since (AFAIU) the suggestion is to
run MPS from that thread, I think we should understand in more detail
how can GC be run from a separate thread. I expect that to have at
least some impact on the Emacs code elsewhere, since the original
Emacs design assumed that GC runs synchronously, and the rest of the
Lisp machine is stopped while it does.
> I've found a few minor things; so far, nothing unfixable, and no
> significant effects on performance, but the fixes will have to become
> part of the design and discussion.
Right, so I'm asking to describe these aspects, so that others could
consider them and possibly additional issues, and provide feedback or
raise concerns about that.
> I think rr (time-travel/reverse debugging with acceptable performance)
> support is important, but I think I'm the only one? It seems to be
> really slow on this branch, though I don't know how fast it is on
> scratch/igc.
Well, reverse debugging currently doesn't work on Windows, so at least
for that platform we cannot rely on that.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-25 17:03 ` Pip Cet via Emacs development discussions.
2024-12-26 5:22 ` Gerd Möllmann
@ 2024-12-26 16:12 ` Stefan Kangas
2024-12-26 17:05 ` Eli Zaretskii
1 sibling, 1 reply; 129+ messages in thread
From: Stefan Kangas @ 2024-12-26 16:12 UTC (permalink / raw)
To: Pip Cet
Cc: Gerd Möllmann, Eli Zaretskii, ofv, emacs-devel, eller.helmut,
acorallo
Pip Cet <pipcet@protonmail.com> writes:
> "Stefan Kangas" <stefankangas@gmail.com> writes:
>
>> Which parts of C11 help us?
>
> stdatomic.h, in this case.
Thanks for the explanation.
> IIRC, C99 doesn't have usable memory barriers, not even for signal
> handler/main thread races such as this one.
>
> Of course almost every compiler that supports C99, and certainly all
> compilers usable for compiling Emacs, provides (or doesn't need, in the
> case of TinyCC) ways of implementing them. In the case of GCC, that
> used to be asm volatile ("" : : : "memory").
I don't think I understand what this means in practice.
Can we use stdatomic.h with C99, or do you propose that we require C11?
FWIW, the Linux kernel has used -std=gnu11 for a few years already, but
their job is probably easier than ours since they only target GCC and
clang.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-26 15:50 ` Stefan Kangas
@ 2024-12-26 16:13 ` Eli Zaretskii
2024-12-26 17:01 ` Pip Cet via Emacs development discussions.
1 sibling, 0 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-26 16:13 UTC (permalink / raw)
To: Stefan Kangas
Cc: gerd.moellmann, pipcet, ofv, emacs-devel, eller.helmut, acorallo
> From: Stefan Kangas <stefankangas@gmail.com>
> Date: Thu, 26 Dec 2024 15:50:38 +0000
> Cc: pipcet@protonmail.com, ofv@wanadoo.es, emacs-devel@gnu.org,
> eller.helmut@gmail.com, acorallo@gnu.org
>
> Eli Zaretskii <eliz@gnu.org> writes:
>
> >> I'm coming to all this from a completely different angle. My
> >> understanding is (1) the signal handling/MPS thing, is the only thing
> >> preventing landing in master
> >
> > That's not so. It is not the only thing we need to figure out and
> > solve before we can consider landing this on master.
>
> Thanks. Should we perhaps make a list of these items somewhere, e.g. in
> README-IGC on the scratch/igc branch?
Feel free to do that, sure.
> > we have unresolved issues with patches to MPS for some platforms,
> > whereby we considered forking MPS or some other course of actions.
>
> Forking MPS is obviously better to avoid, if at all possible.
But if we have patches that we must have there, and if the MPS folks
do not intend to accept them upstream, for some reason, then forking
is the only practical way for us.
> Do we have a complete list of these patches, or can we assemble one now?
They were mentioned in these discussions, so they are in the archives.
I don't have such a list handy, sorry (my builds of the igc branch
uses stock 1.118.0 release of MPS with a couple of patches specific to
32-bit MinGW).
> Are all of these open pull requests to Ravenbrook, so that we are in
> effect only waiting for them, or do we need to more work on our end?
I don't think we submitted the changes to Ravenbrook, with the single
exception of the one Gerd posted there. But I'm not sure my memory is
accurate.
> > Also, there are several FIXMEs in igc.c itself.
>
> Are all of these important enough to be considered as blockers for
> merging to master, or only some of them?
I don't know. Maybe Gerd can answer that.
> If the latter, how about making a list of the ones that are considered
> blockers, or perhaps just marking them as such in the FIXME comment in
> the source code?
Let's first see which of those FIXMEs are important enough to worry
about them.
> > For the MS-Windows build, we have the issue of registering some
> > threads with MPS (see our discussion Re: "MPS: w32 threads" back in
> > May).
>
> In the long run, it is highly desirable to have support for (reasonably
> modern) MS-Windows, of course. There is no doubt about that.
>
> But could you elaborate on why you think this is a blocker for merging
> this to master?
Because that's what I run here. I cannot do my job if Emacs doesn't
compile and work well on MS-Windows.
> My understanding is that, from the point of view of
> GNU, we maintainers can choose to take features even if they only work
> on GNU/Linux. They can then be made to work on other systems later.
It's semi-okay if some optional feature cannot be compiled here, but I
cannot imagine being responsible for the master branch if igc cannot
be compiled or doesn't work well on Windows, because this is a major
feature of Emacs, and any serious bugs in it must be reproducible on
my machine.
> > The "focus!" approach is correct, IMO, but landing the feature on
> > master is only possible if we believe the branch is stable enough,
> > because there are enough people who use master for production to
> > consider its being reasonably stable a necessary requirement.
>
> I agree that more stability and testing is always better.
>
> However, if we have the fundamental issues worked out to such an extent
> that we can demonstrate that the MPS branch is viable, I personally
> don't consider "not enough testing" to be a blocker for merging the
> branch to master. For example, we could put the MPS GC behind a feature
> flag, and mark it as experimental.
I don't see how it makes sense to merge a feature and mark it
experimental. It isn't different from leaving it on a branch, IMO.
> I don't suggest that we should rush to merge or anything like that, but
> let's keep in mind the benefits of merging also: it could help lead to
> faster stabilization, as it will be easier to test than building a
> feature branch. It will also be a clear indicator that we consider the
> basic approach to be viable enough.
If we want faster stabilization, we cannot mark it experimental. We
need to ask people to use it. And for that, it must be stable enough,
because people will not seriously use Emacs if it crashes many times a
day and they lose their edits.
> We will also get more testing of the combined result "for free"
> (i.e. using the old GC even in the presence of the changes needed for
> the new one).
That's much less important, IMO.
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-26 15:50 ` Stefan Kangas
2024-12-26 16:13 ` Eli Zaretskii
@ 2024-12-26 17:01 ` Pip Cet via Emacs development discussions.
1 sibling, 0 replies; 129+ messages in thread
From: Pip Cet via Emacs development discussions. @ 2024-12-26 17:01 UTC (permalink / raw)
To: Stefan Kangas
Cc: Eli Zaretskii, Gerd Möllmann, ofv, emacs-devel, eller.helmut,
acorallo
"Stefan Kangas" <stefankangas@gmail.com> writes:
> Eli Zaretskii <eliz@gnu.org> writes:
>
>>> I'm coming to all this from a completely different angle. My
>>> understanding is (1) the signal handling/MPS thing, is the only thing
>>> preventing landing in master
>>
>> That's not so. It is not the only thing we need to figure out and
>> solve before we can consider landing this on master.
While I think we should keep trying for a while, I still think it's
possible we'll just have to conclude that the current approach is the
best we can do for a quick merge.
It's ugly, but the user-visible problems seem manageable.
1. Delayed signals have to wait for the next explicit check for pending
signals.
On GNU/Linux, we could spawn a helper thread to take the arena lock and
release it again, then send a signal back to the main thread so we can
check for pending signal handlers and run them, assuming we're lucky and
the arena is no longer locked. This exposes quite a few MPS details,
and there's a risk of an unusable Emacs if the helper thread saturates
the CPU. The price we pay is that once a signal is delayed, all further
signals have to go to the ping-pong thread until the main thread
restores the sigmask, which it cannot do in a signal handler.
2. One flag per signal hard-codes the number of signals usable by Emacs.
I don't think this is a blocker.
3. We restore the "original" sigmask, so changing the sigmask from other
parts of Emacs won't work reliably. Neither will any checks for whether
a signal is logically blocked, because delayed signals will be masked
once in a while, causing false positives.
This seems fixable, and should be fixed.
>> we have unresolved issues with patches to MPS for some platforms,
>> whereby we considered forking MPS or some other course of actions.
>
> Forking MPS is obviously better to avoid, if at all possible.
Forking MPS on GNU/Linux x86-64, in particular. I'm not sure how Gerd
feels about macOS.
>> Also, there are several FIXMEs in igc.c itself.
>
> Are all of these important enough to be considered as blockers for
> merging to master, or only some of them?
Very few of them, I think. My impression is most of them are about the
remaining places where we use ambiguous marking unnecessarily, which we
should fix before concluding MPS slows us down too much, but not
necessarily before we merge. (However, we should be very, very clear on
that point: mps works now, but it's almost entirely unoptimized. Code
which relies heavily on GC may be very slow.)
Bytecode stack marking looks like a huge problem in the source code, but
in reality I've never seen a crash because of it. My proposed fix is to
limit the maximum stack depth of bytecode objects we read, which will
turn a pernicious problem into an obvious one.
And, yes, we should be careful and register all threads with MPS. This
will slow down things, but I don't know by how much.
That's all I can remember today, pre-grep. (Which isn't enough for me:
I'd like to take the time to go through the entire diff for this).
> If the latter, how about making a list of the ones that are considered
> blockers, or perhaps just marking them as such in the FIXME comment in
> the source code?
Excellent idea. As some of the FIXMEs will go away when what is
currently scratch/no-purespace is merged, maybe we should do that first.
Pip
^ permalink raw reply [flat|nested] 129+ messages in thread
* Re: Some experience with the igc branch
2024-12-26 16:12 ` Stefan Kangas
@ 2024-12-26 17:05 ` Eli Zaretskii
0 siblings, 0 replies; 129+ messages in thread
From: Eli Zaretskii @ 2024-12-26 17:05 UTC (permalink / raw)
To: Stefan Kangas
Cc: pipcet, gerd.moellmann, ofv, emacs-devel, eller.helmut, acorallo
> From: Stefan Kangas <stefankangas@gmail.com>
> Date: Thu, 26 Dec 2024 16:12:52 +0000
> Cc: Gerd Möllmann <gerd.moellmann@gmail.com>,
> Eli Zaretskii <eliz@gnu.org>, ofv@wanadoo.es, emacs-devel@gnu.org, eller.helmut@gmail.com,
> acorallo@gnu.org
>
> Pip Cet <pipcet@protonmail.com> writes:
>
> > "Stefan Kangas" <stefankangas@gmail.com> writes:
> >
> >> Which parts of C11 help us?
> >
> > stdatomic.h, in this case.
>
> Thanks for the explanation.
>
> > IIRC, C99 doesn't have usable memory barriers, not even for signal
> > handler/main thread races such as this one.
> >
> > Of course almost every compiler that supports C99, and certainly all
> > compilers usable for compiling Emacs, provides (or doesn't need, in the
> > case of TinyCC) ways of implementing them. In the case of GCC, that
> > used to be asm volatile ("" : : : "memory").
>
> I don't think I understand what this means in practice.
>
> Can we use stdatomic.h with C99, or do you propose that we require C11?
We will not require C11. We should see which platforms of those we
care and can use MPS don't have stdatomic.h, and if any do, find
solutions for them. All that assuming we need atomics, which is not
yet established, AFIU.
^ permalink raw reply [flat|nested] 129+ messages in thread
end of thread, other threads:[~2024-12-26 17:05 UTC | newest]
Thread overview: 129+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-22 15:40 Some experience with the igc branch Óscar Fuentes
2024-12-22 17:18 ` Gerd Möllmann
2024-12-22 17:29 ` Gerd Möllmann
2024-12-22 17:41 ` Pip Cet via Emacs development discussions.
2024-12-22 17:56 ` Gerd Möllmann
2024-12-22 19:11 ` Óscar Fuentes
2024-12-23 0:05 ` Pip Cet via Emacs development discussions.
2024-12-23 1:00 ` Óscar Fuentes
2024-12-24 22:34 ` Pip Cet via Emacs development discussions.
2024-12-25 4:25 ` Freezing frame with igc Gerd Möllmann
2024-12-25 11:19 ` Pip Cet via Emacs development discussions.
2024-12-25 11:55 ` Óscar Fuentes
2024-12-23 3:42 ` Some experience with the igc branch Gerd Möllmann
2024-12-23 6:27 ` Jean Louis
2024-12-22 20:29 ` Helmut Eller
2024-12-22 20:50 ` Gerd Möllmann
2024-12-22 22:26 ` Pip Cet via Emacs development discussions.
2024-12-23 3:23 ` Gerd Möllmann
[not found] ` <m234ieddeu.fsf_-_@gmail.com>
[not found] ` <87ttaueqp9.fsf@protonmail.com>
[not found] ` <m2frme921u.fsf@gmail.com>
[not found] ` <87ldw6ejkv.fsf@protonmail.com>
[not found] ` <m2bjx2h8dh.fsf@gmail.com>
2024-12-23 14:45 ` Make Signal handling patch platform-dependent? Pip Cet via Emacs development discussions.
2024-12-23 14:54 ` Gerd Möllmann
2024-12-23 15:11 ` Eli Zaretskii
2024-12-23 13:35 ` Some experience with the igc branch Eli Zaretskii
2024-12-23 14:03 ` Discussion with MPS people Gerd Möllmann
2024-12-23 14:04 ` Gerd Möllmann
2024-12-23 15:07 ` Some experience with the igc branch Pip Cet via Emacs development discussions.
2024-12-23 15:26 ` Gerd Möllmann
2024-12-23 16:03 ` Pip Cet via Emacs development discussions.
2024-12-23 16:44 ` Eli Zaretskii
2024-12-23 17:16 ` Pip Cet via Emacs development discussions.
2024-12-23 18:35 ` Eli Zaretskii
2024-12-23 18:48 ` Gerd Möllmann
2024-12-23 19:25 ` Eli Zaretskii
2024-12-23 20:30 ` Benjamin Riefenstahl
2024-12-23 23:39 ` Pip Cet via Emacs development discussions.
2024-12-24 12:14 ` Eli Zaretskii
2024-12-24 13:18 ` Pip Cet via Emacs development discussions.
2024-12-24 13:42 ` Benjamin Riefenstahl
2024-12-24 3:37 ` Eli Zaretskii
2024-12-24 8:48 ` Benjamin Riefenstahl
2024-12-24 13:52 ` Eli Zaretskii
2024-12-24 13:54 ` Benjamin Riefenstahl
2024-12-23 17:44 ` Gerd Möllmann
2024-12-23 19:00 ` Eli Zaretskii
2024-12-23 19:37 ` Eli Zaretskii
2024-12-23 20:49 ` Gerd Möllmann
2024-12-23 21:43 ` Helmut Eller
2024-12-23 21:49 ` Pip Cet via Emacs development discussions.
2024-12-23 21:58 ` Helmut Eller
2024-12-23 23:20 ` Pip Cet via Emacs development discussions.
2024-12-24 5:38 ` Helmut Eller
2024-12-24 6:27 ` Gerd Möllmann
2024-12-24 10:09 ` Pip Cet via Emacs development discussions.
2024-12-24 4:05 ` Gerd Möllmann
2024-12-24 8:50 ` Gerd Möllmann
2024-12-24 6:03 ` SIGPROF + SIGCHLD and igc Gerd Möllmann
2024-12-24 8:23 ` Helmut Eller
2024-12-24 8:39 ` Gerd Möllmann
2024-12-25 9:22 ` Helmut Eller
2024-12-25 9:43 ` Gerd Möllmann
2024-12-24 13:05 ` Eli Zaretskii
2024-12-25 10:46 ` Helmut Eller
2024-12-25 12:45 ` Eli Zaretskii
2024-12-24 12:54 ` Eli Zaretskii
2024-12-24 12:59 ` Gerd Möllmann
2024-12-23 23:37 ` Some experience with the igc branch Pip Cet via Emacs development discussions.
2024-12-24 4:03 ` Gerd Möllmann
2024-12-24 10:25 ` Pip Cet via Emacs development discussions.
2024-12-24 10:50 ` Gerd Möllmann
2024-12-24 13:15 ` Eli Zaretskii
2024-12-24 12:26 ` Eli Zaretskii
2024-12-24 12:56 ` Gerd Möllmann
2024-12-24 13:19 ` Pip Cet via Emacs development discussions.
2024-12-24 13:38 ` Gerd Möllmann
2024-12-24 13:46 ` Eli Zaretskii
2024-12-24 14:12 ` Gerd Möllmann
2024-12-24 14:40 ` Eli Zaretskii
2024-12-25 4:56 ` Gerd Möllmann
2024-12-25 12:19 ` Eli Zaretskii
2024-12-25 12:50 ` Gerd Möllmann
2024-12-25 13:00 ` Eli Zaretskii
2024-12-25 13:08 ` Gerd Möllmann
2024-12-25 13:26 ` Eli Zaretskii
2024-12-25 14:07 ` Gerd Möllmann
2024-12-25 14:43 ` Helmut Eller
2024-12-25 14:59 ` Eli Zaretskii
2024-12-25 20:44 ` Helmut Eller
2024-12-26 6:29 ` Eli Zaretskii
2024-12-26 8:02 ` Helmut Eller
2024-12-26 9:32 ` Eli Zaretskii
2024-12-26 12:24 ` Helmut Eller
2024-12-26 15:23 ` Eli Zaretskii
2024-12-25 15:02 ` Gerd Möllmann
2024-12-25 13:09 ` Eli Zaretskii
2024-12-25 13:46 ` Gerd Möllmann
2024-12-25 14:37 ` Eli Zaretskii
2024-12-25 14:57 ` Gerd Möllmann
2024-12-25 15:28 ` Eli Zaretskii
2024-12-25 15:49 ` Gerd Möllmann
2024-12-25 17:26 ` Eli Zaretskii
2024-12-26 5:25 ` Gerd Möllmann
2024-12-26 7:43 ` Eli Zaretskii
2024-12-26 7:57 ` Gerd Möllmann
2024-12-26 11:56 ` Eli Zaretskii
2024-12-26 15:27 ` Stefan Kangas
2024-12-25 17:40 ` Pip Cet via Emacs development discussions.
2024-12-25 17:51 ` Eli Zaretskii
2024-12-26 15:24 ` Pip Cet via Emacs development discussions.
2024-12-26 15:57 ` Eli Zaretskii
2024-12-26 5:27 ` Gerd Möllmann
2024-12-26 5:29 ` Gerd Möllmann
2024-12-24 21:18 ` Pip Cet via Emacs development discussions.
2024-12-25 5:23 ` Gerd Möllmann
2024-12-25 10:48 ` Pip Cet via Emacs development discussions.
2024-12-25 13:40 ` Stefan Kangas
2024-12-25 17:03 ` Pip Cet via Emacs development discussions.
2024-12-26 5:22 ` Gerd Möllmann
2024-12-26 7:33 ` Eli Zaretskii
2024-12-26 8:02 ` Gerd Möllmann
2024-12-26 15:50 ` Stefan Kangas
2024-12-26 16:13 ` Eli Zaretskii
2024-12-26 17:01 ` Pip Cet via Emacs development discussions.
2024-12-26 16:12 ` Stefan Kangas
2024-12-26 17:05 ` Eli Zaretskii
2024-12-25 11:48 ` Helmut Eller
2024-12-25 11:58 ` Gerd Möllmann
2024-12-25 12:52 ` Eli Zaretskii
2024-12-25 12:31 ` Eli Zaretskii
2024-12-25 12:54 ` Gerd Möllmann
2024-12-24 12:11 ` Eli Zaretskii
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).