What does an asterisk * before an address mean in x86-64 AT&T assembly?

前端 未结 7 1415
故里飘歌
故里飘歌 2020-12-15 17:11

What does the following line mean:

...
401147: ff 24 c5 80 26 40 00    jmpq   *0x402680(,%rax,8)
...

What does the asterisk in front of the

7条回答
  •  Happy的楠姐
    2020-12-15 17:22

    Actually this is computed table jmp, where the 0x402680 is address of tabele and rax is index of 8 byte (qword) pointer.

提交回复
热议问题