在调试应用程序时,有一点我想知道 r2 寄存器中值的含义。是否可以使用 gdb 查看在触发断点之前寄存器 r2 的值最后更改的指令是哪条指令?如果这不可能,有没有办法查看pc是从哪个地址跳转到当前地址的?
谢谢
Best Answer-推荐答案 strong>
Is it possible, using gdb, to see at which instruction was the value of register r2 last changed before my breakpoint was struck?
没有。
If that is impossible, is there a way to see from which address did the pc jump to the current one?
有些处理器允许这样做,但(我相信)ARM 不是其中之一,所以不,这也不可能。
关于ios - gdb - 最后一个寄存器值更改的地址?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/22582228/
|