Tagged Questions

22
votes
10answers
3k views

Why does the Mac ABI require 16-byte stack alignment for x86-32?

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 ...
5
votes
1answer
109 views

In the Win64 ABI, can the reserved argument stack space be used for general purpose storage?

I'm learning x64 assembly on Windows for 'fun'. The MSDN documentation for the x64 calling convention on Windows says: The caller is responsible for allocating space for parameters to the callee, ...
1
vote
1answer
121 views

Getting confuse with ABI calling convention and arch

I am getting confuse with all those terms: ABI, calling convention, and hardware architecture. The ABI is link with the architecture: x86-64 have a different ABI than the i386. But then you can also ...