mirror of
https://github.com/fluencelabs/musl
synced 2025-05-16 17:21:28 +00:00
asm for lrint family on i386
This commit is contained in:
parent
6f26cf3dac
commit
37eb14dd2b
8
src/math/i386/llrint.s
Normal file
8
src/math/i386/llrint.s
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
.global llrint
|
||||||
|
.type llrint,@function
|
||||||
|
llrint:
|
||||||
|
fldl 4(%esp)
|
||||||
|
fistpl 4(%esp)
|
||||||
|
mov 4(%esp),%eax
|
||||||
|
mov 8(%esp),%edx
|
||||||
|
ret
|
9
src/math/i386/llrintf.s
Normal file
9
src/math/i386/llrintf.s
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
.global llrintf
|
||||||
|
.type llrintf,@function
|
||||||
|
llrintf:
|
||||||
|
sub $8,%esp
|
||||||
|
flds 12(%esp)
|
||||||
|
fistpq (%esp)
|
||||||
|
pop %eax
|
||||||
|
pop %edx
|
||||||
|
ret
|
8
src/math/i386/llrintl.s
Normal file
8
src/math/i386/llrintl.s
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
.global llrintl
|
||||||
|
.type llrintl,@function
|
||||||
|
llrintl:
|
||||||
|
fldt 4(%esp)
|
||||||
|
fistpl 4(%esp)
|
||||||
|
mov 4(%esp),%eax
|
||||||
|
mov 8(%esp),%edx
|
||||||
|
ret
|
7
src/math/i386/lrint.s
Normal file
7
src/math/i386/lrint.s
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
.global lrint
|
||||||
|
.type lrint,@function
|
||||||
|
lrint:
|
||||||
|
fldl 4(%esp)
|
||||||
|
fistpl 4(%esp)
|
||||||
|
mov 4(%esp),%eax
|
||||||
|
ret
|
7
src/math/i386/lrintf.s
Normal file
7
src/math/i386/lrintf.s
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
.global lrintf
|
||||||
|
.type lrintf,@function
|
||||||
|
lrintf:
|
||||||
|
flds 4(%esp)
|
||||||
|
fistpl 4(%esp)
|
||||||
|
mov 4(%esp),%eax
|
||||||
|
ret
|
7
src/math/i386/lrintl.s
Normal file
7
src/math/i386/lrintl.s
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
.global lrintl
|
||||||
|
.type lrintl,@function
|
||||||
|
lrintl:
|
||||||
|
fldt 4(%esp)
|
||||||
|
fistpl 4(%esp)
|
||||||
|
mov 4(%esp),%eax
|
||||||
|
ret
|
Loading…
x
Reference in New Issue
Block a user