Displaying 2 results from an estimated 2 matches for "02183e07".
Did you mean:
02080e07
2012 Mar 01
0
[LLVMdev] Stack alignment on X86 AVX seems incorrect
...e determining factor in
my implementation.
That is, unless you know something that I don't. I'm pretty new to compiler
development. :)
-Cameron
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120301/02183e07/attachment.html>
2012 Mar 01
4
[LLVMdev] Stack alignment on X86 AVX seems incorrect
On Thu, Mar 1, 2012 at 4:29 PM, Evandro Menezes <emenezes at codeaurora.org>wrote:
...
> Aligning the stack to 32 bytes when there are auto AVX vector variables
> present shouldn't necessarily break the x86-64 ABI, as long as smaller auto
> variables remain properly aligned. A similar approach was taken for i386
> in GCC in order to support SSE vectors.
>
> Perhaps