如果没有 CMP,JE 指令如何工作?
.L10:
leal (%rsi,%rsi,4), %edx
movsbl %al,%eax
addq $1, %rdi
leal -48(%rax,%rdx,2), %esi
je .L3
上面的 je
前面没有 cmp
。这里是如何运作的?
.L10:
leal (%rsi,%rsi,4), %edx
movsbl %al,%eax
addq $1, %rdi
leal -48(%rax,%rdx,2), %esi
je .L3
In the above there's no cmp
preceding je
. How does it work here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
je
将跳转为ZF = 1
。add
修改ZF
。lea
、movsb
不影响任何标志。保留 Intel 64 和 IA32 架构开发人员手册在手。您可以在 手册第 2 卷
je
will jump isZF = 1
.add
modifies theZF
.lea
,movsb
does not affect any flags.Keep the Intel 64 and IA32 Architecture Developer's Manual in hand. You can find all the instruction details of Intel 64 and IA32 architecture in the manual Volume 2
如果 EFLAGS 寄存器中设置了 ZF 标志,则
je
跳转。 ZF 标志的值由之前修改它的操作(例如cmp
)设置。由于
lea
和movsbl
都不会修改 ZF 标志,但add
会修改(比较 英特尔开发人员手册,3-36),当$1 + %rdi
为零时,je
跳转到.L3
。je
jumps if the ZF flag is set in the EFLAGS register. The value of the ZF flag is set by the previous (for examplecmp
) operation that modified it.Since neither
lea
normovsbl
modify the ZF flag, butadd
does (compare Intel Developer's Manual, 3-36),je
jumps to.L3
iff$1 + %rdi
is zero.前面的指令设置处理器状态标志。每个条件跳转都会检查某个标志,即使
cmp
未执行。我相信如果设置了零标志,je
就会执行。The preceding instruction sets a processor status flag. Each conditional jump checks a certain flag, even if a
cmp
was not executed. I believeje
executes if the zero flag is set.