- 论坛徽章:
- 0
|
如何提高查找速度
[quote]原帖由 "mq110"]这能说明效率问题?[/quote 发表:
- int main()
- {
- int a[] = { 0, 1 };
- int *p = a;
- *p = 0;
- *(p+1) = 0;
-
- if ( !*p && !*(p+1))
- printf("%d\n",a[1]);
- }
复制代码
gcc 3.3.1 编译为:
- leal -8(%ebp), %eax
- movl %eax, -12(%ebp)
- movl -12(%ebp), %eax
- movl $0, (%eax)
- movl -12(%ebp), %eax
- addl $4, %eax
- movl $0, (%eax)
- movl -12(%ebp), %eax
- cmpl $0, (%eax)
- jne .L2
- movl -12(%ebp), %eax
- addl $4, %eax
- cmpl $0, (%eax)
- jne .L2
- movl -4(%ebp), %eax
- movl %eax, 4(%esp)
- movl $.LC0, (%esp)
- call printf
- .L2:
- movl $0, %eax
- leave
复制代码
而:
- int main()
- {
- int a[] = { 0, 1};
- int *p = a;
- *(long long*)p = 0;
- if (!*(long long*)p)
- printf("long long size is %d,%d\n" a[1]);
- return 0;
- }
复制代码
gcc 3.3.1编译为:
- leal -8(%ebp), %eax
- movl %eax, -12(%ebp)
- movl -12(%ebp), %eax
- movl $0, (%eax)
- movl $0, 4(%eax)
- movl -12(%ebp), %eax
- cmpl $0, (%eax)
- jne .L2
- movl -4(%ebp), %eax
- movl %eax, 4(%esp)
- movl $.LC0, (%esp)
- call printf
- .L2:
- movl $0, %eax
- leave
复制代码
用事实说话,不用解释了,对比一下:)
不过是未在优化编译的。 不知优化编译后,是否一样。。。 |
|