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)
commit58ff9e8eaf99f2294232be860daa2ca6f3674faf
treeb2fc48ab1eb651bdb5e023a3547747d558c888df
parentbc33e617040166e971ec1e6822ac1cc417eb6c9c
asm for scalbn family

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]