3 * Types for the test-vector framework
5 * (c) 2023 Straylight/Edgeware
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of the mLib utilities library.
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.
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.
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,
28 /*----- Header files ------------------------------------------------------*/
48 #include "tvec-adhoc.h"
49 #include "tvec-types.h"
51 /*----- Preliminary utilities ---------------------------------------------*/
53 /* --- @trivial_release@ --- *
55 * Arguments: @union tvec_regval *rv@ = a register value
56 * @const struct tvec_regdef@ = the register definition
60 * Use: Does nothing. Used for register values which don't retain
64 static void trivial_release(union tvec_regval *rv,
65 const struct tvec_regdef *rd)
68 /*----- Integer utilities -------------------------------------------------*/
70 /* --- @unsigned_to_buf@, @signed_to_buf@ --- *
72 * Arguments: @buf *b@ = buffer to write on
73 * @unsigned long u@ or @long i@ = integer to write
75 * Returns: Zero on success, @-1@ on failure.
77 * Use: Write @i@ to the buffer, in big-endian (two's-complement, it
81 static int unsigned_to_buf(buf *b, unsigned long u)
82 { kludge64 k; ASSIGN64(k, u); return (buf_putk64l(b, k)); }
84 static int signed_to_buf(buf *b, long i)
90 if (i >= 0) ASSIGN64(k, u);
91 else { ASSIGN64(k, ~u); CPL64(k, k); }
92 return (buf_putk64l(b, k));
95 /* --- @unsigned_from_buf@, @signed_from_buf@ --- *
97 * Arguments: @buf *b@ = buffer to write on
98 * @unsigned long *u_out@ or @long *i_out@ = where to put the
101 * Returns: Zero on success, @-1@ on failure.
103 * Use: Read an integer, in big-endian (two's-complement, if signed)
104 * format, from the buffer.
107 static int unsigned_from_buf(buf *b, unsigned long *u_out)
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);
117 /* --- @hex_width@ --- *
119 * Arguments: @unsigned long u@ = an integer
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.
126 static int hex_width(unsigned long u)
131 for (t = u >> 4, wd = 4; t >>= wd, wd *= 2, t; );
135 /* --- @format_unsigned_hex@, @format_signed_hex@ --- *
137 * Arguments: @const struct gprintf_ops *gops@ = print operations
138 * @void *go@ = print destination
139 * @unsigned long u@ or @long i@ = integer to print
143 * Use: Print an unsigned or signed integer in hexadecimal.
146 static void format_unsigned_hex(const struct gprintf_ops *gops, void *go,
148 { gprintf(gops, go, "0x%0*lx", hex_width(u), u); }
150 static void format_signed_hex(const struct gprintf_ops *gops, void *go,
153 unsigned long u = i >= 0 ? i : -(unsigned long)i;
154 gprintf(gops, go, "%s0x%0*lx", i < 0 ? "-" : "", hex_width(u), u);
157 static int signed_from_buf(buf *b, long *i_out)
159 kludge64 k, lmax, not_lmin;
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);
166 if (CMP64(k, <=, not_lmin)) *i_out = -(long)GET64(unsigned long, k) - 1;
167 else { buf_break(b); return (-1); }
172 /* --- @check_signed_range@, @check_unsigned_range@ --- *
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,
178 * @struct tvec_state *tv@ = test vector state
179 * @const char *what@ = description of value
181 * Returns: Zero on success, or @-1@ on error.
183 * Use: Check that the integer is within bounds. If not, report a
184 * suitable error and return a failure indication.
187 static int check_signed_range(long i,
188 const struct tvec_irange *ir,
189 struct tvec_state *tv, const char *what)
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);
199 m = ir->m; if (m > 0) m = -m;
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.
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.
212 ii = i%m; if (ii < 0) ii -= m;
213 aa = ir->a%m; if (aa < 0) aa -= m;
215 tvec_error(tv, "%s %ld == %ld =/= %ld (mod %ld)",
216 what, i, ii, ir->a, ir->m);
224 static int check_unsigned_range(unsigned long u,
225 const struct tvec_urange *ur,
226 struct tvec_state *tv, const char *what)
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);
236 if (ur->m && ur->m != 1) {
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);
248 /* --- @chtodig@ --- *
250 * Arguments: @int ch@ = a character
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.
257 static int chtodig(int ch)
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);
265 /* --- @parse_unsigned_integer@, @parse_signed_integer@ --- *
267 * Arguments: @unsigned long *u_out@, @long *i_out@ = where to put the
269 * @const char **q_out@ = where to put the end position
270 * @const char *p@ = pointer to the string to parse
272 * Returns: Zero on success, @-1@ on error.
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:
278 * * NNN -- a decimal number (even if it starts with `0');
279 * * 0xNNN -- hexadecimal;
282 * * NNrNNN -- base NN.
284 * Furthermore, single underscores are permitted internally as
285 * an insignificant digit separator.
288 static int parse_unsigned_integer(unsigned long *u_out, const char **q_out,
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 */
301 * This will deal with the traditional `0[box]...' prefixes. We'll leave
302 * our new `NNr...' syntax for later.
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;
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++; }
318 /* Work through the string a character at a time. */
320 ch = *p; switch (ch) {
323 /* An underscore is OK if we haven't just seen one. */
325 if (f&f_uscore) goto done;
326 p++; f = (f&~f_implicit) | f_uscore;
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.
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;
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;
350 if (!(f&f_digit)) return (-1);
351 *u_out = u; *q_out = q; return (0);
358 static int parse_signed_integer(long *i_out, const char **q_out,
365 /* Read an initial sign. */
367 else if (*p == '-') { f |= f_neg; p++; }
369 /* Scan an unsigned number. */
370 if (parse_unsigned_integer(&u, q_out, p)) return (-1);
372 /* Check for signed overflow and apply the sign. */
374 if (u > LONG_MAX) return (-1);
377 if (u && u - 1 > -(LONG_MIN + 1)) return (-1);
378 *i_out = u ? -(long)(u - 1) - 1 : 0;
386 /* --- @parse_unsigned@, @parse_signed@ --- *
388 * Arguments: @unsigned long *u_out@ or @long *i_out@ = where to put the
390 * @const char *p@ = string to parse
391 * @const struct tvec_urange *ur@ or
392 * @const struct tvec_irange *ir@ = range specification,
394 * @struct tvec_state *tv@ = test vector state
396 * Returns: Zero on success, @-1@ on error.
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.
404 static int parse_unsigned(unsigned long *u_out, const char *p,
405 const struct tvec_urange *ur,
406 struct tvec_state *tv)
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);
418 static int parse_signed(long *i_out, const char *p,
419 const struct tvec_irange *ir,
420 struct tvec_state *tv)
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);
431 static const char size_units[] = "kMGTPEZY";
433 /* --- @parse_szint@ --- *
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
440 * Returns: Zero on success, %$-1$% on failure.
442 * Use: Parse a memory size.
445 static int parse_szint(struct tvec_state *tv, unsigned long *u_out,
446 const char *delims, const char *what)
449 const char *p, *unit;
455 if (tvec_readword(tv, &d, 0, delims, what)) { rc = -1; goto end; }
457 if (parse_unsigned_integer(&u, &p, p)) goto bad;
458 if (!*p) tvec_readword(tv, &d, &p, delims, 0);
460 for (t = u, unit = size_units; *unit; unit++) {
461 if (t > ULONG_MAX/1024) f |= f_range;
464 if (f&f_range) goto rangerr;
477 tvec_error(tv, "invalid %s `%s'", what, d.buf);
481 tvec_error(tv, "%s `%s' out of range", what, d.buf);
487 /* --- @format_size@ --- *
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_...@)
496 * Use: Format @u@ as a size in bytes to the destination, expressing
497 * it with a unit prefix if this is possible exactly.
500 static void format_size(const struct gprintf_ops *gops, void *go,
501 unsigned long u, unsigned style)
506 gprintf(gops, go, "%lu", u);
507 else if (!u || u%1024)
508 gprintf(gops, go, "%lu%sB", u, style&TVSF_COMPACT ? "" : " ");
510 for (unit = size_units, u /= 1024;
511 !(u%1024) && unit[1];
513 gprintf(gops, go, "%lu%s%cB", u, style&TVSF_COMPACT ? "" : " ", *unit);
517 /*----- Floating-point utilities ------------------------------------------*/
519 /* --- @eqish_floating_p@ --- *
521 * Arguments: @double x, y@ = two numbers to compare
522 * @const struct tvec_floatinfo *fi@ = floating-point info
524 * Returns: Nonzero if the comparand @x@ is sufficiently close to the
525 * reference @y@, or zero if it's definitely different.
528 static int eqish_floating_p(double x, double y,
529 const struct tvec_floatinfo *fi)
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);
537 /* Compare finite values. */
538 switch (fi ? fi->f&TVFF_EQMASK : TVFF_EXACT) {
540 return (x == y && NEGP(x) == NEGP(y));
542 t = fabs(y - x); return (t < fi->delta);
544 t = fabs(y - x); u = fabs(y*fi->delta); if (u < DBL_MIN) u = DBL_MIN;
551 /* --- @format_floating@ --- *
553 * Arguments: @const struct gprintf_ops *gops@ = print operations
554 * @void *go@ = print destination
555 * @double x@ = number to print
559 * Use: Print a floating-point number, accurately.
562 static void format_floating(const struct gprintf_ops *gops, void *go,
568 gprintf(gops, go, "#nan");
570 gprintf(gops, go, x > 0 ? "#+inf" : "#-inf");
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.
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}$%.
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
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
603 * %$f b^e/b^{e-n} > (F - B^{-N}) B^E/B^{E-N}$% ,
607 * %$f b^n > (F - B^{-N}) B^N = F B^N - 1$% .
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
612 * %$(1 - b^{-n}) b^n = b^n - 1 > B^{N-1} - 1$% .
614 * Then rearrange and take logarithms, obtaining
616 * %$(N - 1) \log B < n \log b$% ,
620 * %$N < n \log b/\log B + 1$% .
622 * Recall that this is a necessary condition for a collision to occur; we
623 * are therefore safe whenever
625 * %$N \ge n \log b/\log B + 1$% ;
627 * so, taking ceilings,
629 * %$N \ge \lceil n \log b/\log B \rceil + 1$% .
631 * So that's why we have this.
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
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.
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).
649 #ifdef DBL_DECIMAL_DIG
650 prec = DBL_DECIMAL_DIG;
652 prec = ceil(DBL_MANT_DIG*log(FLT_RADIX)/log(10)) + 1;
654 gprintf(gops, go, "%.*g", prec, x);
658 /* --- @parse_floating@ --- *
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
666 * Returns: Zero on success, @-1@ on error.
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@.
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)
678 const char *pp; char *q;
683 /* Check for special tokens. */
684 if (STRCMP(p, ==, "#nan")) {
686 if (q_out) *q_out = p + strlen(p);
689 tvec_error(tv, "NaN not supported on this system");
694 else if (STRCMP(p, ==, "#inf") ||
695 STRCMP(p, ==, "#+inf") || STRCMP(p, ==, "+#inf")) {
697 if (q_out) *q_out = p + strlen(p);
698 x = INFINITY; rc = 0;
700 tvec_error(tv, "infinity not supported on this system");
705 else if (STRCMP(p, ==, "#-inf") || STRCMP(p, ==, "-#inf")) {
707 if (q_out) *q_out = p + strlen(p);
708 x = -INFINITY; rc = 0;
710 tvec_error(tv, "infinity not supported on this system");
715 /* Check that this looks like a number, so we can exclude `strtod'
716 * recognizing its own non-finite number tokens.
720 if (*pp == '+' || *pp == '-') pp++;
721 if (*pp == '.') pp++;
723 tvec_syntax(tv, *p ? *p : fgetc(tv->fp), "floating-point number");
727 /* Parse the number using the system parser. */
728 olderr = errno; errno = 0;
729 #if __STDC_VERSION__ >= 199901
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));
744 /* Check that the number is acceptable. */
745 if (NANP(x) && fi && !(fi->f&TVFF_NANOK)) {
746 tvec_error(tv, "#nan not allowed here");
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");
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)");
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;
777 /*----- String utilities --------------------------------------------------*/
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) */
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 },
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 },
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 },
817 /* --- @find_charname@ --- *
819 * Arguments: @int ch@ = character to match
820 * @unsigned f@ = flags (@CTF_...@) to match
822 * Returns: The name of the character, or null if no match is found.
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.
829 static const char *find_charname(int ch, unsigned f)
831 const struct chartab *ct;
833 for (ct = chartab; ct->name; ct++)
834 if (ct->ch == ch && (ct->f&f)) return (ct->name);
838 /* --- @read_charname@ --- *
840 * Arguments: @int *ch_out@ = where to put the character
841 * @const char *p@ = character name
842 * @unsigned f@ = flags (@TCF_...@)
844 * Returns: Zero if a match was found, @-1@ if not.
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.
851 static int read_charname(int *ch_out, const char *p, unsigned f)
853 const struct chartab *ct;
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); }
861 /* --- @format_charesc@ --- *
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_...@)
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.
877 static void format_charesc(const struct gprintf_ops *gops, void *go,
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;
892 if (f&FCF_BRACE) gprintf(gops, go, "\\{0}");
893 else gprintf(gops, go, "\\0");
897 gprintf(gops, go, "\\x{%0*x}", hex_width(UCHAR_MAX), ch);
899 gprintf(gops, go, "\\x%0*x", hex_width(UCHAR_MAX), ch);
904 /* --- @format_char@ --- *
906 * Arguments: @const struct gprintf_ops *gops@ = print operations
907 * @void *go@ = print destination
908 * @int ch@ = character to format
912 * Use: Format a single character.
915 static void format_char(const struct gprintf_ops *gops, void *go, int ch)
918 case '\\': case '\'': escape:
919 gprintf(gops, go, "'");
920 format_charesc(gops, go, ch, 0);
921 gprintf(gops, go, "'");
924 if (!isprint(ch)) goto escape;
925 gprintf(gops, go, "'%c'", ch);
930 /* --- @fill_pattern@ --- *
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
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.
944 static void fill_pattern(void *p, size_t sz, const void *pat, size_t patsz)
946 unsigned char *q = p;
949 memset(q, *(unsigned char *)pat, sz);
952 memcpy(q, pat, patsz); pat = q; q += patsz; sz -= patsz;
954 { memcpy(q, pat, patsz); q += patsz; sz -= patsz; patsz *= 2; }
960 /* --- @maybe_format_unsigned_char@, @maybe_format_signed_char@ --- *
962 * Arguments: @const struct gprintf_ops *gops@ = print operations
963 * @void *go@ = print destination
964 * @unsigned long u@ or @long i@ = an integer
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.
973 static void maybe_format_unsigned_char
974 (const struct gprintf_ops *gops, void *go, unsigned long u)
978 p = find_charname(u, CTF_PREFER);
979 if (p) gprintf(gops, go, " = %s", p);
981 { gprintf(gops, go, " = "); format_char(gops, go, u); }
984 static void maybe_format_signed_char
985 (const struct gprintf_ops *gops, void *go, long i)
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); }
995 /* --- @read_charesc@ --- *
997 * Arguments: @int *ch_out@ = where to put the result
998 * @struct tvec_state *tv@ = test vector state
1000 * Returns: Zero on success, @-1@ on error.
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.
1007 static int read_charesc(int *ch_out, struct tvec_state *tv)
1016 /* Things we shouldn't find. */
1017 case EOF: case '\n': return (tvec_syntax(tv, ch, "string escape"));
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;
1032 /* Hex escapes, with and without braces. */
1035 if (ch == '{') { f |= f_brace; ch = getc(tv->fp); }
1038 if (esc < 0 || esc >= 16) return (tvec_syntax(tv, ch, "hex digit"));
1040 ch = getc(tv->fp); i = chtodig(ch); if (i < 0 || i >= 16) break;
1042 if (esc > UCHAR_MAX)
1043 return (tvec_error(tv,
1044 "character code %d out of range", esc));
1046 if (!(f&f_brace)) ungetc(ch, tv->fp);
1047 else if (ch != '}') return (tvec_syntax(tv, ch, "`}'"));
1051 /* Other things, primarily octal escapes. */
1053 f |= f_brace; ch = getc(tv->fp);
1056 if ('0' <= ch && ch < '8') {
1057 i = 1; esc = ch - '0';
1060 if ('0' > ch || ch >= '8') { ungetc(ch, tv->fp); break; }
1061 esc = 8*esc + ch - '0';
1062 i++; if (i >= 3) break;
1066 if (ch != '}') return (tvec_syntax(tv, ch, "`}'"));
1068 if (esc > UCHAR_MAX)
1069 return (tvec_error(tv,
1070 "character code %d out of range", esc));
1071 *ch_out = esc; break;
1073 return (tvec_syntax(tv, ch, "string escape"));
1082 /* --- @read_quoted_string@ --- *
1084 * Arguments: @dstr *d@ = string to write to
1085 * @int quote@ = initial quote, `'' or `"'
1086 * @struct tvec_state *tv@ = test vector state
1088 * Returns: Zero on success, @-1@ on error.
1090 * Use: Read the rest of a quoted string into @d@, reporting errors
1093 * A single-quoted string is entirely literal. A double-quoted
1094 * string may contain C-like escapes.
1097 static int read_quoted_string(dstr *d, int quote, struct tvec_state *tv)
1104 case EOF: case '\n':
1105 return (tvec_syntax(tv, ch, "`%c'", quote));
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);
1112 if (ch == quote) goto end;
1124 /* --- @collect_bare@ --- *
1126 * Arguments: @dstr *d@ = string to write to
1127 * @struct tvec_state *tv@ = test vector state
1129 * Returns: Zero on success, @-1@ on error.
1131 * Use: Read barewords and the whitespace between them. Stop when we
1132 * encounter something which can't start a bareword.
1135 static int collect_bare(dstr *d, struct tvec_state *tv)
1137 size_t pos = d->len;
1138 enum { WORD, SPACE, ESCAPE }; unsigned s = WORD;
1145 tvec_syntax(tv, ch, "bareword");
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;
1153 case '"': case '\'': case '!': case '#': case ')': case '}': case ']':
1154 if (s == SPACE) { ungetc(ch, tv->fp); goto done; }
1160 if (s != ESCAPE && isspace(ch)) {
1161 if (s == WORD) pos = d->len;
1162 DPUTC(d, ch); s = SPACE;
1166 DPUTC(d, ch); s = WORD;
1171 if (s == SPACE) d->len = pos;
1177 /* --- @set_up_encoding@ --- *
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_...@)
1185 * Use: Helper for @read_compound_string@ below.
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@).
1192 enum { TVCODE_BARE, TVCODE_HEX, TVCODE_BASE64, TVCODE_BASE32 };
1193 static void set_up_encoding(const codec_class **ccl_out, unsigned *f_out,
1198 *ccl_out = 0; *f_out = 0;
1201 *ccl_out = &hex_class; *f_out = CDCF_IGNCASE;
1204 *ccl_out = &base32_class; *f_out = CDCF_IGNCASE | CDCF_IGNEQPAD;
1207 *ccl_out = &base64_class; *f_out = CDCF_IGNEQPAD;
1214 /* --- @flush_codec@ --- *
1216 * Arguments: @codec *cdc@ = a codec, or null
1217 * @dstr *d@ = output string
1218 * @struct tvec_state *tv@ = test vector state
1220 * Returns: Zero on success, @-1@ on error.
1222 * Use: Helper for @read_compound_string@ below.
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.
1229 static int flush_codec(codec *cdc, dstr *d, struct tvec_state *tv)
1234 err = cdc->ops->code(cdc, 0, 0, d);
1236 return (tvec_error(tv, "invalid %s sequence end: %s",
1237 cdc->ops->c->name, codec_strerror(err)));
1238 cdc->ops->destroy(cdc);
1243 /* --- @read_compound_string@ --- *
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
1251 * Returns: Zero on success, @-1@ on error.
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.
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.
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)
1269 const codec_class *ccl; unsigned cdf;
1271 dstr d = DSTR_INIT, w = DSTR_INIT;
1274 void *pp = 0; size_t sz;
1278 set_up_encoding(&ccl, &cdf, code); cdc = 0;
1280 if (tvec_nexttoken(tv)) return (tvec_syntax(tv, fgetc(tv->fp), "string"));
1285 case ')': case ']': case '}':
1286 /* Close brackets. Leave these for recursive caller if there is one,
1290 if (!(f&RCSF_NESTED))
1291 { rc = tvec_syntax(tv, ch, "string"); goto end; }
1292 ungetc(ch, tv->fp); goto done;
1294 case '"': case '\'':
1295 /* Quotes. Read a quoted string. */
1297 if (cdc && flush_codec(cdc, &d, tv)) { rc = -1; goto end; }
1299 if (read_quoted_string(&d, ch, tv)) { rc = -1; goto end; }
1303 /* A named character. */
1306 if (cdc && flush_codec(cdc, &d, tv)) { rc = -1; goto end; }
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);
1314 DPUTC(&d, ch); break;
1317 /* A magic keyword. */
1319 if (cdc && flush_codec(cdc, &d, tv)) { rc = -1; goto end; }
1322 DRESET(&w); tvec_readword(tv, &w, 0, ";", "`!'-keyword");
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); }
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");
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);
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; }
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; }
1358 if (n > (size_t)-1/sz)
1359 { rc = tvec_error(tv, "repeat size out of range"); goto end; }
1362 fill_pattern(d.buf + d.len, n, pp, sz); d.len += n;
1367 /* Anything else is an error. */
1369 tvec_error(tv, "unknown string keyword `%s'", w.buf);
1375 /* A bareword. Process it according to the current coding system. */
1380 if (collect_bare(&d, tv)) goto done;
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);
1391 tvec_error(tv, "invalid %s fragment `%s': %s",
1392 ccl->name, w.buf, codec_strerror(err));
1399 } while (!tvec_nexttoken(tv));
1402 /* Wrap things up. */
1403 if (cdc && flush_codec(cdc, &d, tv)) { rc = -1; goto end; }
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;
1411 /* Clean up any debris. */
1412 if (cdc) cdc->ops->destroy(cdc);
1414 dstr_destroy(&d); dstr_destroy(&w);
1418 /*----- Signed and unsigned integer types ---------------------------------*/
1420 /* --- @init_int@, @init_uint@ --- *
1422 * Arguments: @union tvec_regval *rv@ = register value
1423 * @const struct tvec_regdef *rd@ = register definition
1427 * Use: Initialize a register value.
1429 * Integer values are initialized to zero.
1432 static void init_int(union tvec_regval *rv, const struct tvec_regdef *rd)
1435 static void init_uint(union tvec_regval *rv, const struct tvec_regdef *rd)
1438 /* --- @eq_int@, @eq_uint@ --- *
1440 * Arguments: @const union tvec_regval *rv0, *rv1@ = register values
1441 * @const struct tvec_regdef *rd@ = register definition
1443 * Returns: Nonzero if the values are equal, zero if unequal
1445 * Use: Compare register values for equality.
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); }
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); }
1457 /* --- @tobuf_int@, @tobuf_uint@ --- *
1459 * Arguments: @buf *b@ = buffer
1460 * @const union tvec_regval *rv@ = register value
1461 * @const struct tvec_regdef *rd@ = register definition
1463 * Returns: Zero on success, %$-1$% on failure.
1465 * Use: Serialize a register value to a buffer.
1467 * Integer values are serialized as little-endian 64-bit signed
1468 * or unsigned integers.
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)); }
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)); }
1479 /* --- @frombuf_int@, @frombuf_uint@ --- *
1481 * Arguments: @buf *b@ = buffer
1482 * @union tvec_regval *rv@ = register value
1483 * @const struct tvec_regdef *rd@ = register definition
1485 * Returns: Zero on success, %$-1$% on failure.
1487 * Use: Deserialize a register value from a buffer.
1489 * Integer values are serialized as 64-bit signed or unsigned
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)); }
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)); }
1501 /* --- @parse_int@, @parse_uint@ --- *
1503 * Arguments: @union tvec_regval *rv@ = register value
1504 * @const struct tvec_regdef *rd@ = register definition
1505 * @struct tvec_state *tv@ = test-vector state
1507 * Returns: Zero on success, %$-1$% on error.
1509 * Use: Parse a register value from an input file.
1511 * Integers may be input in decimal, hex, binary, or octal,
1512 * following approximately usual conventions.
1514 * * Signed integers may be preceded with a `+' or `-' sign.
1516 * * Decimal integers are just a sequence of decimal digits
1519 * * Octal integers are a sequence of digits `0' ... `7',
1520 * preceded by `0o' or `0O'.
1522 * * Hexadecimal integers are a sequence of digits `0'
1523 * ... `9', `a' ... `f', or `A' ... `F', preceded by `0x' or
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
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.
1537 static int parse_int(union tvec_regval *rv, const struct tvec_regdef *rd,
1538 struct tvec_state *tv)
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; }
1552 static int parse_uint(union tvec_regval *rv, const struct tvec_regdef *rd,
1553 struct tvec_state *tv)
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; }
1567 /* --- @dump_int@, @dump_uint@ --- *
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
1576 * Use: Dump a register value to the format output.
1578 * Integer values are dumped in decimal and, unless compact
1579 * output is requested, hex, and maybe a character, as a
1583 static void dump_int(const union tvec_regval *rv,
1584 const struct tvec_regdef *rd,
1586 const struct gprintf_ops *gops, void *go)
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);
1597 static void dump_uint(const union tvec_regval *rv,
1598 const struct tvec_regdef *rd,
1600 const struct gprintf_ops *gops, void *go)
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);
1611 /* Integer type definitions. */
1612 const struct tvec_regty tvty_int = {
1613 init_int, trivial_release, eq_int,
1614 tobuf_int, frombuf_int,
1617 const struct tvec_regty tvty_uint = {
1618 init_uint, trivial_release, eq_uint,
1619 tobuf_uint, frombuf_uint,
1620 parse_uint, dump_uint
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 };
1642 /* --- @tvec_claimeq_int@ --- *
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
1649 * Returns: Nonzero if @i0@ and @i1@ are equal, otherwise zero.
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.
1659 int tvec_claimeq_int(struct tvec_state *tv, long i0, long i1,
1660 const char *file, unsigned lno, const char *expr)
1662 struct tvec_reg rval, rref;
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));
1668 /* --- @tvec_claimeq_uint@ --- *
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
1675 * Returns: Nonzero if @u0@ and @u1@ are equal, otherwise zero.
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.
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)
1689 struct tvec_reg rval, rref;
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));
1695 /*----- Size type ---------------------------------------------------------*/
1697 /* --- @parse_size@ --- *
1699 * Arguments: @union tvec_regval *rv@ = register value
1700 * @const struct tvec_regdef *rd@ = register definition
1701 * @struct tvec_state *tv@ = test-vector state
1703 * Returns: Zero on success, %$-1$% on error.
1705 * Use: Parse a register value from an input file.
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'. */
1711 static int parse_size(union tvec_regval *rv, const struct tvec_regdef *rd,
1712 struct tvec_state *tv)
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; }
1724 /* --- @dump_size@ --- *
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
1733 * Use: Dump a register value to the format output.
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
1742 static void dump_size(const union tvec_regval *rv,
1743 const struct tvec_regdef *rd,
1745 const struct gprintf_ops *gops, void *go)
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);
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
1763 /* --- @tvec_claimeq_size@ --- *
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
1770 * Returns: Nonzero if @sz0@ and @sz1@ are equal, otherwise zero.
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.
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)
1784 struct tvec_reg rval, rref;
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));
1790 /*----- Floating-point type -----------------------------------------------*/
1792 /* --- @int_float@ --- *
1794 * Arguments: @union tvec_regval *rv@ = register value
1795 * @const struct tvec_regdef *rd@ = register definition
1799 * Use: Initialize a register value.
1801 * Floating-point values are initialized to zero.
1804 static void init_float(union tvec_regval *rv, const struct tvec_regdef *rd)
1807 /* --- @eq_float@ --- *
1809 * Arguments: @const union tvec_regval *rv0, *rv1@ = register values
1810 * @const struct tvec_regdef *rd@ = register definition
1812 * Returns: Nonzero if the values are equal, zero if unequal
1814 * Use: Compare register values for equality.
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.
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)); }
1826 /* --- @tobuf_float@ --- *
1828 * Arguments: @buf *b@ = buffer
1829 * @const union tvec_regval *rv@ = register value
1830 * @const struct tvec_regdef *rd@ = register definition
1832 * Returns: Zero on success, %$-1$% on failure.
1834 * Use: Serialize a register value to a buffer.
1836 * Floating-point values are serialized as little-endian
1837 * IEEE 754 Binary64.
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)); }
1844 /* --- @frombuf_float@ --- *
1846 * Arguments: @buf *b@ = buffer
1847 * @union tvec_regval *rv@ = register value
1848 * @const struct tvec_regdef *rd@ = register definition
1850 * Returns: Zero on success, %$-1$% on failure.
1852 * Use: Deserialize a register value from a buffer.
1854 * Floating-point values are serialized as little-endian
1855 * IEEE 754 Binary64.
1858 static int frombuf_float(buf *b, union tvec_regval *rv,
1859 const struct tvec_regdef *rd)
1864 rc = buf_getf64l(b, &t); if (!rc) rv->f = t;
1868 /* --- @parse_float@ --- *
1870 * Arguments: @union tvec_regval *rv@ = register value
1871 * @const struct tvec_regdef *rd@ = register definition
1872 * @struct tvec_state *tv@ = test-vector state
1874 * Returns: Zero on success, %$-1$% on error.
1876 * Use: Parse a register value from an input file.
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.
1885 static int parse_float(union tvec_regval *rv, const struct tvec_regdef *rd,
1886 struct tvec_state *tv)
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; }
1901 /* --- @dump_float@ --- *
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
1910 * Use: Dump a register value to the format output.
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.
1918 static void dump_float(const union tvec_regval *rv,
1919 const struct tvec_regdef *rd,
1921 const struct gprintf_ops *gops, void *go)
1923 if (style&TVSF_RAW) gprintf(gops, go, "float:");
1924 format_floating(gops, go, rv->f);
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
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 };
1943 /* --- @tvec_claimeqish_float@ --- *
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
1952 * Returns: Nonzero if @f0@ and @f1@ are sufficiently close, otherwise
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.
1962 * The details for the comparison are as follows.
1964 * * A NaN value matches any other NaN, and nothing else.
1966 * * An infinity matches another infinity of the same sign,
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.)
1975 * * If @f&TVFF_EQMASK@ is @TVFF_ABSDELTA@, then %$x$% matches
1976 * %$y$% when %$|x - y| < \delta$%.
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$%.)
1986 int tvec_claimeqish_float(struct tvec_state *tv,
1987 double f0, double f1, unsigned f, double delta,
1988 const char *file, unsigned lno,
1991 struct tvec_floatinfo fi;
1992 struct tvec_reg rval, rref;
1993 union tvec_misc arg;
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));
2001 /* --- @tvec_claimeq_float@ --- *
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
2008 * Returns: Nonzero if @f0@ and @f1@ are identical, otherwise zero.
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@.
2015 int tvec_claimeq_float(struct tvec_state *tv,
2016 double f0, double f1,
2017 const char *file, unsigned lno,
2020 return (tvec_claimeqish_float(tv, f0, f1, TVFF_EXACT, 0.0,
2024 /*----- Durations ---------------------------------------------------------*/
2026 /* A duration is a floating-point number of seconds. Initialization and
2027 * teardown, equality comparison, and serialization are as for floating-point
2031 static const struct duration_unit {
2035 #define DUF_PREFER 1u
2036 } duration_units[] = {
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 },
2064 { "min", 60.0, DUF_PREFER },
2065 { "minute", 60.0, 0 },
2066 { "minutes", 60.0, 0 },
2069 { "s", 1.0, DUF_PREFER },
2071 { "second", 1.0, 0 },
2072 { "seconds", 1.0, 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 },
2088 /* --- @tvec_parsedurunit@ --- *
2090 * Arguments: @double *scale_out@ = where to leave the scale
2091 * @const char **p_inout@ = input unit string, updated
2093 * Returns: Zero on success, %$-1$% on error.
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,
2102 int tvec_parsedurunit(double *scale_out, const char **p_inout)
2104 const char *p = *p_inout, *q;
2105 const struct duration_unit *u;
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); }
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); }
2118 /* --- @parse_duration@ --- *
2120 * Arguments: @union tvec_regval *rv@ = register value
2121 * @const struct tvec_regdef *rd@ = register definition
2122 * @struct tvec_state *tv@ = test-vector state
2124 * Returns: Zero on success, %$-1$% on error.
2126 * Use: Parse a register value from an input file.
2128 * Duration values are finite nonnegative floating-point
2129 * numbers in @strtod@ syntax, optionally followed by a unit .
2132 static int parse_duration(union tvec_regval *rv,
2133 const struct tvec_regdef *rd,
2134 struct tvec_state *tv)
2136 const struct duration_unit *u;
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; }
2147 if (!*q) tvec_readword(tv, &d, &q, ";", 0);
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;
2161 /* --- @dump_duration@ --- *
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
2170 * Use: Dump a register value to the format output.
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.
2177 static void dump_duration(const union tvec_regval *rv,
2178 const struct tvec_regdef *rd,
2180 const struct gprintf_ops *gops, void *go)
2182 const struct duration_unit *u;
2185 if (style&TVSF_RAW) {
2186 gprintf(gops, go, "duration:");
2187 format_floating(gops, go, rv->f);
2188 gprintf(gops, go, "s");
2192 for (u = duration_units; u->scale > t && u[1].unit; u++);
2195 gprintf(gops, go, "%.4g %s", t, u ? u->unit : "s");
2197 if (!(style&TVSF_COMPACT)) {
2198 gprintf(gops, go, "; = ");
2199 format_floating(gops, go, rv->f);
2200 gprintf(gops, go, " s");
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
2212 /* --- @tvec_claimeqish_duration@ --- *
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
2221 * Returns: Nonzero if @t0@ and @t1@ are sufficiently close, otherwise
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.
2229 int tvec_claimeqish_duration(struct tvec_state *tv,
2230 double t0, double t1, unsigned f, double delta,
2231 const char *file, unsigned lno,
2234 struct tvec_floatinfo fi;
2235 struct tvec_reg rval, rref;
2236 union tvec_misc arg;
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));
2244 /* --- @tvec_claimeq_duration@ --- *
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
2251 * Returns: Nonzero if @t0@ and @t1@ are identical, otherwise zero.
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@.
2258 int tvec_claimeq_duration(struct tvec_state *tv,
2259 double t0, double t1,
2260 const char *file, unsigned lno,
2263 return (tvec_claimeqish_duration(tv, t0, t1, TVFF_EXACT, 0.0,
2267 /*----- Enumerations ------------------------------------------------------*/
2269 /* --- @init_tenum@ --- *
2271 * Arguments: @union tvec_regval *rv@ = register value
2272 * @const struct tvec_regdef *rd@ = register definition
2276 * Use: Initialize a register value.
2278 * Integer and floating-point enumeration values are initialized
2279 * as their underlying representations. Pointer enumerations
2280 * are initialized to %|#nil|%.
2283 #define init_ienum init_int
2284 #define init_uenum init_uint
2285 #define init_fenum init_float
2287 static void init_penum(union tvec_regval *rv, const struct tvec_regdef *rd)
2290 /* --- @eq_tenum@ --- *
2292 * Arguments: @const union tvec_regval *rv0, *rv1@ = register values
2293 * @const struct tvec_regdef *rd@ = register definition
2295 * Returns: Nonzero if the values are equal, zero if unequal
2297 * Use: Compare register values for equality.
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.
2306 #define eq_ienum eq_int
2307 #define eq_uenum eq_uint
2309 static int eq_fenum(const union tvec_regval *rv0,
2310 const union tvec_regval *rv1,
2311 const struct tvec_regdef *rd)
2313 const struct tvec_fenuminfo *ei = rd->arg.p;
2314 return (eqish_floating_p(rv0->f, rv1->f, ei->fi));
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); }
2322 /* --- @tobuf_tenum@ --- *
2324 * Arguments: @buf *b@ = buffer
2325 * @const union tvec_regval *rv@ = register value
2326 * @const struct tvec_regdef *rd@ = register definition
2328 * Returns: Zero on success, %$-1$% on failure.
2330 * Use: Serialize a register value to a buffer.
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.
2339 #define tobuf_ienum tobuf_int
2340 #define tobuf_uenum tobuf_uint
2341 #define tobuf_fenum tobuf_float
2343 static int tobuf_penum(buf *b, const union tvec_regval *rv,
2344 const struct tvec_regdef *rd)
2346 const struct tvec_penuminfo *pei = rd->arg.p;
2347 const struct tvec_passoc *pa;
2350 for (pa = pei->av, i = 0; pa->tag; pa++, i++)
2351 if (pa->p == rv->p) goto found;
2355 return (signed_to_buf(b, i));
2358 /* --- @frombuf_tenum@ --- *
2360 * Arguments: @buf *b@ = buffer
2361 * @union tvec_regval *rv@ = register value
2362 * @const struct tvec_regdef *rd@ = register definition
2364 * Returns: Zero on success, %$-1$% on failure.
2366 * Use: Deserialize a register value from a buffer.
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.
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)
2381 const struct tvec_penuminfo *pei = rd->arg.p;
2382 const struct tvec_passoc *pa;
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); }
2393 /* --- @parse_tenum@ --- *
2395 * Arguments: @union tvec_regval *rv@ = register value
2396 * @const struct tvec_regdef *rd@ = register definition
2397 * @struct tvec_state *tv@ = test-vector state
2399 * Returns: Zero on success, %$-1$% on error.
2401 * Use: Parse a register value from an input file.
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.
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) \
2415 const struct tvec_##slot##enuminfo *ei = rd->arg.p; \
2416 const struct tvec_##slot##assoc *a; \
2417 dstr d = DSTR_INIT; \
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; } \
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; }
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; }
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; }
2449 #define LITSTR_PTR "`#nil'"
2450 #define FOUND_PTR rv->p = UNCONST(void, a->p);
2451 #define MISSING_PTR if (STRCMP(d.buf, ==, "#nil")) \
2454 tvec_error(tv, "unknown `%s' value `%s'", \
2456 rc = -1; goto end; \
2459 TVEC_MISCSLOTS(DEFPARSE_ENUM)
2477 #undef DEFPARSE_ENUM
2479 /* --- @dump_tenum@ --- *
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
2488 * Use: Dump a register value to the format output.
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.
2500 #define DEFDUMP_ENUM(tag_, ty, slot) \
2501 static void dump_##slot##enum(const union tvec_regval *rv, \
2502 const struct tvec_regdef *rd, \
2504 const struct gprintf_ops *gops, void *go) \
2506 const struct tvec_##slot##enuminfo *ei = rd->arg.p; \
2507 const struct tvec_##slot##assoc *a; \
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; \
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; } \
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); \
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); \
2538 #define PRINTRAW_FLT format_floating(gops, go, rv->f);
2540 #define PRINTRAW_PTR if (!rv->p) gprintf(gops, go, "#nil"); \
2541 else gprintf(gops, go, "#<%s %p>", ei->name, rv->p);
2543 TVEC_MISCSLOTS(DEFDUMP_ENUM)
2546 #undef PRINTRAW_UINT
2550 #undef MAYBE_PRINT_EXTRA
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 \
2560 TVEC_MISCSLOTS(DEFTY_ENUM)
2563 /* Predefined enumeration types. */
2564 static const struct tvec_iassoc bool_assoc[] = {
2581 const struct tvec_ienuminfo tvenum_bool =
2582 { "bool", bool_assoc, &tvrange_int };
2584 static const struct tvec_iassoc cmp_assoc[] = {
2600 const struct tvec_ienuminfo tvenum_cmp =
2601 { "cmp", cmp_assoc, &tvrange_int };
2603 /* --- @tvec_claimeq_tenum@ --- *
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
2611 * Returns: Nonzero if @t0@ and @t1@ are equal, otherwise zero.
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.
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) \
2627 union tvec_misc arg; \
2628 struct tvec_reg rval, rref; \
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)); \
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)
2647 /*----- Flag types --------------------------------------------------------*/
2649 /* Flag types are initialized, compared, and serialized as unsigned
2653 /* --- @parse_flags@ --- *
2655 * Arguments: @union tvec_regval *rv@ = register value
2656 * @const struct tvec_regdef *rd@ = register definition
2657 * @struct tvec_state *tv@ = test-vector state
2659 * Returns: Zero on success, %$-1$% on error.
2661 * Use: Parse a register value from an input file.
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.
2670 static int parse_flags(union tvec_regval *rv, const struct tvec_regdef *rd,
2671 struct tvec_state *tv)
2673 const struct tvec_flaginfo *fi = rd->arg.p;
2674 const struct tvec_flag *f;
2675 unsigned long m = 0, v = 0, t;
2681 /* Read the next item. */
2683 if (tvec_readword(tv, &d, 0, "|;", "%s flag name or integer", fi->name))
2684 { rc = -1; goto end; }
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)) {
2690 { tvec_error(tv, "colliding flag setting"); rc = -1; goto end; }
2692 { m |= f->m; v |= f->v; goto next; }
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; }
2701 /* Advance to the next token. If it's a separator then consume it, and
2702 * go round again. Otherwise we stop here.
2704 if (tvec_nexttoken(tv)) break;
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);
2720 /* --- @dump_flags@ --- *
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
2729 * Use: Dump a register value to the format output.
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.
2740 * Unless compact output is requested, or no symbolic names were
2741 * found, the raw numeric value is also printed in hex, as a
2745 static void dump_flags(const union tvec_regval *rv,
2746 const struct tvec_regdef *rd,
2748 const struct gprintf_ops *gops, void *go)
2750 const struct tvec_flaginfo *fi = rd->arg.p;
2751 const struct tvec_flag *f;
2752 unsigned long m = ~0ul, v = rv->u;
2755 if (style&TVSF_RAW) gprintf(gops, go, "flags/%s:", fi->name);
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 ? "|" : " | ";
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");
2766 if (!(style&(TVSF_COMPACT | TVSF_RAW)))
2767 gprintf(gops, go, " ; = 0x%0*lx", hex_width(rv->u), rv->u);
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
2777 /* --- @tvec_claimeq_flags@ --- *
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
2785 * Returns: Nonzero if @f0@ and @f1@ are equal, otherwise zero.
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.
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)
2800 union tvec_misc arg;
2801 struct tvec_reg rval, rref;
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));
2808 /*----- Characters --------------------------------------------------------*/
2810 /* Character values are initialized and compared as signed integers. */
2812 /* --- @tobuf_char@ --- *
2814 * Arguments: @buf *b@ = buffer
2815 * @const union tvec_regval *rv@ = register value
2816 * @const struct tvec_regdef *rd@ = register definition
2818 * Returns: Zero on success, %$-1$% on failure.
2820 * Use: Serialize a register value to a buffer.
2822 * Character values are serialized as little-endian 32-bit
2823 * unsigned integers, with %|EOF|% serialized as all-bits-set.
2826 static int tobuf_char(buf *b, const union tvec_regval *rv,
2827 const struct tvec_regdef *rd)
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));
2837 /* --- @frombuf_char@ --- *
2839 * Arguments: @buf *b@ = buffer
2840 * @union tvec_regval *rv@ = register value
2841 * @const struct tvec_regdef *rd@ = register definition
2843 * Returns: Zero on success, %$-1$% on failure.
2845 * Use: Deserialize a register value from a buffer.
2847 * Character values are serialized as little-endian 32-bit
2848 * unsigned integers, with %|EOF|% serialized as all-bits-set.
2851 static int frombuf_char(buf *b, union tvec_regval *rv,
2852 const struct tvec_regdef *rd)
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); }
2863 /* --- @parse_char@ --- *
2865 * Arguments: @union tvec_regval *rv@ = register value
2866 * @const struct tvec_regdef *rd@ = register definition
2867 * @struct tvec_state *tv@ = test-vector state
2869 * Returns: Zero on success, %$-1$% on error.
2871 * Use: Parse a register value from an input file.
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.
2877 * The following escape sequences and character names are
2880 * * `%|#eof|%' is the special end-of-file marker.
2882 * * `%|#nul|%' is the NUL character, sometimes used to
2883 * terminate strings.
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).
2889 * * %|#backspace|%, %|#bs|%, or %|\b|% is the backspace
2890 * character, used to move the cursor backwords by one cell.
2892 * * %|#escape|% %|#esc|%, or%|\e|% is the escape character,
2893 * used to introduce special terminal commands.
2895 * * %|#formfeed|%, %|#ff|%, or %|\f|% is the formfeed
2896 * character, used to separate pages of text.
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).
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.
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.
2911 * * %|#vertical-tab|%, %|#vt|%, %|\v|% is the vertical tab
2914 * * %|#space|%, %|#spc|% is the space character.
2916 * * %|#delete|%, %|#del|% is the delete character, used to
2917 * erase the most recent character.
2919 * * %|\'|% is the single-quote character.
2921 * * %|\\|% is the backslash character.
2923 * * %|\"|% is the double-quote character.
2925 * * %|\NNN|% or %|\{NNN}|% is the character with code NNN in
2926 * octal. The NNN may be up to three digits long.
2928 * * %|\xNN|% or %|\x{NN}|% is the character with code NNN in
2932 static int parse_char(union tvec_regval *rv, const struct tvec_regdef *rd,
2933 struct tvec_state *tv)
2940 /* Advance until we find something. */
2941 if (tvec_nexttoken(tv))
2942 return (tvec_syntax(tv, fgetc(tv->fp), "character"));
2944 /* Inspect the character to see what we're up against. */
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
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);
2961 rv->i = ch; rc = 0; goto end;
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
2969 if (ch == '\'') { f |= f_quote; ch = getc(tv->fp); }
2971 /* Main character dispatch. */
2975 /* A newline. If we saw a single quote, then treat that as literal.
2976 * Otherwise this is an error.
2978 if (!(f&f_quote)) goto nochar;
2979 else { f &= ~f_quote; ungetc(ch, tv->fp); ch = '\''; goto plain; }
2982 /* End-of-file. Similar to newline, but with slightly different
2983 * effects on the parse state.
2985 if (!(f&f_quote)) goto nochar;
2986 else { f &= ~f_quote; ch = '\''; goto plain; }
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.
2992 rc = tvec_syntax(tv, ch, "character"); goto end;
2995 /* A backslash. Read a character escape. */
2996 if (read_charesc(&ch, tv)) return (-1);
2999 /* Anything else. Treat as literal. */
3003 /* If we saw an opening quote, then expect the closing quote. */
3006 if (ch != '\'') { rc = tvec_syntax(tv, ch, "`''"); goto end; }
3018 /* --- @dump_char@ --- *
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
3027 * Use: Dump a register value to the format output.
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.
3037 static void dump_char(const union tvec_regval *rv,
3038 const struct tvec_regdef *rd,
3040 const struct gprintf_ops *gops, void *go)
3046 if (style&TVSF_RAW) {
3047 /* Print the raw character unconditionally in single quotes. */
3049 gprintf(gops, go, "char:'");
3050 format_char(gops, go, rv->i);
3051 gprintf(gops, go, "'");
3053 /* Print ina pleasant human-readable way. */
3055 /* Print a character name if we can find one. */
3056 p = find_charname(rv->i, (style&TVSF_COMPACT) ? CTF_SHORT : CTF_PREFER);
3058 gprintf(gops, go, "%s", p);
3059 if (style&TVSF_COMPACT) return;
3060 else { gprintf(gops, go, " ;"); f |= f_semi; }
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.
3067 if (f&f_semi) gprintf(gops, go, " = ");
3069 case ' ': case '\\': case '\'': quote:
3070 format_char(gops, go, rv->i);
3073 if (!(style&TVSF_COMPACT) || !isprint(rv->i)) goto quote;
3074 gprintf(gops, go, "%c", (int)rv->i);
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);
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
3097 /* --- @tvec_claimeq_char@ --- *
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
3104 * Returns: Nonzero if @ch0@ and @ch1@ are equal, otherwise zero.
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.
3114 int tvec_claimeq_char(struct tvec_state *tv, int c0, int c1,
3115 const char *file, unsigned lno, const char *expr)
3117 struct tvec_reg rval, rref;
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));
3123 /*----- Text and byte strings ---------------------------------------------*/
3125 /* --- @init_text@, @init_bytes@ --- *
3127 * Arguments: @union tvec_regval *rv@ = register value
3128 * @const struct tvec_regdef *rd@ = register definition
3132 * Use: Initialize a register value.
3134 * Text and binary string values are initialized with a null
3135 * pointer and zero length.
3138 static void init_text(union tvec_regval *rv, const struct tvec_regdef *rd)
3139 { rv->text.p = 0; rv->text.sz = 0; }
3141 static void init_bytes(union tvec_regval *rv, const struct tvec_regdef *rd)
3142 { rv->bytes.p = 0; rv->bytes.sz = 0; }
3144 /* --- @release_string@, @release_bytes@ --- *
3146 * Arguments: @const union tvec_regval *rv@ = register value
3147 * @const struct tvec_regdef *rd@ = register definition
3151 * Use: Release resources held by a register value.
3153 * Text and binary string buffers are freed.
3156 static void release_text(union tvec_regval *rv,
3157 const struct tvec_regdef *rd)
3158 { free(rv->text.p); }
3160 static void release_bytes(union tvec_regval *rv,
3161 const struct tvec_regdef *rd)
3162 { free(rv->bytes.p); }
3164 /* --- @eq_text@, @eq_bytes@ --- *
3166 * Arguments: @const union tvec_regval *rv0, *rv1@ = register values
3167 * @const struct tvec_regdef *rd@ = register definition
3169 * Returns: Nonzero if the values are equal, zero if unequal
3171 * Use: Compare register values for equality.
3174 static int eq_text(const union tvec_regval *rv0,
3175 const union tvec_regval *rv1,
3176 const struct tvec_regdef *rd)
3178 return (rv0->text.sz == rv1->text.sz &&
3180 MEMCMP(rv0->text.p, ==, rv1->text.p, rv1->text.sz)));
3183 static int eq_bytes(const union tvec_regval *rv0,
3184 const union tvec_regval *rv1,
3185 const struct tvec_regdef *rd)
3187 return (rv0->bytes.sz == rv1->bytes.sz &&
3189 MEMCMP(rv0->bytes.p, ==, rv1->bytes.p, rv1->bytes.sz)));
3192 /* --- @tobuf_text@, @tobuf_bytes@ --- *
3194 * Arguments: @buf *b@ = buffer
3195 * @const union tvec_regval *rv@ = register value
3196 * @const struct tvec_regdef *rd@ = register definition
3198 * Returns: Zero on success, %$-1$% on failure.
3200 * Use: Serialize a register value to a buffer.
3202 * Text and binary string values are serialized as a little-
3203 * endian 64-bit length %$n$% in bytes followed by %$n$% bytes
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)); }
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)); }
3215 /* --- @frombuf_text@, @frombuf_bytes@ --- *
3217 * Arguments: @buf *b@ = buffer
3218 * @union tvec_regval *rv@ = register value
3219 * @const struct tvec_regdef *rd@ = register definition
3221 * Returns: Zero on success, %$-1$% on failure.
3223 * Use: Deserialize a register value from a buffer.
3225 * Text and binary string values are serialized as a little-
3226 * endian 64-bit length %$n$% in bytes followed by %$n$% bytes
3230 static int frombuf_text(buf *b, union tvec_regval *rv,
3231 const struct tvec_regdef *rd)
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;
3241 static int frombuf_bytes(buf *b, union tvec_regval *rv,
3242 const struct tvec_regdef *rd)
3247 p = buf_getmem64l(b, &sz); if (!p) return (-1);
3248 tvec_allocbytes(rv, sz); memcpy(rv->bytes.p, p, sz);
3252 /* --- @check_string_length@ --- *
3254 * Arguments: @size_t sz@ = found string length
3255 * @const struct tvec_urange *ur@ = acceptable range
3256 * @struct tvec_state *tv@ = test-vector state
3258 * Returns: Zero on success, %$-1$% on error.
3260 * Use: Checks that @sz@ is within the bounds described by @ur@,
3261 * reporting an error if not.
3264 static int check_string_length(size_t sz, const struct tvec_urange *ur,
3265 struct tvec_state *tv)
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);
3275 if (ur->m && ur->m != 1) {
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);
3287 /* --- @parse_text@, @parse_bytes@ --- *
3289 * Arguments: @union tvec_regval *rv@ = register value
3290 * @const struct tvec_regdef *rd@ = register definition
3291 * @struct tvec_state *tv@ = test-vector state
3293 * Returns: Zero on success, %$-1$% on error.
3295 * Use: Parse a register value from an input file.
3297 * The input format for both kinds of strings is basically the
3298 * same: a `compound string', consisting of
3300 * * single-quoted strings, which are interpreted entirely
3301 * literally, but can't contain single quotes or newlines;
3303 * * double-quoted strings, in which `%|\|%'-escapes are
3304 * interpreted as for characters;
3306 * * character names, marked by an initial `%|#|%' sign;
3308 * * special tokens marked by an initial `%|!|%' sign; or
3310 * * barewords interpreted according to the current coding
3313 * The special tokens are
3315 * * `%|!bare|%', which causes subsequent sequences of
3316 * barewords to be treated as plain text;
3318 * * `%|!hex|%', `%|!base32|%', `%|!base64|%', which cause
3319 * subsequent barewords to be decoded in the requested
3322 * * `%|!repeat|% %$n$% %|{|% %%\textit{string}%% %|}|%',
3323 * which includes %$n$% copies of the (compound) string.
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.
3330 static int parse_text(union tvec_regval *rv, const struct tvec_regdef *rd,
3331 struct tvec_state *tv)
3333 void *p = rv->text.p;
3335 if (read_compound_string(&p, &rv->text.sz, TVCODE_BARE, 0, tv))
3338 if (check_string_length(rv->text.sz, rd->arg.p, tv)) return (-1);
3342 static int parse_bytes(union tvec_regval *rv, const struct tvec_regdef *rd,
3343 struct tvec_state *tv)
3345 void *p = rv->bytes.p;
3347 if (read_compound_string(&p, &rv->bytes.sz, TVCODE_HEX, 0, tv))
3350 if (check_string_length(rv->bytes.sz, rd->arg.p, tv)) return (-1);
3354 /* --- @dump_text@, @dump_bytes@ --- *
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
3363 * Use: Dump a register value to the format output.
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.
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.
3377 * Empty strings are dumped as %|#empty|%.
3380 static void dump_empty(const char *ty, unsigned style,
3381 const struct gprintf_ops *gops, void *go)
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, "\"\"");
3390 static void dump_text(const union tvec_regval *rv,
3391 const struct tvec_regdef *rd,
3393 const struct gprintf_ops *gops, void *go)
3395 const unsigned char *p, *q, *l;
3397 #define f_nonword 1u
3398 #define f_newline 2u
3400 if (!rv->text.sz) { dump_empty("text", style, gops, go); return; }
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;
3407 case '!': case '#': case ';': case '"': case '\'':
3408 case '(': case '{': case '[': case ']': case '}': case ')':
3409 f |= f_nonword; break;
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;
3417 gops->putm(go, (const char *)p, rv->text.sz);
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);
3428 if (q + 1 == l) { gprintf(gops, go, "\\n\""); return; }
3429 else gprintf(gops, go, "\\n\"\n\t\"");
3433 if (p < q) gops->putm(go, (const char *)p, q - p);
3434 gprintf(gops, go, "\"");
3440 static void dump_bytes(const union tvec_regval *rv,
3441 const struct tvec_regdef *rd,
3443 const struct gprintf_ops *gops, void *go)
3445 const unsigned char *p = rv->bytes.p, *l = p + rv->bytes.sz;
3446 size_t off, sz = rv->bytes.sz;
3450 if (!rv->text.sz) { dump_empty("bytes", style, gops, go); return; }
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++);
3458 if (sz > 16) gprintf(gops, go, "\n\t");
3460 off = 0; wd = hex_width(sz);
3462 if (l - p < 16) n = l - p;
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, " ");
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] : '.');
3475 if (p < l) gprintf(gops, go, "\n\t");
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
3485 const struct tvec_regty tvty_bytes = {
3486 init_bytes, release_bytes, eq_bytes,
3487 tobuf_bytes, frombuf_bytes,
3488 parse_bytes, dump_bytes
3491 /* --- @tvec_claimeq_text@ --- *
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
3499 * Returns: Nonzero if the strings at @p0@ and @p1@ are equal, otherwise
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.
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)
3515 struct tvec_reg rval, rref;
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));
3523 /* --- @tvec_claimeq_textz@ --- *
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
3530 * Returns: Nonzero if the strings at @p0@ and @p1@ are equal, otherwise
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
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)
3543 struct tvec_reg rval, rref;
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));
3551 /* --- @tvec_claimeq_bytes@ --- *
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
3559 * Returns: Nonzero if the strings at @p0@ and @p1@ are equal, otherwise
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.
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)
3575 struct tvec_reg rval, rref;
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));
3583 /* --- @tvec_alloctext@, @tvec_allocbytes@ --- *
3585 * Arguments: @union tvec_regval *rv@ = register value
3586 * @size_t sz@ = required size
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@.
3599 * The @tvec_alloctext@ function sneakily allocates an extra
3600 * byte for a terminating zero. The @tvec_allocbytes@ function
3604 void tvec_alloctext(union tvec_regval *rv, size_t sz)
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;
3611 void tvec_allocbytes(union tvec_regval *rv, size_t sz)
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;
3618 /*----- Buffer type -------------------------------------------------------*/
3620 /* --- @init_buffer@ --- *
3622 * Arguments: @union tvec_regval *rv@ = register value
3623 * @const struct tvec_regdef *rd@ = register definition
3627 * Use: Initialize a register value.
3629 * Buffer values values are initialized with a null pointer,
3630 * zero length, and zero residue, modulus, and offset.
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; }
3636 /* --- @release_buffer@, @release_bytes@ --- *
3638 * Arguments: @const union tvec_regval *rv@ = register value
3639 * @const struct tvec_regdef *rd@ = register definition
3643 * Use: Release resources held by a register value.
3645 * Buffers are freed.
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); }
3652 /* --- @eq_buffer@ --- *
3654 * Arguments: @const union tvec_regval *rv0, *rv1@ = register values
3655 * @const struct tvec_regdef *rd@ = register definition
3657 * Returns: Nonzero if the values are equal, zero if unequal
3659 * Use: Compare register values for equality.
3661 * Buffer values are equal if and only if their sizes and
3662 * alignment parameters are equal; their contents are
3663 * %%\emph{not}%% compared.
3666 static int eq_buffer(const union tvec_regval *rv0,
3667 const union tvec_regval *rv1,
3668 const struct tvec_regdef *rd)
3670 return (rv0->buf.sz == rv1->buf.sz &&
3671 rv0->buf.a == rv1->buf.a &&
3672 rv0->buf.m == rv1->buf.m);
3675 /* --- @tobuf_buffer@ --- *
3677 * Arguments: @buf *b@ = buffer
3678 * @const union tvec_regval *rv@ = register value
3679 * @const struct tvec_regdef *rd@ = register definition
3681 * Returns: Zero on success, %$-1$% on failure.
3683 * Use: Serialize a register value to a buffer.
3685 * Buffer values are serialized as their lengths, residues, and
3686 * moduli, as unsigned integers.
3689 static int tobuf_buffer(buf *b, const union tvec_regval *rv,
3690 const struct tvec_regdef *rd)
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));
3697 /* --- @frombuf_buffer@ --- *
3699 * Arguments: @buf *b@ = buffer
3700 * @union tvec_regval *rv@ = register value
3701 * @const struct tvec_regdef *rd@ = register definition
3703 * Returns: Zero on success, %$-1$% on failure.
3705 * Use: Deserialize a register value from a buffer.
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.
3712 static int frombuf_buffer(buf *b, union tvec_regval *rv,
3713 const struct tvec_regdef *rd)
3715 unsigned long sz, a, m;
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;
3726 /* --- @parse_buffer@ --- *
3728 * Arguments: @union tvec_regval *rv@ = register value
3729 * @const struct tvec_regdef *rd@ = register definition
3730 * @struct tvec_state *tv@ = test-vector state
3732 * Returns: Zero on success, %$-1$% on error.
3734 * Use: Parse a register value from an input file.
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.
3741 * The buffer is not allocated.
3744 static int parse_buffer(union tvec_regval *rv,
3745 const struct tvec_regdef *rd,
3746 struct tvec_state *tv)
3748 unsigned long sz, a = 0, m = 0;
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; }
3756 if (tvec_nexttoken(tv)) goto done;
3758 if (ch != '@') { rc = tvec_syntax(tv, ch, "`@'"); goto end; }
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; }
3765 if (tvec_nexttoken(tv)) goto done;
3767 if (ch != '+') { rc = tvec_syntax(tv, ch, "`+'"); goto end; }
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; }
3773 rc = tvec_error(tv, "alignment offset %lu >= quantum %lu",
3774 (unsigned long)a, (unsigned long)m);
3779 rv->buf.sz = sz; rv->buf.a = a; rv->buf.m = m;
3785 /* --- @dump_buffer@ --- *
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
3794 * Use: Dump a register value to the format output.
3796 * Buffer values are dumped as their size, with the alignment
3797 * quantum and alignment offset if these are non-default.
3800 static void dump_buffer(const union tvec_regval *rv,
3801 const struct tvec_regdef *rd,
3803 const struct gprintf_ops *gops, void *go)
3805 if (style&TVSF_RAW) gprintf(gops, go, "buffer:");
3806 format_size(gops, go, rv->buf.sz, style);
3808 gprintf(gops, go, style&(TVSF_COMPACT | TVSF_RAW) ? "@" : " @ ");
3809 format_size(gops, go, rv->buf.m, style);
3811 gprintf(gops, go, style&(TVSF_COMPACT | TVSF_RAW) ? "+" : " + ");
3812 format_size(gops, go, rv->buf.a, style);
3815 if (!(style&(TVSF_COMPACT | TVSF_RAW))) {
3816 gprintf(gops, go, " ; = %lu", (unsigned long)rv->buf.sz);
3818 gprintf(gops, go, " @ %lu", (unsigned long)rv->buf.m);
3819 if (rv->buf.a) gprintf(gops, go, " + %lu", (unsigned long)rv->buf.a);
3821 gprintf(gops, go, " = "); format_unsigned_hex(gops, go, rv->buf.sz);
3823 gprintf(gops, go, " @ "); format_unsigned_hex(gops, go, rv->buf.m);
3825 gprintf(gops, go, " + ");
3826 format_unsigned_hex(gops, go, rv->buf.a);
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
3839 /* --- @tvec_initbuffer@ --- *
3841 * Arguments: @union tvec_regval *rv@ = register value
3842 * @const union tvec_regval *ref@ = source buffer
3843 * @size_t sz@ = size to allocate
3847 * Use: Initialize the alignment parameters in @rv@ to match @ref@,
3848 * and the size to @sz@.
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; }
3855 /* --- @tvec_allocbuffer@ --- *
3857 * Arguments: @union tvec_regval *rv@ = register value
3861 * Use: Allocate @sz@ bytes to the buffer and fill the space with a
3862 * distinctive pattern.
3865 void tvec_allocbuffer(union tvec_regval *rv)
3867 unsigned char *p; size_t n;
3869 if (rv->buf.p) free(rv->buf.p - rv->buf.off);
3871 if (rv->buf.m < 2) {
3872 rv->buf.p = x_alloc(&arena_stdlib, rv->buf.sz); rv->buf.off = 0;
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;
3879 memset(rv->buf.p, '?', rv->buf.sz);
3882 /*----- That's all, folks -------------------------------------------------*/