2011-08-12 21:01:25 +02:00
|
|
|
/*
|
|
|
|
* Based on the i387 version written by:
|
2012-11-24 01:19:01 +01:00
|
|
|
* J.T. Conklin (jtc@netbsd.org)
|
|
|
|
* Public domain.
|
2011-08-12 21:01:25 +02:00
|
|
|
*/
|
|
|
|
|
2012-05-25 05:14:58 +02:00
|
|
|
#include <amd64/bsd_asm.h>
|
2011-08-12 21:01:25 +02:00
|
|
|
|
2011-12-15 07:16:26 +01:00
|
|
|
//__FBSDID("$FreeBSD: src/lib/msun/amd64/e_remainderl.S,v 1.2 2011/01/07 16:13:12 kib Exp $")
|
2011-08-12 21:01:25 +02:00
|
|
|
|
|
|
|
ENTRY(remainderl)
|
2013-07-12 02:19:52 +02:00
|
|
|
#ifndef _WIN64
|
2011-08-12 21:01:25 +02:00
|
|
|
fldt 24(%rsp)
|
|
|
|
fldt 8(%rsp)
|
2013-07-12 02:19:52 +02:00
|
|
|
#else
|
|
|
|
fldt (%r8)
|
|
|
|
fldt (%rdx)
|
|
|
|
#endif
|
2011-08-12 21:01:25 +02:00
|
|
|
1: fprem1
|
|
|
|
fstsw %ax
|
|
|
|
testw $0x400,%ax
|
|
|
|
jne 1b
|
|
|
|
fstp %st(1)
|
2013-07-12 02:19:52 +02:00
|
|
|
#ifdef _WIN64
|
|
|
|
mov %rcx,%rax
|
|
|
|
movq $0x0,0x8(%rcx)
|
|
|
|
fstpt (%rcx)
|
|
|
|
#endif
|
2011-08-12 21:01:25 +02:00
|
|
|
ret
|
|
|
|
|
2012-05-25 05:14:58 +02:00
|
|
|
|
2013-12-21 21:18:57 +01:00
|
|
|
/* Enable stack protection */
|
2015-11-07 10:28:48 +01:00
|
|
|
#if defined(__ELF__)
|
2013-12-21 21:18:57 +01:00
|
|
|
.section .note.GNU-stack,"",%progbits
|
|
|
|
#endif
|