使用gdb跳到下一个“指令”
我试图找出这个金丝雀值的设置和检查机制。
#include int main(void) { return printf("Hi!n"); }
拆卸主体时,我会得到
(gdb) disas main 0x080483f4 : lea 0x4(%esp),%ecx 0x080483f8 : and $0xfffffff0,%esp 0x080483fb : pushl -0x4(%ecx) 0x080483fe : push %ebp 0x080483ff : mov %esp,%ebp 0x08048401 : push %ecx 0x08048402 : sub $0x14,%esp 0x08048405 : mov %gs:0x14,%eax 0x0804840b : mov %eax,-0x8(%ebp) 0x0804840e : xor %eax,%eax 0x08048410 : movl $0x8048500,(%esp) 0x08048417 : call 0x8048320 0x0804841c : mov -0x8(%ebp),%edx 0x0804841f : xor %gs:0x14,%edx 0x08048426 : je 0x804842d 0x08048428 : call 0x8048330 0x0804842d : add $0x14,%esp 0x08048430 : pop %ecx 0x08048431 : pop %ebp 0x08048432 : lea -0x4(%ecx),%esp 0x08048435 : ret
我使用0x0804840e设置断点
b *0x0804840e
程序流停在这个断点后,我希望gdb
转到下一条指令,而不是下一行c代码 。 我不认为我可以用next
本。 那么除了在每条指令上设置断点之外,还有什么其他选项?
你想用stepi
。 它通过一个机器指令来执行。
查看ftp://ftp.gnu.org/pub/old-gnu/Manuals/gdb/html_node/gdb_37.html了解更多信息
链接地址: http://www.djcxy.com/p/67091.html