aboutsummaryrefslogtreecommitdiff
path: root/src/math/i386/fmodl.s
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-03-18 17:09:34 -0400
committerRich Felker <dalias@aerifal.cx>2012-03-18 17:09:34 -0400
commitb935147761d1770bb115f09f8c28ddb4d36e1236 (patch)
treeb96d46d662c717fffb0f0364e3cd07f009a06af1 /src/math/i386/fmodl.s
parentasm versions of some simple math functions for i386 and x86_64 (diff)
downloadgrovel-b935147761d1770bb115f09f8c28ddb4d36e1236.tar.gz
grovel-b935147761d1770bb115f09f8c28ddb4d36e1236.tar.xz
assembly optimizations for fmod/remainder functions
Diffstat (limited to 'src/math/i386/fmodl.s')
-rw-r--r--src/math/i386/fmodl.s11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/math/i386/fmodl.s b/src/math/i386/fmodl.s
new file mode 100644
index 00000000..7e07e7b5
--- /dev/null
+++ b/src/math/i386/fmodl.s
@@ -0,0 +1,11 @@
+.global fmodl
+.type fmodl,@function
+fmodl:
+ fldt 16(%esp)
+ fldt 4(%esp)
+1: fprem
+ fstsw %ax
+ sahf
+ jp 1b
+ fstp %st(1)
+ ret