asm versions of some simple math functions for i386 and x86_64
authorRich Felker <dalias@aerifal.cx>
Sun, 18 Mar 2012 20:43:54 +0000 (16:43 -0400)
committerRich Felker <dalias@aerifal.cx>
Sun, 18 Mar 2012 20:43:54 +0000 (16:43 -0400)
commit8d9e948652eb8381f1f376cbd0c9bc5e2947d150
tree37c869b664053d019d5ff03374f6d825498ebd19
parentafad262440d213633144d696b8fdda7a65bf26d1
asm versions of some simple math functions for i386 and x86_64

these are functions that have direct fpu approaches to implementation
without problematic exception or rounding issues. x86_64 lacks
float/double versions because i'm unfamiliar with the necessary sse
code for performing these operations.
src/math/i386/fabs.s [new file with mode: 0644]
src/math/i386/fabsf.s [new file with mode: 0644]
src/math/i386/fabsl.s [new file with mode: 0644]
src/math/i386/rint.s [new file with mode: 0644]
src/math/i386/rintf.s [new file with mode: 0644]
src/math/i386/rintl.s [new file with mode: 0644]
src/math/x86_64/fabsl.s [new file with mode: 0644]
src/math/x86_64/rintl.s [new file with mode: 0644]