From: Andrea Corallo <akrl@sdf.org>
To: Alan Mackenzie <acm@muc.de>
Cc: 58739@debbugs.gnu.org
Subject: bug#58739: Lack of error message about number of args (?native compilation?)
Date: Tue, 25 Oct 2022 20:15:38 +0000 [thread overview]
Message-ID: <xjfpmeffymt.fsf@ma.sdf.org> (raw)
In-Reply-To: <Y1bANREGJSUmEq2d@ACM> (Alan Mackenzie's message of "Mon, 24 Oct 2022 16:41:25 +0000")
Alan Mackenzie <acm@muc.de> writes:
> Hello, Andrea.
>
> On Sun, Oct 23, 2022 at 12:12:49 +0000, Alan Mackenzie wrote:
>> Hello, Emacs.
>
>> Firstly, note that the function desktop-buffer has exactly 12
>> parameters.
>
>> With an up to date Emacs 29:
>
>> (i) emacs -Q
>> (ii) M-x load-library RET desktop RET.
>> (iii) M-x disassemble RET desktop-buffer.
>
>> Note that this is native code.
>
>> (iv) M-: (desktop-buffer 1 2 3 4 5 6 7 8 9 10 11 12 13) RET
>
>> This gives an error message about 4 not being a list. What it ought to
>> do is instead throw an error about the number of arguments. This is a
>> bug.
>
>> (v) M-x load-file RET /path/to/emacs/lisp/desktop.elc.
>> (vi) M-x disassemble RET desktop-buffer.
>
>> Note that we now have byte compiled code.
>
>> (vii) M-: (desktop-buffer 1 2 3 4 5 6 7 8 9 10 11 12 13) RET
>
>> We now get a correct error message about the numbere of arguments.
>
>> As a matter of interest, I noticed this bug while byte-compiling
>> desktop.el inside Emacs. It gave a warning message about the number of
>> parameters to desktop-buffer having changed from 12+ to 12.
>
>> Here, I suspect there's a bug in the native compilation of
>> desktop-buffer.
>
> The problem here is that (func-arity 'desktop-buffer) returns (12 . 12) on a
> byte compiled desktop.elc, but (12 . many) on the corresponding .eln file.
> This (12 . many) must be regarded as a bug, since there are no &rest
> parameters in desktop-buffer.
>
> I propose a minor amendment to the definition of MANY, such that it will
> mean "there are &rest parameters", rather than "the calling convention
> is with nargs + *args". I have implemented this, and my patch is below.
>
> What I want to ask you to check is that in the native compiler, when
> declare_imported_func encounters a function with, say, exactly 12
> arguments, it will throw an error. I think this is actually correct,
> since the compiler cannot know whether this function uses the subr
> calling convention of nargs + *args, or the byte coded convention of
> pushing the 12 arguments individually onto the stack. Is throwing this
> error a good idea?
Hi Alan,
to me this fix looks like a good idea (assuming changing the definition
of MANY is acceptable).
I think also that throwing the error in 'declare_imported_func' is okay
at this point.
Just two small nits (forgive me please :) :
> Thanks!
>
> Here's my proposed patch:
[...]
> }
> + else if (nargs > 8)
> + /* The calling convention for a function with a fixed number of
> + arguments greater than eight is different between a native
^^^
I think this should be aligned with the initial 'The'
> + compiled function and a byte compiled function. Thus we
> + cannot safely compile it with the native compiler. */
> + signal_error ("Imported function has too many arguments safely to compile natively",
I think we should break this string to stay within 78 characters (see CONTRIBUTE).
> + subr_sym);
> else if (!types)
> {
> types = SAFE_ALLOCA (nargs * sizeof (* types));
> diff --git a/src/eval.c b/src/eval.c
> index 8810136c04..495dbb53b5 100644
> --- a/src/eval.c
> +++ b/src/eval.c
> @@ -2433,7 +2433,9 @@ eval_sub (Lisp_Object form)
>
> else if (XSUBR (fun)->max_args == UNEVALLED)
> val = (XSUBR (fun)->function.aUNEVALLED) (args_left);
> - else if (XSUBR (fun)->max_args == MANY)
> + else if (XSUBR (fun)->max_args == MANY
> + || XSUBR (fun)->max_args > 8)
> +
> {
> /* Pass a vector of evaluated arguments. */
> Lisp_Object *vals;
> @@ -2996,7 +2998,8 @@ funcall_subr (struct Lisp_Subr *subr, ptrdiff_t numargs, Lisp_Object *args)
Likewise
> if (numargs >= subr->min_args)
> {
> /* Conforming call to finite-arity subr. */
> - if (numargs <= subr->max_args)
> + if (numargs <= subr->max_args
> + && subr->max_args <= 8)
> {
> Lisp_Object argbuf[8];
> Lisp_Object *a;
> @@ -3032,15 +3035,13 @@ funcall_subr (struct Lisp_Subr *subr, ptrdiff_t numargs, Lisp_Object *args)
Likewise
> return subr->function.a8 (a[0], a[1], a[2], a[3], a[4], a[5],
> a[6], a[7]);
[...]
Thanks for the patch!
Andrea
next prev parent reply other threads:[~2022-10-25 20:15 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-23 12:12 bug#58739: Lack of error message about number of args (?native compilation?) Alan Mackenzie
2022-10-24 16:41 ` Alan Mackenzie
2022-10-25 20:15 ` Andrea Corallo [this message]
2022-10-29 12:04 ` Alan Mackenzie
2022-10-29 12:48 ` Eli Zaretskii
2022-10-29 16:04 ` Alan Mackenzie
2022-10-31 13:15 ` Andrea Corallo
[not found] ` <handler.58739.B.166652719021045.ack@debbugs.gnu.org>
2022-10-29 13:32 ` bug#58739: Fixed Alan Mackenzie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=xjfpmeffymt.fsf@ma.sdf.org \
--to=akrl@sdf.org \
--cc=58739@debbugs.gnu.org \
--cc=acm@muc.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this 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).