x86_64 math asm, long double functions only
authorRich Felker <dalias@aerifal.cx>
Wed, 21 Mar 2012 03:29:24 +0000 (23:29 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 21 Mar 2012 03:29:24 +0000 (23:29 -0400)
commit30df206cb0c66848142898115d301a0d80333d0f
tree71bc7185b699610ed604a544ad8c508536d8990f
parent80949ccdc6656c51292b4260b6e8d7b493ca6c45
x86_64 math asm, long double functions only

this has not been tested heavily, but it's known to at least assemble
and run in basic usage cases. it's nearly identical to the
corresponding i386 code, and thus expected to be just as correct or
just as incorrect.
17 files changed:
src/math/x86_64/acosl.s [new file with mode: 0644]
src/math/x86_64/asinl.s [new file with mode: 0644]
src/math/x86_64/atan2l.s [new file with mode: 0644]
src/math/x86_64/atanl.s [new file with mode: 0644]
src/math/x86_64/ceill.s [new file with mode: 0644]
src/math/x86_64/exp2l.s [new file with mode: 0644]
src/math/x86_64/expl.s [new file with mode: 0644]
src/math/x86_64/expm1l.s [new file with mode: 0644]
src/math/x86_64/floorl.s [new file with mode: 0644]
src/math/x86_64/llrintl.s [new file with mode: 0644]
src/math/x86_64/log10l.s [new file with mode: 0644]
src/math/x86_64/log1pl.s [new file with mode: 0644]
src/math/x86_64/log2l.s [new file with mode: 0644]
src/math/x86_64/logl.s [new file with mode: 0644]
src/math/x86_64/lrintl.s [new file with mode: 0644]
src/math/x86_64/modfl.s [new file with mode: 0644]
src/math/x86_64/truncl.s [new file with mode: 0644]