Changeset 321a8e6 in mainline for uspace/lib/math
- Timestamp:
- 2016-02-20T18:01:33Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 91889d5
- Parents:
- 805729b
- Location:
- uspace/lib/math/arch/ia32/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/math/arch/ia32/src/cos.S
r805729b r321a8e6 27 27 # 28 28 29 #include <abi/asmtool.h> 29 30 #include <libarch/x87.h> 30 31 31 32 .text 32 33 33 .global cos_f64 34 35 cos_f64: 34 FUNCTION_BEGIN(cos_f64) 36 35 # compute cosine (no stack frame) 37 36 … … 64 63 65 64 ret 65 FUNCTION_END(cos_f64) 66 -
uspace/lib/math/arch/ia32/src/sin.S
r805729b r321a8e6 27 27 # 28 28 29 #include <abi/asmtool.h> 29 30 #include <libarch/x87.h> 30 31 31 32 .text 32 33 33 .global sin_f64 34 35 sin_f64: 34 FUNCTION_BEGIN(sin_f64) 36 35 # compute sine (no stack frame) 37 36 … … 64 63 65 64 ret 65 FUNCTION_END(sin_f64) 66 -
uspace/lib/math/arch/ia32/src/trunc.S
r805729b r321a8e6 27 27 # 28 28 29 #include <abi/asmtool.h> 29 30 #include <libarch/x87.h> 30 31 31 32 .text 32 33 33 .global trunc_f64 34 35 trunc_f64: 34 FUNCTION_BEGIN(trunc_f64) 36 35 pushl %ebp 37 36 movl %esp, %ebp … … 61 60 leave 62 61 ret 62 FUNCTION_END(trunc_f64) 63
Note:
See TracChangeset
for help on using the changeset viewer.