12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- #include <i387/bsd_asm.h>
- ENTRY(exp)
-
- movl 8(%esp),%eax
- andl $0x7fffffff,%eax
- cmpl $0x7ff00000,%eax
- jae x_Inf_or_NaN
- fldl 4(%esp)
-
- fstcw 4(%esp)
- movl 4(%esp),%eax
- andl $0x0300,%eax
- cmpl $0x0300,%eax
- je 1f
- movl $0x137f,8(%esp)
- fldcw 8(%esp)
- 1:
- fldl2e
- fmulp
- fst %st(1)
- frndint
- fst %st(2)
- fsubrp
- f2xm1
- fld1
- faddp
- fscale
- fstp %st(1)
- je 1f
- fldcw 4(%esp)
- 1:
- ret
- x_Inf_or_NaN:
-
- cmpl $0xfff00000,8(%esp)
- jne x_not_minus_Inf
- cmpl $0,4(%esp)
- jne x_not_minus_Inf
- fldz
- ret
- x_not_minus_Inf:
- fldl 4(%esp)
- ret
- END(exp)
-
- #if defined(__ELF__)
- .section .note.GNU-stack,"",%progbits
- #endif
|