#include "src/fenv/feclearexcept.h"
#include "src/fenv/feraiseexcept.h"
#include "src/fenv/fetestexcept.h"
#include "src/__support/FPUtil/FEnvImpl.h"
#include "utils/UnitTest/Test.h"
#include <fenv.h>
TEST(LlvmLibcExceptionStatusTest, RaiseAndTest) {
__llvm_libc::fputil::disable_except(FE_ALL_EXCEPT);
int excepts[] = {FE_DIVBYZERO, FE_INVALID, FE_INEXACT, FE_OVERFLOW,
FE_UNDERFLOW};
constexpr int ALL_EXCEPTS =
FE_DIVBYZERO | FE_INVALID | FE_INEXACT | FE_OVERFLOW | FE_UNDERFLOW;
for (int e : excepts) {
int r = __llvm_libc::feraiseexcept(e);
ASSERT_EQ(r, 0);
int s = __llvm_libc::fetestexcept(e);
ASSERT_EQ(s, e);
r = __llvm_libc::feclearexcept(e);
ASSERT_EQ(r, 0);
s = __llvm_libc::fetestexcept(e);
ASSERT_EQ(s, 0);
}
for (int e1 : excepts) {
for (int e2 : excepts) {
int e = e1 | e2;
int r = __llvm_libc::feraiseexcept(e);
ASSERT_EQ(r, 0);
int s = __llvm_libc::fetestexcept(e);
ASSERT_EQ(s, e);
r = __llvm_libc::feclearexcept(e);
ASSERT_EQ(r, 0);
s = __llvm_libc::fetestexcept(e);
ASSERT_EQ(s, 0);
}
}
for (int e1 : excepts) {
for (int e2 : excepts) {
for (int e3 : excepts) {
int e = e1 | e2 | e3;
int r = __llvm_libc::feraiseexcept(e);
ASSERT_EQ(r, 0);
int s = __llvm_libc::fetestexcept(e);
ASSERT_EQ(s, e);
r = __llvm_libc::feclearexcept(e);
ASSERT_EQ(r, 0);
s = __llvm_libc::fetestexcept(e);
ASSERT_EQ(s, 0);
}
}
}
for (int e1 : excepts) {
for (int e2 : excepts) {
for (int e3 : excepts) {
for (int e4 : excepts) {
int e = e1 | e2 | e3 | e4;
int r = __llvm_libc::feraiseexcept(e);
ASSERT_EQ(r, 0);
int s = __llvm_libc::fetestexcept(e);
ASSERT_EQ(s, e);
r = __llvm_libc::feclearexcept(e);
ASSERT_EQ(r, 0);
s = __llvm_libc::fetestexcept(e);
ASSERT_EQ(s, 0);
}
}
}
}
for (int e1 : excepts) {
for (int e2 : excepts) {
for (int e3 : excepts) {
for (int e4 : excepts) {
for (int e5 : excepts) {
int e = e1 | e2 | e3 | e4 | e5;
int r = __llvm_libc::feraiseexcept(e);
ASSERT_EQ(r, 0);
int s = __llvm_libc::fetestexcept(e);
ASSERT_EQ(s, e);
r = __llvm_libc::feclearexcept(e);
ASSERT_EQ(r, 0);
s = __llvm_libc::fetestexcept(e);
ASSERT_EQ(s, 0);
}
}
}
}
}
int r = __llvm_libc::feraiseexcept(ALL_EXCEPTS);
ASSERT_EQ(r, 0);
int s = __llvm_libc::fetestexcept(ALL_EXCEPTS);
ASSERT_EQ(s, ALL_EXCEPTS);
}