3. 第二个汇编程序

例 18.2. 求一组数的最大值的汇编程序

  1. #PURPOSE: This program finds the maximum number of a
  2. # set of data items.
  3. #
  4. #VARIABLES: The registers have the following uses:
  5. #
  6. # %edi - Holds the index of the data item being examined
  7. # %ebx - Largest data item found
  8. # %eax - Current data item
  9. #
  10. # The following memory locations are used:
  11. #
  12. # data_items - contains the item data. A 0 is used
  13. # to terminate the data
  14. #
  15. .section .data
  16. data_items: #These are the data items
  17. .long 3,67,34,222,45,75,54,34,44,33,22,11,66,0
  18.  
  19. .section .text
  20. .globl _start
  21. _start:
  22. movl $0, %edi # move 0 into the index register
  23. movl data_items(,%edi,4), %eax # load the first byte of data
  24. movl %eax, %ebx # since this is the first item, %eax is
  25. # the biggest
  26.  
  27. start_loop: # start loop
  28. cmpl $0, %eax # check to see if we've hit the end
  29. je loop_exit
  30. incl %edi # load next value
  31. movl data_items(,%edi,4), %eax
  32. cmpl %ebx, %eax # compare values
  33. jle start_loop # jump to loop beginning if the new
  34. # one isn't bigger
  35. movl %eax, %ebx # move the value as the largest
  36. jmp start_loop # jump to loop beginning
  37.  
  38. loop_exit:
  39. # %ebx is the status code for the _exit system call
  40. # and it already has the maximum number
  41. movl $1, %eax #1 is the _exit() syscall
  42. int $0x80

汇编、链接、运行:

  1. $ as max.s -o max.o
  2. $ ld max.o -o max
  3. $ ./max
  4. $ echo $?

这个程序在一组数中找到一个最大的数,并把它作为程序的退出状态。这组数在.data段给出:

  1. data_items:
  2. .long 3,67,34,222,45,75,54,34,44,33,22,11,66,0

.long指示声明一组数,每个数占32位,相当于C语言中的数组。这个数组开头定义了一个符号data_items,汇编器会把数组的首地址作为data_items符号所代表的地址,data_items类似于C语言中的数组名。data_items这个标号没有用.globl声明,因为它只在这个汇编程序内部使用,链接器不需要用到这个名字。除了.long之外,常用的数据声明还有:

  • .byte,也是声明一组数,每个数占8位

  • .ascii,例如.ascii "Hello world",声明11个数,取值为相应字符的ASCII码。注意,和C语言不同,这样声明的字符串末尾是没有'\0'字符的,如果需要以'\0'结尾可以声明为.ascii "Hello world\0"

data_items数组的最后一个数是0,我们在一个循环中依次比较每个数,碰到0的时候让循环终止。在这个循环中:

  • edi寄存器保存数组中的当前位置,每次比较完一个数就把edi的值加1,指向数组中的下一个数。

  • ebx寄存器保存到目前为止找到的最大值,如果发现有更大的数就更新ebx的值。

  • eax寄存器保存当前要比较的数,每次更新edi之后,就把下一个数读到eax中。

  1. _start:
  2. movl $0, %edi

初始化edi,指向数组的第0个元素。

  1. movl data_items(,%edi,4), %eax

这条指令把数组的第0个元素传送到eax寄存器中。data_items是数组的首地址,edi的值是数组的下标,4表示数组的每个元素占4字节,那么数组中第edi个元素的地址应该是data_items + edi * 4,写在指令中就是data_items(,%edi,4),这种地址表示方式在下一节还会详细解释。

  1. movl %eax, %ebx

ebx的初始值也是数组的第0个元素。下面我们进入一个循环,循环的开头定义一个符号start_loop,循环的末尾之后定义一个符号loop_exit

  1. start_loop:
  2. cmpl $0, %eax
  3. je loop_exit

比较eax的值是不是0,如果是0就说明到达数组末尾了,就要跳出循环。cmpl指令将两个操作数相减,但计算结果并不保存,只是根据计算结果改变eflags寄存器中的标志位。如果两个操作数相等,则计算结果为0,eflags中的ZF位置1。je是一个条件跳转指令,它检查eflags中的ZF位,ZF位为1则发生跳转,ZF位为0则不跳转,继续执行下一条指令。可见比较指令和条件跳转指令是配合使用的,前者改变标志位,后者根据标志位决定是否跳转。je可以理解成“jump if equal”,如果参与比较的两数相等则跳转。

  1. incl %edi
  2. movl data_items(,%edi,4), %eax

edi的值加1,把数组中的下一个数传送到eax寄存器中。

  1. cmpl %ebx, %eax
  2. jle start_loop

把当前数组元素eax和目前为止找到的最大值ebx做比较,如果前者小于等于后者,则最大值没有变,跳转到循环开头比较下一个数,否则继续执行下一条指令。jle表示“jump if less than or equal”。

  1. movl %eax, %ebx
  2. jmp start_loop

更新了最大值ebx然后跳转到循环开头比较下一个数。jmp是一个无条件跳转指令,什么条件也不判断,直接跳转。loop_exit符号后面的指令调_exit系统调用退出程序。