2014-02-25 15:49:41 +01:00
|
|
|
/* $OpenBSD: fenv.c,v 1.3 2012/12/05 23:20:02 deraadt Exp $ */
|
|
|
|
/* $NetBSD: fenv.c,v 1.1 2010/07/31 21:47:53 joerg Exp $ */
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2013-09-20 17:09:55 +02:00
|
|
|
/*-
|
2013-10-02 02:57:19 +02:00
|
|
|
* Copyright (c) 2004-2005 David Schultz <das (at) FreeBSD.ORG>
|
2013-09-20 17:09:55 +02:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2013-10-02 02:57:19 +02:00
|
|
|
#include <fenv.h>
|
2016-04-02 17:36:33 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The i387 defaults to Intel extended precision mode and round to nearest,
|
|
|
|
* with all exceptions masked.
|
|
|
|
*/
|
|
|
|
#define __INITIAL_NPXCW__ 0x037f
|
|
|
|
#define __INITIAL_MXCSR__ 0x1f80
|
|
|
|
#define __INITIAL_MXCSR_MASK__ 0xffbf
|
2013-09-20 17:09:55 +02:00
|
|
|
|
2014-06-09 23:29:25 +02:00
|
|
|
#define SSE_MASK_SHIFT 7
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The following symbol is simply the bitwise-inclusive OR of all floating-point
|
|
|
|
* rounding direction constants defined above.
|
|
|
|
*/
|
|
|
|
#define X87_ROUND_MASK (FE_TONEAREST | FE_DOWNWARD | FE_UPWARD | FE_TOWARDZERO)
|
|
|
|
#define SSE_ROUND_SHIFT 3
|
|
|
|
|
2013-10-02 02:57:19 +02:00
|
|
|
/*
|
|
|
|
* The following constant represents the default floating-point environment
|
|
|
|
* (that is, the one installed at program startup) and has type pointer to
|
|
|
|
* const-qualified fenv_t.
|
|
|
|
*
|
|
|
|
* It can be used as an argument to the functions within the <fenv.h> header
|
|
|
|
* that manage the floating-point environment, namely fesetenv() and
|
|
|
|
* feupdateenv().
|
|
|
|
*
|
|
|
|
* x87 fpu registers are 16bit wide. The upper bits, 31-16, are marked as
|
|
|
|
* RESERVED.
|
|
|
|
*/
|
2014-02-27 21:36:10 +01:00
|
|
|
const fenv_t __fe_dfl_env = {
|
2014-02-25 15:49:41 +01:00
|
|
|
{
|
|
|
|
0xffff0000 | __INITIAL_NPXCW__, /* Control word register */
|
|
|
|
0xffff0000, /* Status word register */
|
|
|
|
0xffffffff, /* Tag word register */
|
|
|
|
{
|
|
|
|
0x00000000,
|
|
|
|
0x00000000,
|
|
|
|
0x00000000,
|
|
|
|
0xffff0000
|
|
|
|
}
|
|
|
|
},
|
|
|
|
__INITIAL_MXCSR__ /* MXCSR register */
|
2013-09-20 17:09:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-10-02 02:57:19 +02:00
|
|
|
/*
|
|
|
|
* The feclearexcept() function clears the supported floating-point exceptions
|
|
|
|
* represented by `excepts'.
|
|
|
|
*/
|
2013-09-20 17:09:55 +02:00
|
|
|
int
|
2013-10-02 02:57:19 +02:00
|
|
|
feclearexcept(int excepts)
|
2013-09-20 17:09:55 +02:00
|
|
|
{
|
2014-02-25 15:49:41 +01:00
|
|
|
fenv_t fenv;
|
|
|
|
unsigned int mxcsr;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
excepts &= FE_ALL_EXCEPT;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Store the current x87 floating-point environment */
|
|
|
|
__asm__ __volatile__ ("fnstenv %0" : "=m" (fenv));
|
2013-09-20 17:09:55 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Clear the requested floating-point exceptions */
|
|
|
|
fenv.__x87.__status &= ~excepts;
|
2013-09-20 17:09:55 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Load the x87 floating-point environent */
|
|
|
|
__asm__ __volatile__ ("fldenv %0" : : "m" (fenv));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Same for SSE environment */
|
|
|
|
__asm__ __volatile__ ("stmxcsr %0" : "=m" (mxcsr));
|
|
|
|
mxcsr &= ~excepts;
|
|
|
|
__asm__ __volatile__ ("ldmxcsr %0" : : "m" (mxcsr));
|
2013-09-20 17:09:55 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
return (0);
|
2013-09-20 17:09:55 +02:00
|
|
|
}
|
|
|
|
|
2013-10-02 02:57:19 +02:00
|
|
|
/*
|
|
|
|
* The fegetexceptflag() function stores an implementation-defined
|
|
|
|
* representation of the states of the floating-point status flags indicated by
|
|
|
|
* the argument excepts in the object pointed to by the argument flagp.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
fegetexceptflag(fexcept_t *flagp, int excepts)
|
|
|
|
{
|
2014-02-25 15:49:41 +01:00
|
|
|
unsigned short status;
|
|
|
|
unsigned int mxcsr;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
excepts &= FE_ALL_EXCEPT;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Store the current x87 status register */
|
|
|
|
__asm__ __volatile__ ("fnstsw %0" : "=am" (status));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Store the MXCSR register */
|
|
|
|
__asm__ __volatile__ ("stmxcsr %0" : "=m" (mxcsr));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Store the results in flagp */
|
|
|
|
*flagp = (status | mxcsr) & excepts;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
return (0);
|
2013-10-02 02:57:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The feraiseexcept() function raises the supported floating-point exceptions
|
|
|
|
* represented by the argument `excepts'.
|
|
|
|
*
|
|
|
|
* The standard explicitly allows us to execute an instruction that has the
|
|
|
|
* exception as a side effect, but we choose to manipulate the status register
|
|
|
|
* directly.
|
|
|
|
*
|
|
|
|
* The validation of input is being deferred to fesetexceptflag().
|
|
|
|
*/
|
2013-09-20 17:09:55 +02:00
|
|
|
int
|
|
|
|
feraiseexcept(int excepts)
|
|
|
|
{
|
2014-02-25 15:49:41 +01:00
|
|
|
excepts &= FE_ALL_EXCEPT;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
fesetexceptflag((fexcept_t *)&excepts, excepts);
|
|
|
|
__asm__ __volatile__ ("fwait");
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
return (0);
|
2013-10-02 02:57:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function sets the floating-point status flags indicated by the argument
|
|
|
|
* `excepts' to the states stored in the object pointed to by `flagp'. It does
|
|
|
|
* NOT raise any floating-point exceptions, but only sets the state of the flags.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
fesetexceptflag(const fexcept_t *flagp, int excepts)
|
|
|
|
{
|
2014-02-25 15:49:41 +01:00
|
|
|
fenv_t fenv;
|
|
|
|
unsigned int mxcsr;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
excepts &= FE_ALL_EXCEPT;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Store the current x87 floating-point environment */
|
|
|
|
__asm__ __volatile__ ("fnstenv %0" : "=m" (fenv));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Set the requested status flags */
|
|
|
|
fenv.__x87.__status &= ~excepts;
|
|
|
|
fenv.__x87.__status |= *flagp & excepts;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Load the x87 floating-point environent */
|
|
|
|
__asm__ __volatile__ ("fldenv %0" : : "m" (fenv));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Same for SSE environment */
|
|
|
|
__asm__ __volatile__ ("stmxcsr %0" : "=m" (mxcsr));
|
|
|
|
mxcsr &= ~excepts;
|
|
|
|
mxcsr |= *flagp & excepts;
|
|
|
|
__asm__ __volatile__ ("ldmxcsr %0" : : "m" (mxcsr));
|
2013-09-20 17:09:55 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
return (0);
|
2013-09-20 17:09:55 +02:00
|
|
|
}
|
|
|
|
|
2013-10-02 02:57:19 +02:00
|
|
|
/*
|
|
|
|
* The fetestexcept() function determines which of a specified subset of the
|
|
|
|
* floating-point exception flags are currently set. The `excepts' argument
|
|
|
|
* specifies the floating-point status flags to be queried.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
fetestexcept(int excepts)
|
|
|
|
{
|
2014-02-25 15:49:41 +01:00
|
|
|
unsigned short status;
|
|
|
|
unsigned int mxcsr;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
excepts &= FE_ALL_EXCEPT;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Store the current x87 status register */
|
|
|
|
__asm__ __volatile__ ("fnstsw %0" : "=am" (status));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Store the MXCSR register state */
|
|
|
|
__asm__ __volatile__ ("stmxcsr %0" : "=m" (mxcsr));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
return ((status | mxcsr) & excepts);
|
2013-10-02 02:57:19 +02:00
|
|
|
}
|
2013-09-20 17:09:55 +02:00
|
|
|
|
2013-10-02 02:57:19 +02:00
|
|
|
/*
|
|
|
|
* The fegetround() function gets the current rounding direction.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
fegetround(void)
|
|
|
|
{
|
2014-02-25 15:49:41 +01:00
|
|
|
unsigned short control;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/*
|
|
|
|
* We assume that the x87 and the SSE unit agree on the
|
|
|
|
* rounding mode. Reading the control word on the x87 turns
|
|
|
|
* out to be about 5 times faster than reading it on the SSE
|
|
|
|
* unit on an Opteron 244.
|
|
|
|
*/
|
|
|
|
__asm__ __volatile__ ("fnstcw %0" : "=m" (control));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-06-09 23:29:25 +02:00
|
|
|
return (control & X87_ROUND_MASK);
|
2013-10-02 02:57:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The fesetround() function establishes the rounding direction represented by
|
|
|
|
* its argument `round'. If the argument is not equal to the value of a rounding
|
|
|
|
* direction macro, the rounding direction is not changed.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
fesetround(int round)
|
|
|
|
{
|
2014-02-25 15:49:41 +01:00
|
|
|
unsigned short control;
|
|
|
|
unsigned int mxcsr;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Check whether requested rounding direction is supported */
|
2014-06-09 23:29:25 +02:00
|
|
|
if (round & ~X87_ROUND_MASK)
|
2014-02-25 15:49:41 +01:00
|
|
|
return (-1);
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Store the current x87 control word register */
|
|
|
|
__asm__ __volatile__ ("fnstcw %0" : "=m" (control));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Set the rounding direction */
|
2014-06-09 23:29:25 +02:00
|
|
|
control &= ~X87_ROUND_MASK;
|
2014-02-25 15:49:41 +01:00
|
|
|
control |= round;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Load the x87 control word register */
|
|
|
|
__asm__ __volatile__ ("fldcw %0" : : "m" (control));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Same for the SSE environment */
|
|
|
|
__asm__ __volatile__ ("stmxcsr %0" : "=m" (mxcsr));
|
2014-06-09 23:29:25 +02:00
|
|
|
mxcsr &= ~(X87_ROUND_MASK << SSE_ROUND_SHIFT);
|
|
|
|
mxcsr |= round << SSE_ROUND_SHIFT;
|
2014-02-25 15:49:41 +01:00
|
|
|
__asm__ __volatile__ ("ldmxcsr %0" : : "m" (mxcsr));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
return (0);
|
2013-10-02 02:57:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The fegetenv() function attempts to store the current floating-point
|
|
|
|
* environment in the object pointed to by envp.
|
|
|
|
*/
|
2013-09-20 17:09:55 +02:00
|
|
|
int
|
|
|
|
fegetenv(fenv_t *envp)
|
|
|
|
{
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Store the current x87 floating-point environment */
|
|
|
|
__asm__ __volatile__ ("fnstenv %0" : "=m" (*envp));
|
|
|
|
|
|
|
|
/* Store the MXCSR register state */
|
|
|
|
__asm__ __volatile__ ("stmxcsr %0" : "=m" (envp->__mxcsr));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When an FNSTENV instruction is executed, all pending exceptions are
|
|
|
|
* essentially lost (either the x87 FPU status register is cleared or
|
|
|
|
* all exceptions are masked).
|
|
|
|
*
|
|
|
|
* 8.6 X87 FPU EXCEPTION SYNCHRONIZATION -
|
|
|
|
* Intel(R) 64 and IA-32 Architectures Softare Developer's Manual - Vol1
|
|
|
|
*/
|
|
|
|
__asm__ __volatile__ ("fldcw %0" : : "m" (envp->__x87.__control));
|
|
|
|
|
|
|
|
return (0);
|
2013-09-20 17:09:55 +02:00
|
|
|
}
|
|
|
|
|
2013-10-02 02:57:19 +02:00
|
|
|
/*
|
|
|
|
* The feholdexcept() function saves the current floating-point environment
|
|
|
|
* in the object pointed to by envp, clears the floating-point status flags, and
|
|
|
|
* then installs a non-stop (continue on floating-point exceptions) mode, if
|
|
|
|
* available, for all floating-point exceptions.
|
|
|
|
*/
|
2013-09-20 17:09:55 +02:00
|
|
|
int
|
|
|
|
feholdexcept(fenv_t *envp)
|
|
|
|
{
|
2014-02-25 15:49:41 +01:00
|
|
|
unsigned int mxcsr;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Store the current x87 floating-point environment */
|
|
|
|
__asm__ __volatile__ ("fnstenv %0" : "=m" (*envp));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Clear all exception flags in FPU */
|
|
|
|
__asm__ __volatile__ ("fnclex");
|
2013-09-20 17:09:55 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Store the MXCSR register state */
|
|
|
|
__asm__ __volatile__ ("stmxcsr %0" : "=m" (envp->__mxcsr));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Clear exception flags in MXCSR */
|
|
|
|
mxcsr = envp->__mxcsr;
|
|
|
|
mxcsr &= ~FE_ALL_EXCEPT;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Mask all exceptions */
|
2014-06-09 23:29:25 +02:00
|
|
|
mxcsr |= FE_ALL_EXCEPT << SSE_MASK_SHIFT;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Store the MXCSR register */
|
|
|
|
__asm__ __volatile__ ("ldmxcsr %0" : : "m" (mxcsr));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
return (0);
|
2013-09-20 17:09:55 +02:00
|
|
|
}
|
|
|
|
|
2013-10-02 02:57:19 +02:00
|
|
|
/*
|
|
|
|
* The fesetenv() function attempts to establish the floating-point environment
|
|
|
|
* represented by the object pointed to by envp. The argument `envp' points
|
|
|
|
* to an object set by a call to fegetenv() or feholdexcept(), or equal a
|
|
|
|
* floating-point environment macro. The fesetenv() function does not raise
|
|
|
|
* floating-point exceptions, but only installs the state of the floating-point
|
|
|
|
* status flags represented through its argument.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
fesetenv(const fenv_t *envp)
|
|
|
|
{
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Load the x87 floating-point environent */
|
|
|
|
__asm__ __volatile__ ("fldenv %0" : : "m" (*envp));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Store the MXCSR register */
|
|
|
|
__asm__ __volatile__ ("ldmxcsr %0" : : "m" (envp->__mxcsr));
|
2013-09-20 17:09:55 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
return (0);
|
2013-10-02 02:57:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The feupdateenv() function saves the currently raised floating-point
|
|
|
|
* exceptions in its automatic storage, installs the floating-point environment
|
|
|
|
* represented by the object pointed to by `envp', and then raises the saved
|
|
|
|
* floating-point exceptions. The argument `envp' shall point to an object set
|
|
|
|
* by a call to feholdexcept() or fegetenv(), or equal a floating-point
|
|
|
|
* environment macro.
|
|
|
|
*/
|
2013-09-20 17:09:55 +02:00
|
|
|
int
|
|
|
|
feupdateenv(const fenv_t *envp)
|
|
|
|
{
|
2014-02-25 15:49:41 +01:00
|
|
|
unsigned short status;
|
|
|
|
unsigned int mxcsr;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Store the x87 status register */
|
|
|
|
__asm__ __volatile__ ("fnstsw %0" : "=am" (status));
|
2013-09-20 17:09:55 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Store the MXCSR register */
|
|
|
|
__asm__ __volatile__ ("stmxcsr %0" : "=m" (mxcsr));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Install new floating-point environment */
|
|
|
|
fesetenv(envp);
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/* Raise any previously accumulated exceptions */
|
|
|
|
feraiseexcept(status | mxcsr);
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
return (0);
|
2013-09-20 17:09:55 +02:00
|
|
|
}
|
|
|
|
|
2013-10-02 02:57:19 +02:00
|
|
|
/*
|
|
|
|
* The following functions are extentions to the standard
|
|
|
|
*/
|
2013-09-20 17:09:55 +02:00
|
|
|
int
|
2013-10-02 02:57:19 +02:00
|
|
|
feenableexcept(int mask)
|
2013-09-20 17:09:55 +02:00
|
|
|
{
|
2014-02-25 15:49:41 +01:00
|
|
|
unsigned int mxcsr, omask;
|
|
|
|
unsigned short control;
|
2013-09-20 17:09:55 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
mask &= FE_ALL_EXCEPT;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
__asm__ __volatile__ ("fnstcw %0" : "=m" (control));
|
|
|
|
__asm__ __volatile__ ("stmxcsr %0" : "=m" (mxcsr));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-06-09 23:29:25 +02:00
|
|
|
omask = ~(control | (mxcsr >> SSE_MASK_SHIFT)) & FE_ALL_EXCEPT;
|
2014-02-25 15:49:41 +01:00
|
|
|
control &= ~mask;
|
|
|
|
__asm__ __volatile__ ("fldcw %0" : : "m" (control));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-06-09 23:29:25 +02:00
|
|
|
mxcsr &= ~(mask << SSE_MASK_SHIFT);
|
2014-02-25 15:49:41 +01:00
|
|
|
__asm__ __volatile__ ("ldmxcsr %0" : : "m" (mxcsr));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
return (omask);
|
2013-09-20 17:09:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2013-10-02 02:57:19 +02:00
|
|
|
fedisableexcept(int mask)
|
2013-09-20 17:09:55 +02:00
|
|
|
{
|
2014-02-25 15:49:41 +01:00
|
|
|
unsigned int mxcsr, omask;
|
|
|
|
unsigned short control;
|
2013-09-20 17:09:55 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
mask &= FE_ALL_EXCEPT;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
__asm__ __volatile__ ("fnstcw %0" : "=m" (control));
|
|
|
|
__asm__ __volatile__ ("stmxcsr %0" : "=m" (mxcsr));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-06-09 23:29:25 +02:00
|
|
|
omask = ~(control | (mxcsr >> SSE_MASK_SHIFT)) & FE_ALL_EXCEPT;
|
2014-02-25 15:49:41 +01:00
|
|
|
control |= mask;
|
|
|
|
__asm__ __volatile__ ("fldcw %0" : : "m" (control));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-06-09 23:29:25 +02:00
|
|
|
mxcsr |= mask << SSE_MASK_SHIFT;
|
2014-02-25 15:49:41 +01:00
|
|
|
__asm__ __volatile__ ("ldmxcsr %0" : : "m" (mxcsr));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
return (omask);
|
2013-09-20 17:09:55 +02:00
|
|
|
}
|
|
|
|
|
2013-10-02 02:57:19 +02:00
|
|
|
int
|
|
|
|
fegetexcept(void)
|
|
|
|
{
|
2014-02-25 15:49:41 +01:00
|
|
|
unsigned short control;
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
/*
|
|
|
|
* We assume that the masks for the x87 and the SSE unit are
|
|
|
|
* the same.
|
|
|
|
*/
|
|
|
|
__asm__ __volatile__ ("fnstcw %0" : "=m" (control));
|
2013-10-02 02:57:19 +02:00
|
|
|
|
2014-02-25 15:49:41 +01:00
|
|
|
return (~control & FE_ALL_EXCEPT);
|
2013-10-02 02:57:19 +02:00
|
|
|
}
|