2012-11-15 12:06:41 +01:00
|
|
|
/* $NetBSD: fpsetround.S,v 1.5 2011/09/30 23:45:41 christos Exp $ */
|
2011-02-14 20:36:03 +01:00
|
|
|
|
|
|
|
/*
|
2012-11-15 12:06:41 +01:00
|
|
|
* Written by Frank van der Linden at Wasabi Systems for NetBSD.
|
2011-02-14 20:36:03 +01:00
|
|
|
* Public domain.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <machine/asm.h>
|
|
|
|
|
2012-11-15 12:06:41 +01:00
|
|
|
/*
|
|
|
|
* XXX set both the x87 control word
|
|
|
|
* Applications should only set exception and round flags
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-02-14 20:36:03 +01:00
|
|
|
#ifdef WEAK_ALIAS
|
|
|
|
WEAK_ALIAS(fpsetround, _fpsetround)
|
|
|
|
ENTRY(_fpsetround)
|
|
|
|
#else
|
|
|
|
ENTRY(fpsetround)
|
|
|
|
#endif
|
|
|
|
|
2012-11-15 12:06:41 +01:00
|
|
|
fnstcw -4(%esp)
|
|
|
|
movl -4(%esp), %edx
|
|
|
|
movl %edx, %eax
|
|
|
|
andl $0x00000c00, %eax
|
|
|
|
andl $0xfffff3ff, %edx
|
|
|
|
movl 4(%esp), %ecx
|
|
|
|
orl %ecx, %edx
|
|
|
|
movl %edx, -4(%esp)
|
|
|
|
fldcw -4(%esp)
|
2011-02-14 20:36:03 +01:00
|
|
|
|
|
|
|
ret
|