feupdateenv.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* Install given floating-point environment and raise exceptions.
  2. Copyright (C) 1997-2017 Free Software Foundation, Inc.
  3. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #include <fenv.h>
  16. int
  17. feupdateenv (const fenv_t *envp)
  18. {
  19. fexcept_t temp;
  20. unsigned int xtemp;
  21. /* Save current exceptions. */
  22. __asm__ ("fnstsw %0\n\tstmxcsr %1" : "=m" (*&temp), "=m" (xtemp));
  23. temp = (temp | xtemp) & FE_ALL_EXCEPT;
  24. /* Install new environment. */
  25. fesetenv (envp);
  26. /* Raise the saved exception. Incidently for us the implementation
  27. defined format of the values in objects of type fexcept_t is the
  28. same as the ones specified using the FE_* constants. */
  29. feraiseexcept ((int) temp);
  30. /* Success. */
  31. return 0;
  32. }