NetBSD/lib/libm/arch/i387/s_cos.S

32 lines
436 B
ArmAsm
Raw Normal View History

1994-02-16 22:21:10 +03:00
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
1994-02-16 22:21:10 +03:00
*/
#include <machine/asm.h>
#include "abi.h"
RCSID("$NetBSD: s_cos.S,v 1.7 2001/06/19 00:26:30 fvdl Exp $")
1994-02-16 22:21:10 +03:00
ENTRY(cos)
XMM_ONE_ARG_DOUBLE_PROLOGUE
fldl ARG_DOUBLE_ONE
1994-02-16 22:21:10 +03:00
fcos
fnstsw %ax
andw $0x400,%ax
jnz 1f
XMM_DOUBLE_EPILOGUE
1999-07-02 19:37:33 +04:00
ret
1: fldpi
1994-02-16 22:21:10 +03:00
fadd %st(0)
fxch %st(1)
2: fprem1
1994-02-16 22:21:10 +03:00
fnstsw %ax
andw $0x400,%ax
jnz 2b
1994-02-16 22:21:10 +03:00
fstp %st(1)
fcos
XMM_DOUBLE_EPILOGUE
ret