xref: /minix3/lib/libc/arch/mips/gen/fpsetround.c (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1 /*	$NetBSD: fpsetround.c,v 1.7 2014/09/17 11:02:55 joerg Exp $	*/
2 
3 /*
4  * Written by J.T. Conklin, Apr 11, 1995
5  * Public domain.
6  */
7 
8 #include <sys/cdefs.h>
9 #if defined(LIBC_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: fpsetround.c,v 1.7 2014/09/17 11:02:55 joerg Exp $");
11 #endif /* LIBC_SCCS and not lint */
12 
13 #include "namespace.h"
14 
15 #include <ieeefp.h>
16 
17 #ifdef __weak_alias
__weak_alias(fpsetround,_fpsetround)18 __weak_alias(fpsetround,_fpsetround)
19 #endif
20 
21 fp_rnd
22 fpsetround(fp_rnd rnd_dir)
23 {
24 	fp_rnd old;
25 	fp_rnd new;
26 
27 	__asm(".set push; .set noat; cfc1 %0,$31; .set pop" : "=r" (old));
28 
29 	new = old & ~0x03;
30 	new |= rnd_dir & 0x03;
31 
32 	__asm(".set push; .set noat; ctc1 %0,$31; .set pop" : "=r" (new));
33 
34 	return old & 0x03;
35 }
36