GNU bug report logs - #76180
[feature/igc] Remaining known tracing issues

Previous Next

Package: emacs;

Reported by: Pip Cet <pipcet <at> protonmail.com>

Date: Mon, 10 Feb 2025 15:17:02 UTC

Severity: normal

Full log


Message #23 received at 76180 <at> debbugs.gnu.org (full text, mbox):

From: Pip Cet <pipcet <at> protonmail.com>
To: Stefan Kangas <stefankangas <at> gmail.com>
Cc: eggert <at> cs.ucla.edu, 76180 <at> debbugs.gnu.org, mattiase <at> acm.org,
 gerd.moellmann <at> gmail.com, eliz <at> gnu.org, acorallo <at> gnu.org
Subject: Re: bug#76180: [feature/igc] Remaining known tracing issues
Date: Tue, 11 Feb 2025 20:27:23 +0000
Pip Cet <pipcet <at> protonmail.com> writes:

> diff --git a/src/lread.c b/src/lread.c
> index e8cd689d794..67c1bbe5f7b 100644
> --- a/src/lread.c
> +++ b/src/lread.c
> @@ -3483,6 +3483,11 @@ bytecode_from_rev_list (Lisp_Object elems, Lisp_Object readcharfun)
>  	            || NILP (vec[CLOSURE_CONSTANTS]))))))
>      invalid_syntax ("Invalid byte-code object", readcharfun);
>  
> +#ifdef HAVE_MPS
> +  if (XFIXNAT (vec[CLOSURE_STACK_DEPTH]) >= 1022)
> +    error ("Byte-code object uses too much stack, increase HORRIBLE_ESTIMATE!");
> +#endif
> +
>    if (STRINGP (vec[CLOSURE_CODE]))
>      {
>        if (STRING_MULTIBYTE (vec[CLOSURE_CODE]))
> -- 
> 2.48.1

Sorry, this hunk wasn't the one I meant to send.  This one needs to be
applied after it:

diff --git a/src/lread.c b/src/lread.c
index a638b6eec8e..ae312874574 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -3576,7 +3576,7 @@ bytecode_from_rev_list (Lisp_Object elems, Lisp_Object readcharfun)
     invalid_syntax ("Invalid byte-code object", readcharfun);
 
 #ifdef HAVE_MPS
-  if (XFIXNAT (vec[CLOSURE_STACK_DEPTH]) >= 1022)
+  if (size > CLOSURE_STACK_DEPTH && XFIXNAT (vec[CLOSURE_STACK_DEPTH]) >= 1022)
     error ("Byte-code object uses too much stack, increase HORRIBLE_ESTIMATE!");
 #endif
 

to fix the obvious problem :-)





This bug report was last modified 175 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.