#include <sys/param.h>
#include <complex.h>
#include <fenv.h>
#include <float.h>
#include <math.h>
#include <stdio.h>
#include "test-utils.h"
#pragma STDC FENV_ACCESS ON
#pragma STDC CX_LIMITED_RANGE OFF
#define test_t(type, func, z, result, exceptmask, excepts, checksign) \
do { \
volatile long double complex _d = z; \
volatile type complex _r = result; \
ATF_REQUIRE_EQ(0, feclearexcept(FE_ALL_EXCEPT)); \
CHECK_CFPEQUAL_CS((func)(_d), (_r), (checksign)); \
CHECK_FP_EXCEPTIONS_MSG(excepts, exceptmask, "for %s(%s)", \
#func, #z); \
} while (0)
#define test(func, z, result, exceptmask, excepts, checksign) \
test_t(double, func, z, result, exceptmask, excepts, checksign)
#define test_f(func, z, result, exceptmask, excepts, checksign) \
test_t(float, func, z, result, exceptmask, excepts, checksign)
#define test_tol(func, z, result, tol) do { \
CHECK_CFPEQUAL_TOL((func)(z), (result), (tol), \
FPE_ABS_ZERO | CS_BOTH); \
} while (0)
#define testall(x, result, exceptmask, excepts, checksign) do { \
test(cexp, x, result, exceptmask, excepts, checksign); \
test_f(cexpf, x, result, exceptmask, excepts, checksign); \
} while (0)
#define testall_tol(x, result, tol) do { \
test_tol(cexp, x, result, tol * DBL_ULP()); \
test_tol(cexpf, x, result, tol * FLT_ULP()); \
} while (0)
static const float finites[] =
{ -42.0e20, -1.0, -1.0e-10, -0.0, 0.0, 1.0e-10, 1.0, 42.0e20 };
ATF_TC_WITHOUT_HEAD(zero);
ATF_TC_BODY(zero, tc)
{
testall(0.0, 1.0, ALL_STD_EXCEPT, 0, 1);
testall(-0.0, 1.0, ALL_STD_EXCEPT, 0, 1);
testall(CMPLXL(0.0, -0.0), CMPLXL(1.0, -0.0), ALL_STD_EXCEPT, 0, 1);
testall(CMPLXL(-0.0, -0.0), CMPLXL(1.0, -0.0), ALL_STD_EXCEPT, 0, 1);
}
ATF_TC_WITHOUT_HEAD(nan);
ATF_TC_BODY(nan, tc)
{
unsigned i;
for (i = 0; i < nitems(finites); i++) {
testall(CMPLXL(finites[i], NAN), CMPLXL(NAN, NAN),
ALL_STD_EXCEPT & ~FE_INVALID, 0, 0);
if (finites[i] == 0.0)
continue;
testall(CMPLXL(NAN, finites[i]), CMPLXL(NAN, NAN),
ALL_STD_EXCEPT & ~(FE_INVALID | FE_INEXACT), 0, 0);
}
testall(CMPLXL(NAN, 0.0), CMPLXL(NAN, 0.0), ALL_STD_EXCEPT, 0, 1);
testall(CMPLXL(NAN, -0.0), CMPLXL(NAN, -0.0), ALL_STD_EXCEPT, 0, 1);
testall(CMPLXL(INFINITY, NAN), CMPLXL(INFINITY, NAN),
ALL_STD_EXCEPT, 0, 0);
testall(CMPLXL(-INFINITY, NAN), CMPLXL(0.0, 0.0),
ALL_STD_EXCEPT, 0, 0);
testall(CMPLXL(NAN, NAN), CMPLXL(NAN, NAN),
ALL_STD_EXCEPT, 0, 0);
}
ATF_TC_WITHOUT_HEAD(inf);
ATF_TC_BODY(inf, tc)
{
unsigned i;
for (i = 0; i < nitems(finites); i++) {
testall(CMPLXL(finites[i], INFINITY), CMPLXL(NAN, NAN),
ALL_STD_EXCEPT, FE_INVALID, 1);
}
testall(CMPLXL(-INFINITY, M_PI_4), CMPLXL(0.0, 0.0),
ALL_STD_EXCEPT & ~FE_INEXACT, 0, 1);
testall(CMPLXL(-INFINITY, 3 * M_PI_4), CMPLXL(-0.0, 0.0),
ALL_STD_EXCEPT & ~FE_INEXACT, 0, 1);
testall(CMPLXL(-INFINITY, 5 * M_PI_4), CMPLXL(-0.0, -0.0),
ALL_STD_EXCEPT & ~FE_INEXACT, 0, 1);
testall(CMPLXL(-INFINITY, 7 * M_PI_4), CMPLXL(0.0, -0.0),
ALL_STD_EXCEPT & ~FE_INEXACT, 0, 1);
testall(CMPLXL(-INFINITY, 0.0), CMPLXL(0.0, 0.0),
ALL_STD_EXCEPT, 0, 1);
testall(CMPLXL(-INFINITY, -0.0), CMPLXL(0.0, -0.0),
ALL_STD_EXCEPT, 0, 1);
testall(CMPLXL(INFINITY, M_PI_4), CMPLXL(INFINITY, INFINITY),
ALL_STD_EXCEPT & ~FE_INEXACT, 0, 1);
testall(CMPLXL(INFINITY, 3 * M_PI_4), CMPLXL(-INFINITY, INFINITY),
ALL_STD_EXCEPT & ~FE_INEXACT, 0, 1);
testall(CMPLXL(INFINITY, 5 * M_PI_4), CMPLXL(-INFINITY, -INFINITY),
ALL_STD_EXCEPT & ~FE_INEXACT, 0, 1);
testall(CMPLXL(INFINITY, 7 * M_PI_4), CMPLXL(INFINITY, -INFINITY),
ALL_STD_EXCEPT & ~FE_INEXACT, 0, 1);
testall(CMPLXL(INFINITY, 0.0), CMPLXL(INFINITY, 0.0),
ALL_STD_EXCEPT, 0, 1);
testall(CMPLXL(INFINITY, -0.0), CMPLXL(INFINITY, -0.0),
ALL_STD_EXCEPT, 0, 1);
}
ATF_TC_WITHOUT_HEAD(reals);
ATF_TC_BODY(reals, tc)
{
unsigned i;
for (i = 0; i < nitems(finites); i++) {
test(cexp, CMPLXL(finites[i], 0.0),
CMPLXL(exp(finites[i]), 0.0),
FE_INVALID | FE_DIVBYZERO, 0, 1);
test(cexp, CMPLXL(finites[i], -0.0),
CMPLXL(exp(finites[i]), -0.0),
FE_INVALID | FE_DIVBYZERO, 0, 1);
test_f(cexpf, CMPLXL(finites[i], 0.0),
CMPLXL(expf(finites[i]), 0.0),
FE_INVALID | FE_DIVBYZERO, 0, 1);
test_f(cexpf, CMPLXL(finites[i], -0.0),
CMPLXL(expf(finites[i]), -0.0),
FE_INVALID | FE_DIVBYZERO, 0, 1);
}
}
ATF_TC_WITHOUT_HEAD(imaginaries);
ATF_TC_BODY(imaginaries, tc)
{
unsigned i;
for (i = 0; i < nitems(finites); i++) {
test(cexp, CMPLXL(0.0, finites[i]),
CMPLXL(cos(finites[i]), sin(finites[i])),
ALL_STD_EXCEPT & ~FE_INEXACT, 0, 1);
test(cexp, CMPLXL(-0.0, finites[i]),
CMPLXL(cos(finites[i]), sin(finites[i])),
ALL_STD_EXCEPT & ~FE_INEXACT, 0, 1);
test_f(cexpf, CMPLXL(0.0, finites[i]),
CMPLXL(cosf(finites[i]), sinf(finites[i])),
ALL_STD_EXCEPT & ~FE_INEXACT, 0, 1);
test_f(cexpf, CMPLXL(-0.0, finites[i]),
CMPLXL(cosf(finites[i]), sinf(finites[i])),
ALL_STD_EXCEPT & ~FE_INEXACT, 0, 1);
}
}
ATF_TC_WITHOUT_HEAD(small);
ATF_TC_BODY(small, tc)
{
#if defined(__riscv)
atf_tc_expect_death("https://bugs.freebsd.org/290099");
#endif
static const double tests[] = {
1.0, M_PI_4, M_SQRT2 * 0.5 * M_E, M_SQRT2 * 0.5 * M_E,
-1.0, M_PI_4, M_SQRT2 * 0.5 / M_E, M_SQRT2 * 0.5 / M_E,
2.0, M_PI_2, 0.0, M_E * M_E,
M_LN2, M_PI, -2.0, 0.0,
};
double a, b;
double x, y;
unsigned i;
for (i = 0; i < nitems(tests); i += 4) {
a = tests[i];
b = tests[i + 1];
x = tests[i + 2];
y = tests[i + 3];
test_tol(cexp, CMPLXL(a, b), CMPLXL(x, y), 3 * DBL_ULP());
if (x == 0 || y == 0)
continue;
test_tol(cexpf, CMPLXL(a, b), CMPLXL(x, y), 1 * FLT_ULP());
}
}
ATF_TC_WITHOUT_HEAD(large);
ATF_TC_BODY(large, tc)
{
test_tol(cexp, CMPLXL(709.79, 0x1p-1074),
CMPLXL(INFINITY, 8.94674309915433533273e-16), DBL_ULP());
test_tol(cexp, CMPLXL(1000, 0x1p-1074),
CMPLXL(INFINITY, 9.73344457300016401328e+110), DBL_ULP());
test_tol(cexp, CMPLXL(1400, 0x1p-1074),
CMPLXL(INFINITY, 5.08228858149196559681e+284), DBL_ULP());
test_tol(cexp, CMPLXL(900, 0x1.23456789abcdep-1020),
CMPLXL(INFINITY, 7.42156649354218408074e+83), DBL_ULP());
test_tol(cexp, CMPLXL(1300, 0x1.23456789abcdep-1020),
CMPLXL(INFINITY, 3.87514844965996756704e+257), DBL_ULP());
test_tol(cexpf, CMPLXL(88.73, 0x1p-149),
CMPLXL(INFINITY, 4.80265603e-07), 2 * FLT_ULP());
test_tol(cexpf, CMPLXL(90, 0x1p-149),
CMPLXL(INFINITY, 1.7101492622e-06f), 2 * FLT_ULP());
test_tol(cexpf, CMPLXL(192, 0x1p-149),
CMPLXL(INFINITY, 3.396809344e+38f), 2 * FLT_ULP());
test_tol(cexpf, CMPLXL(120, 0x1.234568p-120),
CMPLXL(INFINITY, 1.1163382522e+16f), 2 * FLT_ULP());
test_tol(cexpf, CMPLXL(170, 0x1.234568p-120),
CMPLXL(INFINITY, 5.7878851079e+37f), 2 * FLT_ULP());
}
ATF_TP_ADD_TCS(tp)
{
ATF_TP_ADD_TC(tp, zero);
ATF_TP_ADD_TC(tp, nan);
ATF_TP_ADD_TC(tp, inf);
ATF_TP_ADD_TC(tp, reals);
ATF_TP_ADD_TC(tp, imaginaries);
ATF_TP_ADD_TC(tp, small);
ATF_TP_ADD_TC(tp, large);
return (atf_no_error());
}