gpt4 book ai didi

assembly - 在gdb中找不到.bss节中定义的变量名

转载 作者:行者123 更新时间:2023-12-02 19:19:48 26 4
gpt4 key购买 nike

我正在尝试一个简单的汇编代码:

.section .data
output:
.ascii "The processor Vendor ID is 'xxxxxxxxxxxx'\n"
.section .bss
.lcomm buffer, 12
.section .text
.code32
.globl _start
_start:
movl $0, %eax
cpuid
movl $output, %edi

在.bss部分我定义了一个名为“buffer”的变量

当我尝试在 gdb 中获取其地址/值时,它只会打印:

(gdb) p $buffer$1 = void

使用objdump,我发现该名称不在ELF文件中,那么在运行as和ld时如何保留这些名称信息?谢谢!

最佳答案

Using objdump, I found the name is not in ELF file

我可以在带有 GNU binutils 2.28.0-3 的 Arch Linux 上工作。也许您在链接后剥离了二进制文件?

$ gcc -Wall -m32 -nostdlib gas-symbols.S
$ file a.out
a.out: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), statically linked, BuildID[sha1]=d5fdff41cc52e9de3b4cdae34cf4129de2b4a69f, not stripped

$ nm a.out
080490ee B __bss_start
080490f0 b buffer ### local symbol in the bss
080490ee D _edata
080490fc B _end
080490c4 d output
080480b8 T _start

我不需要 -g 来保留可执行文件中的符号。而且,在我的系统上,-static-nostdlib 的默认设置。情况并非总是如此,请参阅 this Q&A关于使用 gcc 或直接使用 asld 将 asm 源代码构建为 32 位或 64 位静态或动态二进制文件。或者使用 NASM 和 ld

(请注意,.code32 不会更改目标文件格式。您需要使用构建选项,因此最好省略 .code32 因此,如果您尝试将 32 位代码构建到 64 位目标文件中,则更有可能出现错误(例如,来自 push %ebx)。)

直接使用 asld (gcc 在后台执行此操作,使用 gcc -v 来查看如何),我也得到了相同的结果。

$ as gas-symbols.S -o gas-symbols.o  --32 && 
ld -o a.out gas-symbols.o -m elf_i386
$ nm a.out
...
080490b0 b buffer ## Still there
...
<小时/>

在 GDB 中,正如 Jester 指出的那样,打印地址而不是值。 GDB 不知道它是一个数组,因为您没有使用任何指令来创建调试信息。 (我不建议尝试手动编写此类指令。例如,查看 gcc -Sstatic char foo[100]; 发出的内容(在一个文件中) .)

无论如何,如果你使用得当,GDB 就能工作:

$ gdb ./a.out
(gdb) b _start
(gdb) r
Starting program: /home/peter/src/SO/a.out

Breakpoint 1, _start () at gas-symbols.S:10
(gdb) p buffer
$1 = 0
(gdb) p &buffer
$2 = (<data variable, no debug info> *) 0x80490f0 <buffer>
(gdb) ptype buffer
type = <data variable, no debug info>

您可以通过强制转换或使用 x 命令来解决缺少类型信息的问题:

(gdb) p (char[12])buffer
$4 = '\000' <repeats 11 times>
(gdb) p /x (char[12])buffer
$5 = {0x0 <repeats 12 times>}
(gdb) x /4w &buffer # eXamine the memory as 4 "words" (32-bit).
0x80490f0 <buffer>: 0x00000000 0x00000000 0x00000000 0x00000000
(gdb) help x # read this to learn about options for dumping memory

为了调试 asm,我在 ~/.gdbinit 中有这个:

set disassembly-flavor intel
layout reg
set print static-members off

但是由于您使用 AT&T 语法编写,因此您可能不想要 intel 风格的反汇编。不过,layout asm/layout reg 非常棒。另请参阅 末尾的调试提示标签维基。标签 wiki 充满了文档和指南的链接。

关于assembly - 在gdb中找不到.bss节中定义的变量名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44842310/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com