如何抵消堆叠?

代码

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 ::
还有一个问题:
以下是什么?

函数main()的汇编代码转储:

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 

相关文章

文件查找(find) 1 find 简单的说,就是实时查找指定的内容或条件。特点:最新、最快、最准确。 用法:...
非交互式添加分区 方法一 添加/deb/sdb 下的分区,其实位置为1到1000M,第二个分区位置为1001至3000M,...
编译安装httpd 1 去官网下载源码包 为避免非法软件,一定要去官网下载http://www.apache.org httpd-2.4...
gdisk用法 gdisk - InteractiveGUIDpartitiontable (GPT) manipulator GPTfdisk (akagdisk) isatext-mo...
1 一定用快捷键 这里简单的说下几个常用的快捷按键。 1.1 移动光标快捷键 Crtl + a 光标回到命令行...
bash shell中测试命令 test命令提供了if-than语句中测试不同条件的途径。如果test命令中列出的条件成立...