diff mbox series

[testsuite] Test case for PR rtl-optimization/60473

Message ID 000901d668ea$4e2371b0$ea6a5510$@nextmovesoftware.com
State New
Headers show
Series [testsuite] Test case for PR rtl-optimization/60473 | expand

Commit Message

Roger Sayle Aug. 2, 2020, 4:30 p.m. UTC
PR rtl-optimization/60473 was a code quality regression that has

been cured by improvements to register allocation.  For the function

in the test case, GCC 4.4, 4.5 and 4.6 generated very poor code

requiring two mov instructions:

 

foo:    rdtsc

        mov     rcx, rax

        mov     rax, rdx

        sal     rax, 32

        or      rax, rcx

        ret

 

GCC 4.7 and 4.8 (when the PR was filed) produced better but

still poor code with one mov instruction:

 

foo:    rtdsc

        sal     rdx, 32

        or      rdx, rax

        mov     rax, rdx

        ret

 

Since GCC 4.9 (including current mainline), it generates optimal

code with no mov instructions, matching what used to be generated

in GCC 4.1.

 

foo:    rdtsc

        sal     rdx, 32

        or      rax, rdx

        ret

 

This test case, which has been tested on x86_64-pc-linux-gnu,

simply checks that we don't regress again in future.

Ok for mainline?

 

 

2020-08-02  Roger Sayle  <roger@nextmovesoftware.com>

 

gcc/testsuite/ChangeLog

PR rtl-optimization/60473

* gcc.target/i386/pr60473.c: New test.

 

Thanks in advance,

Roger

--

Roger Sayle

NextMove Software

Cambridge, UK

Comments

Richard Biener Aug. 3, 2020, 9:19 a.m. UTC | #1
On Sun, Aug 2, 2020 at 6:31 PM Roger Sayle <roger@nextmovesoftware.com> wrote:
>
>
>
> PR rtl-optimization/60473 was a code quality regression that has
>
> been cured by improvements to register allocation.  For the function
>
> in the test case, GCC 4.4, 4.5 and 4.6 generated very poor code
>
> requiring two mov instructions:
>
>
>
> foo:    rdtsc
>
>         mov     rcx, rax
>
>         mov     rax, rdx
>
>         sal     rax, 32
>
>         or      rax, rcx
>
>         ret
>
>
>
> GCC 4.7 and 4.8 (when the PR was filed) produced better but
>
> still poor code with one mov instruction:
>
>
>
> foo:    rtdsc
>
>         sal     rdx, 32
>
>         or      rdx, rax
>
>         mov     rax, rdx
>
>         ret
>
>
>
> Since GCC 4.9 (including current mainline), it generates optimal
>
> code with no mov instructions, matching what used to be generated
>
> in GCC 4.1.
>
>
>
> foo:    rdtsc
>
>         sal     rdx, 32
>
>         or      rax, rdx
>
>         ret
>
>
>
> This test case, which has been tested on x86_64-pc-linux-gnu,
>
> simply checks that we don't regress again in future.
>
> Ok for mainline?

I think you need to restrict this to lp64, at least it fails for me with -m32.
It also passes with -mx32 but not sure how the perfect target selector
would look like.

Otherwise looks OK.

Richard.

>
>
>
>
> 2020-08-02  Roger Sayle  <roger@nextmovesoftware.com>
>
>
>
> gcc/testsuite/ChangeLog
>
> PR rtl-optimization/60473
>
> * gcc.target/i386/pr60473.c: New test.
>
>
>
> Thanks in advance,
>
> Roger
>
> --
>
> Roger Sayle
>
> NextMove Software
>
> Cambridge, UK
>
>
>
H.J. Lu Aug. 3, 2020, 11:28 a.m. UTC | #2
On Mon, Aug 3, 2020 at 2:20 AM Richard Biener via Gcc-patches
<gcc-patches@gcc.gnu.org> wrote:
>
> On Sun, Aug 2, 2020 at 6:31 PM Roger Sayle <roger@nextmovesoftware.com> wrote:
> >
> >
> >
> > PR rtl-optimization/60473 was a code quality regression that has
> >
> > been cured by improvements to register allocation.  For the function
> >
> > in the test case, GCC 4.4, 4.5 and 4.6 generated very poor code
> >
> > requiring two mov instructions:
> >
> >
> >
> > foo:    rdtsc
> >
> >         mov     rcx, rax
> >
> >         mov     rax, rdx
> >
> >         sal     rax, 32
> >
> >         or      rax, rcx
> >
> >         ret
> >
> >
> >
> > GCC 4.7 and 4.8 (when the PR was filed) produced better but
> >
> > still poor code with one mov instruction:
> >
> >
> >
> > foo:    rtdsc
> >
> >         sal     rdx, 32
> >
> >         or      rdx, rax
> >
> >         mov     rax, rdx
> >
> >         ret
> >
> >
> >
> > Since GCC 4.9 (including current mainline), it generates optimal
> >
> > code with no mov instructions, matching what used to be generated
> >
> > in GCC 4.1.
> >
> >
> >
> > foo:    rdtsc
> >
> >         sal     rdx, 32
> >
> >         or      rax, rdx
> >
> >         ret
> >
> >
> >
> > This test case, which has been tested on x86_64-pc-linux-gnu,
> >
> > simply checks that we don't regress again in future.
> >
> > Ok for mainline?
>
> I think you need to restrict this to lp64, at least it fails for me with -m32.
> It also passes with -mx32 but not sure how the perfect target selector
> would look like.

/* { dg-do compile { target { ! ia32 } } } */

> Otherwise looks OK.
>
> Richard.
>
diff mbox series

Patch

diff --git a/gcc/testsuite/gcc.target/i386/pr60473.c b/gcc/testsuite/gcc.target/i386/pr60473.c
new file mode 100644
index 0000000..6d24ddb
--- /dev/null
+++ b/gcc/testsuite/gcc.target/i386/pr60473.c
@@ -0,0 +1,12 @@ 
+/* PR rtl-optimization/60473  */
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+
+unsigned long long foo()
+{
+  unsigned long long h,l;
+  asm volatile ("rdtsc": "=a" (l), "=d" (h));
+  return l | (h << 32);
+}
+
+/* { dg-final { scan-assembler-not "mov" } } */