我有这样的场景:
int open_ext2 () {}
int close_ext2 () {}
int read_ext2 () {}
int write_ext2 () {}
const struct fs_callbacks FS = {
open_file: open_ext2,
close_file: close_ext2,
read_bytes: read_ext2,
write_bytes: write_ext2
};
void main(){
FS.close_file();
}
当我看瘸子表示(用-fdump-tree-all
编译)我看到这样的东西:
D.1796 = close_ext2;
D.1796 ();
我没有得到的是作业发生在哪里open_file: open_ext2
我的问题
- 海湾合作委员会是如何做到这一点的?
- 它发生在什么通行证中?
- 有没有办法找出映射标签 -> 成员函数?
找到答案
gcc 选项-fdump-tree-original-raw
转储信息
使用 GCC 插件:
- 使用通票PLUGIN_FINISH_DECL
- 在 GCC 源代码中查看文件中
debug_variable
的函数:gcc/tree-dfa.c