源代码:
1 int func()
2 {
3 int a = 0x12345678;
4 int *p = &a;
5 return *p;
6 }
8 int main()
9 {
10 int b = 0x87654321;
11 return b + func();
12 }
拆卸:
(gdb) disass main
Dump of assembler code for function main():
0x0000000000400544
我的问题是后续行中的0xc如何
"0x000000000040052c
我的理解是:0x12345678对于变量a占用4个字节,对于指针p占用4个字节,其余4个字节用于什么?
谢谢.
编辑:
Linux 2.6.18-194.el5 #1 SMP Tue Mar 16 21:52:39 EDT 2010 x86_64
编辑1 ::
还有一个问题:
以下是什么?
0x0000000000400544
编辑2:
为什么main()需要与16个字节对齐(“sub $0x10,%rsp”)而func不是(0x0c没有对齐,对吧?)?
最佳答案
Linux 2.6.18-194.el5 #1 SMP Tue Mar 16 21:52:39 EDT 2010 x86_64
… followed by 4 bytes for pointer “p” …
您使用的是64位架构,因此指针占用64位= 8个字节:
#include dio.h>
int main() {
int a = 0x12345678;
int *p = &a;
printf("%zu\n",sizeof(p));
printf("%zu\n",sizeof(a));
return 0;
}
$gcc -std=c99 -Wall -pedantic -o sample sample.c
$./sample
8
4
详细的堆栈分析:
当输入func()时,在执行前两条指令后,堆栈看起来像这样(假设每个矩形是4字节的内存):
0x0000000000400528
然后,您将值存储到本地变量中:
0x000000000040052c
然后,您将64位指针存储到p变量中:
0x0000000000400533