X86架构32位和64位的STACK FRAME结构差异比较
理解过程来自以下URL:http://eli.thegreenplace.net/2011/02/04/where-the-top-of-the-stack-is-on-x86/和另一个地址,忘了。。。C代码:int foobar(int a, int b, int c){ int xx = a + 2; int yy = b + 3; int zz = c + ...