jehanne/qa/kern/float.c
Giacomo Tesio e70feee4a3 libc: introduce "jehanne_" namespace
With this commit all functions declared in libc.h have been renamed
with the "jehanne_" prefix. This is done for several reason:

- it removes conflicts during symbol resolution when linking
  standard C libraries like newlib or musl
- it allows programs depending on a standard C library to directly
  link to a library depending on our non standard libc (eg libsec).

To ease transiction two files are provided:

- sys/include/lib9.h that can be included instead of <libc.h> to use
  the old names (via a simple set of macros)
- sys/src/lib/c/lib9.c that can be compiled with a program where the
  macro provided by lib9.h are too dumb (see for example rc or grep).

In the kernel port/lib.h has been modified accordingly and some of
the functions it directly provides has been renamed too (eg malloc
in qmalloc.c and print in devcons.c).
2017-04-19 23:48:21 +02:00

62 lines
955 B
C

#include <u.h>
#include <lib9.h>
#define DPRECSTR "0.0000004000000000125"
#define DPREC 0.0000004000000000125
#define DIEEELO 0x9ac0499f
#define DIEEEHI 0x3e9ad7f2
jmp_buf errj;
char *err;
void
catcher(void *u, char *s)
{
err = 0;
if(strncmp(s, "sys: fp:", 8) == 0){
err = s;
notejmp(u, errj, 0);
}
noted(NDFLT);
}
void
tstdiv(double p)
{
double r = 1.0;
r /= p;
fprint(2, "1/%0.20g = %0.20g\n", p, r);
}
void
main(void)
{
double p = DPREC;
int d[2] = { DIEEELO, DIEEEHI };
uint64_t dieee, q;
dieee = *(uint64_t*)d;
q = *(uint64_t*)&p;
err = 0;
notify(catcher);
setjmp(errj);
if(err){
fprint(2, "FAIL: %s\n", err);
exits("FAIL");
}
fprint(2, "Double-precision test number: %s\n", DPRECSTR);
fprint(2, "Expected internal representation: %ullx\n", dieee);
fprint(2, "Actual internal representation: %ullx\n", q);
if(q != dieee) {
print("FAIL\n");
exits("FAIL");
}
tstdiv(p);
print("PASS\n");
exits("PASS");
}