public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "hjl.tools at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/48607] New: Inefficient complex float parameter passing
Date: Thu, 14 Apr 2011 12:51:00 -0000	[thread overview]
Message-ID: <bug-48607-4@http.gcc.gnu.org/bugzilla/> (raw)

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48607

           Summary: Inefficient complex float parameter passing
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: hjl.tools@gmail.com
                CC: ubizjak@gmail.com


[hjl@gnu-6 pr1000]$ cat z.i 
typedef _Complex float SCtype;
SCtype
foo (SCtype x1, SCtype x2, SCtype x3, SCtype x4, SCtype x5, SCtype x6,
     SCtype x7, SCtype x8, SCtype a, SCtype b)
{
  return x2;
}
[hjl@gnu-6 pr1000]$ /usr/gcc-4.7/bin/gcc -O2 -S z.i
[hjl@gnu-6 pr1000]$ cat z.s
    .file    "z.i"
    .text
    .p2align 4,,15
    .globl    foo
    .type    foo, @function
foo:
.LFB0:
    .cfi_startproc
    movq    %xmm1, -16(%rsp)
    movl    -16(%rsp), %eax
    movl    %eax, -72(%rsp)
    movl    -12(%rsp), %eax
    movl    %eax, -68(%rsp)
    movq    -72(%rsp), %xmm0
    ret
    .cfi_endproc
.LFE0:
    .size    foo, .-foo
    .ident    "GCC: (GNU) 4.7.0 20110406 (experimental) [trunk revision
172062]"
    .section    .note.GNU-stack,"",@progbits
[hjl@gnu-6 pr1000]$ 

We should simply do

movaps    %xmm1, %xmm0  

or

movq   %xmm1,%xmm0


             reply	other threads:[~2011-04-14 12:51 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-14 12:51 hjl.tools at gmail dot com [this message]
2011-04-14 12:58 ` [Bug target/48607] " rguenth at gcc dot gnu.org
2021-08-02 18:06 ` pinskia at gcc dot gnu.org

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-48607-4@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /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.
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).