I currently have a tricky bug that occurs in a place where I don't have access to source or symbols, i.e. I can see the instruction and its address where the crash occurs, but that's about it. What I'd like to do is have gdb
run without requiring interaction and display every instruction as it does so, but I've yet to find a way to do it.
What I'm hoping to achieve is something like this:
(gdb) /* some command */
0x2818a7c0: push %ebp
0x2818a7c1: mov %esp,%ebp
0x2818a7c3: push %ebx
0x2818a7c4: sub $0x4,%esp
...
0x28563622: mov %esi,0x0(%eax)
Program received signal SIGSEGV, Segmentation fault.
What I've been doing is setting up a display for the program counter, like so:
(gdb) display/i $pc
And then running through the code with stepi
:
(gdb) stepi
1: x/i $pc 0x2818a7c0: push %ebp
However, the crash is hundreds or thousands of instructions away, and I'd like a way to see each one (together, if preferable), without having to hit "enter" that many times. Also, if I were to do it manually, I'd see a (gdb)
prompt between each instruction, which is less than desirable.
One route I've briefly looked into is scripting, but my only thought is to setup at main()
, have it display and another break (for the next instruction), and then continue, but then I can't use commands
within a commands
block, so it wouldn't work the way I'm imagining it.
In case it matters, I'm working on FreeBSD.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…