*-气体操作员
谁能解释一下 gnu 汇编器中的 * 的作用吗?示例:
jmp *0x804a004
这是过程链接表(plt)中的一个条目,也许有人可以澄清该指令的作用以及 * 代表什么。
can anyone explain what the * in the gnu assembler does? Example:
jmp *0x804a004
This is an entry in a procedure linkage table (plt), maybe someone can clarify what this instruction does and what the * stands for.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为“*”意味着要调用或跳转的地址是绝对的。如果不指定,“as”将假定操作数是相对于程序计数器的(PC 相对寻址)。
I think the "*" means that the address to call or jmp is absolute. If you don't specify it, "as" will assume that the operand is relative to the program counter (PC relative addressing).