我正在macOS 10.14上学习汇编语言,我的汇编程序nasm的版本是2.14.02,链接程序ld的版本是ld64-409.12,调试器lldb的版本是lldb-1000.11.38.2。
我有一个名为test.asm
的源代码文件,并且我使用
nasm -f macho64 -F dwarf -g test.asm
ld -e _start -o test test.o -lSystem
然后我使用lldb进行调试:
lldb test
当我想在某些行上设置断点时:
(lldb)b test.asm:3
事实证明:
error: parsing line table prologue at 0x00000000 (parsing ended around 0x00000006
Breakpoint 1: no locations (pending).
WARNING: Unable to resolve breakpoint to any actual locations.
我用
nm -pa test
检查调试信息,结果是:
0000000000000000 - 00 0000 SO xxxx(the directory)
0000000000000000 - 00 0000 SO test.asm
000000005c70cdfd - 03 0001 OSO xxxx/test.o
0000000000001f88 - 01 0000 BNSYM
0000000000001f88 - 01 0000 FUN _start
0000000000000078 - 00 0000 FUN
0000000000000078 - 01 0000 ENSYM
0000000000002000 - 02 0000 STSYM query_string
0000000000002014 - 02 0000 STSYM out_string
0000000000002025 - 03 0000 STSYM in_char
0000000000000000 - 01 0000 SO
0000000000002000 d query_string
0000000000002014 d out_string
0000000000000011 a out_string_len
0000000000000014 a query_string_len
0000000000002025 b in_char
0000000000001000 T __mh_execute_header
0000000000001f88 T _start
U dyld_stub_binder
如果我使用
dsymutil -dump-debug-map test
事实证明
---
triple: 'x86_64-apple-darwin'
binary-path: test
objects:
- filename: xxxx/test.o
timestamp: 1550896637
symbols:
- { sym: in_char, objAddr: 0x000000000000009D, binAddr: 0x0000000000002025, size: 0x00000000 }
- { sym: query_string, objAddr: 0x0000000000000078, binAddr: 0x0000000000002000, size: 0x00000000 }
- { sym: _start, objAddr: 0x0000000000000000, binAddr: 0x0000000000001F88, size: 0x00000078 }
- { sym: out_string, objAddr: 0x000000000000008C, binAddr: 0x0000000000002014, size: 0x00000000 }
...
如果我使用dsymutil
来打包调试信息,例如:
dsymutil test
然后再次尝试lldb test
,结果是:
warning: (x86_64) xxxx/test empty dSYM file detected, dSYM was created with an executable with no debug info.
答案 0 :(得分:0)
最后,我锻炼了。 LLDB支持GAS使用AT&T语法用源代码汇编的程序。而且,如果您真的想在macOS上使用intel语法调试带有源代码的NASM汇编程序,则只需使用GDB。