blob: 0f99541b2fe8c5a9a76c7021ee2290afc116fbac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
(C) Copyright 2019 Kalray S.A.
This file provides fegetenv for the Coolidge processor.
*/
#include <fenv.h>
int fegetenv(fenv_t *envp)
{
/* Get the current environment ($cs) */
fenv_t fe;
fe = __builtin_kvx_get(KVX_SFR_CS);
/* Mask $cs status to keep exception flags and rounding mode only. */
*envp = (fe & (FE_ALL_EXCEPT | FE_RND_MASK));
/* The above insn cannot fail (while the OS allows access to the
floating-point exception flags of the $cs register). Return
success. */
return 0;
}
|