抱歉我的英语不好。
我的工作流程:
我为gnu asm(GAS)test_c.s写了一个简单的程序:
.intel_syntax noprefix
.globl my_string
.data
my_string:
.ascii "Hello, world!\0"
.text
.globl main
main:
push rbp
mov rbp, rsp
sub rsp, 32
lea rcx, my_string
call printf
add rsp, 32
pop rbp
ret
使用调试符号编译asm-source:
gcc -g test_c.s
在GDB中调试a.exe:
gdb a -q
Reading symbols from C:\a.exe...done.
(gdb) start
Temporary breakpoint 1 at 0x4014e4: file test_c.s, line 14.
Starting program: C:\a.exe
[New Thread 3948.0x45e4]
Temporary breakpoint 1, main () at test_c.s:14
14 sub rsp, 32
(gdb) whatis my_string
type = <data variable, no debug info> <-------------------- why?
(gdb) info variables
All defined variables:
...
Non-debugging symbols:
0x0000000000403000 __data_start__
0x0000000000403000 __mingw_winmain_nShowCmd
0x0000000000403010 my_string <-------------------- why?
....
为什么&#39; my_string&#39;是没有调试信息&#39; - 变量? 我怎么才能认出来,那是'my_string&#39;是用户定义的变量?一些gcc-flags或gas-directives?
P.S。:上面列出的文件test_c.s由gcc从简单的c应用程序test_c.c生成:
#include<stdio.h>
char my_string[] = "Hello, world!";
int main(void)
{
printf(my_string);
}
gcc test_c.c -S -masm=intel
我尝试调试这个C-application并得到预期的结果:
gcc -g test_c.c
gdb a -q
Reading symbols from C:\a.exe...done.
(gdb) start
Temporary breakpoint 1 at 0x4014ed: file test_c.c, line 7.
Starting program: C:\a.exe
[New Thread 11616.0x1688]
Temporary breakpoint 1, main () at test_c.c:7
7 printf(my_string);
(gdb) whatis my_string
type = char [18] <-------------------- OK
(gdb) info variables
...
File test_c.c:
char my_string[18]; <-------------------- OK
...
问题是我需要与GAS源相关的调试信息,而不是C
P.S.S。:MinGW-builds x64 v.4.8.1
答案 0 :(得分:0)
原因很简单:您应该从启用了调试的c文件生成asm文件,即gcc test_c.c -S -masm=intel -g
,以使编译器发出所需信息。如果你这样做,你会注意到你的asm源中有一个名为.debug_info
的部分,遗憾的是,该部分不是用户友好的。