gpt4 book ai didi

linux - 没有采取条件跳转

转载 作者:太空狗 更新时间:2023-10-29 11:12:16 24 4
gpt4 key购买 nike

我从汇编(x86、linux)开始,只是为了好玩。这是我的第一个小程序,它只检查我是否通过命令行传递了一个参数,如果没有,它会打印一条消息,然后退出:

section .text
global _start

_start:
pop ebx ;argc
dec ebx
test ebx,1
jne print_string
exit:
mov ebx,0
mov eax,0
int 0x80

print_string:
mov edx,len
mov ecx,msg
mov ebx,1
mov eax,4
int 0x80
call exit

section .data
msg db "Ok, no arg was passed",0xa
len equ $ - msg

上面的代码有两个问题:

  1. jne 未被占用。我用 gdb 检查了 ebxdec 之后等于 0x00,但是 EFLAGS 没有被 test 指令改变。
  2. exit 系统调用不退出!因此,我没有退出,而是在无限循环中打印了我的消息,因为 print_string 正在调用 exit 并且在 exit 之后 print_string 一遍又一遍。

这里发生了什么?也欢迎关于代码的任何其他建议。谢谢。

最佳答案

test 指令在不改变寄存器操作数的情况下执行按位and
test ebx,1 执行:flags = (ebx and 1)。或者 ZF = IsEven(ebx)

如果你想测试是否 ebx = 1 你需要使用 cmp
cmp 在不改变寄存器操作数的情况下执行减法。

cmp ebx,1 执行flags = ebx - 1ZF = (ebx = 1)

系统调用退出
exit() 的参数有误。

正确的代码是:

exit:
mov ebx,0
mov eax,1 <<--
int 0x80

关于linux - 没有采取条件跳转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46014774/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com