15

我应该如何在汇编中编写这样的if语句?

if ((a == b AND a > c) OR c == b) { ...

平台:Intel 32 位机器,NASM 语法。

更新

对于变量类型和值,使用更容易理解的。我猜整数对我来说很好用。

4

2 回答 2

24

在通用汇编中,它基本上是这样的(ain axbin bxcin cx):

    cmp  bx, cx
    jeq  istrue
    cmp  ax, cx
    jle  isfalse
    cmp  ax, bx
    jeq  istrue
isfalse:
    ; do false bit
    jmp  nextinstr
istrue:
    ; do true bit

nextinstr:
    ; carry on

如果没有错误位,则可以简化为:

    cmp  bx, cx
    jeq  istrue
    cmp  ax, bx
    jne  nextinstr
    cmp  ax, cx
    jle  nextinstr
istrue:
    ; do true bit

nextinstr:
    ; carry on
于 2013-01-12T11:40:17.350 回答
11

您需要将 if 语句分解为一系列比较和跳转。就像在 C 中你可以这样写:

int test = 0;

if (a == b) {
  if (a > c) {
    test = 1;
  }
}

// assuming lazy evaluation of or:
if (!test) {
  if (c == b) {
    test = 1;
  }
}

if (test) {
  // whole condition checked out
}

这会将复杂的表达式分解为您的 asm 将同样执行的组成部分,尽管您可以通过跳转到仍然相关的部分来更清晰地在 asm 中编写它。

假设 a、b 和 c 正在堆栈上传递给您(如果它们显然没有从其他地方加载它们)

        mov     eax, DWORD PTR [ebp+8] 
        cmp     eax, DWORD PTR [ebp+12] ; a == b?
        jne     .SECOND                 ; if it's not then no point trying a > c 
        mov     eax, DWORD PTR [ebp+8]
        cmp     eax, DWORD PTR [ebp+16] ; a > c?
        jg      .BODY                   ; if it is then it's sufficient to pass the
.SECOND:
        mov     eax, DWORD PTR [ebp+16]
        cmp     eax, DWORD PTR [ebp+12] ; second part of condition: c == b?
        jne     .SKIP
.BODY:
        ; .... do stuff here
        jmp     .DONE
.SKIP:
        ; this is your else if you have one
.DONE:
于 2013-01-12T11:41:53.763 回答