本文介绍了否定地址在汇编中是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
0xffffffff8100b9e4: callq *-0x7ec55ec0(,%rax,8)
*-0x7ec55ec0
在这里是什么意思?
推荐答案
在这种情况下,-0x7ec55ec0
只是编写0xffffffff813aa140
(换句话说,-0x7ec55ec0 + 0x10000000000000000
)的一种较短的方法.
In this context, -0x7ec55ec0
is just a shorter way to write 0xffffffff813aa140
(in other words, -0x7ec55ec0 + 0x10000000000000000
).
大概在该地址有一个跳转表,由rax
索引.
Presumably, there's a jump table at that address, indexed by rax
.
如果有帮助,英特尔汇编语法中的相同指令是:
If it's any help, the same instruction in Intel assembly syntax is:
call qword ptr [0xffffffff813aa140 + rax*8]
这篇关于否定地址在汇编中是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!