2002-10-19 20:06:29 +00:00
|
|
|
/* Install given floating-point environment and raise exceptions
|
|
|
|
(soft-float edition).
|
2017-01-01 00:14:16 +00:00
|
|
|
Copyright (C) 2002-2017 Free Software Foundation, Inc.
|
2002-10-19 20:06:29 +00:00
|
|
|
Contributed by Aldy Hernandez <aldyh@redhat.com>, 2002.
|
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-09 23:56:38 +00:00
|
|
|
License along with the GNU C Library. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2002-10-19 20:06:29 +00:00
|
|
|
|
|
|
|
#include "soft-fp.h"
|
|
|
|
#include "soft-supp.h"
|
2007-08-29 20:34:36 +00:00
|
|
|
#include <signal.h>
|
2002-10-19 20:06:29 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
__feupdateenv (const fenv_t *envp)
|
|
|
|
{
|
|
|
|
int saved_exceptions;
|
|
|
|
|
|
|
|
/* Save currently set exceptions. */
|
2013-11-19 13:39:56 +00:00
|
|
|
saved_exceptions = __sim_exceptions_thread;
|
2002-10-19 20:06:29 +00:00
|
|
|
|
|
|
|
/* Set environment. */
|
2015-01-06 23:36:20 +00:00
|
|
|
__fesetenv (envp);
|
2002-10-19 20:06:29 +00:00
|
|
|
|
|
|
|
/* Raise old exceptions. */
|
2013-11-19 13:39:56 +00:00
|
|
|
__sim_exceptions_thread |= saved_exceptions;
|
|
|
|
SIM_SET_GLOBAL (__sim_exceptions_global, __sim_exceptions_thread);
|
|
|
|
if (saved_exceptions & ~__sim_disabled_exceptions_thread)
|
2007-08-29 20:34:36 +00:00
|
|
|
raise (SIGFPE);
|
2002-10-19 20:06:29 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#include <shlib-compat.h>
|
|
|
|
#if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
|
|
|
|
strong_alias (__feupdateenv, __old_feupdateenv)
|
2013-02-14 13:12:02 +00:00
|
|
|
compat_symbol (libm, __old_feupdateenv, feupdateenv, GLIBC_2_1);
|
2002-10-19 20:06:29 +00:00
|
|
|
#endif
|
|
|
|
|
2015-01-07 19:01:20 +00:00
|
|
|
libm_hidden_def (__feupdateenv)
|
2010-10-11 14:58:26 +00:00
|
|
|
libm_hidden_ver (__feupdateenv, feupdateenv)
|
2013-02-14 13:12:02 +00:00
|
|
|
versioned_symbol (libm, __feupdateenv, feupdateenv, GLIBC_2_2);
|