public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/49001] New: GCC uses VMOVAPS/PD AVX instructions to access stack variables that are not 32-byte aligned
@ 2011-05-14 21:01 npozar at quick dot cz
  2011-05-14 20:48 ` [Bug target/49001] " npozar at quick dot cz
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: npozar at quick dot cz @ 2011-05-14 21:01 UTC (permalink / raw)
  To: gcc-bugs

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

           Summary: GCC uses VMOVAPS/PD AVX instructions to access stack
                    variables that are not 32-byte aligned
           Product: gcc
           Version: 4.6.1
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: target
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: npozar@quick.cz


I'm using a custom mingw64 build of GCC 4.6.1. My target is Windows 64bit. I
compile with g++ -03 -march=corei7-avx -mtune=corei7-avx -mavx.

GCC uses aligned moves VMOVAPS/PD from the new AVX instruction set to access
local variables of type __m256/__m256d on the stack. But the stack pointer is
only 16byte aligned on Win64, so this causes a segmentation fault error when
the stack pointer is not 32byte aligned, as in:

__m256 dummy_ps256;
void test_stackalign32() {
    __m256 x = dummy_ps256;
    dummy_ps256 = sin256_ps_avx(x);
}

which compiles to 

    vmovaps    dummy_ps256(%rip), %ymm0
    leaq    32(%rsp), %rdx
    vmovaps    %ymm0, 32(%rsp)  // possible SEGFAULT
    leaq    64(%rsp), %rcx
    vzeroupper
    call    _Z13sin256_ps_avxDv8_f
    vmovaps    64(%rsp), %ymm0  // possible SEGFAULT

I couldn't figure out how to realign a stack with -mstackrealign.


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

end of thread, other threads:[~2024-02-19 17:00 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-14 21:01 [Bug target/49001] New: GCC uses VMOVAPS/PD AVX instructions to access stack variables that are not 32-byte aligned npozar at quick dot cz
2011-05-14 20:48 ` [Bug target/49001] " npozar at quick dot cz
2011-05-15 21:27 ` ubizjak at gmail dot com
2011-05-15 22:26 ` hjl.tools at gmail dot com
2011-05-16  7:22 ` npozar at quick dot cz
2014-09-03 21:18 ` roland at rschulz dot eu
2021-08-22 18:35 ` arthur200126 at gmail dot com
2021-08-22 18:39 ` arthur200126 at gmail dot com
2021-12-21 12:35 ` thiago at kde dot org
2024-02-19 17:00 ` pinskia 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).