- 论坛徽章:
- 0
|
原帖由 dxcnjupt 于 2008-2-24 15:47 发表 ![]()
抠语法的话:
x = x+y:
mov eax, [x]
mov ebx, [y]
add eax,ebx
mov [x], eax
x += y:
mov eax, [y]
add [x], eax
支持cat的观点,c语言不要太在意这种细节的东西。算法和架构才是最重要的
如果 ...
x = x +y 与 x +=y 生成的指令没有什么区别吧!
好像没有任何区别呀.
- int
- main(void)
- {
- int x, y;
- x = x + y;
- x += y;
- return (0);
- }
复制代码
.file "xy.c"
.text
.p2align 4,,15
.globl main
.type main, @function
main:
.LFB2:
pushq %rbp
.LCFI0:
movq %rsp, %rbp
.LCFI1:
movl -8(%rbp), %edx
leaq -4(%rbp), %rax
addl %edx, (%rax)
movl -8(%rbp), %edx
leaq -4(%rbp), %rax
addl %edx, (%rax)
movl $0, %eax
leave
ret
.LFE2:
.size main, .-main
.section .eh_frame,"a",@progbits
.Lframe1:
.long .LECIE1-.LSCIE1
.LSCIE1:
.long 0x0
.byte 0x1
.string ""
.uleb128 0x1
.sleb128 -8
.byte 0x10
.byte 0xc
.uleb128 0x7
.uleb128 0x8
.byte 0x90
.uleb128 0x1
.p2align 3
.LECIE1:
.LSFDE1:
.long .LEFDE1-.LASFDE1
.LASFDE1:
.long .LASFDE1-.Lframe1
.quad .LFB2
.quad .LFE2-.LFB2
.byte 0x4
.long .LCFI0-.LFB2
.byte 0xe
.uleb128 0x10
.byte 0x86
.uleb128 0x2
.byte 0x4
.long .LCFI1-.LCFI0
.byte 0xd
.uleb128 0x6
.p2align 3
.LEFDE1:
.ident "GCC: (GNU) 3.4.6 [FreeBSD] 20060305"
|
|