- 论坛徽章:
- 0
|
64*8 = 2^6*2^3 = 2^(6+3) = 2^9 = 2^(10-1) = 1024/2 = 512
结果证明,你得到的不是 3 个 8 相乘
- #include <stdio.h>
- void
- r1()
- {
- int i = 5, a;
- a = (++i) * (++i) * (++i);
- printf("%d", a);
- }
- void
- r2()
- {
- int i = 5;
- printf("%d", (++i) * (++i) * (++i));
- }
- int
- main(int argc, char **argv)
- {
- r1();
- printf("\n");
- r2();
- printf("\n");
- return 0;
- }
复制代码
汇编的结果:
_r1:
pushl %ebp
movl %esp,%ebp
subl $8,%esp
movl $5,-4(%ebp)
incl -4(%ebp)
incl -4(%ebp)
movl -4(%ebp),%eax
imull -4(%ebp),%eax
incl -4(%ebp)
movl %eax,%edx
imull -4(%ebp),%edx
movl %edx,-8(%ebp)
movl -8(%ebp),%eax
pushl %eax
pushl $LC0
call _printf
addl $8,%esp
L5:
leave
ret
_r2:
pushl %ebp
movl %esp,%ebp
subl $4,%esp
movl $5,-4(%ebp)
incl -4(%ebp)
incl -4(%ebp)
movl -4(%ebp),%eax
imull -4(%ebp),%eax
incl -4(%ebp)
imull -4(%ebp),%eax
pushl %eax
pushl $LC0
call _printf
addl $8,%esp
L6:
leave
ret
以上结果未经过优化。而经过编译器优化后,直接把 392 作为 printf() 的参数了:
_r1:
pushl %ebp
movl %esp,%ebp
pushl $392
pushl $LC0
call _printf
leave
ret _r2:
pushl %ebp
movl %esp,%ebp
pushl $392
pushl $LC0
call _printf
leave
ret
这说明,要么书上有误,要么 gcc 的编译器有毛病。
[ 本帖最后由 langue 于 2006-11-4 12:40 编辑 ] |
|