public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/66598] New: With -O3 gcc incorrectly assumes aligned SSE instructions (e.g. movapd) can be used
@ 2015-06-19 13:25 michael.lehn@uni-ulm.de
  2015-06-20 14:11 ` [Bug c/66598] " mikpelinux at gmail dot com
  2015-06-22 11:04 ` [Bug tree-optimization/66598] " rguenth at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: michael.lehn@uni-ulm.de @ 2015-06-19 13:25 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 66598
           Summary: With -O3 gcc incorrectly assumes aligned SSE
                    instructions (e.g. movapd) can be used
           Product: gcc
           Version: 4.9.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: michael.lehn@uni-ulm.de
  Target Milestone: ---

Compiled with gcc-4.9 and gcc-5.0 and -O3 the following code causes a
"Segmentation fault: 11" on all my Intel machines with SSE:

-----------------------------------
double Q[4*64];
double P[5*64];

int
main()
{
   int i, j;
   double *p = P;
   double *q = Q;

   for (j=0; j<32; ++j) {
       for (i=0; i<4; ++i) {
           q[i] = p[i];
       }
       q += 4;
       p += 5;
   }

   return 0;
}
-----------------------------------

Looking at the assembly code the problem is in

-----------------------------------
L2:
       movapd  16(%rax), %xmm0
       addq    $40, %rax
       addq    $32, %rdx
       movapd  -40(%rax), %xmm1
       movaps  %xmm0, -16(%rdx)
       movaps  %xmm1, -32(%rdx)
       cmpq    %rcx, %rax
       jne     L2
-----------------------------------

So %rax contains the address of p.  But even if p=P is initially alined
correctly on a 16-Byte address P+5 is not.  So movapd must not be used. 
Changing the assembly code manually to

-----------------------------------
L2:
       movupd  16(%rax), %xmm0
       addq    $40, %rax
       addq    $32, %rdx
       movupd  -40(%rax), %xmm1
       movaps  %xmm0, -16(%rdx)
       movaps  %xmm1, -32(%rdx)
       cmpq    %rcx, %rax
       jne     L2
-----------------------------------

fixed the problem.


Cheers,

Michael


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

* [Bug c/66598] With -O3 gcc incorrectly assumes aligned SSE instructions (e.g. movapd) can be used
  2015-06-19 13:25 [Bug c/66598] New: With -O3 gcc incorrectly assumes aligned SSE instructions (e.g. movapd) can be used michael.lehn@uni-ulm.de
@ 2015-06-20 14:11 ` mikpelinux at gmail dot com
  2015-06-22 11:04 ` [Bug tree-optimization/66598] " rguenth at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: mikpelinux at gmail dot com @ 2015-06-20 14:11 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Mikael Pettersson <mikpelinux at gmail dot com> ---
Started with r197189.


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

* [Bug tree-optimization/66598] With -O3 gcc incorrectly assumes aligned SSE instructions (e.g. movapd) can be used
  2015-06-19 13:25 [Bug c/66598] New: With -O3 gcc incorrectly assumes aligned SSE instructions (e.g. movapd) can be used michael.lehn@uni-ulm.de
  2015-06-20 14:11 ` [Bug c/66598] " mikpelinux at gmail dot com
@ 2015-06-22 11:04 ` rguenth at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-06-22 11:04 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2015-06-22
          Component|c                           |tree-optimization
           Assignee|unassigned at gcc dot gnu.org      |rguenth at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
I believe I fixed this on trunk for PR66510.  Confirmed with GCC 5 though.
GCC 6 now generates

.L2:
        movupd  16(%rax), %xmm0
        addq    $40, %rax
        addq    $32, %rdx
        movupd  -40(%rax), %xmm1
        movaps  %xmm0, -16(%rdx)
        movaps  %xmm1, -32(%rdx)
        cmpq    $P+1240, %rax
        jne     .L2
        movupd  P+1256(%rip), %xmm0
        xorl    %eax, %eax
        movupd  P+1240(%rip), %xmm1
        movaps  %xmm0, Q+1008(%rip)
        movaps  %xmm1, Q+992(%rip)
        ret

might be a bit hard to backport the changes though.

Mine nevertheless.


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

end of thread, other threads:[~2015-06-22 11:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-19 13:25 [Bug c/66598] New: With -O3 gcc incorrectly assumes aligned SSE instructions (e.g. movapd) can be used michael.lehn@uni-ulm.de
2015-06-20 14:11 ` [Bug c/66598] " mikpelinux at gmail dot com
2015-06-22 11:04 ` [Bug tree-optimization/66598] " rguenth 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).