feholdexcpt.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright (C) 2016-2017 Andes Technology, Inc.
  3. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  4. */
  5. /* Store current floating-point environment and clear exceptions.
  6. Copyright (C) 1997-2013 Free Software Foundation, Inc.
  7. The GNU C Library is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU Lesser General Public
  9. License as published by the Free Software Foundation; either
  10. version 2.1 of the License, or (at your option) any later version.
  11. The GNU C Library is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. Lesser General Public License for more details.
  15. You should have received a copy of the GNU Lesser General Public
  16. License along with the GNU C Library. If not, see
  17. <http://www.gnu.org/licenses/>. */
  18. #include <fenv.h>
  19. #include <fpu_control.h>
  20. #include "fenv_libc.h"
  21. int
  22. feholdexcept (fenv_t *envp)
  23. {
  24. #ifdef __NDS32_ABI_2FP_PLUS__
  25. unsigned long int temp;
  26. /* Store the environment. */
  27. _FPU_GETCW(temp);
  28. envp->__fpcsr = temp;
  29. /* Now set all exceptions to non-stop. */
  30. temp &= ~(FE_ALL_EXCEPT << ENABLE_SHIFT);
  31. /* And clear all exception flags. */
  32. temp &= ~FE_ALL_EXCEPT;
  33. _FPU_SETCW(temp);
  34. return 0;
  35. #else
  36. /* Unsupported, so fail. */
  37. return 1;
  38. #endif
  39. }