Why does the Mac ABI require 16-byte stack alignment for x86-32? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T09:22:34Zhttp://stackoverflow.com/feeds/question/612443http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/612443/why-does-the-mac-abi-require-16-byte-stack-alignment-for-x86-329Why does the Mac ABI require 16-byte stack alignment for x86-32?Allen Bauer2009-03-04T21:12:41Z2009-05-22T19:34:55Z
<p>I can understand this requirement for the old PPC RISC systems and even for x86-64, but for the old tried-and-true x86? In this case, the stack needs to be aligned on 4 byte boundaries only. Yes, some of the MMX/SSE instructions require 16byte alignments, but if that is a requirement of the callee, then it should ensure the alignments are correct. Why burden <strong>every</strong> caller with this extra requirement? This can actually cause some drops in performance because every call-site must manage this requirement. Am I missing something?</p>
<p><strong>Update:</strong> After some more investigation into this and some consultation with some internal colleagues, I have some theories about this:</p>
<ol>
<li>Consistency between the PPC, x86, and x64 version of the OS</li>
<li>It seems that the GCC codegen now consistently does a sub esp,xxx and then "mov"s the data onto the stack rather than simply doing a "push" instruction. This could actually be faster on some hardware.</li>
<li>While this does complicate the call sites a little, there is very little extra overhead when using the default "cdecl" convention where the caller cleans up the stack.</li>
</ol>
<p>The issue I have with the last item, is that for calling conventions that rely on the callee cleaning the stack, the above requirements <strong>really</strong> "uglifies" the codegen. For instance, what some compiler decided to implement a faster register-based calling style for its own internal use (ie any code that isn't intended to be called from other languages or sources)? This stack-alignment thing could negate some of the performance gains achieved by passing some parameters in registers.</p>
<p><strong>Update:</strong> So far the only real answers have been consistency, but to me that's a bit too easy of an answer. I have well over 20 years experience with the x86 architecture and if consistency, not performance, or something else concrete, is really the reason then I respectfully suggest that is a bit naive for the developers to require it. They're ignoring nearly three decades of tools and support. Especially if they're expecting tools vendors to quickly and easily adapt their tools for their platform (maybe not... it <strong>is</strong> Apple...) without having to jump through several seemingly unnecessary hoops.</p>
<p>I'll give this topic another day or so then close it...</p>
http://stackoverflow.com/questions/612443/why-does-the-mac-abi-require-16-byte-stack-alignment-for-x86-32/621081#6210811Answer by Andrew Grant for Why does the Mac ABI require 16-byte stack alignment for x86-32?Andrew Grant2009-03-07T01:12:44Z2009-03-07T01:12:44Z<p>I believe it's to keep it inline with the x86-64 ABI.</p>
http://stackoverflow.com/questions/612443/why-does-the-mac-abi-require-16-byte-stack-alignment-for-x86-32/621826#6218260Answer by PixelSmack for Why does the Mac ABI require 16-byte stack alignment for x86-32?PixelSmack2009-03-07T13:13:10Z2009-03-07T13:13:10Z<p>In order to maintain consistancy in kernel - this allows the same kernel to be booted on multiple archetectures without modicfication</p>
http://stackoverflow.com/questions/612443/why-does-the-mac-abi-require-16-byte-stack-alignment-for-x86-32/832624#8326241Answer by David Cournapeau for Why does the Mac ABI require 16-byte stack alignment for x86-32?David Cournapeau2009-05-07T02:26:29Z2009-05-07T02:26:29Z<p>I am not sure as I don't have first hand proof, but I believe the reason is SSE. SSE is much faster if your buffers are already aligned on a 16 bytes boundary (movps vs movups), and any x86 has at least sse2 for mac os x. It can be taken care of by the application user, but the cost is pretty significant. If the overall cost for making it mandatory in the ABI is not too significant, it may worth it. SSE is used quite pervasively in mac os X: accelerate framework, etc...</p>
http://stackoverflow.com/questions/612443/why-does-the-mac-abi-require-16-byte-stack-alignment-for-x86-32/898680#8986800Answer by Marco van de Voort for Why does the Mac ABI require 16-byte stack alignment for x86-32?Marco van de Voort2009-05-22T16:12:05Z2009-05-22T19:34:55Z<p>Hmm, didn't OS X ABI also do funny RISC like things like passing small structs in registers?</p>
<p>So that points to the consistency with other platforms theory.</p>
<p>Come to think of it, the FreeBSD syscall api also aligns 64-bit values. (like e.g. lseek and mmap)</p>
http://stackoverflow.com/questions/612443/why-does-the-mac-abi-require-16-byte-stack-alignment-for-x86-32/898760#8987603Answer by rob mayoff for Why does the Mac ABI require 16-byte stack alignment for x86-32?rob mayoff2009-05-22T16:28:30Z2009-05-22T16:28:30Z<p>From "Intel®64 and IA-32 Architectures Optimization Reference Manual", section 4.4.2:</p>
<p>"For best performance, the Streaming SIMD Extensions and Streaming SIMD Extensions 2 require their memory operands to be aligned to 16-byte boundaries. Unaligned data can cause significant performance penalties compared to aligned data."</p>
<p>From Appendix D:</p>
<p>"It is important to ensure that the stack frame is aligned to a 16-byte boundary upon function entry to keep local __m128 data, parameters, and XMM register spill locations aligned throughout a function invocation."</p>
<p><a href="http://www.intel.com/Assets/PDF/manual/248966.pdf" rel="nofollow">http://www.intel.com/Assets/PDF/manual/248966.pdf</a></p>
http://stackoverflow.com/questions/612443/why-does-the-mac-abi-require-16-byte-stack-alignment-for-x86-32/898914#8989140Answer by PhiS for Why does the Mac ABI require 16-byte stack alignment for x86-32?PhiS2009-05-22T17:07:45Z2009-05-22T17:07:45Z<p>While I cannot really answer your question of WHY, you may find the manuals at the following site useful:</p>
<p><a href="http://www.agner.org/optimize/" rel="nofollow">http://www.agner.org/optimize/</a></p>
<p>Regarding the ABI, have a look especially at:</p>
<p><a href="http://www.agner.org/optimize/calling_conventions.pdf" rel="nofollow">http://www.agner.org/optimize/calling_conventions.pdf</a></p>
<p>Hope that's useful.</p>