Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为一个项目调试一些代码,但我遇到了这一行cmpl $0x7,0xc(%rsp)。什么是 0xc(%rsp),如何打印?
cmpl $0x7,0xc(%rsp)
什么是 0xc(%rsp)
当前堆栈指针上方 12 个字节的内存位置。该位置的值正在与 进行比较7。
7
以及如何打印?
(gdb) print $rsp+0xc