【发布时间】:2016-08-28 20:28:14
【问题描述】:
我有一个具有以下汇编代码的函数 string_length
0x08048e90 <+0>: push %ebp
0x08048e91 <+1>: mov %esp,%ebp
0x08048e93 <+3>: mov 0x8(%ebp),%edx // assign whatever I declared into edx
0x08048e96 <+6>: mov $0x0,%eax // assign eax = 0
0x08048e9b <+11>: cmpb $0x0,(%edx) // compare edx to byte of 0 (null..?)
0x08048e9e <+14>: je 0x8048ea9 <string_length+25> // if equal, jump to +25
0x08048ea0 <+16>: add $0x1,%eax // else, add 1 to eax
0x08048ea3 <+19>: cmpb $0x0,(%edx,%eax,1) // compare byte 1*eax+edx with 0,
0x08048ea7 <+23>: jne 0x8048ea0 <string_length+16> // if not equal, back to +16
0x08048ea9 <+25>: pop %ebp // pop ebp
0x08048eaa <+26>: ret
由于函数名是string_length,我假设它会返回字符串中有多少个字符。
我很困惑的是
cmpb $0x0,(%edx)
这是比较指向 edx 的任何内容与 0 的字节,而 ASCII 中的 0 为空..?
和
cmpb $0x0,(%edx,%eax,1)
以字节为单位比较 1*eax+edx。如果edx是一个字符串,是不是意味着edx会先转换成它的ascii值再进行计算?
【问题讨论】:
标签: assembly