如果没有 CMP,JE 指令如何工作?

发布于 2024-12-01 15:58:48 字数 210 浏览 0 评论 0原文

.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

时光沙漏 2024-12-08 15:58:48
  • je 将跳转为 ZF = 1
  • add 修改 ZF
  • leamovsb 不影响任何标志。

保留 Intel 64 和 IA32 架构开发人员手册在手。您可以在 手册第 2 卷

  • je will jump is ZF = 1.
  • add modifies the ZF.
  • 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

云之铃。 2024-12-08 15:58:48

如果 EFLAGS 寄存器中设置了 ZF 标志,则 je 跳转。 ZF 标志的值由之前修改它的操作(例如 cmp)设置。

由于 leamovsbl 都不会修改 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 example cmp) operation that modified it.

Since neither lea nor movsbl modify the ZF flag, but add does (compare Intel Developer's Manual, 3-36), je jumps to .L3 iff $1 + %rdi is zero.

猫九 2024-12-08 15:58:48

前面的指令设置处理器状态标志。每个条件跳转都会检查某个标志,即使 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 believe je executes if the zero flag is set.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文