GNU bug report logs -
#41357
28.0.50; GC may miss to mark calle safe register content
Previous Next
Reported by: Andrea Corallo <akrl <at> sdf.org>
Date: Sun, 17 May 2020 12:43:02 UTC
Severity: normal
Found in version 28.0.50
Done: Paul Eggert <eggert <at> cs.ucla.edu>
Bug is archived. No further changes may be made.
Full log
Message #50 received at submit <at> debbugs.gnu.org (full text, mbox):
Eli Zaretskii <eliz <at> gnu.org> writes:
>> From: Andrea Corallo <akrl <at> sdf.org>
>> Cc: bug-gnu-emacs <at> gnu.org, eggert <at> cs.ucla.edu
>> Date: Sun, 17 May 2020 17:45:28 +0000
>>
>> Lisp_Object
>> foo (void)
>> {
>> /* 'res' goes in a callee saved reg */
>> Lisp_Object res = build_string ("bar");
>> [...]
>> /* LTO inline the following as "flush_stack_call_func (mark_threads_callback, NULL);" */
>> mark_threads ();
>> [...]
>> gc_sweep ();
>>
>> /* The string pointed by 'res' was garbage collected. */
>> return res;
>> }
>
> But mark_threads etc. (GC in general) isn't called from functions like
> your 'foo. It is more like this:
>
> Lisp_Object
> foo (void)
> {
> /* 'res' goes in a callee saved reg */
> Lisp_Object res = build_string ("bar");
> [...]
> call_something ();
> [...]
>
> }
>
> call_something (void)
> {
> [...]
> garbage_collect ();
> [...]
> }
Yes, my example was minimal your is certanly more realistic.
But also this can be critical. We have to hope that in 'call_something'
or 'garbage_collect' there is sufficient register pressure to have the
register that is holding 'res' to be pushed.
Andrea
--
akrl <at> sdf.org
This bug report was last modified 5 years and 75 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.