Blame src/math/dremf.c

Szabolcs Nagy b35e81
#define _GNU_SOURCE
Szabolcs Nagy b35e81
#include <stdint.h>
Szabolcs Nagy b35e81
#include <stdio.h>
Szabolcs Nagy b35e81
#include "mtest.h"
Szabolcs Nagy b35e81
Szabolcs Nagy b35e81
static struct ff_f t[] = {
Szabolcs Nagy b35e81
#include "sanity/remainderf.h"
Szabolcs Nagy b35e81
#include "special/remainderf.h"
Szabolcs Nagy b35e81
Szabolcs Nagy b35e81
};
Szabolcs Nagy b35e81
Szabolcs Nagy b35e81
int main(void)
Szabolcs Nagy b35e81
{
Szabolcs Nagy b35e81
	#pragma STDC FENV_ACCESS ON
Szabolcs Nagy b35e81
	float y;
Szabolcs Nagy b35e81
	float d;
Szabolcs Nagy b35e81
	int e, i, err = 0;
Szabolcs Nagy b35e81
	struct ff_f *p;
Szabolcs Nagy b35e81
Szabolcs Nagy b35e81
	for (i = 0; i < sizeof t/sizeof *t; i++) {
Szabolcs Nagy b35e81
		p = t + i;
Szabolcs Nagy b35e81
Szabolcs Nagy b35e81
		if (p->r < 0)
Szabolcs Nagy b35e81
			continue;
Szabolcs Nagy b35e81
		fesetround(p->r);
Szabolcs Nagy b35e81
		feclearexcept(FE_ALL_EXCEPT);
Szabolcs Nagy b35e81
		y = dremf(p->x, p->x2);
Szabolcs Nagy b35e81
		e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
Szabolcs Nagy b35e81
Szabolcs Nagy b35e81
		if (!checkexcept(e, p->e, p->r)) {
Szabolcs Nagy b35e81
			printf("%s:%d: bad fp exception: %s dremf(%a,%a)=%a, want %s",
Szabolcs Nagy b35e81
				p->file, p->line, rstr(p->r), p->x, p->x2, p->y, estr(p->e));
Szabolcs Nagy b35e81
			printf(" got %s\n", estr(e));
Szabolcs Nagy b35e81
			err++;
Szabolcs Nagy b35e81
		}
Szabolcs Nagy b35e81
		d = ulperrf(y, p->y, p->dy);
Szabolcs Nagy b35e81
		if (!checkcr(y, p->y, p->r)) {
Szabolcs Nagy b35e81
			printf("%s:%d: %s dremf(%a,%a) want %a got %a ulperr %.3f = %a + %a\n",
Szabolcs Nagy b35e81
				p->file, p->line, rstr(p->r), p->x, p->x2, p->y, y, d, d-p->dy, p->dy);
Szabolcs Nagy b35e81
			err++;
Szabolcs Nagy b35e81
		}
Szabolcs Nagy b35e81
	}
Szabolcs Nagy b35e81
	return !!err;
Szabolcs Nagy b35e81
}