我正在尝试从 DWARF 信息中获取有关调用约定的信息。更具体地说,我想获取哪些寄存器/堆栈位置用于将参数传递给函数。我的问题是,在某些情况下,我从 DWARF 转储中得到了某种错误的信息。我正在使用的示例是以下“C 代码”:
int __attribute__ ((fastcall)) __attribute__ ((noinline)) mult (int x, int y) {
return x*y;
}
我使用以下命令编译此示例:
gcc -c -g -m32 test.c -o test.o
现在,当我使用以下命令获取 dwarf 转储时:
dwarfdump test.o
我收到有关此功能的以下信息:
< 2><0x00000042> DW_TAG_formal_parameter
DW_AT_name "x"
DW_AT_decl_file 0x00000001 /home/khaled/Repo_current/trunk/test.c
DW_AT_decl_line 0x00000001
DW_AT_type <0x0000005b>
DW_AT_location DW_OP_fbreg -12
< 2><0x0000004e> DW_TAG_formal_parameter
DW_AT_name "y"
DW_AT_decl_file 0x00000001 /home/khaled/Repo_current/trunk/test.c
DW_AT_decl_line 0x00000001
DW_AT_type <0x0000005b>
DW_AT_location DW_OP_fbreg -16
查看 DW_AT_location 条目,它与框架基础有一些偏移。这意味着它们是内存参数,但实际调用约定“fastcall”强制将它们传递到寄存器中。通过查看生成的目标文件的反汇编,我可以看到它们从寄存器复制到函数入口点的堆栈位置。有没有办法从 dwarf 转储中知道 - 或使用任何其他方式 - 最初在调用时传递参数的位置?
谢谢,