汇编中的复杂IF语句

时间:2013-01-12 11:27:51

标签: assembly x86 conditional-statements

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

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

平台:英特尔32位机器,NASM语法。

更新

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

2 个答案:

答案 0 :(得分:20)

在通用程序集中,它基本上是这样的(a中的axb中的bxc中的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

答案 1 :(得分:10)

您需要将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: