jmp指令asterisk%eax

问题描述 投票:2回答:1

在Google Native Client的论文中,作者将nacljmp定义为以下两条指令:

and    %eax, 0xffffffe0 // Clears the 5 least significant bits in %eax.
jmp    *%eax

首先,我可以看到他们清除5个最低有效位,使指令在跳转到之前进行32位对齐。但是,在%eax之前,星号是什么意思?我已经搜索了许多关于x86程序集的教程而没有太多运气。

assembly x86 att
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.