标签: x86 intel gas
This is from x86 disassebly with objdump.
What does this instruction mean? How will the call address be calculated?
call *0x1bc(%eax)
In particular, what does asterisk mean here? Does it simply mean %eax + 0x1bc ?
答案 0 :(得分:2)
是。 具有立即数或寄存器操作数的分支地址以星号为前缀。
来自this page:
使用寄存器或存储器操作数的分支寻址必须以' *'为前缀。