windbg .frame /c
.frame /c FameNumber
1. 代码例子:
2.windbg 调试进程
4. 帧栈
3.查看 帧栈1
4.查看 栈帧2
5. 从中可以看出 .frame /c 执行后 eip显示的是 下一条指令的 地址。 esp 是切换栈帧时的值。
比如3中的栈帧1。eip 是 call WindbgFrame!Frame0 的下一条指令。esp, epb 是马上call WindbgFrame!Frame0前的值。
.frame /c FameNumber
1. 代码例子:
2.windbg 调试进程
4. 帧栈
3.查看 帧栈1
4.查看 栈帧2
5. 从中可以看出 .frame /c 执行后 eip显示的是 下一条指令的 地址。 esp 是切换栈帧时的值。
比如3中的栈帧1。eip 是 call WindbgFrame!Frame0 的下一条指令。esp, epb 是马上call WindbgFrame!Frame0前的值。