2

C版:

int arith(int x, int y, int z)
{
    int t1 = x+y;
    int t2 = z*48;
    int t3 = t1 & 0xFFFF;
    int t4 = t2 * t3;
    return t4;
}

同一程序的 ATT 汇编版本:

x 在 %ebp+8,y 在 %ebp+12,z 在 %ebp+16

movl   16(ebp), %eax    
leal   (%eax, %eax, 2), %eax   
sall   $4, %eax      // t2 = z* 48... This is where I get confused
movl   12(%ebp), %edx   
addl   8(%ebp), %edx
andl   $65535, %edx
imull  %edx, %eax

除了左移之外,我了解它在程序的所有点上所做的一切。

我假设它会向左移动 4 次。这是为什么?

谢谢!

编辑:我也明白我感到困惑的部分等同于 C 版本的 z*48 部分。

我不明白的是如何向左移动 4 次等于 z*48。

4

1 回答 1

1

你错过了这leal (%eax, %eax, 2), %eax条线。应用一些数学,汇编代码如下:

一个:= x
a := a + 2*a // a = 3*x
a := a * 2^4 // a = x * 3*16
于 2013-02-16T22:31:06.107 回答