3

我想不通为什么我的程序在 ecx 的值等于 0 后退出时会进入无限循环?请帮忙?

section .data
;get external functions
extern printf
global main
main:

;set up stack frame
push rbp
mov rbp, rsp

;if(x<y)
;print x is less
;else
;print y is larger than x

;mov values into register to compare them
mov rax,[x]
mov rbx,[y]
cmp rax,rbx ;cmp x,y
jg .x_is_greater
lea rdi,[y_less]
xor eax,eax ;must clear eax when using printf
call printf
jmp .done

.x_is_greater:
;print "X is greater to the screen"

;mov r11,[count]
;lea rdi,[x_greater]
;xor eax,eax
;call printf
;mov r12,[zero]
;cmp r11,r12
;jg .myloop ;jump to myloop if greater than zero
;jmp .done ;return if equal to 0
mov ecx, 3; [count]
;mov r12, [zero]
jmp .myloop
.myloop:
;;dec r11
;dec rcx
lea rdi,[fmt]
lea rsi,[ecx]   
;mov rdx,[r12]
xor eax,eax ;must clear eax when using printf
call printf

cmp ecx, 0
jz .done
lea rdi,[x_greater]
xor eax,eax ;must clear eax when using printf
call printf
lea rdi,[fmt]
lea rsi,[ecx]   
;mov rdx,[r12]
xor eax,eax ;must clear eax when using printf
call printf
dec ecx

;sub rcx,[one]
jmp .myloop
;jmp .done
.done:
leave
;xor eax, eax
ret;exit program

;leave ;destroy stack frame

section .bss

section .data
prompt db "This is a practice program to test what I know!",0x0a,0
y_less db "Y < X",0x0a,0
x_greater db "X > Y ",0x0a,0
x db 10
y db 1
count dq 3
zero db 0
one dq 1
fmt db "R11 %d ",0x0a,0
4

3 回答 3

5

调用函数(例如printf)时,您需要保留ecx

http://www.x86-64.org/documentation/abi.pdf

寄存器 %rbp、%rbx 和 %r12 到 %r15 “属于”调用函数,并且被调用函数需要保留它们的值。换句话说,被调用函数必须为其调用者保留这些寄存器的值。剩余的寄存器“属于”被调用的函数。如果调用函数想要在函数调用中保留这样的寄存器值,它必须将值保存在其本地堆栈帧中。

于 2012-10-27T05:18:39.080 回答
1

printf调用可能会更改ecx寄存器的值。因此,您必须执行以下操作之一:

  • printf在调用之前将其压入堆栈,pop在 printf 调用之后将其压入堆栈;
  • 使用被调用者保存的寄存器作为循环计数器;或者
  • 将其保存在被调用者保存的寄存器中并恢复它。

第一个选项的示例:

.myloop:
lea rdi,[fmt]
lea rsi,[ecx]
xor eax,eax ;must clear eax when using printf
push ecx ; saved
call printf
pop ecx ; restored

cmp ecx, 0
jz .done
lea rdi,[x_greater]

push ecx ; saved
xor eax,eax ;must clear eax when using printf
call printf
pop ecx ; restored

lea rdi,[fmt]
lea rsi,[ecx]

push ecx ; saved
xor eax,eax ;must clear eax when using printf
call printf
push ecx ; restored

dec ecx
jmp .myloop
于 2012-10-27T05:20:51.203 回答
1

我用 Printf 创建了一个名为 WHILE-DO 的循环,并在 Microsoft Visual Studio 上检查了 Call Printf 使用了 RAX、RCX、RDX、R9、R8。所以我把我们的号码加到了EBX。它无需弹出,推送,堆叠即可工作:)。我希望它会帮助一些人。

extrn ExitProcess: PROC
extrn printf: PROC

.data
fmt db '%s',10,0 ; The printf format, "\n", '0'
check db 'HALO',0

.code
Start PROC

xor eax,eax
mov rbx,1

start_while:
    cmp rbx,10
    jge end_while

    lea rcx,check
    lea rdx,fmt
    call printf


    add rbx,1
    jmp start_while
end_while:
xor eax,eax
xor rbx,rbx
call ExitProcess
Start ENDP
End
于 2016-06-02T23:23:16.103 回答