mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-08 21:49:06 -04:00
30 lines
535 B
ArmAsm
30 lines
535 B
ArmAsm
/* $NetBSD: fpgetround.S,v 1.5 2014/05/22 15:01:56 uebayasi Exp $ */
|
|
|
|
/*
|
|
* Written by J.T. Conklin, Apr 4, 1995
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
/*
|
|
* XXX load only x87 state. If an application only uses the fp*
|
|
* interface, this should be in sync with the SSE mxcsr register.
|
|
*/
|
|
|
|
#ifdef WEAK_ALIAS
|
|
WEAK_ALIAS(fpgetround, _fpgetround)
|
|
ENTRY(_fpgetround)
|
|
#else
|
|
ENTRY(fpgetround)
|
|
#endif
|
|
fnstcw -4(%rsp)
|
|
movl -4(%rsp), %eax
|
|
andl $0x00000c00, %eax
|
|
ret
|
|
#ifdef WEAK_ALIAS
|
|
END(_fpgetround)
|
|
#else
|
|
END(fpgetround)
|
|
#endif
|