home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume6 / config2 < prev    next >
Text File  |  1989-04-30  |  51KB  |  1,735 lines

  1. Newsgroups: comp.sources.misc
  2. From: allbery@uunet.UU.NET (Brandon S. Allbery - comp.sources.misc)
  3. Subject: v06i096: config.c - everything you wanted to know about your C compiler
  4. Reply-To: steven@cwi.nl (Steven Pemberton)
  5. Distribution: world
  6. Organization: CWI, Amsterdam
  7.  
  8. Posting-number: Volume 6, Issue 96
  9. Submitted-by: steven@cwi.nl (Steven Pemberton)
  10. Archive-name: config2
  11.  
  12. This is a new version of a program that I started writing a few years
  13. ago to automatically configure a large software system to the machine
  14. it was to run on. Earlier versions of the program were also
  15. distributed to the net.
  16.  
  17. The program tells you about lots of properties of your machine and C
  18. compiler, and this version optionally produces the ANSI C float.h and
  19. limits.h files. It also pinpoints some possible faults in your
  20. compiler, and offers the option of verifying that the compiler is
  21. correctly able to read the header files.
  22.  
  23. ---------------------- CUT HERE -------------------------------------
  24. #! /bin/sh
  25. # This file was wrapped with "dummyshar".  "sh" this file to extract.
  26. # Contents:  config.c
  27. echo extracting 'config.c'
  28. if test -f 'config.c' -a -z "$1"; then echo Not overwriting 'config.c'; else
  29. sed 's/^X//' << \EOF > 'config.c'
  30. X/* Everything you wanted to know about your machine and C compiler,
  31. X   but didn't know who to ask.
  32. X   Author: Steven Pemberton, CWI, Amsterdam; steven@cwi.nl
  33. X   Bugfixes and upgrades gratefully received.
  34. X
  35. X   Copyright (c) 1988, 1989 Steven Pemberton, CWI, Amsterdam.
  36. X   All rights reserved.
  37. X
  38. X   COMPILING
  39. X   With luck and a following wind, just the following will work:
  40. X    cc config.c -o config
  41. X
  42. X   If your compiler doesn't support:        add flag:
  43. X    signed char (eg pcc)            -DNO_SC
  44. X    unsigned char                -DNO_UC
  45. X    unsigned short and long            -DNO_UI
  46. X    signal(), or setjmp/longjmp()        -DNO_SIG
  47. X
  48. X   Try it first with no flags, and see if you get any errors - you might be
  49. X   surprised. (Most non-ANSI compilers need -DNO_SC, though.)
  50. X   Some compilers need a -f flag for floating point.
  51. X
  52. X   Don't use any optimisation flags: the program may not work if you do.
  53. X   Though "while (a+1.0-a-1.0 == 0.0)" may look like "while(1)" to an
  54. X   optimiser, to a floating-point unit there's a world of difference.
  55. X
  56. X   Some compilers offer various flags for different floating point
  57. X   modes; it's worth trying all possible combinations of these.
  58. X
  59. X   Add -DID=\"name\" if you want the machine/flags identified in the output.
  60. X
  61. X   SYSTEM DEPENDENCIES
  62. X   You may possibly need to add some calls to signal() for other sorts of
  63. X   exception on your machine than SIGFPE, and SIGOVER.  See lines beginning
  64. X   #ifdef SIGxxx in main() (and communicate the differences to me!).
  65. X
  66. X   If your C preprocessor doesn't have the predefined __FILE__ macro, and
  67. X   you want to call this file anything other than config.c, change the
  68. X   #define command for __FILE__ accordingly.  If it doesn't accept macro
  69. X   names at all in #include lines, order a new C compiler. While you're
  70. X   waiting for it to arrive, change the last #include in this file (the
  71. X   last but one line) accordingly.
  72. X
  73. X   OUTPUT
  74. X   Run without argument to get the information as English text.  If run
  75. X   with argument -l (e.g. config -l), output is a series of #define's for
  76. X   the ANSI standard limits.h include file, excluding MB_MAX_CHAR.  If run
  77. X   with argument -f, output is a series of #define's for the ANSI standard
  78. X   float.h include file.  Flag -v gives verbose output: output includes the
  79. X   English text above as C comments.  The program exit(0)'s if everything
  80. X   went ok, otherwise it exits with a positive number, telling how many
  81. X   problems there were.
  82. X
  83. X   VERIFYING THE COMPILER
  84. X   If, having produced the float.h and limits.h header files, you want to
  85. X   verify that the compiler reads them back correctly (there are a lot of
  86. X   boundary cases, of course, like minimum and maximum numbers), you can
  87. X   recompile config.c with -DVERIFY set (plus the other flags that you used
  88. X   when compiling the version that produced the header files).  This then
  89. X   recompiles the program so that it #includes "limits.h" and "float.h",
  90. X   and checks that the constants it finds there are the same as the
  91. X   constants it produces. Run the resulting program with config -fl.  As of
  92. X   this writing, of 21 compiler/flags combinations only 1 compiler has
  93. X   passed without error! (The honour goes to 'pcc' on an IBM RT.)
  94. X
  95. X   You can also use this option if your compiler already has both files,
  96. X   and you want to confirm that this program produces the right results.
  97. X
  98. X   TROUBLE SHOOTING.
  99. X   This program is now quite trustworthy, and suspicious and wrong output
  100. X   may well be caused by bugs in the compiler, not in the program (however
  101. X   of course, this is not guaranteed, and no responsibility can be
  102. X   accepted, etc.)
  103. X
  104. X   The program only works if overflows are ignored by the C system or
  105. X   are catchable with signal().
  106. X
  107. X   If the program fails to run to completion (often with the error message
  108. X   "Unexpected signal at point x"), this often turns out to be a bug in the
  109. X   C compiler's run-time system. Check what was about to be printed, and
  110. X   try to narrow the problem down.
  111. X
  112. X   Another possible problem is that you have compiled the program to produce
  113. X   loss-of-precision arithmetic traps. The program cannot cope with these,
  114. X   and you should re-compile without them. (They should never be the default).
  115. X
  116. X   Make sure you compiled with optimisation turned off.
  117. X
  118. X   Output preceded by *** WARNING: identifies behaviour of the C system
  119. X   deemed incorrect by the program. Likely problems are that printf or
  120. X   scanf don't cope properly with certain boundary numbers.  For each float
  121. X   and double that is printed, the printed value is checked that it is
  122. X   correct by using sscanf to read it back.  Care is taken that numbers are
  123. X   printed with enough digits to uniquely identify them, and therefore that
  124. X   they can be read back identically. If the number read back is different,
  125. X   the program prints a warning message. If the two numbers in the warning
  126. X   look identical, then printf is more than likely rounding the last
  127. X   digit(s) incorrectly.  To put you at ease that the two really are
  128. X   different, the bit patterns of the two numbers are also printed.  The
  129. X   difference is very likely in the last bit.  Many scanf's read the
  130. X   minimum double back as 0.0, and similarly cause overflow when reading
  131. X   the maximum double.  The program quite ruthlessly declares all these
  132. X   behaviours faulty.
  133. X
  134. X   The warning that "a cast didn't work" refers to cases like this:
  135. X
  136. X      float f;
  137. X      #define C 1.234567890123456789
  138. X      f= C;
  139. X      if (f != (float) C) printf ("Wrong!");
  140. X
  141. X   A faulty compiler will widen f to double and ignore the cast to float,
  142. X   and because there is more accuracy in a double than a float, fail to
  143. X   recognise that they are the same. In the actual case in point, f and C
  144. X   are passed as parameters to a function that discovers they are not equal,
  145. X   so it's just possible that the error was in the parameter passing,
  146. X   not in the cast (see function Validate()).
  147. X   For ANSI C, which has float constants, the error message is "constant has
  148. X   wrong precision".
  149. X
  150. X   REPORTING PROBLEMS
  151. X   If the program doesn't work for you for any reason that can't be
  152. X   narrowed down to a problem in the C compiler, or it has to be changed in
  153. X   order to get it to compile, or it produces suspicious output (like a very
  154. X   low maximum float, for instance), please mail the problem and an example
  155. X   of the incorrect output to steven@cwi.nl or mcvax!steven.uucp, so that
  156. X   improvements can be worked into future versions; mcvax/cwi.nl is the
  157. X   European backbone, and is connected to uunet and other fine hosts.
  158. X
  159. X   This version of the program is the first to try to catch and diagnose
  160. X   bugs in the compiler/run-time system. I would be especially pleased to
  161. X   have reports of failures so that I can improve this service.
  162. X
  163. X   I apologise unreservedly for the contorted use of the preprocessor...
  164. X
  165. X   THE SMALL PRINT
  166. X   You may copy and distribute verbatim copies of this source file.
  167. X
  168. X   You may modify this source file, and copy and distribute such
  169. X   modified versions, provided that you leave the copyright notice
  170. X   at the top of the file and also cause the modified file to carry
  171. X   prominent notices stating that you changed the files and the date
  172. X   of any change; and cause the whole of any work that you distribute
  173. X   or publish, that in whole or in part contains or is a derivative of
  174. X   this program or any part thereof, to be licensed at no charge to
  175. X   all third parties on terms identical to those here.
  176. X
  177. X   If you do have a fix to any problem, please send it to me, so that
  178. X   other people can have the benefits.
  179. X
  180. X   While every effort has been taken to make this program as reliable as
  181. X   possible, no responsibility can be taken for the correctness of the
  182. X   output, or suitability for any particular use.
  183. X
  184. X   ACKNOWLEDGEMENTS
  185. X   Many people have given time and ideas to making this program what it is.
  186. X   To all of them thanks, and apologies for not mentioning them by name.
  187. X*/
  188. X
  189. X#ifndef __FILE__
  190. X#define __FILE__ "config.c"
  191. X#endif
  192. X
  193. X#ifndef PASS
  194. X#define PASS 1
  195. X#define PASS1 1
  196. X#define VERSION "4.1"
  197. X
  198. X/* Procedure just marks the functions that don't return a result */
  199. X#ifdef Procedure
  200. X#undef Procedure
  201. X#endif
  202. X#define Procedure
  203. X
  204. X#define Vprintf if (V) printf
  205. X
  206. X/* stdc is used in tests like if (stdc) */
  207. X#ifdef __STDC__
  208. X#define stdc 1
  209. X#else
  210. X#define stdc 0
  211. X#endif
  212. X
  213. X/* volatile is used to reduce the chance of optimisation,
  214. X   and to prevent variables being put in registers (when setjmp/longjmp
  215. X   wouldn't work as we want)  */
  216. X#ifndef __STDC__
  217. X#define volatile static
  218. X#endif
  219. X
  220. X#include <stdio.h>
  221. X
  222. X#ifdef VERIFY
  223. X#include "limits.h"
  224. X#include "float.h"
  225. X#endif
  226. X
  227. X#ifdef NO_SIG  /* There's no signal(), or setjmp/longjmp() */
  228. X
  229. X    /* Dummy routines instead */
  230. X    int lab=1;
  231. X    int setjmp(lab) int lab; { return(0); }
  232. X    signal(i, p) int i, (*p)(); {}
  233. X
  234. X#else
  235. X
  236. X#include <signal.h>
  237. X#include <setjmp.h>
  238. X
  239. X    jmp_buf lab;
  240. X    overflow(sig) int sig; { /* what to do on overflow/underflow */
  241. X        signal(sig, overflow);
  242. X        longjmp(lab, 1);
  243. X    }
  244. X
  245. X#endif /*NO_SIG*/
  246. X
  247. X#define Unexpected(place) if (setjmp(lab)!=0) croak(place)
  248. X
  249. Xint V= 0,    /* verbose */
  250. X    L= 0,    /* produce limits.h */
  251. X    F= 0,    /* produce float.h  */
  252. X    bugs=0;    /* The number of (possible) bugs in the output */
  253. X
  254. Xchar co[4], oc[4]; /* Comment starter and ender symbols */
  255. X
  256. Xint bits_per_byte; /* the number of bits per unit returned by sizeof() */
  257. X
  258. X#ifdef TEST
  259. X/* Set the fp modes on a SUN with 68881 chip, to check that different
  260. X   rounding modes etc. get properly detected.
  261. X   Compile with additional flag -DTEST, and run with additional parameter
  262. X   +hex-number, to set the 68881 mode register to hex-number
  263. X*/
  264. X
  265. X/* Bits 0x30 = rounding mode: */
  266. X#define ROUND_BITS    0x30
  267. X#define TO_NEAREST    0x00
  268. X#define TO_ZERO        0x10
  269. X#define TO_MINUS_INF    0x20
  270. X#define TO_PLUS_INF    0x30 /* The SUN FP user's guide seems to be wrong here */
  271. X
  272. X/* Bits 0xc0 = extended rounding: */
  273. X#define EXT_BITS    0xc0
  274. X#define ROUND_EXTENDED    0x00
  275. X#define ROUND_SINGLE     0x40
  276. X#define ROUND_DOUBLE    0x80
  277. X
  278. X/* Enabled traps: */
  279. X#define EXE_INEX1  0x100
  280. X#define EXE_INEX2  0x200
  281. X#define EXE_DZ       0x400
  282. X#define EXE_UNFL   0x800
  283. X#define EXE_OVFL  0x1000
  284. X#define EXE_OPERR 0x2000
  285. X#define EXE_SNAN  0x4000
  286. X#define EXE_BSUN  0x8000
  287. X
  288. Xprintmode(new) unsigned new; {
  289. X    fpmode_(&new);
  290. X    printf("New fp mode:\n");
  291. X    printf("  Round toward ");
  292. X    switch (new & ROUND_BITS) {
  293. X          case TO_NEAREST:   printf("nearest"); break;
  294. X          case TO_ZERO:      printf("zero"); break;
  295. X          case TO_MINUS_INF: printf("minus infinity"); break;
  296. X          case TO_PLUS_INF:  printf("plus infinity"); break;
  297. X          default: printf("???"); break;
  298. X    }
  299. X
  300. X    printf("\n  Extended rounding precision: ");
  301. X
  302. X    switch (new & EXT_BITS) {
  303. X          case ROUND_EXTENDED: printf("extended"); break;
  304. X          case ROUND_SINGLE:   printf("single"); break;
  305. X          case ROUND_DOUBLE:   printf("double"); break;
  306. X          default: printf("???"); break;
  307. X    }
  308. X
  309. X    printf("\n  Enabled exceptions:");
  310. X    if (new & (unsigned) EXE_INEX1) printf(" inex1");
  311. X    if (new & (unsigned) EXE_INEX2) printf(" inex2");
  312. X    if (new & (unsigned) EXE_DZ)    printf(" dz"); 
  313. X    if (new & (unsigned) EXE_UNFL)  printf(" unfl"); 
  314. X    if (new & (unsigned) EXE_OVFL)  printf(" ovfl"); 
  315. X    if (new & (unsigned) EXE_OPERR) printf(" operr"); 
  316. X    if (new & (unsigned) EXE_SNAN)  printf(" snan"); 
  317. X    if (new & (unsigned) EXE_BSUN)  printf(" bsun"); 
  318. X    printf("\n");
  319. X}
  320. X
  321. Xint setmode(s) char *s; {
  322. X    unsigned mode=0, dig;
  323. X    char c;
  324. X
  325. X    while (*s) {
  326. X        c= *s++;
  327. X        if  (c>='0' && c<='9') dig= c-'0';
  328. X        else if (c>='a' && c<='f') dig= c-'a'+10;
  329. X        else if (c>='A' && c<='F') dig= c-'A'+10;
  330. X        else return 1;
  331. X        mode= mode<<4 | dig;
  332. X    }
  333. X    printmode(mode);
  334. X    return 0;
  335. X}
  336. X#else
  337. Xint setmode(s) char *s; {
  338. X    fprintf(stderr, "Can't set mode: not compiled with TEST\n");
  339. X    return(1);
  340. X}
  341. X#endif
  342. X
  343. Xcroak(place) int place; {
  344. X    printf("*** Unexpected signal at point %d\n", place);
  345. X    exit(bugs+1); /* An exit isn't essential here, but avoids loops */
  346. X}
  347. X
  348. Xmain(argc, argv) int argc; char *argv[]; {
  349. X    int dprec, fprec, lprec, basic(), fprop(), dprop(), efprop(), edprop();
  350. X    char *malloc();
  351. X    unsigned int size;
  352. X    long total;
  353. X    int i; char *s; int bad;
  354. X
  355. X#ifdef SIGFPE
  356. X    signal(SIGFPE, overflow);
  357. X#endif
  358. X#ifdef SIGOVER
  359. X    signal(SIGOVER, overflow);
  360. X#endif
  361. X/* Add more calls as necessary */
  362. X
  363. X    Unexpected(1);
  364. X
  365. X    bad=0;
  366. X    for (i=1; i < argc; i++) {
  367. X        s= argv[i];
  368. X        if (*s == '-') {
  369. X            s++;
  370. X            while (*s) {
  371. X                switch (*(s++)) {
  372. X                      case 'v': V=1; break;
  373. X                      case 'l': L=1; break;
  374. X                      case 'f': F=1; break;
  375. X                      default: bad=1; break;
  376. X                }
  377. X            }
  378. X        } else if (*s == '+') {
  379. X            s++;
  380. X            bad= setmode(s);
  381. X        } else bad= 1;
  382. X    }
  383. X    if (bad) {
  384. X        fprintf(stderr,
  385. X            "Usage: %s [-vlf]\n  v=Verbose l=Limits.h f=Float.h\n",
  386. X            argv[0]);
  387. X        exit(1);
  388. X    }
  389. X    if (L || F) {
  390. X        co[0]= '/'; oc[0]= ' ';
  391. X        co[1]= '*'; oc[1]= '*';
  392. X        co[2]= ' '; oc[2]= '/';
  393. X        co[3]= '\0'; oc[3]= '\0';
  394. X    } else {
  395. X        co[0]= '\0'; oc[0]= '\0';
  396. X        V=1;
  397. X    }
  398. X
  399. X    if (L) printf("%slimits.h%s\n", co, oc);
  400. X    if (F) printf("%sfloat.h%s\n", co, oc);
  401. X#ifdef ID
  402. X    printf("%sProduced on %s by config version %s, CWI, Amsterdam%s\n",
  403. X           co, ID, VERSION, oc);
  404. X#else
  405. X    printf("%sProduced by config version %s, CWI, Amsterdam%s\n",
  406. X           co, VERSION, oc);
  407. X#endif
  408. X
  409. X#ifdef VERIFY
  410. X    printf("%sVerification phase%s\n", co, oc);
  411. X#endif
  412. X
  413. X#ifdef NO_SIG
  414. X    Vprintf("%sCompiled without signal(): %s%s\n",
  415. X        co,
  416. X        "there's nothing that can be done if overflow occurs",
  417. X        oc);
  418. X#endif
  419. X#ifdef NO_SC
  420. X    Vprintf("%sCompiled without signed char%s\n", co, oc);
  421. X#endif
  422. X#ifdef NO_UC
  423. X    Vprintf("%Compiled without unsigned char%s\n", co, oc);
  424. X#endif
  425. X#ifdef NO_UI
  426. X    Vprintf("%Compiled without unsigned short or long%s\n", co, oc);
  427. X#endif
  428. X#ifdef __STDC__
  429. X    Vprintf("%sCompiler claims to be ANSI C level %d%s\n",
  430. X        co, __STDC__, oc);
  431. X#else
  432. X    Vprintf("%sCompiler does not claim to be ANSI C%s\n", co, oc);
  433. X#endif
  434. X    printf("\n");
  435. X    bits_per_byte= basic();
  436. X    Vprintf("\n");
  437. X    if (F||V) {
  438. X        fprec= fprop(bits_per_byte);
  439. X        dprec= dprop(bits_per_byte);
  440. X        lprec= ldprop(bits_per_byte);
  441. X        efprop(fprec, dprec, lprec);
  442. X        edprop(fprec, dprec, lprec);
  443. X        eldprop(fprec, dprec, lprec);
  444. X    }
  445. X    if (V) {
  446. X        /* An extra goody: the approximate amount of data-space */
  447. X        /* Allocate store until no more available */
  448. X        size=1<<((bits_per_byte*sizeof(int))-2);
  449. X        total=0;
  450. X        while (size!=0) {
  451. X            while (malloc(size)!=(char *)NULL) total+=(size/2);
  452. X            size/=2;
  453. X        }
  454. X
  455. X        Vprintf("%sMemory mallocatable ~= %ld Kbytes%s\n",
  456. X            co, (total+511)/512, oc);
  457. X    }
  458. X    exit(bugs);
  459. X}
  460. X
  461. XProcedure eek_a_bug(problem) char *problem; {
  462. X    printf("\n%s*** WARNING: %s%s\n", co, problem, oc);
  463. X    bugs++;
  464. X}
  465. X
  466. XProcedure i_define(sort, name, val, req) char *sort, *name; long val, req; {
  467. X    if (val >= 0) {
  468. X        printf("#define %s%s %ld\n", sort, name, val);
  469. X    } else {
  470. X        printf("#define %s%s (%ld)\n", sort, name, val);
  471. X    }
  472. X    if (val != req) {
  473. X        printf("%s*** Verify failed for above #define!\n", co);
  474. X        printf("       Compiler has %ld for value%s\n\n", req, oc);
  475. X        bugs++;
  476. X    }
  477. X    Vprintf("\n");
  478. X}
  479. X
  480. X#ifndef NO_UI
  481. X
  482. X#ifdef __STDC__
  483. X#define U "U"
  484. X#else
  485. X#define U ""
  486. X#endif
  487. X
  488. XProcedure u_define(sort, name, val, req) char *sort, *name; unsigned long val, req; {
  489. X    printf("#define %s%s %lu%s\n", sort, name, val, U);
  490. X    if (val != req) {
  491. X        printf("%s*** Verify failed for above #define!\n", co);
  492. X        printf("       Compiler has %lu for value%s\n\n", req, oc);
  493. X        bugs++;
  494. X    }
  495. X    Vprintf("\n");
  496. X}
  497. X#endif
  498. X
  499. X/* Long_double is the longest floating point type available: */
  500. X#ifdef __STDC__
  501. X#define Long_double long double
  502. X#else
  503. X#define Long_double double
  504. X#endif
  505. X
  506. Xchar *f_rep();
  507. X
  508. XProcedure f_define(sort, name, precision, val, mark)
  509. X     char *sort, *name; int precision; Long_double val; char *mark; {
  510. X    if (stdc) {
  511. X        printf("#define %s%s %s%s\n",
  512. X               sort, name, f_rep(precision, val), mark);
  513. X    } else if (*mark == 'F') {
  514. X        /* non-ANSI C has no float constants, so cast the constant */
  515. X        printf("#define %s%s ((float)%s)\n",
  516. X               sort, name, f_rep(precision, val));
  517. X    } else {
  518. X        printf("#define %s%s %s\n", sort, name, f_rep(precision, val));
  519. X    }
  520. X    Vprintf("\n");
  521. X}
  522. X
  523. Xint floor_log(base, x) int base; Long_double x; { /* return floor(log base(x)) */
  524. X    int r=0;
  525. X    while (x>=base) { r++; x/=base; }
  526. X    return r;
  527. X}
  528. X
  529. Xint ceil_log(base, x) int base; Long_double x; {
  530. X    int r=0;
  531. X    while (x>1.0) { r++; x/=base; }
  532. X    return r;
  533. X}
  534. X
  535. Xint exponent(x, fract, exp) Long_double x; double *fract; int *exp; {
  536. X    /* Split x into a fraction and a power of ten;
  537. X       returns 0 if x is unusable, 1 otherwise.
  538. X       Only used for error messages about faulty output.
  539. X    */
  540. X    int r=0, neg=0;
  541. X    Long_double old;
  542. X    *fract=0.0; *exp=0;
  543. X    if (x<0.0) {
  544. X        x= -x;
  545. X        neg= 1;
  546. X    }
  547. X    if (x==0.0) return 1;
  548. X    if (x>=10.0) {
  549. X        while (x>=10.0) {
  550. X            old=x; r++; x/=10.0;
  551. X            if (old==x) return 0;
  552. X        }
  553. X    } else {
  554. X        while (x<1.0) {
  555. X            old=x; r--; x*=10.0;
  556. X            if (old==x) return 0;
  557. X        }
  558. X    }
  559. X    if (neg) *fract= -x;
  560. X    else *fract=x;
  561. X    *exp=r;
  562. X    return 1;
  563. X}
  564. X
  565. X#define fabs(x) (((x)<0.0)?(-x):(x))
  566. X
  567. Xchar *f_rep(precision, val) int precision; Long_double val; {
  568. X    static char buf[1024];
  569. X    char *f1;
  570. X    if (sizeof(double) == sizeof(Long_double)) {
  571. X        /* Assume they're the same, and use non-stdc format */
  572. X        /* This is for stdc compilers using non-stdc libraries */
  573. X        f1= "%.*e";
  574. X    } else {
  575. X        /* It had better support Le then */
  576. X        f1= "%.*Le";
  577. X    }
  578. X    sprintf(buf, f1, precision, val);
  579. X    return buf;
  580. X}
  581. X
  582. XProcedure bitpattern(p, size) char *p; int size; {
  583. X    char c;
  584. X    int i, j;
  585. X
  586. X    for (i=1; i<=size; i++) {
  587. X        c= *p;
  588. X        p++;
  589. X        for (j=bits_per_byte-1; j>=0; j--)
  590. X            printf("%c", (c>>j)&1 ? '1' : '0');
  591. X        if (i!=size) printf(" ");
  592. X    }
  593. X}
  594. X
  595. X#define Order(x, px, mode)\
  596. X   printf("%s    %s ", co, mode); for (i=0; i<sizeof(x); i++) px[i]= c[i]; \
  597. X   for (i=1; i<=sizeof(x); i++) { putchar((char)((x>>(bits_per_byte*(sizeof(x)-i)))&mask)); }\
  598. X   printf("%s\n", oc);
  599. X
  600. XProcedure endian(bits_per_byte) int bits_per_byte; {
  601. X    /*unsigned*/ short s=0;
  602. X    /*unsigned*/ int j=0;
  603. X    /*unsigned*/ long l=0;
  604. X
  605. X    char *ps= (char *) &s,
  606. X         *pj= (char *) &j,
  607. X         *pl= (char *) &l,
  608. X         *c= "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  609. X    unsigned int mask, i;
  610. X
  611. X    mask=0;
  612. X    for (i=1; i<=bits_per_byte; i++) mask= (mask<<1)|1;
  613. X
  614. X    if (V) {
  615. X        printf("%sCharacter order:%s\n", co, oc);
  616. X        Order(s, ps, "short:");
  617. X        Order(j, pj, "int:  ");
  618. X        Order(l, pl, "long: ");
  619. X    }
  620. X}
  621. X
  622. X#ifdef VERIFY
  623. X#ifndef SCHAR_MAX
  624. X#define SCHAR_MAX char_max
  625. X#define SCHAR_MIN char_min
  626. X#endif
  627. X#ifndef UCHAR_MAX
  628. X#define UCHAR_MAX char_max
  629. X#endif
  630. X#else
  631. X#define CHAR_BIT char_bit
  632. X#define CHAR_MAX char_max
  633. X#define CHAR_MIN char_min
  634. X#define SCHAR_MAX char_max
  635. X#define SCHAR_MIN char_min
  636. X#define UCHAR_MAX char_max
  637. X#endif /* VERIFY */
  638. X
  639. Xint cprop() { /* Properties of character */
  640. X    volatile char c, char_max, char_min;
  641. X    volatile int bits_per_byte, is_signed;
  642. X    long char_bit;
  643. X
  644. X    Unexpected(2);
  645. X
  646. X    /* Calculate number of bits per character *************************/
  647. X    c=1; bits_per_byte=0;
  648. X    do { c=c<<1; bits_per_byte++; } while(c!=0);
  649. X    c= (char)(-1);
  650. X    if (((int)c)<0) is_signed=1;
  651. X    else is_signed=0;
  652. X    Vprintf("%sChar = %d bits, %ssigned%s\n",
  653. X        co, (int)sizeof(c)*bits_per_byte, (is_signed?"":"un"), oc);
  654. X    char_bit=(long)(sizeof(c)*bits_per_byte);
  655. X    if (L) i_define("CHAR", "_BIT", char_bit, (long) CHAR_BIT);
  656. X
  657. X    c=0; char_max=0;
  658. X    c++;
  659. X    if (setjmp(lab)==0) { /* Yields char_max */
  660. X        while (c>char_max) {
  661. X            char_max=c;
  662. X            c++;
  663. X        }
  664. X    } else {
  665. X        Vprintf("%sCharacter overflow generates a trap!%s\n", co, oc);
  666. X    }
  667. X    c=0; char_min=0;
  668. X    c--;
  669. X    if (setjmp(lab)==0) { /* Yields char_min */
  670. X        while (c<char_min) {
  671. X            char_min=c;
  672. X            c--;
  673. X        }
  674. X    }
  675. X    Unexpected(3);
  676. X
  677. X    if (L) {
  678. X        i_define("CHAR", "_MAX", (long) char_max, (long) CHAR_MAX);
  679. X        i_define("CHAR", "_MIN", (long) char_min, (long) CHAR_MIN);
  680. X        if (is_signed) {
  681. X            i_define("SCHAR", "_MAX", (long) char_max,
  682. X                 (long) SCHAR_MAX);
  683. X            i_define("SCHAR", "_MIN", (long) char_min,
  684. X                 (long) SCHAR_MIN);
  685. X        } else {
  686. X            i_define("UCHAR", "_MAX", (long) char_max,
  687. X                 (long) UCHAR_MAX);
  688. X        }
  689. X
  690. X        if (is_signed) {
  691. X#ifndef NO_UC
  692. X            volatile unsigned char c, char_max;
  693. X            c=0; char_max=0;
  694. X            c++;
  695. X            if (setjmp(lab)==0) { /* Yields char_max */
  696. X                while (c>char_max) {
  697. X                    char_max=c;
  698. X                    c++;
  699. X                }
  700. X            }
  701. X            Unexpected(4);
  702. X            i_define("UCHAR", "_MAX", (long) char_max,
  703. X                 (long) UCHAR_MAX);
  704. X#endif
  705. X        } else {
  706. X#ifndef NO_SC /* Define NO_SC if the next line gives a syntax error */
  707. X            volatile signed char c, char_max, char_min;
  708. X            c=0; char_max=0;
  709. X            c++;
  710. X            if (setjmp(lab)==0) { /* Yields char_max */
  711. X                while (c>char_max) {
  712. X                    char_max=c;
  713. X                    c++;
  714. X                }
  715. X            }
  716. X            c=0; char_min=0;
  717. X            c--;
  718. X            if (setjmp(lab)==0) { /* Yields char_min */
  719. X                while (c<char_min) {
  720. X                    char_min=c;
  721. X                    c--;
  722. X                }
  723. X            }
  724. X            Unexpected(5);
  725. X            i_define("SCHAR", "_MIN", (long) char_min,
  726. X                 (long) SCHAR_MIN);
  727. X            i_define("SCHAR", "_MAX", (long) char_max,
  728. X                 (long) SCHAR_MAX);
  729. X#endif /* NO_SC */
  730. X        }
  731. X    }
  732. X    return bits_per_byte;
  733. X}
  734. X
  735. Xint basic() {
  736. X    /* The properties of the basic types.
  737. X       Returns number of bits per sizeof unit */
  738. X    volatile int bits_per_byte;
  739. X
  740. X    bits_per_byte= cprop();
  741. X
  742. X    /* Shorts, ints and longs *****************************************/
  743. X    Vprintf("%sShort=%d int=%d long=%d float=%d double=%d bits %s\n",
  744. X        co,
  745. X        (int) sizeof(short)*bits_per_byte,
  746. X        (int) sizeof(int)*bits_per_byte,
  747. X        (int) sizeof(long)*bits_per_byte,
  748. X        (int) sizeof(float)*bits_per_byte,
  749. X        (int) sizeof(double)*bits_per_byte, oc);
  750. X    if (stdc) {
  751. X        Vprintf("%sLong double=%d bits%s\n",
  752. X            co, (int) sizeof(Long_double)*bits_per_byte, oc);
  753. X    }
  754. X    Vprintf("%sChar pointers = %d bits%s%s\n",
  755. X        co, (int)sizeof(char *)*bits_per_byte,
  756. X        sizeof(char *)>sizeof(int)?" BEWARE! larger than int!":"",
  757. X        oc);
  758. X    Vprintf("%sInt pointers = %d bits%s%s\n",
  759. X        co, (int)sizeof(int *)*bits_per_byte,
  760. X        sizeof(int *)>sizeof(int)?" BEWARE! larger than int!":"",
  761. X        oc);
  762. X    sprop();
  763. X    iprop();
  764. X    lprop();
  765. X    usprop();
  766. X    uiprop();
  767. X    ulprop();
  768. X
  769. X    Unexpected(6);
  770. X
  771. X    /* Alignment constants ********************************************/
  772. X    Vprintf("%sAlignments used for char=%d short=%d int=%d long=%d%s\n",
  773. X        co,
  774. X        (int)sizeof(struct{char i1; char c1;})-(int)sizeof(char),
  775. X        (int)sizeof(struct{short i2; char c2;})-(int)sizeof(short),
  776. X        (int)sizeof(struct{int i3; char c3;})-(int)sizeof(int),
  777. X        (int)sizeof(struct{long i4; char c4;})-(int)sizeof(long),
  778. X        oc);
  779. X
  780. X    /* Ten little endians *********************************************/
  781. X
  782. X    endian(bits_per_byte);
  783. X
  784. X    /* Pointers *******************************************************/
  785. X    if (V) {
  786. X        if ("abcd"=="abcd")
  787. X            printf("%sStrings are shared%s\n", co, oc);
  788. X        else printf("%sStrings are not shared%s\n", co, oc);
  789. X    }
  790. X
  791. X    return bits_per_byte;
  792. X}
  793. X
  794. X#endif /* ifndef PASS */
  795. X
  796. X/* As I said, I apologise for the contortions below. The functions are
  797. X   expanded by the preprocessor twice or three times (for float and double,
  798. X   and maybe for long double, and for short, int and long). That way,
  799. X   I never make a change to one that I forget to make to the other.
  800. X   You can look on it as C's fault for not supporting multi-line macro's.
  801. X   This whole file is read 3 times by the preprocessor, with PASSn set for
  802. X   n=1, 2 or 3, to decide which parts to reprocess.
  803. X*/
  804. X
  805. X/* #undef on an already undefined thing is (wrongly) flagged as an error
  806. X   by some compilers, therefore the #ifdef that follows: 
  807. X*/
  808. X#ifdef Number
  809. X#undef Number
  810. X#undef THING
  811. X#undef Thing
  812. X#undef thing
  813. X#undef FPROP
  814. X#undef Fname
  815. X#undef Store
  816. X#undef Sum
  817. X#undef Diff
  818. X#undef Mul
  819. X#undef Div
  820. X#undef Self
  821. X#undef F_check
  822. X#undef Validate
  823. X#undef EPROP
  824. X#undef MARK
  825. X
  826. X#undef F_RADIX
  827. X#undef F_MANT_DIG
  828. X#undef F_DIG
  829. X#undef F_ROUNDS
  830. X#undef F_EPSILON
  831. X#undef F_MIN_EXP
  832. X#undef F_MIN
  833. X#undef F_MIN_10_EXP
  834. X#undef F_MAX_EXP
  835. X#undef F_MAX
  836. X#undef F_MAX_10_EXP
  837. X#endif
  838. X
  839. X#ifdef Integer
  840. X#undef Integer
  841. X#undef INT
  842. X#undef IPROP
  843. X#undef Iname
  844. X#undef UPROP
  845. X#undef Uname
  846. X#undef OK_UI
  847. X
  848. X#undef I_MAX
  849. X#undef I_MIN
  850. X#undef U_MAX
  851. X#endif
  852. X
  853. X#ifdef PASS1
  854. X
  855. X#define Number float
  856. X#define THING "FLOAT"
  857. X#define Thing "Float"
  858. X#define thing "float"
  859. X#define Fname "FLT"
  860. X#define FPROP fprop
  861. X#define Store fStore
  862. X#define Sum fSum
  863. X#define Diff fDiff
  864. X#define Mul fMul
  865. X#define Div fDiv
  866. X#define Self fSelf
  867. X#define F_check fCheck
  868. X#define Validate fValidate
  869. X#define MARK "F"
  870. X
  871. X#define EPROP efprop
  872. X
  873. X#define Integer short
  874. X#define INT "short"
  875. X#define IPROP sprop
  876. X#define Iname "SHRT"
  877. X#ifndef NO_UI
  878. X#define OK_UI 1
  879. X#endif
  880. X
  881. X#define UPROP usprop
  882. X#define Uname "USHRT"
  883. X
  884. X#ifdef VERIFY
  885. X#define I_MAX SHRT_MAX
  886. X#define I_MIN SHRT_MIN
  887. X#define U_MAX USHRT_MAX
  888. X
  889. X#define F_RADIX FLT_RADIX
  890. X#define F_MANT_DIG FLT_MANT_DIG
  891. X#define F_DIG FLT_DIG
  892. X#define F_ROUNDS FLT_ROUNDS
  893. X#define F_EPSILON FLT_EPSILON
  894. X#define F_MIN_EXP FLT_MIN_EXP
  895. X#define F_MIN FLT_MIN
  896. X#define F_MIN_10_EXP FLT_MIN_10_EXP
  897. X#define F_MAX_EXP FLT_MAX_EXP
  898. X#define F_MAX FLT_MAX
  899. X#define F_MAX_10_EXP FLT_MAX_10_EXP
  900. X#endif /* VERIFY */
  901. X
  902. X#endif /* PASS1 */
  903. X
  904. X#ifdef PASS2
  905. X
  906. X#define Number double
  907. X#define THING "DOUBLE"
  908. X#define Thing "Double"
  909. X#define thing "double"
  910. X#define Fname "DBL"
  911. X#define FPROP dprop
  912. X#define Store dStore
  913. X#define Sum dSum
  914. X#define Diff dDiff
  915. X#define Mul dMul
  916. X#define Div dDiv
  917. X#define Self dSelf
  918. X#define F_check dCheck
  919. X#define Validate dValidate
  920. X#define MARK ""
  921. X
  922. X#define EPROP edprop
  923. X
  924. X#define Integer int
  925. X#define INT "int"
  926. X#define IPROP iprop
  927. X#define Iname "INT"
  928. X#define OK_UI 1 /* Unsigned int is always possible */
  929. X
  930. X#define UPROP uiprop
  931. X#define Uname "UINT"
  932. X
  933. X#ifdef VERIFY
  934. X#define I_MAX INT_MAX
  935. X#define I_MIN INT_MIN
  936. X#define U_MAX UINT_MAX
  937. X
  938. X#define F_MANT_DIG DBL_MANT_DIG
  939. X#define F_DIG DBL_DIG
  940. X#define F_EPSILON DBL_EPSILON
  941. X#define F_MIN_EXP DBL_MIN_EXP
  942. X#define F_MIN DBL_MIN
  943. X#define F_MIN_10_EXP DBL_MIN_10_EXP
  944. X#define F_MAX_EXP DBL_MAX_EXP
  945. X#define F_MAX DBL_MAX
  946. X#define F_MAX_10_EXP DBL_MAX_10_EXP
  947. X#endif /* VERIFY */
  948. X
  949. X#endif /* PASS2 */
  950. X
  951. X#ifdef PASS3
  952. X
  953. X#ifdef __STDC__
  954. X#define Number long double
  955. X#endif
  956. X
  957. X#define THING "LONG DOUBLE"
  958. X#define Thing "Long double"
  959. X#define thing "long double"
  960. X#define Fname "LDBL"
  961. X#define FPROP ldprop
  962. X#define Store ldStore
  963. X#define Sum ldSum
  964. X#define Diff ldDiff
  965. X#define Mul ldMul
  966. X#define Div ldDiv
  967. X#define Self ldSelf
  968. X#define F_check ldCheck
  969. X#define Validate ldValidate
  970. X#define MARK "L"
  971. X
  972. X#define EPROP eldprop
  973. X
  974. X#define Integer long
  975. X#define INT "long"
  976. X#define IPROP lprop
  977. X#define Iname "LONG"
  978. X#ifndef NO_UI
  979. X#define OK_UI 1
  980. X#endif
  981. X
  982. X#define UPROP ulprop
  983. X#define Uname "ULONG"
  984. X
  985. X#ifdef VERIFY
  986. X#define I_MAX LONG_MAX
  987. X#define I_MIN LONG_MIN
  988. X#define U_MAX ULONG_MAX
  989. X
  990. X#define F_MANT_DIG LDBL_MANT_DIG
  991. X#define F_DIG LDBL_DIG
  992. X#define F_EPSILON LDBL_EPSILON
  993. X#define F_MIN_EXP LDBL_MIN_EXP
  994. X#define F_MIN LDBL_MIN
  995. X#define F_MIN_10_EXP LDBL_MIN_10_EXP
  996. X#define F_MAX_EXP LDBL_MAX_EXP
  997. X#define F_MAX LDBL_MAX
  998. X#define F_MAX_10_EXP LDBL_MAX_10_EXP
  999. X#endif /* VERIFY */
  1000. X
  1001. X#endif /* PASS3 */
  1002. X
  1003. X#ifndef VERIFY
  1004. X#define I_MAX int_max
  1005. X#define I_MIN int_min
  1006. X#define U_MAX int_max
  1007. X
  1008. X#define F_RADIX f_radix
  1009. X#define F_MANT_DIG f_mant_dig
  1010. X#define F_DIG f_dig
  1011. X#define F_ROUNDS f_rounds
  1012. X#define F_EPSILON f_epsilon
  1013. X#define F_MIN_EXP f_min_exp
  1014. X#define F_MIN f_min
  1015. X#define F_MIN_10_EXP f_min_10_exp
  1016. X#define F_MAX_EXP f_max_exp
  1017. X#define F_MAX f_max
  1018. X#define F_MAX_10_EXP f_max_10_exp
  1019. X#endif
  1020. X
  1021. XProcedure IPROP() { /* for short, int, and long */
  1022. X    volatile Integer newi, int_max, maxeri, int_min, minneri;
  1023. X    volatile int ibits, ipower, two=2;
  1024. X
  1025. X    /* Calculate max short/int/long ***********************************/
  1026. X    /* Calculate 2**n-1 until overflow - then use the previous value  */
  1027. X
  1028. X    newi=1; int_max=0;
  1029. X
  1030. X    if (setjmp(lab)==0) { /* Yields int_max */
  1031. X        for(ipower=0; newi>int_max; ipower++) {
  1032. X            int_max=newi;
  1033. X            newi=newi*two+1;
  1034. X        }
  1035. X        Vprintf("%sOverflow of a%s %s does not generate a trap%s\n",
  1036. X            co, INT[0]=='i'?"n":"", INT, oc);
  1037. X    } else {
  1038. X        Vprintf("%sOverflow of a%s %s generates a trap%s\n",
  1039. X            co, INT[0]=='i'?"n":"", INT, oc);
  1040. X    }
  1041. X    Unexpected(7);
  1042. X
  1043. X    /* Minimum value: assume either two's or one's complement *********/
  1044. X    int_min= -int_max;
  1045. X    if (setjmp(lab)==0) { /* Yields int_min */
  1046. X        if (int_min-1 < int_min) int_min--;
  1047. X    }
  1048. X    Unexpected(8);
  1049. X
  1050. X    /* Now for those daft Cybers: */
  1051. X
  1052. X    maxeri=0; newi=int_max;
  1053. X
  1054. X    if (setjmp(lab)==0) { /* Yields maxeri */
  1055. X        for(ibits=ipower; newi>maxeri; ibits++) {
  1056. X            maxeri=newi;
  1057. X            newi=newi+newi+1;
  1058. X        }
  1059. X    }
  1060. X    Unexpected(9);
  1061. X
  1062. X    minneri= -maxeri;
  1063. X    if (setjmp(lab)==0) { /* Yields minneri */
  1064. X        if (minneri-1 < minneri) minneri--;
  1065. X    }
  1066. X    Unexpected(10);
  1067. X
  1068. X    Vprintf("%sMaximum %s = %ld (= 2**%d-1)%s\n",
  1069. X        co, INT, (long)int_max, ipower, oc);
  1070. X    Vprintf("%sMinimum %s = %ld%s\n", co, INT, (long)int_min, oc);
  1071. X
  1072. X    if (L) i_define(Iname, "_MAX", (long) int_max, (long) I_MAX);
  1073. X    if (L) i_define(Iname, "_MIN", (long) int_min, (long) I_MIN);
  1074. X
  1075. X    if (maxeri>int_max) {
  1076. X        Vprintf("%sThere is a larger %s, %ld (= 2**%d-1), %s %s%s\n",
  1077. X            co, INT, (long)maxeri, ibits, 
  1078. X            "but only for addition, not multiplication",
  1079. X            "(I smell a Cyber!)",
  1080. X            oc);
  1081. X    }
  1082. X
  1083. X    if (minneri<int_min) {
  1084. X        Vprintf("%sThere is a smaller %s, %ld, %s %s%s\n",
  1085. X            co, INT, (long)minneri, 
  1086. X            "but only for addition, not multiplication",
  1087. X            "(I smell a Cyber!)",
  1088. X            oc);
  1089. X    }
  1090. X}
  1091. X
  1092. XProcedure UPROP () { /* unsigned short/int/long */
  1093. X#ifdef OK_UI
  1094. X    volatile unsigned Integer int_max, newi, two;
  1095. X    newi=1; int_max=0; two=2;
  1096. X
  1097. X    if (setjmp(lab)==0) { /* Yields int_max */
  1098. X        while(newi>int_max) {
  1099. X            int_max=newi;
  1100. X            newi=newi*two+1;
  1101. X        }
  1102. X    }
  1103. X    Unexpected(11);
  1104. X    Vprintf("%sMaximum unsigned %s = %lu%s\n",
  1105. X        co, INT, (unsigned long) int_max, oc);
  1106. X    if (L) u_define(Uname, "_MAX", (unsigned long) int_max,
  1107. X            (unsigned long) U_MAX);
  1108. X#endif
  1109. X}
  1110. X
  1111. X
  1112. X#ifdef Number
  1113. X
  1114. X/* These routines are intended to defeat any attempt at optimisation
  1115. X   or use of extended precision, and to defeat faulty narrowing casts:
  1116. X*/
  1117. XProcedure Store(a, b) Number a, *b; { *b=a; }
  1118. XNumber Sum(a, b) Number a, b; { Number r; Store(a+b, &r); return (r); }
  1119. XNumber Diff(a, b) Number a, b; { Number r; Store(a-b, &r); return (r); }
  1120. XNumber Mul(a, b) Number a, b; { Number r; Store(a*b, &r); return (r); }
  1121. XNumber Div(a, b) Number a, b; { Number r; Store(a/b, &r); return (r); }
  1122. XNumber Self(a) Number a; { Number r; Store(a, &r); return (r); }
  1123. X
  1124. XProcedure F_check(precision, val1) int precision; Long_double val1; {
  1125. X    /* You don't think I'm going to go to all the trouble of writing
  1126. X       a program that works out what all sorts of values are, only to
  1127. X       have printf go and print the wrong values out, do you?
  1128. X       No, you're right, so this function tries to see if printf
  1129. X       has written the right value, by reading it back again.
  1130. X       This introduces a new problem of course: suppose printf writes
  1131. X       the correct value, and scanf reads it back wrong... oh well.
  1132. X       But I'm adamant about this: the precision given is enough
  1133. X       to uniquely identify the printed number, therefore I insist
  1134. X       that sscanf read the number back identically. Harsh yes, but
  1135. X       sometimes you've got to be cruel to be kind.
  1136. X    */
  1137. X    Long_double new1;
  1138. X    Number val, new, diff;
  1139. X    double rem;
  1140. X    int e;
  1141. X    char *rep;
  1142. X    char *f2;
  1143. X
  1144. X    if (sizeof(double) == sizeof(Long_double)) {
  1145. X        /* Assume they're the same, and use non-stdc format */
  1146. X        /* This is for stdc compilers using non-stdc libraries */
  1147. X        f2= "%le";   /* Input */
  1148. X    } else {
  1149. X        /* It had better support Le then */
  1150. X        f2= "%Le";
  1151. X    }
  1152. X    val= val1;
  1153. X    rep= f_rep(precision, (Long_double) val);
  1154. X    if (setjmp(lab)==0) {
  1155. X        sscanf(rep, f2, &new1);
  1156. X    } else {
  1157. X        eek_a_bug("sscanf caused a trap");
  1158. X        printf("%s    scanning: %s format: %s%s\n\n", co, rep, f2, oc);
  1159. X        Unexpected(12);
  1160. X        return;
  1161. X    }
  1162. X
  1163. X    if (setjmp(lab)==0) { /* See if new is usable */
  1164. X        new= new1;
  1165. X        if (new != 0.0) {
  1166. X            diff= val/new - 1.0;
  1167. X            if (diff < 0.1) diff= 1.0;
  1168. X            /* That should be enough to generate a trap */
  1169. X        }
  1170. X    } else {
  1171. X        eek_a_bug("sscanf returned an unusable number");
  1172. X        printf("%s    scanning: %s with format: %s%s\n\n",
  1173. X               co, rep, f2, oc);
  1174. X        Unexpected(13);
  1175. X        return;
  1176. X    }
  1177. X
  1178. X    Unexpected(14);
  1179. X    if (new != val) {
  1180. X        eek_a_bug("Possibly bad output from printf above");
  1181. X        if (!exponent(val, &rem, &e)) {
  1182. X            printf("%s    but value was an unusable number%s\n\n",
  1183. X                   co, oc);
  1184. X            return;
  1185. X        }
  1186. X        printf("%s    expected value around %.*fe%d, bit pattern:\n    ",
  1187. X               co, precision, rem, e);
  1188. X        bitpattern((char *) &val, sizeof(val));
  1189. X        printf ("%s\n", oc);
  1190. X        printf("%s    sscanf gave           %s, bit pattern:\n    ",
  1191. X               co, f_rep(precision, (Long_double) new));
  1192. X        bitpattern((char *) &new, sizeof(new));
  1193. X        printf ("%s\n", oc);
  1194. X        printf("%s    difference= %s%s\n\n", 
  1195. X               co, f_rep(precision, (Long_double) (val-new)), oc);
  1196. X    }
  1197. X}
  1198. X
  1199. XProcedure Validate(prec, val, req, same) int prec, same; Long_double val, req; {
  1200. X    Unexpected(15);
  1201. X    if (!same) {
  1202. X        printf("%s*** Verify failed for above #define!\n", co);
  1203. X        if (setjmp(lab) == 0) { /* for the case that req == nan */
  1204. X            printf("       Compiler has %s for value%s\n", 
  1205. X                   f_rep(prec, req), oc);
  1206. X        } else {
  1207. X            printf("       Compiler has %s for value%s\n",
  1208. X                   "an unusable number", oc);
  1209. X        }
  1210. X        if (setjmp(lab) == 0) {
  1211. X            F_check(prec, (Long_double) req);
  1212. X        } /*else forget it*/
  1213. X        if (setjmp(lab) == 0) {        
  1214. X            if (req > 0.0 && val > 0.0) {
  1215. X                printf("%s    difference= %s%s\n",
  1216. X                       co, f_rep(prec, val-req), oc);
  1217. X            }
  1218. X        } /*else forget it*/
  1219. X        Unexpected(16);
  1220. X        printf("\n");
  1221. X        bugs++;
  1222. X    } else if (val != req) {
  1223. X        if (stdc) {
  1224. X            printf("%s*** Verify failed for above #define!\n", co);
  1225. X            printf("       Constant has the wrong precision%s\n",
  1226. X                   oc);
  1227. X            bugs++;
  1228. X        } else eek_a_bug("the cast didn't work");
  1229. X        printf("\n");
  1230. X    }
  1231. X}
  1232. X
  1233. Xint FPROP(bits_per_byte) int bits_per_byte; {
  1234. X    /* Properties of floating types, using algorithms by Cody and Waite
  1235. X       from MA Malcolm, as modified by WM Gentleman and SB Marovich.
  1236. X       Further extended by S Pemberton.
  1237. X
  1238. X       Returns the number of digits in the fraction.
  1239. X    */
  1240. X
  1241. X    volatile int i, f_radix, iexp, irnd, mrnd, f_rounds, f_mant_dig,
  1242. X        iz, k, inf, machep, f_max_exp, f_min_exp, mx, negeps,
  1243. X        mantbits, digs, f_dig, trap,
  1244. X        hidden, normal, f_min_10_exp, f_max_10_exp;
  1245. X    volatile Number a, b, base, basein, basem1, f_epsilon, epsneg,
  1246. X           f_max, newxmax, f_min, xminner, y, y1, z, z1, z2;
  1247. X
  1248. X    Unexpected(17);
  1249. X
  1250. X    Vprintf("%sPROPERTIES OF %s:%s\n", co, THING, oc);
  1251. X
  1252. X    /* Base and size of mantissa **************************************/
  1253. X    /* First repeatedly double until adding 1 has no effect.      */
  1254. X    /* For instance, if base is 10, with 3 significant digits      */
  1255. X    /* it will try 1, 2, 4, 8, ... 512, 1024, and stop there,      */
  1256. X    /* since 1024 is only representable as 1020.              */
  1257. X    a=1.0;
  1258. X    if (setjmp(lab)==0) { /* inexact trap? */
  1259. X        do { a=Sum(a, a); }
  1260. X        while (Diff(Diff(Sum(a, 1.0), a), 1.0) == 0.0);
  1261. X    } else {
  1262. X        fprintf(stderr, "*** Program got loss-of-precision trap!\n");
  1263. X        /* And supporting those is just TOO much trouble! */
  1264. X        exit(bugs+1);
  1265. X    }
  1266. X    Unexpected(18);
  1267. X    /* Now double until you find a number that can be added to the      */
  1268. X    /* above number. For 1020 this is 8 or 16, depending whether the  */
  1269. X    /* result is rounded or truncated.                  */
  1270. X    /* In either case the result is 1030. 1030-1020= the base, 10.      */
  1271. X    b=1.0;
  1272. X    do { b=Sum(b, b); } while ((base=Diff(Sum(a, b), a)) == 0.0);
  1273. X    f_radix=base;
  1274. X    Vprintf("%sBase = %d%s\n", co, f_radix, oc);
  1275. X
  1276. X    /* Sanity check; if base<2, I can't guarantee the rest will work  */
  1277. X    if (f_radix < 2) {
  1278. X        eek_a_bug("Function return or parameter passing faulty? (This is a guess.)");
  1279. X        printf("\n");
  1280. X        return(0);
  1281. X    }
  1282. X
  1283. X#ifdef PASS1 /* only for FLT */
  1284. X    if (F) i_define("FLT", "_RADIX", (long) f_radix, (long) F_RADIX);
  1285. X#endif
  1286. X
  1287. X    /* Now the number of digits precision: */
  1288. X    f_mant_dig=0; b=1.0;
  1289. X    do { f_mant_dig++; b=Mul(b, base); }
  1290. X    while (Diff(Diff(Sum(b,1.0),b),1.0) == 0.0);
  1291. X    f_dig=floor_log(10, (Long_double)(b/base)) + (base==10?1:0);
  1292. X    Vprintf("%sSignificant base digits = %d %s %d %s%s\n",
  1293. X        co, f_mant_dig, "(= at least", f_dig, "decimal digits)", oc);
  1294. X    if (F) i_define(Fname, "_MANT_DIG", (long) f_mant_dig,
  1295. X            (long) F_MANT_DIG);
  1296. X    if (F) i_define(Fname, "_DIG", (long) f_dig, (long) F_DIG);
  1297. X    digs= ceil_log(10, (Long_double)b); /* the number of digits to printf */
  1298. X
  1299. X    /* Rounding *******************************************************/
  1300. X    basem1=Diff(base, 0.5);
  1301. X    if (Diff(Sum(a, basem1), a) != 0.0) {
  1302. X        if (f_radix == 2) basem1=0.375;
  1303. X        else basem1=1.0;
  1304. X        if (Diff(Sum(a, basem1), a) != 0.0) irnd=2; /* away from 0 */
  1305. X        else irnd=1; /* to nearest */
  1306. X    } else irnd=0; /* towards 0 */
  1307. X
  1308. X    basem1=Diff(base, 0.5);
  1309. X
  1310. X    if (Diff(Diff(-a, basem1), -a) != 0.0) {
  1311. X        if (f_radix == 2) basem1=0.375;
  1312. X        else basem1=1.0;
  1313. X        if (Diff(Diff(-a, basem1), -a) != 0.0) mrnd=2; /* away from 0*/
  1314. X        else mrnd=1; /* to nearest */
  1315. X    } else mrnd=0; /* towards 0 */
  1316. X
  1317. X    f_rounds=4; /* Unknown rounding */
  1318. X    if (irnd==0 && mrnd==0) f_rounds=0; /* zero = chops */
  1319. X    if (irnd==1 && mrnd==1) f_rounds=1; /* nearest */
  1320. X    if (irnd==2 && mrnd==0) f_rounds=2; /* +inf */
  1321. X    if (irnd==0 && mrnd==2) f_rounds=3; /* -inf */
  1322. X
  1323. X    if (f_rounds != 4) {
  1324. X        Vprintf("%sArithmetic rounds towards ", co);
  1325. X        switch (f_rounds) {
  1326. X              case 0: Vprintf("zero (i.e. it chops)"); break;
  1327. X              case 1: Vprintf("nearest"); break;
  1328. X              case 2: Vprintf("+infinity"); break;
  1329. X              case 3: Vprintf("-infinity"); break;
  1330. X              default: Vprintf("???"); break;
  1331. X        }
  1332. X        Vprintf("%s\n", oc);
  1333. X    } else { /* Hmm, try to give some help here: */
  1334. X        Vprintf("%sArithmetic rounds oddly: %s\n", co, oc);
  1335. X        Vprintf("%s    Negative numbers %s%s\n",
  1336. X            co, mrnd==0 ? "towards zero" :
  1337. X                mrnd==1 ? "to nearest" :
  1338. X                      "away from zero",
  1339. X            oc);
  1340. X        Vprintf("%s    Positive numbers %s%s\n",
  1341. X            co, irnd==0 ? "towards zero" :
  1342. X                irnd==1 ? "to nearest" :
  1343. X                      "away from zero",
  1344. X            oc);
  1345. X    }
  1346. X    /* An extra goody */
  1347. X    if (f_radix == 2 && f_rounds == 1) {
  1348. X        if (Diff(Sum(a, 1.0), a) != 0.0) {
  1349. X            Vprintf("%s   Tie breaking rounds up%s\n", co, oc);
  1350. X        } else if (Diff(Sum(a, 3.0), a) == 4.0) {
  1351. X            Vprintf("%s   Tie breaking rounds to even%s\n", co, oc);
  1352. X        } else {
  1353. X            Vprintf("%s   Tie breaking rounds down%s\n", co, oc);
  1354. X        }
  1355. X    }
  1356. X#ifdef PASS1 /* only for FLT */
  1357. X    if (F) i_define("FLT", "_ROUNDS", (long) f_rounds, (long) F_ROUNDS);
  1358. X#endif
  1359. X
  1360. X    /* Various flavours of epsilon ************************************/
  1361. X    negeps=f_mant_dig+f_mant_dig;
  1362. X    basein=1.0/base;
  1363. X    a=1.0;
  1364. X    for(i=1; i<=negeps; i++) a*=basein;
  1365. X
  1366. X    b=a;
  1367. X    while (Diff(Diff(1.0, a), 1.0) == 0.0) {
  1368. X        a*=base;
  1369. X        negeps--;
  1370. X    }
  1371. X    negeps= -negeps;
  1372. X    Vprintf("%sSmallest x such that 1.0-base**x != 1.0 = %d%s\n",
  1373. X        co, negeps, oc);
  1374. X
  1375. X    epsneg=a;
  1376. X    if ((f_radix!=2) && irnd) {
  1377. X    /*    a=(a*(1.0+a))/(1.0+1.0); => */
  1378. X        a=Div(Mul(a, Sum(1.0, a)), Sum(1.0, 1.0));
  1379. X    /*    if ((1.0-a)-1.0 != 0.0) epsneg=a; => */
  1380. X        if (Diff(Diff(1.0, a), 1.0) != 0.0) epsneg=a;
  1381. X    }
  1382. X    Vprintf("%sSmall x such that 1.0-x != 1.0 = %s%s\n",
  1383. X        co, f_rep(digs, (Long_double) epsneg), oc);
  1384. X    /* it may not be the smallest */
  1385. X    if (V) F_check(digs, (Long_double) epsneg);
  1386. X    Unexpected(19);
  1387. X
  1388. X    machep= -f_mant_dig-f_mant_dig;
  1389. X    a=b;
  1390. X    while (Diff(Sum(1.0, a), 1.0) == 0.0) { a*=base; machep++; }
  1391. X    Vprintf("%sSmallest x such that 1.0+base**x != 1.0 = %d%s\n",
  1392. X        co, machep, oc);
  1393. X
  1394. X    f_epsilon=a;
  1395. X    if ((f_radix!=2) && irnd) {
  1396. X    /*    a=(a*(1.0+a))/(1.0+1.0); => */
  1397. X        a=Div(Mul(a, Sum(1.0, a)), Sum(1.0, 1.0));
  1398. X    /*    if ((1.0+a)-1.0 != 0.0) f_epsilon=a; => */
  1399. X        if (Diff(Sum(1.0, a), 1.0) != 0.0) f_epsilon=a;
  1400. X    }
  1401. X    Vprintf("%sSmallest x such that 1.0+x != 1.0 = %s%s\n",
  1402. X        co, f_rep(digs, (Long_double) f_epsilon), oc);
  1403. X    /* Possible loss of precision warnings here from non-stdc compilers: */
  1404. X    if (F) f_define(Fname, "_EPSILON", digs, (Long_double) f_epsilon, MARK);
  1405. X    if (V || F) F_check(digs, (Long_double) f_epsilon);
  1406. X    Unexpected(20);
  1407. X    if (F) Validate(digs, (Long_double) f_epsilon, (Long_double) F_EPSILON,
  1408. X            f_epsilon == Self(F_EPSILON));
  1409. X    Unexpected(21);
  1410. X
  1411. X    /* Extra chop info *************************************************/
  1412. X    if (f_rounds == 0) {
  1413. X        if (Diff(Mul(Sum(1.0,f_epsilon),1.0),1.0) !=  0.0) {
  1414. X            Vprintf("%sAlthough arithmetic chops, it uses guard digits%s\n", co, oc);
  1415. X        }
  1416. X    }
  1417. X
  1418. X    /* Size of and minimum normalised exponent ************************/
  1419. X    y=0; i=0; k=1; z=basein; z1=(1.0+f_epsilon)/base;
  1420. X
  1421. X    /* Coarse search for the largest power of two */
  1422. X    if (setjmp(lab)==0) { /* for underflow trap */ /* Yields i, k, y, y1 */
  1423. X        do {
  1424. X            y=z; y1=z1;
  1425. X            z=Mul(y,y); z1=Mul(z1, y);
  1426. X            a=Mul(z,1.0);
  1427. X            z2=Div(z1,y);
  1428. X            if (z2 != y1) break;
  1429. X            if ((Sum(a,a) == 0.0) || (fabs(z) >= y)) break;
  1430. X            i++;
  1431. X            k+=k;
  1432. X        } while(1);
  1433. X    } else {
  1434. X        Vprintf("%s%s underflow generates a trap%s\n", co, Thing, oc);
  1435. X    }
  1436. X    Unexpected(22);
  1437. X
  1438. X    if (f_radix != 10) {
  1439. X        iexp=i+1; /* for the sign */
  1440. X        mx=k+k;
  1441. X    } else {
  1442. X        iexp=2;
  1443. X        iz=f_radix;
  1444. X        while (k >= iz) { iz*=f_radix; iexp++; }
  1445. X        mx=iz+iz-1;
  1446. X    }
  1447. X
  1448. X    /* Fine tune starting with y and y1 */
  1449. X    if (setjmp(lab)==0) { /* for underflow trap */ /* Yields k, f_min */
  1450. X        do {
  1451. X            f_min=y; z1=y1;
  1452. X            y=Div(y,base); y1=Div(y1,base);
  1453. X            a=Mul(y,1.0);
  1454. X            z2=Mul(y1,base);
  1455. X            if (z2 != z1) break;
  1456. X            if ((Sum(a,a) == 0.0) || (fabs(y) >= f_min)) break;
  1457. X            k++;
  1458. X        } while (1);
  1459. X    }
  1460. X    Unexpected(23);
  1461. X
  1462. X    f_min_exp=(-k)+1;
  1463. X
  1464. X    if ((mx <= k+k-3) && (f_radix != 10)) { mx+=mx; iexp+=1; }
  1465. X    Vprintf("%sNumber of bits used for exponent = %d%s\n", co, iexp, oc);
  1466. X    Vprintf("%sMinimum normalised exponent = %d%s\n", co, f_min_exp, oc);
  1467. X    if (F) i_define(Fname, "_MIN_EXP", (long) f_min_exp, (long) F_MIN_EXP);
  1468. X
  1469. X    if (setjmp(lab)==0) {
  1470. X        Vprintf("%sMinimum normalised positive number = %s%s\n",
  1471. X            co, f_rep(digs, (Long_double) f_min), oc);
  1472. X    } else {
  1473. X        eek_a_bug("printf can't print the smallest normalised number");
  1474. X        printf("\n");
  1475. X    }
  1476. X    Unexpected(24);
  1477. X    /* Possible loss of precision warnings here from non-stdc compilers: */
  1478. X    if (setjmp(lab) == 0) {
  1479. X        if (F) f_define(Fname, "_MIN", digs, (Long_double) f_min, MARK);
  1480. X        if (V || F) F_check(digs, (Long_double) f_min);
  1481. X    } else {
  1482. X        eek_a_bug("xxx_MIN caused a trap");
  1483. X        printf("\n");
  1484. X    }
  1485. X
  1486. X    if (setjmp(lab) == 0) {
  1487. X        if (F) Validate(digs, (Long_double) f_min, (Long_double) F_MIN,
  1488. X                f_min == Self(F_MIN));
  1489. X    } else {
  1490. X        printf("%s*** Verify failed for above #define!\n    %s %s\n\n",
  1491. X               co, "Compiler has an unusable number for value", oc);
  1492. X        bugs++;
  1493. X    }
  1494. X    Unexpected(25);
  1495. X
  1496. X    a=1.0; f_min_10_exp=0;
  1497. X    while (a > f_min*10.0) { a/=10.0; f_min_10_exp--; }
  1498. X    if (F) i_define(Fname, "_MIN_10_EXP", (long) f_min_10_exp,
  1499. X            (long) F_MIN_10_EXP);
  1500. X
  1501. X    /* Minimum exponent ************************************************/
  1502. X    if (setjmp(lab)==0) { /* for underflow trap */ /* Yields xminner */
  1503. X        do {
  1504. X            xminner=y;
  1505. X            y=Div(y,base);
  1506. X            a=Mul(y,1.0);
  1507. X            if ((Sum(a,a) == 0.0) || (fabs(y) >= xminner)) break;
  1508. X        } while (1);
  1509. X    }
  1510. X    Unexpected(26);
  1511. X
  1512. X    if (xminner != 0.0 && xminner != f_min) {
  1513. X        normal= 0;
  1514. X        Vprintf("%sThe smallest numbers are not kept normalised%s\n",
  1515. X            co, oc);
  1516. X        if (setjmp(lab)==0) {
  1517. X            Vprintf("%sSmallest unnormalised positive number = %s%s\n",
  1518. X                co, f_rep(digs, (Long_double) xminner), oc);
  1519. X            if (V) F_check(digs, (Long_double) xminner);
  1520. X        } else {
  1521. X            eek_a_bug("printf can't print the smallest unnormalised number.");
  1522. X            printf("\n");
  1523. X        }
  1524. X        Unexpected(27);
  1525. X    } else {
  1526. X        normal= 1;
  1527. X        Vprintf("%sThe smallest numbers are normalised%s\n", co, oc);
  1528. X    }
  1529. X
  1530. X    /* Maximum exponent ************************************************/
  1531. X    f_max_exp=2; f_max=1.0; newxmax=base+1.0;
  1532. X    inf=0; trap=0;
  1533. X    while (f_max<newxmax) {
  1534. X        f_max=newxmax;
  1535. X        if (setjmp(lab) == 0) { /* Yields inf, f_max_exp */
  1536. X            newxmax=Mul(newxmax, base);
  1537. X        } else {
  1538. X            trap=1;
  1539. X            break;
  1540. X        }
  1541. X        if (Div(newxmax, base) != f_max) {
  1542. X            inf=1; /* ieee infinity */
  1543. X            break;
  1544. X        }
  1545. X        f_max_exp++;
  1546. X    }
  1547. X    Unexpected(28);
  1548. X    if (trap) {
  1549. X        Vprintf("%s%s overflow generates a trap%s\n", co, Thing, oc);
  1550. X    }
  1551. X
  1552. X    if (inf) Vprintf("%sThere is an 'infinite' value%s\n", co, oc);
  1553. X    Vprintf("%sMaximum exponent = %d%s\n", co, f_max_exp, oc);
  1554. X    if (F) i_define(Fname, "_MAX_EXP", (long) f_max_exp, (long) F_MAX_EXP);
  1555. X
  1556. X    /* Largest number ***************************************************/
  1557. X    f_max=Diff(1.0, epsneg);
  1558. X    if (Mul(f_max,1.0) != f_max) f_max=Diff(1.0, Mul(base,epsneg));
  1559. X    for (i=1; i<=f_max_exp; i++) f_max=Mul(f_max, base);
  1560. X
  1561. X    if (setjmp(lab)==0) {
  1562. X        Vprintf("%sMaximum number = %s%s\n",
  1563. X            co, f_rep(digs, (Long_double) f_max), oc);
  1564. X    } else {
  1565. X        eek_a_bug("printf can't print the largest double.");
  1566. X        printf("\n");
  1567. X    }
  1568. X    if (setjmp(lab)==0) {
  1569. X    /* Possible loss of precision warnings here from non-stdc compilers: */
  1570. X        if (F) f_define(Fname, "_MAX", digs, (Long_double) f_max, MARK);
  1571. X        if (V || F) F_check(digs, (Long_double) f_max);
  1572. X    } else {
  1573. X        eek_a_bug("xxx_MAX caused a trap");
  1574. X        printf("\n");
  1575. X    }
  1576. X    if (setjmp(lab)==0) {
  1577. X        if (F) Validate(digs, (Long_double) f_max, (Long_double) F_MAX,
  1578. X                f_max == Self(F_MAX));
  1579. X    } else {
  1580. X        printf("%s*** Verify failed for above #define!\n    %s %s\n\n",
  1581. X               co, "Compiler has an unusable number for value", oc);
  1582. X        bugs++;
  1583. X    }
  1584. X    Unexpected(29);
  1585. X
  1586. X    a=1.0; f_max_10_exp=0;
  1587. X    while (a < f_max/10.0) { a*=10.0; f_max_10_exp++; }
  1588. X    if (F) i_define(Fname, "_MAX_10_EXP", (long) f_max_10_exp,
  1589. X            (long) F_MAX_10_EXP);
  1590. X
  1591. X    /* Hidden bit + sanity check ****************************************/
  1592. X    if (f_radix != 10) {
  1593. X        hidden=0;
  1594. X        mantbits=floor_log(2, (Long_double)f_radix)*f_mant_dig;
  1595. X        if (mantbits+iexp == (int)sizeof(Number)*bits_per_byte) {
  1596. X            hidden=1;
  1597. X            Vprintf("%sArithmetic uses a hidden bit%s\n", co, oc);
  1598. X        } else if (mantbits+iexp+1 == (int)sizeof(Number)*bits_per_byte) {
  1599. X            Vprintf("%sArithmetic doesn't use a hidden bit%s\n",
  1600. X                co, oc);
  1601. X        } else {
  1602. X            printf("\n%s%s\n    %s %s %s!%s\n\n",
  1603. X                   co,
  1604. X                   "*** Something fishy here!",
  1605. X                   "Exponent size + mantissa size doesn't match",
  1606. X                   "with the size of a", thing,
  1607. X                   oc);
  1608. X        }
  1609. X        if (hidden && f_radix == 2 && f_max_exp+f_min_exp==3) {
  1610. X            Vprintf("%sIt looks like %s length IEEE format%s\n",
  1611. X                co, f_mant_dig==24 ? "single" :
  1612. X                    f_mant_dig==53 ? "double" :
  1613. X                    f_mant_dig >53 ? "extended" :
  1614. X                        "some", oc);
  1615. X            if (f_rounds != 1 || normal) {
  1616. X                Vprintf("%s   though ", co);
  1617. X                if (f_rounds != 1) {
  1618. X                    Vprintf("the rounding is unusual");
  1619. X                    if (normal) Vprintf(" and ");
  1620. X                }
  1621. X                if (normal) Vprintf("the normalisation is unusual");
  1622. X                Vprintf("%s\n", oc);
  1623. X            }
  1624. X        } else {
  1625. X            Vprintf("%sIt doesn't look like IEEE format%s\n",
  1626. X                co, oc);
  1627. X        }
  1628. X    }
  1629. X    printf("\n"); /* regardless of verbosity */
  1630. X    return f_mant_dig;
  1631. X}
  1632. X
  1633. XProcedure EPROP(fprec, dprec, lprec) int fprec, dprec, lprec; {
  1634. X    /* See if expressions are evaluated in extended precision.
  1635. X       Some compilers optimise even if you don't want it,
  1636. X       and then this function fails to produce the right result.
  1637. X       We try to diagnose this if it happens.
  1638. X    */
  1639. X    volatile int eprec;
  1640. X    volatile double a, b, base, old;
  1641. X    volatile Number d, oldd, dbase, one, zero;
  1642. X    volatile int bad=0;
  1643. X
  1644. X    /* Size of mantissa **************************************/
  1645. X    a=1.0;
  1646. X    if (setjmp(lab) == 0) { /* Yields nothing */
  1647. X        do { old=a; a=a+a; }
  1648. X        while ((((a+1.0)-a)-1.0) == 0.0 && a>old);
  1649. X    } else bad=1;
  1650. X    if (a <= old) bad=1;
  1651. X
  1652. X    if (!bad) {
  1653. X        b=1.0;
  1654. X        if (setjmp(lab) == 0) { /* Yields nothing */
  1655. X            do { old=b; b=b+b; }
  1656. X            while ((base=((a+b)-a)) == 0.0 && b>old);
  1657. X            if (b <= old) bad=1;
  1658. X        } else bad=1;
  1659. X    }
  1660. X
  1661. X    if (!bad) {
  1662. X        eprec=0; d=1.0; dbase=base; one=1.0; zero=0.0;
  1663. X        if (setjmp(lab) == 0) { /* Yields nothing */
  1664. X            do { eprec++; oldd=d; d=d*dbase; }
  1665. X            while ((((d+one)-d)-one) == zero && d>oldd);
  1666. X            if (d <= oldd) bad=1;
  1667. X        } else bad=1;
  1668. X    }
  1669. X
  1670. X    Unexpected(30);
  1671. X
  1672. X    if (bad) {
  1673. X      Vprintf("%sCan't determine precision for %s expressions:\n%s%s\n", 
  1674. X         co, thing, "   check that you compiled without optimisation!",
  1675. X         oc);
  1676. X    } else if (eprec==dprec) {
  1677. X      Vprintf("%s%s expressions are evaluated in double precision%s\n",
  1678. X          co, Thing, oc);
  1679. X    } else if (eprec==fprec) {
  1680. X      Vprintf("%s%s expressions are evaluated in float precision%s\n",
  1681. X          co, Thing, oc);
  1682. X    } else if (eprec==lprec) {
  1683. X      Vprintf("%s%s expressions are evaluated in long double precision%s\n",
  1684. X          co, Thing, oc);
  1685. X    } else {
  1686. X        Vprintf("%s%s expressions are evaluated in a %s %s %d %s%s\n",
  1687. X            co, Thing, eprec>dprec ? "higher" : "lower",
  1688. X            "precision than double,\n   using",
  1689. X            eprec, "base digits",
  1690. X                oc);
  1691. X    }
  1692. X}
  1693. X
  1694. X#else /* Number */
  1695. X
  1696. X#ifdef FPROP
  1697. X/* ARGSUSED */
  1698. Xint FPROP(bits_per_byte) int bits_per_byte; {
  1699. X    return 0;
  1700. X}
  1701. X#endif
  1702. X#ifdef EPROP
  1703. X/* ARGSUSED */
  1704. XProcedure EPROP(fprec, dprec, lprec) int fprec, dprec, lprec; {}
  1705. X#endif
  1706. X
  1707. X#endif /* ifdef Number */
  1708. X
  1709. X#ifdef PASS3
  1710. X#undef PASS
  1711. X#endif
  1712. X
  1713. X#ifdef PASS2
  1714. X#undef PASS2
  1715. X#define PASS3 1
  1716. X#endif
  1717. X
  1718. X#ifdef PASS1
  1719. X#undef PASS1
  1720. X#define PASS2 1
  1721. X#endif
  1722. X
  1723. X/* If your C compiler doesn't accept the next #include,
  1724. X   replace __FILE__ with the file name - and get a new C compiler... */
  1725. X
  1726. X#ifdef PASS
  1727. X#include __FILE__
  1728. X#endif
  1729. X
  1730. EOF
  1731. chars=`wc -c < 'config.c'`
  1732. if test $chars !=    49439; then echo 'config.c' is $chars characters, should be    49439 characters!; fi
  1733. fi
  1734. exit 0
  1735.