mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 20:43:41 +01:00
29 lines
588 B
ArmAsm
29 lines
588 B
ArmAsm
/*
|
|
* Based on the i387 version written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <amd64/bsd_asm.h>
|
|
|
|
//RCSID("from: $NetBSD: e_remainderf.S,v 1.2 1995/05/08 23:49:47 jtc Exp $")
|
|
//__FBSDID("$FreeBSD: src/lib/msun/amd64/e_remainderf.S,v 1.2 2011/01/07 16:13:12 kib Exp $")
|
|
|
|
ENTRY(remainderf)
|
|
movss %xmm0,-4(%rsp)
|
|
movss %xmm1,-8(%rsp)
|
|
flds -8(%rsp)
|
|
flds -4(%rsp)
|
|
1: fprem1
|
|
fstsw %ax
|
|
testw $0x400,%ax
|
|
jne 1b
|
|
fstps -4(%rsp)
|
|
movss -4(%rsp),%xmm0
|
|
fstp %st
|
|
ret
|
|
|
|
|
|
/* Enable stack protection */
|
|
#if defined(__ELF__)
|
|
.section .note.GNU-stack,"",%progbits
|
|
#endif
|