public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/100955] New: varargs causes extra stores to/from stack
@ 2021-06-08  0:50 pinskia at gcc dot gnu.org
  2023-03-23 18:57 ` [Bug target/100955] " xry111 at gcc dot gnu.org
  2023-03-24 12:18 ` jakub at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-06-08  0:50 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100955

            Bug ID: 100955
           Summary: varargs causes extra stores to/from stack
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Keywords: missed-optimization
          Severity: enhancement
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pinskia at gcc dot gnu.org
  Target Milestone: ---
            Target: aarch64-linux-gnu

Take:
#include <stdarg.h>
int vfprintf1 (const char *, va_list);
int
__fprintf1 (const char *format, ...)
{
  va_list arg;
  int done;

  va_start (arg, format);
  done = vfprintf1 (format, arg);
  va_end (arg);

  return done;
}
---- CUT ---
Currently at -O2 we produce:
        stp     x29, x30, [sp, -272]!
        mov     w9, -56
        mov     w8, -128
        mov     x29, sp
        add     x10, sp, 208
        add     x11, sp, 272
        stp     x11, x11, [sp, 48]
        str     x10, [sp, 64]
        stp     w9, w8, [sp, 72]
        str     q0, [sp, 80]
        ldp     q0, q16, [sp, 48]
        str     q1, [sp, 96]
        str     q2, [sp, 112]
        stp     q0, q16, [sp, 16]
        str     q3, [sp, 128]
        str     q4, [sp, 144]
        str     q5, [sp, 160]
        str     q6, [sp, 176]
        str     q7, [sp, 192]
        stp     x1, x2, [sp, 216]
        add     x1, sp, 16
        stp     x3, x4, [sp, 232]
        stp     x5, x6, [sp, 248]
        str     x7, [sp, 264]
        bl      vfprintf1

Notice how we store to arg (va_list) and then do a copy of arg (va_list) to
pass to the vfprintf1.
This is due to
__builtin_va_start (&arg, 0);

If we had arg = __builtin_va_start_internal(); and expanded that instead, there
would be no needed.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Bug target/100955] varargs causes extra stores to/from stack
  2021-06-08  0:50 [Bug target/100955] New: varargs causes extra stores to/from stack pinskia at gcc dot gnu.org
@ 2023-03-23 18:57 ` xry111 at gcc dot gnu.org
  2023-03-24 12:18 ` jakub at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: xry111 at gcc dot gnu.org @ 2023-03-23 18:57 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100955

Xi Ruoyao <xry111 at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2023-03-23
            Version|12.0                        |13.0

--- Comment #1 from Xi Ruoyao <xry111 at gcc dot gnu.org> ---
This is happening on many ports (see https://godbolt.org/z/n1YqWq9c9) and it
seems not trivial to fix.  stdarg pass already checks if the va_list escapes,
and if not we should avoid saving the register onto the stack if possible.  But
currently there seems no way to take this opportunity in target code
(TARGET_SETUP_INCOMING_VARARGS mandates a store on stack and disallows to use
registers instead of stack).

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Bug target/100955] varargs causes extra stores to/from stack
  2021-06-08  0:50 [Bug target/100955] New: varargs causes extra stores to/from stack pinskia at gcc dot gnu.org
  2023-03-23 18:57 ` [Bug target/100955] " xry111 at gcc dot gnu.org
@ 2023-03-24 12:18 ` jakub at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: jakub at gcc dot gnu.org @ 2023-03-24 12:18 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100955

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
There is no reason not to lower __builtin_va_start (&arg, 0) to arg = .VA_START
();
for the problematic cases of __builtin_va_list being a struct and add support
for expanding both __builtin_va_start (&arg, 0) and arg = .VA_START () using
some helper code.  We already similarly transform __builtin_va_start (&arg, 0)
to arg = __builtin_next_arg (0) if __builtin_va_list is a pointer (e.g. ia32). 
And for the x86_64 style __builtin_va_list
where it is struct [1] we already emit the optimal code.
I'm surprised aarch64 uses a struct rather than struct [1], that must be
terribly inefficient even if you simply pass down va_list through several
functions.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-03-24 12:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-08  0:50 [Bug target/100955] New: varargs causes extra stores to/from stack pinskia at gcc dot gnu.org
2023-03-23 18:57 ` [Bug target/100955] " xry111 at gcc dot gnu.org
2023-03-24 12:18 ` jakub at gcc dot gnu.org

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).