查找机器代码中的位置(gcc/objdump -d)
如果您想要在机器输出中检查特定的 C 代码行,您将如何在 objdump 输出中找到它。 这是一个示例
if (cond)
foo;
bar();
,我想看看 bar 是否按照我的意愿内联。 或者你会使用一些替代工具来代替 objdump 吗?
If you have a particular line of C code in mind to examine in the machine output, how would you locate it in objdump output. Here is an example
if (cond)
foo;
bar();
and I want to see if bar was inlined as I'd like.
Or would you use some alternative tool instead of objdump?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用
-S
选项启动 objdump(例如"objdump -Sd a.out"
)。 如果编译代码的源文件可用,它将显示与汇编代码混合的源代码。或者,您可以使用以下方式:
成为
You can start objdump using the
-S
option (like"objdump -Sd a.out"
). It will display the sourcecode intermixxed with the assembler code, if the source-files the code was compiled from are available.Alternatively, you can use the following way:
becomes
如果使用调试符号进行编译,调试器还应该让您看到源代码和匹配的程序集。 这是 gcc 选项 -g 和 gdb disass 命令。
You debugger should also let you see source code and matching assembly if you compiled with debug symbols. This is gcc option -g and gdb disass command.
如果使用 gcc 编译,可以使用 -S 直接生成汇编文件。 该文件通常包含一些有用的信息,包括函数名称,有时还包括代码的行号(取决于您使用的编译选项)。
If you're compiling with gcc, you can use -S to generate an assembly file directly. This file usually has some useful information in it, including function names and sometimes line numbers for code (depending on the compile options you use).
函数调用由公共函数序言在汇编中检测到。
对于 i386,它
与 amd64/x86_64 类似(只是四元前缀
48
):因此,当您在
objdump -S bla.o
中检测到这一点时或者
主函数的
gcc bla.c -g -fsave-temps -fverbose-asm
输出对于 bar 来说,bar 也不是内联的。 当 main 有调用或跳转时
禁止它没有内联。
在您的情况下,您可以查看 bar 是否有本地变量,它需要空间
本地堆栈。 如果 bar 内联,则堆栈调整(例如
sub $0x8,%esp
)在主序言之后完成,main 可以访问该变量。
如果不是的话,它是酒吧私有的。
Function calls are detected in the assembly by the common function prolog.
With i386 it is
with amd64/x86_64 is is similar (just the quad prefix
48
):So when you detect that inside your
objdump -S bla.o
or
gcc bla.c -g -fsave-temps -fverbose-asm
output of your main functionand for bar also, bar is not inlined. Also when main has a call or jump
to bar it is not inlined.
In your case you could see if bar has local vars, which needs room on
the local stack. If bar is inlined the stack adjust (e.g.
sub $0x8,%esp
)is done right after the main prolog, main could access that var.
If not it is private to bar.