chiark / gitweb /
@@@ big mess
[mLib] / test / tvec-types.c
1 /* -*-c-*-
2  *
3  * Types for the test-vector framework
4  *
5  * (c) 2023 Straylight/Edgeware
6  */
7
8 /*----- Licensing notice --------------------------------------------------*
9  *
10  * This file is part of the mLib utilities library.
11  *
12  * mLib is free software: you can redistribute it and/or modify it under
13  * the terms of the GNU Library General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or (at
15  * your option) any later version.
16  *
17  * mLib is distributed in the hope that it will be useful, but WITHOUT
18  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
20  * License for more details.
21  *
22  * You should have received a copy of the GNU Library General Public
23  * License along with mLib.  If not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
25  * USA.
26  */
27
28 /*----- Header files ------------------------------------------------------*/
29
30 #include <assert.h>
31 #include <ctype.h>
32 #include <errno.h>
33 #include <float.h>
34 #include <limits.h>
35 #include <math.h>
36 #include <stdio.h>
37 #include <string.h>
38
39 #include "buf.h"
40 #include "codec.h"
41 #  include "base32.h"
42 #  include "base64.h"
43 #  include "hex.h"
44 #include "dstr.h"
45 #include "maths.h"
46
47 #include "tvec.h"
48 #include "tvec-adhoc.h"
49 #include "tvec-types.h"
50
51 /*----- Preliminary utilities ---------------------------------------------*/
52
53 /* --- @trivial_release@ --- *
54  *
55  * Arguments:   @union tvec_regval *rv@ = a register value
56  *              @const struct tvec_regdef@ = the register definition
57  *
58  * Returns:     ---
59  *
60  * Use:         Does nothing.  Used for register values which don't retain
61  *              resources.
62  */
63
64 static void trivial_release(union tvec_regval *rv,
65                             const struct tvec_regdef *rd)
66   { ; }
67
68 /*----- Integer utilities -------------------------------------------------*/
69
70 /* --- @unsigned_to_buf@, @signed_to_buf@ --- *
71  *
72  * Arguments:   @buf *b@ = buffer to write on
73  *              @unsigned long u@ or @long i@ = integer to write
74  *
75  * Returns:     Zero on success, @-1@ on failure.
76  *
77  * Use:         Write @i@ to the buffer, in big-endian (two's-complement, it
78  *              signed) format.
79  */
80
81 static int unsigned_to_buf(buf *b, unsigned long u)
82   { kludge64 k; ASSIGN64(k, u); return (buf_putk64l(b, k)); }
83
84 static int signed_to_buf(buf *b, long i)
85 {
86   kludge64 k;
87   unsigned long u;
88
89   u = i;
90   if (i >= 0) ASSIGN64(k, u);
91   else { ASSIGN64(k, ~u); CPL64(k, k); }
92   return (buf_putk64l(b, k));
93 }
94
95 /* --- @unsigned_from_buf@, @signed_from_buf@ --- *
96  *
97  * Arguments:   @buf *b@ = buffer to write on
98  *              @unsigned long *u_out@ or @long *i_out@ = where to put the
99  *                      result
100  *
101  * Returns:     Zero on success, @-1@ on failure.
102  *
103  * Use:         Read an integer, in big-endian (two's-complement, if signed)
104  *              format, from the buffer.
105  */
106
107 static int unsigned_from_buf(buf *b, unsigned long *u_out)
108 {
109   kludge64 k, ulmax;
110
111   ASSIGN64(ulmax, ULONG_MAX);
112   if (buf_getk64l(b, &k)) return (-1);
113   if (CMP64(k, >, ulmax)) { buf_break(b); return (-1); }
114   *u_out = GET64(unsigned long, k); return (0);
115 }
116
117 /* --- @hex_width@ --- *
118  *
119  * Arguments:   @unsigned long u@ = an integer
120  *
121  * Returns:     A suitable number of digits to use in order to display @u@ in
122  *              hex.  Currently, we select a power of two sufficient to show
123  *              the value, but at least 2.
124  */
125
126 static int hex_width(unsigned long u)
127 {
128   int wd;
129   unsigned long t;
130
131   for (t = u >> 4, wd = 4; t >>= wd, wd *= 2, t; );
132   return (wd/4);
133 }
134
135 /* --- @format_unsigned_hex@, @format_signed_hex@ --- *
136  *
137  * Arguments:   @const struct gprintf_ops *gops@ = print operations
138  *              @void *go@ = print destination
139  *              @unsigned long u@ or @long i@ = integer to print
140  *
141  * Returns:     ---
142  *
143  * Use:         Print an unsigned or signed integer in hexadecimal.
144  */
145
146 static void format_unsigned_hex(const struct gprintf_ops *gops, void *go,
147                                 unsigned long u)
148   { gprintf(gops, go, "0x%0*lx", hex_width(u), u); }
149
150 static void format_signed_hex(const struct gprintf_ops *gops, void *go,
151                               long i)
152 {
153   unsigned long u = i >= 0 ? i : -(unsigned long)i;
154   gprintf(gops, go, "%s0x%0*lx", i < 0 ? "-" : "", hex_width(u), u);
155 }
156
157 static int signed_from_buf(buf *b, long *i_out)
158 {
159   kludge64 k, lmax, not_lmin;
160
161   ASSIGN64(lmax, LONG_MAX); ASSIGN64(not_lmin, ~(unsigned long)LONG_MIN);
162   if (buf_getk64l(b, &k)) return (-1);
163   if (CMP64(k, <=, lmax)) *i_out = (long)GET64(unsigned long, k);
164   else {
165     CPL64(k, k);
166     if (CMP64(k, <=, not_lmin)) *i_out = -(long)GET64(unsigned long, k) - 1;
167     else { buf_break(b); return (-1); }
168   }
169   return (0);
170 }
171
172 /* --- @check_signed_range@, @check_unsigned_range@ --- *
173  *
174  * Arguments:   @long i@ or @unsigned long u@ = an integer
175  *              @const struct tvec_irange *ir@ or
176  *                      @const struct tvec_urange *ur@ = range specification,
177  *                      or null
178  *              @struct tvec_state *tv@ = test vector state
179  *              @const char *what@ = description of value
180  *
181  * Returns:     Zero on success, or @-1@ on error.
182  *
183  * Use:         Check that the integer is within bounds.  If not, report a
184  *              suitable error and return a failure indication.
185  */
186
187 static int check_signed_range(long i,
188                               const struct tvec_irange *ir,
189                               struct tvec_state *tv, const char *what)
190 {
191   long ii, aa, m;
192
193   if (ir) {
194     if (ir->min > i || i > ir->max) {
195       tvec_error(tv, "%s %ld out of range (must be in [%ld .. %ld])",
196                  what, i, ir->min, ir->max);
197       return (-1);
198     }
199     m = ir->m; if (m > 0) m = -m;
200     if (m && m != -1) {
201       /* Reduce both the integer and the intended residue to the canonical
202        * interval [0, m).  This is more awkward than it should be because C
203        * (following CPU designs) adopted an unhelpful definition of integer
204        * division when the dividend is negative.
205        *
206        * Note that I've canonicalized the divisor to be %%\emph{negative}%%,
207        * because in two's-complement arithmetic, the absolute value of the
208        * most negative representable value is not itself representable.  The
209        * residue modulo the most negative value will itself be representable.
210        */
211
212       ii = i%m; if (ii < 0) ii -= m;
213       aa = ir->a%m; if (aa < 0) aa -= m;
214       if (ii != aa) {
215         tvec_error(tv, "%s %ld == %ld =/= %ld (mod %ld)",
216                    what, i, ii, ir->a, ir->m);
217         return (-1);
218       }
219     }
220   }
221   return (0);
222 }
223
224 static int check_unsigned_range(unsigned long u,
225                                 const struct tvec_urange *ur,
226                                 struct tvec_state *tv, const char *what)
227 {
228   unsigned long uu;
229
230   if (ur) {
231     if (ur->min > u || u > ur->max) {
232       tvec_error(tv, "%s %lu out of range (must be in [%lu .. %lu])",
233                  what, u, ur->min, ur->max);
234       return (-1);
235     }
236     if (ur->m && ur->m != 1) {
237       uu = u%ur->m;
238       if (uu != ur->a%ur->m) {
239         tvec_error(tv, "%s %lu == %lu =/= %lu (mod %lu)",
240                    what, u, uu, ur->a, ur->m);
241         return (-1);
242       }
243     }
244   }
245   return (0);
246 }
247
248 /* --- @chtodig@ --- *
249  *
250  * Arguments:   @int ch@ = a character
251  *
252  * Returns:     The numeric value of the character as a digit, or @-1@ if
253  *              it's not a digit.  Letters count as extended digits starting
254  *              with value 10; case is not significant.
255  */
256
257 static int chtodig(int ch)
258 {
259   if ('0' <= ch && ch <= '9') return (ch - '0');
260   else if ('a' <= ch && ch <= 'z') return (ch - 'a' + 10);
261   else if ('A' <= ch && ch <= 'Z') return (ch - 'A' + 10);
262   else return (-1);
263 }
264
265 /* --- @parse_unsigned_integer@, @parse_signed_integer@ --- *
266  *
267  * Arguments:   @unsigned long *u_out@, @long *i_out@ = where to put the
268  *                      result
269  *              @const char **q_out@ = where to put the end position
270  *              @const char *p@ = pointer to the string to parse
271  *
272  * Returns:     Zero on success, @-1@ on error.
273  *
274  * Use:         Parse an integer from a string in the test-vector format.
275  *              This is mostly extension of the traditional C @strtoul@
276  *              format: supported inputs include:
277  *
278  *                * NNN -- a decimal number (even if it starts with `0');
279  *                * 0xNNN -- hexadecimal;
280  *                * 0oNNN -- octal;
281  *                * 0bNNN -- binary;
282  *                * NNrNNN -- base NN.
283  *
284  *              Furthermore, single underscores are permitted internally as
285  *              an insignificant digit separator.
286  */
287
288 static int parse_unsigned_integer(unsigned long *u_out, const char **q_out,
289                                   const char *p)
290 {
291   unsigned long u;
292   int ch, d, r;
293   const char *q;
294   unsigned f = 0;
295 #define f_implicit 1u                   /* implicitly reading base 10 */
296 #define f_digit 2u                      /* read a real digit */
297 #define f_uscore 4u                     /* found an underscore */
298
299   /* Initial setup
300    *
301    * This will deal with the traditional `0[box]...' prefixes.  We'll leave
302    * our new `NNr...' syntax for later.
303    */
304   if (p[0] != '0' || !p[1]) {
305     d = chtodig(*p); if (0 > d || d >= 10) return (-1);
306     r = 10; u = d; p++; f |= f_implicit | f_digit;
307   } else {
308     u = 0; d = chtodig(p[2]);
309     if (d < 0) { r = 10; f |= f_implicit | f_digit; p++; }
310     else if ((p[1] == 'x' || p[1] == 'X') && d < 16) { r = 16; p += 2; }
311     else if ((p[1] == 'o' || p[1] == 'O') && d < 8) { r = 8; p += 2; }
312     else if ((p[1] == 'b' || p[1] == 'B') && d < 2) { r = 2; p += 2; }
313     else { r = 10; f |= f_digit; p++; }
314   }
315
316   q = p;
317   for (;;) {
318     /* Work through the string a character at a time. */
319
320     ch = *p; switch (ch) {
321
322       case '_':
323         /* An underscore is OK if we haven't just seen one. */
324
325         if (f&f_uscore) goto done;
326         p++; f = (f&~f_implicit) | f_uscore;
327         break;
328
329       case 'r': case 'R':
330         /* An `r' is OK if the number so far is small enough to be a sensible
331          * base, and we're scanning decimal implicitly.
332          */
333
334         if (!(f&f_implicit) || !u || u >= 36) goto done;
335         d = chtodig(p[1]); if (0 > d || d >= u) goto done;
336         r = u; u = d; f = (f&~f_implicit) | f_digit; p += 2; q = p;
337         break;
338
339       default:
340         /* Otherwise we expect a valid digit and accumulate it. */
341         d = chtodig(ch); if (d < 0 || d >= r) goto done;
342         if (u > ULONG_MAX/r) return (-1);
343         u *= r; if (u > ULONG_MAX - d) return (-1);
344         u += d; f = (f&~f_uscore) | f_digit; p++; q = p;
345         break;
346     }
347   }
348
349 done:
350   if (!(f&f_digit)) return (-1);
351   *u_out = u; *q_out = q; return (0);
352
353 #undef f_implicit
354 #undef f_digit
355 #undef f_uscore
356 }
357
358 static int parse_signed_integer(long *i_out, const char **q_out,
359                                 const char *p)
360 {
361   unsigned long u;
362   unsigned f = 0;
363 #define f_neg 1u
364
365   /* Read an initial sign. */
366   if (*p == '+') p++;
367   else if (*p == '-') { f |= f_neg; p++; }
368
369   /* Scan an unsigned number. */
370   if (parse_unsigned_integer(&u, q_out, p)) return (-1);
371
372   /* Check for signed overflow and apply the sign. */
373   if (!(f&f_neg)) {
374     if (u > LONG_MAX) return (-1);
375     *i_out = u;
376   } else {
377     if (u && u - 1 > -(LONG_MIN + 1)) return (-1);
378     *i_out = u ? -(long)(u - 1) - 1 : 0;
379   }
380
381   return (0);
382
383 #undef f_neg
384 }
385
386 /* --- @parse_unsigned@, @parse_signed@ --- *
387  *
388  * Arguments:   @unsigned long *u_out@ or @long *i_out@ = where to put the
389  *                      result
390  *              @const char *p@ = string to parse
391  *              @const struct tvec_urange *ur@ or
392  *                      @const struct tvec_irange *ir@ = range specification,
393  *                      or null
394  *              @struct tvec_state *tv@ = test vector state
395  *
396  * Returns:     Zero on success, @-1@ on error.
397  *
398  * Use:         Parse and range-check an integer.  Unlike @parse_(un)signed_
399  *              integer@, these functions check that there's no cruft
400  *              following the final digit, and report errors as they find
401  *              them rather than leaving that to the caller.
402  */
403
404 static int parse_unsigned(unsigned long *u_out, const char *p,
405                           const struct tvec_urange *ur,
406                           struct tvec_state *tv)
407 {
408   unsigned long u;
409   const char *q;
410
411   if (parse_unsigned_integer(&u, &q, p))
412     return (tvec_error(tv, "invalid unsigned integer `%s'", p));
413   if (*q) return (tvec_syntax(tv, *q, "end-of-line"));
414   if (check_unsigned_range(u, ur, tv, "integer")) return (-1);
415   *u_out = u; return (0);
416 }
417
418 static int parse_signed(long *i_out, const char *p,
419                         const struct tvec_irange *ir,
420                         struct tvec_state *tv)
421 {
422   long i;
423   const char *q;
424
425   if (parse_signed_integer(&i, &q, p))
426     return (tvec_error(tv, "invalid signed integer `%s'", p));
427   if (*q) return (tvec_syntax(tv, *q, "end-of-line"));
428   if (check_signed_range(i, ir, tv, "integer")) return (-1);
429   *i_out = i; return (0);
430 }
431 static const char size_units[] = "kMGTPEZY";
432
433 /* --- @parse_szint@ --- *
434  *
435  * Arguments:   @struct tvec_state *tv@ = test-vector state
436  *              @unsigned long *u_out@ = where to put the answer
437  *              @const char *delims@ = delimiters
438  *              @const char *what@ = description of what we're parsing
439  *
440  * Returns:     Zero on success, %$-1$% on failure.
441  *
442  * Use:         Parse a memory size.
443  */
444
445 static int parse_szint(struct tvec_state *tv, unsigned long *u_out,
446                        const char *delims, const char *what)
447 {
448   dstr d = DSTR_INIT;
449   const char *p, *unit;
450   unsigned long u, t;
451   int rc;
452   unsigned f = 0;
453 #define f_range 1u
454
455   if (tvec_readword(tv, &d, 0, delims, what)) { rc = -1; goto end; }
456   p = d.buf;
457   if (parse_unsigned_integer(&u, &p, p)) goto bad;
458   if (!*p) tvec_readword(tv, &d, &p, delims, 0);
459
460   for (t = u, unit = size_units; *unit; unit++) {
461     if (t > ULONG_MAX/1024) f |= f_range;
462     else t *= 1024;
463     if (*p == *unit) {
464       if (f&f_range) goto rangerr;
465       u = t; p++; break;
466     }
467   }
468   if (*p == 'B') p++;
469   if (*p) goto bad;
470
471   *u_out = u; rc = 0;
472 end:
473   dstr_destroy(&d);
474   return (rc);
475
476 bad:
477   tvec_error(tv, "invalid %s `%s'", what, d.buf);
478   rc = -1; goto end;
479
480 rangerr:
481   tvec_error(tv, "%s `%s' out of range", what, d.buf);
482   rc = -1; goto end;
483
484 #undef f_range
485 }
486
487 /* --- @format_size@ --- *
488  *
489  * Arguments:   @const struct gprintf_ops *gops@ = print operations
490  *              @void *go@ = print destination
491  *              @unsigned long u@ = a size
492  *              @unsigned style@ = style (@TVSF_...@)
493  *
494  * Returns:     ---
495  *
496  * Use:         Format @u@ as a size in bytes to the destination, expressing
497  *              it with a unit prefix if this is possible exactly.
498  */
499
500 static void format_size(const struct gprintf_ops *gops, void *go,
501                         unsigned long u, unsigned style)
502 {
503   const char *unit;
504
505   if (style&TVSF_RAW)
506     gprintf(gops, go, "%lu", u);
507   else if (!u || u%1024)
508     gprintf(gops, go, "%lu%sB", u, style&TVSF_COMPACT ? "" : " ");
509   else {
510     for (unit = size_units, u /= 1024;
511          !(u%1024) && unit[1];
512          u /= 1024, unit++);
513     gprintf(gops, go, "%lu%s%cB", u, style&TVSF_COMPACT ? "" : " ", *unit);
514   }
515 }
516
517 /*----- Floating-point utilities ------------------------------------------*/
518
519 /* --- @eqish_floating_p@ --- *
520  *
521  * Arguments:   @double x, y@ = two numbers to compare
522  *              @const struct tvec_floatinfo *fi@ = floating-point info
523  *
524  * Returns:     Nonzero if  the comparand @x@ is sufficiently close to the
525  *              reference @y@, or zero if it's definitely different.
526  */
527
528 static int eqish_floating_p(double x, double y,
529                             const struct tvec_floatinfo *fi)
530 {
531   double t, u;
532
533   /* NaNs and infinities are equal only to each other. */
534   if (NANP(x)) return (NANP(y)); else if (NANP(y)) return (0);
535   if (INFP(x)) return (x == y); else if (INFP(y)) return (0);
536
537   /* Compare finite values. */
538   switch (fi ? fi->f&TVFF_EQMASK : TVFF_EXACT) {
539     case TVFF_EXACT:
540       return (x == y && NEGP(x) == NEGP(y));
541     case TVFF_ABSDELTA:
542       t = fabs(y - x); return (t < fi->delta);
543     case TVFF_RELDELTA:
544       t = fabs(y - x); u = fabs(y*fi->delta); if (u < DBL_MIN) u = DBL_MIN;
545       return (t <= u);
546     default:
547       abort();
548   }
549 }
550
551 /* --- @format_floating@ --- *
552  *
553  * Arguments:   @const struct gprintf_ops *gops@ = print operations
554  *              @void *go@ = print destination
555  *              @double x@ = number to print
556  *
557  * Returns:     ---
558  *
559  * Use:         Print a floating-point number, accurately.
560  */
561
562 static void format_floating(const struct gprintf_ops *gops, void *go,
563                             double x)
564 {
565   int prec;
566
567   if (NANP(x))
568     gprintf(gops, go, "#nan");
569   else if (INFP(x))
570     gprintf(gops, go, x > 0 ? "#+inf" : "#-inf");
571   else {
572     /* Ugh.  C doesn't provide any function for just printing a
573      * floating-point number /correctly/, i.e., so that you can read the
574      * result back and recover the number you first thought of.  There are
575      * complicated algorithms published for doing this, but I really don't
576      * want to get into that here.  So we have this.
577      *
578      * The sign doesn't cause significant difficulty so we're going to ignore
579      * it for now.  So suppose we're given a number %$x = f b^e$%, in
580      * base-%$b$% format, so %$f b^n$% and %$e$% are integers, with
581      * %$0 \le f < 1$%.  We're going to convert it into the nearest integer
582      * of the form %$X = F B^E$%, with similar conditions, only with the
583      * additional requirement that %$X$% is normalized, i.e., that %$X = 0$%
584      * or %$F \ge B^{-N}$%.
585      *
586      * We're rounding to the nearest such %$X$%.  If there is to be ambiguity
587      * in the conversion, then some %$x = f b^e$% and the next smallest
588      * representable number %$x' = x + b^{e-n}$% must both map to the same
589      * %$X$%, which means both %$x$% and %$x'$% must be nearer to %$X$% than
590      * any other number representable in the target system.  The nest larger
591      * number is %$X' = X + B^{E-N}$%; the next smaller number will normally
592      * be %$W = X - B^{E-N}$%, but if %$F = 1/B$ then the next smaller number
593      * is actually %$X - B^{E-N-1}$%.  We ignore this latter possibility in
594      * the pursuit of a conservative estimate (though actually it doesn't
595      * matter).
596      *
597      * If both %$x$% and %$x'$% map to %$X$% then we must have
598      * %$L = X - B^{E-N}/2 \le x$% and %$x + b^{e-n} \le R = X + B^{E-N}/2$%;
599      * so firstly %$f b^e = x \ge L = W + B^{E-N}/2 > W = (F - B^{-N}) B^E$%,
600      * and secondly %$b^{e-n} \le B^{E-N}$%.  Since these inequalities are in
601      * opposite senses, we can divide, giving
602      *
603      *         %$f b^e/b^{e-n} > (F - B^{-N}) B^E/B^{E-N}$% ,
604      *
605      * whence
606      *
607      *         %$f b^n > (F - B^{-N}) B^N = F B^N - 1$% .
608      *
609      * Now %$f \le 1 - b^{-n}$%, and %$F \ge B^{-1}$%, so, for this to be
610      * possible, it must be the case that
611      *
612      *         %$(1 - b^{-n}) b^n = b^n - 1 > B^{N-1} - 1$% .
613      *
614      * Then rearrange and take logarithms, obtaining
615      *
616      *         %$(N - 1) \log B < n \log b$% ,
617      *
618      * and so
619      *
620      *         %$N < n \log b/\log B + 1$% .
621      *
622      * Recall that this is a necessary condition for a collision to occur; we
623      * are therefore safe whenever
624      *
625      *         %$N \ge n \log b/\log B + 1$% ;
626      *
627      * so, taking ceilings,
628      *
629      *         %$N \ge \lceil n \log b/\log B \rceil + 1$% .
630      *
631      * So that's why we have this.
632      *
633      * I'm going to assume that @n = DBL_MANT_DIG@ is sufficiently small
634      * that we can calculate this without ending up on the wrong side of an
635      * integer boundary.
636      *
637      * In C11, we have @DBL_DECIMAL_DIG@, which should be the same value
638      * only as a constant.  Except that modern compilers are more than clever
639      * enough to work out that this is a constant anyway.
640      *
641      * This is sometimes an overestimate: we'll print out meaningless digits
642      * that don't represent anything we actually know about the number in
643      * question.  To fix that, we'd need a complicated algorithm like Steele
644      * and White's Dragon4, Gay's @dtoa@, or Burger and Dybvig's algorithm
645      * (note that Loitsch's Grisu2 is conservative, and Grisu3 hands off to
646      * something else in difficult situations).
647      */
648
649 #ifdef DBL_DECIMAL_DIG
650     prec = DBL_DECIMAL_DIG;
651 #else
652     prec = ceil(DBL_MANT_DIG*log(FLT_RADIX)/log(10)) + 1;
653 #endif
654     gprintf(gops, go, "%.*g", prec, x);
655   }
656 }
657
658 /* --- @parse_floating@ --- *
659  *
660  * Arguments:   @double *x_out@ = where to put the result
661  *              @const char *q_out@ = where to leave end pointer, or null
662  *              @const char *p@ = string to parse
663  *              @const struct tvec_floatinfo *fi@ = floating-point info
664  *              @struct tvec_state *tv@ = test vector state
665  *
666  * Returns:     Zero on success, @-1@ on error.
667  *
668  * Use:         Parse a floating-point number from a string.  Reports any
669  *              necessary errors.  If @q_out@ is not null then trailing
670  *              material is permitted and a pointer to it (or the end of the
671  *              string) is left in @*q_out@.
672  */
673
674 static int parse_floating(double *x_out, const char **q_out, const char *p,
675                           const struct tvec_floatinfo *fi,
676                           struct tvec_state *tv)
677 {
678   const char *pp; char *q;
679   dstr d = DSTR_INIT;
680   double x;
681   int olderr, rc;
682
683   /* Check for special tokens. */
684   if (STRCMP(p, ==, "#nan")) {
685 #ifdef NAN
686     if (q_out) *q_out = p + strlen(p);
687     x = NAN; rc = 0;
688 #else
689     tvec_error(tv, "NaN not supported on this system");
690     rc = -1; goto end;
691 #endif
692   }
693
694   else if (STRCMP(p, ==, "#inf") ||
695            STRCMP(p, ==, "#+inf") || STRCMP(p, ==, "+#inf")) {
696 #ifdef INFINITY
697     if (q_out) *q_out = p + strlen(p);
698     x = INFINITY; rc = 0;
699 #else
700     tvec_error(tv, "infinity not supported on this system");
701     rc = -1; goto end;
702 #endif
703   }
704
705   else if (STRCMP(p, ==, "#-inf") || STRCMP(p, ==, "-#inf")) {
706 #ifdef INFINITY
707     if (q_out) *q_out = p + strlen(p);
708     x = -INFINITY; rc = 0;
709 #else
710     tvec_error(tv, "infinity not supported on this system");
711     rc = -1; goto end;
712 #endif
713   }
714
715   /* Check that this looks like a number, so we can exclude `strtod'
716    * recognizing its own non-finite number tokens.
717    */
718   else {
719     pp = p;
720     if (*pp == '+' || *pp == '-') pp++;
721     if (*pp == '.') pp++;
722     if (!ISDIGIT(*pp)) {
723       tvec_syntax(tv, *p ? *p : fgetc(tv->fp), "floating-point number");
724       rc = -1; goto end;
725     }
726
727     /* Parse the number using the system parser. */
728     olderr = errno; errno = 0;
729 #if __STDC_VERSION__ >= 199901
730     x = strtod(p, &q);
731 #else
732     x = strtold(p, &q);
733 #endif
734     if (q_out) *q_out = q;
735     else if (*q) { tvec_syntax(tv, *q, "end-of-line"); rc = -1; goto end; }
736     if (errno && (errno != ERANGE || (x > 0 ? -x : x) == HUGE_VAL)) {
737       tvec_error(tv, "invalid floating-point number `%.*s': %s",
738                  (int)(q - p), p, strerror(errno));
739       rc = -1; goto end;
740     }
741     errno = olderr;
742   }
743
744   /* Check that the number is acceptable. */
745   if (NANP(x) && fi && !(fi->f&TVFF_NANOK)) {
746     tvec_error(tv, "#nan not allowed here");
747     rc = -1; goto end;
748   }
749
750   if (fi &&
751       ((!(fi->f&TVFF_NOMIN) && x < fi->min) ||
752        (!(fi->f&TVFF_NOMAX) && x > fi->max)) &&
753       !(INFP(x) && (fi->f&(NEGP(x) ? TVFF_NEGINFOK : TVFF_POSINFOK)))) {
754     dstr_puts(&d, "floating-point number ");
755     format_floating(&dstr_printops, &d, x);
756     dstr_puts(&d, " out of range (must be in ");
757     if (fi->f&TVFF_NOMIN)
758       dstr_puts(&d, "(#-inf");
759     else
760       { dstr_putc(&d, '['); format_floating(&dstr_printops, &d, fi->min); }
761     dstr_puts(&d, " .. ");
762     if (fi->f&TVFF_NOMAX)
763       dstr_puts(&d, "#+inf)");
764     else
765       { format_floating(&dstr_printops, &d, fi->max); dstr_putc(&d, ']'); }
766     dstr_putc(&d, ')'); dstr_putz(&d);
767     tvec_error(tv, "%s", d.buf); rc = -1; goto end;
768   }
769
770   /* All done. */
771   *x_out = x; rc = 0;
772 end:
773   dstr_destroy(&d);
774   return (rc);
775 }
776
777 /*----- String utilities --------------------------------------------------*/
778
779 /* Special character name table. */
780 static const struct chartab {
781   const char *name;                     /* character name */
782   int ch;                               /* character value */
783   unsigned f;                           /* flags: */
784 #define CTF_PREFER 1u                   /*   preferred name */
785 #define CTF_SHORT 2u                    /*   short name (compact style) */
786 } chartab[] = {
787   { "#eof",             EOF,    CTF_PREFER | CTF_SHORT },
788   { "#nul",             '\0',   CTF_PREFER },
789   { "#bell",            '\a',   CTF_PREFER },
790   { "#ding",            '\a',   0 },
791   { "#bel",             '\a',   CTF_SHORT },
792   { "#backspace",       '\b',   CTF_PREFER },
793   { "#bs",              '\b',   CTF_SHORT },
794   { "#escape",          '\x1b', CTF_PREFER },
795   { "#esc",             '\x1b', CTF_SHORT },
796   { "#formfeed",        '\f',   CTF_PREFER },
797   { "#ff",              '\f',   CTF_SHORT },
798   { "#newline",         '\n',   CTF_PREFER },
799   { "#linefeed",        '\n',   0 },
800   { "#lf",              '\n',   CTF_SHORT },
801   { "#nl",              '\n',   0 },
802   { "#return",          '\r',   CTF_PREFER },
803   { "#carriage-return", '\r',   0 },
804   { "#cr",              '\r',   CTF_SHORT },
805   { "#tab",             '\t',   CTF_PREFER | CTF_SHORT },
806   { "#horizontal-tab",  '\t',   0 },
807   { "#ht",              '\t',   0 },
808   { "#vertical-tab",    '\v',   CTF_PREFER },
809   { "#vt",              '\v',   CTF_SHORT },
810   { "#space",           ' ',    0 },
811   { "#spc",             ' ',    CTF_SHORT },
812   { "#delete",          '\x7f', CTF_PREFER },
813   { "#del",             '\x7f', CTF_SHORT },
814   { 0,                  0,      0 }
815 };
816
817 /* --- @find_charname@ --- *
818  *
819  * Arguments:   @int ch@ = character to match
820  *              @unsigned f@ = flags (@CTF_...@) to match
821  *
822  * Returns:     The name of the character, or null if no match is found.
823  *
824  * Use:         Looks up a name for a character.  Specifically, it returns
825  *              the first entry in the @chartab@ table which matches @ch@ and
826  *              which has one of the flags @f@ set.
827  */
828
829 static const char *find_charname(int ch, unsigned f)
830 {
831   const struct chartab *ct;
832
833   for (ct = chartab; ct->name; ct++)
834     if (ct->ch == ch && (ct->f&f)) return (ct->name);
835   return (0);
836 }
837
838 /* --- @read_charname@ --- *
839  *
840  * Arguments:   @int *ch_out@ = where to put the character
841  *              @const char *p@ = character name
842  *              @unsigned f@ = flags (@TCF_...@)
843  *
844  * Returns:     Zero if a match was found, @-1@ if not.
845  *
846  * Use:         Looks up a character by name.  If @RCF_EOFOK@ is set in @f@,
847  *              then the @EOF@ marker can be matched; otherwise it can't.
848  */
849
850 #define RCF_EOFOK 1u
851 static int read_charname(int *ch_out, const char *p, unsigned f)
852 {
853   const struct chartab *ct;
854
855   for (ct = chartab; ct->name; ct++)
856     if (STRCMP(p, ==, ct->name) && ((f&RCF_EOFOK) || ct->ch >= 0))
857       { *ch_out = ct->ch; return (0); }
858   return (-1);
859 }
860
861 /* --- @format_charesc@ --- *
862  *
863  * Arguments:   @const struct gprintf_ops *gops@ = print operations
864  *              @void *go@ = print destination
865  *              @int ch@ = character to format
866  *              @unsigned f@ = flags (@FCF_...@)
867  *
868  * Returns:     ---
869  *
870  * Use:         Format a character as an escape sequence, possibly as part of
871  *              a larger string.  If @FCF_BRACE@ is set in @f@, then put
872  *              braces around a `\x...'  code, so that it's suitable for use
873  *              in a longer string.
874  */
875
876 #define FCF_BRACE 1u
877 static void format_charesc(const struct gprintf_ops *gops, void *go,
878                            int ch, unsigned f)
879 {
880   switch (ch) {
881     case '\a': gprintf(gops, go, "\\a"); break;
882     case '\b': gprintf(gops, go, "\\b"); break;
883     case '\x1b': gprintf(gops, go, "\\e"); break;
884     case '\f': gprintf(gops, go, "\\f"); break;
885     case '\r': gprintf(gops, go, "\\r"); break;
886     case '\n': gprintf(gops, go, "\\n"); break;
887     case '\t': gprintf(gops, go, "\\t"); break;
888     case '\v': gprintf(gops, go, "\\v"); break;
889     case '\\': gprintf(gops, go, "\\\\"); break;
890     case '\'': gprintf(gops, go, "\\'"); break;
891     case '\0':
892       if (f&FCF_BRACE) gprintf(gops, go, "\\{0}");
893       else gprintf(gops, go, "\\0");
894       break;
895     default:
896       if (f&FCF_BRACE)
897         gprintf(gops, go, "\\x{%0*x}", hex_width(UCHAR_MAX), ch);
898       else
899         gprintf(gops, go, "\\x%0*x", hex_width(UCHAR_MAX), ch);
900       break;
901   }
902 }
903
904 /* --- @format_char@ --- *
905  *
906  * Arguments:   @const struct gprintf_ops *gops@ = print operations
907  *              @void *go@ = print destination
908  *              @int ch@ = character to format
909  *
910  * Returns:     ---
911  *
912  * Use:         Format a single character.
913  */
914
915 static void format_char(const struct gprintf_ops *gops, void *go, int ch)
916 {
917   switch (ch) {
918     case '\\': case '\'': escape:
919       gprintf(gops, go, "'");
920       format_charesc(gops, go, ch, 0);
921       gprintf(gops, go, "'");
922       break;
923     default:
924       if (!isprint(ch)) goto escape;
925       gprintf(gops, go, "'%c'", ch);
926       break;
927   }
928 }
929
930 /* --- @fill_pattern@ --- *
931  *
932  * Arguments:   @void *p@ = destination pointer
933  *              @size_t sz@ = destination buffer size
934  *              @const void *pat@ = pointer to pattern
935  *              @size_t patsz@ = pattern size
936  *
937  * Returns:     ---
938  *
939  * Use:         Fill the destination buffer with as many copies of the
940  *              pattern as will fit, followed by as many initial bytes of the
941  *              pattern will fit in the remaining space.
942  */
943
944 static void fill_pattern(void *p, size_t sz, const void *pat, size_t patsz)
945 {
946   unsigned char *q = p;
947
948   if (patsz == 1)
949     memset(q, *(unsigned char *)pat, sz);
950   else {
951     if (sz > patsz) {
952       memcpy(q, pat, patsz); pat = q; q += patsz; sz -= patsz;
953       while (sz > patsz)
954         { memcpy(q, pat, patsz); q += patsz; sz -= patsz; patsz *= 2; }
955     }
956     memcpy(q, pat, sz);
957   }
958 }
959
960 /* --- @maybe_format_unsigned_char@, @maybe_format_signed_char@ --- *
961  *
962  * Arguments:   @const struct gprintf_ops *gops@ = print operations
963  *              @void *go@ = print destination
964  *              @unsigned long u@ or @long i@ = an integer
965  *
966  * Returns:     ---
967  *
968  * Use:         Format a (signed or unsigned) integer as a character, if it's
969  *              in range, printing something like `= 'q''.  It's assumed that
970  *              a comment marker has already been output.
971  */
972
973 static void maybe_format_unsigned_char
974   (const struct gprintf_ops *gops, void *go, unsigned long u)
975 {
976   const char *p;
977
978   p = find_charname(u, CTF_PREFER);
979   if (p) gprintf(gops, go, " = %s", p);
980   if (u < UCHAR_MAX)
981     { gprintf(gops, go, " = "); format_char(gops, go, u); }
982 }
983
984 static void maybe_format_signed_char
985   (const struct gprintf_ops *gops, void *go, long i)
986 {
987   const char *p;
988
989   p = find_charname(i, CTF_PREFER);
990   if (p) gprintf(gops, go, " = %s", p);
991   if (0 <= i && i < UCHAR_MAX)
992     { gprintf(gops, go, " = "); format_char(gops, go, i); }
993 }
994
995 /* --- @read_charesc@ --- *
996  *
997  * Arguments:   @int *ch_out@ = where to put the result
998  *              @struct tvec_state *tv@ = test vector state
999  *
1000  * Returns:     Zero on success, @-1@ on error.
1001  *
1002  * Use:         Parse and convert an escape sequence from @tv@'s input
1003  *              stream, assuming that the initial `\' has already been read.
1004  *              Reports errors as appropriate.
1005  */
1006
1007 static int read_charesc(int *ch_out, struct tvec_state *tv)
1008 {
1009   int ch, i, esc;
1010   unsigned f = 0;
1011 #define f_brace 1u
1012
1013   ch = getc(tv->fp);
1014   switch (ch) {
1015
1016     /* Things we shouldn't find. */
1017     case EOF: case '\n': return (tvec_syntax(tv, ch, "string escape"));
1018
1019     /* Single-character escapes. */
1020     case '\'': *ch_out = '\''; break;
1021     case '\\': *ch_out = '\\'; break;
1022     case '"': *ch_out = '"'; break;
1023     case 'a': *ch_out = '\a'; break;
1024     case 'b': *ch_out = '\b'; break;
1025     case 'e': *ch_out = '\x1b'; break;
1026     case 'f': *ch_out = '\f'; break;
1027     case 'n': *ch_out = '\n'; break;
1028     case 'r': *ch_out = '\r'; break;
1029     case 't': *ch_out = '\t'; break;
1030     case 'v': *ch_out = '\v'; break;
1031
1032     /* Hex escapes, with and without braces. */
1033     case 'x':
1034       ch = getc(tv->fp);
1035       if (ch == '{') { f |= f_brace; ch = getc(tv->fp); }
1036       else f &= ~f_brace;
1037       esc = chtodig(ch);
1038       if (esc < 0 || esc >= 16) return (tvec_syntax(tv, ch, "hex digit"));
1039       for (;;) {
1040         ch = getc(tv->fp); i = chtodig(ch); if (i < 0 || i >= 16) break;
1041         esc = 16*esc + i;
1042         if (esc > UCHAR_MAX)
1043           return (tvec_error(tv,
1044                              "character code %d out of range", esc));
1045       }
1046       if (!(f&f_brace)) ungetc(ch, tv->fp);
1047       else if (ch != '}') return (tvec_syntax(tv, ch, "`}'"));
1048       *ch_out = esc;
1049       break;
1050
1051     /* Other things, primarily octal escapes. */
1052     case '{':
1053       f |= f_brace; ch = getc(tv->fp);
1054       /* fall through */
1055     default:
1056       if ('0' <= ch && ch < '8') {
1057         i = 1; esc = ch - '0';
1058         for (;;) {
1059           ch = getc(tv->fp);
1060           if ('0' > ch || ch >= '8') { ungetc(ch, tv->fp); break; }
1061           esc = 8*esc + ch - '0';
1062           i++; if (i >= 3) break;
1063         }
1064         if (f&f_brace) {
1065           ch = getc(tv->fp);
1066           if (ch != '}') return (tvec_syntax(tv, ch, "`}'"));
1067         }
1068         if (esc > UCHAR_MAX)
1069           return (tvec_error(tv,
1070                              "character code %d out of range", esc));
1071         *ch_out = esc; break;
1072       } else
1073         return (tvec_syntax(tv, ch, "string escape"));
1074   }
1075
1076   /* Done. */
1077   return (0);
1078
1079 #undef f_brace
1080 }
1081
1082 /* --- @read_quoted_string@ --- *
1083  *
1084  * Arguments:   @dstr *d@ = string to write to
1085  *              @int quote@ = initial quote, `'' or `"'
1086  *              @struct tvec_state *tv@ = test vector state
1087  *
1088  * Returns:     Zero on success, @-1@ on error.
1089  *
1090  * Use:         Read the rest of a quoted string into @d@, reporting errors
1091  *              as appropriate.
1092  *
1093  *              A single-quoted string is entirely literal.  A double-quoted
1094  *              string may contain C-like escapes.
1095  */
1096
1097 static int read_quoted_string(dstr *d, int quote, struct tvec_state *tv)
1098 {
1099   int ch;
1100
1101   for (;;) {
1102     ch = getc(tv->fp);
1103     switch (ch) {
1104       case EOF: case '\n':
1105         return (tvec_syntax(tv, ch, "`%c'", quote));
1106       case '\\':
1107         if (quote == '\'') goto ordinary;
1108         ch = getc(tv->fp); if (ch == '\n') { tv->lno++; break; }
1109         ungetc(ch, tv->fp); if (read_charesc(&ch, tv)) return (-1);
1110         goto ordinary;
1111       default:
1112         if (ch == quote) goto end;
1113       ordinary:
1114         DPUTC(d, ch);
1115         break;
1116     }
1117   }
1118
1119 end:
1120   DPUTZ(d);
1121   return (0);
1122 }
1123
1124 /* --- @collect_bare@ --- *
1125  *
1126  * Arguments:   @dstr *d@ = string to write to
1127  *              @struct tvec_state *tv@ = test vector state
1128  *
1129  * Returns:     Zero on success, @-1@ on error.
1130  *
1131  * Use:         Read barewords and the whitespace between them.  Stop when we
1132  *              encounter something which can't start a bareword.
1133  */
1134
1135 static int collect_bare(dstr *d, struct tvec_state *tv)
1136 {
1137   size_t pos = d->len;
1138   enum { WORD, SPACE, ESCAPE }; unsigned s = WORD;
1139   int ch, rc;
1140
1141   for (;;) {
1142     ch = getc(tv->fp);
1143     switch (ch) {
1144       case EOF:
1145         tvec_syntax(tv, ch, "bareword");
1146         rc = -1; goto end;
1147       case '\n':
1148         if (s == ESCAPE) { tv->lno++; goto addch; }
1149         if (s == WORD) pos = d->len;
1150         ungetc(ch, tv->fp); if (tvec_nexttoken(tv)) { rc = -1; goto end; }
1151         DPUTC(d, ' '); s = SPACE;
1152         break;
1153       case '"': case '\'': case '!': case '#': case ')': case '}': case ']':
1154         if (s == SPACE) { ungetc(ch, tv->fp); goto done; }
1155         goto addch;
1156       case '\\':
1157         s = ESCAPE;
1158         break;
1159       default:
1160         if (s != ESCAPE && isspace(ch)) {
1161           if (s == WORD) pos = d->len;
1162           DPUTC(d, ch); s = SPACE;
1163           break;
1164         }
1165       addch:
1166         DPUTC(d, ch); s = WORD;
1167     }
1168   }
1169
1170 done:
1171   if (s == SPACE) d->len = pos;
1172   DPUTZ(d); rc = 0;
1173 end:
1174   return (rc);
1175 }
1176
1177 /* --- @set_up_encoding@ --- *
1178  *
1179  * Arguments:   @const codec_class **ccl_out@ = where to put the class
1180  *              @unsigned *f_out@ = where to put the flags
1181  *              @unsigned code@ = the coding scheme to use (@TVEC_...@)
1182  *
1183  * Returns:     ---
1184  *
1185  * Use:         Helper for @read_compound_string@ below.
1186  *
1187  *              Return the appropriate codec class and flags for @code@.
1188  *              Leaves @*ccl_out@ null if the coding scheme doesn't have a
1189  *              backing codec class (e.g., @TVCODE_BARE@).
1190  */
1191
1192 enum { TVCODE_BARE, TVCODE_HEX, TVCODE_BASE64, TVCODE_BASE32 };
1193 static void set_up_encoding(const codec_class **ccl_out, unsigned *f_out,
1194                             unsigned code)
1195 {
1196   switch (code) {
1197     case TVCODE_BARE:
1198       *ccl_out = 0; *f_out = 0;
1199       break;
1200     case TVCODE_HEX:
1201       *ccl_out = &hex_class; *f_out = CDCF_IGNCASE;
1202       break;
1203     case TVCODE_BASE32:
1204       *ccl_out = &base32_class; *f_out = CDCF_IGNCASE | CDCF_IGNEQPAD;
1205       break;
1206     case TVCODE_BASE64:
1207       *ccl_out = &base64_class; *f_out = CDCF_IGNEQPAD;
1208       break;
1209     default:
1210       abort();
1211   }
1212 }
1213
1214 /* --- @flush_codec@ --- *
1215  *
1216  * Arguments:   @codec *cdc@ = a codec, or null
1217  *              @dstr *d@ = output string
1218  *              @struct tvec_state *tv@ = test vector state
1219  *
1220  * Returns:     Zero on success, @-1@ on error.
1221  *
1222  * Use:         Helper for @read_compound_string@ below.
1223  *
1224  *              Flush out any final buffered material from @cdc@, and check
1225  *              that it's in a good state.  Frees the codec on success.  Does
1226  *              nothing if @cdc@ is null.
1227  */
1228
1229 static int flush_codec(codec *cdc, dstr *d, struct tvec_state *tv)
1230 {
1231   int err;
1232
1233   if (cdc) {
1234     err = cdc->ops->code(cdc, 0, 0, d);
1235     if (err)
1236       return (tvec_error(tv, "invalid %s sequence end: %s",
1237                          cdc->ops->c->name, codec_strerror(err)));
1238     cdc->ops->destroy(cdc);
1239   }
1240   return (0);
1241 }
1242
1243 /* --- @read_compound_string@ --- *
1244  *
1245  * Arguments:   @void **p_inout@ = address of output buffer pointer
1246  *              @size_t *sz_inout@ = address of buffer size
1247  *              @unsigned code@ = initial interpretation of barewords
1248  *              @unsigned f@ = other flags (@RCSF_...@)
1249  *              @struct tvec_state *tv@ = test vector state
1250  *
1251  * Returns:     Zero on success, @-1@ on error.
1252  *
1253  * Use:         Parse a compound string, i.e., a sequence of stringish pieces
1254  *              which might be quoted strings, character names, or barewords
1255  *              to be decoded accoding to @code@, interspersed with
1256  *              additional directives.
1257  *
1258  *              If the initial buffer pointer is non-null and sufficiently
1259  *              large, then it will be reused; otherwise, it is freed and a
1260  *              fresh, sufficiently large buffer is allocated and returned.
1261  *              This buffer unconditionally uses the standard-library arena.
1262  */
1263
1264 #define RCSF_NESTED 1u
1265 static int read_compound_string(void **p_inout, size_t *sz_inout,
1266                                 unsigned code, unsigned f,
1267                                 struct tvec_state *tv)
1268 {
1269   const codec_class *ccl; unsigned cdf;
1270   codec *cdc;
1271   dstr d = DSTR_INIT, w = DSTR_INIT;
1272   char *p;
1273   const char *q;
1274   void *pp = 0; size_t sz;
1275   unsigned long n;
1276   int ch, err, rc;
1277
1278   set_up_encoding(&ccl, &cdf, code); cdc = 0;
1279
1280   if (tvec_nexttoken(tv)) return (tvec_syntax(tv, fgetc(tv->fp), "string"));
1281   do {
1282     ch = getc(tv->fp);
1283     switch (ch) {
1284
1285       case ')': case ']': case '}':
1286         /* Close brackets.  Leave these for recursive caller if there is one,
1287          * or just complain.
1288          */
1289
1290         if (!(f&RCSF_NESTED))
1291           { rc = tvec_syntax(tv, ch, "string"); goto end; }
1292         ungetc(ch, tv->fp); goto done;
1293
1294       case '"': case '\'':
1295         /* Quotes.  Read a quoted string. */
1296
1297         if (cdc && flush_codec(cdc, &d, tv)) { rc = -1; goto end; }
1298         cdc = 0;
1299         if (read_quoted_string(&d, ch, tv)) { rc = -1; goto end; }
1300         break;
1301
1302       case '#':
1303         /* A named character. */
1304
1305         ungetc(ch, tv->fp);
1306         if (cdc && flush_codec(cdc, &d, tv)) { rc = -1; goto end; }
1307         cdc = 0;
1308         DRESET(&w); tvec_readword(tv, &w, 0, ";", "character name");
1309         if (STRCMP(w.buf, ==, "#empty")) break;
1310         if (read_charname(&ch, w.buf, RCF_EOFOK)) {
1311           rc = tvec_error(tv, "unknown character name `%s'", d.buf);
1312           goto end;
1313         }
1314         DPUTC(&d, ch); break;
1315
1316       case '!':
1317         /* A magic keyword. */
1318
1319         if (cdc && flush_codec(cdc, &d, tv)) { rc = -1; goto end; }
1320         cdc = 0;
1321         ungetc(ch, tv->fp);
1322         DRESET(&w); tvec_readword(tv, &w, 0, ";", "`!'-keyword");
1323
1324         /* Change bareword coding system. */
1325         if (STRCMP(w.buf, ==, "!bare"))
1326           { code = TVCODE_BARE; set_up_encoding(&ccl, &cdf, code); }
1327         else if (STRCMP(w.buf, ==, "!hex"))
1328           { code = TVCODE_HEX; set_up_encoding(&ccl, &cdf, code); }
1329         else if (STRCMP(w.buf, ==, "!base32"))
1330           { code = TVCODE_BASE32; set_up_encoding(&ccl, &cdf, code); }
1331         else if (STRCMP(w.buf, ==, "!base64"))
1332           { code = TVCODE_BASE64; set_up_encoding(&ccl, &cdf, code); }
1333
1334         /* Repeated substrings. */
1335         else if (STRCMP(w.buf, ==, "!repeat")) {
1336           if (tvec_nexttoken(tv)) {
1337             rc = tvec_syntax(tv, fgetc(tv->fp), "repeat count");
1338             goto end;
1339           }
1340           DRESET(&w);
1341           if (tvec_readword(tv, &w, 0, ";{", "repeat count"))
1342             { rc = -1; goto end;  }
1343           if (parse_unsigned_integer(&n, &q, w.buf)) {
1344             rc = tvec_error(tv, "invalid repeat count `%s'", w.buf);
1345             goto end;
1346           }
1347           if (*q) { rc = tvec_syntax(tv, *q, "`{'"); goto end; }
1348           if (tvec_nexttoken(tv))
1349             { rc = tvec_syntax(tv, fgetc(tv->fp), "`{'"); goto end; }
1350           ch = getc(tv->fp); if (ch != '{')
1351             { rc = tvec_syntax(tv, ch, "`{'"); goto end; }
1352           sz = 0;
1353           if (read_compound_string(&pp, &sz, code, f | RCSF_NESTED, tv))
1354             { rc = -1; goto end; }
1355           ch = getc(tv->fp); if (ch != '}')
1356             { rc = tvec_syntax(tv, ch, "`}'"); goto end; }
1357           if (sz) {
1358             if (n > (size_t)-1/sz)
1359               { rc = tvec_error(tv, "repeat size out of range"); goto end; }
1360             n *= sz;
1361             dstr_ensure(&d, n);
1362             fill_pattern(d.buf + d.len, n, pp, sz); d.len += n;
1363           }
1364           xfree(pp); pp = 0;
1365         }
1366
1367         /* Anything else is an error. */
1368         else {
1369           tvec_error(tv, "unknown string keyword `%s'", w.buf);
1370           rc = -1; goto end;
1371         }
1372         break;
1373
1374       default:
1375         /* A bareword.  Process it according to the current coding system. */
1376
1377         switch (code) {
1378           case TVCODE_BARE:
1379             ungetc(ch, tv->fp);
1380             if (collect_bare(&d, tv)) goto done;
1381             break;
1382           default:
1383             assert(ccl);
1384             ungetc(ch, tv->fp); DRESET(&w);
1385             if (tvec_readword(tv, &w, 0, ";",
1386                               "%s-encoded fragment", ccl->name))
1387               { rc = -1; goto end; }
1388             if (!cdc) cdc = ccl->decoder(cdf);
1389             err = cdc->ops->code(cdc, w.buf, w.len, &d);
1390             if (err) {
1391               tvec_error(tv, "invalid %s fragment `%s': %s",
1392                          ccl->name, w.buf, codec_strerror(err));
1393               rc = -1; goto end;
1394             }
1395             break;
1396         }
1397         break;
1398     }
1399   } while (!tvec_nexttoken(tv));
1400
1401 done:
1402   /* Wrap things up. */
1403   if (cdc && flush_codec(cdc, &d, tv)) { rc = -1; goto end; }
1404   cdc = 0;
1405   if (*sz_inout <= d.len)
1406     { free(*p_inout); *p_inout = x_alloc(&arena_stdlib, d.len + 1); }
1407   p = *p_inout; memcpy(p, d.buf, d.len); p[d.len] = 0; *sz_inout = d.len;
1408   rc = 0;
1409
1410 end:
1411   /* Clean up any debris. */
1412   if (cdc) cdc->ops->destroy(cdc);
1413   if (pp) xfree(pp);
1414   dstr_destroy(&d); dstr_destroy(&w);
1415   return (rc);
1416 }
1417
1418 /*----- Signed and unsigned integer types ---------------------------------*/
1419
1420 /* --- @init_int@, @init_uint@ --- *
1421  *
1422  * Arguments:   @union tvec_regval *rv@ = register value
1423  *              @const struct tvec_regdef *rd@ = register definition
1424  *
1425  * Returns:     ---
1426  *
1427  * Use:         Initialize a register value.
1428  *
1429  *              Integer values are initialized to zero.
1430  */
1431
1432 static void init_int(union tvec_regval *rv, const struct tvec_regdef *rd)
1433   { rv->i = 0; }
1434
1435 static void init_uint(union tvec_regval *rv, const struct tvec_regdef *rd)
1436   { rv->u = 0; }
1437
1438 /* --- @eq_int@, @eq_uint@ --- *
1439  *
1440  * Arguments:   @const union tvec_regval *rv0, *rv1@ = register values
1441  *              @const struct tvec_regdef *rd@ = register definition
1442  *
1443  * Returns:     Nonzero if the values are equal, zero if unequal
1444  *
1445  * Use:         Compare register values for equality.
1446  */
1447
1448 static int eq_int(const union tvec_regval *rv0, const union tvec_regval *rv1,
1449                   const struct tvec_regdef *rd)
1450   { return (rv0->i == rv1->i); }
1451
1452 static int eq_uint(const union tvec_regval *rv0,
1453                    const union tvec_regval *rv1,
1454                    const struct tvec_regdef *rd)
1455   { return (rv0->u == rv1->u); }
1456
1457 /* --- @tobuf_int@, @tobuf_uint@ --- *
1458  *
1459  * Arguments:   @buf *b@ = buffer
1460  *              @const union tvec_regval *rv@ = register value
1461  *              @const struct tvec_regdef *rd@ = register definition
1462  *
1463  * Returns:     Zero on success, %$-1$% on failure.
1464  *
1465  * Use:         Serialize a register value to a buffer.
1466  *
1467  *              Integer values are serialized as little-endian 64-bit signed
1468  *              or unsigned integers.
1469  */
1470
1471 static int tobuf_int(buf *b, const union tvec_regval *rv,
1472                      const struct tvec_regdef *rd)
1473   { return (signed_to_buf(b, rv->i)); }
1474
1475 static int tobuf_uint(buf *b, const union tvec_regval *rv,
1476                        const struct tvec_regdef *rd)
1477   { return (unsigned_to_buf(b, rv->u)); }
1478
1479 /* --- @frombuf_int@, @frombuf_uint@ --- *
1480  *
1481  * Arguments:   @buf *b@ = buffer
1482  *              @union tvec_regval *rv@ = register value
1483  *              @const struct tvec_regdef *rd@ = register definition
1484  *
1485  * Returns:     Zero on success, %$-1$% on failure.
1486  *
1487  * Use:         Deserialize a register value from a buffer.
1488  *
1489  *              Integer values are serialized as 64-bit signed or unsigned
1490  *              integers.
1491  */
1492
1493 static int frombuf_int(buf *b, union tvec_regval *rv,
1494                        const struct tvec_regdef *rd)
1495   { return (signed_from_buf(b, &rv->i)); }
1496
1497 static int frombuf_uint(buf *b, union tvec_regval *rv,
1498                         const struct tvec_regdef *rd)
1499   { return (unsigned_from_buf(b, &rv->u)); }
1500
1501 /* --- @parse_int@, @parse_uint@ --- *
1502  *
1503  * Arguments:   @union tvec_regval *rv@ = register value
1504  *              @const struct tvec_regdef *rd@ = register definition
1505  *              @struct tvec_state *tv@ = test-vector state
1506  *
1507  * Returns:     Zero on success, %$-1$% on error.
1508  *
1509  * Use:         Parse a register value from an input file.
1510  *
1511  *              Integers may be input in decimal, hex, binary, or octal,
1512  *              following approximately usual conventions.
1513  *
1514  *                * Signed integers may be preceded with a `+' or `-' sign.
1515  *
1516  *                * Decimal integers are just a sequence of decimal digits
1517  *                  `0' ... `9'.
1518  *
1519  *                * Octal integers are a sequence of digits `0' ... `7',
1520  *                  preceded by `0o' or `0O'.
1521  *
1522  *                * Hexadecimal integers are a sequence of digits `0'
1523  *                  ... `9', `a' ... `f', or `A' ... `F', preceded by `0x' or
1524  *                  `0X'.
1525  *
1526  *                * Radix-B integers are a sequence of digits `0' ... `9',
1527  *                  `a' ... `f', or `A' ... `F', each with value less than B,
1528  *                  preceded by `Br' or `BR', where 0 < B < 36 is expressed
1529  *                  in decimal without any leading `0' or internal
1530  *                  underscores `_'.
1531  *
1532  *                * A digit sequence may contain internal underscore `_'
1533  *                  separators, but not before or after all of the digits;
1534  *                  and two consecutive `_' characters are not permitted.
1535  */
1536
1537 static int parse_int(union tvec_regval *rv, const struct tvec_regdef *rd,
1538                      struct tvec_state *tv)
1539 {
1540   dstr d = DSTR_INIT;
1541   int rc;
1542
1543   if (tvec_readword(tv, &d, 0, ";", "signed integer"))
1544     { rc = -1; goto end; }
1545   if (parse_signed(&rv->i, d.buf, rd->arg.p, tv)) { rc = -1; goto end; }
1546   rc = 0;
1547 end:
1548   dstr_destroy(&d);
1549   return (rc);
1550 }
1551
1552 static int parse_uint(union tvec_regval *rv, const struct tvec_regdef *rd,
1553                       struct tvec_state *tv)
1554 {
1555   dstr d = DSTR_INIT;
1556   int rc;
1557
1558   if (tvec_readword(tv, &d, 0, ";", "unsigned integer"))
1559     { rc = -1; goto end; }
1560   if (parse_unsigned(&rv->u, d.buf, rd->arg.p, tv)) { rc = -1; goto end; }
1561   rc = 0;
1562 end:
1563   dstr_destroy(&d);
1564   return (rc);
1565 }
1566
1567 /* --- @dump_int@, @dump_uint@ --- *
1568  *
1569  * Arguments:   @const union tvec_regval *rv@ = register value
1570  *              @const struct tvec_regdef *rd@ = register definition
1571  *              @unsigned style@ = output style (@TVSF_...@)
1572  *              @const struct gprintf_ops *gops@, @void *gp@ = format output
1573  *
1574  * Returns:     ---
1575  *
1576  * Use:         Dump a register value to the format output.
1577  *
1578  *              Integer values are dumped in decimal and, unless compact
1579  *              output is requested, hex, and maybe a character, as a
1580  *              comment.
1581  */
1582
1583 static void dump_int(const union tvec_regval *rv,
1584                      const struct tvec_regdef *rd,
1585                      unsigned style,
1586                      const struct gprintf_ops *gops, void *go)
1587 {
1588   if (style&TVSF_RAW) gprintf(gops, go, "int:");
1589   gprintf(gops, go, "%ld", rv->i);
1590   if (!(style&(TVSF_COMPACT | TVSF_RAW))) {
1591     gprintf(gops, go, " ; = ");
1592     format_signed_hex(gops, go, rv->i);
1593     maybe_format_signed_char(gops, go, rv->i);
1594   }
1595 }
1596
1597 static void dump_uint(const union tvec_regval *rv,
1598                       const struct tvec_regdef *rd,
1599                       unsigned style,
1600                       const struct gprintf_ops *gops, void *go)
1601 {
1602   if (style&TVSF_RAW) gprintf(gops, go, "uint:");
1603   gprintf(gops, go, "%lu", rv->u);
1604   if (!(style&(TVSF_COMPACT | TVSF_RAW))) {
1605     gprintf(gops, go, " ; = ");
1606     format_unsigned_hex(gops, go, rv->u);
1607     maybe_format_unsigned_char(gops, go, rv->u);
1608   }
1609 }
1610
1611 /* Integer type definitions. */
1612 const struct tvec_regty tvty_int = {
1613   init_int, trivial_release, eq_int,
1614   tobuf_int, frombuf_int,
1615   parse_int, dump_int
1616 };
1617 const struct tvec_regty tvty_uint = {
1618   init_uint, trivial_release, eq_uint,
1619   tobuf_uint, frombuf_uint,
1620   parse_uint, dump_uint
1621 };
1622
1623 /* Predefined integer ranges. */
1624 const struct tvec_irange
1625   tvrange_schar = { SCHAR_MIN, SCHAR_MAX, 0, 0 },
1626   tvrange_short = { SHRT_MIN, SHRT_MAX, 0, 0 },
1627   tvrange_int = { INT_MIN, INT_MAX, 0, 0 },
1628   tvrange_long = { LONG_MIN, LONG_MAX, 0, 0 },
1629   tvrange_sbyte = { -128, 127, 0, 0 },
1630   tvrange_i16 = { -32768, +32767, 0, 0 },
1631   tvrange_i32 = { -2147483648, 2147483647, 0, 0 };
1632 const struct tvec_urange
1633   tvrange_uchar = { 0, UCHAR_MAX, 0, 0 },
1634   tvrange_ushort = { 0, USHRT_MAX, 0, 0 },
1635   tvrange_uint = { 0, UINT_MAX, 0, 0 },
1636   tvrange_ulong = { 0, ULONG_MAX, 0, 0 },
1637   tvrange_size = { 0, (size_t)-1, 0, 0 },
1638   tvrange_byte = { 0, 255, 0, 0 },
1639   tvrange_u16 = { 0, 65535, 0, 0 },
1640   tvrange_u32 = { 0, 4294967295, 0, 0 };
1641
1642 /* --- @tvec_claimeq_int@ --- *
1643  *
1644  * Arguments:   @struct tvec_state *tv@ = test-vector state
1645  *              @long i0, i1@ = two signed integers
1646  *              @const char *file@, @unsigned @lno@ = calling file and line
1647  *              @const char *expr@ = the expression to quote on failure
1648  *
1649  * Returns:     Nonzero if @i0@ and @i1@ are equal, otherwise zero.
1650  *
1651  * Use:         Check that values of @i0@ and @i1@ are equal.  As for
1652  *              @tvec_claim@ above, a test case is automatically begun and
1653  *              ended if none is already underway.  If the values are
1654  *              unequal, then @tvec_fail@ is called, quoting @expr@, and the
1655  *              mismatched values are dumped: @i0@ is printed as the output
1656  *              value and @i1@ is printed as the input reference.
1657  */
1658
1659 int tvec_claimeq_int(struct tvec_state *tv, long i0, long i1,
1660                      const char *file, unsigned lno, const char *expr)
1661 {
1662   struct tvec_reg rval, rref;
1663
1664   rval.f = rref.f = TVRF_LIVE; rval.v.i = i0; rref.v.i = i1;
1665   return (tvec_claimeq(tv, &tvty_int, 0, &rval, &rref, file, lno, expr));
1666 }
1667
1668 /* --- @tvec_claimeq_uint@ --- *
1669  *
1670  * Arguments:   @struct tvec_state *tv@ = test-vector state
1671  *              @unsigned long u0, u1@ = two unsigned integers
1672  *              @const char *file@, @unsigned @lno@ = calling file and line
1673  *              @const char *expr@ = the expression to quote on failure
1674  *
1675  * Returns:     Nonzero if @u0@ and @u1@ are equal, otherwise zero.
1676  *
1677  * Use:         Check that values of @u0@ and @u1@ are equal.  As for
1678  *              @tvec_claim@ above, a test case is automatically begun and
1679  *              ended if none is already underway.  If the values are
1680  *              unequal, then @tvec_fail@ is called, quoting @expr@, and the
1681  *              mismatched values are dumped: @u0@ is printed as the output
1682  *              value and @u1@ is printed as the input reference.
1683  */
1684
1685 int tvec_claimeq_uint(struct tvec_state *tv,
1686                       unsigned long u0, unsigned long u1,
1687                       const char *file, unsigned lno, const char *expr)
1688 {
1689   struct tvec_reg rval, rref;
1690
1691   rval.f = rref.f = TVRF_LIVE; rval.v.u = u0; rref.v.u = u1;
1692   return (tvec_claimeq(tv, &tvty_uint, 0, &rval, &rref, file, lno, expr));
1693 }
1694
1695 /*----- Size type ---------------------------------------------------------*/
1696
1697 /* --- @parse_size@ --- *
1698  *
1699  * Arguments:   @union tvec_regval *rv@ = register value
1700  *              @const struct tvec_regdef *rd@ = register definition
1701  *              @struct tvec_state *tv@ = test-vector state
1702  *
1703  * Returns:     Zero on success, %$-1$% on error.
1704  *
1705  * Use:         Parse a register value from an input file.
1706  *
1707  *              The input format for a size value consists of an unsigned
1708  *              integer followed by an optional unit specifier consisting of
1709  *              an SI unit prefix and (optionally) the letter `B'. */
1710
1711 static int parse_size(union tvec_regval *rv, const struct tvec_regdef *rd,
1712                       struct tvec_state *tv)
1713 {
1714   unsigned long sz;
1715   int rc;
1716
1717   if (parse_szint(tv, &sz, ";", "size")) { rc = -1; goto end; }
1718   if (check_unsigned_range(sz, rd->arg.p, tv, "size")) { rc = -1; goto end; }
1719   rv->u = sz; rc = 0;
1720 end:
1721   return (rc);
1722 }
1723
1724 /* --- @dump_size@ --- *
1725  *
1726  * Arguments:   @const union tvec_regval *rv@ = register value
1727  *              @const struct tvec_regdef *rd@ = register definition
1728  *              @unsigned style@ = output style (@TVSF_...@)
1729  *              @const struct gprintf_ops *gops@, @void *gp@ = format output
1730  *
1731  * Returns:     ---
1732  *
1733  * Use:         Dump a register value to the format output.
1734  *
1735  *              Size values are dumped with a unit specifier, with a unit
1736  *              prefox only if the size is an exact multiple of the relevant
1737  *              power of two.  Unless compact style is requested, the plain
1738  *              decimal and hex representations of the value are also
1739  *              printed.
1740  */
1741
1742 static void dump_size(const union tvec_regval *rv,
1743                       const struct tvec_regdef *rd,
1744                       unsigned style,
1745                       const struct gprintf_ops *gops, void *go)
1746 {
1747   if (style&TVSF_RAW) gprintf(gops, go, "size:");
1748   format_size(gops, go, rv->u, style);
1749   if (!(style&(TVSF_COMPACT | TVSF_RAW))) {
1750     gprintf(gops, go, " ; = %lu", (unsigned long)rv->u);
1751     gprintf(gops, go, " = "); format_unsigned_hex(gops, go, rv->u);
1752     maybe_format_unsigned_char(gops, go, rv->u);
1753   }
1754 }
1755
1756 /* Size type definitions. */
1757 const struct tvec_regty tvty_size = {
1758   init_uint, trivial_release, eq_uint,
1759   tobuf_uint, frombuf_uint,
1760   parse_size, dump_size
1761 };
1762
1763 /* --- @tvec_claimeq_size@ --- *
1764  *
1765  * Arguments:   @struct tvec_state *tv@ = test-vector state
1766  *              @unsigned long sz0, sz1@ = two sizes
1767  *              @const char *file@, @unsigned @lno@ = calling file and line
1768  *              @const char *expr@ = the expression to quote on failure
1769  *
1770  * Returns:     Nonzero if @sz0@ and @sz1@ are equal, otherwise zero.
1771  *
1772  * Use:         Check that values of @u0@ and @u1@ are equal.  As for
1773  *              @tvec_claim@ above, a test case is automatically begun and
1774  *              ended if none is already underway.  If the values are
1775  *              unequal, then @tvec_fail@ is called, quoting @expr@, and the
1776  *              mismatched values are dumped: @u0@ is printed as the output
1777  *              value and @u1@ is printed as the input reference.
1778  */
1779
1780 int tvec_claimeq_size(struct tvec_state *tv,
1781                       unsigned long sz0, unsigned long sz1,
1782                       const char *file, unsigned lno, const char *expr)
1783 {
1784   struct tvec_reg rval, rref;
1785
1786   rval.f = rref.f = TVRF_LIVE; rval.v.u = sz0; rref.v.u = sz1;
1787   return (tvec_claimeq(tv, &tvty_size, 0, &rval, &rref, file, lno, expr));
1788 }
1789
1790 /*----- Floating-point type -----------------------------------------------*/
1791
1792 /* --- @int_float@ --- *
1793  *
1794  * Arguments:   @union tvec_regval *rv@ = register value
1795  *              @const struct tvec_regdef *rd@ = register definition
1796  *
1797  * Returns:     ---
1798  *
1799  * Use:         Initialize a register value.
1800  *
1801  *              Floating-point values are initialized to zero.
1802  */
1803
1804 static void init_float(union tvec_regval *rv, const struct tvec_regdef *rd)
1805   { rv->f = 0.0; }
1806
1807 /* --- @eq_float@ --- *
1808  *
1809  * Arguments:   @const union tvec_regval *rv0, *rv1@ = register values
1810  *              @const struct tvec_regdef *rd@ = register definition
1811  *
1812  * Returns:     Nonzero if the values are equal, zero if unequal
1813  *
1814  * Use:         Compare register values for equality.
1815  *
1816  *              Floating-point values may be considered equal if their
1817  *              absolute or relative difference is sufficiently small, as
1818  *              described in the register definition.
1819  */
1820
1821 static int eq_float(const union tvec_regval *rv0,
1822                     const union tvec_regval *rv1,
1823                     const struct tvec_regdef *rd)
1824   { return (eqish_floating_p(rv1->f, rv0->f, rd->arg.p)); }
1825
1826 /* --- @tobuf_float@ --- *
1827  *
1828  * Arguments:   @buf *b@ = buffer
1829  *              @const union tvec_regval *rv@ = register value
1830  *              @const struct tvec_regdef *rd@ = register definition
1831  *
1832  * Returns:     Zero on success, %$-1$% on failure.
1833  *
1834  * Use:         Serialize a register value to a buffer.
1835  *
1836  *              Floating-point values are serialized as little-endian
1837  *              IEEE 754 Binary64.
1838  */
1839
1840 static int tobuf_float(buf *b, const union tvec_regval *rv,
1841                      const struct tvec_regdef *rd)
1842   { return (buf_putf64l(b, rv->f)); }
1843
1844 /* --- @frombuf_float@ --- *
1845  *
1846  * Arguments:   @buf *b@ = buffer
1847  *              @union tvec_regval *rv@ = register value
1848  *              @const struct tvec_regdef *rd@ = register definition
1849  *
1850  * Returns:     Zero on success, %$-1$% on failure.
1851  *
1852  * Use:         Deserialize a register value from a buffer.
1853  *
1854  *              Floating-point values are serialized as little-endian
1855  *              IEEE 754 Binary64.
1856  */
1857
1858 static int frombuf_float(buf *b, union tvec_regval *rv,
1859                          const struct tvec_regdef *rd)
1860 {
1861   double t;
1862   int rc;
1863
1864   rc = buf_getf64l(b, &t); if (!rc) rv->f = t;
1865   return (rc);
1866 }
1867
1868 /* --- @parse_float@ --- *
1869  *
1870  * Arguments:   @union tvec_regval *rv@ = register value
1871  *              @const struct tvec_regdef *rd@ = register definition
1872  *              @struct tvec_state *tv@ = test-vector state
1873  *
1874  * Returns:     Zero on success, %$-1$% on error.
1875  *
1876  * Use:         Parse a register value from an input file.
1877  *
1878  *              Floating-point values are either NaN (%|#nan|%, if supported
1879  *              by the platform); positive or negative infinity (%|#inf|%,
1880  *              %|+#inf|%, or %|#+inf|% (preferring the last), and %|-#inf|%
1881  *              or %|#-inf|% (preferring the latter), if supported by the
1882  *              platform); or a number in strtod(3) syntax.
1883  */
1884
1885 static int parse_float(union tvec_regval *rv, const struct tvec_regdef *rd,
1886                        struct tvec_state *tv)
1887 {
1888   dstr d = DSTR_INIT;
1889   int rc;
1890
1891   if (tvec_readword(tv, &d, 0, ";", "floating-point number"))
1892     { rc = -1; goto end; }
1893   if (parse_floating(&rv->f, 0, d.buf, rd->arg.p, tv))
1894     { rc = -1; goto end; }
1895   rc = 0;
1896 end:
1897   dstr_destroy(&d);
1898   return (rc);
1899 }
1900
1901 /* --- @dump_float@ --- *
1902  *
1903  * Arguments:   @const union tvec_regval *rv@ = register value
1904  *              @const struct tvec_regdef *rd@ = register definition
1905  *              @unsigned style@ = output style (@TVSF_...@)
1906  *              @const struct gprintf_ops *gops@, @void *gp@ = format output
1907  *
1908  * Returns:     ---
1909  *
1910  * Use:         Dump a register value to the format output.
1911  *
1912  *              Floating-point values are dumped in decimal or as a special
1913  *              token beginning with `%|#|%'.  Some effort is taken to ensure
1914  *              that the output is sufficient to uniquely identify the
1915  *              original value, but, honestly, C makes this really hard.
1916  */
1917
1918 static void dump_float(const union tvec_regval *rv,
1919                        const struct tvec_regdef *rd,
1920                        unsigned style,
1921                        const struct gprintf_ops *gops, void *go)
1922 {
1923   if (style&TVSF_RAW) gprintf(gops, go, "float:");
1924   format_floating(gops, go, rv->f);
1925 }
1926
1927 /* Floating-point type definition. */
1928 const struct tvec_regty tvty_float = {
1929   init_float, trivial_release, eq_float,
1930   tobuf_float, frombuf_float,
1931   parse_float, dump_float
1932 };
1933
1934 /* Predefined floating-point ranges. */
1935 const struct tvec_floatinfo
1936   tvflt_float = { TVFF_RELDELTA | TVFF_INFOK | TVFF_NANOK,
1937                   -FLT_MAX, FLT_MAX, FLT_EPSILON/2 },
1938   tvflt_double = { TVFF_EXACT | TVFF_INFOK | TVFF_NANOK,
1939                    -DBL_MAX, DBL_MAX, 0.0 },
1940   tvflt_finite = { TVFF_EXACT, -DBL_MAX, DBL_MAX, 0.0 },
1941   tvflt_nonneg = { TVFF_EXACT, 0, DBL_MAX, 0.0 };
1942
1943 /* --- @tvec_claimeqish_float@ --- *
1944  *
1945  * Arguments:   @struct tvec_state *tv@ = test-vector state
1946  *              @double f0, f1@ = two floating-point numbers
1947  *              @unsigned f@ = flags (@TVFF_...@)
1948  *              @double delta@ = maximum tolerable difference
1949  *              @const char *file@, @unsigned @lno@ = calling file and line
1950  *              @const char *expr@ = the expression to quote on failure
1951  *
1952  * Returns:     Nonzero if @f0@ and @f1@ are sufficiently close, otherwise
1953  *              zero.
1954  *
1955  * Use:         Check that values of @f0@ and @f1@ are sufficiently close.
1956  *              As for @tvec_claim@ above, a test case is automatically begun
1957  *              and ended if none is already underway.  If the values are
1958  *              too far apart, then @tvec_fail@ is called, quoting @expr@,
1959  *              and the mismatched values are dumped: @f0@ is printed as the
1960  *              output value and @f1@ is printed as the input reference.
1961  *
1962  *              The details for the comparison are as follows.
1963  *
1964  *                * A NaN value matches any other NaN, and nothing else.
1965  *
1966  *                * An infinity matches another infinity of the same sign,
1967  *                  and nothing else.
1968  *
1969  *                * If @f&TVFF_EQMASK@ is @TVFF_EXACT@, then any
1970  *                  representable number matches only itself: in particular,
1971  *                  positive and negative zero are considered distinct.
1972  *                  (This allows tests to check that they land on the correct
1973  *                  side of branch cuts, for example.)
1974  *
1975  *                * If @f&TVFF_EQMASK@ is @TVFF_ABSDELTA@, then %$x$% matches
1976  *                  %$y$% when %$|x - y| < \delta$%.
1977  *
1978  *                * If @f&TVFF_EQMASK@ is @TVFF_RELDELTA@, then %$x$% matches
1979  *                  %$y$% when %$|1 - x/y| < \delta$%.  (Note that this
1980  *                  criterion is asymmetric.  Write %$x \approx_\delta y$%
1981  *                  if and only if %$|1 - x/y < \delta$%.  Then, for example,
1982  *                  if %$y/(1 + \delta) < x < y (1 - \delta)$%, then
1983  *                  %$x \approx_\delta y$%, but %$y \not\approx_\delta x$%.)
1984  */
1985
1986 int tvec_claimeqish_float(struct tvec_state *tv,
1987                           double f0, double f1, unsigned f, double delta,
1988                           const char *file, unsigned lno,
1989                           const char *expr)
1990 {
1991   struct tvec_floatinfo fi;
1992   struct tvec_reg rval, rref;
1993   union tvec_misc arg;
1994
1995   fi.f = f; fi.min = fi.max = 0.0; fi.delta = delta; arg.p = &fi;
1996   rval.f = rref.f = TVRF_LIVE; rval.v.f = f0; rref.v.f = f1;
1997   return (tvec_claimeq(tv, &tvty_float, &arg,
1998                        &rval, &rref, file, lno, expr));
1999 }
2000
2001 /* --- @tvec_claimeq_float@ --- *
2002  *
2003  * Arguments:   @struct tvec_state *tv@ = test-vector state
2004  *              @double f0, f1@ = two floating-point numbers
2005  *              @const char *file@, @unsigned @lno@ = calling file and line
2006  *              @const char *expr@ = the expression to quote on failure
2007  *
2008  * Returns:     Nonzero if @f0@ and @f1@ are identical, otherwise zero.
2009  *
2010  * Use:         Check that values of @f0@ and @f1@ are identical.  The
2011  *              function is exactly equivalent to @tvec_claimeqish_float@
2012  *              with @f == TVFF_EXACT@.
2013  */
2014
2015 int tvec_claimeq_float(struct tvec_state *tv,
2016                        double f0, double f1,
2017                        const char *file, unsigned lno,
2018                        const char *expr)
2019 {
2020   return (tvec_claimeqish_float(tv, f0, f1, TVFF_EXACT, 0.0,
2021                                 file, lno, expr));
2022 }
2023
2024 /*----- Durations ---------------------------------------------------------*/
2025
2026 /* A duration is a floating-point number of seconds.  Initialization and
2027  * teardown, equality comparison, and serialization are as for floating-point
2028  * values.
2029  */
2030
2031 static const struct duration_unit {
2032   const char *unit;
2033   double scale;
2034   unsigned f;
2035 #define DUF_PREFER 1u
2036 } duration_units[] = {
2037   { "Ys",       1e+24,          0 },
2038   { "Zs",       1e+21,          0 },
2039   { "Es",       1e+18,          0 },
2040   { "Ps",       1e+15,          0 },
2041   { "Ts",       1e+12,          0 },
2042   { "Gs",       1e+9,           0 },
2043   { "Ms",       1e+6,           0 },
2044   { "ks",       1e+3,           0 },
2045   { "hs",       1e+2,           0 },
2046   { "das",      1e+1,           0 },
2047
2048   { "yr",       31557600.0,     DUF_PREFER },
2049   { "year",     31557600.0,     0 },
2050   { "years",    31557600.0,     0 },
2051   { "y",        31557600.0,     0 },
2052   { "wk",       604800.0,       DUF_PREFER },
2053   { "week",     604800.0,       0 },
2054   { "weeks",    604800.0,       0 },
2055   { "w",        604800.0,       0 },
2056   { "day",      86400.0,        DUF_PREFER },
2057   { "days",     86400.0,        0 },
2058   { "dy",       86400.0,        0 },
2059   { "d",        86400.0,        0 },
2060   { "hr",       3600.0,         DUF_PREFER },
2061   { "hour",     3600.0,         0 },
2062   { "hours",    3600.0,         0 },
2063   { "h",        3600.0,         0 },
2064   { "min",      60.0,           DUF_PREFER },
2065   { "minute",   60.0,           0 },
2066   { "minutes",  60.0,           0 },
2067   { "m",        60.0,           0 },
2068
2069   { "s",        1.0,            DUF_PREFER },
2070   { "sec",      1.0,            0 },
2071   { "second",   1.0,            0 },
2072   { "seconds",  1.0,            0 },
2073
2074   { "ds",       1e-1,           0 },
2075   { "cs",       1e-2,           0 },
2076   { "ms",       1e-3,           DUF_PREFER },
2077   { "µs",      1e-6,           DUF_PREFER },
2078   { "ns",       1e-9,           DUF_PREFER },
2079   { "ps",       1e-12,          DUF_PREFER },
2080   { "fs",       1e-15,          DUF_PREFER },
2081   { "as",       1e-18,          DUF_PREFER },
2082   { "zs",       1e-21,          DUF_PREFER },
2083   { "ys",       1e-24,          DUF_PREFER },
2084
2085   { 0 }
2086 };
2087
2088 /* --- @tvec_parsedurunit@ --- *
2089  *
2090  * Arguments:   @double *scale_out@ = where to leave the scale
2091  *              @const char **p_inout@ = input unit string, updated
2092  *
2093  * Returns:     Zero on success, %$-1$% on error.
2094  *
2095  * Use:         If @*p_inout@ begins with a unit string followed by the end
2096  *              of the string or some non-alphanumeric character, then store
2097  *              the corresponding scale factor in @*scale_out@, advance
2098  *              @*p_inout@ past the unit string, and return zero.  Otherwise,
2099  *              return %$-1$%.
2100  */
2101
2102 int tvec_parsedurunit(double *scale_out, const char **p_inout)
2103 {
2104   const char *p = *p_inout, *q;
2105   const struct duration_unit *u;
2106   size_t n;
2107
2108   while (ISSPACE(*p)) p++;
2109   for (q = p; *q && ISALNUM(*q); q++);
2110   n = q - p; if (!n) { *scale_out = 1.0; return (0); }
2111
2112   for (u = duration_units; u->unit; u++)
2113     if (STRNCMP(p, ==, u->unit, n) && !u->unit[n])
2114       { *scale_out = u->scale; *p_inout = q; return (0); }
2115   return (-1);
2116 }
2117
2118 /* --- @parse_duration@ --- *
2119  *
2120  * Arguments:   @union tvec_regval *rv@ = register value
2121  *              @const struct tvec_regdef *rd@ = register definition
2122  *              @struct tvec_state *tv@ = test-vector state
2123  *
2124  * Returns:     Zero on success, %$-1$% on error.
2125  *
2126  * Use:         Parse a register value from an input file.
2127  *
2128  *              Duration values are finite nonnegative floating-point
2129  *              numbers in @strtod@ syntax, optionally followed by a unit .
2130  */
2131
2132 static int parse_duration(union tvec_regval *rv,
2133                           const struct tvec_regdef *rd,
2134                           struct tvec_state *tv)
2135 {
2136   const struct duration_unit *u;
2137   const char *q;
2138   dstr d = DSTR_INIT;
2139   double t;
2140   int rc;
2141
2142   if (tvec_readword(tv, &d, 0, ";", "duration")) { rc = -1; goto end; }
2143   if (parse_floating(&t, &q, d.buf,
2144                      rd->arg.p ? rd->arg.p : &tvflt_nonneg, tv))
2145     { rc = -1; goto end; }
2146
2147   if (!*q) tvec_readword(tv, &d, &q, ";", 0);
2148   if (*q) {
2149     for (u = duration_units; u->unit; u++)
2150       if (STRCMP(q, ==, u->unit)) { t *= u->scale; goto found_unit; }
2151     rc = tvec_syntax(tv, *q, "end-of-line"); goto end;
2152   found_unit:;
2153   }
2154
2155   rv->f = t; rc = 0;
2156 end:
2157   dstr_destroy(&d);
2158   return (rc);
2159 }
2160
2161 /* --- @dump_duration@ --- *
2162  *
2163  * Arguments:   @const union tvec_regval *rv@ = register value
2164  *              @const struct tvec_regdef *rd@ = register definition
2165  *              @unsigned style@ = output style (@TVSF_...@)
2166  *              @const struct gprintf_ops *gops@, @void *gp@ = format output
2167  *
2168  * Returns:     ---
2169  *
2170  * Use:         Dump a register value to the format output.
2171  *
2172  *              Durations are dumped as a human-palatable scaled value with
2173  *              unit, and, if compact style is not requested, as a raw number
2174  *              of seconds at full precision as a comment.
2175  */
2176
2177 static void dump_duration(const union tvec_regval *rv,
2178                           const struct tvec_regdef *rd,
2179                           unsigned style,
2180                           const struct gprintf_ops *gops, void *go)
2181 {
2182   const struct duration_unit *u;
2183   double t = rv->f;
2184
2185   if (style&TVSF_RAW) {
2186     gprintf(gops, go, "duration:");
2187     format_floating(gops, go, rv->f);
2188     gprintf(gops, go, "s");
2189   } else {
2190     if (!t) u = 0;
2191     else {
2192       for (u = duration_units; u->scale > t && u[1].unit; u++);
2193       t /= u->scale;
2194     }
2195     gprintf(gops, go, "%.4g %s", t, u ? u->unit : "s");
2196
2197     if (!(style&TVSF_COMPACT)) {
2198       gprintf(gops, go, "; = ");
2199       format_floating(gops, go, rv->f);
2200       gprintf(gops, go, " s");
2201     }
2202   }
2203 }
2204
2205 /* Duration type definition. */
2206 const struct tvec_regty tvty_duration = {
2207   init_float, trivial_release, eq_float,
2208   tobuf_float, frombuf_float,
2209   parse_duration, dump_duration
2210 };
2211
2212 /* --- @tvec_claimeqish_duration@ --- *
2213  *
2214  * Arguments:   @struct tvec_state *tv@ = test-vector state
2215  *              @double t0, t1@ = two durations
2216  *              @unsigned f@ = flags (@TVFF_...@)
2217  *              @double delta@ = maximum tolerable difference
2218  *              @const char *file@, @unsigned @lno@ = calling file and line
2219  *              @const char *expr@ = the expression to quote on failure
2220  *
2221  * Returns:     Nonzero if @t0@ and @t1@ are sufficiently close, otherwise
2222  *              zero.
2223  *
2224  * Use:         Check that values of @t0@ and @t1@ are sufficiently close.
2225  *              This is essentially the same as @tvec_claimeqish_float@, only
2226  *              it dumps the values as durations on a mismatch.
2227  */
2228
2229 int tvec_claimeqish_duration(struct tvec_state *tv,
2230                              double t0, double t1, unsigned f, double delta,
2231                              const char *file, unsigned lno,
2232                              const char *expr)
2233 {
2234   struct tvec_floatinfo fi;
2235   struct tvec_reg rval, rref;
2236   union tvec_misc arg;
2237
2238   fi.f = f; fi.min = fi.max = 0.0; fi.delta = delta; arg.p = &fi;
2239   rval.f = rref.f = TVRF_LIVE; rval.v.f = t0; rref.v.f = t1;
2240   return (tvec_claimeq(tv, &tvty_duration, &arg,
2241                        &rval, &rref, file, lno, expr));
2242 }
2243
2244 /* --- @tvec_claimeq_duration@ --- *
2245  *
2246  * Arguments:   @struct tvec_state *tv@ = test-vector state
2247  *              @double t0, t1@ = two durations
2248  *              @const char *file@, @unsigned @lno@ = calling file and line
2249  *              @const char *expr@ = the expression to quote on failure
2250  *
2251  * Returns:     Nonzero if @t0@ and @t1@ are identical, otherwise zero.
2252  *
2253  * Use:         Check that values of @t0@ and @t1@ are identical.  The
2254  *              function is exactly equivalent to @tvec_claimeqish_duration@
2255  *              with @f == TVFF_EXACT@.
2256  */
2257
2258 int tvec_claimeq_duration(struct tvec_state *tv,
2259                           double t0, double t1,
2260                           const char *file, unsigned lno,
2261                           const char *expr)
2262 {
2263   return (tvec_claimeqish_duration(tv, t0, t1, TVFF_EXACT, 0.0,
2264                                    file, lno, expr));
2265 }
2266
2267 /*----- Enumerations ------------------------------------------------------*/
2268
2269 /* --- @init_tenum@ --- *
2270  *
2271  * Arguments:   @union tvec_regval *rv@ = register value
2272  *              @const struct tvec_regdef *rd@ = register definition
2273  *
2274  * Returns:     ---
2275  *
2276  * Use:         Initialize a register value.
2277  *
2278  *              Integer and floating-point enumeration values are initialized
2279  *              as their underlying representations.  Pointer enumerations
2280  *              are initialized to %|#nil|%.
2281  */
2282
2283 #define init_ienum init_int
2284 #define init_uenum init_uint
2285 #define init_fenum init_float
2286
2287 static void init_penum(union tvec_regval *rv, const struct tvec_regdef *rd)
2288   { rv->p = 0; }
2289
2290 /* --- @eq_tenum@ --- *
2291  *
2292  * Arguments:   @const union tvec_regval *rv0, *rv1@ = register values
2293  *              @const struct tvec_regdef *rd@ = register definition
2294  *
2295  * Returns:     Nonzero if the values are equal, zero if unequal
2296  *
2297  * Use:         Compare register values for equality.
2298  *
2299  *              Integer and floating-point enumeration values are compared as
2300  *              their underlying representations; in particular, floating-
2301  *              point enumerations may compare equal if their absolute or
2302  *              relative difference is sufficiently small.  Pointer
2303  *              enumerations are compared as pointers.
2304  */
2305
2306 #define eq_ienum eq_int
2307 #define eq_uenum eq_uint
2308
2309 static int eq_fenum(const union tvec_regval *rv0,
2310                     const union tvec_regval *rv1,
2311                     const struct tvec_regdef *rd)
2312 {
2313   const struct tvec_fenuminfo *ei = rd->arg.p;
2314   return (eqish_floating_p(rv0->f, rv1->f, ei->fi));
2315 }
2316
2317 static int eq_penum(const union tvec_regval *rv0,
2318                     const union tvec_regval *rv1,
2319                     const struct tvec_regdef *rd)
2320   { return (rv0->p == rv1->p); }
2321
2322 /* --- @tobuf_tenum@ --- *
2323  *
2324  * Arguments:   @buf *b@ = buffer
2325  *              @const union tvec_regval *rv@ = register value
2326  *              @const struct tvec_regdef *rd@ = register definition
2327  *
2328  * Returns:     Zero on success, %$-1$% on failure.
2329  *
2330  * Use:         Serialize a register value to a buffer.
2331  *
2332  *              Integer and floating-point enumeration values are serialized
2333  *              as their underlying representations.  Pointer enumerations
2334  *              are serialized as the signed integer index into the
2335  *              association table; %|#nil|% serializes as %$-1$%, and
2336  *              unrecognized pointers cause failure.
2337  */
2338
2339 #define tobuf_ienum tobuf_int
2340 #define tobuf_uenum tobuf_uint
2341 #define tobuf_fenum tobuf_float
2342
2343 static int tobuf_penum(buf *b, const union tvec_regval *rv,
2344                        const struct tvec_regdef *rd)
2345 {
2346   const struct tvec_penuminfo *pei = rd->arg.p;
2347   const struct tvec_passoc *pa;
2348   long i;
2349
2350   for (pa = pei->av, i = 0; pa->tag; pa++, i++)
2351     if (pa->p == rv->p) goto found;
2352   if (!rv->p) i = -1;
2353   else return (-1);
2354 found:
2355   return (signed_to_buf(b, i));
2356 }
2357
2358 /* --- @frombuf_tenum@ --- *
2359  *
2360  * Arguments:   @buf *b@ = buffer
2361  *              @union tvec_regval *rv@ = register value
2362  *              @const struct tvec_regdef *rd@ = register definition
2363  *
2364  * Returns:     Zero on success, %$-1$% on failure.
2365  *
2366  * Use:         Deserialize a register value from a buffer.
2367  *
2368  *              Integer and floating-point enumeration values are serialized
2369  *              as their underlying representations.  Pointer enumerations
2370  *              are serialized as the signed integer index into the
2371  *              association table; %|#nil|% serializes as %$-1$%; out-of-
2372  *              range indices cause failure.
2373  */
2374
2375 #define frombuf_ienum frombuf_int
2376 #define frombuf_uenum frombuf_uint
2377 #define frombuf_fenum frombuf_float
2378 static int frombuf_penum(buf *b, union tvec_regval *rv,
2379                         const struct tvec_regdef *rd)
2380 {
2381   const struct tvec_penuminfo *pei = rd->arg.p;
2382   const struct tvec_passoc *pa;
2383   long i, n;
2384
2385   for (pa = pei->av, n = 0; pa->tag; pa++, n++);
2386   if (signed_from_buf(b, &i)) return (-1);
2387   if (0 <= i && i < n) rv->p = UNCONST(void, pei->av[i].p);
2388   else if (i == -1) rv->p = 0;
2389   else { buf_break(b); return (-1); }
2390   return (0);
2391 }
2392
2393 /* --- @parse_tenum@ --- *
2394  *
2395  * Arguments:   @union tvec_regval *rv@ = register value
2396  *              @const struct tvec_regdef *rd@ = register definition
2397  *              @struct tvec_state *tv@ = test-vector state
2398  *
2399  * Returns:     Zero on success, %$-1$% on error.
2400  *
2401  * Use:         Parse a register value from an input file.
2402  *
2403  *              An enumerated value may be given by name or as a literal
2404  *              value.  For enumerations based on numeric types, the literal
2405  *              values can be written in the same syntax as the underlying
2406  *              values.  For enumerations based on pointers, the only
2407  *              permitted literal is %|#nil|%, which denotes a null pointer.
2408  */
2409
2410 #define DEFPARSE_ENUM(tag_, ty, slot)                                   \
2411   static int parse_##slot##enum(union tvec_regval *rv,                  \
2412                                 const struct tvec_regdef *rd,           \
2413                                 struct tvec_state *tv)                  \
2414   {                                                                     \
2415     const struct tvec_##slot##enuminfo *ei = rd->arg.p;                 \
2416     const struct tvec_##slot##assoc *a;                                 \
2417     dstr d = DSTR_INIT;                                                 \
2418     int rc;                                                             \
2419                                                                         \
2420     if (tvec_readword(tv, &d, 0,                                        \
2421                       ";", "%s tag or " LITSTR_##tag_, ei->name))       \
2422       { rc = -1; goto end; }                                            \
2423     for (a = ei->av; a->tag; a++)                                       \
2424       if (STRCMP(a->tag, ==, d.buf)) { FOUND_##tag_ goto done; }        \
2425     MISSING_##tag_                                                      \
2426     done:                                                               \
2427     rc = 0;                                                             \
2428   end:                                                                  \
2429     dstr_destroy(&d);                                                   \
2430     return (rc);                                                        \
2431   }
2432
2433 #define LITSTR_INT      "literal signed integer"
2434 #define FOUND_INT       rv->i = a->i;
2435 #define MISSING_INT     if (parse_signed(&rv->i, d.buf, ei->ir, tv))    \
2436                           { rc = -1; goto end; }
2437
2438 #define LITSTR_UINT     "literal unsigned integer"
2439 #define FOUND_UINT      rv->u = a->u;
2440 #define MISSING_UINT    if (parse_unsigned(&rv->u, d.buf, ei->ur, tv))  \
2441                           { rc = -1; goto end; }
2442
2443 #define LITSTR_FLT      "literal floating-point number, "               \
2444                           "`#-inf', `#+inf', or `#nan'"
2445 #define FOUND_FLT       rv->f = a->f;
2446 #define MISSING_FLT     if (parse_floating(&rv->f, 0, d.buf, ei->fi, tv)) \
2447                           { rc = -1; goto end; }
2448
2449 #define LITSTR_PTR      "`#nil'"
2450 #define FOUND_PTR       rv->p = UNCONST(void, a->p);
2451 #define MISSING_PTR     if (STRCMP(d.buf, ==, "#nil"))                  \
2452                           rv->p = 0;                                    \
2453                         else {                                          \
2454                           tvec_error(tv, "unknown `%s' value `%s'",     \
2455                                      ei->name, d.buf);                  \
2456                           rc = -1; goto end;                            \
2457                         }
2458
2459 TVEC_MISCSLOTS(DEFPARSE_ENUM)
2460
2461 #undef LITSTR_INT
2462 #undef FOUND_INT
2463 #undef MISSING_INT
2464
2465 #undef LITSTR_UINT
2466 #undef FOUND_UINT
2467 #undef MISSING_UINT
2468
2469 #undef LITSTR_FLT
2470 #undef FOUND_FLT
2471 #undef MISSING_FLT
2472
2473 #undef LITSTR_PTR
2474 #undef FOUND_PTR
2475 #undef MISSING_PTR
2476
2477 #undef DEFPARSE_ENUM
2478
2479 /* --- @dump_tenum@ --- *
2480  *
2481  * Arguments:   @const union tvec_regval *rv@ = register value
2482  *              @const struct tvec_regdef *rd@ = register definition
2483  *              @unsigned style@ = output style (@TVSF_...@)
2484  *              @const struct gprintf_ops *gops@, @void *gp@ = format output
2485  *
2486  * Returns:     ---
2487  *
2488  * Use:         Dump a register value to the format output.
2489  *
2490  *              Enumeration values are dumped as their symbolic names, if
2491  *              possible, with the underlying values provided as a comment
2492  *              unless compact output is requested, as for the underlying
2493  *              representation.  A null pointer is printed as %|#nil|%;
2494  *              non-null pointers are printed as %|#<TYPE PTR>|%, with the
2495  *              enumeration TYPE and the raw pointer PTR printed with the
2496  *              system's %|%p|% format specifier.
2497  */
2498
2499
2500 #define DEFDUMP_ENUM(tag_, ty, slot)                                    \
2501   static void dump_##slot##enum(const union tvec_regval *rv,            \
2502                                 const struct tvec_regdef *rd,           \
2503                                 unsigned style,                         \
2504                                 const struct gprintf_ops *gops, void *go) \
2505   {                                                                     \
2506     const struct tvec_##slot##enuminfo *ei = rd->arg.p;                 \
2507     const struct tvec_##slot##assoc *a;                                 \
2508                                                                         \
2509     if (style&TVSF_RAW) gprintf(gops, go, #slot "enum/%s:", ei->name);  \
2510     for (a = ei->av; a->tag; a++)                                       \
2511       if (rv->slot == a->slot) {                                        \
2512         gprintf(gops, go, "%s", a->tag);                                \
2513         if (style&TVSF_COMPACT) return;                                 \
2514         gprintf(gops, go, " ; = "); break;                              \
2515       }                                                                 \
2516                                                                         \
2517     PRINTRAW_##tag_                                                     \
2518   }
2519
2520 #define MAYBE_PRINT_EXTRA                                               \
2521         if (style&TVSF_COMPACT) /* nothing to do */;                    \
2522         else if (!a->tag) { gprintf(gops, go, " ; = "); goto _extra; }  \
2523         else if (1) { gprintf(gops, go, " = "); goto _extra; }          \
2524         else _extra:
2525
2526 #define PRINTRAW_INT    gprintf(gops, go, "%ld", rv->i);                \
2527                         MAYBE_PRINT_EXTRA {                             \
2528                           format_signed_hex(gops, go, rv->i);           \
2529                           maybe_format_signed_char(gops, go, rv->i);    \
2530                         }
2531
2532 #define PRINTRAW_UINT   gprintf(gops, go, "%lu", rv->u);                \
2533                         MAYBE_PRINT_EXTRA {                             \
2534                           format_unsigned_hex(gops, go, rv->u);         \
2535                           maybe_format_unsigned_char(gops, go, rv->u);  \
2536                         }
2537
2538 #define PRINTRAW_FLT    format_floating(gops, go, rv->f);
2539
2540 #define PRINTRAW_PTR    if (!rv->p) gprintf(gops, go, "#nil");          \
2541                         else gprintf(gops, go, "#<%s %p>", ei->name, rv->p);
2542
2543 TVEC_MISCSLOTS(DEFDUMP_ENUM)
2544
2545 #undef PRINTRAW_INT
2546 #undef PRINTRAW_UINT
2547 #undef PRINTRAW_FLT
2548 #undef PRINTRAW_PTR
2549
2550 #undef MAYBE_PRINT_EXTRA
2551 #undef DEFDUMP_ENUM
2552
2553 /* Enumeration type definitions. */
2554 #define DEFTY_ENUM(tag, ty, slot)                                       \
2555   const struct tvec_regty tvty_##slot##enum = {                         \
2556     init_##slot##enum, trivial_release, eq_##slot##enum,                \
2557     tobuf_##slot##enum, frombuf_##slot##enum,                           \
2558     parse_##slot##enum, dump_##slot##enum                               \
2559   };
2560 TVEC_MISCSLOTS(DEFTY_ENUM)
2561 #undef DEFTY_ENUM
2562
2563 /* Predefined enumeration types. */
2564 static const struct tvec_iassoc bool_assoc[] = {
2565   { "nil",              0 },
2566   { "false",            0 },
2567   { "f",                0 },
2568   { "no",               0 },
2569   { "n",                0 },
2570   { "off",              0 },
2571
2572   { "t",                1 },
2573   { "true",             1 },
2574   { "yes",              1 },
2575   { "y",                1 },
2576   { "on",               1 },
2577
2578   TVEC_ENDENUM
2579 };
2580
2581 const struct tvec_ienuminfo tvenum_bool =
2582   { "bool", bool_assoc, &tvrange_int };
2583
2584 static const struct tvec_iassoc cmp_assoc[] = {
2585   { "<",                -1 },
2586   { "less",             -1 },
2587   { "lt",               -1 },
2588
2589   { "=",                 0 },
2590   { "equal",             0 },
2591   { "eq",                0 },
2592
2593   { ">",                +1 },
2594   { "greater",          +1 },
2595   { "gt",               +1 },
2596
2597   TVEC_ENDENUM
2598 };
2599
2600 const struct tvec_ienuminfo tvenum_cmp =
2601   { "cmp", cmp_assoc, &tvrange_int };
2602
2603 /* --- @tvec_claimeq_tenum@ --- *
2604  *
2605  * Arguments:   @struct tvec_state *tv@ = test-vector state
2606  *              @const struct tvec_typeenuminfo *ei@ = enumeration type info
2607  *              @ty t0, t1@ = two values
2608  *              @const char *file@, @unsigned @lno@ = calling file and line
2609  *              @const char *expr@ = the expression to quote on failure
2610  *
2611  * Returns:     Nonzero if @t0@ and @t1@ are equal, otherwise zero.
2612  *
2613  * Use:         Check that values of @t0@ and @t1@ are equal.  As for
2614  *              @tvec_claim@ above, a test case is automatically begun and
2615  *              ended if none is already underway.  If the values are
2616  *              unequal, then @tvec_fail@ is called, quoting @expr@, and the
2617  *              mismatched values are dumped: @t0@ is printed as the output
2618  *              value and @t1@ is printed as the input reference.
2619  */
2620
2621 #define DEFCLAIM(tag, ty, slot)                                         \
2622         int tvec_claimeq_##slot##enum                                   \
2623           (struct tvec_state *tv,                                       \
2624            const struct tvec_##slot##enuminfo *ei, ty e0, ty e1,        \
2625            const char *file, unsigned lno, const char *expr)            \
2626         {                                                               \
2627           union tvec_misc arg;                                          \
2628           struct tvec_reg rval, rref;                                   \
2629                                                                         \
2630           arg.p = ei;                                                   \
2631           rval.f = rref.f = TVRF_LIVE;                                  \
2632           rval.v.slot = GET_##tag(e0); rref.v.slot = GET_##tag(e1);     \
2633           return (tvec_claimeq(tv, &tvty_##slot##enum, &arg,            \
2634                                &rval, &rref, file, lno, expr));         \
2635         }
2636 #define GET_INT(e) (e)
2637 #define GET_UINT(e) (e)
2638 #define GET_FLT(e) (e)
2639 #define GET_PTR(e) (UNCONST(void, (e)))
2640 TVEC_MISCSLOTS(DEFCLAIM)
2641 #undef DEFCLAIM
2642 #undef GET_INT
2643 #undef GET_UINT
2644 #undef GET_FLT
2645 #undef GET_PTR
2646
2647 /*----- Flag types --------------------------------------------------------*/
2648
2649 /* Flag types are initialized, compared, and serialized as unsigned
2650  * integers.
2651  */
2652
2653 /* --- @parse_flags@ --- *
2654  *
2655  * Arguments:   @union tvec_regval *rv@ = register value
2656  *              @const struct tvec_regdef *rd@ = register definition
2657  *              @struct tvec_state *tv@ = test-vector state
2658  *
2659  * Returns:     Zero on success, %$-1$% on error.
2660  *
2661  * Use:         Parse a register value from an input file.
2662  *
2663  *              The input syntax is a sequence of items separated by `|'
2664  *              signs.  Each item may be the symbolic name of a field value,
2665  *              or a literal unsigned integer.  The masks associated with the
2666  *              given symbolic names must be disjoint.  The resulting
2667  *              numerical value is simply the bitwise OR of the given values.
2668  */
2669
2670 static int parse_flags(union tvec_regval *rv, const struct tvec_regdef *rd,
2671                        struct tvec_state *tv)
2672 {
2673   const struct tvec_flaginfo *fi = rd->arg.p;
2674   const struct tvec_flag *f;
2675   unsigned long m = 0, v = 0, t;
2676   dstr d = DSTR_INIT;
2677   int ch, rc;
2678
2679   for (;;) {
2680
2681     /* Read the next item. */
2682     DRESET(&d);
2683     if (tvec_readword(tv, &d, 0, "|;", "%s flag name or integer", fi->name))
2684       { rc = -1; goto end; }
2685
2686     /* Try to find a matching entry in the table. */
2687     for (f = fi->fv; f->tag; f++)
2688       if (STRCMP(f->tag, ==, d.buf)) {
2689         if (m&f->m)
2690           { tvec_error(tv, "colliding flag setting"); rc = -1; goto end; }
2691         else
2692           { m |= f->m; v |= f->v; goto next; }
2693       }
2694
2695     /* Otherwise, try to parse it as a raw integer. */
2696     if (parse_unsigned(&t, d.buf, fi->range, tv))
2697       { rc = -1; goto end; }
2698     v |= t;
2699
2700   next:
2701     /* Advance to the next token.  If it's a separator then consume it, and
2702      * go round again.  Otherwise we stop here.
2703      */
2704     if (tvec_nexttoken(tv)) break;
2705     ch = getc(tv->fp);
2706       if (ch != '|') { tvec_syntax(tv, ch, "`|'"); rc = -1; goto end; }
2707       if (tvec_nexttoken(tv)) {
2708         tvec_syntax(tv, '\n', "%s flag name or integer", fi->name);
2709         rc = -1; goto end;
2710       }
2711   }
2712
2713   /* Done. */
2714   rv->u = v; rc = 0;
2715 end:
2716   dstr_destroy(&d);
2717   return (rc);
2718 }
2719
2720 /* --- @dump_flags@ --- *
2721  *
2722  * Arguments:   @const union tvec_regval *rv@ = register value
2723  *              @const struct tvec_regdef *rd@ = register definition
2724  *              @unsigned style@ = output style (@TVSF_...@)
2725  *              @const struct gprintf_ops *gops@, @void *gp@ = format output
2726  *
2727  * Returns:     ---
2728  *
2729  * Use:         Dump a register value to the format output.
2730  *
2731  *              The table of symbolic names and their associated values and
2732  *              masks is repeatedly scanned, in order, to find disjoint
2733  *              matches -- i.e., entries whose value matches the target value
2734  *              in the bit positions indicated by the mask, and whose mask
2735  *              doesn't overlap with any previously found matches; the names
2736  *              are then output, separated by `|'.  Any remaining nonzero
2737  *              bits not covered by any of the matching masks are output as a
2738  *              single literal integer, in hex.
2739  *
2740  *              Unless compact output is requested, or no symbolic names were
2741  *              found, the raw numeric value is also printed in hex, as a
2742  *              comment.
2743  */
2744
2745 static void dump_flags(const union tvec_regval *rv,
2746                        const struct tvec_regdef *rd,
2747                        unsigned style,
2748                        const struct gprintf_ops *gops, void *go)
2749 {
2750   const struct tvec_flaginfo *fi = rd->arg.p;
2751   const struct tvec_flag *f;
2752   unsigned long m = ~0ul, v = rv->u;
2753   const char *sep;
2754
2755   if (style&TVSF_RAW) gprintf(gops, go, "flags/%s:", fi->name);
2756
2757   for (f = fi->fv, sep = ""; f->tag; f++)
2758     if ((m&f->m) && (v&f->m) == f->v) {
2759       gprintf(gops, go, "%s%s", sep, f->tag); m &= ~f->m;
2760       sep = style&TVSF_COMPACT ? "|" : " | ";
2761     }
2762
2763   if (v&m) gprintf(gops, go, "%s0x%0*lx", sep, hex_width(v), v&m);
2764   else if (!v && m == ~0ul) gprintf(gops, go, "0");
2765
2766   if (!(style&(TVSF_COMPACT | TVSF_RAW)))
2767     gprintf(gops, go, " ; = 0x%0*lx", hex_width(rv->u), rv->u);
2768 }
2769
2770 /* Flags type definition. */
2771 const struct tvec_regty tvty_flags = {
2772   init_uint, trivial_release, eq_uint,
2773   tobuf_uint, frombuf_uint,
2774   parse_flags, dump_flags
2775 };
2776
2777 /* --- @tvec_claimeq_flags@ --- *
2778  *
2779  * Arguments:   @struct tvec_state *tv@ = test-vector state
2780  *              @const struct tvec_flaginfo *fi@ = flags type info
2781  *              @unsigned long f0, f1@ = two values
2782  *              @const char *file@, @unsigned @lno@ = calling file and line
2783  *              @const char *expr@ = the expression to quote on failure
2784  *
2785  * Returns:     Nonzero if @f0@ and @f1@ are equal, otherwise zero.
2786  *
2787  * Use:         Check that values of @f0@ and @f1@ are equal.  As for
2788  *              @tvec_claim@ above, a test case is automatically begun and
2789  *              ended if none is already underway.  If the values are
2790  *              unequal, then @tvec_fail@ is called, quoting @expr@, and the
2791  *              mismatched values are dumped: @f0@ is printed as the output
2792  *              value and @f1@ is printed as the input reference.
2793  */
2794
2795 int tvec_claimeq_flags(struct tvec_state *tv,
2796                        const struct tvec_flaginfo *fi,
2797                        unsigned long f0, unsigned long f1,
2798                        const char *file, unsigned lno, const char *expr)
2799 {
2800   union tvec_misc arg;
2801   struct tvec_reg rval, rref;
2802
2803   rval.f = rref.f = TVRF_LIVE; rval.v.u = f0; rref.v.u = f1;
2804   return (tvec_claimeq(tv, &tvty_flags, &arg,
2805                        &rval, &rref, file, lno, expr));
2806 }
2807
2808 /*----- Characters --------------------------------------------------------*/
2809
2810 /* Character values are initialized and compared as signed integers. */
2811
2812 /* --- @tobuf_char@ --- *
2813  *
2814  * Arguments:   @buf *b@ = buffer
2815  *              @const union tvec_regval *rv@ = register value
2816  *              @const struct tvec_regdef *rd@ = register definition
2817  *
2818  * Returns:     Zero on success, %$-1$% on failure.
2819  *
2820  * Use:         Serialize a register value to a buffer.
2821  *
2822  *              Character values are serialized as little-endian 32-bit
2823  *              unsigned integers, with %|EOF|% serialized as all-bits-set.
2824  */
2825
2826 static int tobuf_char(buf *b, const union tvec_regval *rv,
2827                       const struct tvec_regdef *rd)
2828 {
2829   uint32 u;
2830
2831   if (0 <= rv->i && rv->i <= UCHAR_MAX) u = rv->i;
2832   else if (rv->i == EOF) u = MASK32;
2833   else { buf_break(b); return (-1); }
2834   return (buf_putu32l(b, u));
2835 }
2836
2837 /* --- @frombuf_char@ --- *
2838  *
2839  * Arguments:   @buf *b@ = buffer
2840  *              @union tvec_regval *rv@ = register value
2841  *              @const struct tvec_regdef *rd@ = register definition
2842  *
2843  * Returns:     Zero on success, %$-1$% on failure.
2844  *
2845  * Use:         Deserialize a register value from a buffer.
2846  *
2847  *              Character values are serialized as little-endian 32-bit
2848  *              unsigned integers, with %|EOF|% serialized as all-bits-set.
2849  */
2850
2851 static int frombuf_char(buf *b, union tvec_regval *rv,
2852                         const struct tvec_regdef *rd)
2853 {
2854   uint32 u;
2855
2856   if (buf_getu32l(b, &u)) return (-1);
2857   if (0 <= u && u <= UCHAR_MAX) rv->i = u;
2858   else if (u == MASK32) rv->i = EOF;
2859   else { buf_break(b); return (-1); }
2860   return (0);
2861 }
2862
2863 /* --- @parse_char@ --- *
2864  *
2865  * Arguments:   @union tvec_regval *rv@ = register value
2866  *              @const struct tvec_regdef *rd@ = register definition
2867  *              @struct tvec_state *tv@ = test-vector state
2868  *
2869  * Returns:     Zero on success, %$-1$% on error.
2870  *
2871  * Use:         Parse a register value from an input file.
2872  *
2873  *              A character value can be given by symbolic name, with a
2874  *              leading `%|#|%'; or a character or `%|\|%'-escape sequence,
2875  *              optionally in single quotes.
2876  *
2877  *              The following escape sequences and character names are
2878  *              recognized.
2879  *
2880  *              * `%|#eof|%' is the special end-of-file marker.
2881  *
2882  *              * `%|#nul|%' is the NUL character, sometimes used to
2883  *                terminate strings.
2884  *
2885  *              * `%|bell|%', `%|bel|%', `%|ding|%', or `%|\a|%' is the BEL
2886  *                character used to ring the terminal bell (or do some other
2887  *                thing to attract the user's attention).
2888  *
2889  *              * %|#backspace|%, %|#bs|%, or %|\b|% is the backspace
2890  *                character, used to move the cursor backwords by one cell.
2891  *
2892  *              * %|#escape|% %|#esc|%, or%|\e|% is the escape character,
2893  *                used to introduce special terminal commands.
2894  *
2895  *              * %|#formfeed|%, %|#ff|%, or %|\f|% is the formfeed
2896  *                character, used to separate pages of text.
2897  *
2898  *              * %|#newline|%, %|#linefeed|%, %|#lf|%, %|#nl|%, or %|\n|% is
2899  *                the newline character, used to terminate lines of text or
2900  *                advance the cursor to the next line (perhaps without
2901  *                returning it to the start of the line).
2902  *
2903  *              * %|#return|%, %|#carriage-return|%, %|#cr|%, or %|\r|% is
2904  *                the carriage-return character, used to return the cursor to
2905  *                the start of the line.
2906  *
2907  *              * %|#tab|%, %|#horizontal-tab|%, %|#ht|%, or %|\t|% is the
2908  *                tab character, used to advance the cursor to the next tab
2909  *                stop on the current line.
2910  *
2911  *              * %|#vertical-tab|%, %|#vt|%, %|\v|% is the vertical tab
2912  *                character.
2913  *
2914  *              * %|#space|%, %|#spc|% is the space character.
2915  *
2916  *              * %|#delete|%, %|#del|% is the delete character, used to
2917  *                erase the most recent character.
2918  *
2919  *              * %|\'|% is the single-quote character.
2920  *
2921  *              * %|\\|% is the backslash character.
2922  *
2923  *              * %|\"|% is the double-quote character.
2924  *
2925  *              * %|\NNN|% or %|\{NNN}|% is the character with code NNN in
2926  *                octal.  The NNN may be up to three digits long.
2927  *
2928  *              * %|\xNN|% or %|\x{NN}|% is the character with code NNN in
2929  *                hexadecimal.
2930  */
2931
2932 static int parse_char(union tvec_regval *rv, const struct tvec_regdef *rd,
2933                       struct tvec_state *tv)
2934 {
2935   dstr d = DSTR_INIT;
2936   int ch, rc;
2937   unsigned f = 0;
2938 #define f_quote 1u
2939
2940   /* Advance until we find something. */
2941   if (tvec_nexttoken(tv))
2942     return (tvec_syntax(tv, fgetc(tv->fp), "character"));
2943
2944   /* Inspect the character to see what we're up against. */
2945   ch = getc(tv->fp);
2946
2947   if (ch == '#') {
2948     /* It looks like a special token.  Push the `%|#|%' back and fetch the
2949      * whole word.  If there's just the `%|#|%' after all, then treat it as
2950      * literal.
2951      */
2952
2953     ungetc(ch, tv->fp);
2954     if (tvec_readword(tv, &d, 0, ";", "character name"))
2955       { rc = -1; goto end; }
2956     if (STRCMP(d.buf, !=, "#")) {
2957       if (read_charname(&ch, d.buf, RCF_EOFOK)) {
2958         rc = tvec_error(tv, "unknown character name `%s'", d.buf);
2959         goto end;
2960       }
2961       rv->i = ch; rc = 0; goto end;
2962     }
2963   }
2964
2965   /* If this is a single quote then we expect to see a matching one later,
2966    * and we should process backslash escapes.  Get the next character and see
2967    * what happens.
2968    */
2969   if (ch == '\'') { f |= f_quote; ch = getc(tv->fp); }
2970
2971   /* Main character dispatch. */
2972   switch (ch) {
2973
2974     case '\n':
2975       /* A newline.  If we saw a single quote, then treat that as literal.
2976        * Otherwise this is an error.
2977        */
2978       if (!(f&f_quote)) goto nochar;
2979       else { f &= ~f_quote; ungetc(ch, tv->fp); ch = '\''; goto plain; }
2980
2981     case EOF:
2982       /* End-of-file.  Similar to newline, but with slightly different
2983        * effects on the parse state.
2984        */
2985       if (!(f&f_quote)) goto nochar;
2986       else { f &= ~f_quote; ch = '\''; goto plain; }
2987
2988     case '\'': nochar:
2989       /* A single quote.  This must be the second of a pair, and there should
2990        * have been a character or escape sequence between them.
2991        */
2992       rc = tvec_syntax(tv, ch, "character"); goto end;
2993
2994     case '\\':
2995       /* A backslash.  Read a character escape. */
2996       if (read_charesc(&ch, tv)) return (-1);
2997
2998     default: plain:
2999       /* Anything else.  Treat as literal. */
3000       rv->i = ch; break;
3001   }
3002
3003   /* If we saw an opening quote, then expect the closing quote. */
3004   if (f&f_quote) {
3005     ch = getc(tv->fp);
3006     if (ch != '\'') { rc = tvec_syntax(tv, ch, "`''"); goto end; }
3007   }
3008
3009   /* Done. */
3010   rc = 0;
3011 end:
3012   dstr_destroy(&d);
3013   return (rc);
3014
3015 #undef f_quote
3016 }
3017
3018 /* --- @dump_char@ --- *
3019  *
3020  * Arguments:   @const union tvec_regval *rv@ = register value
3021  *              @const struct tvec_regdef *rd@ = register definition
3022  *              @unsigned style@ = output style (@TVSF_...@)
3023  *              @const struct gprintf_ops *gops@, @void *gp@ = format output
3024  *
3025  * Returns:     ---
3026  *
3027  * Use:         Dump a register value to the format output.
3028  *
3029  *              Character values are dumped as their symbolic names, if any,
3030  *              or as a character or escape sequence within single quotes
3031  *              (which may be omitted in compact style).  If compact output
3032  *              is not requested, then the single-quoted representation (for
3033  *              characters dumped as symbolic names) and integer code in
3034  *              decimal and hex are printed as a comment.
3035  */
3036
3037 static void dump_char(const union tvec_regval *rv,
3038                       const struct tvec_regdef *rd,
3039                       unsigned style,
3040                       const struct gprintf_ops *gops, void *go)
3041 {
3042   const char *p;
3043   unsigned f = 0;
3044 #define f_semi 1u
3045
3046   if (style&TVSF_RAW) {
3047     /* Print the raw character unconditionally in single quotes. */
3048
3049     gprintf(gops, go, "char:'");
3050     format_char(gops, go, rv->i);
3051     gprintf(gops, go, "'");
3052   } else {
3053     /* Print ina pleasant human-readable way. */
3054
3055     /* Print a character name if we can find one. */
3056     p = find_charname(rv->i, (style&TVSF_COMPACT) ? CTF_SHORT : CTF_PREFER);
3057     if (p) {
3058       gprintf(gops, go, "%s", p);
3059       if (style&TVSF_COMPACT) return;
3060       else { gprintf(gops, go, " ;"); f |= f_semi; }
3061     }
3062
3063     /* If the character isn't @EOF@ then print it as a single-quoted thing.
3064      * In compact style, see if we can omit the quotes.
3065      */
3066     if (rv->i >= 0) {
3067       if (f&f_semi) gprintf(gops, go, " = ");
3068       switch (rv->i) {
3069         case ' ': case '\\': case '\'': quote:
3070           format_char(gops, go, rv->i);
3071           break;
3072         default:
3073           if (!(style&TVSF_COMPACT) || !isprint(rv->i)) goto quote;
3074           gprintf(gops, go, "%c", (int)rv->i);
3075           return;
3076       }
3077     }
3078
3079     /* And the character code as an integer. */
3080     if (!(style&TVSF_COMPACT)) {
3081       if (!(f&f_semi)) gprintf(gops, go, " ;");
3082       gprintf(gops, go, " = %ld = ", rv->i);
3083       format_signed_hex(gops, go, rv->i);
3084     }
3085   }
3086
3087 #undef f_semi
3088 }
3089
3090 /* Character type definition. */
3091 const struct tvec_regty tvty_char = {
3092   init_int, trivial_release, eq_int,
3093   tobuf_char, frombuf_char,
3094   parse_char, dump_char
3095 };
3096
3097 /* --- @tvec_claimeq_char@ --- *
3098  *
3099  * Arguments:   @struct tvec_state *tv@ = test-vector state
3100  *              @int ch0, ch1@ = two character codes
3101  *              @const char *file@, @unsigned @lno@ = calling file and line
3102  *              @const char *expr@ = the expression to quote on failure
3103  *
3104  * Returns:     Nonzero if @ch0@ and @ch1@ are equal, otherwise zero.
3105  *
3106  * Use:         Check that values of @ch0@ and @ch1@ are equal.  As for
3107  *              @tvec_claim@ above, a test case is automatically begun and
3108  *              ended if none is already underway.  If the values are
3109  *              unequal, then @tvec_fail@ is called, quoting @expr@, and the
3110  *              mismatched values are dumped: @ch0@ is printed as the output
3111  *              value and @ch1@ is printed as the input reference.
3112  */
3113
3114 int tvec_claimeq_char(struct tvec_state *tv, int c0, int c1,
3115                       const char *file, unsigned lno, const char *expr)
3116 {
3117   struct tvec_reg rval, rref;
3118
3119   rval.f = rref.f = TVRF_LIVE; rval.v.i = c0; rref.v.i = c1;
3120   return (tvec_claimeq(tv, &tvty_char, 0, &rval, &rref, file, lno, expr));
3121 }
3122
3123 /*----- Text and byte strings ---------------------------------------------*/
3124
3125 /* --- @init_text@, @init_bytes@ --- *
3126  *
3127  * Arguments:   @union tvec_regval *rv@ = register value
3128  *              @const struct tvec_regdef *rd@ = register definition
3129  *
3130  * Returns:     ---
3131  *
3132  * Use:         Initialize a register value.
3133  *
3134  *              Text and binary string values are initialized with a null
3135  *              pointer and zero length.
3136  */
3137
3138 static void init_text(union tvec_regval *rv, const struct tvec_regdef *rd)
3139   { rv->text.p = 0; rv->text.sz = 0; }
3140
3141 static void init_bytes(union tvec_regval *rv, const struct tvec_regdef *rd)
3142   { rv->bytes.p = 0; rv->bytes.sz = 0; }
3143
3144 /* --- @release_string@, @release_bytes@ --- *
3145  *
3146  * Arguments:   @const union tvec_regval *rv@ = register value
3147  *              @const struct tvec_regdef *rd@ = register definition
3148  *
3149  * Returns:     ---
3150  *
3151  * Use:         Release resources held by a register value.
3152  *
3153  *              Text and binary string buffers are freed.
3154  */
3155
3156 static void release_text(union tvec_regval *rv,
3157                          const struct tvec_regdef *rd)
3158   { free(rv->text.p); }
3159
3160 static void release_bytes(union tvec_regval *rv,
3161                           const struct tvec_regdef *rd)
3162   { free(rv->bytes.p); }
3163
3164 /* --- @eq_text@, @eq_bytes@ --- *
3165  *
3166  * Arguments:   @const union tvec_regval *rv0, *rv1@ = register values
3167  *              @const struct tvec_regdef *rd@ = register definition
3168  *
3169  * Returns:     Nonzero if the values are equal, zero if unequal
3170  *
3171  * Use:         Compare register values for equality.
3172  */
3173
3174 static int eq_text(const union tvec_regval *rv0,
3175                    const union tvec_regval *rv1,
3176                    const struct tvec_regdef *rd)
3177 {
3178   return (rv0->text.sz == rv1->text.sz &&
3179           (!rv0->text.sz ||
3180            MEMCMP(rv0->text.p, ==, rv1->text.p, rv1->text.sz)));
3181 }
3182
3183 static int eq_bytes(const union tvec_regval *rv0,
3184                     const union tvec_regval *rv1,
3185                     const struct tvec_regdef *rd)
3186 {
3187   return (rv0->bytes.sz == rv1->bytes.sz &&
3188           (!rv0->bytes.sz ||
3189            MEMCMP(rv0->bytes.p, ==, rv1->bytes.p, rv1->bytes.sz)));
3190 }
3191
3192 /* --- @tobuf_text@, @tobuf_bytes@ --- *
3193  *
3194  * Arguments:   @buf *b@ = buffer
3195  *              @const union tvec_regval *rv@ = register value
3196  *              @const struct tvec_regdef *rd@ = register definition
3197  *
3198  * Returns:     Zero on success, %$-1$% on failure.
3199  *
3200  * Use:         Serialize a register value to a buffer.
3201  *
3202  *              Text and binary string values are serialized as a little-
3203  *              endian 64-bit length %$n$% in bytes followed by %$n$% bytes
3204  *              of string data.
3205  */
3206
3207 static int tobuf_text(buf *b, const union tvec_regval *rv,
3208                       const struct tvec_regdef *rd)
3209   { return (buf_putmem64l(b, rv->text.p, rv->text.sz)); }
3210
3211 static int tobuf_bytes(buf *b, const union tvec_regval *rv,
3212                        const struct tvec_regdef *rd)
3213   { return (buf_putmem64l(b, rv->bytes.p, rv->bytes.sz)); }
3214
3215 /* --- @frombuf_text@, @frombuf_bytes@ --- *
3216  *
3217  * Arguments:   @buf *b@ = buffer
3218  *              @union tvec_regval *rv@ = register value
3219  *              @const struct tvec_regdef *rd@ = register definition
3220  *
3221  * Returns:     Zero on success, %$-1$% on failure.
3222  *
3223  * Use:         Deserialize a register value from a buffer.
3224  *
3225  *              Text and binary string values are serialized as a little-
3226  *              endian 64-bit length %$n$% in bytes followed by %$n$% bytes
3227  *              of string data.
3228  */
3229
3230 static int frombuf_text(buf *b, union tvec_regval *rv,
3231                         const struct tvec_regdef *rd)
3232 {
3233   const void *p;
3234   size_t sz;
3235
3236   p = buf_getmem64l(b, &sz); if (!p) return (-1);
3237   tvec_alloctext(rv, sz); memcpy(rv->text.p, p, sz); rv->text.p[sz] = 0;
3238   return (0);
3239 }
3240
3241 static int frombuf_bytes(buf *b, union tvec_regval *rv,
3242                          const struct tvec_regdef *rd)
3243 {
3244   const void *p;
3245   size_t sz;
3246
3247   p = buf_getmem64l(b, &sz); if (!p) return (-1);
3248   tvec_allocbytes(rv, sz); memcpy(rv->bytes.p, p, sz);
3249   return (0);
3250 }
3251
3252 /* --- @check_string_length@ --- *
3253  *
3254  * Arguments:   @size_t sz@ = found string length
3255  *              @const struct tvec_urange *ur@ = acceptable range
3256  *              @struct tvec_state *tv@ = test-vector state
3257  *
3258  * Returns:     Zero on success, %$-1$% on error.
3259  *
3260  * Use:         Checks that @sz@ is within the bounds described by @ur@,
3261  *              reporting an error if not.
3262  */
3263
3264 static int check_string_length(size_t sz, const struct tvec_urange *ur,
3265                                struct tvec_state *tv)
3266 {
3267   unsigned long uu;
3268
3269   if (ur) {
3270     if  (ur->min > sz || sz > ur->max) {
3271       tvec_error(tv, "invalid string length %lu; must be in [%lu .. %lu]",
3272                  (unsigned long)sz, ur->min, ur->max);
3273       return (-1);
3274     }
3275     if (ur->m && ur->m != 1) {
3276       uu = sz%ur->m;
3277       if (uu != ur->a%ur->m) {
3278         tvec_error(tv, "invalid string length %lu == %lu =/= %lu (mod %lu)",
3279                    (unsigned long)sz, uu, ur->a, ur->m);
3280         return (-1);
3281       }
3282     }
3283   }
3284   return (0);
3285 }
3286
3287 /* --- @parse_text@, @parse_bytes@ --- *
3288  *
3289  * Arguments:   @union tvec_regval *rv@ = register value
3290  *              @const struct tvec_regdef *rd@ = register definition
3291  *              @struct tvec_state *tv@ = test-vector state
3292  *
3293  * Returns:     Zero on success, %$-1$% on error.
3294  *
3295  * Use:         Parse a register value from an input file.
3296  *
3297  *              The input format for both kinds of strings is basically the
3298  *              same: a `compound string', consisting of
3299  *
3300  *                * single-quoted strings, which are interpreted entirely
3301  *                  literally, but can't contain single quotes or newlines;
3302  *
3303  *                * double-quoted strings, in which `%|\|%'-escapes are
3304  *                  interpreted as for characters;
3305  *
3306  *                * character names, marked by an initial `%|#|%' sign;
3307  *
3308  *                * special tokens marked by an initial `%|!|%' sign; or
3309  *
3310  *                * barewords interpreted according to the current coding
3311  *                  scheme.
3312  *
3313  *              The special tokens are
3314  *
3315  *                * `%|!bare|%', which causes subsequent sequences of
3316  *                  barewords to be treated as plain text;
3317  *
3318  *                * `%|!hex|%', `%|!base32|%', `%|!base64|%', which cause
3319  *                  subsequent barewords to be decoded in the requested
3320  *                  manner.
3321  *
3322  *                * `%|!repeat|% %$n$% %|{|% %%\textit{string}%% %|}|%',
3323  *                  which includes %$n$% copies of the (compound) string.
3324  *
3325  *              The only difference between text and binary strings is that
3326  *              the initial coding scheme is %|bare|% for text strings and
3327  *              %|hex|% for binary strings.
3328  */
3329
3330 static int parse_text(union tvec_regval *rv, const struct tvec_regdef *rd,
3331                       struct tvec_state *tv)
3332 {
3333   void *p = rv->text.p;
3334
3335   if (read_compound_string(&p, &rv->text.sz, TVCODE_BARE, 0, tv))
3336     return (-1);
3337   rv->text.p = p;
3338   if (check_string_length(rv->text.sz, rd->arg.p, tv)) return (-1);
3339   return (0);
3340 }
3341
3342 static int parse_bytes(union tvec_regval *rv, const struct tvec_regdef *rd,
3343                        struct tvec_state *tv)
3344 {
3345   void *p = rv->bytes.p;
3346
3347   if (read_compound_string(&p, &rv->bytes.sz, TVCODE_HEX, 0, tv))
3348     return (-1);
3349   rv->bytes.p = p;
3350   if (check_string_length(rv->bytes.sz, rd->arg.p, tv)) return (-1);
3351   return (0);
3352 }
3353
3354 /* --- @dump_text@, @dump_bytes@ --- *
3355  *
3356  * Arguments:   @const union tvec_regval *rv@ = register value
3357  *              @const struct tvec_regdef *rd@ = register definition
3358  *              @unsigned style@ = output style (@TVSF_...@)
3359  *              @const struct gprintf_ops *gops@, @void *gp@ = format output
3360  *
3361  * Returns:     ---
3362  *
3363  * Use:         Dump a register value to the format output.
3364  *
3365  *              Text string values are dumped as plain text, in double quotes
3366  *              if necessary, and using backslash escape sequences for
3367  *              nonprintable characters.  Unless compact output is requested,
3368  *              strings consisting of multiple lines are dumped with each
3369  *              line of the string on a separate output line.
3370  *
3371  *              Binary string values are dumped in hexadecimal.  In compact
3372  *              style, the output simply consists of a single block of hex
3373  *              digits.  Otherwise, the dump is a display consisting of
3374  *              groups of hex digits, with comments showing the offset (if
3375  *              the string is long enough) and the corresponding plain text.
3376  *
3377  *              Empty strings are dumped as %|#empty|%.
3378  */
3379
3380 static void dump_empty(const char *ty, unsigned style,
3381                        const struct gprintf_ops *gops, void *go)
3382 {
3383   if (style&TVSF_RAW) gprintf(gops, go, "%s:", ty);
3384   if (!(style&TVSF_COMPACT)) gprintf(gops, go, "#empty");
3385   if (!(style&(TVSF_COMPACT | TVSF_RAW))) gprintf(gops, go, " ; = ");
3386   if (!(style&TVSF_RAW)) gprintf(gops, go, "\"\"");
3387 }
3388
3389
3390 static void dump_text(const union tvec_regval *rv,
3391                       const struct tvec_regdef *rd,
3392                       unsigned style,
3393                       const struct gprintf_ops *gops, void *go)
3394 {
3395   const unsigned char *p, *q, *l;
3396   unsigned f = 0;
3397 #define f_nonword 1u
3398 #define f_newline 2u
3399
3400   if (!rv->text.sz) { dump_empty("text", style, gops, go); return; }
3401
3402   p = (const unsigned char *)rv->text.p; l = p + rv->text.sz;
3403   if (style&TVSF_RAW) { gprintf(gops, go, "text:"); goto quote; }
3404   else if (style&TVSF_COMPACT) goto quote;
3405
3406   switch (*p) {
3407     case '!': case '#': case ';': case '"': case '\'':
3408     case '(': case '{': case '[': case ']': case '}': case ')':
3409       f |= f_nonword; break;
3410   }
3411   for (q = p; q < l; q++)
3412     if (*q == '\n' && q != l - 1) f |= f_newline;
3413     else if (!*q || !ISGRAPH(*q) || *q == '\\') f |= f_nonword;
3414   if (f&f_newline) { gprintf(gops, go, "\n\t"); goto quote; }
3415   else if (f&f_nonword) goto quote;
3416
3417   gops->putm(go, (const char *)p, rv->text.sz);
3418   return;
3419
3420 quote:
3421   gprintf(gops, go, "\"");
3422   for (q = p; q < l; q++)
3423     if (!ISPRINT(*q) || *q == '"') {
3424       if (p < q) gops->putm(go, (const char *)p, q - p);
3425       if (*q != '\n' || (style&TVSF_COMPACT))
3426         format_charesc(gops, go, *q, FCF_BRACE);
3427       else {
3428         if (q + 1 == l) { gprintf(gops, go, "\\n\""); return; }
3429         else gprintf(gops, go, "\\n\"\n\t\"");
3430       }
3431       p = q + 1;
3432     }
3433   if (p < q) gops->putm(go, (const char *)p, q - p);
3434   gprintf(gops, go, "\"");
3435
3436 #undef f_nonword
3437 #undef f_newline
3438 }
3439
3440 static void dump_bytes(const union tvec_regval *rv,
3441                        const struct tvec_regdef *rd,
3442                        unsigned style,
3443                        const struct gprintf_ops *gops, void *go)
3444 {
3445   const unsigned char *p = rv->bytes.p, *l = p + rv->bytes.sz;
3446   size_t off, sz = rv->bytes.sz;
3447   unsigned i, n;
3448   int wd;
3449
3450   if (!rv->text.sz) { dump_empty("bytes", style, gops, go); return; }
3451
3452   if (style&(TVSF_COMPACT | TVSF_RAW)) {
3453     if (style&TVSF_RAW) gprintf(gops, go, "bytes:");
3454     while (p < l) gprintf(gops, go, "%02x", *p++);
3455     return;
3456   }
3457
3458   if (sz > 16) gprintf(gops, go, "\n\t");
3459
3460   off = 0; wd = hex_width(sz);
3461   while (p < l) {
3462     if (l - p < 16) n = l - p;
3463     else n = 16;
3464
3465     for (i = 0; i < n; i++) {
3466       if (i < n) gprintf(gops, go, "%02x", p[i]);
3467       else gprintf(gops, go, "  ");
3468       if (i < n - 1 && i%4 == 3) gprintf(gops, go, " ");
3469     }
3470     gprintf(gops, go, " ; ");
3471     if (sz > 16) gprintf(gops, go, "[%0*lx] ", wd, (unsigned long)off);
3472     for (i = 0; i < n; i++)
3473       gprintf(gops, go, "%c", isprint(p[i]) ? p[i] : '.');
3474     p += n; off += n;
3475     if (p < l) gprintf(gops, go, "\n\t");
3476   }
3477 }
3478
3479 /* Text and byte string type definitions. */
3480 const struct tvec_regty tvty_text = {
3481   init_text, release_text, eq_text,
3482   tobuf_text, frombuf_text,
3483   parse_text, dump_text
3484 };
3485 const struct tvec_regty tvty_bytes = {
3486   init_bytes, release_bytes, eq_bytes,
3487   tobuf_bytes, frombuf_bytes,
3488   parse_bytes, dump_bytes
3489 };
3490
3491 /* --- @tvec_claimeq_text@ --- *
3492  *
3493  * Arguments:   @struct tvec_state *tv@ = test-vector state
3494  *              @const char *p0@, @size_t sz0@ = first string with length
3495  *              @const char *p1@, @size_t sz1@ = second string with length
3496  *              @const char *file@, @unsigned @lno@ = calling file and line
3497  *              @const char *expr@ = the expression to quote on failure
3498  *
3499  * Returns:     Nonzero if the strings at @p0@ and @p1@ are equal, otherwise
3500  *              zero.
3501  *
3502  * Use:         Check that strings at @p0@ and @p1@ are equal.  As for
3503  *              @tvec_claim@ above, a test case is automatically begun and
3504  *              ended if none is already underway.  If the values are
3505  *              unequal, then @tvec_fail@ is called, quoting @expr@, and the
3506  *              mismatched values are dumped: @p0@ is printed as the output
3507  *              value and @p1@ is printed as the input reference.
3508  */
3509
3510 int tvec_claimeq_text(struct tvec_state *tv,
3511                       const char *p0, size_t sz0,
3512                       const char *p1, size_t sz1,
3513                       const char *file, unsigned lno, const char *expr)
3514 {
3515   struct tvec_reg rval, rref;
3516
3517   rval.f = rref.f = TVRF_LIVE;
3518   rval.v.text.p = UNCONST(char, p0); rval.v.text.sz = sz0;
3519   rref.v.text.p = UNCONST(char, p1); rref.v.text.sz = sz1;
3520   return (tvec_claimeq(tv, &tvty_text, 0, &rval, &rref, file, lno, expr));
3521 }
3522
3523 /* --- @tvec_claimeq_textz@ --- *
3524  *
3525  * Arguments:   @struct tvec_state *tv@ = test-vector state
3526  *              @const char *p0, *p1@ = two strings to compare
3527  *              @const char *file@, @unsigned @lno@ = calling file and line
3528  *              @const char *expr@ = the expression to quote on failure
3529  *
3530  * Returns:     Nonzero if the strings at @p0@ and @p1@ are equal, otherwise
3531  *              zero.
3532  *
3533  * Use:         Check that strings at @p0@ and @p1@ are equal, as for
3534  *              @tvec_claimeq_string@, except that the strings are assumed
3535  *              null-terminated, so their lengths don't need to be supplied
3536  *              explicitly.
3537  */
3538
3539 int tvec_claimeq_textz(struct tvec_state *tv,
3540                        const char *p0, const char *p1,
3541                        const char *file, unsigned lno, const char *expr)
3542 {
3543   struct tvec_reg rval, rref;
3544
3545   rval.f = rref.f = TVRF_LIVE;
3546   rval.v.text.p = UNCONST(char, p0); rval.v.text.sz = strlen(p0);
3547   rref.v.text.p = UNCONST(char, p1); rref.v.text.sz = strlen(p1);
3548   return (tvec_claimeq(tv, &tvty_text, 0, &rval, &rref, file, lno, expr));
3549 }
3550
3551 /* --- @tvec_claimeq_bytes@ --- *
3552  *
3553  * Arguments:   @struct tvec_state *tv@ = test-vector state
3554  *              @const void *p0@, @size_t sz0@ = first string with length
3555  *              @const void *p1@, @size_t sz1@ = second string with length
3556  *              @const char *file@, @unsigned @lno@ = calling file and line
3557  *              @const char *expr@ = the expression to quote on failure
3558  *
3559  * Returns:     Nonzero if the strings at @p0@ and @p1@ are equal, otherwise
3560  *              zero.
3561  *
3562  * Use:         Check that binary strings at @p0@ and @p1@ are equal.  As for
3563  *              @tvec_claim@ above, a test case is automatically begun and
3564  *              ended if none is already underway.  If the values are
3565  *              unequal, then @tvec_fail@ is called, quoting @expr@, and the
3566  *              mismatched values are dumped: @p0@ is printed as the output
3567  *              value and @p1@ is printed as the input reference.
3568  */
3569
3570 int tvec_claimeq_bytes(struct tvec_state *tv,
3571                        const void *p0, size_t sz0,
3572                        const void *p1, size_t sz1,
3573                        const char *file, unsigned lno, const char *expr)
3574 {
3575   struct tvec_reg rval, rref;
3576
3577   rval.f = rref.f = TVRF_LIVE;
3578   rval.v.bytes.p = UNCONST(void, p0); rval.v.bytes.sz = sz0;
3579   rref.v.bytes.p = UNCONST(void, p1); rref.v.bytes.sz = sz1;
3580   return (tvec_claimeq(tv, &tvty_bytes, 0, &rval, &rref, file, lno, expr));
3581 }
3582
3583 /* --- @tvec_alloctext@, @tvec_allocbytes@ --- *
3584  *
3585  * Arguments:   @union tvec_regval *rv@ = register value
3586  *              @size_t sz@ = required size
3587  *
3588  * Returns:     ---
3589  *
3590  * Use:         Allocated space in a text or binary string register.  If the
3591  *              current register size is sufficient, its buffer is left
3592  *              alone; otherwise, the old buffer, if any, is freed and a
3593  *              fresh buffer allocated.  These functions are not intended to
3594  *              be used to adjust a buffer repeatedly, e.g., while building
3595  *              output incrementally: (a) they will perform badly, and (b)
3596  *              the old buffer contents are simply discarded if reallocation
3597  *              is necessary.  Instead, use a @dbuf@ or @dstr@.
3598  *
3599  *              The @tvec_alloctext@ function sneakily allocates an extra
3600  *              byte for a terminating zero.  The @tvec_allocbytes@ function
3601  *              doesn't do this.
3602  */
3603
3604 void tvec_alloctext(union tvec_regval *rv, size_t sz)
3605 {
3606   if (rv->text.sz <= sz)
3607     { free(rv->text.p); rv->text.p = x_alloc(&arena_stdlib, sz + 1); }
3608   memset(rv->text.p, '?', sz); rv->text.sz = sz;
3609 }
3610
3611 void tvec_allocbytes(union tvec_regval *rv, size_t sz)
3612 {
3613   if (rv->bytes.sz < sz)
3614     { free(rv->bytes.p); rv->bytes.p = x_alloc(&arena_stdlib, sz); }
3615   memset(rv->bytes.p, '?', sz); rv->bytes.sz = sz;
3616 }
3617
3618 /*----- Buffer type -------------------------------------------------------*/
3619
3620 /* --- @init_buffer@ --- *
3621  *
3622  * Arguments:   @union tvec_regval *rv@ = register value
3623  *              @const struct tvec_regdef *rd@ = register definition
3624  *
3625  * Returns:     ---
3626  *
3627  * Use:         Initialize a register value.
3628  *
3629  *              Buffer values values are initialized with a null pointer,
3630  *              zero length, and zero residue, modulus, and offset.
3631  */
3632
3633 static void init_buffer(union tvec_regval *rv, const struct tvec_regdef *rd)
3634   { rv->buf.p = 0; rv->buf.sz = rv->buf.a = rv->buf.m = rv->buf.off = 0; }
3635
3636 /* --- @release_buffer@, @release_bytes@ --- *
3637  *
3638  * Arguments:   @const union tvec_regval *rv@ = register value
3639  *              @const struct tvec_regdef *rd@ = register definition
3640  *
3641  * Returns:     ---
3642  *
3643  * Use:         Release resources held by a register value.
3644  *
3645  *              Buffers are freed.
3646  */
3647
3648 static void release_buffer(union tvec_regval *rv,
3649                            const struct tvec_regdef *rd)
3650   { if (rv->buf.p) free(rv->buf.p - rv->buf.off); }
3651
3652 /* --- @eq_buffer@ --- *
3653  *
3654  * Arguments:   @const union tvec_regval *rv0, *rv1@ = register values
3655  *              @const struct tvec_regdef *rd@ = register definition
3656  *
3657  * Returns:     Nonzero if the values are equal, zero if unequal
3658  *
3659  * Use:         Compare register values for equality.
3660  *
3661  *              Buffer values are equal if and only if their sizes and
3662  *              alignment parameters are equal; their contents are
3663  *              %%\emph{not}%% compared.
3664  */
3665
3666 static int eq_buffer(const union tvec_regval *rv0,
3667                      const union tvec_regval *rv1,
3668                      const struct tvec_regdef *rd)
3669 {
3670   return (rv0->buf.sz == rv1->buf.sz &&
3671           rv0->buf.a == rv1->buf.a &&
3672           rv0->buf.m == rv1->buf.m);
3673 }
3674
3675 /* --- @tobuf_buffer@ --- *
3676  *
3677  * Arguments:   @buf *b@ = buffer
3678  *              @const union tvec_regval *rv@ = register value
3679  *              @const struct tvec_regdef *rd@ = register definition
3680  *
3681  * Returns:     Zero on success, %$-1$% on failure.
3682  *
3683  * Use:         Serialize a register value to a buffer.
3684  *
3685  *              Buffer values are serialized as their lengths, residues, and
3686  *              moduli, as unsigned integers.
3687  */
3688
3689 static int tobuf_buffer(buf *b, const union tvec_regval *rv,
3690                          const struct tvec_regdef *rd)
3691 {
3692   return (unsigned_to_buf(b, rv->buf.sz) ||
3693           unsigned_to_buf(b, rv->buf.a) ||
3694           unsigned_to_buf(b, rv->buf.m));
3695 }
3696
3697 /* --- @frombuf_buffer@ --- *
3698  *
3699  * Arguments:   @buf *b@ = buffer
3700  *              @union tvec_regval *rv@ = register value
3701  *              @const struct tvec_regdef *rd@ = register definition
3702  *
3703  * Returns:     Zero on success, %$-1$% on failure.
3704  *
3705  * Use:         Deserialize a register value from a buffer.
3706  *
3707  *              Buffer values are serialized as just their lengths, as
3708  *              unsigned integers.  The buffer is allocated on
3709  *              deserialization and filled with a distinctive pattern.
3710  */
3711
3712 static int frombuf_buffer(buf *b, union tvec_regval *rv,
3713                           const struct tvec_regdef *rd)
3714 {
3715   unsigned long sz, a, m;
3716
3717   if (unsigned_from_buf(b, &sz)) return (-1);
3718   if (unsigned_from_buf(b, &a)) return (-1);
3719   if (unsigned_from_buf(b, &m)) return (-1);
3720   if (sz > (size_t)-1 || a > (size_t)-1 || m > (size_t)-1)
3721     { buf_break(b); return (-1); }
3722   rv->buf.sz = sz; rv->buf.a = a; rv->buf.m = m;
3723   return (0);
3724 }
3725
3726 /* --- @parse_buffer@ --- *
3727  *
3728  * Arguments:   @union tvec_regval *rv@ = register value
3729  *              @const struct tvec_regdef *rd@ = register definition
3730  *              @struct tvec_state *tv@ = test-vector state
3731  *
3732  * Returns:     Zero on success, %$-1$% on error.
3733  *
3734  * Use:         Parse a register value from an input file.
3735  *
3736  *              The input format for a buffer value is a size, followed by an
3737  *              optional `%|@$%' and an alignment quantum and a further
3738  *              optional `%|+|%' and an alignment offset.  The size, quantum,
3739  *              and offset are syntactically sizes.
3740  *
3741  *              The buffer is not allocated.
3742  */
3743
3744 static int parse_buffer(union tvec_regval *rv,
3745                         const struct tvec_regdef *rd,
3746                         struct tvec_state *tv)
3747 {
3748   unsigned long sz, a = 0, m = 0;
3749   int ch, rc;
3750
3751   if (parse_szint(tv, &sz, "@;", "buffer length")) { rc = -1; goto end; }
3752   if (check_unsigned_range(sz, &tvrange_size, tv, "buffer length"))
3753     { rc = -1; goto end; }
3754   if (check_string_length(sz, rd->arg.p, tv)) { rc = -1; goto end; }
3755
3756   if (tvec_nexttoken(tv)) goto done;
3757   ch = getc(tv->fp);
3758   if (ch != '@') { rc = tvec_syntax(tv, ch, "`@'"); goto end; }
3759
3760   if (parse_szint(tv, &m, "+;", "alignment quantum")) { rc = -1; goto end; }
3761   if (check_unsigned_range(a, &tvrange_size, tv, "alignment quantum"))
3762     { rc = -1; goto end; }
3763   if (m == 1) m = 0;
3764
3765   if (tvec_nexttoken(tv)) goto done;
3766   ch = getc(tv->fp);
3767   if (ch != '+') { rc = tvec_syntax(tv, ch, "`+'"); goto end; }
3768
3769   if (parse_szint(tv, &a, ";", "alignment offset")) { rc = -1; goto end; }
3770   if (check_unsigned_range(m, &tvrange_size, tv, "alignment offset"))
3771     { rc = -1; goto end; }
3772   if (a >= m) {
3773     rc = tvec_error(tv, "alignment offset %lu >= quantum %lu",
3774                     (unsigned long)a, (unsigned long)m);
3775     goto end;
3776   }
3777
3778 done:
3779   rv->buf.sz = sz; rv->buf.a = a; rv->buf.m = m;
3780   rc = 0;
3781 end:
3782   return (rc);
3783 }
3784
3785 /* --- @dump_buffer@ --- *
3786  *
3787  * Arguments:   @const union tvec_regval *rv@ = register value
3788  *              @const struct tvec_regdef *rd@ = register definition
3789  *              @unsigned style@ = output style (@TVSF_...@)
3790  *              @const struct gprintf_ops *gops@, @void *gp@ = format output
3791  *
3792  * Returns:     ---
3793  *
3794  * Use:         Dump a register value to the format output.
3795  *
3796  *              Buffer values are dumped as their size, with the alignment
3797  *              quantum and alignment offset if these are non-default.
3798  */
3799
3800 static void dump_buffer(const union tvec_regval *rv,
3801                         const struct tvec_regdef *rd,
3802                         unsigned style,
3803                         const struct gprintf_ops *gops, void *go)
3804 {
3805   if (style&TVSF_RAW) gprintf(gops, go, "buffer:");
3806   format_size(gops, go, rv->buf.sz, style);
3807   if (rv->buf.m) {
3808     gprintf(gops, go, style&(TVSF_COMPACT | TVSF_RAW) ? "@" : " @ ");
3809     format_size(gops, go, rv->buf.m, style);
3810     if (rv->buf.a) {
3811       gprintf(gops, go, style&(TVSF_COMPACT | TVSF_RAW) ? "+" : " + ");
3812       format_size(gops, go, rv->buf.a, style);
3813     }
3814   }
3815   if (!(style&(TVSF_COMPACT | TVSF_RAW))) {
3816     gprintf(gops, go, " ; = %lu", (unsigned long)rv->buf.sz);
3817     if (rv->buf.m) {
3818       gprintf(gops, go, " @ %lu", (unsigned long)rv->buf.m);
3819       if (rv->buf.a) gprintf(gops, go, " + %lu", (unsigned long)rv->buf.a);
3820     }
3821     gprintf(gops, go, " = "); format_unsigned_hex(gops, go, rv->buf.sz);
3822     if (rv->buf.m) {
3823       gprintf(gops, go, " @ "); format_unsigned_hex(gops, go, rv->buf.m);
3824       if (rv->buf.a) {
3825         gprintf(gops, go, " + ");
3826         format_unsigned_hex(gops, go, rv->buf.a);
3827       }
3828     }
3829   }
3830 }
3831
3832 /* Buffer type definition. */
3833 const struct tvec_regty tvty_buffer = {
3834   init_buffer, release_buffer, eq_buffer,
3835   tobuf_buffer, frombuf_buffer,
3836   parse_buffer, dump_buffer
3837 };
3838
3839 /* --- @tvec_initbuffer@ --- *
3840  *
3841  * Arguments:   @union tvec_regval *rv@ = register value
3842  *              @const union tvec_regval *ref@ = source buffer
3843  *              @size_t sz@ = size to allocate
3844  *
3845  * Returns:     ---
3846  *
3847  * Use:         Initialize the alignment parameters in @rv@ to match @ref@,
3848  *              and the size to @sz@.
3849  */
3850
3851 void tvec_initbuffer(union tvec_regval *rv,
3852                      const union tvec_regval *ref, size_t sz)
3853   { rv->buf.sz = sz; rv->buf.a = ref->buf.a; rv->buf.m = ref->buf.m; }
3854
3855 /* --- @tvec_allocbuffer@ --- *
3856  *
3857  * Arguments:   @union tvec_regval *rv@ = register value
3858  *
3859  * Returns:     ---
3860  *
3861  * Use:         Allocate @sz@ bytes to the buffer and fill the space with a
3862  *              distinctive pattern.
3863  */
3864
3865 void tvec_allocbuffer(union tvec_regval *rv)
3866 {
3867   unsigned char *p; size_t n;
3868
3869   if (rv->buf.p) free(rv->buf.p - rv->buf.off);
3870
3871   if (rv->buf.m < 2) {
3872     rv->buf.p = x_alloc(&arena_stdlib, rv->buf.sz); rv->buf.off = 0;
3873   } else {
3874     p = x_alloc(&arena_stdlib, rv->buf.sz + rv->buf.m - 1);
3875     n = (size_t)p%rv->buf.m;
3876     rv->buf.off = (rv->buf.a - n + rv->buf.m)%rv->buf.m;
3877     rv->buf.p = p + rv->buf.off;
3878   }
3879   memset(rv->buf.p, '?', rv->buf.sz);
3880 }
3881
3882 /*----- That's all, folks -------------------------------------------------*/