Cmp指令不匹配

时间:2015-05-03 18:29:55

标签: c assembly x86 att

我必须在汇编中编写一个函数来完成以下c代码。

int main(){

int hist[26]={0};
int i;

charHistogram("This is a string", hist);

for (i=0; i<26; i++ )
printf("%c:%d ", i+’a’, hist[i] );
printf("\n");
}

return 0;
}

这是我写的汇编代码:

_charHistogram:

push %ebp
movl %esp,%ebp
subl $0x10,%esp
movl $0x0,-0x4(%ebp) 
movl $0x41,-0x8(%ebp)

condFor1:

movl  -0x4(%ebp),%edx
movl  0X8(%ebp),%eax
cmp  (%eax,%edx,1), $0
je  exit

condFor2:

cmpl $0x5a,-0x8(%ebp)
jg   condFor1

if1:

movl -0x8(%ebp), %ecx
cmp (%eax,%edx,1), %ecx
jne if2 
subl $0x41,%ecx
movl 0xc(%ebp), %ebx
add $0x1, (%ebx,%ecx,4)
add 0x20,%ecx
inc %ecx
inc %edx
jmp condFor1

if2:

add 0x20,%ecx
cmp (%eax,%edx,2), %ecx
jne condFor1
subl $0x41,ecx
movl 0xc(%ebp), %ebx
add $0x1, (%ebx,%ecx,4)
add 0x20,%ecx
inc %ecx
inc %edx
jmp condFor1

exit:

leave
ret

基本上,用汇编语言编写的函数必须计算给定字符串上字母的出现次数,并将其存储在int数组 hist 中。所以我认为它可以将每个char值与其ascii值进行比较,从65到90以及从97到122.但是当我开始编译程序集时,它会一直得到错误&#34;操作数大小不匹配&#39; cmp& #39;&#34;对于指令cmp (%eax,%edx,1), $0。 你能救我一下吗?

1 个答案:

答案 0 :(得分:2)

cmp  (%eax,%edx,1), $0

你需要反转操作数。

cmp  $0, (%eax,%edx,1)

您是否注意到您编写了无限循环? 您使用movl $0x0,-0x4(%ebp)设置了一个变量,但是您忘记在整个代码中更改其值!

由于您的输入字符串是ASCIIZ,您不应该与CL进行比较而不是与ECX进行比较吗?