gnu_regex.c
上传用户:qunlip
上传日期:2007-01-04
资源大小:203k
文件大小:158k
源码类别:

代理服务器

开发平台:

Visual C++

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