home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gawk-2.15.6-src.tgz / tar.out / fsf / gawk / dfa.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  67KB  |  2,590 lines

  1. /* dfa.c - deterministic extended regexp routines for GNU
  2.    Copyright (C) 1988 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Written June, 1988 by Mike Haertel
  19.    Modified July, 1988 by Arthur David Olson to assist BMG speedups  */
  20.  
  21. #include <assert.h>
  22. #include <ctype.h>
  23. #include <stdio.h>
  24.  
  25. #ifdef HAVE_CONFIG_H
  26. #include "config.h"
  27. #endif
  28.  
  29. #ifdef STDC_HEADERS
  30. #include <stdlib.h>
  31. #else
  32. #include <sys/types.h>
  33. extern char *calloc(), *malloc(), *realloc();
  34. extern void free();
  35. #endif
  36.  
  37. #if defined(HAVE_STRING_H) || defined(STDC_HEADERS)
  38. #include <string.h>
  39. #undef index
  40. #define index strchr
  41. #else
  42. #include <strings.h>
  43. #endif
  44.  
  45. #ifndef DEBUG    /* use the same approach as regex.c */
  46. #undef assert
  47. #define assert(e)
  48. #endif /* DEBUG */
  49.  
  50. #ifndef isgraph
  51. #define isgraph(C) (isprint(C) && !isspace(C))
  52. #endif
  53.  
  54. #ifdef isascii
  55. #define ISALPHA(C) (isascii(C) && isalpha(C))
  56. #define ISUPPER(C) (isascii(C) && isupper(C))
  57. #define ISLOWER(C) (isascii(C) && islower(C))
  58. #define ISDIGIT(C) (isascii(C) && isdigit(C))
  59. #define ISXDIGIT(C) (isascii(C) && isxdigit(C))
  60. #define ISSPACE(C) (isascii(C) && isspace(C))
  61. #define ISPUNCT(C) (isascii(C) && ispunct(C))
  62. #define ISALNUM(C) (isascii(C) && isalnum(C))
  63. #define ISPRINT(C) (isascii(C) && isprint(C))
  64. #define ISGRAPH(C) (isascii(C) && isgraph(C))
  65. #define ISCNTRL(C) (isascii(C) && iscntrl(C))
  66. #else
  67. #define ISALPHA(C) isalpha(C)
  68. #define ISUPPER(C) isupper(C)
  69. #define ISLOWER(C) islower(C)
  70. #define ISDIGIT(C) isdigit(C)
  71. #define ISXDIGIT(C) isxdigit(C)
  72. #define ISSPACE(C) isspace(C)
  73. #define ISPUNCT(C) ispunct(C)
  74. #define ISALNUM(C) isalnum(C)
  75. #define ISPRINT(C) isprint(C)
  76. #define ISGRAPH(C) isgraph(C)
  77. #define ISCNTRL(C) iscntrl(C)
  78. #endif
  79.  
  80. #include "regex.h"
  81. #include "dfa.h"
  82.  
  83. #ifdef __STDC__
  84. typedef void *ptr_t;
  85. #else
  86. typedef char *ptr_t;
  87. #ifndef const
  88. #define const
  89. #endif
  90. #endif
  91.  
  92. static void dfamust _RE_ARGS((struct dfa *dfa));
  93.  
  94. static ptr_t xcalloc _RE_ARGS((size_t n, size_t s));
  95. static ptr_t xmalloc _RE_ARGS((size_t n));
  96. static ptr_t xrealloc _RE_ARGS((ptr_t p, size_t n));
  97. #ifdef DEBUG
  98. static void prtok _RE_ARGS((token t));
  99. #endif
  100. static int tstbit _RE_ARGS((int b, charclass c));
  101. static void setbit _RE_ARGS((int b, charclass c));
  102. static void clrbit _RE_ARGS((int b, charclass c));
  103. static void copyset _RE_ARGS((charclass src, charclass dst));
  104. static void zeroset _RE_ARGS((charclass s));
  105. static void notset _RE_ARGS((charclass s));
  106. static int equal _RE_ARGS((charclass s1, charclass s2));
  107. static int charclass_index _RE_ARGS((charclass s));
  108. static int looking_at _RE_ARGS((const char *s));
  109. static token lex _RE_ARGS((void));
  110. static void addtok _RE_ARGS((token t));
  111. static void atom _RE_ARGS((void));
  112. static int nsubtoks _RE_ARGS((int tindex));
  113. static void copytoks _RE_ARGS((int tindex, int ntokens));
  114. static void closure _RE_ARGS((void));
  115. static void branch _RE_ARGS((void));
  116. static void regexp _RE_ARGS((int toplevel));
  117. static void copy _RE_ARGS((position_set *src, position_set *dst));
  118. static void insert _RE_ARGS((position p, position_set *s));
  119. static void merge _RE_ARGS((position_set *s1, position_set *s2, position_set *m));
  120. static void delete _RE_ARGS((position p, position_set *s));
  121. static int state_index _RE_ARGS((struct dfa *d, position_set *s,
  122.               int newline, int letter));
  123. static void build_state _RE_ARGS((int s, struct dfa *d));
  124. static void build_state_zero _RE_ARGS((struct dfa *d));
  125. static char *icatalloc _RE_ARGS((char *old, char *new));
  126. static char *icpyalloc _RE_ARGS((char *string));
  127. static char *istrstr _RE_ARGS((char *lookin, char *lookfor));
  128. static void ifree _RE_ARGS((char *cp));
  129. static void freelist _RE_ARGS((char **cpp));
  130. static char **enlist _RE_ARGS((char **cpp, char *new, size_t len));
  131. static char **comsubs _RE_ARGS((char *left, char *right));
  132. static char **addlists _RE_ARGS((char **old, char **new));
  133. static char **inboth _RE_ARGS((char **left, char **right));
  134.  
  135. static ptr_t
  136. xcalloc(n, s)
  137.      size_t n;
  138.      size_t s;
  139. {
  140.   ptr_t r = calloc(n, s);
  141.  
  142.   if (!r)
  143.     dfaerror("Memory exhausted");
  144.   return r;
  145. }
  146.  
  147. static ptr_t
  148. xmalloc(n)
  149.      size_t n;
  150. {
  151.   ptr_t r = malloc(n);
  152.  
  153.   assert(n != 0);
  154.   if (!r)
  155.     dfaerror("Memory exhausted");
  156.   return r;
  157. }
  158.  
  159. static ptr_t
  160. xrealloc(p, n)
  161.      ptr_t p;
  162.      size_t n;
  163. {
  164.   ptr_t r = realloc(p, n);
  165.  
  166.   assert(n != 0);
  167.   if (!r)
  168.     dfaerror("Memory exhausted");
  169.   return r;
  170. }
  171.  
  172. #define CALLOC(p, t, n) ((p) = (t *) xcalloc((size_t)(n), sizeof (t)))
  173. #define MALLOC(p, t, n) ((p) = (t *) xmalloc((n) * sizeof (t)))
  174. #define REALLOC(p, t, n) ((p) = (t *) xrealloc((ptr_t) (p), (n) * sizeof (t)))
  175.  
  176. /* Reallocate an array of type t if nalloc is too small for index. */
  177. #define REALLOC_IF_NECESSARY(p, t, nalloc, index) \
  178.   if ((index) >= (nalloc))              \
  179.     {                          \
  180.       while ((index) >= (nalloc))          \
  181.     (nalloc) *= 2;                  \
  182.       REALLOC(p, t, nalloc);              \
  183.     }
  184.  
  185. #ifdef DEBUG
  186.  
  187. static void
  188. prtok(t)
  189.      token t;
  190. {
  191.   char *s;
  192.  
  193.   if (t < 0)
  194.     fprintf(stderr, "END");
  195.   else if (t < NOTCHAR)
  196.     fprintf(stderr, "%c", t);
  197.   else
  198.     {
  199.       switch (t)
  200.     {
  201.     case EMPTY: s = "EMPTY"; break;
  202.     case BACKREF: s = "BACKREF"; break;
  203.     case BEGLINE: s = "BEGLINE"; break;
  204.     case ENDLINE: s = "ENDLINE"; break;
  205.     case BEGWORD: s = "BEGWORD"; break;
  206.     case ENDWORD: s = "ENDWORD"; break;
  207.     case LIMWORD: s = "LIMWORD"; break;
  208.     case NOTLIMWORD: s = "NOTLIMWORD"; break;
  209.     case QMARK: s = "QMARK"; break;
  210.     case STAR: s = "STAR"; break;
  211.     case PLUS: s = "PLUS"; break;
  212.     case CAT: s = "CAT"; break;
  213.     case OR: s = "OR"; break;
  214.     case ORTOP: s = "ORTOP"; break;
  215.     case LPAREN: s = "LPAREN"; break;
  216.     case RPAREN: s = "RPAREN"; break;
  217.     default: s = "CSET"; break;
  218.     }
  219.       fprintf(stderr, "%s", s);
  220.     }
  221. }
  222. #endif /* DEBUG */
  223.  
  224. /* Stuff pertaining to charclasses. */
  225.  
  226. static int
  227. tstbit(b, c)
  228.      int b;
  229.      charclass c;
  230. {
  231.   return c[b / INTBITS] & 1 << b % INTBITS;
  232. }
  233.  
  234. static void
  235. setbit(b, c)
  236.      int b;
  237.      charclass c;
  238. {
  239.   c[b / INTBITS] |= 1 << b % INTBITS;
  240. }
  241.  
  242. static void
  243. clrbit(b, c)
  244.      int b;
  245.      charclass c;
  246. {
  247.   c[b / INTBITS] &= ~(1 << b % INTBITS);
  248. }
  249.  
  250. static void
  251. copyset(src, dst)
  252.      charclass src;
  253.      charclass dst;
  254. {
  255.   int i;
  256.  
  257.   for (i = 0; i < CHARCLASS_INTS; ++i)
  258.     dst[i] = src[i];
  259. }
  260.  
  261. static void
  262. zeroset(s)
  263.      charclass s;
  264. {
  265.   int i;
  266.  
  267.   for (i = 0; i < CHARCLASS_INTS; ++i)
  268.     s[i] = 0;
  269. }
  270.  
  271. static void
  272. notset(s)
  273.      charclass s;
  274. {
  275.   int i;
  276.  
  277.   for (i = 0; i < CHARCLASS_INTS; ++i)
  278.     s[i] = ~s[i];
  279. }
  280.  
  281. static int
  282. equal(s1, s2)
  283.      charclass s1;
  284.      charclass s2;
  285. {
  286.   int i;
  287.  
  288.   for (i = 0; i < CHARCLASS_INTS; ++i)
  289.     if (s1[i] != s2[i])
  290.       return 0;
  291.   return 1;
  292. }
  293.  
  294. /* A pointer to the current dfa is kept here during parsing. */
  295. static struct dfa *dfa;
  296.  
  297. /* Find the index of charclass s in dfa->charclasses, or allocate a new charclass. */
  298. static int
  299. charclass_index(s)
  300.      charclass s;
  301. {
  302.   int i;
  303.  
  304.   for (i = 0; i < dfa->cindex; ++i)
  305.     if (equal(s, dfa->charclasses[i]))
  306.       return i;
  307.   REALLOC_IF_NECESSARY(dfa->charclasses, charclass, dfa->calloc, dfa->cindex);
  308.   ++dfa->cindex;
  309.   copyset(s, dfa->charclasses[i]);
  310.   return i;
  311. }
  312.  
  313. /* Syntax bits controlling the behavior of the lexical analyzer. */
  314. static reg_syntax_t syntax_bits, syntax_bits_set;
  315.  
  316. /* Flag for case-folding letters into sets. */
  317. static int case_fold;
  318.  
  319. /* Entry point to set syntax options. */
  320. void
  321. dfasyntax(bits, fold)
  322.      reg_syntax_t bits;
  323.      int fold;
  324. {
  325.   syntax_bits_set = 1;
  326.   syntax_bits = bits;
  327.   case_fold = fold;
  328. }
  329.  
  330. /* Lexical analyzer.  All the dross that deals with the obnoxious
  331.    GNU Regex syntax bits is located here.  The poor, suffering
  332.    reader is referred to the GNU Regex documentation for the
  333.    meaning of the @#%!@#%^!@ syntax bits. */
  334.  
  335. static char *lexstart;        /* Pointer to beginning of input string. */
  336. static char *lexptr;        /* Pointer to next input character. */
  337. static lexleft;            /* Number of characters remaining. */
  338. static token lasttok;        /* Previous token returned; initially END. */
  339. static int laststart;        /* True if we're separated from beginning or (, |
  340.                    only by zero-width characters. */
  341. static int parens;        /* Count of outstanding left parens. */
  342. static int minrep, maxrep;    /* Repeat counts for {m,n}. */
  343.  
  344. /* Note that characters become unsigned here. */
  345. #define FETCH(c, eoferr)             \
  346.   {                         \
  347.     if (! lexleft)                 \
  348.       if (eoferr != 0)                 \
  349.     dfaerror(eoferr);            \
  350.       else                     \
  351.     return lasttok = END;          \
  352.     (c) = (unsigned char) *lexptr++;  \
  353.     --lexleft;                     \
  354.   }
  355.  
  356. #ifdef __STDC__
  357. #define FUNC(F, P) static int F(int c) { return P(c); }
  358. #else
  359. #define FUNC(F, P) static int F(c) int c; { return P(c); }
  360. #endif
  361.  
  362. FUNC(is_alpha, ISALPHA)
  363. FUNC(is_upper, ISUPPER)
  364. FUNC(is_lower, ISLOWER)
  365. FUNC(is_digit, ISDIGIT)
  366. FUNC(is_xdigit, ISXDIGIT)
  367. FUNC(is_space, ISSPACE)
  368. FUNC(is_punct, ISPUNCT)
  369. FUNC(is_alnum, ISALNUM)
  370. FUNC(is_print, ISPRINT)
  371. FUNC(is_graph, ISGRAPH)
  372. FUNC(is_cntrl, ISCNTRL)
  373.  
  374. /* The following list maps the names of the Posix named character classes
  375.    to predicate functions that determine whether a given character is in
  376.    the class.  The leading [ has already been eaten by the lexical analyzer. */
  377. static struct {
  378.   const char *name;
  379.   int (*pred) _RE_ARGS((int));
  380. } prednames[] = {
  381.   { ":alpha:]", is_alpha },
  382.   { ":upper:]", is_upper },
  383.   { ":lower:]", is_lower },
  384.   { ":digit:]", is_digit },
  385.   { ":xdigit:]", is_xdigit },
  386.   { ":space:]", is_space },
  387.   { ":punct:]", is_punct },
  388.   { ":alnum:]", is_alnum },
  389.   { ":print:]", is_print },
  390.   { ":graph:]", is_graph },
  391.   { ":cntrl:]", is_cntrl },
  392.   { 0 }
  393. };
  394.  
  395. static int
  396. looking_at(s)
  397.      const char *s;
  398. {
  399.   size_t len;
  400.  
  401.   len = strlen(s);
  402.   if (lexleft < len)
  403.     return 0;
  404.   return strncmp(s, lexptr, len) == 0;
  405. }
  406.  
  407. static token
  408. lex()
  409. {
  410.   token c, c1, c2;
  411.   int backslash = 0, invert;
  412.   charclass ccl;
  413.   int i;
  414.  
  415.   /* Basic plan: We fetch a character.  If it's a backslash,
  416.      we set the backslash flag and go through the loop again.
  417.      On the plus side, this avoids having a duplicate of the
  418.      main switch inside the backslash case.  On the minus side,
  419.      it means that just about every case begins with
  420.      "if (backslash) ...".  */
  421.   for (i = 0; i < 2; ++i)
  422.     {
  423.       FETCH(c, 0);
  424.       switch (c)
  425.     {
  426.     case '\\':
  427.       if (backslash)
  428.         goto normal_char;
  429.       if (lexleft == 0)
  430.         dfaerror("Unfinished \\ escape");
  431.       backslash = 1;
  432.       break;
  433.  
  434.     case '^':
  435.       if (backslash)
  436.         goto normal_char;
  437.       if (syntax_bits & RE_CONTEXT_INDEP_ANCHORS
  438.           || lasttok == END
  439.           || lasttok == LPAREN
  440.           || lasttok == OR)
  441.         return lasttok = BEGLINE;
  442.       goto normal_char;
  443.  
  444.     case '$':
  445.       if (backslash)
  446.         goto normal_char;
  447.       if (syntax_bits & RE_CONTEXT_INDEP_ANCHORS
  448.           || lexleft == 0
  449.           || (syntax_bits & RE_NO_BK_PARENS
  450.           ? lexleft > 0 && *lexptr == ')'
  451.           : lexleft > 1 && lexptr[0] == '\\' && lexptr[1] == ')')
  452.           || (syntax_bits & RE_NO_BK_VBAR
  453.           ? lexleft > 0 && *lexptr == '|'
  454.           : lexleft > 1 && lexptr[0] == '\\' && lexptr[1] == '|')
  455.           || ((syntax_bits & RE_NEWLINE_ALT)
  456.               && lexleft > 0 && *lexptr == '\n'))
  457.         return lasttok = ENDLINE;
  458.       goto normal_char;
  459.  
  460.     case '1':
  461.     case '2':
  462.     case '3':
  463.     case '4':
  464.     case '5':
  465.     case '6':
  466.     case '7':
  467.     case '8':
  468.     case '9':
  469.       if (backslash && !(syntax_bits & RE_NO_BK_REFS))
  470.         {
  471.           laststart = 0;
  472.           return lasttok = BACKREF;
  473.         }
  474.       goto normal_char;
  475.  
  476.     case '<':
  477.       if (syntax_bits & RE_NO_GNU_OPS)
  478.         goto normal_char;
  479.       if (backslash)
  480.         return lasttok = BEGWORD;
  481.       goto normal_char;
  482.  
  483.     case '>':
  484.       if (syntax_bits & RE_NO_GNU_OPS)
  485.         goto normal_char;
  486.       if (backslash)
  487.         return lasttok = ENDWORD;
  488.       goto normal_char;
  489.  
  490.     case 'b':
  491.       if (syntax_bits & RE_NO_GNU_OPS)
  492.         goto normal_char;
  493.       if (backslash)
  494.         return lasttok = LIMWORD;
  495.       goto normal_char;
  496.  
  497.     case 'B':
  498.       if (syntax_bits & RE_NO_GNU_OPS)
  499.         goto normal_char;
  500.       if (backslash)
  501.         return lasttok = NOTLIMWORD;
  502.       goto normal_char;
  503.  
  504.     case '?':
  505.       if (syntax_bits & RE_LIMITED_OPS)
  506.         goto normal_char;
  507.       if (backslash != ((syntax_bits & RE_BK_PLUS_QM) != 0))
  508.         goto normal_char;
  509.       if (!(syntax_bits & RE_CONTEXT_INDEP_OPS) && laststart)
  510.         goto normal_char;
  511.       return lasttok = QMARK;
  512.  
  513.     case '*':
  514.       if (backslash)
  515.         goto normal_char;
  516.       if (!(syntax_bits & RE_CONTEXT_INDEP_OPS) && laststart)
  517.         goto normal_char;
  518.       return lasttok = STAR;
  519.  
  520.     case '+':
  521.       if (syntax_bits & RE_LIMITED_OPS)
  522.         goto normal_char;
  523.       if (backslash != ((syntax_bits & RE_BK_PLUS_QM) != 0))
  524.         goto normal_char;
  525.       if (!(syntax_bits & RE_CONTEXT_INDEP_OPS) && laststart)
  526.         goto normal_char;
  527.       return lasttok = PLUS;
  528.  
  529.     case '{':
  530.       if (!(syntax_bits & RE_INTERVALS))
  531.         goto normal_char;
  532.       if (backslash != ((syntax_bits & RE_NO_BK_BRACES) == 0))
  533.         goto normal_char;
  534.       minrep = maxrep = 0;
  535.       /* Cases:
  536.          {M} - exact count
  537.          {M,} - minimum count, maximum is infinity
  538.          {,M} - 0 through M
  539.          {M,N} - M through N */
  540.       FETCH(c, "unfinished repeat count");
  541.       if (ISDIGIT(c))
  542.         {
  543.           minrep = c - '0';
  544.           for (;;)
  545.         {
  546.           FETCH(c, "unfinished repeat count");
  547.           if (!ISDIGIT(c))
  548.             break;
  549.           minrep = 10 * minrep + c - '0';
  550.         }
  551.         }
  552.       else if (c != ',')
  553.         dfaerror("malformed repeat count");
  554.       if (c == ',')
  555.         for (;;)
  556.           {
  557.         FETCH(c, "unfinished repeat count");
  558.         if (!ISDIGIT(c))
  559.           break;
  560.         maxrep = 10 * maxrep + c - '0';
  561.           }
  562.       else
  563.         maxrep = minrep;
  564.       if (!(syntax_bits & RE_NO_BK_BRACES))
  565.         {
  566.           if (c != '\\')
  567.         dfaerror("malformed repeat count");
  568.           FETCH(c, "unfinished repeat count");
  569.         }
  570.       if (c != '}')
  571.         dfaerror("malformed repeat count");
  572.       laststart = 0;
  573.       return lasttok = REPMN;
  574.  
  575.     case '|':
  576.       if (syntax_bits & RE_LIMITED_OPS)
  577.         goto normal_char;
  578.       if (backslash != ((syntax_bits & RE_NO_BK_VBAR) == 0))
  579.         goto normal_char;
  580.       laststart = 1;
  581.       return lasttok = OR;
  582.  
  583.     case '\n':
  584.       if (syntax_bits & RE_LIMITED_OPS
  585.           || backslash
  586.           || !(syntax_bits & RE_NEWLINE_ALT))
  587.         goto normal_char;
  588.       laststart = 1;
  589.       return lasttok = OR;
  590.  
  591.     case '(':
  592.       if (backslash != ((syntax_bits & RE_NO_BK_PARENS) == 0))
  593.         goto normal_char;
  594.       ++parens;
  595.       laststart = 1;
  596.       return lasttok = LPAREN;
  597.  
  598.     case ')':
  599.       if (backslash != ((syntax_bits & RE_NO_BK_PARENS) == 0))
  600.         goto normal_char;
  601.       if (parens == 0 && syntax_bits & RE_UNMATCHED_RIGHT_PAREN_ORD)
  602.         goto normal_char;
  603.       --parens;
  604.       laststart = 0;
  605.       return lasttok = RPAREN;
  606.  
  607.     case '.':
  608.       if (backslash)
  609.         goto normal_char;
  610.       zeroset(ccl);
  611.       notset(ccl);
  612.       if (!(syntax_bits & RE_DOT_NEWLINE))
  613.         clrbit('\n', ccl);
  614.       if (syntax_bits & RE_DOT_NOT_NULL)
  615.         clrbit('\0', ccl);
  616.       laststart = 0;
  617.       return lasttok = CSET + charclass_index(ccl);
  618.  
  619.     case 'w':
  620.     case 'W':
  621.       if (!backslash || (syntax_bits & RE_NO_GNU_OPS))
  622.         goto normal_char;
  623.       zeroset(ccl);
  624.       for (c2 = 0; c2 < NOTCHAR; ++c2)
  625.         if (ISALNUM(c2))
  626.           setbit(c2, ccl);
  627.       if (c == 'W')
  628.         notset(ccl);
  629.       laststart = 0;
  630.       return lasttok = CSET + charclass_index(ccl);
  631.     
  632.     case '[':
  633.       if (backslash)
  634.         goto normal_char;
  635.       zeroset(ccl);
  636.       FETCH(c, "Unbalanced [");
  637.       if (c == '^')
  638.         {
  639.           FETCH(c, "Unbalanced [");
  640.           invert = 1;
  641.         }
  642.       else
  643.         invert = 0;
  644.       do
  645.         {
  646.           /* Nobody ever said this had to be fast. :-)
  647.          Note that if we're looking at some other [:...:]
  648.          construct, we just treat it as a bunch of ordinary
  649.          characters.  We can do this because we assume
  650.          regex has checked for syntax errors before
  651.          dfa is ever called. */
  652.           if (c == '[' && (syntax_bits & RE_CHAR_CLASSES))
  653.         for (c1 = 0; prednames[c1].name; ++c1)
  654.           if (looking_at(prednames[c1].name))
  655.             {
  656.               for (c2 = 0; c2 < NOTCHAR; ++c2)
  657.             if ((*prednames[c1].pred)(c2))
  658.               setbit(c2, ccl);
  659.               lexptr += strlen(prednames[c1].name);
  660.               lexleft -= strlen(prednames[c1].name);
  661.               FETCH(c1, "Unbalanced [");
  662.               goto skip;
  663.             }
  664.           if (c == '\\' && (syntax_bits & RE_BACKSLASH_ESCAPE_IN_LISTS))
  665.         FETCH(c, "Unbalanced [");
  666.           FETCH(c1, "Unbalanced [");
  667.           if (c1 == '-')
  668.         {
  669.           FETCH(c2, "Unbalanced [");
  670.           if (c2 == ']')
  671.             {
  672.               /* In the case [x-], the - is an ordinary hyphen,
  673.              which is left in c1, the lookahead character. */
  674.               --lexptr;
  675.               ++lexleft;
  676.               c2 = c;
  677.             }
  678.           else
  679.             {
  680.               if (c2 == '\\'
  681.               && (syntax_bits & RE_BACKSLASH_ESCAPE_IN_LISTS))
  682.             FETCH(c2, "Unbalanced [");
  683.               FETCH(c1, "Unbalanced [");
  684.             }
  685.         }
  686.           else
  687.         c2 = c;
  688.           while (c <= c2)
  689.         {
  690.           setbit(c, ccl);
  691.           if (case_fold)
  692.             if (ISUPPER(c))
  693.               setbit(tolower(c), ccl);
  694.             else if (ISLOWER(c))
  695.               setbit(toupper(c), ccl);
  696.           ++c;
  697.         }
  698.         skip:
  699.           ;
  700.         }
  701.       while ((c = c1) != ']');
  702.       if (invert)
  703.         {
  704.           notset(ccl);
  705.           if (syntax_bits & RE_HAT_LISTS_NOT_NEWLINE)
  706.         clrbit('\n', ccl);
  707.         }
  708.       laststart = 0;
  709.       return lasttok = CSET + charclass_index(ccl);
  710.  
  711.     default:
  712.     normal_char:
  713.       laststart = 0;
  714.       if (case_fold && ISALPHA(c))
  715.         {
  716.           zeroset(ccl);
  717.           setbit(c, ccl);
  718.           if (isupper(c))
  719.         setbit(tolower(c), ccl);
  720.           else
  721.         setbit(toupper(c), ccl);
  722.           return lasttok = CSET + charclass_index(ccl);
  723.         }
  724.       return c;
  725.     }
  726.     }
  727.  
  728.   /* The above loop should consume at most a backslash
  729.      and some other character. */
  730.   abort();
  731. }
  732.  
  733. /* Recursive descent parser for regular expressions. */
  734.  
  735. static token tok;        /* Lookahead token. */
  736. static depth;            /* Current depth of a hypothetical stack
  737.                    holding deferred productions.  This is
  738.                    used to determine the depth that will be
  739.                    required of the real stack later on in
  740.                    dfaanalyze(). */
  741.  
  742. /* Add the given token to the parse tree, maintaining the depth count and
  743.    updating the maximum depth if necessary. */
  744. static void
  745. addtok(t)
  746.      token t;
  747. {
  748.   REALLOC_IF_NECESSARY(dfa->tokens, token, dfa->talloc, dfa->tindex);
  749.   dfa->tokens[dfa->tindex++] = t;
  750.  
  751.   switch (t)
  752.     {
  753.     case QMARK:
  754.     case STAR:
  755.     case PLUS:
  756.       break;
  757.  
  758.     case CAT:
  759.     case OR:
  760.     case ORTOP:
  761.       --depth;
  762.       break;
  763.  
  764.     default:
  765.       ++dfa->nleaves;
  766.     case EMPTY:
  767.       ++depth;
  768.       break;
  769.     }
  770.   if (depth > dfa->depth)
  771.     dfa->depth = depth;
  772. }
  773.  
  774. /* The grammar understood by the parser is as follows.
  775.  
  776.    regexp:
  777.      regexp OR branch
  778.      branch
  779.  
  780.    branch:
  781.      branch closure
  782.      closure
  783.  
  784.    closure:
  785.      closure QMARK
  786.      closure STAR
  787.      closure PLUS
  788.      atom
  789.  
  790.    atom:
  791.      <normal character>
  792.      CSET
  793.      BACKREF
  794.      BEGLINE
  795.      ENDLINE
  796.      BEGWORD
  797.      ENDWORD
  798.      LIMWORD
  799.      NOTLIMWORD
  800.      <empty>
  801.  
  802.    The parser builds a parse tree in postfix form in an array of tokens. */
  803.  
  804. static void
  805. atom()
  806. {
  807.   if ((tok >= 0 && tok < NOTCHAR) || tok >= CSET || tok == BACKREF
  808.       || tok == BEGLINE || tok == ENDLINE || tok == BEGWORD
  809.       || tok == ENDWORD || tok == LIMWORD || tok == NOTLIMWORD)
  810.     {
  811.       addtok(tok);
  812.       tok = lex();
  813.     }
  814.   else if (tok == LPAREN)
  815.     {
  816.       tok = lex();
  817.       regexp(0);
  818.       if (tok != RPAREN)
  819.     dfaerror("Unbalanced (");
  820.       tok = lex();
  821.     }
  822.   else
  823.     addtok(EMPTY);
  824. }
  825.  
  826. /* Return the number of tokens in the given subexpression. */
  827. static int
  828. nsubtoks(tindex)
  829. int tindex;
  830. {
  831.   int ntoks1;
  832.  
  833.   switch (dfa->tokens[tindex - 1])
  834.     {
  835.     default:
  836.       return 1;
  837.     case QMARK:
  838.     case STAR:
  839.     case PLUS:
  840.       return 1 + nsubtoks(tindex - 1);
  841.     case CAT:
  842.     case OR:
  843.     case ORTOP:
  844.       ntoks1 = nsubtoks(tindex - 1);
  845.       return 1 + ntoks1 + nsubtoks(tindex - 1 - ntoks1);
  846.     }
  847. }
  848.  
  849. /* Copy the given subexpression to the top of the tree. */
  850. static void
  851. copytoks(tindex, ntokens)
  852.      int tindex, ntokens;
  853. {
  854.   int i;
  855.  
  856.   for (i = 0; i < ntokens; ++i)
  857.     addtok(dfa->tokens[tindex + i]);
  858. }
  859.  
  860. static void
  861. closure()
  862. {
  863.   int tindex, ntokens, i;
  864.  
  865.   atom();
  866.   while (tok == QMARK || tok == STAR || tok == PLUS || tok == REPMN)
  867.     if (tok == REPMN)
  868.       {
  869.     ntokens = nsubtoks(dfa->tindex);
  870.     tindex = dfa->tindex - ntokens;
  871.     if (maxrep == 0)
  872.       addtok(PLUS);
  873.     if (minrep == 0)
  874.       addtok(QMARK);
  875.     for (i = 1; i < minrep; ++i)
  876.       {
  877.         copytoks(tindex, ntokens);
  878.         addtok(CAT);
  879.       }
  880.     for (; i < maxrep; ++i)
  881.       {
  882.         copytoks(tindex, ntokens);
  883.         addtok(QMARK);
  884.         addtok(CAT);
  885.       }
  886.     tok = lex();
  887.       }
  888.     else
  889.       {
  890.     addtok(tok);
  891.     tok = lex();
  892.       }
  893. }
  894.  
  895. static void
  896. branch()
  897. {
  898.   closure();
  899.   while (tok != RPAREN && tok != OR && tok >= 0)
  900.     {
  901.       closure();
  902.       addtok(CAT);
  903.     }
  904. }
  905.  
  906. static void
  907. regexp(toplevel)
  908.      int toplevel;
  909. {
  910.   branch();
  911.   while (tok == OR)
  912.     {
  913.       tok = lex();
  914.       branch();
  915.       if (toplevel)
  916.     addtok(ORTOP);
  917.       else
  918.     addtok(OR);
  919.     }
  920. }
  921.  
  922. /* Main entry point for the parser.  S is a string to be parsed, len is the
  923.    length of the string, so s can include NUL characters.  D is a pointer to
  924.    the struct dfa to parse into. */
  925. void
  926. dfaparse(s, len, d)
  927.      char *s;
  928.      size_t len;
  929.      struct dfa *d;
  930.  
  931. {
  932.   dfa = d;
  933.   lexstart = lexptr = s;
  934.   lexleft = len;
  935.   lasttok = END;
  936.   laststart = 1;
  937.   parens = 0;
  938.  
  939.   if (! syntax_bits_set)
  940.     dfaerror("No syntax specified");
  941.  
  942.   tok = lex();
  943.   depth = d->depth;
  944.  
  945.   regexp(1);
  946.  
  947.   if (tok != END)
  948.     dfaerror("Unbalanced )");
  949.  
  950.   addtok(END - d->nregexps);
  951.   addtok(CAT);
  952.  
  953.   if (d->nregexps)
  954.     addtok(ORTOP);
  955.  
  956.   ++d->nregexps;
  957. }
  958.  
  959. /* Some primitives for operating on sets of positions. */
  960.  
  961. /* Copy one set to another; the destination must be large enough. */
  962. static void
  963. copy(src, dst)
  964.      position_set *src;
  965.      position_set *dst;
  966. {
  967.   int i;
  968.  
  969.   for (i = 0; i < src->nelem; ++i)
  970.     dst->elems[i] = src->elems[i];
  971.   dst->nelem = src->nelem;
  972. }
  973.  
  974. /* Insert a position in a set.  Position sets are maintained in sorted
  975.    order according to index.  If position already exists in the set with
  976.    the same index then their constraints are logically or'd together.
  977.    S->elems must point to an array large enough to hold the resulting set. */
  978. static void
  979. insert(p, s)
  980.      position p;
  981.      position_set *s;
  982. {
  983.   int i;
  984.   position t1, t2;
  985.  
  986.   for (i = 0; i < s->nelem && p.index < s->elems[i].index; ++i)
  987.     continue;
  988.   if (i < s->nelem && p.index == s->elems[i].index)
  989.     s->elems[i].constraint |= p.constraint;
  990.   else
  991.     {
  992.       t1 = p;
  993.       ++s->nelem;
  994.       while (i < s->nelem)
  995.     {
  996.       t2 = s->elems[i];
  997.       s->elems[i++] = t1;
  998.       t1 = t2;
  999.     }
  1000.     }
  1001. }
  1002.  
  1003. /* Merge two sets of positions into a third.  The result is exactly as if
  1004.    the positions of both sets were inserted into an initially empty set. */
  1005. static void
  1006. merge(s1, s2, m)
  1007.      position_set *s1;
  1008.      position_set *s2;
  1009.      position_set *m;
  1010. {
  1011.   int i = 0, j = 0;
  1012.  
  1013.   m->nelem = 0;
  1014.   while (i < s1->nelem && j < s2->nelem)
  1015.     if (s1->elems[i].index > s2->elems[j].index)
  1016.       m->elems[m->nelem++] = s1->elems[i++];
  1017.     else if (s1->elems[i].index < s2->elems[j].index)
  1018.       m->elems[m->nelem++] = s2->elems[j++];
  1019.     else
  1020.       {
  1021.     m->elems[m->nelem] = s1->elems[i++];
  1022.     m->elems[m->nelem++].constraint |= s2->elems[j++].constraint;
  1023.       }
  1024.   while (i < s1->nelem)
  1025.     m->elems[m->nelem++] = s1->elems[i++];
  1026.   while (j < s2->nelem)
  1027.     m->elems[m->nelem++] = s2->elems[j++];
  1028. }
  1029.  
  1030. /* Delete a position from a set. */
  1031. static void
  1032. delete(p, s)
  1033.      position p;
  1034.      position_set *s;
  1035. {
  1036.   int i;
  1037.  
  1038.   for (i = 0; i < s->nelem; ++i)
  1039.     if (p.index == s->elems[i].index)
  1040.       break;
  1041.   if (i < s->nelem)
  1042.     for (--s->nelem; i < s->nelem; ++i)
  1043.       s->elems[i] = s->elems[i + 1];
  1044. }
  1045.  
  1046. /* Find the index of the state corresponding to the given position set with
  1047.    the given preceding context, or create a new state if there is no such
  1048.    state.  Newline and letter tell whether we got here on a newline or
  1049.    letter, respectively. */
  1050. static int
  1051. state_index(d, s, newline, letter)
  1052.      struct dfa *d;
  1053.      position_set *s;
  1054.      int newline;
  1055.      int letter;
  1056. {
  1057.   int hash = 0;
  1058.   int constraint;
  1059.   int i, j;
  1060.  
  1061.   newline = newline ? 1 : 0;
  1062.   letter = letter ? 1 : 0;
  1063.  
  1064.   for (i = 0; i < s->nelem; ++i)
  1065.     hash ^= s->elems[i].index + s->elems[i].constraint;
  1066.  
  1067.   /* Try to find a state that exactly matches the proposed one. */
  1068.   for (i = 0; i < d->sindex; ++i)
  1069.     {
  1070.       if (hash != d->states[i].hash || s->nelem != d->states[i].elems.nelem
  1071.       || newline != d->states[i].newline || letter != d->states[i].letter)
  1072.     continue;
  1073.       for (j = 0; j < s->nelem; ++j)
  1074.     if (s->elems[j].constraint
  1075.         != d->states[i].elems.elems[j].constraint
  1076.         || s->elems[j].index != d->states[i].elems.elems[j].index)
  1077.       break;
  1078.       if (j == s->nelem)
  1079.     return i;
  1080.     }
  1081.  
  1082.   /* We'll have to create a new state. */
  1083.   REALLOC_IF_NECESSARY(d->states, dfa_state, d->salloc, d->sindex);
  1084.   d->states[i].hash = hash;
  1085.   MALLOC(d->states[i].elems.elems, position, s->nelem);
  1086.   copy(s, &d->states[i].elems);
  1087.   d->states[i].newline = newline;
  1088.   d->states[i].letter = letter;
  1089.   d->states[i].backref = 0;
  1090.   d->states[i].constraint = 0;
  1091.   d->states[i].first_end = 0;
  1092.   for (j = 0; j < s->nelem; ++j)
  1093.     if (d->tokens[s->elems[j].index] < 0)
  1094.       {
  1095.     constraint = s->elems[j].constraint;
  1096.     if (SUCCEEDS_IN_CONTEXT(constraint, newline, 0, letter, 0)
  1097.         || SUCCEEDS_IN_CONTEXT(constraint, newline, 0, letter, 1)
  1098.         || SUCCEEDS_IN_CONTEXT(constraint, newline, 1, letter, 0)
  1099.         || SUCCEEDS_IN_CONTEXT(constraint, newline, 1, letter, 1))
  1100.       d->states[i].constraint |= constraint;
  1101.     if (! d->states[i].first_end)
  1102.       d->states[i].first_end = d->tokens[s->elems[j].index];
  1103.       }
  1104.     else if (d->tokens[s->elems[j].index] == BACKREF)
  1105.       {
  1106.     d->states[i].constraint = NO_CONSTRAINT;
  1107.     d->states[i].backref = 1;
  1108.       }
  1109.  
  1110.   ++d->sindex;
  1111.  
  1112.   return i;
  1113. }
  1114.  
  1115. /* Find the epsilon closure of a set of positions.  If any position of the set
  1116.    contains a symbol that matches the empty string in some context, replace
  1117.    that position with the elements of its follow labeled with an appropriate
  1118.    constraint.  Repeat exhaustively until no funny positions are left.
  1119.    S->elems must be large enough to hold the result. */
  1120. static void epsclosure _RE_ARGS((position_set *s, struct dfa *d));
  1121.  
  1122. static void
  1123. epsclosure(s, d)
  1124.      position_set *s;
  1125.      struct dfa *d;
  1126. {
  1127.   int i, j;
  1128.   int *visited;
  1129.   position p, old;
  1130.  
  1131.   MALLOC(visited, int, d->tindex);
  1132.   for (i = 0; i < d->tindex; ++i)
  1133.     visited[i] = 0;
  1134.  
  1135.   for (i = 0; i < s->nelem; ++i)
  1136.     if (d->tokens[s->elems[i].index] >= NOTCHAR
  1137.     && d->tokens[s->elems[i].index] != BACKREF
  1138.     && d->tokens[s->elems[i].index] < CSET)
  1139.       {
  1140.     old = s->elems[i];
  1141.     p.constraint = old.constraint;
  1142.     delete(s->elems[i], s);
  1143.     if (visited[old.index])
  1144.       {
  1145.         --i;
  1146.         continue;
  1147.       }
  1148.     visited[old.index] = 1;
  1149.     switch (d->tokens[old.index])
  1150.       {
  1151.       case BEGLINE:
  1152.         p.constraint &= BEGLINE_CONSTRAINT;
  1153.         break;
  1154.       case ENDLINE:
  1155.         p.constraint &= ENDLINE_CONSTRAINT;
  1156.         break;
  1157.       case BEGWORD:
  1158.         p.constraint &= BEGWORD_CONSTRAINT;
  1159.         break;
  1160.       case ENDWORD:
  1161.         p.constraint &= ENDWORD_CONSTRAINT;
  1162.         break;
  1163.       case LIMWORD:
  1164.         p.constraint &= LIMWORD_CONSTRAINT;
  1165.         break;
  1166.       case NOTLIMWORD:
  1167.         p.constraint &= NOTLIMWORD_CONSTRAINT;
  1168.         break;
  1169.       default:
  1170.         break;
  1171.       }
  1172.     for (j = 0; j < d->follows[old.index].nelem; ++j)
  1173.       {
  1174.         p.index = d->follows[old.index].elems[j].index;
  1175.         insert(p, s);
  1176.       }
  1177.     /* Force rescan to start at the beginning. */
  1178.     i = -1;
  1179.       }
  1180.  
  1181.   free(visited);
  1182. }
  1183.  
  1184. /* Perform bottom-up analysis on the parse tree, computing various functions.
  1185.    Note that at this point, we're pretending constructs like \< are real
  1186.    characters rather than constraints on what can follow them.
  1187.  
  1188.    Nullable:  A node is nullable if it is at the root of a regexp that can
  1189.    match the empty string.
  1190.    *  EMPTY leaves are nullable.
  1191.    * No other leaf is nullable.
  1192.    * A QMARK or STAR node is nullable.
  1193.    * A PLUS node is nullable if its argument is nullable.
  1194.    * A CAT node is nullable if both its arguments are nullable.
  1195.    * An OR node is nullable if either argument is nullable.
  1196.  
  1197.    Firstpos:  The firstpos of a node is the set of positions (nonempty leaves)
  1198.    that could correspond to the first character of a string matching the
  1199.    regexp rooted at the given node.
  1200.    * EMPTY leaves have empty firstpos.
  1201.    * The firstpos of a nonempty leaf is that leaf itself.
  1202.    * The firstpos of a QMARK, STAR, or PLUS node is the firstpos of its
  1203.      argument.
  1204.    * The firstpos of a CAT node is the firstpos of the left argument, union
  1205.      the firstpos of the right if the left argument is nullable.
  1206.    * The firstpos of an OR node is the union of firstpos of each argument.
  1207.  
  1208.    Lastpos:  The lastpos of a node is the set of positions that could
  1209.    correspond to the last character of a string matching the regexp at
  1210.    the given node.
  1211.    * EMPTY leaves have empty lastpos.
  1212.    * The lastpos of a nonempty leaf is that leaf itself.
  1213.    * The lastpos of a QMARK, STAR, or PLUS node is the lastpos of its
  1214.      argument.
  1215.    * The lastpos of a CAT node is the lastpos of its right argument, union
  1216.      the lastpos of the left if the right argument is nullable.
  1217.    * The lastpos of an OR node is the union of the lastpos of each argument.
  1218.  
  1219.    Follow:  The follow of a position is the set of positions that could
  1220.    correspond to the character following a character matching the node in
  1221.    a string matching the regexp.  At this point we consider special symbols
  1222.    that match the empty string in some context to be just normal characters.
  1223.    Later, if we find that a special symbol is in a follow set, we will
  1224.    replace it with the elements of its follow, labeled with an appropriate
  1225.    constraint.
  1226.    * Every node in the firstpos of the argument of a STAR or PLUS node is in
  1227.      the follow of every node in the lastpos.
  1228.    * Every node in the firstpos of the second argument of a CAT node is in
  1229.      the follow of every node in the lastpos of the first argument.
  1230.  
  1231.    Because of the postfix representation of the parse tree, the depth-first
  1232.    analysis is conveniently done by a linear scan with the aid of a stack.
  1233.    Sets are stored as arrays of the elements, obeying a stack-like allocation
  1234.    scheme; the number of elements in each set deeper in the stack can be
  1235.    used to determine the address of a particular set's array. */
  1236. void
  1237. dfaanalyze(d, searchflag)
  1238.      struct dfa *d;
  1239.      int searchflag;
  1240. {
  1241.   int *nullable;        /* Nullable stack. */
  1242.   int *nfirstpos;        /* Element count stack for firstpos sets. */
  1243.   position *firstpos;        /* Array where firstpos elements are stored. */
  1244.   int *nlastpos;        /* Element count stack for lastpos sets. */
  1245.   position *lastpos;        /* Array where lastpos elements are stored. */
  1246.   int *nalloc;            /* Sizes of arrays allocated to follow sets. */
  1247.   position_set tmp;        /* Temporary set for merging sets. */
  1248.   position_set merged;        /* Result of merging sets. */
  1249.   int wants_newline;        /* True if some position wants newline info. */
  1250.   int *o_nullable;
  1251.   int *o_nfirst, *o_nlast;
  1252.   position *o_firstpos, *o_lastpos;
  1253.   int i, j;
  1254.   position *pos;
  1255.  
  1256. #ifdef DEBUG
  1257.   fprintf(stderr, "dfaanalyze:\n");
  1258.   for (i = 0; i < d->tindex; ++i)
  1259.     {
  1260.       fprintf(stderr, " %d:", i);
  1261.       prtok(d->tokens[i]);
  1262.     }
  1263.   putc('\n', stderr);
  1264. #endif
  1265.  
  1266.   d->searchflag = searchflag;
  1267.  
  1268.   MALLOC(nullable, int, d->depth);
  1269.   o_nullable = nullable;
  1270.   MALLOC(nfirstpos, int, d->depth);
  1271.   o_nfirst = nfirstpos;
  1272.   MALLOC(firstpos, position, d->nleaves);
  1273.   o_firstpos = firstpos, firstpos += d->nleaves;
  1274.   MALLOC(nlastpos, int, d->depth);
  1275.   o_nlast = nlastpos;
  1276.   MALLOC(lastpos, position, d->nleaves);
  1277.   o_lastpos = lastpos, lastpos += d->nleaves;
  1278.   MALLOC(nalloc, int, d->tindex);
  1279.   for (i = 0; i < d->tindex; ++i)
  1280.     nalloc[i] = 0;
  1281.   MALLOC(merged.elems, position, d->nleaves);
  1282.  
  1283.   CALLOC(d->follows, position_set, d->tindex);
  1284.  
  1285.   for (i = 0; i < d->tindex; ++i)
  1286. #ifdef DEBUG
  1287.     {                /* Nonsyntactic #ifdef goo... */
  1288. #endif
  1289.     switch (d->tokens[i])
  1290.       {
  1291.       case EMPTY:
  1292.     /* The empty set is nullable. */
  1293.     *nullable++ = 1;
  1294.  
  1295.     /* The firstpos and lastpos of the empty leaf are both empty. */
  1296.     *nfirstpos++ = *nlastpos++ = 0;
  1297.     break;
  1298.  
  1299.       case STAR:
  1300.       case PLUS:
  1301.     /* Every element in the firstpos of the argument is in the follow
  1302.        of every element in the lastpos. */
  1303.     tmp.nelem = nfirstpos[-1];
  1304.     tmp.elems = firstpos;
  1305.     pos = lastpos;
  1306.     for (j = 0; j < nlastpos[-1]; ++j)
  1307.       {
  1308.         merge(&tmp, &d->follows[pos[j].index], &merged);
  1309.         REALLOC_IF_NECESSARY(d->follows[pos[j].index].elems, position,
  1310.                  nalloc[pos[j].index], merged.nelem - 1);
  1311.         copy(&merged, &d->follows[pos[j].index]);
  1312.       }
  1313.  
  1314.       case QMARK:
  1315.     /* A QMARK or STAR node is automatically nullable. */
  1316.     if (d->tokens[i] != PLUS)
  1317.       nullable[-1] = 1;
  1318.     break;
  1319.  
  1320.       case CAT:
  1321.     /* Every element in the firstpos of the second argument is in the
  1322.        follow of every element in the lastpos of the first argument. */
  1323.     tmp.nelem = nfirstpos[-1];
  1324.     tmp.elems = firstpos;
  1325.     pos = lastpos + nlastpos[-1];
  1326.     for (j = 0; j < nlastpos[-2]; ++j)
  1327.       {
  1328.         merge(&tmp, &d->follows[pos[j].index], &merged);
  1329.         REALLOC_IF_NECESSARY(d->follows[pos[j].index].elems, position,
  1330.                  nalloc[pos[j].index], merged.nelem - 1);
  1331.         copy(&merged, &d->follows[pos[j].index]);
  1332.       }
  1333.  
  1334.     /* The firstpos of a CAT node is the firstpos of the first argument,
  1335.        union that of the second argument if the first is nullable. */
  1336.     if (nullable[-2])
  1337.       nfirstpos[-2] += nfirstpos[-1];
  1338.     else
  1339.       firstpos += nfirstpos[-1];
  1340.     --nfirstpos;
  1341.  
  1342.     /* The lastpos of a CAT node is the lastpos of the second argument,
  1343.        union that of the first argument if the second is nullable. */
  1344.     if (nullable[-1])
  1345.       nlastpos[-2] += nlastpos[-1];
  1346.     else
  1347.       {
  1348.         pos = lastpos + nlastpos[-2];
  1349.         for (j = nlastpos[-1] - 1; j >= 0; --j)
  1350.           pos[j] = lastpos[j];
  1351.         lastpos += nlastpos[-2];
  1352.         nlastpos[-2] = nlastpos[-1];
  1353.       }
  1354.     --nlastpos;
  1355.  
  1356.     /* A CAT node is nullable if both arguments are nullable. */
  1357.     nullable[-2] = nullable[-1] && nullable[-2];
  1358.     --nullable;
  1359.     break;
  1360.  
  1361.       case OR:
  1362.       case ORTOP:
  1363.     /* The firstpos is the union of the firstpos of each argument. */
  1364.     nfirstpos[-2] += nfirstpos[-1];
  1365.     --nfirstpos;
  1366.  
  1367.     /* The lastpos is the union of the lastpos of each argument. */
  1368.     nlastpos[-2] += nlastpos[-1];
  1369.     --nlastpos;
  1370.  
  1371.     /* An OR node is nullable if either argument is nullable. */
  1372.     nullable[-2] = nullable[-1] || nullable[-2];
  1373.     --nullable;
  1374.     break;
  1375.  
  1376.       default:
  1377.     /* Anything else is a nonempty position.  (Note that special
  1378.        constructs like \< are treated as nonempty strings here;
  1379.        an "epsilon closure" effectively makes them nullable later.
  1380.        Backreferences have to get a real position so we can detect
  1381.        transitions on them later.  But they are nullable. */
  1382.     *nullable++ = d->tokens[i] == BACKREF;
  1383.  
  1384.     /* This position is in its own firstpos and lastpos. */
  1385.     *nfirstpos++ = *nlastpos++ = 1;
  1386.     --firstpos, --lastpos;
  1387.     firstpos->index = lastpos->index = i;
  1388.     firstpos->constraint = lastpos->constraint = NO_CONSTRAINT;
  1389.  
  1390.     /* Allocate the follow set for this position. */
  1391.     nalloc[i] = 1;
  1392.     MALLOC(d->follows[i].elems, position, nalloc[i]);
  1393.     break;
  1394.       }
  1395. #ifdef DEBUG
  1396.     /* ... balance the above nonsyntactic #ifdef goo... */
  1397.       fprintf(stderr, "node %d:", i);
  1398.       prtok(d->tokens[i]);
  1399.       putc('\n', stderr);
  1400.       fprintf(stderr, nullable[-1] ? " nullable: yes\n" : " nullable: no\n");
  1401.       fprintf(stderr, " firstpos:");
  1402.       for (j = nfirstpos[-1] - 1; j >= 0; --j)
  1403.     {
  1404.       fprintf(stderr, " %d:", firstpos[j].index);
  1405.       prtok(d->tokens[firstpos[j].index]);
  1406.     }
  1407.       fprintf(stderr, "\n lastpos:");
  1408.       for (j = nlastpos[-1] - 1; j >= 0; --j)
  1409.     {
  1410.       fprintf(stderr, " %d:", lastpos[j].index);
  1411.       prtok(d->tokens[lastpos[j].index]);
  1412.     }
  1413.       putc('\n', stderr);
  1414.     }
  1415. #endif
  1416.  
  1417.   /* For each follow set that is the follow set of a real position, replace
  1418.      it with its epsilon closure. */
  1419.   for (i = 0; i < d->tindex; ++i)
  1420.     if (d->tokens[i] < NOTCHAR || d->tokens[i] == BACKREF
  1421.     || d->tokens[i] >= CSET)
  1422.       {
  1423. #ifdef DEBUG
  1424.     fprintf(stderr, "follows(%d:", i);
  1425.     prtok(d->tokens[i]);
  1426.     fprintf(stderr, "):");
  1427.     for (j = d->follows[i].nelem - 1; j >= 0; --j)
  1428.       {
  1429.         fprintf(stderr, " %d:", d->follows[i].elems[j].index);
  1430.         prtok(d->tokens[d->follows[i].elems[j].index]);
  1431.       }
  1432.     putc('\n', stderr);
  1433. #endif
  1434.     copy(&d->follows[i], &merged);
  1435.     epsclosure(&merged, d);
  1436.     if (d->follows[i].nelem < merged.nelem)
  1437.       REALLOC(d->follows[i].elems, position, merged.nelem);
  1438.     copy(&merged, &d->follows[i]);
  1439.       }
  1440.  
  1441.   /* Get the epsilon closure of the firstpos of the regexp.  The result will
  1442.      be the set of positions of state 0. */
  1443.   merged.nelem = 0;
  1444.   for (i = 0; i < nfirstpos[-1]; ++i)
  1445.     insert(firstpos[i], &merged);
  1446.   epsclosure(&merged, d);
  1447.  
  1448.   /* Check if any of the positions of state 0 will want newline context. */
  1449.   wants_newline = 0;
  1450.   for (i = 0; i < merged.nelem; ++i)
  1451.     if (PREV_NEWLINE_DEPENDENT(merged.elems[i].constraint))
  1452.       wants_newline = 1;
  1453.  
  1454.   /* Build the initial state. */
  1455.   d->salloc = 1;
  1456.   d->sindex = 0;
  1457.   MALLOC(d->states, dfa_state, d->salloc);
  1458.   state_index(d, &merged, wants_newline, 0);
  1459.  
  1460.   free(o_nullable);
  1461.   free(o_nfirst);
  1462.   free(o_firstpos);
  1463.   free(o_nlast);
  1464.   free(o_lastpos);
  1465.   free(nalloc);
  1466.   free(merged.elems);
  1467. }
  1468.  
  1469. /* Find, for each character, the transition out of state s of d, and store
  1470.    it in the appropriate slot of trans.
  1471.  
  1472.    We divide the positions of s into groups (positions can appear in more
  1473.    than one group).  Each group is labeled with a set of characters that
  1474.    every position in the group matches (taking into account, if necessary,
  1475.    preceding context information of s).  For each group, find the union
  1476.    of the its elements' follows.  This set is the set of positions of the
  1477.    new state.  For each character in the group's label, set the transition
  1478.    on this character to be to a state corresponding to the set's positions,
  1479.    and its associated backward context information, if necessary.
  1480.  
  1481.    If we are building a searching matcher, we include the positions of state
  1482.    0 in every state.
  1483.  
  1484.    The collection of groups is constructed by building an equivalence-class
  1485.    partition of the positions of s.
  1486.  
  1487.    For each position, find the set of characters C that it matches.  Eliminate
  1488.    any characters from C that fail on grounds of backward context.
  1489.  
  1490.    Search through the groups, looking for a group whose label L has nonempty
  1491.    intersection with C.  If L - C is nonempty, create a new group labeled
  1492.    L - C and having the same positions as the current group, and set L to
  1493.    the intersection of L and C.  Insert the position in this group, set
  1494.    C = C - L, and resume scanning.
  1495.  
  1496.    If after comparing with every group there are characters remaining in C,
  1497.    create a new group labeled with the characters of C and insert this
  1498.    position in that group. */
  1499. void
  1500. dfastate(s, d, trans)
  1501.      int s;
  1502.      struct dfa *d;
  1503.      int trans[];
  1504. {
  1505.   position_set grps[NOTCHAR];    /* As many as will ever be needed. */
  1506.   charclass labels[NOTCHAR];    /* Labels corresponding to the groups. */
  1507.   int ngrps = 0;        /* Number of groups actually used. */
  1508.   position pos;            /* Current position being considered. */
  1509.   charclass matches;        /* Set of matching characters. */
  1510.   int matchesf;            /* True if matches is nonempty. */
  1511.   charclass intersect;        /* Intersection with some label set. */
  1512.   int intersectf;        /* True if intersect is nonempty. */
  1513.   charclass leftovers;        /* Stuff in the label that didn't match. */
  1514.   int leftoversf;        /* True if leftovers is nonempty. */
  1515.   static charclass letters;    /* Set of characters considered letters. */
  1516.   static charclass newline;    /* Set of characters that aren't newline. */
  1517.   position_set follows;        /* Union of the follows of some group. */
  1518.   position_set tmp;        /* Temporary space for merging sets. */
  1519.   int state;            /* New state. */
  1520.   int wants_newline;        /* New state wants to know newline context. */
  1521.   int state_newline;        /* New state on a newline transition. */
  1522.   int wants_letter;        /* New state wants to know letter context. */
  1523.   int state_letter;        /* New state on a letter transition. */
  1524.   static initialized;        /* Flag for static initialization. */
  1525.   int i, j, k;
  1526.  
  1527.   /* Initialize the set of letters, if necessary. */
  1528.   if (! initialized)
  1529.     {
  1530.       initialized = 1;
  1531.       for (i = 0; i < NOTCHAR; ++i)
  1532.     if (ISALNUM(i))
  1533.       setbit(i, letters);
  1534.       setbit('\n', newline);
  1535.     }
  1536.  
  1537.   zeroset(matches);
  1538.  
  1539.   for (i = 0; i < d->states[s].elems.nelem; ++i)
  1540.     {
  1541.       pos = d->states[s].elems.elems[i];
  1542.       if (d->tokens[pos.index] >= 0 && d->tokens[pos.index] < NOTCHAR)
  1543.     setbit(d->tokens[pos.index], matches);
  1544.       else if (d->tokens[pos.index] >= CSET)
  1545.     copyset(d->charclasses[d->tokens[pos.index] - CSET], matches);
  1546.       else
  1547.     continue;
  1548.  
  1549.       /* Some characters may need to be eliminated from matches because
  1550.      they fail in the current context. */
  1551.       if (pos.constraint != 0xFF)
  1552.     {
  1553.       if (! MATCHES_NEWLINE_CONTEXT(pos.constraint,
  1554.                      d->states[s].newline, 1))
  1555.         clrbit('\n', matches);
  1556.       if (! MATCHES_NEWLINE_CONTEXT(pos.constraint,
  1557.                      d->states[s].newline, 0))
  1558.         for (j = 0; j < CHARCLASS_INTS; ++j)
  1559.           matches[j] &= newline[j];
  1560.       if (! MATCHES_LETTER_CONTEXT(pos.constraint,
  1561.                     d->states[s].letter, 1))
  1562.         for (j = 0; j < CHARCLASS_INTS; ++j)
  1563.           matches[j] &= ~letters[j];
  1564.       if (! MATCHES_LETTER_CONTEXT(pos.constraint,
  1565.                     d->states[s].letter, 0))
  1566.         for (j = 0; j < CHARCLASS_INTS; ++j)
  1567.           matches[j] &= letters[j];
  1568.  
  1569.       /* If there are no characters left, there's no point in going on. */
  1570.       for (j = 0; j < CHARCLASS_INTS && !matches[j]; ++j)
  1571.         continue;
  1572.       if (j == CHARCLASS_INTS)
  1573.         continue;
  1574.     }
  1575.  
  1576.       for (j = 0; j < ngrps; ++j)
  1577.     {
  1578.       /* If matches contains a single character only, and the current
  1579.          group's label doesn't contain that character, go on to the
  1580.          next group. */
  1581.       if (d->tokens[pos.index] >= 0 && d->tokens[pos.index] < NOTCHAR
  1582.           && !tstbit(d->tokens[pos.index], labels[j]))
  1583.         continue;
  1584.  
  1585.       /* Check if this group's label has a nonempty intersection with
  1586.          matches. */
  1587.       intersectf = 0;
  1588.       for (k = 0; k < CHARCLASS_INTS; ++k)
  1589.         (intersect[k] = matches[k] & labels[j][k]) ? (intersectf = 1) : 0;
  1590.       if (! intersectf)
  1591.         continue;
  1592.  
  1593.       /* It does; now find the set differences both ways. */
  1594.       leftoversf = matchesf = 0;
  1595.       for (k = 0; k < CHARCLASS_INTS; ++k)
  1596.         {
  1597.           /* Even an optimizing compiler can't know this for sure. */
  1598.           int match = matches[k], label = labels[j][k];
  1599.  
  1600.           (leftovers[k] = ~match & label) ? (leftoversf = 1) : 0;
  1601.           (matches[k] = match & ~label) ? (matchesf = 1) : 0;
  1602.         }
  1603.  
  1604.       /* If there were leftovers, create a new group labeled with them. */
  1605.       if (leftoversf)
  1606.         {
  1607.           copyset(leftovers, labels[ngrps]);
  1608.           copyset(intersect, labels[j]);
  1609.           MALLOC(grps[ngrps].elems, position, d->nleaves);
  1610.           copy(&grps[j], &grps[ngrps]);
  1611.           ++ngrps;
  1612.         }
  1613.  
  1614.       /* Put the position in the current group.  Note that there is no
  1615.          reason to call insert() here. */
  1616.       grps[j].elems[grps[j].nelem++] = pos;
  1617.  
  1618.       /* If every character matching the current position has been
  1619.          accounted for, we're done. */
  1620.       if (! matchesf)
  1621.         break;
  1622.     }
  1623.  
  1624.       /* If we've passed the last group, and there are still characters
  1625.      unaccounted for, then we'll have to create a new group. */
  1626.       if (j == ngrps)
  1627.     {
  1628.       copyset(matches, labels[ngrps]);
  1629.       zeroset(matches);
  1630.       MALLOC(grps[ngrps].elems, position, d->nleaves);
  1631.       grps[ngrps].nelem = 1;
  1632.       grps[ngrps].elems[0] = pos;
  1633.       ++ngrps;
  1634.     }
  1635.     }
  1636.  
  1637.   MALLOC(follows.elems, position, d->nleaves);
  1638.   MALLOC(tmp.elems, position, d->nleaves);
  1639.  
  1640.   /* If we are a searching matcher, the default transition is to a state
  1641.      containing the positions of state 0, otherwise the default transition
  1642.      is to fail miserably. */
  1643.   if (d->searchflag)
  1644.     {
  1645.       wants_newline = 0;
  1646.       wants_letter = 0;
  1647.       for (i = 0; i < d->states[0].elems.nelem; ++i)
  1648.     {
  1649.       if (PREV_NEWLINE_DEPENDENT(d->states[0].elems.elems[i].constraint))
  1650.         wants_newline = 1;
  1651.       if (PREV_LETTER_DEPENDENT(d->states[0].elems.elems[i].constraint))
  1652.         wants_letter = 1;
  1653.     }
  1654.       copy(&d->states[0].elems, &follows);
  1655.       state = state_index(d, &follows, 0, 0);
  1656.       if (wants_newline)
  1657.     state_newline = state_index(d, &follows, 1, 0);
  1658.       else
  1659.     state_newline = state;
  1660.       if (wants_letter)
  1661.     state_letter = state_index(d, &follows, 0, 1);
  1662.       else
  1663.     state_letter = state;
  1664.       for (i = 0; i < NOTCHAR; ++i)
  1665.     if (i == '\n')
  1666.       trans[i] = state_newline;
  1667.     else if (ISALNUM(i))
  1668.       trans[i] = state_letter;
  1669.     else
  1670.       trans[i] = state;
  1671.     }
  1672.   else
  1673.     for (i = 0; i < NOTCHAR; ++i)
  1674.       trans[i] = -1;
  1675.  
  1676.   for (i = 0; i < ngrps; ++i)
  1677.     {
  1678.       follows.nelem = 0;
  1679.  
  1680.       /* Find the union of the follows of the positions of the group.
  1681.      This is a hideously inefficient loop.  Fix it someday. */
  1682.       for (j = 0; j < grps[i].nelem; ++j)
  1683.     for (k = 0; k < d->follows[grps[i].elems[j].index].nelem; ++k)
  1684.       insert(d->follows[grps[i].elems[j].index].elems[k], &follows);
  1685.  
  1686.       /* If we are building a searching matcher, throw in the positions
  1687.      of state 0 as well. */
  1688.       if (d->searchflag)
  1689.     for (j = 0; j < d->states[0].elems.nelem; ++j)
  1690.       insert(d->states[0].elems.elems[j], &follows);
  1691.  
  1692.       /* Find out if the new state will want any context information. */
  1693.       wants_newline = 0;
  1694.       if (tstbit('\n', labels[i]))
  1695.     for (j = 0; j < follows.nelem; ++j)
  1696.       if (PREV_NEWLINE_DEPENDENT(follows.elems[j].constraint))
  1697.         wants_newline = 1;
  1698.  
  1699.       wants_letter = 0;
  1700.       for (j = 0; j < CHARCLASS_INTS; ++j)
  1701.     if (labels[i][j] & letters[j])
  1702.       break;
  1703.       if (j < CHARCLASS_INTS)
  1704.     for (j = 0; j < follows.nelem; ++j)
  1705.       if (PREV_LETTER_DEPENDENT(follows.elems[j].constraint))
  1706.         wants_letter = 1;
  1707.  
  1708.       /* Find the state(s) corresponding to the union of the follows. */
  1709.       state = state_index(d, &follows, 0, 0);
  1710.       if (wants_newline)
  1711.     state_newline = state_index(d, &follows, 1, 0);
  1712.       else
  1713.     state_newline = state;
  1714.       if (wants_letter)
  1715.     state_letter = state_index(d, &follows, 0, 1);
  1716.       else
  1717.     state_letter = state;
  1718.  
  1719.       /* Set the transitions for each character in the current label. */
  1720.       for (j = 0; j < CHARCLASS_INTS; ++j)
  1721.     for (k = 0; k < INTBITS; ++k)
  1722.       if (labels[i][j] & 1 << k)
  1723.         {
  1724.           int c = j * INTBITS + k;
  1725.  
  1726.           if (c == '\n')
  1727.         trans[c] = state_newline;
  1728.           else if (ISALNUM(c))
  1729.         trans[c] = state_letter;
  1730.           else if (c < NOTCHAR)
  1731.         trans[c] = state;
  1732.         }
  1733.     }
  1734.  
  1735.   for (i = 0; i < ngrps; ++i)
  1736.     free(grps[i].elems);
  1737.   free(follows.elems);
  1738.   free(tmp.elems);
  1739. }
  1740.  
  1741. /* Some routines for manipulating a compiled dfa's transition tables.
  1742.    Each state may or may not have a transition table; if it does, and it
  1743.    is a non-accepting state, then d->trans[state] points to its table.
  1744.    If it is an accepting state then d->fails[state] points to its table.
  1745.    If it has no table at all, then d->trans[state] is NULL.
  1746.    TODO: Improve this comment, get rid of the unnecessary redundancy. */
  1747.  
  1748. static void
  1749. build_state(s, d)
  1750.      int s;
  1751.      struct dfa *d;
  1752. {
  1753.   int *trans;            /* The new transition table. */
  1754.   int i;
  1755.  
  1756.   /* Set an upper limit on the number of transition tables that will ever
  1757.      exist at once.  1024 is arbitrary.  The idea is that the frequently
  1758.      used transition tables will be quickly rebuilt, whereas the ones that
  1759.      were only needed once or twice will be cleared away. */
  1760.   if (d->trcount >= 1024)
  1761.     {
  1762.       for (i = 0; i < d->tralloc; ++i)
  1763.     if (d->trans[i])
  1764.       {
  1765.         free((ptr_t) d->trans[i]);
  1766.         d->trans[i] = NULL;
  1767.       }
  1768.     else if (d->fails[i])
  1769.       {
  1770.         free((ptr_t) d->fails[i]);
  1771.         d->fails[i] = NULL;
  1772.       }
  1773.       d->trcount = 0;
  1774.     }
  1775.  
  1776.   ++d->trcount;
  1777.  
  1778.   /* Set up the success bits for this state. */
  1779.   d->success[s] = 0;
  1780.   if (ACCEPTS_IN_CONTEXT(d->states[s].newline, 1, d->states[s].letter, 0,
  1781.       s, *d))
  1782.     d->success[s] |= 4;
  1783.   if (ACCEPTS_IN_CONTEXT(d->states[s].newline, 0, d->states[s].letter, 1,
  1784.       s, *d))
  1785.     d->success[s] |= 2;
  1786.   if (ACCEPTS_IN_CONTEXT(d->states[s].newline, 0, d->states[s].letter, 0,
  1787.       s, *d))
  1788.     d->success[s] |= 1;
  1789.  
  1790.   MALLOC(trans, int, NOTCHAR);
  1791.   dfastate(s, d, trans);
  1792.  
  1793.   /* Now go through the new transition table, and make sure that the trans
  1794.      and fail arrays are allocated large enough to hold a pointer for the
  1795.      largest state mentioned in the table. */
  1796.   for (i = 0; i < NOTCHAR; ++i)
  1797.     if (trans[i] >= d->tralloc)
  1798.       {
  1799.     int oldalloc = d->tralloc;
  1800.  
  1801.     while (trans[i] >= d->tralloc)
  1802.       d->tralloc *= 2;
  1803.     REALLOC(d->realtrans, int *, d->tralloc + 1);
  1804.     d->trans = d->realtrans + 1;
  1805.     REALLOC(d->fails, int *, d->tralloc);
  1806.     REALLOC(d->success, int, d->tralloc);
  1807.     REALLOC(d->newlines, int, d->tralloc);
  1808.     while (oldalloc < d->tralloc)
  1809.       {
  1810.         d->trans[oldalloc] = NULL;
  1811.         d->fails[oldalloc++] = NULL;
  1812.       }
  1813.       }
  1814.  
  1815.   /* Keep the newline transition in a special place so we can use it as
  1816.      a sentinel. */
  1817.   d->newlines[s] = trans['\n'];
  1818.   trans['\n'] = -1;
  1819.  
  1820.   if (ACCEPTING(s, *d))
  1821.     d->fails[s] = trans;
  1822.   else
  1823.     d->trans[s] = trans;
  1824. }
  1825.  
  1826. static void
  1827. build_state_zero(d)
  1828.      struct dfa *d;
  1829. {
  1830.   d->tralloc = 1;
  1831.   d->trcount = 0;
  1832.   CALLOC(d->realtrans, int *, d->tralloc + 1);
  1833.   d->trans = d->realtrans + 1;
  1834.   CALLOC(d->fails, int *, d->tralloc);
  1835.   MALLOC(d->success, int, d->tralloc);
  1836.   MALLOC(d->newlines, int, d->tralloc);
  1837.   build_state(0, d);
  1838. }
  1839.  
  1840. /* Search through a buffer looking for a match to the given struct dfa.
  1841.    Find the first occurrence of a string matching the regexp in the buffer,
  1842.    and the shortest possible version thereof.  Return a pointer to the first
  1843.    character after the match, or NULL if none is found.  Begin points to
  1844.    the beginning of the buffer, and end points to the first character after
  1845.    its end.  We store a newline in *end to act as a sentinel, so end had
  1846.    better point somewhere valid.  Newline is a flag indicating whether to
  1847.    allow newlines to be in the matching string.  If count is non-
  1848.    NULL it points to a place we're supposed to increment every time we
  1849.    see a newline.  Finally, if backref is non-NULL it points to a place
  1850.    where we're supposed to store a 1 if backreferencing happened and the
  1851.    match needs to be verified by a backtracking matcher.  Otherwise
  1852.    we store a 0 in *backref. */
  1853. char *
  1854. dfaexec(d, begin, end, newline, count, backref)
  1855.      struct dfa *d;
  1856.      char *begin;
  1857.      char *end;
  1858.      int newline;
  1859.      int *count;
  1860.      int *backref;
  1861. {
  1862.   register s, s1, tmp;        /* Current state. */
  1863.   register unsigned char *p;    /* Current input character. */
  1864.   register **trans, *t;        /* Copy of d->trans so it can be optimized
  1865.                    into a register. */
  1866.   static sbit[NOTCHAR];    /* Table for anding with d->success. */
  1867.   static sbit_init;
  1868.  
  1869.   if (! sbit_init)
  1870.     {
  1871.       int i;
  1872.  
  1873.       sbit_init = 1;
  1874.       for (i = 0; i < NOTCHAR; ++i)
  1875.     if (i == '\n')
  1876.       sbit[i] = 4;
  1877.     else if (ISALNUM(i))
  1878.       sbit[i] = 2;
  1879.     else
  1880.       sbit[i] = 1;
  1881.     }
  1882.  
  1883.   if (! d->tralloc)
  1884.     build_state_zero(d);
  1885.  
  1886.   s = s1 = 0;
  1887.   p = (unsigned char *) begin;
  1888.   trans = d->trans;
  1889.   *end = '\n';
  1890.  
  1891.   for (;;)
  1892.     {
  1893.       /* The dreaded inner loop. */
  1894.       if ((t = trans[s]) != 0)
  1895.     do
  1896.       {
  1897.         s1 = t[*p++];
  1898.         if (! (t = trans[s1]))
  1899.           goto last_was_s;
  1900.         s = t[*p++];
  1901.       }
  1902.         while ((t = trans[s]) != 0);
  1903.       goto last_was_s1;
  1904.     last_was_s:
  1905.       tmp = s, s = s1, s1 = tmp;
  1906.     last_was_s1:
  1907.  
  1908.       if (s >= 0 && p <= (unsigned char *) end && d->fails[s])
  1909.     {
  1910.       if (d->success[s] & sbit[*p])
  1911.         {
  1912.           if (backref)
  1913.         if (d->states[s].backref)
  1914.           *backref = 1;
  1915.         else
  1916.           *backref = 0;
  1917.           return (char *) p;
  1918.         }
  1919.  
  1920.       s1 = s;
  1921.       s = d->fails[s][*p++];
  1922.       continue;
  1923.     }
  1924.  
  1925.       /* If the previous character was a newline, count it. */
  1926.       if (count && (char *) p <= end && p[-1] == '\n')
  1927.     ++*count;
  1928.  
  1929.       /* Check if we've run off the end of the buffer. */
  1930.       if ((char *) p > end)
  1931.     return NULL;
  1932.  
  1933.       if (s >= 0)
  1934.     {
  1935.       build_state(s, d);
  1936.       trans = d->trans;
  1937.       continue;
  1938.     }
  1939.  
  1940.       if (p[-1] == '\n' && newline)
  1941.     {
  1942.       s = d->newlines[s1];
  1943.       continue;
  1944.     }
  1945.  
  1946.       s = 0;
  1947.     }
  1948. }
  1949.  
  1950. /* Initialize the components of a dfa that the other routines don't
  1951.    initialize for themselves. */
  1952. void
  1953. dfainit(d)
  1954.      struct dfa *d;
  1955. {
  1956.   d->calloc = 1;
  1957.   MALLOC(d->charclasses, charclass, d->calloc);
  1958.   d->cindex = 0;
  1959.  
  1960.   d->talloc = 1;
  1961.   MALLOC(d->tokens, token, d->talloc);
  1962.   d->tindex = d->depth = d->nleaves = d->nregexps = 0;
  1963.  
  1964.   d->searchflag = 0;
  1965.   d->tralloc = 0;
  1966.  
  1967.   d->musts = 0;
  1968. }
  1969.  
  1970. /* Parse and analyze a single string of the given length. */
  1971. void
  1972. dfacomp(s, len, d, searchflag)
  1973.      char *s;
  1974.      size_t len;
  1975.      struct dfa *d;
  1976.      int searchflag;
  1977. {
  1978.   if (case_fold)    /* dummy folding in service of dfamust() */
  1979.     {
  1980.       char *lcopy;
  1981.       int i;
  1982.  
  1983.       lcopy = malloc(len);
  1984.       if (!lcopy)
  1985.     dfaerror("out of memory");
  1986.       
  1987.       /* This is a kludge. */
  1988.       case_fold = 0;
  1989.       for (i = 0; i < len; ++i)
  1990.     if (ISUPPER(s[i]))
  1991.       lcopy[i] = tolower(s[i]);
  1992.     else
  1993.       lcopy[i] = s[i];
  1994.  
  1995.       dfainit(d);
  1996.       dfaparse(lcopy, len, d);
  1997.       free(lcopy);
  1998.       dfamust(d);
  1999.       d->cindex = d->tindex = d->depth = d->nleaves = d->nregexps = 0;
  2000.       case_fold = 1;
  2001.       dfaparse(s, len, d);
  2002.       dfaanalyze(d, searchflag);
  2003.     }
  2004.   else
  2005.     {
  2006.         dfainit(d);
  2007.         dfaparse(s, len, d);
  2008.     dfamust(d);
  2009.         dfaanalyze(d, searchflag);
  2010.     }
  2011. }
  2012.  
  2013. /* Free the storage held by the components of a dfa. */
  2014. void
  2015. dfafree(d)
  2016.      struct dfa *d;
  2017. {
  2018.   int i;
  2019.   struct dfamust *dm, *ndm;
  2020.  
  2021.   free((ptr_t) d->charclasses);
  2022.   free((ptr_t) d->tokens);
  2023.   for (i = 0; i < d->sindex; ++i)
  2024.     free((ptr_t) d->states[i].elems.elems);
  2025.   free((ptr_t) d->states);
  2026.   for (i = 0; i < d->tindex; ++i)
  2027.     if (d->follows[i].elems)
  2028.       free((ptr_t) d->follows[i].elems);
  2029.   free((ptr_t) d->follows);
  2030.   for (i = 0; i < d->tralloc; ++i)
  2031.     if (d->trans[i])
  2032.       free((ptr_t) d->trans[i]);
  2033.     else if (d->fails[i])
  2034.       free((ptr_t) d->fails[i]);
  2035.   if (d->realtrans) free((ptr_t) d->realtrans);
  2036.   if (d->fails) free((ptr_t) d->fails);
  2037.   if (d->newlines) free((ptr_t) d->newlines);
  2038.   if (d->success) free((ptr_t) d->success);
  2039.   for (dm = d->musts; dm; dm = ndm)
  2040.     {
  2041.       ndm = dm->next;
  2042.       free(dm->must);
  2043.       free((ptr_t) dm);
  2044.     }
  2045. }
  2046.  
  2047. /* Having found the postfix representation of the regular expression,
  2048.    try to find a long sequence of characters that must appear in any line
  2049.    containing the r.e.
  2050.    Finding a "longest" sequence is beyond the scope here;
  2051.    we take an easy way out and hope for the best.
  2052.    (Take "(ab|a)b"--please.)
  2053.  
  2054.    We do a bottom-up calculation of sequences of characters that must appear
  2055.    in matches of r.e.'s represented by trees rooted at the nodes of the postfix
  2056.    representation:
  2057.     sequences that must appear at the left of the match ("left")
  2058.     sequences that must appear at the right of the match ("right")
  2059.     lists of sequences that must appear somewhere in the match ("in")
  2060.     sequences that must constitute the match ("is")
  2061.  
  2062.    When we get to the root of the tree, we use one of the longest of its
  2063.    calculated "in" sequences as our answer.  The sequence we find is returned in
  2064.    d->must (where "d" is the single argument passed to "dfamust");
  2065.    the length of the sequence is returned in d->mustn.
  2066.  
  2067.    The sequences calculated for the various types of node (in pseudo ANSI c)
  2068.    are shown below.  "p" is the operand of unary operators (and the left-hand
  2069.    operand of binary operators); "q" is the right-hand operand of binary
  2070.    operators.
  2071.  
  2072.    "ZERO" means "a zero-length sequence" below.
  2073.  
  2074.     Type    left        right        is        in
  2075.     ----    ----        -----        --        --
  2076.     char c    # c        # c        # c        # c
  2077.     
  2078.     CSET    ZERO        ZERO        ZERO        ZERO
  2079.     
  2080.     STAR    ZERO        ZERO        ZERO        ZERO
  2081.  
  2082.     QMARK    ZERO        ZERO        ZERO        ZERO
  2083.  
  2084.     PLUS    p->left        p->right    ZERO        p->in
  2085.  
  2086.     CAT    (p->is==ZERO)?    (q->is==ZERO)?    (p->is!=ZERO &&    p->in plus
  2087.         p->left :    q->right :    q->is!=ZERO) ?    q->in plus
  2088.         p->is##q->left    p->right##q->is    p->is##q->is :    p->right##q->left
  2089.                         ZERO
  2090.                     
  2091.     OR    longest common    longest common    (do p->is and    substrings common to
  2092.         leading        trailing    q->is have same    p->in and q->in
  2093.         (sub)sequence    (sub)sequence    length and    
  2094.         of p->left    of p->right    content) ?    
  2095.         and q->left    and q->right    p->is : NULL    
  2096.  
  2097.    If there's anything else we recognize in the tree, all four sequences get set
  2098.    to zero-length sequences.  If there's something we don't recognize in the tree,
  2099.    we just return a zero-length sequence.
  2100.  
  2101.    Break ties in favor of infrequent letters (choosing 'zzz' in preference to
  2102.    'aaa')?
  2103.  
  2104.    And. . .is it here or someplace that we might ponder "optimizations" such as
  2105.     egrep 'psi|epsilon'    ->    egrep 'psi'
  2106.     egrep 'pepsi|epsilon'    ->    egrep 'epsi'
  2107.                     (Yes, we now find "epsi" as a "string
  2108.                     that must occur", but we might also
  2109.                     simplify the *entire* r.e. being sought)
  2110.     grep '[c]'        ->    grep 'c'
  2111.     grep '(ab|a)b'        ->    grep 'ab'
  2112.     grep 'ab*'        ->    grep 'a'
  2113.     grep 'a*b'        ->    grep 'b'
  2114.  
  2115.    There are several issues:
  2116.  
  2117.    Is optimization easy (enough)?
  2118.  
  2119.    Does optimization actually accomplish anything,
  2120.    or is the automaton you get from "psi|epsilon" (for example)
  2121.    the same as the one you get from "psi" (for example)?
  2122.   
  2123.    Are optimizable r.e.'s likely to be used in real-life situations
  2124.    (something like 'ab*' is probably unlikely; something like is
  2125.    'psi|epsilon' is likelier)? */
  2126.  
  2127. static char *
  2128. icatalloc(old, new)
  2129.      char *old;
  2130.      char *new;
  2131. {
  2132.   char *result;
  2133.   size_t oldsize, newsize;
  2134.  
  2135.   newsize = (new == NULL) ? 0 : strlen(new);
  2136.   if (old == NULL)
  2137.     oldsize = 0;
  2138.   else if (newsize == 0)
  2139.     return old;
  2140.   else    oldsize = strlen(old);
  2141.   if (old == NULL)
  2142.     result = (char *) malloc(newsize + 1);
  2143.   else
  2144.     result = (char *) realloc((void *) old, oldsize + newsize + 1);
  2145.   if (result != NULL && new != NULL)
  2146.     (void) strcpy(result + oldsize, new);
  2147.   return result;
  2148. }
  2149.  
  2150. static char *
  2151. icpyalloc(string)
  2152.      char *string;
  2153. {
  2154.   return icatalloc((char *) NULL, string);
  2155. }
  2156.  
  2157. static char *
  2158. istrstr(lookin, lookfor)
  2159.      char *lookin;
  2160.      char *lookfor;
  2161. {
  2162.   char *cp;
  2163.   size_t len;
  2164.  
  2165.   len = strlen(lookfor);
  2166.   for (cp = lookin; *cp != '\0'; ++cp)
  2167.     if (strncmp(cp, lookfor, len) == 0)
  2168.       return cp;
  2169.   return NULL;
  2170. }
  2171.  
  2172. static void
  2173. ifree(cp)
  2174.      char *cp;
  2175. {
  2176.   if (cp != NULL)
  2177.     free(cp);
  2178. }
  2179.  
  2180. static void
  2181. freelist(cpp)
  2182.      char **cpp;
  2183. {
  2184.   int i;
  2185.  
  2186.   if (cpp == NULL)
  2187.     return;
  2188.   for (i = 0; cpp[i] != NULL; ++i)
  2189.     {
  2190.       free(cpp[i]);
  2191.       cpp[i] = NULL;
  2192.     }
  2193. }
  2194.  
  2195. static char **
  2196. enlist(cpp, new, len)
  2197.      char **cpp;
  2198.      char *new;
  2199.      size_t len;
  2200. {
  2201.   int i, j;
  2202.  
  2203.   if (cpp == NULL)
  2204.     return NULL;
  2205.   if ((new = icpyalloc(new)) == NULL)
  2206.     {
  2207.       freelist(cpp);
  2208.       return NULL;
  2209.     }
  2210.   new[len] = '\0';
  2211.   /* Is there already something in the list that's new (or longer)? */
  2212.   for (i = 0; cpp[i] != NULL; ++i)
  2213.     if (istrstr(cpp[i], new) != NULL)
  2214.       {
  2215.     free(new);
  2216.     return cpp;
  2217.       }
  2218.   /* Eliminate any obsoleted strings. */
  2219.   j = 0;
  2220.   while (cpp[j] != NULL)
  2221.     if (istrstr(new, cpp[j]) == NULL)
  2222.       ++j;
  2223.     else
  2224.       {
  2225.     free(cpp[j]);
  2226.     if (--i == j)
  2227.       break;
  2228.     cpp[j] = cpp[i];
  2229.     cpp[i] = NULL;
  2230.       }
  2231.   /* Add the new string. */
  2232.   cpp = (char **) realloc((char *) cpp, (i + 2) * sizeof *cpp);
  2233.   if (cpp == NULL)
  2234.     return NULL;
  2235.   cpp[i] = new;
  2236.   cpp[i + 1] = NULL;
  2237.   return cpp;
  2238. }
  2239.  
  2240. /* Given pointers to two strings, return a pointer to an allocated
  2241.    list of their distinct common substrings. Return NULL if something
  2242.    seems wild. */
  2243. static char **
  2244. comsubs(left, right)
  2245.      char *left;
  2246.      char *right;
  2247. {
  2248.   char **cpp;
  2249.   char *lcp;
  2250.   char *rcp;
  2251.   size_t i, len;
  2252.  
  2253.   if (left == NULL || right == NULL)
  2254.     return NULL;
  2255.   cpp = (char **) malloc(sizeof *cpp);
  2256.   if (cpp == NULL)
  2257.     return NULL;
  2258.   cpp[0] = NULL;
  2259.   for (lcp = left; *lcp != '\0'; ++lcp)
  2260.     {
  2261.       len = 0;
  2262.       rcp = index(right, *lcp);
  2263.       while (rcp != NULL)
  2264.     {
  2265.       for (i = 1; lcp[i] != '\0' && lcp[i] == rcp[i]; ++i)
  2266.         continue;
  2267.       if (i > len)
  2268.         len = i;
  2269.       rcp = index(rcp + 1, *lcp);
  2270.     }
  2271.       if (len == 0)
  2272.     continue;
  2273.       if ((cpp = enlist(cpp, lcp, len)) == NULL)
  2274.     break;
  2275.     }
  2276.   return cpp;
  2277. }
  2278.  
  2279. static char **
  2280. addlists(old, new)
  2281. char **old;
  2282. char **new;
  2283. {
  2284.   int i;
  2285.  
  2286.   if (old == NULL || new == NULL)
  2287.     return NULL;
  2288.   for (i = 0; new[i] != NULL; ++i)
  2289.     {
  2290.       old = enlist(old, new[i], strlen(new[i]));
  2291.       if (old == NULL)
  2292.     break;
  2293.     }
  2294.   return old;
  2295. }
  2296.  
  2297. /* Given two lists of substrings, return a new list giving substrings
  2298.    common to both. */
  2299. static char **
  2300. inboth(left, right)
  2301.      char **left;
  2302.      char **right;
  2303. {
  2304.   char **both;
  2305.   char **temp;
  2306.   int lnum, rnum;
  2307.  
  2308.   if (left == NULL || right == NULL)
  2309.     return NULL;
  2310.   both = (char **) malloc(sizeof *both);
  2311.   if (both == NULL)
  2312.     return NULL;
  2313.   both[0] = NULL;
  2314.   for (lnum = 0; left[lnum] != NULL; ++lnum)
  2315.     {
  2316.       for (rnum = 0; right[rnum] != NULL; ++rnum)
  2317.     {
  2318.       temp = comsubs(left[lnum], right[rnum]);
  2319.       if (temp == NULL)
  2320.         {
  2321.           freelist(both);
  2322.           return NULL;
  2323.         }
  2324.       both = addlists(both, temp);
  2325.       freelist(temp);
  2326.       if (both == NULL)
  2327.         return NULL;
  2328.     }
  2329.     }
  2330.   return both;
  2331. }
  2332.  
  2333. typedef struct
  2334. {
  2335.   char **in;
  2336.   char *left;
  2337.   char *right;
  2338.   char *is;
  2339. } must;
  2340.  
  2341. static void
  2342. resetmust(mp)
  2343. must *mp;
  2344. {
  2345.   mp->left[0] = mp->right[0] = mp->is[0] = '\0';
  2346.   freelist(mp->in);
  2347. }
  2348.  
  2349. static void
  2350. dfamust(dfa)
  2351. struct dfa *dfa;
  2352. {
  2353.   must *musts;
  2354.   must *mp;
  2355.   char *result;
  2356.   int ri;
  2357.   int i;
  2358.   int exact;
  2359.   token t;
  2360.   static must must0;
  2361.   struct dfamust *dm;
  2362.   static char empty_string[] = "";
  2363.  
  2364.   result = empty_string;
  2365.   exact = 0;
  2366.   musts = (must *) malloc((dfa->tindex + 1) * sizeof *musts);
  2367.   if (musts == NULL)
  2368.     return;
  2369.   mp = musts;
  2370.   for (i = 0; i <= dfa->tindex; ++i)
  2371.     mp[i] = must0;
  2372.   for (i = 0; i <= dfa->tindex; ++i)
  2373.     {
  2374.       mp[i].in = (char **) malloc(sizeof *mp[i].in);
  2375.       mp[i].left = malloc(2);
  2376.       mp[i].right = malloc(2);
  2377.       mp[i].is = malloc(2);
  2378.       if (mp[i].in == NULL || mp[i].left == NULL ||
  2379.       mp[i].right == NULL || mp[i].is == NULL)
  2380.     goto done;
  2381.       mp[i].left[0] = mp[i].right[0] = mp[i].is[0] = '\0';
  2382.       mp[i].in[0] = NULL;
  2383.     }
  2384. #ifdef DEBUG
  2385.   fprintf(stderr, "dfamust:\n");
  2386.   for (i = 0; i < dfa->tindex; ++i)
  2387.     {
  2388.       fprintf(stderr, " %d:", i);
  2389.       prtok(dfa->tokens[i]);
  2390.     }
  2391.   putc('\n', stderr);
  2392. #endif
  2393.   for (ri = 0; ri < dfa->tindex; ++ri)
  2394.     {
  2395.       switch (t = dfa->tokens[ri])
  2396.     {
  2397.     case LPAREN:
  2398.     case RPAREN:
  2399.       goto done;        /* "cannot happen" */
  2400.     case EMPTY:
  2401.     case BEGLINE:
  2402.     case ENDLINE:
  2403.     case BEGWORD:
  2404.     case ENDWORD:
  2405.     case LIMWORD:
  2406.     case NOTLIMWORD:
  2407.     case BACKREF:
  2408.       resetmust(mp);
  2409.       break;
  2410.     case STAR:
  2411.     case QMARK:
  2412.       if (mp <= musts)
  2413.         goto done;        /* "cannot happen" */
  2414.       --mp;
  2415.       resetmust(mp);
  2416.       break;
  2417.     case OR:
  2418.     case ORTOP:
  2419.       if (mp < &musts[2])
  2420.         goto done;        /* "cannot happen" */
  2421.       {
  2422.         char **new;
  2423.         must *lmp;
  2424.         must *rmp;
  2425.         int j, ln, rn, n;
  2426.  
  2427.         rmp = --mp;
  2428.         lmp = --mp;
  2429.         /* Guaranteed to be.  Unlikely, but. . . */
  2430.         if (strcmp(lmp->is, rmp->is) != 0)
  2431.           lmp->is[0] = '\0';
  2432.         /* Left side--easy */
  2433.         i = 0;
  2434.         while (lmp->left[i] != '\0' && lmp->left[i] == rmp->left[i])
  2435.           ++i;
  2436.         lmp->left[i] = '\0';
  2437.         /* Right side */
  2438.         ln = strlen(lmp->right);
  2439.         rn = strlen(rmp->right);
  2440.         n = ln;
  2441.         if (n > rn)
  2442.           n = rn;
  2443.         for (i = 0; i < n; ++i)
  2444.           if (lmp->right[ln - i - 1] != rmp->right[rn - i - 1])
  2445.         break;
  2446.         for (j = 0; j < i; ++j)
  2447.           lmp->right[j] = lmp->right[(ln - i) + j];
  2448.         lmp->right[j] = '\0';
  2449.         new = inboth(lmp->in, rmp->in);
  2450.         if (new == NULL)
  2451.           goto done;
  2452.         freelist(lmp->in);
  2453.         free((char *) lmp->in);
  2454.         lmp->in = new;
  2455.       }
  2456.       break;
  2457.     case PLUS:
  2458.       if (mp <= musts)
  2459.         goto done;        /* "cannot happen" */
  2460.       --mp;
  2461.       mp->is[0] = '\0';
  2462.       break;
  2463.     case END:
  2464.       if (mp != &musts[1])
  2465.         goto done;        /* "cannot happen" */
  2466.       for (i = 0; musts[0].in[i] != NULL; ++i)
  2467.         if (strlen(musts[0].in[i]) > strlen(result))
  2468.           result = musts[0].in[i];
  2469.       if (strcmp(result, musts[0].is) == 0)
  2470.         exact = 1;
  2471.       goto done;
  2472.     case CAT:
  2473.       if (mp < &musts[2])
  2474.         goto done;        /* "cannot happen" */
  2475.       {
  2476.         must *lmp;
  2477.         must *rmp;
  2478.  
  2479.         rmp = --mp;
  2480.         lmp = --mp;
  2481.         /* In.  Everything in left, plus everything in
  2482.            right, plus catenation of
  2483.            left's right and right's left. */
  2484.         lmp->in = addlists(lmp->in, rmp->in);
  2485.         if (lmp->in == NULL)
  2486.           goto done;
  2487.         if (lmp->right[0] != '\0' &&
  2488.         rmp->left[0] != '\0')
  2489.           {
  2490.         char *tp;
  2491.  
  2492.         tp = icpyalloc(lmp->right);
  2493.         if (tp == NULL)
  2494.           goto done;
  2495.         tp = icatalloc(tp, rmp->left);
  2496.         if (tp == NULL)
  2497.           goto done;
  2498.         lmp->in = enlist(lmp->in, tp,
  2499.                  strlen(tp));
  2500.         free(tp);
  2501.         if (lmp->in == NULL)
  2502.           goto done;
  2503.           }
  2504.         /* Left-hand */
  2505.         if (lmp->is[0] != '\0')
  2506.           {
  2507.         lmp->left = icatalloc(lmp->left,
  2508.                       rmp->left);
  2509.         if (lmp->left == NULL)
  2510.           goto done;
  2511.           }
  2512.         /* Right-hand */
  2513.         if (rmp->is[0] == '\0')
  2514.           lmp->right[0] = '\0';
  2515.         lmp->right = icatalloc(lmp->right, rmp->right);
  2516.         if (lmp->right == NULL)
  2517.           goto done;
  2518.         /* Guaranteed to be */
  2519.         if (lmp->is[0] != '\0' && rmp->is[0] != '\0')
  2520.           {
  2521.         lmp->is = icatalloc(lmp->is, rmp->is);
  2522.         if (lmp->is == NULL)
  2523.           goto done;
  2524.           }
  2525.         else
  2526.           lmp->is[0] = '\0';
  2527.       }
  2528.       break;
  2529.     default:
  2530.       if (t < END)
  2531.         {
  2532.           /* "cannot happen" */
  2533.           goto done;
  2534.         }
  2535.       else if (t == '\0')
  2536.         {
  2537.           /* not on *my* shift */
  2538.           goto done;
  2539.         }
  2540.       else if (t >= CSET)
  2541.         {
  2542.           /* easy enough */
  2543.           resetmust(mp);
  2544.         }
  2545.       else
  2546.         {
  2547.           /* plain character */
  2548.           resetmust(mp);
  2549.           mp->is[0] = mp->left[0] = mp->right[0] = t;
  2550.           mp->is[1] = mp->left[1] = mp->right[1] = '\0';
  2551.           mp->in = enlist(mp->in, mp->is, (size_t)1);
  2552.           if (mp->in == NULL)
  2553.         goto done;
  2554.         }
  2555.       break;
  2556.     }
  2557. #ifdef DEBUG
  2558.       fprintf(stderr, " node: %d:", ri);
  2559.       prtok(dfa->tokens[ri]);
  2560.       fprintf(stderr, "\n  in:");
  2561.       for (i = 0; mp->in[i]; ++i)
  2562.     fprintf(stderr, " \"%s\"", mp->in[i]);
  2563.       fprintf(stderr, "\n  is: \"%s\"\n", mp->is);
  2564.       fprintf(stderr, "  left: \"%s\"\n", mp->left);
  2565.       fprintf(stderr, "  right: \"%s\"\n", mp->right);
  2566. #endif
  2567.       ++mp;
  2568.     }
  2569.  done:
  2570.   if (strlen(result))
  2571.     {
  2572.       dm = (struct dfamust *) malloc(sizeof (struct dfamust));
  2573.       dm->exact = exact;
  2574.       dm->must = malloc(strlen(result) + 1);
  2575.       strcpy(dm->must, result);
  2576.       dm->next = dfa->musts;
  2577.       dfa->musts = dm;
  2578.     }
  2579.   mp = musts;
  2580.   for (i = 0; i <= dfa->tindex; ++i)
  2581.     {
  2582.       freelist(mp[i].in);
  2583.       ifree((char *) mp[i].in);
  2584.       ifree(mp[i].left);
  2585.       ifree(mp[i].right);
  2586.       ifree(mp[i].is);
  2587.     }
  2588.   free((char *) mp);
  2589. }
  2590.