asm for scalbn family
authorRich Felker <dalias@aerifal.cx>
Mon, 19 Mar 2012 09:15:30 +0000 (05:15 -0400)
committerRich Felker <dalias@aerifal.cx>
Mon, 19 Mar 2012 09:15:30 +0000 (05:15 -0400)
unlike some implementations, these functions perform the equivalent of
gcc's -ffloat-store on the result before returning. this is necessary
to raise underflow/overflow/inexact exceptions, perform the correct
rounding with denormals, etc.

src/math/i386/ldexp.s [new file with mode: 0644]
src/math/i386/ldexpf.s [new file with mode: 0644]
src/math/i386/ldexpl.s [new file with mode: 0644]
src/math/i386/scalbln.s [new file with mode: 0644]
src/math/i386/scalblnf.s [new file with mode: 0644]
src/math/i386/scalblnl.s [new file with mode: 0644]
src/math/i386/scalbn.s [new file with mode: 0644]
src/math/i386/scalbnf.s [new file with mode: 0644]
src/math/i386/scalbnl.s [new file with mode: 0644]

diff --git a/src/math/i386/ldexp.s b/src/math/i386/ldexp.s
new file mode 100644 (file)
index 0000000..c430f78
--- /dev/null
@@ -0,0 +1 @@
+# see scalbn.s
diff --git a/src/math/i386/ldexpf.s b/src/math/i386/ldexpf.s
new file mode 100644 (file)
index 0000000..3f8e4b9
--- /dev/null
@@ -0,0 +1 @@
+# see scalbnf.s
diff --git a/src/math/i386/ldexpl.s b/src/math/i386/ldexpl.s
new file mode 100644 (file)
index 0000000..86fe562
--- /dev/null
@@ -0,0 +1 @@
+# see scalbnl.s
diff --git a/src/math/i386/scalbln.s b/src/math/i386/scalbln.s
new file mode 100644 (file)
index 0000000..c430f78
--- /dev/null
@@ -0,0 +1 @@
+# see scalbn.s
diff --git a/src/math/i386/scalblnf.s b/src/math/i386/scalblnf.s
new file mode 100644 (file)
index 0000000..3f8e4b9
--- /dev/null
@@ -0,0 +1 @@
+# see scalbnf.s
diff --git a/src/math/i386/scalblnl.s b/src/math/i386/scalblnl.s
new file mode 100644 (file)
index 0000000..86fe562
--- /dev/null
@@ -0,0 +1 @@
+# see scalbnl.s
diff --git a/src/math/i386/scalbn.s b/src/math/i386/scalbn.s
new file mode 100644 (file)
index 0000000..e275d14
--- /dev/null
@@ -0,0 +1,20 @@
+.global ldexp
+.type ldexp,@function
+ldexp:
+       nop
+
+.global scalbln
+.type scalbln,@function
+scalbln:
+       nop
+
+.global scalbn
+.type scalbn,@function
+scalbn:
+       fildl 12(%esp)
+       fldl 4(%esp)
+       fscale
+       fstp %st(1)
+       fstpl 4(%esp)
+       fldl 4(%esp)
+       ret
diff --git a/src/math/i386/scalbnf.s b/src/math/i386/scalbnf.s
new file mode 100644 (file)
index 0000000..40232b6
--- /dev/null
@@ -0,0 +1,20 @@
+.global ldexpf
+.type ldexpf,@function
+ldexpf:
+       nop
+
+.global scalblnf
+.type scalblnf,@function
+scalblnf:
+       nop
+
+.global scalbnf
+.type scalbnf,@function
+scalbnf:
+       fildl 8(%esp)
+       flds 4(%esp)
+       fscale
+       fstp %st(1)
+       fstps 4(%esp)
+       flds 4(%esp)
+       ret
diff --git a/src/math/i386/scalbnl.s b/src/math/i386/scalbnl.s
new file mode 100644 (file)
index 0000000..224b1be
--- /dev/null
@@ -0,0 +1,18 @@
+.global ldexpl
+.type ldexpl,@function
+ldexpl:
+       nop
+
+.global scalblnl
+.type scalblnl,@function
+scalblnl:
+       nop
+
+.global scalbnl
+.type scalbnl,@function
+scalbnl:
+       fildl 16(%esp)
+       fldt 4(%esp)
+       fscale
+       fstp %st(1)
+       ret