regex.cxx
上传用户:hzhsqp
上传日期:2007-01-06
资源大小:1600k
文件大小:164k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /* Extended regular expression matching and search library,
  2.    version 0.12.
  3.    (Implements POSIX draft P10003.2/D11.2, except for
  4.    internationalization features.)
  5.    Copyright (C) 1993 Free Software Foundation, Inc.
  6.    This program is free software; you can redistribute it and/or modify
  7.    it under the terms of the GNU General Public License as published by
  8.    the Free Software Foundation; either version 2, or (at your option)
  9.    any later version.
  10.    This program is distributed in the hope that it will be useful,
  11.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.    GNU General Public License for more details.
  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. /* AIX requires this to be the first thing in the file. */
  18. #if defined (_AIX) && !defined (REGEX_MALLOC)
  19.   #pragma alloca
  20. #endif
  21. /* Technically malloc.h is depricated in most unixes and the malloc
  22.    prototypes moved to stdlib.h. Continue to use malloc.h except for
  23.    Mac OS X*/
  24. #if !defined(P_MACOSX)
  25. #include <malloc.h>
  26. #endif
  27. #define alloca _alloca
  28. #define _GNU_SOURCE
  29. /* We need this for `regex.h', and perhaps for the Emacs include files.  */
  30. #include <sys/types.h>
  31. #ifdef HAVE_CONFIG_H
  32. #include "config.h"
  33. #endif
  34. /* The `emacs' switch turns on certain matching commands
  35.    that make sense only in Emacs. */
  36. #ifdef emacs
  37. #include "lisp.h"
  38. #include "buffer.h"
  39. #include "syntax.h"
  40. /* Emacs uses `NULL' as a predicate.  */
  41. #undef NULL
  42. #else  /* not emacs */
  43. /* We used to test for `BSTRING' here, but only GCC and Emacs define
  44.    `BSTRING', as far as I know, and neither of them use this code.  */
  45. #if HAVE_STRING_H || STDC_HEADERS
  46. #include <string.h>
  47. #ifndef bcmp
  48. #define bcmp(s1, s2, n) memcmp ((s1), (s2), (n))
  49. #endif
  50. #ifndef bcopy
  51. #define bcopy(s, d, n) memcpy ((d), (s), (n))
  52. #endif
  53. #ifndef bzero
  54. #define bzero(s, n) memset ((s), 0, (n))
  55. #endif
  56. #else
  57. #include <strings.h>
  58. #endif
  59. #ifdef STDC_HEADERS
  60. #include <stdlib.h>
  61. #else
  62. char *malloc ();
  63. char *realloc ();
  64. #endif
  65. #ifdef __NUCLEUS_PLUS__
  66. #define REGEX_MALLOC malloc
  67. #endif
  68. /* Define the syntax stuff for <, >, etc.  */
  69. /* This must be nonzero for the wordchar and notwordchar pattern
  70.    commands in re_match_2.  */
  71. #ifndef Sword 
  72. #define Sword 1
  73. #endif
  74. #ifdef SYNTAX_TABLE
  75. extern char *re_syntax_table;
  76. #else /* not SYNTAX_TABLE */
  77. /* How many characters in the character set.  */
  78. #define CHAR_SET_SIZE 256
  79. static char re_syntax_table[CHAR_SET_SIZE];
  80. static void
  81. init_syntax_once ()
  82. {
  83.    register int c;
  84.    static int done = 0;
  85.    if (done)
  86.      return;
  87.    bzero (re_syntax_table, sizeof re_syntax_table);
  88.    for (c = 'a'; c <= 'z'; c++)
  89.      re_syntax_table[c] = Sword;
  90.    for (c = 'A'; c <= 'Z'; c++)
  91.      re_syntax_table[c] = Sword;
  92.    for (c = '0'; c <= '9'; c++)
  93.      re_syntax_table[c] = Sword;
  94.    re_syntax_table['_'] = Sword;
  95.    done = 1;
  96. }
  97. #endif /* not SYNTAX_TABLE */
  98. #define SYNTAX(c) re_syntax_table[c]
  99. #endif /* not emacs */
  100. /* Get the interface, including the syntax bits.  */
  101. #include "regex.h"
  102. /* isalpha etc. are used for the character classes.  */
  103. #include <ctype.h>
  104. #ifndef isascii
  105. #define isascii(c) 1
  106. #endif
  107. #ifdef isblank
  108. #define ISBLANK(c) (isascii (c) && isblank (c))
  109. #else
  110. #define ISBLANK(c) ((c) == ' ' || (c) == 't')
  111. #endif
  112. #ifdef isgraph
  113. #define ISGRAPH(c) (isascii (c) && isgraph (c))
  114. #else
  115. #define ISGRAPH(c) (isascii (c) && isprint (c) && !isspace (c))
  116. #endif
  117. #define ISPRINT(c) (isascii (c) && isprint (c))
  118. #define ISDIGIT(c) (isascii (c) && isdigit (c))
  119. #define ISALNUM(c) (isascii (c) && isalnum (c))
  120. #define ISALPHA(c) (isascii (c) && isalpha (c))
  121. #define ISCNTRL(c) (isascii (c) && iscntrl (c))
  122. #define ISLOWER(c) (isascii (c) && islower (c))
  123. #define ISPUNCT(c) (isascii (c) && ispunct (c))
  124. #define ISSPACE(c) (isascii (c) && isspace (c))
  125. #define ISUPPER(c) (isascii (c) && isupper (c))
  126. #define ISXDIGIT(c) (isascii (c) && isxdigit (c))
  127. #ifndef NULL
  128. #define NULL 0
  129. #endif
  130. /* We remove any previous definition of `SIGN_EXTEND_CHAR',
  131.    since ours (we hope) works properly with all combinations of
  132.    machines, compilers, `char' and `unsigned char' argument types.
  133.    (Per Bothner suggested the basic approach.)  */
  134. #undef SIGN_EXTEND_CHAR
  135. #if __STDC__
  136. #define SIGN_EXTEND_CHAR(c) ((signed char) (c))
  137. #else  /* not __STDC__ */
  138. /* As in Harbison and Steele.  */
  139. #define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128)
  140. #endif
  141. /* Should we use malloc or alloca?  If REGEX_MALLOC is not defined, we
  142.    use `alloca' instead of `malloc'.  This is because using malloc in
  143.    re_search* or re_match* could cause memory leaks when C-g is used in
  144.    Emacs; also, malloc is slower and causes storage fragmentation.  On
  145.    the other hand, malloc is more portable, and easier to debug.  
  146.    
  147.    Because we sometimes use alloca, some routines have to be macros,
  148.    not functions -- `alloca'-allocated space disappears at the end of the
  149.    function it is called in.  */
  150. #ifdef REGEX_MALLOC
  151. #define REGEX_ALLOCATE malloc
  152. #define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize)
  153. #else /* not REGEX_MALLOC  */
  154. /* Emacs already defines alloca, sometimes.  */
  155. #ifndef alloca
  156. /* Make alloca work the best possible way.  */
  157. #ifdef __GNUC__
  158. #define alloca __builtin_alloca
  159. #else /* not __GNUC__ */
  160. #if HAVE_ALLOCA_H
  161. #include <alloca.h>
  162. #else /* not __GNUC__ or HAVE_ALLOCA_H */
  163. #ifndef _AIX /* Already did AIX, up at the top.  */
  164. char *alloca ();
  165. #endif /* not _AIX */
  166. #endif /* not HAVE_ALLOCA_H */ 
  167. #endif /* not __GNUC__ */
  168. #endif /* not alloca */
  169. #define REGEX_ALLOCATE alloca
  170. /* Assumes a `char *destination' variable.  */
  171. #define REGEX_REALLOCATE(source, osize, nsize)
  172.   (destination = (char *) alloca (nsize),
  173.    bcopy (source, destination, osize),
  174.    destination)
  175. #endif /* not REGEX_MALLOC */
  176. /* True if `size1' is non-NULL and PTR is pointing anywhere inside
  177.    `string1' or just past its end.  This works if PTR is NULL, which is
  178.    a good thing.  */
  179. #define FIRST_STRING_P(ptr) 
  180.   (size1 && string1 <= (ptr) && (ptr) <= string1 + size1)
  181. /* (Re)Allocate N items of type T using malloc, or fail.  */
  182. #define TALLOC(n, t) ((t *) malloc ((n) * sizeof (t)))
  183. #define RETALLOC(addr, n, t) ((addr) = (t *) realloc (addr, (n) * sizeof (t)))
  184. #define REGEX_TALLOC(n, t) ((t *) REGEX_ALLOCATE ((n) * sizeof (t)))
  185. #define BYTEWIDTH 8 /* In bits.  */
  186. #define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
  187. #define MAX(a, b) ((a) > (b) ? (a) : (b))
  188. #define MIN(a, b) ((a) < (b) ? (a) : (b))
  189. typedef char boolean;
  190. #define false 0
  191. #define true 1
  192. /* These are the command codes that appear in compiled regular
  193.    expressions.  Some opcodes are followed by argument bytes.  A
  194.    command code can specify any interpretation whatsoever for its
  195.    arguments.  Zero bytes may appear in the compiled regular expression.
  196.    The value of `exactn' is needed in search.c (search_buffer) in Emacs.
  197.    So regex.h defines a symbol `RE_EXACTN_VALUE' to be 1; the value of
  198.    `exactn' we use here must also be 1.  */
  199. typedef enum
  200. {
  201.   no_op = 0,
  202.         /* Followed by one byte giving n, then by n literal bytes.  */
  203.   exactn = 1,
  204.         /* Matches any (more or less) character.  */
  205.   anychar,
  206.         /* Matches any one char belonging to specified set.  First
  207.            following byte is number of bitmap bytes.  Then come bytes
  208.            for a bitmap saying which chars are in.  Bits in each byte
  209.            are ordered low-bit-first.  A character is in the set if its
  210.            bit is 1.  A character too large to have a bit in the map is
  211.            automatically not in the set.  */
  212.   charset,
  213.         /* Same parameters as charset, but match any character that is
  214.            not one of those specified.  */
  215.   charset_not,
  216.         /* Start remembering the text that is matched, for storing in a
  217.            register.  Followed by one byte with the register number, in
  218.            the range 0 to one less than the pattern buffer's re_nsub
  219.            field.  Then followed by one byte with the number of groups
  220.            inner to this one.  (This last has to be part of the
  221.            start_memory only because we need it in the on_failure_jump
  222.            of re_match_2.)  */
  223.   start_memory,
  224.         /* Stop remembering the text that is matched and store it in a
  225.            memory register.  Followed by one byte with the register
  226.            number, in the range 0 to one less than `re_nsub' in the
  227.            pattern buffer, and one byte with the number of inner groups,
  228.            just like `start_memory'.  (We need the number of inner
  229.            groups here because we don't have any easy way of finding the
  230.            corresponding start_memory when we're at a stop_memory.)  */
  231.   stop_memory,
  232.         /* Match a duplicate of something remembered. Followed by one
  233.            byte containing the register number.  */
  234.   duplicate,
  235.         /* Fail unless at beginning of line.  */
  236.   begline,
  237.         /* Fail unless at end of line.  */
  238.   endline,
  239.         /* Succeeds if at beginning of buffer (if emacs) or at beginning
  240.            of string to be matched (if not).  */
  241.   begbuf,
  242.         /* Analogously, for end of buffer/string.  */
  243.   endbuf,
  244.  
  245.         /* Followed by two byte relative address to which to jump.  */
  246.   jump, 
  247. /* Same as jump, but marks the end of an alternative.  */
  248.   jump_past_alt,
  249.         /* Followed by two-byte relative address of place to resume at
  250.            in case of failure.  */
  251.   on_failure_jump,
  252.         /* Like on_failure_jump, but pushes a placeholder instead of the
  253.            current string position when executed.  */
  254.   on_failure_keep_string_jump,
  255.   
  256.         /* Throw away latest failure point and then jump to following
  257.            two-byte relative address.  */
  258.   pop_failure_jump,
  259.         /* Change to pop_failure_jump if know won't have to backtrack to
  260.            match; otherwise change to jump.  This is used to jump
  261.            back to the beginning of a repeat.  If what follows this jump
  262.            clearly won't match what the repeat does, such that we can be
  263.            sure that there is no use backtracking out of repetitions
  264.            already matched, then we change it to a pop_failure_jump.
  265.            Followed by two-byte address.  */
  266.   maybe_pop_jump,
  267.         /* Jump to following two-byte address, and push a dummy failure
  268.            point. This failure point will be thrown away if an attempt
  269.            is made to use it for a failure.  A `+' construct makes this
  270.            before the first repeat.  Also used as an intermediary kind
  271.            of jump when compiling an alternative.  */
  272.   dummy_failure_jump,
  273. /* Push a dummy failure point and continue.  Used at the end of
  274.    alternatives.  */
  275.   push_dummy_failure,
  276.         /* Followed by two-byte relative address and two-byte number n.
  277.            After matching N times, jump to the address upon failure.  */
  278.   succeed_n,
  279.         /* Followed by two-byte relative address, and two-byte number n.
  280.            Jump to the address N times, then fail.  */
  281.   jump_n,
  282.         /* Set the following two-byte relative address to the
  283.            subsequent two-byte number.  The address *includes* the two
  284.            bytes of number.  */
  285.   set_number_at,
  286.   wordchar, /* Matches any word-constituent character.  */
  287.   notwordchar, /* Matches any char that is not a word-constituent.  */
  288.   wordbeg, /* Succeeds if at word beginning.  */
  289.   wordend, /* Succeeds if at word end.  */
  290.   wordbound, /* Succeeds if at a word boundary.  */
  291.   notwordbound /* Succeeds if not at a word boundary.  */
  292. #ifdef emacs
  293.   ,before_dot, /* Succeeds if before point.  */
  294.   at_dot, /* Succeeds if at point.  */
  295.   after_dot, /* Succeeds if after point.  */
  296. /* Matches any character whose syntax is specified.  Followed by
  297.            a byte which contains a syntax code, e.g., Sword.  */
  298.   syntaxspec,
  299. /* Matches any character whose syntax is not that specified.  */
  300.   notsyntaxspec
  301. #endif /* emacs */
  302. } re_opcode_t;
  303. /* Common operations on the compiled pattern.  */
  304. /* Store NUMBER in two contiguous bytes starting at DESTINATION.  */
  305. #define STORE_NUMBER(destination, number)
  306.   do {
  307.     (destination)[0] = (number) & 0377;
  308.     (destination)[1] = (number) >> 8;
  309.   } while (0)
  310. /* Same as STORE_NUMBER, except increment DESTINATION to
  311.    the byte after where the number is stored.  Therefore, DESTINATION
  312.    must be an lvalue.  */
  313. #define STORE_NUMBER_AND_INCR(destination, number)
  314.   do {
  315.     STORE_NUMBER (destination, number);
  316.     (destination) += 2;
  317.   } while (0)
  318. /* Put into DESTINATION a number stored in two contiguous bytes starting
  319.    at SOURCE.  */
  320. #define EXTRACT_NUMBER(destination, source)
  321.   do {
  322.     (destination) = *(source) & 0377;
  323.     (destination) += SIGN_EXTEND_CHAR (*((source) + 1)) << 8;
  324.   } while (0)
  325. #ifdef DEBUG
  326. static void
  327. extract_number (dest, source)
  328.     int *dest;
  329.     unsigned char *source;
  330. {
  331.   int temp = SIGN_EXTEND_CHAR (*(source + 1)); 
  332.   *dest = *source & 0377;
  333.   *dest += temp << 8;
  334. }
  335. #ifndef EXTRACT_MACROS /* To debug the macros.  */
  336. #undef EXTRACT_NUMBER
  337. #define EXTRACT_NUMBER(dest, src) extract_number (&dest, src)
  338. #endif /* not EXTRACT_MACROS */
  339. #endif /* DEBUG */
  340. /* Same as EXTRACT_NUMBER, except increment SOURCE to after the number.
  341.    SOURCE must be an lvalue.  */
  342. #define EXTRACT_NUMBER_AND_INCR(destination, source)
  343.   do {
  344.     EXTRACT_NUMBER (destination, source);
  345.     (source) += 2; 
  346.   } while (0)
  347. #ifdef DEBUG
  348. static void
  349. extract_number_and_incr (destination, source)
  350.     int *destination;
  351.     unsigned char **source;
  352.   extract_number (destination, *source);
  353.   *source += 2;
  354. }
  355. #ifndef EXTRACT_MACROS
  356. #undef EXTRACT_NUMBER_AND_INCR
  357. #define EXTRACT_NUMBER_AND_INCR(dest, src) 
  358.   extract_number_and_incr (&dest, &src)
  359. #endif /* not EXTRACT_MACROS */
  360. #endif /* DEBUG */
  361. /* If DEBUG is defined, Regex prints many voluminous messages about what
  362.    it is doing (if the variable `debug' is nonzero).  If linked with the
  363.    main program in `iregex.c', you can enter patterns and strings
  364.    interactively.  And if linked with the main program in `main.c' and
  365.    the other test files, you can run the already-written tests.  */
  366. #ifdef DEBUG
  367. /* We use standard I/O for debugging.  */
  368. #include <stdio.h>
  369. /* It is useful to test things that ``must'' be true when debugging.  */
  370. #include <assert.h>
  371. static int debug = 0;
  372. #define DEBUG_STATEMENT(e) e
  373. #define DEBUG_PRINT1(x) if (debug) printf (x)
  374. #define DEBUG_PRINT2(x1, x2) if (debug) printf (x1, x2)
  375. #define DEBUG_PRINT3(x1, x2, x3) if (debug) printf (x1, x2, x3)
  376. #define DEBUG_PRINT4(x1, x2, x3, x4) if (debug) printf (x1, x2, x3, x4)
  377. #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e) 
  378.   if (debug) print_partial_compiled_pattern (s, e)
  379. #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)
  380.   if (debug) print_double_string (w, s1, sz1, s2, sz2)
  381. extern void printchar ();
  382. /* Print the fastmap in human-readable form.  */
  383. void
  384. print_fastmap (fastmap)
  385.     char *fastmap;
  386. {
  387.   unsigned was_a_range = 0;
  388.   unsigned i = 0;  
  389.   
  390.   while (i < (1 << BYTEWIDTH))
  391.     {
  392.       if (fastmap[i++])
  393. {
  394.   was_a_range = 0;
  395.           printchar (i - 1);
  396.           while (i < (1 << BYTEWIDTH)  &&  fastmap[i])
  397.             {
  398.               was_a_range = 1;
  399.               i++;
  400.             }
  401.   if (was_a_range)
  402.             {
  403.               printf ("-");
  404.               printchar (i - 1);
  405.             }
  406.         }
  407.     }
  408.   putchar ('n'); 
  409. }
  410. /* Print a compiled pattern string in human-readable form, starting at
  411.    the START pointer into it and ending just before the pointer END.  */
  412. void
  413. print_partial_compiled_pattern (start, end)
  414.     unsigned char *start;
  415.     unsigned char *end;
  416. {
  417.   int mcnt, mcnt2;
  418.   unsigned char *p = start;
  419.   unsigned char *pend = end;
  420.   if (start == NULL)
  421.     {
  422.       printf ("(null)n");
  423.       return;
  424.     }
  425.     
  426.   /* Loop over pattern commands.  */
  427.   while (p < pend)
  428.     {
  429.       switch ((re_opcode_t) *p++)
  430. {
  431.         case no_op:
  432.           printf ("/no_op");
  433.           break;
  434. case exactn:
  435.   mcnt = *p++;
  436.           printf ("/exactn/%d", mcnt);
  437.           do
  438.     {
  439.               putchar ('/');
  440.       printchar (*p++);
  441.             }
  442.           while (--mcnt);
  443.           break;
  444. case start_memory:
  445.           mcnt = *p++;
  446.           printf ("/start_memory/%d/%d", mcnt, *p++);
  447.           break;
  448. case stop_memory:
  449.           mcnt = *p++;
  450.   printf ("/stop_memory/%d/%d", mcnt, *p++);
  451.           break;
  452. case duplicate:
  453.   printf ("/duplicate/%d", *p++);
  454.   break;
  455. case anychar:
  456.   printf ("/anychar");
  457.   break;
  458. case charset:
  459.         case charset_not:
  460.           {
  461.             register int c;
  462.             printf ("/charset%s",
  463.             (re_opcode_t) *(p - 1) == charset_not ? "_not" : "");
  464.             
  465.             assert (p + *p < pend);
  466.             for (c = 0; c < *p; c++)
  467.               {
  468.                 unsigned bit;
  469.                 unsigned char map_byte = p[1 + c];
  470.                 
  471.                 putchar ('/');
  472. for (bit = 0; bit < BYTEWIDTH; bit++)
  473.                   if (map_byte & (1 << bit))
  474.                     printchar (c * BYTEWIDTH + bit);
  475.               }
  476.     p += 1 + *p;
  477.     break;
  478.   }
  479. case begline:
  480.   printf ("/begline");
  481.           break;
  482. case endline:
  483.           printf ("/endline");
  484.           break;
  485. case on_failure_jump:
  486.           extract_number_and_incr (&mcnt, &p);
  487.      printf ("/on_failure_jump/0/%d", mcnt);
  488.           break;
  489. case on_failure_keep_string_jump:
  490.           extract_number_and_incr (&mcnt, &p);
  491.      printf ("/on_failure_keep_string_jump/0/%d", mcnt);
  492.           break;
  493. case dummy_failure_jump:
  494.           extract_number_and_incr (&mcnt, &p);
  495.      printf ("/dummy_failure_jump/0/%d", mcnt);
  496.           break;
  497. case push_dummy_failure:
  498.           printf ("/push_dummy_failure");
  499.           break;
  500.           
  501.         case maybe_pop_jump:
  502.           extract_number_and_incr (&mcnt, &p);
  503.      printf ("/maybe_pop_jump/0/%d", mcnt);
  504.   break;
  505.         case pop_failure_jump:
  506.   extract_number_and_incr (&mcnt, &p);
  507.      printf ("/pop_failure_jump/0/%d", mcnt);
  508.   break;          
  509.           
  510.         case jump_past_alt:
  511.   extract_number_and_incr (&mcnt, &p);
  512.      printf ("/jump_past_alt/0/%d", mcnt);
  513.   break;          
  514.           
  515.         case jump:
  516.   extract_number_and_incr (&mcnt, &p);
  517.      printf ("/jump/0/%d", mcnt);
  518.   break;
  519.         case succeed_n: 
  520.           extract_number_and_incr (&mcnt, &p);
  521.           extract_number_and_incr (&mcnt2, &p);
  522.     printf ("/succeed_n/0/%d/0/%d", mcnt, mcnt2);
  523.           break;
  524.         
  525.         case jump_n: 
  526.           extract_number_and_incr (&mcnt, &p);
  527.           extract_number_and_incr (&mcnt2, &p);
  528.     printf ("/jump_n/0/%d/0/%d", mcnt, mcnt2);
  529.           break;
  530.         
  531.         case set_number_at: 
  532.           extract_number_and_incr (&mcnt, &p);
  533.           extract_number_and_incr (&mcnt2, &p);
  534.     printf ("/set_number_at/0/%d/0/%d", mcnt, mcnt2);
  535.           break;
  536.         
  537.         case wordbound:
  538.   printf ("/wordbound");
  539.   break;
  540. case notwordbound:
  541.   printf ("/notwordbound");
  542.           break;
  543. case wordbeg:
  544.   printf ("/wordbeg");
  545.   break;
  546.           
  547. case wordend:
  548.   printf ("/wordend");
  549.           
  550. #ifdef emacs
  551. case before_dot:
  552.   printf ("/before_dot");
  553.           break;
  554. case at_dot:
  555.   printf ("/at_dot");
  556.           break;
  557. case after_dot:
  558.   printf ("/after_dot");
  559.           break;
  560. case syntaxspec:
  561.           printf ("/syntaxspec");
  562.   mcnt = *p++;
  563.   printf ("/%d", mcnt);
  564.           break;
  565.   
  566. case notsyntaxspec:
  567.           printf ("/notsyntaxspec");
  568.   mcnt = *p++;
  569.   printf ("/%d", mcnt);
  570.   break;
  571. #endif /* emacs */
  572. case wordchar:
  573.   printf ("/wordchar");
  574.           break;
  575.   
  576. case notwordchar:
  577.   printf ("/notwordchar");
  578.           break;
  579. case begbuf:
  580.   printf ("/begbuf");
  581.           break;
  582. case endbuf:
  583.   printf ("/endbuf");
  584.           break;
  585.         default:
  586.           printf ("?%d", *(p-1));
  587. }
  588.     }
  589.   printf ("/n");
  590. }
  591. void
  592. print_compiled_pattern (bufp)
  593.     struct re_pattern_buffer *bufp;
  594. {
  595.   unsigned char *buffer = bufp->buffer;
  596.   print_partial_compiled_pattern (buffer, buffer + bufp->used);
  597.   printf ("%d bytes used/%d bytes allocated.n", bufp->used, bufp->allocated);
  598.   if (bufp->fastmap_accurate && bufp->fastmap)
  599.     {
  600.       printf ("fastmap: ");
  601.       print_fastmap (bufp->fastmap);
  602.     }
  603.   printf ("re_nsub: %dt", bufp->re_nsub);
  604.   printf ("regs_alloc: %dt", bufp->regs_allocated);
  605.   printf ("can_be_null: %dt", bufp->can_be_null);
  606.   printf ("newline_anchor: %dn", bufp->newline_anchor);
  607.   printf ("no_sub: %dt", bufp->no_sub);
  608.   printf ("not_bol: %dt", bufp->not_bol);
  609.   printf ("not_eol: %dt", bufp->not_eol);
  610.   printf ("syntax: %dn", bufp->syntax);
  611.   /* Perhaps we should print the translate table?  */
  612. }
  613. void
  614. print_double_string (where, string1, size1, string2, size2)
  615.     const char *where;
  616.     const char *string1;
  617.     const char *string2;
  618.     int size1;
  619.     int size2;
  620. {
  621.   unsigned this_char;
  622.   
  623.   if (where == NULL)
  624.     printf ("(null)");
  625.   else
  626.     {
  627.       if (FIRST_STRING_P (where))
  628.         {
  629.           for (this_char = where - string1; this_char < size1; this_char++)
  630.             printchar (string1[this_char]);
  631.           where = string2;    
  632.         }
  633.       for (this_char = where - string2; this_char < size2; this_char++)
  634.         printchar (string2[this_char]);
  635.     }
  636. }
  637. #else /* not DEBUG */
  638. #undef assert
  639. #define assert(e)
  640. #define DEBUG_STATEMENT(e)
  641. #define DEBUG_PRINT1(x)
  642. #define DEBUG_PRINT2(x1, x2)
  643. #define DEBUG_PRINT3(x1, x2, x3)
  644. #define DEBUG_PRINT4(x1, x2, x3, x4)
  645. #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)
  646. #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)
  647. #endif /* not DEBUG */
  648. /* Set by `re_set_syntax' to the current regexp syntax to recognize.  Can
  649.    also be assigned to arbitrarily: each pattern buffer stores its own
  650.    syntax, so it can be changed between regex compilations.  */
  651. reg_syntax_t re_syntax_options = RE_SYNTAX_EMACS;
  652. /* Specify the precise syntax of regexps for compilation.  This provides
  653.    for compatibility for various utilities which historically have
  654.    different, incompatible syntaxes.
  655.    The argument SYNTAX is a bit mask comprised of the various bits
  656.    defined in regex.h.  We return the old syntax.  */
  657. reg_syntax_t
  658. re_set_syntax (reg_syntax_t syntax)
  659. {
  660.   reg_syntax_t ret = re_syntax_options;
  661.   
  662.   re_syntax_options = syntax;
  663.   return ret;
  664. }
  665. /* This table gives an error message for each of the error codes listed
  666.    in regex.h.  Obviously the order here has to be same as there.  */
  667. static const char *re_error_msg[] =
  668.   { NULL, /* REG_NOERROR */
  669.     "No match", /* REG_NOMATCH */
  670.     "Invalid regular expression", /* REG_BADPAT */
  671.     "Invalid collation character", /* REG_ECOLLATE */
  672.     "Invalid character class name", /* REG_ECTYPE */
  673.     "Trailing backslash", /* REG_EESCAPE */
  674.     "Invalid back reference", /* REG_ESUBREG */
  675.     "Unmatched [ or [^", /* REG_EBRACK */
  676.     "Unmatched ( or \(", /* REG_EPAREN */
  677.     "Unmatched \{", /* REG_EBRACE */
  678.     "Invalid content of \{\}", /* REG_BADBR */
  679.     "Invalid range end", /* REG_ERANGE */
  680.     "Memory exhausted", /* REG_ESPACE */
  681.     "Invalid preceding regular expression", /* REG_BADRPT */
  682.     "Premature end of regular expression", /* REG_EEND */
  683.     "Regular expression too big", /* REG_ESIZE */
  684.     "Unmatched ) or \)", /* REG_ERPAREN */
  685.   };
  686. /* Since we have one byte reserved for the register number argument to
  687.    {start,stop}_memory, the maximum number of groups we can report
  688.    things about is what fits in that byte.  */
  689. #define MAX_REGNUM 255
  690. /* But patterns can have more than `MAX_REGNUM' registers.  We just
  691.    ignore the excess.  */
  692. typedef unsigned regnum_t;
  693. /* Since offsets can go either forwards or backwards, this type needs to
  694.    be able to hold values from -(MAX_BUF_SIZE - 1) to MAX_BUF_SIZE - 1.  */
  695. typedef int pattern_offset_t;
  696. typedef struct
  697. {
  698.   pattern_offset_t begalt_offset;
  699.   pattern_offset_t fixup_alt_jump;
  700.   pattern_offset_t inner_group_offset;
  701.   pattern_offset_t laststart_offset;  
  702.   regnum_t regnum;
  703. } compile_stack_elt_t;
  704. typedef struct
  705. {
  706.   compile_stack_elt_t *stack;
  707.   unsigned size;
  708.   unsigned avail; /* Offset of next open position.  */
  709. } compile_stack_type;
  710. /* Subroutine declarations and macros for regex_compile.  */
  711. static void store_op1 (
  712.     re_opcode_t op,
  713.     unsigned char *loc,
  714.     int arg), store_op2 (
  715.     re_opcode_t op,
  716.     unsigned char *loc,
  717.     int arg1, int arg2);
  718. static void insert_op1 (
  719.     re_opcode_t op,
  720.     unsigned char *loc,
  721.     int arg,
  722.     unsigned char *end), insert_op2 (
  723.     re_opcode_t op,
  724.     unsigned char *loc,
  725.     int arg1, int arg2,
  726.     unsigned char *end);
  727. static boolean at_begline_loc_p (
  728.     const char *pattern, const char *p,
  729.     reg_syntax_t syntax), at_endline_loc_p (
  730.     const char *p, const char *pend,
  731.     int syntax);
  732. static boolean group_in_compile_stack (
  733.     compile_stack_type compile_stack,
  734.     regnum_t regnum);
  735. static reg_errcode_t compile_range (
  736.     const char **p_ptr, const char *pend,
  737.     char *translate,
  738.     reg_syntax_t syntax,
  739.     unsigned char *b);
  740. /* Fetch the next character in the uncompiled pattern---translating it 
  741.    if necessary.  Also cast from a signed character in the constant
  742.    string passed to us by the user to an unsigned char that we can use
  743.    as an array index (in, e.g., `translate').  */
  744. #define PATFETCH(c)
  745.   do {if (p == pend) return REG_EEND;
  746.     c = (unsigned char) *p++;
  747.     if (translate) c = translate[c]; 
  748.   } while (0)
  749. /* Fetch the next character in the uncompiled pattern, with no
  750.    translation.  */
  751. #define PATFETCH_RAW(c)
  752.   do {if (p == pend) return REG_EEND;
  753.     c = (unsigned char) *p++; 
  754.   } while (0)
  755. /* Go backwards one character in the pattern.  */
  756. #define PATUNFETCH p--
  757. /* If `translate' is non-null, return translate[D], else just D.  We
  758.    cast the subscript to translate because some data is declared as
  759.    `char *', to avoid warnings when a string constant is passed.  But
  760.    when we use a character as a subscript we must make it unsigned.  */
  761. #define TRANSLATE(d) (translate ? translate[(unsigned char) (d)] : (d))
  762. /* Macros for outputting the compiled pattern into `buffer'.  */
  763. /* If the buffer isn't allocated when it comes in, use this.  */
  764. #define INIT_BUF_SIZE  32
  765. /* Make sure we have at least N more bytes of space in buffer.  */
  766. #define GET_BUFFER_SPACE(n)
  767.     while (b - bufp->buffer + (n) > bufp->allocated)
  768.       EXTEND_BUFFER ()
  769. /* Make sure we have one more byte of buffer space and then add C to it.  */
  770. #define BUF_PUSH(c)
  771.   do {
  772.     GET_BUFFER_SPACE (1);
  773.     *b++ = (unsigned char) (c);
  774.   } while (0)
  775. /* Ensure we have two more bytes of buffer space and then append C1 and C2.  */
  776. #define BUF_PUSH_2(c1, c2)
  777.   do {
  778.     GET_BUFFER_SPACE (2);
  779.     *b++ = (unsigned char) (c1);
  780.     *b++ = (unsigned char) (c2);
  781.   } while (0)
  782. /* As with BUF_PUSH_2, except for three bytes.  */
  783. #define BUF_PUSH_3(c1, c2, c3)
  784.   do {
  785.     GET_BUFFER_SPACE (3);
  786.     *b++ = (unsigned char) (c1);
  787.     *b++ = (unsigned char) (c2);
  788.     *b++ = (unsigned char) (c3);
  789.   } while (0)
  790. /* Store a jump with opcode OP at LOC to location TO.  We store a
  791.    relative address offset by the three bytes the jump itself occupies.  */
  792. #define STORE_JUMP(op, loc, to) 
  793.   store_op1 (op, loc, (to) - (loc) - 3)
  794. /* Likewise, for a two-argument jump.  */
  795. #define STORE_JUMP2(op, loc, to, arg) 
  796.   store_op2 (op, loc, (to) - (loc) - 3, arg)
  797. /* Like `STORE_JUMP', but for inserting.  Assume `b' is the buffer end.  */
  798. #define INSERT_JUMP(op, loc, to) 
  799.   insert_op1 (op, loc, (to) - (loc) - 3, b)
  800. /* Like `STORE_JUMP2', but for inserting.  Assume `b' is the buffer end.  */
  801. #define INSERT_JUMP2(op, loc, to, arg) 
  802.   insert_op2 (op, loc, (to) - (loc) - 3, arg, b)
  803. /* This is not an arbitrary limit: the arguments which represent offsets
  804.    into the pattern are two bytes long.  So if 2^16 bytes turns out to
  805.    be too small, many things would have to change.  */
  806. #define MAX_BUF_SIZE (1L << 16)
  807. /* Extend the buffer by twice its current size via realloc and
  808.    reset the pointers that pointed into the old block to point to the
  809.    correct places in the new one.  If extending the buffer results in it
  810.    being larger than MAX_BUF_SIZE, then flag memory exhausted.  */
  811. #define EXTEND_BUFFER()
  812.   do { 
  813.     unsigned char *old_buffer = bufp->buffer;
  814.     if (bufp->allocated == MAX_BUF_SIZE) 
  815.       return REG_ESIZE;
  816.     bufp->allocated <<= 1;
  817.     if (bufp->allocated > MAX_BUF_SIZE)
  818.       bufp->allocated = MAX_BUF_SIZE; 
  819.     bufp->buffer = (unsigned char *) realloc (bufp->buffer, bufp->allocated);
  820.     if (bufp->buffer == NULL)
  821.       return REG_ESPACE;
  822.     /* If the buffer moved, move all the pointers into it.  */
  823.     if (old_buffer != bufp->buffer)
  824.       {
  825.         b = (b - old_buffer) + bufp->buffer;
  826.         begalt = (begalt - old_buffer) + bufp->buffer;
  827.         if (fixup_alt_jump)
  828.           fixup_alt_jump = (fixup_alt_jump - old_buffer) + bufp->buffer;
  829.         if (laststart)
  830.           laststart = (laststart - old_buffer) + bufp->buffer;
  831.         if (pending_exact)
  832.           pending_exact = (pending_exact - old_buffer) + bufp->buffer;
  833.       }
  834.   } while (0)
  835. /* Macros for the compile stack.  */
  836. #define INIT_COMPILE_STACK_SIZE 32
  837. #define COMPILE_STACK_EMPTY  (compile_stack.avail == 0)
  838. #define COMPILE_STACK_FULL  (compile_stack.avail == compile_stack.size)
  839. /* The next available element.  */
  840. #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
  841. /* Set the bit for character C in a list.  */
  842. #define SET_LIST_BIT(c)                               
  843.   (b[((unsigned char) (c)) / BYTEWIDTH]               
  844.    |= 1 << (((unsigned char) c) % BYTEWIDTH))
  845. /* Get the next unsigned number in the uncompiled pattern.  */
  846. #define GET_UNSIGNED_NUMBER(num) 
  847.   { if (p != pend)
  848.      {
  849.        PATFETCH (c); 
  850.        while (ISDIGIT (c)) 
  851.          { 
  852.            if (num < 0)
  853.               num = 0;
  854.            num = num * 10 + c - '0'; 
  855.            if (p == pend) 
  856.               break; 
  857.            PATFETCH (c);
  858.          } 
  859.        } 
  860.     }
  861. #define CHAR_CLASS_MAX_LENGTH  6 /* Namely, `xdigit'.  */
  862. #define IS_CHAR_CLASS(string)
  863.    (STREQ (string, "alpha") || STREQ (string, "upper")
  864.     || STREQ (string, "lower") || STREQ (string, "digit")
  865.     || STREQ (string, "alnum") || STREQ (string, "xdigit")
  866.     || STREQ (string, "space") || STREQ (string, "print")
  867.     || STREQ (string, "punct") || STREQ (string, "graph")
  868.     || STREQ (string, "cntrl") || STREQ (string, "blank"))
  869. /* `regex_compile' compiles PATTERN (of length SIZE) according to SYNTAX.
  870.    Returns one of error codes defined in `regex.h', or zero for success.
  871.    Assumes the `allocated' (and perhaps `buffer') and `translate'
  872.    fields are set in BUFP on entry.
  873.    If it succeeds, results are put in BUFP (if it returns an error, the
  874.    contents of BUFP are undefined):
  875.      `buffer' is the compiled pattern;
  876.      `syntax' is set to SYNTAX;
  877.      `used' is set to the length of the compiled pattern;
  878.      `fastmap_accurate' is zero;
  879.      `re_nsub' is the number of subexpressions in PATTERN;
  880.      `not_bol' and `not_eol' are zero;
  881.    
  882.    The `fastmap' and `newline_anchor' fields are neither
  883.    examined nor set.  */
  884. static reg_errcode_t
  885. regex_compile (
  886.      const char *pattern,
  887.      int size,
  888.      reg_syntax_t syntax,
  889.      struct re_pattern_buffer *bufp)
  890. {
  891.   /* We fetch characters from PATTERN here.  Even though PATTERN is
  892.      `char *' (i.e., signed), we declare these variables as unsigned, so
  893.      they can be reliably used as array indices.  */
  894.   register unsigned char c, c1;
  895.   
  896.   /* A random tempory spot in PATTERN.  */
  897.   const char *p1;
  898.   /* Points to the end of the buffer, where we should append.  */
  899.   register unsigned char *b;
  900.   
  901.   /* Keeps track of unclosed groups.  */
  902.   compile_stack_type compile_stack;
  903.   /* Points to the current (ending) position in the pattern.  */
  904.   const char *p = pattern;
  905.   const char *pend = pattern + size;
  906.   
  907.   /* How to translate the characters in the pattern.  */
  908.   char *translate = bufp->translate;
  909.   /* Address of the count-byte of the most recently inserted `exactn'
  910.      command.  This makes it possible to tell if a new exact-match
  911.      character can be added to that command or if the character requires
  912.      a new `exactn' command.  */
  913.   unsigned char *pending_exact = 0;
  914.   /* Address of start of the most recently finished expression.
  915.      This tells, e.g., postfix * where to find the start of its
  916.      operand.  Reset at the beginning of groups and alternatives.  */
  917.   unsigned char *laststart = 0;
  918.   /* Address of beginning of regexp, or inside of last group.  */
  919.   unsigned char *begalt;
  920.   /* Place in the uncompiled pattern (i.e., the {) to
  921.      which to go back if the interval is invalid.  */
  922.   const char *beg_interval;
  923.                 
  924.   /* Address of the place where a forward jump should go to the end of
  925.      the containing expression.  Each alternative of an `or' -- except the
  926.      last -- ends with a forward jump of this sort.  */
  927.   unsigned char *fixup_alt_jump = 0;
  928.   /* Counts open-groups as they are encountered.  Remembered for the
  929.      matching close-group on the compile stack, so the same register
  930.      number is put in the stop_memory as the start_memory.  */
  931.   regnum_t regnum = 0;
  932. #ifdef DEBUG
  933.   DEBUG_PRINT1 ("nCompiling pattern: ");
  934.   if (debug)
  935.     {
  936.       unsigned debug_count;
  937.       
  938.       for (debug_count = 0; debug_count < size; debug_count++)
  939.         printchar (pattern[debug_count]);
  940.       putchar ('n');
  941.     }
  942. #endif /* DEBUG */
  943.   /* Initialize the compile stack.  */
  944.   compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t);
  945.   if (compile_stack.stack == NULL)
  946.     return REG_ESPACE;
  947.   compile_stack.size = INIT_COMPILE_STACK_SIZE;
  948.   compile_stack.avail = 0;
  949.   /* Initialize the pattern buffer.  */
  950.   bufp->syntax = syntax;
  951.   bufp->fastmap_accurate = 0;
  952.   bufp->not_bol = bufp->not_eol = 0;
  953.   /* Set `used' to zero, so that if we return an error, the pattern
  954.      printer (for debugging) will think there's no pattern.  We reset it
  955.      at the end.  */
  956.   bufp->used = 0;
  957.   
  958.   /* Always count groups, whether or not bufp->no_sub is set.  */
  959.   bufp->re_nsub = 0;
  960. #if !defined (emacs) && !defined (SYNTAX_TABLE)
  961.   /* Initialize the syntax table.  */
  962.    init_syntax_once ();
  963. #endif
  964.   if (bufp->allocated == 0)
  965.     {
  966.       if (bufp->buffer)
  967. { /* If zero allocated, but buffer is non-null, try to realloc
  968.              enough space.  This loses if buffer's address is bogus, but
  969.              that is the user's responsibility.  */
  970.           RETALLOC (bufp->buffer, INIT_BUF_SIZE, unsigned char);
  971.         }
  972.       else
  973.         { /* Caller did not allocate a buffer.  Do it for them.  */
  974.           bufp->buffer = TALLOC (INIT_BUF_SIZE, unsigned char);
  975.         }
  976.       if (!bufp->buffer) return REG_ESPACE;
  977.       bufp->allocated = INIT_BUF_SIZE;
  978.     }
  979.   begalt = b = bufp->buffer;
  980.   /* Loop through the uncompiled pattern until we're at the end.  */
  981.   while (p != pend)
  982.     {
  983.       PATFETCH (c);
  984.       switch (c)
  985.         {
  986.         case '^':
  987.           {
  988.             if (   /* If at start of pattern, it's an operator.  */
  989.                    p == pattern + 1
  990.                    /* If context independent, it's an operator.  */
  991.                 || syntax & RE_CONTEXT_INDEP_ANCHORS
  992.                    /* Otherwise, depends on what's come before.  */
  993.                 || at_begline_loc_p (pattern, p, syntax))
  994.               BUF_PUSH (begline);
  995.             else
  996.               goto normal_char;
  997.           }
  998.           break;
  999.         case '$':
  1000.           {
  1001.             if (   /* If at end of pattern, it's an operator.  */
  1002.                    p == pend 
  1003.                    /* If context independent, it's an operator.  */
  1004.                 || syntax & RE_CONTEXT_INDEP_ANCHORS
  1005.                    /* Otherwise, depends on what's next.  */
  1006.                 || at_endline_loc_p (p, pend, syntax))
  1007.                BUF_PUSH (endline);
  1008.              else
  1009.                goto normal_char;
  1010.            }
  1011.            break;
  1012. case '+':
  1013.         case '?':
  1014.           if ((syntax & RE_BK_PLUS_QM)
  1015.               || (syntax & RE_LIMITED_OPS))
  1016.             goto normal_char;
  1017.         handle_plus:
  1018.         case '*':
  1019.           /* If there is no previous pattern... */
  1020.           if (!laststart)
  1021.             {
  1022.               if (syntax & RE_CONTEXT_INVALID_OPS)
  1023.                 return REG_BADRPT;
  1024.               else if (!(syntax & RE_CONTEXT_INDEP_OPS))
  1025.                 goto normal_char;
  1026.             }
  1027.           {
  1028.             /* Are we optimizing this jump?  */
  1029.             boolean keep_string_p = false;
  1030.             
  1031.             /* 1 means zero (many) matches is allowed.  */
  1032.             char zero_times_ok = 0, many_times_ok = 0;
  1033.             /* If there is a sequence of repetition chars, collapse it
  1034.                down to just one (the right one).  We can't combine
  1035.                interval operators with these because of, e.g., `a{2}*',
  1036.                which should only match an even number of `a's.  */
  1037.             for (;;)
  1038.               {
  1039.                 zero_times_ok |= c != '+';
  1040.                 many_times_ok |= c != '?';
  1041.                 if (p == pend)
  1042.                   break;
  1043.                 PATFETCH (c);
  1044.                 if (c == '*'
  1045.                     || (!(syntax & RE_BK_PLUS_QM) && (c == '+' || c == '?')))
  1046.                   ;
  1047.                 else if (syntax & RE_BK_PLUS_QM  &&  c == '\')
  1048.                   {
  1049.                     if (p == pend) return REG_EESCAPE;
  1050.                     PATFETCH (c1);
  1051.                     if (!(c1 == '+' || c1 == '?'))
  1052.                       {
  1053.                         PATUNFETCH;
  1054.                         PATUNFETCH;
  1055.                         break;
  1056.                       }
  1057.                     c = c1;
  1058.                   }
  1059.                 else
  1060.                   {
  1061.                     PATUNFETCH;
  1062.                     break;
  1063.                   }
  1064.                 /* If we get here, we found another repeat character.  */
  1065.                }
  1066.             /* Star, etc. applied to an empty pattern is equivalent
  1067.                to an empty pattern.  */
  1068.             if (!laststart)  
  1069.               break;
  1070.             /* Now we know whether or not zero matches is allowed
  1071.                and also whether or not two or more matches is allowed.  */
  1072.             if (many_times_ok)
  1073.               { /* More than one repetition is allowed, so put in at the
  1074.                    end a backward relative jump from `b' to before the next
  1075.                    jump we're going to put in below (which jumps from
  1076.                    laststart to after this jump).  
  1077.                    But if we are at the `*' in the exact sequence `.*n',
  1078.                    insert an unconditional jump backwards to the .,
  1079.                    instead of the beginning of the loop.  This way we only
  1080.                    push a failure point once, instead of every time
  1081.                    through the loop.  */
  1082.                 assert (p - 1 > pattern);
  1083.                 /* Allocate the space for the jump.  */
  1084.                 GET_BUFFER_SPACE (3);
  1085.                 /* We know we are not at the first character of the pattern,
  1086.                    because laststart was nonzero.  And we've already
  1087.                    incremented `p', by the way, to be the character after
  1088.                    the `*'.  Do we have to do something analogous here
  1089.                    for null bytes, because of RE_DOT_NOT_NULL?  */
  1090.                 if (TRANSLATE (*(p - 2)) == TRANSLATE ('.')
  1091.     && zero_times_ok
  1092.                     && p < pend && TRANSLATE (*p) == TRANSLATE ('n')
  1093.                     && !(syntax & RE_DOT_NEWLINE))
  1094.                   { /* We have .*n.  */
  1095.                     STORE_JUMP (jump, b, laststart);
  1096.                     keep_string_p = true;
  1097.                   }
  1098.                 else
  1099.                   /* Anything else.  */
  1100.                   STORE_JUMP (maybe_pop_jump, b, laststart - 3);
  1101.                 /* We've added more stuff to the buffer.  */
  1102.                 b += 3;
  1103.               }
  1104.             /* On failure, jump from laststart to b + 3, which will be the
  1105.                end of the buffer after this jump is inserted.  */
  1106.             GET_BUFFER_SPACE (3);
  1107.             INSERT_JUMP (keep_string_p ? on_failure_keep_string_jump
  1108.                                        : on_failure_jump,
  1109.                          laststart, b + 3);
  1110.             pending_exact = 0;
  1111.             b += 3;
  1112.             if (!zero_times_ok)
  1113.               {
  1114.                 /* At least one repetition is required, so insert a
  1115.                    `dummy_failure_jump' before the initial
  1116.                    `on_failure_jump' instruction of the loop. This
  1117.                    effects a skip over that instruction the first time
  1118.                    we hit that loop.  */
  1119.                 GET_BUFFER_SPACE (3);
  1120.                 INSERT_JUMP (dummy_failure_jump, laststart, laststart + 6);
  1121.                 b += 3;
  1122.               }
  1123.             }
  1124.   break;
  1125. case '.':
  1126.           laststart = b;
  1127.           BUF_PUSH (anychar);
  1128.           break;
  1129.         case '[':
  1130.           {
  1131.             boolean had_char_class = false;
  1132.             if (p == pend) return REG_EBRACK;
  1133.             /* Ensure that we have enough space to push a charset: the
  1134.                opcode, the length count, and the bitset; 34 bytes in all.  */
  1135.     GET_BUFFER_SPACE (34);
  1136.             laststart = b;
  1137.             /* We test `*p == '^' twice, instead of using an if
  1138.                statement, so we only need one BUF_PUSH.  */
  1139.             BUF_PUSH (*p == '^' ? charset_not : charset); 
  1140.             if (*p == '^')
  1141.               p++;
  1142.             /* Remember the first position in the bracket expression.  */
  1143.             p1 = p;
  1144.             /* Push the number of bytes in the bitmap.  */
  1145.             BUF_PUSH ((1 << BYTEWIDTH) / BYTEWIDTH);
  1146.             /* Clear the whole map.  */
  1147.             bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH);
  1148.             /* charset_not matches newline according to a syntax bit.  */
  1149.             if ((re_opcode_t) b[-2] == charset_not
  1150.                 && (syntax & RE_HAT_LISTS_NOT_NEWLINE))
  1151.               SET_LIST_BIT ('n');
  1152.             /* Read in characters and ranges, setting map bits.  */
  1153.             for (;;)
  1154.               {
  1155.                 if (p == pend) return REG_EBRACK;
  1156.                 PATFETCH (c);
  1157.                 /*  might escape characters inside [...] and [^...].  */
  1158.                 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\')
  1159.                   {
  1160.                     if (p == pend) return REG_EESCAPE;
  1161.                     PATFETCH (c1);
  1162.                     SET_LIST_BIT (c1);
  1163.                     continue;
  1164.                   }
  1165.                 /* Could be the end of the bracket expression.  If it's
  1166.                    not (i.e., when the bracket expression is `[]' so
  1167.                    far), the ']' character bit gets set way below.  */
  1168.                 if (c == ']' && p != p1 + 1)
  1169.                   break;
  1170.                 /* Look ahead to see if it's a range when the last thing
  1171.                    was a character class.  */
  1172.                 if (had_char_class && c == '-' && *p != ']')
  1173.                   return REG_ERANGE;
  1174.                 /* Look ahead to see if it's a range when the last thing
  1175.                    was a character: if this is a hyphen not at the
  1176.                    beginning or the end of a list, then it's the range
  1177.                    operator.  */
  1178.                 if (c == '-' 
  1179.                     && !(p - 2 >= pattern && p[-2] == '[') 
  1180.                     && !(p - 3 >= pattern && p[-3] == '[' && p[-2] == '^')
  1181.                     && *p != ']')
  1182.                   {
  1183.                     reg_errcode_t ret
  1184.                       = compile_range (&p, pend, translate, syntax, b);
  1185.                     if (ret != REG_NOERROR) return ret;
  1186.                   }
  1187.                 else if (p[0] == '-' && p[1] != ']')
  1188.                   { /* This handles ranges made up of characters only.  */
  1189.                     reg_errcode_t ret;
  1190.     /* Move past the `-'.  */
  1191.                     PATFETCH (c1);
  1192.                     
  1193.                     ret = compile_range (&p, pend, translate, syntax, b);
  1194.                     if (ret != REG_NOERROR) return ret;
  1195.                   }
  1196.                 /* See if we're at the beginning of a possible character
  1197.                    class.  */
  1198.                 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == ':')
  1199.                   { /* Leave room for the null.  */
  1200.                     char str[CHAR_CLASS_MAX_LENGTH + 1];
  1201.                     PATFETCH (c);
  1202.                     c1 = 0;
  1203.                     /* If pattern is `[[:'.  */
  1204.                     if (p == pend) return REG_EBRACK;
  1205.                     for (;;)
  1206.                       {
  1207.                         PATFETCH (c);
  1208.                         if (c == ':' || c == ']' || p == pend
  1209.                             || c1 == CHAR_CLASS_MAX_LENGTH)
  1210.                           break;
  1211.                         str[c1++] = c;
  1212.                       }
  1213.                     str[c1] = '';
  1214.                     /* If isn't a word bracketed by `[:' and:`]':
  1215.                        undo the ending character, the letters, and leave 
  1216.                        the leading `:' and `[' (but set bits for them).  */
  1217.                     if (c == ':' && *p == ']')
  1218.                       {
  1219.                         int ch;
  1220.                         boolean is_alnum = STREQ (str, "alnum");
  1221.                         boolean is_alpha = STREQ (str, "alpha");
  1222.                         boolean is_blank = STREQ (str, "blank");
  1223.                         boolean is_cntrl = STREQ (str, "cntrl");
  1224.                         boolean is_digit = STREQ (str, "digit");
  1225.                         boolean is_graph = STREQ (str, "graph");
  1226.                         boolean is_lower = STREQ (str, "lower");
  1227.                         boolean is_print = STREQ (str, "print");
  1228.                         boolean is_punct = STREQ (str, "punct");
  1229.                         boolean is_space = STREQ (str, "space");
  1230.                         boolean is_upper = STREQ (str, "upper");
  1231.                         boolean is_xdigit = STREQ (str, "xdigit");
  1232.                         
  1233.                         if (!IS_CHAR_CLASS (str)) return REG_ECTYPE;
  1234.                         /* Throw away the ] at the end of the character
  1235.                            class.  */
  1236.                         PATFETCH (c);
  1237.                         if (p == pend) return REG_EBRACK;
  1238.                         for (ch = 0; ch < 1 << BYTEWIDTH; ch++)
  1239.                           {
  1240.                             if (   (is_alnum  && ISALNUM (ch))
  1241.                                 || (is_alpha  && ISALPHA (ch))
  1242.                                 || (is_blank  && ISBLANK (ch))
  1243.                                 || (is_cntrl  && ISCNTRL (ch))
  1244.                                 || (is_digit  && ISDIGIT (ch))
  1245.                                 || (is_graph  && ISGRAPH (ch))
  1246.                                 || (is_lower  && ISLOWER (ch))
  1247.                                 || (is_print  && ISPRINT (ch))
  1248.                                 || (is_punct  && ISPUNCT (ch))
  1249.                                 || (is_space  && ISSPACE (ch))
  1250.                                 || (is_upper  && ISUPPER (ch))
  1251.                                 || (is_xdigit && ISXDIGIT (ch)))
  1252.                             SET_LIST_BIT (ch);
  1253.                           }
  1254.                         had_char_class = true;
  1255.                       }
  1256.                     else
  1257.                       {
  1258.                         c1++;
  1259.                         while (c1--)    
  1260.                           PATUNFETCH;
  1261.                         SET_LIST_BIT ('[');
  1262.                         SET_LIST_BIT (':');
  1263.                         had_char_class = false;
  1264.                       }
  1265.                   }
  1266.                 else
  1267.                   {
  1268.                     had_char_class = false;
  1269.                     SET_LIST_BIT (c);
  1270.                   }
  1271.               }
  1272.             /* Discard any (non)matching list bytes that are all 0 at the
  1273.                end of the map.  Decrease the map-length byte too.  */
  1274.             while ((int) b[-1] > 0 && b[b[-1] - 1] == 0) 
  1275.               b[-1]--; 
  1276.             b += b[-1];
  1277.           }
  1278.           break;
  1279. case '(':
  1280.           if (syntax & RE_NO_BK_PARENS)
  1281.             goto handle_open;
  1282.           else
  1283.             goto normal_char;
  1284.         case ')':
  1285.           if (syntax & RE_NO_BK_PARENS)
  1286.             goto handle_close;
  1287.           else
  1288.             goto normal_char;
  1289.         case 'n':
  1290.           if (syntax & RE_NEWLINE_ALT)
  1291.             goto handle_alt;
  1292.           else
  1293.             goto normal_char;
  1294. case '|':
  1295.           if (syntax & RE_NO_BK_VBAR)
  1296.             goto handle_alt;
  1297.           else
  1298.             goto normal_char;
  1299.         case '{':
  1300.            if (syntax & RE_INTERVALS && syntax & RE_NO_BK_BRACES)
  1301.              goto handle_interval;
  1302.            else
  1303.              goto normal_char;
  1304.         case '\':
  1305.           if (p == pend) return REG_EESCAPE;
  1306.           /* Do not translate the character after the , so that we can
  1307.              distinguish, e.g., B from b, even if we normally would
  1308.              translate, e.g., B to b.  */
  1309.           PATFETCH_RAW (c);
  1310.           switch (c)
  1311.             {
  1312.             case '(':
  1313.               if (syntax & RE_NO_BK_PARENS)
  1314.                 goto normal_backslash;
  1315.             handle_open:
  1316.               bufp->re_nsub++;
  1317.               regnum++;
  1318.               if (COMPILE_STACK_FULL)
  1319.                 { 
  1320.                   RETALLOC (compile_stack.stack, compile_stack.size << 1,
  1321.                             compile_stack_elt_t);
  1322.                   if (compile_stack.stack == NULL) return REG_ESPACE;
  1323.                   compile_stack.size <<= 1;
  1324.                 }
  1325.               /* These are the values to restore when we hit end of this
  1326.                  group.  They are all relative offsets, so that if the
  1327.                  whole pattern moves because of realloc, they will still
  1328.                  be valid.  */
  1329.               COMPILE_STACK_TOP.begalt_offset = begalt - bufp->buffer;
  1330.               COMPILE_STACK_TOP.fixup_alt_jump 
  1331.                 = fixup_alt_jump ? fixup_alt_jump - bufp->buffer + 1 : 0;
  1332.               COMPILE_STACK_TOP.laststart_offset = b - bufp->buffer;
  1333.               COMPILE_STACK_TOP.regnum = regnum;
  1334.               /* We will eventually replace the 0 with the number of
  1335.                  groups inner to this one.  But do not push a
  1336.                  start_memory for groups beyond the last one we can
  1337.                  represent in the compiled pattern.  */
  1338.               if (regnum <= MAX_REGNUM)
  1339.                 {
  1340.                   COMPILE_STACK_TOP.inner_group_offset = b - bufp->buffer + 2;
  1341.                   BUF_PUSH_3 (start_memory, regnum, 0);
  1342.                 }
  1343.                 
  1344.               compile_stack.avail++;
  1345.               fixup_alt_jump = 0;
  1346.               laststart = 0;
  1347.               begalt = b;
  1348.       /* If we've reached MAX_REGNUM groups, then this open
  1349.  won't actually generate any code, so we'll have to
  1350.  clear pending_exact explicitly.  */
  1351.       pending_exact = 0;
  1352.               break;
  1353.             case ')':
  1354.               if (syntax & RE_NO_BK_PARENS) goto normal_backslash;
  1355.               if (COMPILE_STACK_EMPTY)
  1356.                 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
  1357.                   goto normal_backslash;
  1358.                 else
  1359.                   return REG_ERPAREN;
  1360.             handle_close:
  1361.               if (fixup_alt_jump)
  1362.                 { /* Push a dummy failure point at the end of the
  1363.                      alternative for a possible future
  1364.                      `pop_failure_jump' to pop.  See comments at
  1365.                      `push_dummy_failure' in `re_match_2'.  */
  1366.                   BUF_PUSH (push_dummy_failure);
  1367.                   
  1368.                   /* We allocated space for this jump when we assigned
  1369.                      to `fixup_alt_jump', in the `handle_alt' case below.  */
  1370.                   STORE_JUMP (jump_past_alt, fixup_alt_jump, b - 1);
  1371.                 }
  1372.               /* See similar code for backslashed left paren above.  */
  1373.               if (COMPILE_STACK_EMPTY)
  1374.                 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
  1375.                   goto normal_char;
  1376.                 else
  1377.                   return REG_ERPAREN;
  1378.               /* Since we just checked for an empty stack above, this
  1379.                  ``can't happen''.  */
  1380.               assert (compile_stack.avail != 0);
  1381.               {
  1382.                 /* We don't just want to restore into `regnum', because
  1383.                    later groups should continue to be numbered higher,
  1384.                    as in `(ab)c(de)' -- the second group is #2.  */
  1385.                 regnum_t this_group_regnum;
  1386.                 compile_stack.avail--;
  1387.                 begalt = bufp->buffer + COMPILE_STACK_TOP.begalt_offset;
  1388.                 fixup_alt_jump
  1389.                   = COMPILE_STACK_TOP.fixup_alt_jump
  1390.                     ? bufp->buffer + COMPILE_STACK_TOP.fixup_alt_jump - 1 
  1391.                     : 0;
  1392.                 laststart = bufp->buffer + COMPILE_STACK_TOP.laststart_offset;
  1393.                 this_group_regnum = COMPILE_STACK_TOP.regnum;
  1394. /* If we've reached MAX_REGNUM groups, then this open
  1395.    won't actually generate any code, so we'll have to
  1396.    clear pending_exact explicitly.  */
  1397. pending_exact = 0;
  1398.                 /* We're at the end of the group, so now we know how many
  1399.                    groups were inside this one.  */
  1400.                 if (this_group_regnum <= MAX_REGNUM)
  1401.                   {
  1402.                     unsigned char *inner_group_loc
  1403.                       = bufp->buffer + COMPILE_STACK_TOP.inner_group_offset;
  1404.                     
  1405.                     *inner_group_loc = regnum - this_group_regnum;
  1406.                     BUF_PUSH_3 (stop_memory, this_group_regnum,
  1407.                                 regnum - this_group_regnum);
  1408.                   }
  1409.               }
  1410.               break;
  1411.             case '|': /* `|'.  */
  1412.               if (syntax & RE_LIMITED_OPS || syntax & RE_NO_BK_VBAR)
  1413.                 goto normal_backslash;
  1414.             handle_alt:
  1415.               if (syntax & RE_LIMITED_OPS)
  1416.                 goto normal_char;
  1417.               /* Insert before the previous alternative a jump which
  1418.                  jumps to this alternative if the former fails.  */
  1419.               GET_BUFFER_SPACE (3);
  1420.               INSERT_JUMP (on_failure_jump, begalt, b + 6);
  1421.               pending_exact = 0;
  1422.               b += 3;
  1423.               /* The alternative before this one has a jump after it
  1424.                  which gets executed if it gets matched.  Adjust that
  1425.                  jump so it will jump to this alternative's analogous
  1426.                  jump (put in below, which in turn will jump to the next
  1427.                  (if any) alternative's such jump, etc.).  The last such
  1428.                  jump jumps to the correct final destination.  A picture:
  1429.                           _____ _____ 
  1430.                           |   | |   |   
  1431.                           |   v |   v 
  1432.                          a | b   | c   
  1433.                  If we are at `b', then fixup_alt_jump right now points to a
  1434.                  three-byte space after `a'.  We'll put in the jump, set
  1435.                  fixup_alt_jump to right after `b', and leave behind three
  1436.                  bytes which we'll fill in when we get to after `c'.  */
  1437.               if (fixup_alt_jump)
  1438.                 STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
  1439.               /* Mark and leave space for a jump after this alternative,
  1440.                  to be filled in later either by next alternative or
  1441.                  when know we're at the end of a series of alternatives.  */
  1442.               fixup_alt_jump = b;
  1443.               GET_BUFFER_SPACE (3);
  1444.               b += 3;
  1445.               laststart = 0;
  1446.               begalt = b;
  1447.               break;
  1448.             case '{': 
  1449.               /* If { is a literal.  */
  1450.               if (!(syntax & RE_INTERVALS)
  1451.                      /* If we're at `{' and it's not the open-interval 
  1452.                         operator.  */
  1453.                   || ((syntax & RE_INTERVALS) && (syntax & RE_NO_BK_BRACES))
  1454.                   || (p - 2 == pattern  &&  p == pend))
  1455.                 goto normal_backslash;
  1456.             handle_interval:
  1457.               {
  1458.                 /* If got here, then the syntax allows intervals.  */
  1459.                 /* At least (most) this many matches must be made.  */
  1460.                 int lower_bound = -1, upper_bound = -1;
  1461.                 beg_interval = p - 1;
  1462.                 if (p == pend)
  1463.                   {
  1464.                     if (syntax & RE_NO_BK_BRACES)
  1465.                       goto unfetch_interval;
  1466.                     else
  1467.                       return REG_EBRACE;
  1468.                   }
  1469.                 GET_UNSIGNED_NUMBER (lower_bound);
  1470.                 if (c == ',')
  1471.                   {
  1472.                     GET_UNSIGNED_NUMBER (upper_bound);
  1473.                     if (upper_bound < 0) upper_bound = RE_DUP_MAX;
  1474.                   }
  1475.                 else
  1476.                   /* Interval such as `{1}' => match exactly once. */
  1477.                   upper_bound = lower_bound;
  1478.                 if (lower_bound < 0 || upper_bound > RE_DUP_MAX
  1479.                     || lower_bound > upper_bound)
  1480.                   {
  1481.                     if (syntax & RE_NO_BK_BRACES)
  1482.                       goto unfetch_interval;
  1483.                     else 
  1484.                       return REG_BADBR;
  1485.                   }
  1486.                 if (!(syntax & RE_NO_BK_BRACES)) 
  1487.                   {
  1488.                     if (c != '\') return REG_EBRACE;
  1489.                     PATFETCH (c);
  1490.                   }
  1491.                 if (c != '}')
  1492.                   {
  1493.                     if (syntax & RE_NO_BK_BRACES)
  1494.                       goto unfetch_interval;
  1495.                     else 
  1496.                       return REG_BADBR;
  1497.                   }
  1498.                 /* We just parsed a valid interval.  */
  1499.                 /* If it's invalid to have no preceding re.  */
  1500.                 if (!laststart)
  1501.                   {
  1502.                     if (syntax & RE_CONTEXT_INVALID_OPS)
  1503.                       return REG_BADRPT;
  1504.                     else if (syntax & RE_CONTEXT_INDEP_OPS)
  1505.                       laststart = b;
  1506.                     else
  1507.                       goto unfetch_interval;
  1508.                   }
  1509.                 /* If the upper bound is zero, don't want to succeed at
  1510.                    all; jump from `laststart' to `b + 3', which will be
  1511.                    the end of the buffer after we insert the jump.  */
  1512.                  if (upper_bound == 0)
  1513.                    {
  1514.                      GET_BUFFER_SPACE (3);
  1515.                      INSERT_JUMP (jump, laststart, b + 3);
  1516.                      b += 3;
  1517.                    }
  1518.                  /* Otherwise, we have a nontrivial interval.  When
  1519.                     we're all done, the pattern will look like:
  1520.                       set_number_at <jump count> <upper bound>
  1521.                       set_number_at <succeed_n count> <lower bound>
  1522.                       succeed_n <after jump addr> <succed_n count>
  1523.                       <body of loop>
  1524.                       jump_n <succeed_n addr> <jump count>
  1525.                     (The upper bound and `jump_n' are omitted if
  1526.                     `upper_bound' is 1, though.)  */
  1527.                  else 
  1528.                    { /* If the upper bound is > 1, we need to insert
  1529.                         more at the end of the loop.  */
  1530.                      unsigned nbytes = 10 + (upper_bound > 1) * 10;
  1531.                      GET_BUFFER_SPACE (nbytes);
  1532.                      /* Initialize lower bound of the `succeed_n', even
  1533.                         though it will be set during matching by its
  1534.                         attendant `set_number_at' (inserted next),
  1535.                         because `re_compile_fastmap' needs to know.
  1536.                         Jump to the `jump_n' we might insert below.  */
  1537.                      INSERT_JUMP2 (succeed_n, laststart,
  1538.                                    b + 5 + (upper_bound > 1) * 5,
  1539.                                    lower_bound);
  1540.                      b += 5;
  1541.                      /* Code to initialize the lower bound.  Insert 
  1542.                         before the `succeed_n'.  The `5' is the last two
  1543.                         bytes of this `set_number_at', plus 3 bytes of
  1544.                         the following `succeed_n'.  */
  1545.                      insert_op2 (set_number_at, laststart, 5, lower_bound, b);
  1546.                      b += 5;
  1547.                      if (upper_bound > 1)
  1548.                        { /* More than one repetition is allowed, so
  1549.                             append a backward jump to the `succeed_n'
  1550.                             that starts this interval.
  1551.                             
  1552.                             When we've reached this during matching,
  1553.                             we'll have matched the interval once, so
  1554.                             jump back only `upper_bound - 1' times.  */
  1555.                          STORE_JUMP2 (jump_n, b, laststart + 5,
  1556.                                       upper_bound - 1);
  1557.                          b += 5;
  1558.                          /* The location we want to set is the second
  1559.                             parameter of the `jump_n'; that is `b-2' as
  1560.                             an absolute address.  `laststart' will be
  1561.                             the `set_number_at' we're about to insert;
  1562.                             `laststart+3' the number to set, the source
  1563.                             for the relative address.  But we are
  1564.                             inserting into the middle of the pattern --
  1565.                             so everything is getting moved up by 5.
  1566.                             Conclusion: (b - 2) - (laststart + 3) + 5,
  1567.                             i.e., b - laststart.
  1568.                             
  1569.                             We insert this at the beginning of the loop
  1570.                             so that if we fail during matching, we'll
  1571.                             reinitialize the bounds.  */
  1572.                          insert_op2 (set_number_at, laststart, b - laststart,
  1573.                                      upper_bound - 1, b);
  1574.                          b += 5;
  1575.                        }
  1576.                    }
  1577.                 pending_exact = 0;
  1578.                 beg_interval = NULL;
  1579.               }
  1580.               break;
  1581.             unfetch_interval:
  1582.               /* If an invalid interval, match the characters as literals.  */
  1583.                assert (beg_interval);
  1584.                p = beg_interval;
  1585.                beg_interval = NULL;
  1586.                /* normal_char and normal_backslash need `c'.  */
  1587.                PATFETCH (c);
  1588.                if (!(syntax & RE_NO_BK_BRACES))
  1589.                  {
  1590.                    if (p > pattern  &&  p[-1] == '\')
  1591.                      goto normal_backslash;
  1592.                  }
  1593.                goto normal_char;
  1594. #ifdef emacs
  1595.             /* There is no way to specify the before_dot and after_dot
  1596.                operators.  rms says this is ok.  --karl  */
  1597.             case '=':
  1598.               BUF_PUSH (at_dot);
  1599.               break;
  1600.             case 's':
  1601.               laststart = b;
  1602.               PATFETCH (c);
  1603.               BUF_PUSH_2 (syntaxspec, syntax_spec_code[c]);
  1604.               break;
  1605.             case 'S':
  1606.               laststart = b;
  1607.               PATFETCH (c);
  1608.               BUF_PUSH_2 (notsyntaxspec, syntax_spec_code[c]);
  1609.               break;
  1610. #endif /* emacs */
  1611.             case 'w':
  1612.               laststart = b;
  1613.               BUF_PUSH (wordchar);
  1614.               break;
  1615.             case 'W':
  1616.               laststart = b;
  1617.               BUF_PUSH (notwordchar);
  1618.               break;
  1619.             case '<':
  1620.               BUF_PUSH (wordbeg);
  1621.               break;
  1622.             case '>':
  1623.               BUF_PUSH (wordend);
  1624.               break;
  1625.             case 'b':
  1626.               BUF_PUSH (wordbound);
  1627.               break;
  1628.             case 'B':
  1629.               BUF_PUSH (notwordbound);
  1630.               break;
  1631.             case '`':
  1632.               BUF_PUSH (begbuf);
  1633.               break;
  1634.             case ''':
  1635.               BUF_PUSH (endbuf);
  1636.               break;
  1637.             case '1': case '2': case '3': case '4': case '5':
  1638.             case '6': case '7': case '8': case '9':
  1639.               if (syntax & RE_NO_BK_REFS)
  1640.                 goto normal_char;
  1641.               c1 = c - '0';
  1642.               if (c1 > regnum)
  1643.                 return REG_ESUBREG;
  1644.               /* Can't back reference to a subexpression if inside of it.  */
  1645.               if (group_in_compile_stack (compile_stack, c1))
  1646.                 goto normal_char;
  1647.               laststart = b;
  1648.               BUF_PUSH_2 (duplicate, c1);
  1649.               break;
  1650.             case '+':
  1651.             case '?':
  1652.               if (syntax & RE_BK_PLUS_QM)
  1653.                 goto handle_plus;
  1654.               else
  1655.                 goto normal_backslash;
  1656.             default:
  1657.             normal_backslash:
  1658.               /* You might think it would be useful for  to mean
  1659.                  not to translate; but if we don't translate it
  1660.                  it will never match anything.  */
  1661.               c = TRANSLATE (c);
  1662.               goto normal_char;
  1663.             }
  1664.           break;
  1665. default:
  1666.         /* Expects the character in `c'.  */
  1667. normal_char:
  1668.       /* If no exactn currently being built.  */
  1669.           if (!pending_exact 
  1670.               /* If last exactn not at current position.  */
  1671.               || pending_exact + *pending_exact + 1 != b
  1672.               
  1673.               /* We have only one byte following the exactn for the count.  */
  1674.       || *pending_exact == (1 << BYTEWIDTH) - 1
  1675.               /* If followed by a repetition operator.  */
  1676.               || *p == '*' || *p == '^'
  1677.       || ((syntax & RE_BK_PLUS_QM)
  1678.   ? *p == '\' && (p[1] == '+' || p[1] == '?')
  1679.   : (*p == '+' || *p == '?'))
  1680.       || ((syntax & RE_INTERVALS)
  1681.                   && ((syntax & RE_NO_BK_BRACES)
  1682.       ? *p == '{'
  1683.                       : (p[0] == '\' && p[1] == '{'))))
  1684.     {
  1685.       /* Start building a new exactn.  */
  1686.               
  1687.               laststart = b;
  1688.       BUF_PUSH_2 (exactn, 0);
  1689.       pending_exact = b - 1;
  1690.             }
  1691.             
  1692.   BUF_PUSH (c);
  1693.           (*pending_exact)++;
  1694.   break;
  1695.         } /* switch (c) */
  1696.     } /* while p != pend */
  1697.   
  1698.   /* Through the pattern now.  */
  1699.   
  1700.   if (fixup_alt_jump)
  1701.     STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
  1702.   if (!COMPILE_STACK_EMPTY) 
  1703.     return REG_EPAREN;
  1704.   free (compile_stack.stack);
  1705.   /* We have succeeded; set the length of the buffer.  */
  1706.   bufp->used = b - bufp->buffer;
  1707. #ifdef DEBUG
  1708.   if (debug)
  1709.     {
  1710.       DEBUG_PRINT1 ("nCompiled pattern: ");
  1711.       print_compiled_pattern (bufp);
  1712.     }
  1713. #endif /* DEBUG */
  1714.   return REG_NOERROR;
  1715. } /* regex_compile */
  1716. /* Subroutines for `regex_compile'.  */
  1717. /* Store OP at LOC followed by two-byte integer parameter ARG.  */
  1718. static void
  1719. store_op1 (
  1720.     re_opcode_t op,
  1721.     unsigned char *loc,
  1722.     int arg)
  1723. {
  1724.   *loc = (unsigned char) op;
  1725.   STORE_NUMBER (loc + 1, arg);
  1726. }
  1727. /* Like `store_op1', but for two two-byte parameters ARG1 and ARG2.  */
  1728. static void
  1729. store_op2 (
  1730.     re_opcode_t op,
  1731.     unsigned char *loc,
  1732.     int arg1, int arg2)
  1733. {
  1734.   *loc = (unsigned char) op;
  1735.   STORE_NUMBER (loc + 1, arg1);
  1736.   STORE_NUMBER (loc + 3, arg2);
  1737. }
  1738. /* Copy the bytes from LOC to END to open up three bytes of space at LOC
  1739.    for OP followed by two-byte integer parameter ARG.  */
  1740. static void
  1741. insert_op1 (
  1742.     re_opcode_t op,
  1743.     unsigned char *loc,
  1744.     int arg,
  1745.     unsigned char *end)
  1746. {
  1747.   register unsigned char *pfrom = end;
  1748.   register unsigned char *pto = end + 3;
  1749.   while (pfrom != loc)
  1750.     *--pto = *--pfrom;
  1751.     
  1752.   store_op1 (op, loc, arg);
  1753. }
  1754. /* Like `insert_op1', but for two two-byte parameters ARG1 and ARG2.  */
  1755. static void
  1756. insert_op2 (
  1757.     re_opcode_t op,
  1758.     unsigned char *loc,
  1759.     int arg1, int arg2,
  1760.     unsigned char *end)
  1761. {
  1762.   register unsigned char *pfrom = end;
  1763.   register unsigned char *pto = end + 5;
  1764.   while (pfrom != loc)
  1765.     *--pto = *--pfrom;
  1766.     
  1767.   store_op2 (op, loc, arg1, arg2);
  1768. }
  1769. /* P points to just after a ^ in PATTERN.  Return true if that ^ comes
  1770.    after an alternative or a begin-subexpression.  We assume there is at
  1771.    least one character before the ^.  */
  1772. static boolean
  1773. at_begline_loc_p (
  1774.     const char *pattern, const char *p,
  1775.     reg_syntax_t syntax)
  1776. {
  1777.   const char *prev = p - 2;
  1778.   boolean prev_prev_backslash = prev > pattern && prev[-1] == '\';
  1779.   
  1780.   return
  1781.        /* After a subexpression?  */
  1782.        (*prev == '(' && (syntax & RE_NO_BK_PARENS || prev_prev_backslash))
  1783.        /* After an alternative?  */
  1784.     || (*prev == '|' && (syntax & RE_NO_BK_VBAR || prev_prev_backslash));
  1785. }
  1786. /* The dual of at_begline_loc_p.  This one is for $.  We assume there is
  1787.    at least one character after the $, i.e., `P < PEND'.  */
  1788. static boolean
  1789. at_endline_loc_p (
  1790.     const char *p, const char *pend,
  1791.     int syntax)
  1792. {
  1793.   const char *next = p;
  1794.   boolean next_backslash = *next == '\';
  1795.   const char *next_next = p + 1 < pend ? p + 1 : NULL;
  1796.   
  1797.   return
  1798.        /* Before a subexpression?  */
  1799.        (syntax & RE_NO_BK_PARENS ? *next == ')'
  1800.         : next_backslash && next_next && *next_next == ')')
  1801.        /* Before an alternative?  */
  1802.     || (syntax & RE_NO_BK_VBAR ? *next == '|'
  1803.         : next_backslash && next_next && *next_next == '|');
  1804. }
  1805. /* Returns true if REGNUM is in one of COMPILE_STACK's elements and 
  1806.    false if it's not.  */
  1807. static boolean
  1808. group_in_compile_stack (
  1809.     compile_stack_type compile_stack,
  1810.     regnum_t regnum)
  1811. {
  1812.   int this_element;
  1813.   for (this_element = compile_stack.avail - 1;  
  1814.        this_element >= 0; 
  1815.        this_element--)
  1816.     if (compile_stack.stack[this_element].regnum == regnum)
  1817.       return true;
  1818.   return false;
  1819. }
  1820. /* Read the ending character of a range (in a bracket expression) from the
  1821.    uncompiled pattern *P_PTR (which ends at PEND).  We assume the
  1822.    starting character is in `P[-2]'.  (`P[-1]' is the character `-'.)
  1823.    Then we set the translation of all bits between the starting and
  1824.    ending characters (inclusive) in the compiled pattern B.
  1825.    
  1826.    Return an error code.
  1827.    
  1828.    We use these short variable names so we can use the same macros as
  1829.    `regex_compile' itself.  */
  1830. static reg_errcode_t
  1831. compile_range (
  1832.     const char **p_ptr, const char *pend,
  1833.     char *translate,
  1834.     reg_syntax_t syntax,
  1835.     unsigned char *b)
  1836. {
  1837.   unsigned this_char;
  1838.   const char *p = *p_ptr;
  1839.   int range_start, range_end;
  1840.   
  1841.   if (p == pend)
  1842.     return REG_ERANGE;
  1843.   /* Even though the pattern is a signed `char *', we need to fetch
  1844.      with unsigned char *'s; if the high bit of the pattern character
  1845.      is set, the range endpoints will be negative if we fetch using a
  1846.      signed char *.
  1847.      We also want to fetch the endpoints without translating them; the 
  1848.      appropriate translation is done in the bit-setting loop below.  */
  1849.   range_start = ((unsigned char *) p)[-2];
  1850.   range_end   = ((unsigned char *) p)[0];
  1851.   /* Have to increment the pointer into the pattern string, so the
  1852.      caller isn't still at the ending character.  */
  1853.   (*p_ptr)++;
  1854.   /* If the start is after the end, the range is empty.  */
  1855.   if (range_start > range_end)
  1856.     return syntax & RE_NO_EMPTY_RANGES ? REG_ERANGE : REG_NOERROR;
  1857.   /* Here we see why `this_char' has to be larger than an `unsigned
  1858.      char' -- the range is inclusive, so if `range_end' == 0xff
  1859.      (assuming 8-bit characters), we would otherwise go into an infinite
  1860.      loop, since all characters <= 0xff.  */
  1861.   for (this_char = range_start; this_char <= range_end; this_char++)
  1862.     {
  1863.       SET_LIST_BIT (TRANSLATE (this_char));
  1864.     }
  1865.   
  1866.   return REG_NOERROR;
  1867. }
  1868. /* Failure stack declarations and macros; both re_compile_fastmap and
  1869.    re_match_2 use a failure stack.  These have to be macros because of
  1870.    REGEX_ALLOCATE.  */
  1871.    
  1872. /* Number of failure points for which to initially allocate space
  1873.    when matching.  If this number is exceeded, we allocate more
  1874.    space, so it is not a hard limit.  */
  1875. #ifndef INIT_FAILURE_ALLOC
  1876. #define INIT_FAILURE_ALLOC 5
  1877. #endif
  1878. /* Roughly the maximum number of failure points on the stack.  Would be
  1879.    exactly that if always used MAX_FAILURE_SPACE each time we failed.
  1880.    This is a variable only so users of regex can assign to it; we never
  1881.    change it ourselves.  */
  1882. static int re_max_failures = 2000;
  1883. typedef const unsigned char *fail_stack_elt_t;
  1884. typedef struct
  1885. {
  1886.   fail_stack_elt_t *stack;
  1887.   unsigned size;
  1888.   unsigned avail; /* Offset of next open position.  */
  1889. } fail_stack_type;
  1890. #define FAIL_STACK_EMPTY()     (fail_stack.avail == 0)
  1891. #define FAIL_STACK_PTR_EMPTY() (fail_stack_ptr->avail == 0)
  1892. #define FAIL_STACK_FULL()      (fail_stack.avail == fail_stack.size)
  1893. #define FAIL_STACK_TOP()       (fail_stack.stack[fail_stack.avail])
  1894. /* Initialize `fail_stack'.  Do `return -2' if the alloc fails.  */
  1895. #define INIT_FAIL_STACK()
  1896.   do {
  1897.     fail_stack.stack = (fail_stack_elt_t *)
  1898.       REGEX_ALLOCATE (INIT_FAILURE_ALLOC * sizeof (fail_stack_elt_t));
  1899.     if (fail_stack.stack == NULL)
  1900.       return -2;
  1901.     fail_stack.size = INIT_FAILURE_ALLOC;
  1902.     fail_stack.avail = 0;
  1903.   } while (0)
  1904. /* Double the size of FAIL_STACK, up to approximately `re_max_failures' items.
  1905.    Return 1 if succeeds, and 0 if either ran out of memory
  1906.    allocating space for it or it was already too large.  
  1907.    
  1908.    REGEX_REALLOCATE requires `destination' be declared.   */
  1909. #define DOUBLE_FAIL_STACK(fail_stack)
  1910.   ((fail_stack).size > re_max_failures * MAX_FAILURE_ITEMS
  1911.    ? 0
  1912.    : ((fail_stack).stack = (fail_stack_elt_t *)
  1913.         REGEX_REALLOCATE ((fail_stack).stack, 
  1914.           (fail_stack).size * sizeof (fail_stack_elt_t),
  1915.           ((fail_stack).size << 1) * sizeof (fail_stack_elt_t)),
  1916.       (fail_stack).stack == NULL
  1917.       ? 0
  1918.       : ((fail_stack).size <<= 1, 
  1919.          1)))
  1920. /* Push PATTERN_OP on FAIL_STACK. 
  1921.    Return 1 if was able to do so and 0 if ran out of memory allocating
  1922.    space to do so.  */
  1923. #define PUSH_PATTERN_OP(pattern_op, fail_stack)
  1924.   ((FAIL_STACK_FULL ()
  1925.     && !DOUBLE_FAIL_STACK (fail_stack))
  1926.     ? 0
  1927.     : ((fail_stack).stack[(fail_stack).avail++] = pattern_op,
  1928.        1))
  1929. /* This pushes an item onto the failure stack.  Must be a four-byte
  1930.    value.  Assumes the variable `fail_stack'.  Probably should only
  1931.    be called from within `PUSH_FAILURE_POINT'.  */
  1932. #define PUSH_FAILURE_ITEM(item)
  1933.   fail_stack.stack[fail_stack.avail++] = (fail_stack_elt_t) item
  1934. /* The complement operation.  Assumes `fail_stack' is nonempty.  */
  1935. #define POP_FAILURE_ITEM() fail_stack.stack[--fail_stack.avail]
  1936. /* Used to omit pushing failure point id's when we're not debugging.  */
  1937. #ifdef DEBUG
  1938. #define DEBUG_PUSH PUSH_FAILURE_ITEM
  1939. #define DEBUG_POP(item_addr) *(item_addr) = POP_FAILURE_ITEM ()
  1940. #else
  1941. #define DEBUG_PUSH(item)
  1942. #define DEBUG_POP(item_addr)
  1943. #endif
  1944. /* Push the information about the state we will need
  1945.    if we ever fail back to it.  
  1946.    
  1947.    Requires variables fail_stack, regstart, regend, reg_info, and
  1948.    num_regs be declared.  DOUBLE_FAIL_STACK requires `destination' be
  1949.    declared.
  1950.    
  1951.    Does `return FAILURE_CODE' if runs out of memory.  */
  1952. #define PUSH_FAILURE_POINT(pattern_place, string_place, failure_code)
  1953.   do {
  1954.     char *destination;
  1955.     /* Must be int, so when we don't save any registers, the arithmetic
  1956.        of 0 + -1 isn't done as unsigned.  */
  1957.     int this_reg;
  1958.     
  1959.     DEBUG_STATEMENT (failure_id++);
  1960.     DEBUG_STATEMENT (nfailure_points_pushed++);
  1961.     DEBUG_PRINT2 ("nPUSH_FAILURE_POINT #%u:n", failure_id);
  1962.     DEBUG_PRINT2 ("  Before push, next avail: %dn", (fail_stack).avail);
  1963.     DEBUG_PRINT2 ("                     size: %dn", (fail_stack).size);
  1964.     DEBUG_PRINT2 ("  slots needed: %dn", NUM_FAILURE_ITEMS);
  1965.     DEBUG_PRINT2 ("     available: %dn", REMAINING_AVAIL_SLOTS);
  1966.     /* Ensure we have enough space allocated for what we will push.  */
  1967.     while (REMAINING_AVAIL_SLOTS < NUM_FAILURE_ITEMS)
  1968.       {
  1969.         if (!DOUBLE_FAIL_STACK (fail_stack))
  1970.           return failure_code;
  1971.         DEBUG_PRINT2 ("n  Doubled stack; size now: %dn",
  1972.        (fail_stack).size);
  1973.         DEBUG_PRINT2 ("  slots available: %dn", REMAINING_AVAIL_SLOTS);
  1974.       }
  1975.     /* Push the info, starting with the registers.  */
  1976.     DEBUG_PRINT1 ("n");
  1977.     for (this_reg = lowest_active_reg; this_reg <= highest_active_reg;
  1978.          this_reg++)
  1979.       {
  1980. DEBUG_PRINT2 ("  Pushing reg: %dn", this_reg);
  1981.         DEBUG_STATEMENT (num_regs_pushed++);
  1982. DEBUG_PRINT2 ("    start: 0x%xn", regstart[this_reg]);
  1983.         PUSH_FAILURE_ITEM (regstart[this_reg]);
  1984.                                                                         
  1985. DEBUG_PRINT2 ("    end: 0x%xn", regend[this_reg]);
  1986.         PUSH_FAILURE_ITEM (regend[this_reg]);
  1987. DEBUG_PRINT2 ("    info: 0x%xn      ", reg_info[this_reg]);
  1988.         DEBUG_PRINT2 (" match_null=%d",
  1989.                       REG_MATCH_NULL_STRING_P (reg_info[this_reg]));
  1990.         DEBUG_PRINT2 (" active=%d", IS_ACTIVE (reg_info[this_reg]));
  1991.         DEBUG_PRINT2 (" matched_something=%d",
  1992.                       MATCHED_SOMETHING (reg_info[this_reg]));
  1993.         DEBUG_PRINT2 (" ever_matched=%d",
  1994.                       EVER_MATCHED_SOMETHING (reg_info[this_reg]));
  1995. DEBUG_PRINT1 ("n");
  1996.         PUSH_FAILURE_ITEM (reg_info[this_reg].word);
  1997.       }
  1998.     DEBUG_PRINT2 ("  Pushing  low active reg: %dn", lowest_active_reg);
  1999.     PUSH_FAILURE_ITEM (lowest_active_reg);
  2000.     DEBUG_PRINT2 ("  Pushing high active reg: %dn", highest_active_reg);
  2001.     PUSH_FAILURE_ITEM (highest_active_reg);
  2002.     DEBUG_PRINT2 ("  Pushing pattern 0x%x: ", pattern_place);
  2003.     DEBUG_PRINT_COMPILED_PATTERN (bufp, pattern_place, pend);
  2004.     PUSH_FAILURE_ITEM (pattern_place);
  2005.     DEBUG_PRINT2 ("  Pushing string 0x%x: `", string_place);
  2006.     DEBUG_PRINT_DOUBLE_STRING (string_place, string1, size1, string2,   
  2007.  size2);
  2008.     DEBUG_PRINT1 ("'n");
  2009.     PUSH_FAILURE_ITEM (string_place);
  2010.     DEBUG_PRINT2 ("  Pushing failure id: %un", failure_id);
  2011.     DEBUG_PUSH (failure_id);
  2012.   } while (0)
  2013. /* This is the number of items that are pushed and popped on the stack
  2014.    for each register.  */
  2015. #define NUM_REG_ITEMS  3
  2016. /* Individual items aside from the registers.  */
  2017. #ifdef DEBUG
  2018. #define NUM_NONREG_ITEMS 5 /* Includes failure point id.  */
  2019. #else
  2020. #define NUM_NONREG_ITEMS 4
  2021. #endif
  2022. /* We push at most this many items on the stack.  */
  2023. #define MAX_FAILURE_ITEMS ((num_regs - 1) * NUM_REG_ITEMS + NUM_NONREG_ITEMS)
  2024. /* We actually push this many items.  */
  2025. #define NUM_FAILURE_ITEMS
  2026.   ((highest_active_reg - lowest_active_reg + 1) * NUM_REG_ITEMS 
  2027.     + NUM_NONREG_ITEMS)
  2028. /* How many items can still be added to the stack without overflowing it.  */
  2029. #define REMAINING_AVAIL_SLOTS ((fail_stack).size - (fail_stack).avail)
  2030. /* Pops what PUSH_FAIL_STACK pushes.
  2031.    We restore into the parameters, all of which should be lvalues:
  2032.      STR -- the saved data position.
  2033.      PAT -- the saved pattern position.
  2034.      LOW_REG, HIGH_REG -- the highest and lowest active registers.
  2035.      REGSTART, REGEND -- arrays of string positions.
  2036.      REG_INFO -- array of information about each subexpression.
  2037.    
  2038.    Also assumes the variables `fail_stack' and (if debugging), `bufp',
  2039.    `pend', `string1', `size1', `string2', and `size2'.  */
  2040. #define POP_FAILURE_POINT(str, pat, low_reg, high_reg, regstart, regend, reg_info)
  2041. {