如何从目标文件中获取全局变量的初始化值?
如果您有一个目标文件,如何获取该目标文件数据段中全局变量的初始化值?例如,假设我执行了以下操作:
# I'm interested in the variable foo inside bar.o in libbar.a:
$ ar -x libbar.a bar.o
$ nm --print-size bar.o | grep foo
00000048 00000004 D foo
这告诉我 foo
位于大小为 4 的数据段中的偏移量 0x48 处,但是如何获取它在加载时获得的实际初始化值?
If you have an object file, how do you get the initialized value of a global variable in that object file's data segment? For example, say I've done the following:
# I'm interested in the variable foo inside bar.o in libbar.a:
$ ar -x libbar.a bar.o
$ nm --print-size bar.o | grep foo
00000048 00000004 D foo
This tells me that foo
is at offset 0x48 in the data segment with size 4, but how do I obtain the actual initialized value it obtains upon load?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
弄清楚了:
这给出了数据段的十六进制转储,使得查找值变得容易。我之前使用过 objdump -d 来反汇编代码,但是 -s 选项对我来说是新的。
Figured it out:
This gives a hexdump of the data segment, making it easy to look up values. I've used
objdump -d
before to disassemble code, but the-s
option is new to me.