mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
5980be9b3c
This work is based in part on code from NetBSD libm, libc and kernel. The library is partly public domain and partly BSD-style licensed.
37 lines
566 B
ArmAsm
37 lines
566 B
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@NetBSD.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
/*
|
|
* XXXfvdl split this file.
|
|
*/
|
|
|
|
RCSID("$NetBSD: s_copysignf.S,v 1.7 2011/06/21 21:52:49 joerg Exp $")
|
|
|
|
#ifdef __x86_64__
|
|
.Lneg:
|
|
.long 0x7fffffff
|
|
.Lpos:
|
|
.long 0x80000000
|
|
#endif
|
|
|
|
ENTRY(copysignf)
|
|
#ifdef __i386__
|
|
movl 8(%esp),%edx
|
|
andl $0x80000000,%edx
|
|
movl 4(%esp),%eax
|
|
andl $0x7fffffff,%eax
|
|
orl %edx,%eax
|
|
movl %eax,4(%esp)
|
|
flds 4(%esp)
|
|
#else
|
|
movss .Lpos(%rip),%xmm2
|
|
movss .Lneg(%rip),%xmm3
|
|
pand %xmm2,%xmm1
|
|
pand %xmm3,%xmm0
|
|
por %xmm1,%xmm0
|
|
#endif
|
|
ret
|