- 论坛徽章:
- 0
|
本帖最后由 KanonInD 于 2012-08-26 16:33 编辑
sonicling 发表于 2012-08-24 22:56 ![]()
回复 24# KanonInD - #include <stdio.h>
- int main()
- {
- float f = 1.0/3.0*3.0;
- printf("%.10f\n", f);
- }
复制代码 以下是相应由gcc产生的汇编代码,注意看LC0, LC0=1065353216, 1065353216的16进制表示是3f800000, 即浮点数1.0的表示。
(/ a a) -> 1.0- .file "test.c"
- .section .rodata
- .LC1:
- .string "%.10f\n"
- .text
- .globl main
- .type main, @function
- main:
- .LFB0:
- .cfi_startproc
- pushl %ebp
- .cfi_def_cfa_offset 8
- .cfi_offset 5, -8
- movl %esp, %ebp
- .cfi_def_cfa_register 5
- andl $-16, %esp
- subl $32, %esp
- movl .LC0, %eax
- movl %eax, 28(%esp)
- flds 28(%esp)
- fstpl 4(%esp)
- movl $.LC1, (%esp)
- call printf
- leave
- .cfi_restore 5
- .cfi_def_cfa 4, 4
- ret
- .cfi_endproc
- .LFE0:
- .size main, .-main
- .section .rodata
- .align 4
- .LC0:
- .long 1065353216
- .ident "GCC: (GNU) 4.7.1 20120721 (prerelease)"
- .section .note.GNU-stack,"",@progbits
复制代码 补充:以下规则对编译器应当没压力才对。
(/ (* a b) b) -> a
(* (/ a b) b) -> a
(* a 1.0) -> a
(* 1.0 a) -> a |
|