fesetexceptflag.c 671 B

123456789101112131415161718192021222324
  1. /*
  2. (C) Copyright 2019 Kalray S.A.
  3. This file provides fesetexceptflag for the Coolidge processor.
  4. */
  5. #include <fenv.h>
  6. int fesetexceptflag(const fexcept_t *flagp, int excepts)
  7. {
  8. /* Mask excepts to be sure only supported flag bits are set */
  9. excepts &= FE_ALL_EXCEPT;
  10. /* Set the requested flags */
  11. fexcept_t flags = (*flagp & excepts);
  12. /* Set $cs with 'flags' as a set mask and FE_ALL_EXCEPT as a clear
  13. mask. */
  14. __builtin_kvx_wfxl(KVX_SFR_CS, (long long)flags << 32 | FE_ALL_EXCEPT);
  15. /* The above insn cannot fail (while the OS allows access to the
  16. floating-point exception flags of the $cs register). Return
  17. success. */
  18. return 0;
  19. }