This patch adds the long double functions missing in newlib to Cygwin.
Apart from some self-written additions (exp10l, finite{f,l}, isinf{f,l},
isnan{f,l}, pow10l) the files are taken from the Mingw-w64 math lib.
Minor changes were required, e.g. substitue _WIN64 with __x86_64__ and
fixing __FLT_RPT_DOMAIN/__FLT_RPT_ERANGE for Cygwin.
Cygwin:
	* math: New subdir with math functions.
	* Makefile.in (VPATH): Add math subdir.
	(MATH_OFILES): List of object files collected from building files in
	math subdir.
	(DLL_OFILES): Add $(MATH_OFILES).
	${CURDIR}/libm.a: Add $(MATH_OFILES) to build.
	* common.din: Add new functions from math subdir.
	* i686.din: Align to new math subdir.  Remove functions now commonly
	available.
	* x86_64.din: Ditto.
	* math.h: math.h wrapper to define mingw structs used in some files in
	math subdir.
	* include/cygwin/version.h: Bump API minor version.
newlib:
	* libc/include/complex.h: Add prototypes for complex long double
	functions.  Only define for Cygwin.
	* libc/include/math.h: Additionally enable prototypes of long double
	functions for Cygwin.  Add Cygwin-only prototypes for dreml, sincosl,
	exp10l and pow10l.  Explain why we don't add them to newlib.
	* libc/include/tgmath.h: Enable long double handling on Cygwin.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
		
	
		
			
				
	
	
		
			76 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
| /**
 | |
|  * This file has no copyright assigned and is placed in the Public Domain.
 | |
|  * This file is part of the mingw-w64 runtime package.
 | |
|  * No warranty is given; refer to the file DISCLAIMER.PD within this package.
 | |
|  */
 | |
| #include <_mingw_mac.h>
 | |
| 
 | |
| 	.file	"remquol.S"
 | |
|         .text
 | |
| #ifdef __x86_64__
 | |
| 	.align 8
 | |
| #else
 | |
| 	.align 4
 | |
| #endif
 | |
| .globl __MINGW_USYMBOL(remquol)
 | |
| __MINGW_USYMBOL(remquol):
 | |
| #ifdef __x86_64__
 | |
|  	pushq	%rcx
 | |
|         fldt (%r8)
 | |
|         fldt (%rdx)
 | |
| 1:	fprem1
 | |
|         fstsw %ax
 | |
|         sahf
 | |
|         jp 1b
 | |
|         fstp %st(1)
 | |
|         movl %eax, %ecx
 | |
|         shrl $8, %eax
 | |
|         shrl $12, %ecx
 | |
|         andl $4, %ecx
 | |
|         andl $3, %eax
 | |
|         orl %eax, %ecx
 | |
|         movl $0xef2a60, %eax
 | |
| 	leal (%ecx,%ecx,2),%ecx
 | |
|         shrl %cl, %eax
 | |
|         andl $7, %eax
 | |
|         movl 8(%rdx), %edx
 | |
|         xorl 8(%r8), %edx
 | |
|         testl $0x8000, %edx
 | |
|         jz 1f
 | |
|         negl %eax
 | |
| 1:	movl %eax, (%r9)
 | |
| 
 | |
| 	popq %rcx
 | |
| 	movq %rcx,%rax
 | |
| 	movq	$0,8(%rcx)
 | |
| 	fstpt	(%rcx)
 | |
|         ret
 | |
| #else
 | |
|         fldt 4 +12(%esp)
 | |
|         fldt 4(%esp)
 | |
| 1:	fprem1
 | |
|         fstsw %ax
 | |
|         sahf
 | |
|         jp 1b
 | |
|         fstp %st(1)
 | |
|         movl %eax, %ecx
 | |
|         shrl $8, %eax
 | |
|         shrl $12, %ecx
 | |
|         andl $4, %ecx
 | |
|         andl $3, %eax
 | |
|         orl %eax, %ecx
 | |
|         movl $0xef2a60, %eax
 | |
| 	leal (%ecx,%ecx,2),%ecx
 | |
|         shrl %cl, %eax
 | |
|         andl $7, %eax
 | |
|         movl 4 +12 +12(%esp), %ecx      
 | |
|         movl 4 +8(%esp), %edx
 | |
|         xorl 4 +12 +8(%esp), %edx
 | |
|         testl $0x8000, %edx
 | |
|         jz 1f
 | |
|         negl %eax
 | |
| 1:	movl %eax, (%ecx)
 | |
|       
 | |
|         ret
 | |
| #endif
 |