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

  1. /* Extended regular expression matching and search library,
  2.    version 0.12.
  3.    (Implements POSIX draft P10003.2/D11.2, except for
  4.    internationalization features.)
  5.  
  6.    Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
  7.  
  8.    This program is free software; you can redistribute it and/or modify
  9.    it under the terms of the GNU General Public License as published by
  10.    the Free Software Foundation; either version 2, or (at your option)
  11.    any later version.
  12.  
  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.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with this program; if not, write to the Free Software
  20.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. /* AIX requires this to be the first thing in the file. */
  23. #if defined (_AIX) && !defined (REGEX_MALLOC)
  24.   #pragma alloca
  25. #endif
  26.  
  27. #define _GNU_SOURCE
  28.  
  29. #ifdef HAVE_CONFIG_H
  30. #include <config.h>
  31. #endif
  32.  
  33. /* We need this for `regex.h', and perhaps for the Emacs include files.  */
  34. #include <sys/types.h>
  35.  
  36. /* This is for other GNU distributions with internationalized messages.  */
  37. #if HAVE_LIBINTL_H || defined (_LIBC)
  38. # include <libintl.h>
  39. #else
  40. # define gettext(msgid) (msgid)
  41. #endif
  42.  
  43. /* The `emacs' switch turns on certain matching commands
  44.    that make sense only in Emacs. */
  45. #ifdef emacs
  46.  
  47. #include "lisp.h"
  48. #include "buffer.h"
  49. #include "syntax.h"
  50.  
  51. #else  /* not emacs */
  52.  
  53. /* If we are not linking with Emacs proper,
  54.    we can't use the relocating allocator
  55.    even if config.h says that we can.  */
  56. #undef REL_ALLOC
  57.  
  58. #if defined (STDC_HEADERS) || defined (_LIBC)
  59. #include <stdlib.h>
  60. #else
  61. char *malloc ();
  62. char *realloc ();
  63. #endif
  64.  
  65. /* When used in Emacs's lib-src, we need to get bzero and bcopy somehow.
  66.    If nothing else has been done, use the method below.  */
  67. #ifdef INHIBIT_STRING_HEADER
  68. #if !(defined (HAVE_BZERO) && defined (HAVE_BCOPY))
  69. #if !defined (bzero) && !defined (bcopy)
  70. #undef INHIBIT_STRING_HEADER
  71. #endif
  72. #endif
  73. #endif
  74.  
  75. /* This is the normal way of making sure we have a bcopy and a bzero.
  76.    This is used in most programs--a few other programs avoid this
  77.    by defining INHIBIT_STRING_HEADER.  */
  78. #ifndef INHIBIT_STRING_HEADER
  79. #if defined (HAVE_STRING_H) || defined (STDC_HEADERS) || defined (_LIBC)
  80. #include <string.h>
  81. #ifndef bcmp
  82. #define bcmp(s1, s2, n)    memcmp ((s1), (s2), (n))
  83. #endif
  84. #ifndef bcopy
  85. #define bcopy(s, d, n)    memcpy ((d), (s), (n))
  86. #endif
  87. #ifndef bzero
  88. #define bzero(s, n)    memset ((s), 0, (n))
  89. #endif
  90. #else
  91. #include <strings.h>
  92. #endif
  93. #endif
  94.  
  95. /* Define the syntax stuff for \<, \>, etc.  */
  96.  
  97. /* This must be nonzero for the wordchar and notwordchar pattern
  98.    commands in re_match_2.  */
  99. #ifndef Sword 
  100. #define Sword 1
  101. #endif
  102.  
  103. #ifdef SWITCH_ENUM_BUG
  104. #define SWITCH_ENUM_CAST(x) ((int)(x))
  105. #else
  106. #define SWITCH_ENUM_CAST(x) (x)
  107. #endif
  108.  
  109. #ifdef SYNTAX_TABLE
  110.  
  111. extern char *re_syntax_table;
  112.  
  113. #else /* not SYNTAX_TABLE */
  114.  
  115. /* How many characters in the character set.  */
  116. #define CHAR_SET_SIZE 256
  117.  
  118. static char re_syntax_table[CHAR_SET_SIZE];
  119.  
  120. static void
  121. init_syntax_once ()
  122. {
  123.    register int c;
  124.    static int done = 0;
  125.  
  126.    if (done)
  127.      return;
  128.  
  129.    bzero (re_syntax_table, sizeof re_syntax_table);
  130.  
  131.    for (c = 'a'; c <= 'z'; c++)
  132.      re_syntax_table[c] = Sword;
  133.  
  134.    for (c = 'A'; c <= 'Z'; c++)
  135.      re_syntax_table[c] = Sword;
  136.  
  137.    for (c = '0'; c <= '9'; c++)
  138.      re_syntax_table[c] = Sword;
  139.  
  140.    re_syntax_table['_'] = Sword;
  141.  
  142.    done = 1;
  143. }
  144.  
  145. #endif /* not SYNTAX_TABLE */
  146.  
  147. #define SYNTAX(c) re_syntax_table[c]
  148.  
  149. #endif /* not emacs */
  150.  
  151. /* Get the interface, including the syntax bits.  */
  152. #include "regex.h"
  153.  
  154. /* isalpha etc. are used for the character classes.  */
  155. #include <ctype.h>
  156.  
  157. /* Jim Meyering writes:
  158.  
  159.    "... Some ctype macros are valid only for character codes that
  160.    isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
  161.    using /bin/cc or gcc but without giving an ansi option).  So, all
  162.    ctype uses should be through macros like ISPRINT...  If
  163.    STDC_HEADERS is defined, then autoconf has verified that the ctype
  164.    macros don't need to be guarded with references to isascii. ...
  165.    Defining isascii to 1 should let any compiler worth its salt
  166.    eliminate the && through constant folding."  */
  167.  
  168. #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
  169. #define ISASCII(c) 1
  170. #else
  171. #define ISASCII(c) isascii(c)
  172. #endif
  173.  
  174. #ifdef isblank
  175. #define ISBLANK(c) (ISASCII (c) && isblank (c))
  176. #else
  177. #define ISBLANK(c) ((c) == ' ' || (c) == '\t')
  178. #endif
  179. #ifdef isgraph
  180. #define ISGRAPH(c) (ISASCII (c) && isgraph (c))
  181. #else
  182. #define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
  183. #endif
  184.  
  185. #define ISPRINT(c) (ISASCII (c) && isprint (c))
  186. #define ISDIGIT(c) (ISASCII (c) && isdigit (c))
  187. #define ISALNUM(c) (ISASCII (c) && isalnum (c))
  188. #define ISALPHA(c) (ISASCII (c) && isalpha (c))
  189. #define ISCNTRL(c) (ISASCII (c) && iscntrl (c))
  190. #define ISLOWER(c) (ISASCII (c) && islower (c))
  191. #define ISPUNCT(c) (ISASCII (c) && ispunct (c))
  192. #define ISSPACE(c) (ISASCII (c) && isspace (c))
  193. #define ISUPPER(c) (ISASCII (c) && isupper (c))
  194. #define ISXDIGIT(c) (ISASCII (c) && isxdigit (c))
  195.  
  196. #ifndef NULL
  197. #define NULL (void *)0
  198. #endif
  199.  
  200. /* We remove any previous definition of `SIGN_EXTEND_CHAR',
  201.    since ours (we hope) works properly with all combinations of
  202.    machines, compilers, `char' and `unsigned char' argument types.
  203.    (Per Bothner suggested the basic approach.)  */
  204. #undef SIGN_EXTEND_CHAR
  205. #if __STDC__
  206. #define SIGN_EXTEND_CHAR(c) ((signed char) (c))
  207. #else  /* not __STDC__ */
  208. /* As in Harbison and Steele.  */
  209. #define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128)
  210. #endif
  211.  
  212. /* Should we use malloc or alloca?  If REGEX_MALLOC is not defined, we
  213.    use `alloca' instead of `malloc'.  This is because using malloc in
  214.    re_search* or re_match* could cause memory leaks when C-g is used in
  215.    Emacs; also, malloc is slower and causes storage fragmentation.  On
  216.    the other hand, malloc is more portable, and easier to debug.  
  217.    
  218.    Because we sometimes use alloca, some routines have to be macros,
  219.    not functions -- `alloca'-allocated space disappears at the end of the
  220.    function it is called in.  */
  221.  
  222. #ifdef REGEX_MALLOC
  223.  
  224. #define REGEX_ALLOCATE malloc
  225. #define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize)
  226. #define REGEX_FREE free
  227.  
  228. #else /* not REGEX_MALLOC  */
  229.  
  230. /* Emacs already defines alloca, sometimes.  */
  231. #ifndef alloca
  232.  
  233. /* Make alloca work the best possible way.  */
  234. #ifdef __GNUC__
  235. #define alloca __builtin_alloca
  236. #else /* not __GNUC__ */
  237. #if HAVE_ALLOCA_H
  238. #include <alloca.h>
  239. #else /* not __GNUC__ or HAVE_ALLOCA_H */
  240. #ifndef _AIX /* Already did AIX, up at the top.  */
  241. char *alloca ();
  242. #endif /* not _AIX */
  243. #endif /* not HAVE_ALLOCA_H */ 
  244. #endif /* not __GNUC__ */
  245.  
  246. #endif /* not alloca */
  247.  
  248. #define REGEX_ALLOCATE alloca
  249.  
  250. /* Assumes a `char *destination' variable.  */
  251. #define REGEX_REALLOCATE(source, osize, nsize)                \
  252.   (destination = (char *) alloca (nsize),                \
  253.    bcopy (source, destination, osize),                    \
  254.    destination)
  255.  
  256. /* No need to do anything to free, after alloca.  */
  257. #define REGEX_FREE(arg) ((void)0) /* Do nothing!  But inhibit gcc warning.  */
  258.  
  259. #endif /* not REGEX_MALLOC */
  260.  
  261. /* Define how to allocate the failure stack.  */
  262.  
  263. #ifdef REL_ALLOC
  264. #define REGEX_ALLOCATE_STACK(size)                \
  265.   r_alloc (&failure_stack_ptr, (size))
  266. #define REGEX_REALLOCATE_STACK(source, osize, nsize)        \
  267.   r_re_alloc (&failure_stack_ptr, (nsize))
  268. #define REGEX_FREE_STACK(ptr)                    \
  269.   r_alloc_free (&failure_stack_ptr)
  270.  
  271. #else /* not REL_ALLOC */
  272.  
  273. #ifdef REGEX_MALLOC
  274.  
  275. #define REGEX_ALLOCATE_STACK malloc
  276. #define REGEX_REALLOCATE_STACK(source, osize, nsize) realloc (source, nsize)
  277. #define REGEX_FREE_STACK free
  278.  
  279. #else /* not REGEX_MALLOC */
  280.  
  281. #define REGEX_ALLOCATE_STACK alloca
  282.  
  283. #define REGEX_REALLOCATE_STACK(source, osize, nsize)            \
  284.    REGEX_REALLOCATE (source, osize, nsize)
  285. /* No need to explicitly free anything.  */
  286. #define REGEX_FREE_STACK(arg)
  287.  
  288. #endif /* not REGEX_MALLOC */
  289. #endif /* not REL_ALLOC */
  290.  
  291.  
  292. /* True if `size1' is non-NULL and PTR is pointing anywhere inside
  293.    `string1' or just past its end.  This works if PTR is NULL, which is
  294.    a good thing.  */
  295. #define FIRST_STRING_P(ptr)                     \
  296.   (size1 && string1 <= (ptr) && (ptr) <= string1 + size1)
  297.  
  298. /* (Re)Allocate N items of type T using malloc, or fail.  */
  299. #define TALLOC(n, t) ((t *) malloc ((n) * sizeof (t)))
  300. #define RETALLOC(addr, n, t) ((addr) = (t *) realloc (addr, (n) * sizeof (t)))
  301. #define RETALLOC_IF(addr, n, t) \
  302.   if (addr) RETALLOC((addr), (n), t); else (addr) = TALLOC ((n), t)
  303. #define REGEX_TALLOC(n, t) ((t *) REGEX_ALLOCATE ((n) * sizeof (t)))
  304.  
  305. #define BYTEWIDTH 8 /* In bits.  */
  306.  
  307. #define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
  308.  
  309. #undef MAX
  310. #undef MIN
  311. #define MAX(a, b) ((a) > (b) ? (a) : (b))
  312. #define MIN(a, b) ((a) < (b) ? (a) : (b))
  313.  
  314. typedef char boolean;
  315. #define false 0
  316. #define true 1
  317.  
  318. static int re_match_2_internal ();
  319.  
  320. /* These are the command codes that appear in compiled regular
  321.    expressions.  Some opcodes are followed by argument bytes.  A
  322.    command code can specify any interpretation whatsoever for its
  323.    arguments.  Zero bytes may appear in the compiled regular expression.  */
  324.  
  325. typedef enum
  326. {
  327.   no_op = 0,
  328.  
  329.   /* Succeed right away--no more backtracking.  */
  330.   succeed,
  331.  
  332.         /* Followed by one byte giving n, then by n literal bytes.  */
  333.   exactn,
  334.  
  335.         /* Matches any (more or less) character.  */
  336.   anychar,
  337.  
  338.         /* Matches any one char belonging to specified set.  First
  339.            following byte is number of bitmap bytes.  Then come bytes
  340.            for a bitmap saying which chars are in.  Bits in each byte
  341.            are ordered low-bit-first.  A character is in the set if its
  342.            bit is 1.  A character too large to have a bit in the map is
  343.            automatically not in the set.  */
  344.   charset,
  345.  
  346.         /* Same parameters as charset, but match any character that is
  347.            not one of those specified.  */
  348.   charset_not,
  349.  
  350.         /* Start remembering the text that is matched, for storing in a
  351.            register.  Followed by one byte with the register number, in
  352.            the range 0 to one less than the pattern buffer's re_nsub
  353.            field.  Then followed by one byte with the number of groups
  354.            inner to this one.  (This last has to be part of the
  355.            start_memory only because we need it in the on_failure_jump
  356.            of re_match_2.)  */
  357.   start_memory,
  358.  
  359.         /* Stop remembering the text that is matched and store it in a
  360.            memory register.  Followed by one byte with the register
  361.            number, in the range 0 to one less than `re_nsub' in the
  362.            pattern buffer, and one byte with the number of inner groups,
  363.            just like `start_memory'.  (We need the number of inner
  364.            groups here because we don't have any easy way of finding the
  365.            corresponding start_memory when we're at a stop_memory.)  */
  366.   stop_memory,
  367.  
  368.         /* Match a duplicate of something remembered. Followed by one
  369.            byte containing the register number.  */
  370.   duplicate,
  371.  
  372.         /* Fail unless at beginning of line.  */
  373.   begline,
  374.  
  375.         /* Fail unless at end of line.  */
  376.   endline,
  377.  
  378.         /* Succeeds if at beginning of buffer (if emacs) or at beginning
  379.            of string to be matched (if not).  */
  380.   begbuf,
  381.  
  382.         /* Analogously, for end of buffer/string.  */
  383.   endbuf,
  384.  
  385.         /* Followed by two byte relative address to which to jump.  */
  386.   jump, 
  387.  
  388.     /* Same as jump, but marks the end of an alternative.  */
  389.   jump_past_alt,
  390.  
  391.         /* Followed by two-byte relative address of place to resume at
  392.            in case of failure.  */
  393.   on_failure_jump,
  394.     
  395.         /* Like on_failure_jump, but pushes a placeholder instead of the
  396.            current string position when executed.  */
  397.   on_failure_keep_string_jump,
  398.   
  399.         /* Throw away latest failure point and then jump to following
  400.            two-byte relative address.  */
  401.   pop_failure_jump,
  402.  
  403.         /* Change to pop_failure_jump if know won't have to backtrack to
  404.            match; otherwise change to jump.  This is used to jump
  405.            back to the beginning of a repeat.  If what follows this jump
  406.            clearly won't match what the repeat does, such that we can be
  407.            sure that there is no use backtracking out of repetitions
  408.            already matched, then we change it to a pop_failure_jump.
  409.            Followed by two-byte address.  */
  410.   maybe_pop_jump,
  411.  
  412.         /* Jump to following two-byte address, and push a dummy failure
  413.            point. This failure point will be thrown away if an attempt
  414.            is made to use it for a failure.  A `+' construct makes this
  415.            before the first repeat.  Also used as an intermediary kind
  416.            of jump when compiling an alternative.  */
  417.   dummy_failure_jump,
  418.  
  419.     /* Push a dummy failure point and continue.  Used at the end of
  420.        alternatives.  */
  421.   push_dummy_failure,
  422.  
  423.         /* Followed by two-byte relative address and two-byte number n.
  424.            After matching N times, jump to the address upon failure.  */
  425.   succeed_n,
  426.  
  427.         /* Followed by two-byte relative address, and two-byte number n.
  428.            Jump to the address N times, then fail.  */
  429.   jump_n,
  430.  
  431.         /* Set the following two-byte relative address to the
  432.            subsequent two-byte number.  The address *includes* the two
  433.            bytes of number.  */
  434.   set_number_at,
  435.  
  436.   wordchar,    /* Matches any word-constituent character.  */
  437.   notwordchar,    /* Matches any char that is not a word-constituent.  */
  438.  
  439.   wordbeg,    /* Succeeds if at word beginning.  */
  440.   wordend,    /* Succeeds if at word end.  */
  441.  
  442.   wordbound,    /* Succeeds if at a word boundary.  */
  443.   notwordbound    /* Succeeds if not at a word boundary.  */
  444.  
  445. #ifdef emacs
  446.   ,before_dot,    /* Succeeds if before point.  */
  447.   at_dot,    /* Succeeds if at point.  */
  448.   after_dot,    /* Succeeds if after point.  */
  449.  
  450.     /* Matches any character whose syntax is specified.  Followed by
  451.            a byte which contains a syntax code, e.g., Sword.  */
  452.   syntaxspec,
  453.  
  454.     /* Matches any character whose syntax is not that specified.  */
  455.   notsyntaxspec
  456. #endif /* emacs */
  457. } re_opcode_t;
  458.  
  459. /* Common operations on the compiled pattern.  */
  460.  
  461. /* Store NUMBER in two contiguous bytes starting at DESTINATION.  */
  462.  
  463. #define STORE_NUMBER(destination, number)                \
  464.   do {                                    \
  465.     (destination)[0] = (number) & 0377;                    \
  466.     (destination)[1] = (number) >> 8;                    \
  467.   } while (0)
  468.  
  469. /* Same as STORE_NUMBER, except increment DESTINATION to
  470.    the byte after where the number is stored.  Therefore, DESTINATION
  471.    must be an lvalue.  */
  472.  
  473. #define STORE_NUMBER_AND_INCR(destination, number)            \
  474.   do {                                    \
  475.     STORE_NUMBER (destination, number);                    \
  476.     (destination) += 2;                            \
  477.   } while (0)
  478.  
  479. /* Put into DESTINATION a number stored in two contiguous bytes starting
  480.    at SOURCE.  */
  481.  
  482. #define EXTRACT_NUMBER(destination, source)                \
  483.   do {                                    \
  484.     (destination) = *(source) & 0377;                    \
  485.     (destination) += SIGN_EXTEND_CHAR (*((source) + 1)) << 8;        \
  486.   } while (0)
  487.  
  488. #ifdef DEBUG
  489. static void extract_number _RE_ARGS((int *dest, unsigned char *source));
  490. static void
  491. extract_number (dest, source)
  492.     int *dest;
  493.     unsigned char *source;
  494. {
  495.   int temp = SIGN_EXTEND_CHAR (*(source + 1)); 
  496.   *dest = *source & 0377;
  497.   *dest += temp << 8;
  498. }
  499.  
  500. #ifndef EXTRACT_MACROS /* To debug the macros.  */
  501. #undef EXTRACT_NUMBER
  502. #define EXTRACT_NUMBER(dest, src) extract_number (&dest, src)
  503. #endif /* not EXTRACT_MACROS */
  504.  
  505. #endif /* DEBUG */
  506.  
  507. /* Same as EXTRACT_NUMBER, except increment SOURCE to after the number.
  508.    SOURCE must be an lvalue.  */
  509.  
  510. #define EXTRACT_NUMBER_AND_INCR(destination, source)            \
  511.   do {                                    \
  512.     EXTRACT_NUMBER (destination, source);                \
  513.     (source) += 2;                             \
  514.   } while (0)
  515.  
  516. #ifdef DEBUG
  517. static void extract_number_and_incr _RE_ARGS((int *destination,
  518.                        unsigned char **source));
  519. static void
  520. extract_number_and_incr (destination, source)
  521.     int *destination;
  522.     unsigned char **source;
  523.   extract_number (destination, *source);
  524.   *source += 2;
  525. }
  526.  
  527. #ifndef EXTRACT_MACROS
  528. #undef EXTRACT_NUMBER_AND_INCR
  529. #define EXTRACT_NUMBER_AND_INCR(dest, src) \
  530.   extract_number_and_incr (&dest, &src)
  531. #endif /* not EXTRACT_MACROS */
  532.  
  533. #endif /* DEBUG */
  534.  
  535. /* If DEBUG is defined, Regex prints many voluminous messages about what
  536.    it is doing (if the variable `debug' is nonzero).  If linked with the
  537.    main program in `iregex.c', you can enter patterns and strings
  538.    interactively.  And if linked with the main program in `main.c' and
  539.    the other test files, you can run the already-written tests.  */
  540.  
  541. #ifdef DEBUG
  542.  
  543. /* We use standard I/O for debugging.  */
  544. #include <stdio.h>
  545.  
  546. /* It is useful to test things that ``must'' be true when debugging.  */
  547. #include <assert.h>
  548.  
  549. static int debug = 0;
  550.  
  551. #define DEBUG_STATEMENT(e) e
  552. #define DEBUG_PRINT1(x) if (debug) printf (x)
  553. #define DEBUG_PRINT2(x1, x2) if (debug) printf (x1, x2)
  554. #define DEBUG_PRINT3(x1, x2, x3) if (debug) printf (x1, x2, x3)
  555. #define DEBUG_PRINT4(x1, x2, x3, x4) if (debug) printf (x1, x2, x3, x4)
  556. #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)                 \
  557.   if (debug) print_partial_compiled_pattern (s, e)
  558. #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)            \
  559.   if (debug) print_double_string (w, s1, sz1, s2, sz2)
  560.  
  561.  
  562. /* Print the fastmap in human-readable form.  */
  563.  
  564. void
  565. print_fastmap (fastmap)
  566.     char *fastmap;
  567. {
  568.   unsigned was_a_range = 0;
  569.   unsigned i = 0;  
  570.   
  571.   while (i < (1 << BYTEWIDTH))
  572.     {
  573.       if (fastmap[i++])
  574.     {
  575.       was_a_range = 0;
  576.           putchar (i - 1);
  577.           while (i < (1 << BYTEWIDTH)  &&  fastmap[i])
  578.             {
  579.               was_a_range = 1;
  580.               i++;
  581.             }
  582.       if (was_a_range)
  583.             {
  584.               printf ("-");
  585.               putchar (i - 1);
  586.             }
  587.         }
  588.     }
  589.   putchar ('\n'); 
  590. }
  591.  
  592.  
  593. /* Print a compiled pattern string in human-readable form, starting at
  594.    the START pointer into it and ending just before the pointer END.  */
  595.  
  596. void
  597. print_partial_compiled_pattern (start, end)
  598.     unsigned char *start;
  599.     unsigned char *end;
  600. {
  601.   int mcnt, mcnt2;
  602.   unsigned char *p = start;
  603.   unsigned char *pend = end;
  604.  
  605.   if (start == NULL)
  606.     {
  607.       printf ("(null)\n");
  608.       return;
  609.     }
  610.     
  611.   /* Loop over pattern commands.  */
  612.   while (p < pend)
  613.     {
  614.       printf ("%d:\t", p - start);
  615.  
  616.       switch ((re_opcode_t) *p++)
  617.     {
  618.         case no_op:
  619.           printf ("/no_op");
  620.           break;
  621.  
  622.     case exactn:
  623.       mcnt = *p++;
  624.           printf ("/exactn/%d", mcnt);
  625.           do
  626.         {
  627.               putchar ('/');
  628.           putchar (*p++);
  629.             }
  630.           while (--mcnt);
  631.           break;
  632.  
  633.     case start_memory:
  634.           mcnt = *p++;
  635.           printf ("/start_memory/%d/%d", mcnt, *p++);
  636.           break;
  637.  
  638.     case stop_memory:
  639.           mcnt = *p++;
  640.       printf ("/stop_memory/%d/%d", mcnt, *p++);
  641.           break;
  642.  
  643.     case duplicate:
  644.       printf ("/duplicate/%d", *p++);
  645.       break;
  646.  
  647.     case anychar:
  648.       printf ("/anychar");
  649.       break;
  650.  
  651.     case charset:
  652.         case charset_not:
  653.           {
  654.             register int c, last = -100;
  655.         register int in_range = 0;
  656.  
  657.         printf ("/charset [%s",
  658.                 (re_opcode_t) *(p - 1) == charset_not ? "^" : "");
  659.             
  660.             assert (p + *p < pend);
  661.  
  662.             for (c = 0; c < 256; c++)
  663.           if (c / 8 < *p
  664.           && (p[1 + (c/8)] & (1 << (c % 8))))
  665.         {
  666.           /* Are we starting a range?  */
  667.           if (last + 1 == c && ! in_range)
  668.             {
  669.               putchar ('-');
  670.               in_range = 1;
  671.             }
  672.           /* Have we broken a range?  */
  673.           else if (last + 1 != c && in_range)
  674.               {
  675.               putchar (last);
  676.               in_range = 0;
  677.             }
  678.                 
  679.           if (! in_range)
  680.             putchar (c);
  681.  
  682.           last = c;
  683.               }
  684.  
  685.         if (in_range)
  686.           putchar (last);
  687.  
  688.         putchar (']');
  689.  
  690.         p += 1 + *p;
  691.       }
  692.       break;
  693.  
  694.     case begline:
  695.       printf ("/begline");
  696.           break;
  697.  
  698.     case endline:
  699.           printf ("/endline");
  700.           break;
  701.  
  702.     case on_failure_jump:
  703.           extract_number_and_incr (&mcnt, &p);
  704.         printf ("/on_failure_jump to %d", p + mcnt - start);
  705.           break;
  706.  
  707.     case on_failure_keep_string_jump:
  708.           extract_number_and_incr (&mcnt, &p);
  709.         printf ("/on_failure_keep_string_jump to %d", p + mcnt - start);
  710.           break;
  711.  
  712.     case dummy_failure_jump:
  713.           extract_number_and_incr (&mcnt, &p);
  714.         printf ("/dummy_failure_jump to %d", p + mcnt - start);
  715.           break;
  716.  
  717.     case push_dummy_failure:
  718.           printf ("/push_dummy_failure");
  719.           break;
  720.           
  721.         case maybe_pop_jump:
  722.           extract_number_and_incr (&mcnt, &p);
  723.         printf ("/maybe_pop_jump to %d", p + mcnt - start);
  724.       break;
  725.  
  726.         case pop_failure_jump:
  727.       extract_number_and_incr (&mcnt, &p);
  728.         printf ("/pop_failure_jump to %d", p + mcnt - start);
  729.       break;          
  730.           
  731.         case jump_past_alt:
  732.       extract_number_and_incr (&mcnt, &p);
  733.         printf ("/jump_past_alt to %d", p + mcnt - start);
  734.       break;          
  735.           
  736.         case jump:
  737.       extract_number_and_incr (&mcnt, &p);
  738.         printf ("/jump to %d", p + mcnt - start);
  739.       break;
  740.  
  741.         case succeed_n: 
  742.           extract_number_and_incr (&mcnt, &p);
  743.           extract_number_and_incr (&mcnt2, &p);
  744.       printf ("/succeed_n to %d, %d times", p + mcnt - start, mcnt2);
  745.           break;
  746.         
  747.         case jump_n: 
  748.           extract_number_and_incr (&mcnt, &p);
  749.           extract_number_and_incr (&mcnt2, &p);
  750.       printf ("/jump_n to %d, %d times", p + mcnt - start, mcnt2);
  751.           break;
  752.         
  753.         case set_number_at: 
  754.           extract_number_and_incr (&mcnt, &p);
  755.           extract_number_and_incr (&mcnt2, &p);
  756.       printf ("/set_number_at location %d to %d", p + mcnt - start, mcnt2);
  757.           break;
  758.         
  759.         case wordbound:
  760.       printf ("/wordbound");
  761.       break;
  762.  
  763.     case notwordbound:
  764.       printf ("/notwordbound");
  765.           break;
  766.  
  767.     case wordbeg:
  768.       printf ("/wordbeg");
  769.       break;
  770.           
  771.     case wordend:
  772.       printf ("/wordend");
  773.           
  774. #ifdef emacs
  775.     case before_dot:
  776.       printf ("/before_dot");
  777.           break;
  778.  
  779.     case at_dot:
  780.       printf ("/at_dot");
  781.           break;
  782.  
  783.     case after_dot:
  784.       printf ("/after_dot");
  785.           break;
  786.  
  787.     case syntaxspec:
  788.           printf ("/syntaxspec");
  789.       mcnt = *p++;
  790.       printf ("/%d", mcnt);
  791.           break;
  792.       
  793.     case notsyntaxspec:
  794.           printf ("/notsyntaxspec");
  795.       mcnt = *p++;
  796.       printf ("/%d", mcnt);
  797.       break;
  798. #endif /* emacs */
  799.  
  800.     case wordchar:
  801.       printf ("/wordchar");
  802.           break;
  803.       
  804.     case notwordchar:
  805.       printf ("/notwordchar");
  806.           break;
  807.  
  808.     case begbuf:
  809.       printf ("/begbuf");
  810.           break;
  811.  
  812.     case endbuf:
  813.       printf ("/endbuf");
  814.           break;
  815.  
  816.         default:
  817.           printf ("?%d", *(p-1));
  818.     }
  819.  
  820.       putchar ('\n');
  821.     }
  822.  
  823.   printf ("%d:\tend of pattern.\n", p - start);
  824. }
  825.  
  826.  
  827. void
  828. print_compiled_pattern (bufp)
  829.     struct re_pattern_buffer *bufp;
  830. {
  831.   unsigned char *buffer = bufp->buffer;
  832.  
  833.   print_partial_compiled_pattern (buffer, buffer + bufp->used);
  834.   printf ("%d bytes used/%d bytes allocated.\n", bufp->used, bufp->allocated);
  835.  
  836.   if (bufp->fastmap_accurate && bufp->fastmap)
  837.     {
  838.       printf ("fastmap: ");
  839.       print_fastmap (bufp->fastmap);
  840.     }
  841.  
  842.   printf ("re_nsub: %d\t", bufp->re_nsub);
  843.   printf ("regs_alloc: %d\t", bufp->regs_allocated);
  844.   printf ("can_be_null: %d\t", bufp->can_be_null);
  845.   printf ("newline_anchor: %d\n", bufp->newline_anchor);
  846.   printf ("no_sub: %d\t", bufp->no_sub);
  847.   printf ("not_bol: %d\t", bufp->not_bol);
  848.   printf ("not_eol: %d\t", bufp->not_eol);
  849.   printf ("syntax: %d\n", bufp->syntax);
  850.   /* Perhaps we should print the translate table?  */
  851. }
  852.  
  853.  
  854. void
  855. print_double_string (where, string1, size1, string2, size2)
  856.     const char *where;
  857.     const char *string1;
  858.     const char *string2;
  859.     int size1;
  860.     int size2;
  861. {
  862.   unsigned this_char;
  863.   
  864.   if (where == NULL)
  865.     printf ("(null)");
  866.   else
  867.     {
  868.       if (FIRST_STRING_P (where))
  869.         {
  870.           for (this_char = where - string1; this_char < size1; this_char++)
  871.             putchar (string1[this_char]);
  872.  
  873.           where = string2;    
  874.         }
  875.  
  876.       for (this_char = where - string2; this_char < size2; this_char++)
  877.         putchar (string2[this_char]);
  878.     }
  879. }
  880.  
  881. void
  882. printchar (c)
  883.     int c;
  884. {
  885.     putc(c, stderr);
  886. }
  887.  
  888. #else /* not DEBUG */
  889.  
  890. #undef assert
  891. #define assert(e)
  892.  
  893. #define DEBUG_STATEMENT(e)
  894. #define DEBUG_PRINT1(x)
  895. #define DEBUG_PRINT2(x1, x2)
  896. #define DEBUG_PRINT3(x1, x2, x3)
  897. #define DEBUG_PRINT4(x1, x2, x3, x4)
  898. #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)
  899. #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)
  900.  
  901. #endif /* not DEBUG */
  902.  
  903. /* Set by `re_set_syntax' to the current regexp syntax to recognize.  Can
  904.    also be assigned to arbitrarily: each pattern buffer stores its own
  905.    syntax, so it can be changed between regex compilations.  */
  906. /* This has no initializer because initialized variables in Emacs
  907.    become read-only after dumping.  */
  908. reg_syntax_t re_syntax_options;
  909.  
  910.  
  911. /* Specify the precise syntax of regexps for compilation.  This provides
  912.    for compatibility for various utilities which historically have
  913.    different, incompatible syntaxes.
  914.  
  915.    The argument SYNTAX is a bit mask comprised of the various bits
  916.    defined in regex.h.  We return the old syntax.  */
  917.  
  918. reg_syntax_t
  919. re_set_syntax (syntax)
  920.     reg_syntax_t syntax;
  921. {
  922.   reg_syntax_t ret = re_syntax_options;
  923.   
  924.   re_syntax_options = syntax;
  925.   return ret;
  926. }
  927.  
  928. /* This table gives an error message for each of the error codes listed
  929.    in regex.h.  Obviously the order here has to be same as there.
  930.    POSIX doesn't require that we do anything for REG_NOERROR,
  931.    but why not be nice?  */
  932.  
  933. static const char *re_error_msgid[] =
  934.   { "Success",                    /* REG_NOERROR */
  935.     "No match",                    /* REG_NOMATCH */
  936.     "Invalid regular expression",        /* REG_BADPAT */
  937.     "Invalid collation character",        /* REG_ECOLLATE */
  938.     "Invalid character class name",        /* REG_ECTYPE */
  939.     "Trailing backslash",            /* REG_EESCAPE */
  940.     "Invalid back reference",            /* REG_ESUBREG */
  941.     "Unmatched [ or [^",            /* REG_EBRACK */
  942.     "Unmatched ( or \\(",            /* REG_EPAREN */
  943.     "Unmatched \\{",                /* REG_EBRACE */
  944.     "Invalid content of \\{\\}",        /* REG_BADBR */
  945.     "Invalid range end",            /* REG_ERANGE */
  946.     "Memory exhausted",                /* REG_ESPACE */
  947.     "Invalid preceding regular expression",    /* REG_BADRPT */
  948.     "Premature end of regular expression",    /* REG_EEND */
  949.     "Regular expression too big",        /* REG_ESIZE */
  950.     "Unmatched ) or \\)",            /* REG_ERPAREN */
  951.   };
  952.  
  953. /* Avoiding alloca during matching, to placate r_alloc.  */
  954.  
  955. /* Define MATCH_MAY_ALLOCATE unless we need to make sure that the
  956.    searching and matching functions should not call alloca.  On some
  957.    systems, alloca is implemented in terms of malloc, and if we're
  958.    using the relocating allocator routines, then malloc could cause a
  959.    relocation, which might (if the strings being searched are in the
  960.    ralloc heap) shift the data out from underneath the regexp
  961.    routines.
  962.  
  963.    Here's another reason to avoid allocation: Emacs 
  964.    processes input from X in a signal handler; processing X input may
  965.    call malloc; if input arrives while a matching routine is calling
  966.    malloc, then we're scrod.  But Emacs can't just block input while
  967.    calling matching routines; then we don't notice interrupts when
  968.    they come in.  So, Emacs blocks input around all regexp calls
  969.    except the matching calls, which it leaves unprotected, in the
  970.    faith that they will not malloc.  */
  971.  
  972. /* Normally, this is fine.  */
  973. #define MATCH_MAY_ALLOCATE
  974.  
  975. /* When using GNU C, we are not REALLY using the C alloca, no matter
  976.    what config.h may say.  So don't take precautions for it.  */
  977. #ifdef __GNUC__
  978. #undef C_ALLOCA
  979. #endif
  980.  
  981. /* The match routines may not allocate if (1) they would do it with malloc
  982.    and (2) it's not safe for them to use malloc.
  983.    Note that if REL_ALLOC is defined, matching would not use malloc for the
  984.    failure stack, but we would still use it for the register vectors;
  985.    so REL_ALLOC should not affect this.  */
  986. #if (defined (C_ALLOCA) || defined (REGEX_MALLOC)) && defined (emacs)
  987. #undef MATCH_MAY_ALLOCATE
  988. #endif
  989.  
  990.  
  991. /* Failure stack declarations and macros; both re_compile_fastmap and
  992.    re_match_2 use a failure stack.  These have to be macros because of
  993.    REGEX_ALLOCATE_STACK.  */
  994.    
  995.  
  996. /* Number of failure points for which to initially allocate space
  997.    when matching.  If this number is exceeded, we allocate more
  998.    space, so it is not a hard limit.  */
  999. #ifndef INIT_FAILURE_ALLOC
  1000. #define INIT_FAILURE_ALLOC 5
  1001. #endif
  1002.  
  1003. /* Roughly the maximum number of failure points on the stack.  Would be
  1004.    exactly that if always used MAX_FAILURE_SPACE each time we failed.
  1005.    This is a variable only so users of regex can assign to it; we never
  1006.    change it ourselves.  */
  1007. #if defined (MATCH_MAY_ALLOCATE)
  1008. int re_max_failures = 200000;
  1009. #else
  1010. int re_max_failures = 2000;
  1011. #endif
  1012.  
  1013. union fail_stack_elt
  1014. {
  1015.   unsigned char *pointer;
  1016.   int integer;
  1017. };
  1018.  
  1019. typedef union fail_stack_elt fail_stack_elt_t;
  1020.  
  1021. typedef struct
  1022. {
  1023.   fail_stack_elt_t *stack;
  1024.   unsigned size;
  1025.   unsigned avail;            /* Offset of next open position.  */
  1026. } fail_stack_type;
  1027.  
  1028. #define FAIL_STACK_EMPTY()     (fail_stack.avail == 0)
  1029. #define FAIL_STACK_PTR_EMPTY() (fail_stack_ptr->avail == 0)
  1030. #define FAIL_STACK_FULL()      (fail_stack.avail == fail_stack.size)
  1031.  
  1032.  
  1033. /* Define macros to initialize and free the failure stack.
  1034.    Do `return -2' if the alloc fails.  */
  1035.  
  1036. #ifdef MATCH_MAY_ALLOCATE
  1037. #define INIT_FAIL_STACK()                        \
  1038.   do {                                    \
  1039.     fail_stack.stack = (fail_stack_elt_t *)                \
  1040.       REGEX_ALLOCATE_STACK (INIT_FAILURE_ALLOC * sizeof (fail_stack_elt_t));    \
  1041.                                     \
  1042.     if (fail_stack.stack == NULL)                    \
  1043.       return -2;                            \
  1044.                                     \
  1045.     fail_stack.size = INIT_FAILURE_ALLOC;                \
  1046.     fail_stack.avail = 0;                        \
  1047.   } while (0)
  1048.  
  1049. #define RESET_FAIL_STACK()  REGEX_FREE_STACK (fail_stack.stack)
  1050. #else
  1051. #define INIT_FAIL_STACK()                        \
  1052.   do {                                    \
  1053.     fail_stack.avail = 0;                        \
  1054.   } while (0)
  1055.  
  1056. #define RESET_FAIL_STACK()
  1057. #endif
  1058.  
  1059.  
  1060. /* Double the size of FAIL_STACK, up to approximately `re_max_failures' items.
  1061.  
  1062.    Return 1 if succeeds, and 0 if either ran out of memory
  1063.    allocating space for it or it was already too large.  
  1064.    
  1065.    REGEX_REALLOCATE_STACK requires `destination' be declared.   */
  1066.  
  1067. #define DOUBLE_FAIL_STACK(fail_stack)                    \
  1068.   ((fail_stack).size > re_max_failures * MAX_FAILURE_ITEMS        \
  1069.    ? 0                                    \
  1070.    : ((fail_stack).stack = (fail_stack_elt_t *)                \
  1071.         REGEX_REALLOCATE_STACK ((fail_stack).stack,             \
  1072.           (fail_stack).size * sizeof (fail_stack_elt_t),        \
  1073.           ((fail_stack).size << 1) * sizeof (fail_stack_elt_t)),    \
  1074.                                     \
  1075.       (fail_stack).stack == NULL                    \
  1076.       ? 0                                \
  1077.       : ((fail_stack).size <<= 1,                     \
  1078.          1)))
  1079.  
  1080.  
  1081. /* Push pointer POINTER on FAIL_STACK. 
  1082.    Return 1 if was able to do so and 0 if ran out of memory allocating
  1083.    space to do so.  */
  1084. #define PUSH_PATTERN_OP(POINTER, FAIL_STACK)                \
  1085.   ((FAIL_STACK_FULL ()                            \
  1086.     && !DOUBLE_FAIL_STACK (FAIL_STACK))                    \
  1087.    ? 0                                    \
  1088.    : ((FAIL_STACK).stack[(FAIL_STACK).avail++].pointer = POINTER,    \
  1089.       1))
  1090.  
  1091. /* Push a pointer value onto the failure stack.
  1092.    Assumes the variable `fail_stack'.  Probably should only
  1093.    be called from within `PUSH_FAILURE_POINT'.  */
  1094. #define PUSH_FAILURE_POINTER(item)                    \
  1095.   fail_stack.stack[fail_stack.avail++].pointer = (unsigned char *) (item)
  1096.  
  1097. /* This pushes an integer-valued item onto the failure stack.
  1098.    Assumes the variable `fail_stack'.  Probably should only
  1099.    be called from within `PUSH_FAILURE_POINT'.  */
  1100. #define PUSH_FAILURE_INT(item)                    \
  1101.   fail_stack.stack[fail_stack.avail++].integer = (item)
  1102.  
  1103. /* Push a fail_stack_elt_t value onto the failure stack.
  1104.    Assumes the variable `fail_stack'.  Probably should only
  1105.    be called from within `PUSH_FAILURE_POINT'.  */
  1106. #define PUSH_FAILURE_ELT(item)                    \
  1107.   fail_stack.stack[fail_stack.avail++] =  (item)
  1108.  
  1109. /* These three POP... operations complement the three PUSH... operations.
  1110.    All assume that `fail_stack' is nonempty.  */
  1111. #define POP_FAILURE_POINTER() fail_stack.stack[--fail_stack.avail].pointer
  1112. #define POP_FAILURE_INT() fail_stack.stack[--fail_stack.avail].integer
  1113. #define POP_FAILURE_ELT() fail_stack.stack[--fail_stack.avail]
  1114.  
  1115. /* Used to omit pushing failure point id's when we're not debugging.  */
  1116. #ifdef DEBUG
  1117. #define DEBUG_PUSH PUSH_FAILURE_INT
  1118. #define DEBUG_POP(item_addr) *(item_addr) = POP_FAILURE_INT ()
  1119. #else
  1120. #define DEBUG_PUSH(item)
  1121. #define DEBUG_POP(item_addr)
  1122. #endif
  1123.  
  1124.  
  1125. /* Push the information about the state we will need
  1126.    if we ever fail back to it.  
  1127.    
  1128.    Requires variables fail_stack, regstart, regend, reg_info, and
  1129.    num_regs be declared.  DOUBLE_FAIL_STACK requires `destination' be
  1130.    declared.
  1131.    
  1132.    Does `return FAILURE_CODE' if runs out of memory.  */
  1133.  
  1134. #define PUSH_FAILURE_POINT(pattern_place, string_place, failure_code)    \
  1135.   do {                                    \
  1136.     char *destination;                            \
  1137.     /* Must be int, so when we don't save any registers, the arithmetic    \
  1138.        of 0 + -1 isn't done as unsigned.  */                \
  1139.     /* Can't be int, since there is not a shred of a guarantee that int \
  1140.        is wide enough to hold a value of something to which pointer can \
  1141.        be assigned */                            \
  1142.     s_reg_t this_reg;                            \
  1143.                                         \
  1144.     DEBUG_STATEMENT (failure_id++);                    \
  1145.     DEBUG_STATEMENT (nfailure_points_pushed++);                \
  1146.     DEBUG_PRINT2 ("\nPUSH_FAILURE_POINT #%u:\n", failure_id);        \
  1147.     DEBUG_PRINT2 ("  Before push, next avail: %d\n", (fail_stack).avail);\
  1148.     DEBUG_PRINT2 ("                     size: %d\n", (fail_stack).size);\
  1149.                                     \
  1150.     DEBUG_PRINT2 ("  slots needed: %d\n", NUM_FAILURE_ITEMS);        \
  1151.     DEBUG_PRINT2 ("     available: %d\n", REMAINING_AVAIL_SLOTS);    \
  1152.                                     \
  1153.     /* Ensure we have enough space allocated for what we will push.  */    \
  1154.     while (REMAINING_AVAIL_SLOTS < NUM_FAILURE_ITEMS)            \
  1155.       {                                    \
  1156.         if (!DOUBLE_FAIL_STACK (fail_stack))                \
  1157.           return failure_code;                        \
  1158.                                     \
  1159.         DEBUG_PRINT2 ("\n  Doubled stack; size now: %d\n",        \
  1160.                (fail_stack).size);                \
  1161.         DEBUG_PRINT2 ("  slots available: %d\n", REMAINING_AVAIL_SLOTS);\
  1162.       }
  1163.  
  1164. #define PUSH_FAILURE_POINT2(pattern_place, string_place, failure_code)    \
  1165.     /* Push the info, starting with the registers.  */            \
  1166.     DEBUG_PRINT1 ("\n");                        \
  1167.                                     \
  1168.     PUSH_FAILURE_POINT_LOOP ();                        \
  1169.                                     \
  1170.     DEBUG_PRINT2 ("  Pushing  low active reg: %d\n", lowest_active_reg);\
  1171.     PUSH_FAILURE_INT (lowest_active_reg);                \
  1172.                                     \
  1173.     DEBUG_PRINT2 ("  Pushing high active reg: %d\n", highest_active_reg);\
  1174.     PUSH_FAILURE_INT (highest_active_reg);                \
  1175.                                     \
  1176.     DEBUG_PRINT2 ("  Pushing pattern 0x%x: ", pattern_place);        \
  1177.     DEBUG_PRINT_COMPILED_PATTERN (bufp, pattern_place, pend);        \
  1178.     PUSH_FAILURE_POINTER (pattern_place);                \
  1179.                                     \
  1180.     DEBUG_PRINT2 ("  Pushing string 0x%x: `", string_place);        \
  1181.     DEBUG_PRINT_DOUBLE_STRING (string_place, string1, size1, string2,   \
  1182.                  size2);                \
  1183.     DEBUG_PRINT1 ("'\n");                        \
  1184.     PUSH_FAILURE_POINTER (string_place);                \
  1185.                                     \
  1186.     DEBUG_PRINT2 ("  Pushing failure id: %u\n", failure_id);        \
  1187.     DEBUG_PUSH (failure_id);                        \
  1188.   } while (0)
  1189.  
  1190. /*  Pulled out of PUSH_FAILURE_POINT() to shorten the definition
  1191.     of that macro.  (for VAX C) */
  1192. #define PUSH_FAILURE_POINT_LOOP()                    \
  1193.     for (this_reg = lowest_active_reg; this_reg <= highest_active_reg;    \
  1194.          this_reg++)                            \
  1195.       {                                    \
  1196.     DEBUG_PRINT2 ("  Pushing reg: %d\n", this_reg);            \
  1197.         DEBUG_STATEMENT (num_regs_pushed++);                \
  1198.                                     \
  1199.     DEBUG_PRINT2 ("    start: 0x%x\n", regstart[this_reg]);        \
  1200.         PUSH_FAILURE_POINTER (regstart[this_reg]);            \
  1201.                                                                         \
  1202.     DEBUG_PRINT2 ("    end: 0x%x\n", regend[this_reg]);        \
  1203.         PUSH_FAILURE_POINTER (regend[this_reg]);            \
  1204.                                     \
  1205.     DEBUG_PRINT2 ("    info: 0x%x\n      ", reg_info[this_reg]);    \
  1206.         DEBUG_PRINT2 (" match_null=%d",                    \
  1207.                       REG_MATCH_NULL_STRING_P (reg_info[this_reg]));    \
  1208.         DEBUG_PRINT2 (" active=%d", IS_ACTIVE (reg_info[this_reg]));    \
  1209.         DEBUG_PRINT2 (" matched_something=%d",                \
  1210.                       MATCHED_SOMETHING (reg_info[this_reg]));        \
  1211.         DEBUG_PRINT2 (" ever_matched=%d",                \
  1212.                       EVER_MATCHED_SOMETHING (reg_info[this_reg]));    \
  1213.     DEBUG_PRINT1 ("\n");                        \
  1214.         PUSH_FAILURE_ELT (reg_info[this_reg].word);            \
  1215.       }
  1216.  
  1217. /* This is the number of items that are pushed and popped on the stack
  1218.    for each register.  */
  1219. #define NUM_REG_ITEMS  3
  1220.  
  1221. /* Individual items aside from the registers.  */
  1222. #ifdef DEBUG
  1223. #define NUM_NONREG_ITEMS 5 /* Includes failure point id.  */
  1224. #else
  1225. #define NUM_NONREG_ITEMS 4
  1226. #endif
  1227.  
  1228. /* We push at most this many items on the stack.  */
  1229. #define MAX_FAILURE_ITEMS ((num_regs - 1) * NUM_REG_ITEMS + NUM_NONREG_ITEMS)
  1230.  
  1231. /* We actually push this many items.  */
  1232. #define NUM_FAILURE_ITEMS                        \
  1233.   ((highest_active_reg - lowest_active_reg + 1) * NUM_REG_ITEMS     \
  1234.     + NUM_NONREG_ITEMS)
  1235.  
  1236. /* How many items can still be added to the stack without overflowing it.  */
  1237. #define REMAINING_AVAIL_SLOTS ((fail_stack).size - (fail_stack).avail)
  1238.  
  1239.  
  1240. /* Pops what PUSH_FAIL_STACK pushes.
  1241.  
  1242.    We restore into the parameters, all of which should be lvalues:
  1243.      STR -- the saved data position.
  1244.      PAT -- the saved pattern position.
  1245.      LOW_REG, HIGH_REG -- the highest and lowest active registers.
  1246.      REGSTART, REGEND -- arrays of string positions.
  1247.      REG_INFO -- array of information about each subexpression.
  1248.    
  1249.    Also assumes the variables `fail_stack' and (if debugging), `bufp',
  1250.    `pend', `string1', `size1', `string2', and `size2'.  */
  1251.  
  1252. #define POP_FAILURE_POINT(str, pat, low_reg, high_reg, regstart, regend, reg_info)\
  1253. {                                    \
  1254.   DEBUG_STATEMENT (fail_stack_elt_t failure_id;)            \
  1255.   s_reg_t this_reg;                            \
  1256.   const unsigned char *string_temp;                    \
  1257.                                     \
  1258.   assert (!FAIL_STACK_EMPTY ());                    \
  1259.                                     \
  1260.   /* Remove failure points and point to how many regs pushed.  */    \
  1261.   DEBUG_PRINT1 ("POP_FAILURE_POINT:\n");                \
  1262.   DEBUG_PRINT2 ("  Before pop, next avail: %d\n", fail_stack.avail);    \
  1263.   DEBUG_PRINT2 ("                    size: %d\n", fail_stack.size);    \
  1264.                                     \
  1265.   assert (fail_stack.avail >= NUM_NONREG_ITEMS);            \
  1266.                                     \
  1267.   DEBUG_POP (&failure_id);                        \
  1268.   DEBUG_PRINT2 ("  Popping failure id: %u\n", failure_id);        \
  1269.                                     \
  1270.   /* If the saved string location is NULL, it came from an        \
  1271.      on_failure_keep_string_jump opcode, and we want to throw away the    \
  1272.      saved NULL, thus retaining our current position in the string.  */    \
  1273.   string_temp = POP_FAILURE_POINTER ();                    \
  1274.   if (string_temp != NULL)                        \
  1275.     str = (const char *) string_temp;                    \
  1276.                                     \
  1277.   DEBUG_PRINT2 ("  Popping string 0x%x: `", str);            \
  1278.   DEBUG_PRINT_DOUBLE_STRING (str, string1, size1, string2, size2);    \
  1279.   DEBUG_PRINT1 ("'\n");                            \
  1280.                                     \
  1281.   pat = (unsigned char *) POP_FAILURE_POINTER ();            \
  1282.   DEBUG_PRINT2 ("  Popping pattern 0x%x: ", pat);            \
  1283.   DEBUG_PRINT_COMPILED_PATTERN (bufp, pat, pend);            \
  1284.                                     \
  1285.   POP_FAILURE_POINT2 (low_reg, high_reg, regstart, regend, reg_info);
  1286.  
  1287. /*  Pulled out of POP_FAILURE_POINT() to shorten the definition
  1288.     of that macro.  (for MSC 5.1) */
  1289. #define POP_FAILURE_POINT2(low_reg, high_reg, regstart, regend, reg_info) \
  1290.                                     \
  1291.   /* Restore register info.  */                        \
  1292.   high_reg = (active_reg_t) POP_FAILURE_INT ();                \
  1293.   DEBUG_PRINT2 ("  Popping high active reg: %d\n", high_reg);        \
  1294.                                     \
  1295.   low_reg = (active_reg_t) POP_FAILURE_INT ();                \
  1296.   DEBUG_PRINT2 ("  Popping  low active reg: %d\n", low_reg);        \
  1297.                                     \
  1298.   for (this_reg = high_reg; this_reg >= low_reg; this_reg--)        \
  1299.     {                                    \
  1300.       DEBUG_PRINT2 ("    Popping reg: %d\n", this_reg);            \
  1301.                                     \
  1302.       reg_info[this_reg].word = POP_FAILURE_ELT ();            \
  1303.       DEBUG_PRINT2 ("      info: 0x%x\n", reg_info[this_reg]);        \
  1304.                                     \
  1305.       regend[this_reg] = (const char *) POP_FAILURE_POINTER ();        \
  1306.       DEBUG_PRINT2 ("      end: 0x%x\n", regend[this_reg]);        \
  1307.                                     \
  1308.       regstart[this_reg] = (const char *) POP_FAILURE_POINTER ();    \
  1309.       DEBUG_PRINT2 ("      start: 0x%x\n", regstart[this_reg]);        \
  1310.     }                                    \
  1311.                                     \
  1312.   set_regs_matched_done = 0;                        \
  1313.   DEBUG_STATEMENT (nfailure_points_popped++);                \
  1314. } /* POP_FAILURE_POINT */
  1315.  
  1316.  
  1317.  
  1318. /* Structure for per-register (a.k.a. per-group) information.
  1319.    Other register information, such as the
  1320.    starting and ending positions (which are addresses), and the list of
  1321.    inner groups (which is a bits list) are maintained in separate
  1322.    variables.  
  1323.    
  1324.    We are making a (strictly speaking) nonportable assumption here: that
  1325.    the compiler will pack our bit fields into something that fits into
  1326.    the type of `word', i.e., is something that fits into one item on the
  1327.    failure stack.  */
  1328.  
  1329.  
  1330. /* Declarations and macros for re_match_2.  */
  1331.  
  1332. typedef union
  1333. {
  1334.   fail_stack_elt_t word;
  1335.   struct
  1336.   {
  1337.       /* This field is one if this group can match the empty string,
  1338.          zero if not.  If not yet determined,  `MATCH_NULL_UNSET_VALUE'.  */
  1339. #define MATCH_NULL_UNSET_VALUE 3
  1340.     unsigned match_null_string_p : 2;
  1341.     unsigned is_active : 1;
  1342.     unsigned matched_something : 1;
  1343.     unsigned ever_matched_something : 1;
  1344.   } bits;
  1345. } register_info_type;
  1346.  
  1347. #define REG_MATCH_NULL_STRING_P(R)  ((R).bits.match_null_string_p)
  1348. #define IS_ACTIVE(R)  ((R).bits.is_active)
  1349. #define MATCHED_SOMETHING(R)  ((R).bits.matched_something)
  1350. #define EVER_MATCHED_SOMETHING(R)  ((R).bits.ever_matched_something)
  1351.  
  1352.  
  1353. /* Call this when have matched a real character; it sets `matched' flags
  1354.    for the subexpressions which we are currently inside.  Also records
  1355.    that those subexprs have matched.  */
  1356. #define SET_REGS_MATCHED()                        \
  1357.   do                                    \
  1358.     {                                    \
  1359.       if (!set_regs_matched_done)                    \
  1360.     {                                \
  1361.       active_reg_t r;                        \
  1362.       set_regs_matched_done = 1;                    \
  1363.       for (r = lowest_active_reg; r <= highest_active_reg; r++)    \
  1364.         {                                \
  1365.           MATCHED_SOMETHING (reg_info[r])                \
  1366.         = EVER_MATCHED_SOMETHING (reg_info[r])            \
  1367.         = 1;                            \
  1368.         }                                \
  1369.     }                                \
  1370.     }                                    \
  1371.   while (0)
  1372.  
  1373. /* Registers are set to a sentinel when they haven't yet matched.  */
  1374. static char reg_unset_dummy;
  1375. #define REG_UNSET_VALUE (®_unset_dummy)
  1376. #define REG_UNSET(e) ((e) == REG_UNSET_VALUE)
  1377.  
  1378. /* Subroutine declarations and macros for regex_compile.  */
  1379.  
  1380. static reg_errcode_t regex_compile _RE_ARGS((const char *pattern, size_t size,
  1381.                          reg_syntax_t syntax,
  1382.                          struct re_pattern_buffer *bufp));
  1383. static void store_op1 _RE_ARGS((re_opcode_t op, unsigned char *loc, int arg));
  1384. static void store_op2 _RE_ARGS((re_opcode_t op, unsigned char *loc,
  1385.                 int arg1, int arg2));
  1386. static void insert_op1 _RE_ARGS((re_opcode_t op, unsigned char *loc,
  1387.                  int arg, unsigned char *end));
  1388. static void insert_op2 _RE_ARGS((re_opcode_t op, unsigned char *loc,
  1389.                  int arg1, int arg2, unsigned char *end));
  1390. static boolean at_begline_loc_p _RE_ARGS((const char *pattern, const char *p,
  1391.                       reg_syntax_t syntax));
  1392. static boolean at_endline_loc_p _RE_ARGS((const char *p, const char *pend,
  1393.                       reg_syntax_t syntax));
  1394. static reg_errcode_t compile_range _RE_ARGS((const char **p_ptr,
  1395.                          const char *pend,
  1396.                          char *translate,
  1397.                          reg_syntax_t syntax,
  1398.                          unsigned char *b));
  1399.  
  1400. /* Fetch the next character in the uncompiled pattern---translating it 
  1401.    if necessary.  Also cast from a signed character in the constant
  1402.    string passed to us by the user to an unsigned char that we can use
  1403.    as an array index (in, e.g., `translate').  */
  1404. #define PATFETCH(c)                            \
  1405.   do {if (p == pend) return REG_EEND;                    \
  1406.     c = (unsigned char) *p++;                        \
  1407.     if (translate) c = translate[c];                     \
  1408.   } while (0)
  1409.  
  1410. /* Fetch the next character in the uncompiled pattern, with no
  1411.    translation.  */
  1412. #define PATFETCH_RAW(c)                            \
  1413.   do {if (p == pend) return REG_EEND;                    \
  1414.     c = (unsigned char) *p++;                         \
  1415.   } while (0)
  1416.  
  1417. /* Go backwards one character in the pattern.  */
  1418. #define PATUNFETCH p--
  1419.  
  1420.  
  1421. /* If `translate' is non-null, return translate[D], else just D.  We
  1422.    cast the subscript to translate because some data is declared as
  1423.    `char *', to avoid warnings when a string constant is passed.  But
  1424.    when we use a character as a subscript we must make it unsigned.  */
  1425. #define TRANSLATE(d) (translate ? translate[(unsigned char) (d)] : (d))
  1426.  
  1427.  
  1428. /* Macros for outputting the compiled pattern into `buffer'.  */
  1429.  
  1430. /* If the buffer isn't allocated when it comes in, use this.  */
  1431. #define INIT_BUF_SIZE  32
  1432.  
  1433. /* Make sure we have at least N more bytes of space in buffer.  */
  1434. #define GET_BUFFER_SPACE(n)                        \
  1435.     while (b - bufp->buffer + (n) > bufp->allocated)            \
  1436.       EXTEND_BUFFER ()
  1437.  
  1438. /* Make sure we have one more byte of buffer space and then add C to it.  */
  1439. #define BUF_PUSH(c)                            \
  1440.   do {                                    \
  1441.     GET_BUFFER_SPACE (1);                        \
  1442.     *b++ = (unsigned char) (c);                        \
  1443.   } while (0)
  1444.  
  1445.  
  1446. /* Ensure we have two more bytes of buffer space and then append C1 and C2.  */
  1447. #define BUF_PUSH_2(c1, c2)                        \
  1448.   do {                                    \
  1449.     GET_BUFFER_SPACE (2);                        \
  1450.     *b++ = (unsigned char) (c1);                    \
  1451.     *b++ = (unsigned char) (c2);                    \
  1452.   } while (0)
  1453.  
  1454.  
  1455. /* As with BUF_PUSH_2, except for three bytes.  */
  1456. #define BUF_PUSH_3(c1, c2, c3)                        \
  1457.   do {                                    \
  1458.     GET_BUFFER_SPACE (3);                        \
  1459.     *b++ = (unsigned char) (c1);                    \
  1460.     *b++ = (unsigned char) (c2);                    \
  1461.     *b++ = (unsigned char) (c3);                    \
  1462.   } while (0)
  1463.  
  1464.  
  1465. /* Store a jump with opcode OP at LOC to location TO.  We store a
  1466.    relative address offset by the three bytes the jump itself occupies.  */
  1467. #define STORE_JUMP(op, loc, to) \
  1468.   store_op1 (op, loc, (int)((to) - (loc) - 3))
  1469.  
  1470. /* Likewise, for a two-argument jump.  */
  1471. #define STORE_JUMP2(op, loc, to, arg) \
  1472.   store_op2 (op, loc, (int)((to) - (loc) - 3), arg)
  1473.  
  1474. /* Like `STORE_JUMP', but for inserting.  Assume `b' is the buffer end.  */
  1475. #define INSERT_JUMP(op, loc, to) \
  1476.   insert_op1 (op, loc, (int)((to) - (loc) - 3), b)
  1477.  
  1478. /* Like `STORE_JUMP2', but for inserting.  Assume `b' is the buffer end.  */
  1479. #define INSERT_JUMP2(op, loc, to, arg) \
  1480.   insert_op2 (op, loc, (int)((to) - (loc) - 3), arg, b)
  1481.  
  1482.  
  1483. /* This is not an arbitrary limit: the arguments which represent offsets
  1484.    into the pattern are two bytes long.  So if 2^16 bytes turns out to
  1485.    be too small, many things would have to change.  */
  1486. /* Any other compiler which, like MSC, has allocation limit below 2^16
  1487.    bytes will have to use approach similar to what was done below for
  1488.    MSC and drop MAX_BUF_SIZE a bit.  Otherwise you may end up
  1489.    reallocating to 0 bytes.  Such thing is not going to work too well.
  1490.    You have been warned!!  */
  1491. #ifdef _MSC_VER
  1492. /* Microsoft C 16-bit versions limit malloc to approx 65512 bytes.
  1493.    The REALLOC define eliminates a flurry of conversion warnings,
  1494.    but is not required. */
  1495. #define MAX_BUF_SIZE  65500L
  1496. #define REALLOC(p,s) realloc((p), (size_t) (s))
  1497. #else
  1498. #define MAX_BUF_SIZE (1L << 16)
  1499. #define REALLOC realloc
  1500. #endif
  1501.  
  1502. /* Extend the buffer by twice its current size via realloc and
  1503.    reset the pointers that pointed into the old block to point to the
  1504.    correct places in the new one.  If extending the buffer results in it
  1505.    being larger than MAX_BUF_SIZE, then flag memory exhausted.  */
  1506. #define EXTEND_BUFFER()                            \
  1507.   do {                                     \
  1508.     unsigned char *old_buffer = bufp->buffer;                \
  1509.     if (bufp->allocated == MAX_BUF_SIZE)                 \
  1510.       return REG_ESIZE;                            \
  1511.     bufp->allocated <<= 1;                        \
  1512.     if (bufp->allocated > MAX_BUF_SIZE)                    \
  1513.       bufp->allocated = MAX_BUF_SIZE;                     \
  1514.     bufp->buffer = (unsigned char *) REALLOC(bufp->buffer, bufp->allocated);\
  1515.     if (bufp->buffer == NULL)                        \
  1516.       return REG_ESPACE;                        \
  1517.     /* If the buffer moved, move all the pointers into it.  */        \
  1518.     if (old_buffer != bufp->buffer)                    \
  1519.       {                                    \
  1520.         b = (b - old_buffer) + bufp->buffer;                \
  1521.         begalt = (begalt - old_buffer) + bufp->buffer;            \
  1522.         if (fixup_alt_jump)                        \
  1523.           fixup_alt_jump = (fixup_alt_jump - old_buffer) + bufp->buffer;\
  1524.         if (laststart)                            \
  1525.           laststart = (laststart - old_buffer) + bufp->buffer;        \
  1526.         if (pending_exact)                        \
  1527.           pending_exact = (pending_exact - old_buffer) + bufp->buffer;    \
  1528.       }                                    \
  1529.   } while (0)
  1530.  
  1531.  
  1532. /* Since we have one byte reserved for the register number argument to
  1533.    {start,stop}_memory, the maximum number of groups we can report
  1534.    things about is what fits in that byte.  */
  1535. #define MAX_REGNUM 255
  1536.  
  1537. /* But patterns can have more than `MAX_REGNUM' registers.  We just
  1538.    ignore the excess.  */
  1539. typedef unsigned regnum_t;
  1540.  
  1541.  
  1542. /* Macros for the compile stack.  */
  1543.  
  1544. /* Since offsets can go either forwards or backwards, this type needs to
  1545.    be able to hold values from -(MAX_BUF_SIZE - 1) to MAX_BUF_SIZE - 1.  */
  1546. /* int may be not enough when sizeof(int) == 2                           */
  1547. typedef long pattern_offset_t;
  1548.  
  1549. typedef struct
  1550. {
  1551.   pattern_offset_t begalt_offset;
  1552.   pattern_offset_t fixup_alt_jump;
  1553.   pattern_offset_t inner_group_offset;
  1554.   pattern_offset_t laststart_offset;  
  1555.   regnum_t regnum;
  1556. } compile_stack_elt_t;
  1557.  
  1558.  
  1559. typedef struct
  1560. {
  1561.   compile_stack_elt_t *stack;
  1562.   unsigned size;
  1563.   unsigned avail;            /* Offset of next open position.  */
  1564. } compile_stack_type;
  1565.  
  1566.  
  1567. #define INIT_COMPILE_STACK_SIZE 32
  1568.  
  1569. #define COMPILE_STACK_EMPTY  (compile_stack.avail == 0)
  1570. #define COMPILE_STACK_FULL  (compile_stack.avail == compile_stack.size)
  1571.  
  1572. /* The next available element.  */
  1573. #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
  1574.  
  1575.  
  1576. /* Set the bit for character C in a list.  */
  1577. #define SET_LIST_BIT(c)                               \
  1578.   (b[((unsigned char) (c)) / BYTEWIDTH]               \
  1579.    |= 1 << (((unsigned char) c) % BYTEWIDTH))
  1580.  
  1581.  
  1582. /* Get the next unsigned number in the uncompiled pattern.  */
  1583. #define GET_UNSIGNED_NUMBER(num)                     \
  1584.   { if (p != pend)                            \
  1585.      {                                    \
  1586.        PATFETCH (c);                             \
  1587.        while (ISDIGIT (c))                         \
  1588.          {                                 \
  1589.            if (num < 0)                            \
  1590.               num = 0;                            \
  1591.            num = num * 10 + c - '0';                     \
  1592.            if (p == pend)                         \
  1593.               break;                             \
  1594.            PATFETCH (c);                        \
  1595.          }                                 \
  1596.        }                                 \
  1597.     }        
  1598.  
  1599. #define CHAR_CLASS_MAX_LENGTH  6 /* Namely, `xdigit'.  */
  1600.  
  1601. #define IS_CHAR_CLASS(string)                        \
  1602.    (STREQ (string, "alpha") || STREQ (string, "upper")            \
  1603.     || STREQ (string, "lower") || STREQ (string, "digit")        \
  1604.     || STREQ (string, "alnum") || STREQ (string, "xdigit")        \
  1605.     || STREQ (string, "space") || STREQ (string, "print")        \
  1606.     || STREQ (string, "punct") || STREQ (string, "graph")        \
  1607.     || STREQ (string, "cntrl") || STREQ (string, "blank"))
  1608.  
  1609. #ifndef MATCH_MAY_ALLOCATE
  1610.  
  1611. /* If we cannot allocate large objects within re_match_2_internal,
  1612.    we make the fail stack and register vectors global.
  1613.    The fail stack, we grow to the maximum size when a regexp
  1614.    is compiled.
  1615.    The register vectors, we adjust in size each time we
  1616.    compile a regexp, according to the number of registers it needs.  */
  1617.  
  1618. static fail_stack_type fail_stack;
  1619.  
  1620. /* Size with which the following vectors are currently allocated.
  1621.    That is so we can make them bigger as needed,
  1622.    but never make them smaller.  */
  1623. static int regs_allocated_size;
  1624.  
  1625. static const char **     regstart, **     regend;
  1626. static const char ** old_regstart, ** old_regend;
  1627. static const char **best_regstart, **best_regend;
  1628. static register_info_type *reg_info; 
  1629. static const char **reg_dummy;
  1630. static register_info_type *reg_info_dummy;
  1631.  
  1632. /* Make the register vectors big enough for NUM_REGS registers,
  1633.    but don't make them smaller.  */
  1634.  
  1635. static
  1636. regex_grow_registers (num_regs)
  1637.      int num_regs;
  1638. {
  1639.   if (num_regs > regs_allocated_size)
  1640.     {
  1641.       RETALLOC_IF (regstart,     num_regs, const char *);
  1642.       RETALLOC_IF (regend,     num_regs, const char *);
  1643.       RETALLOC_IF (old_regstart, num_regs, const char *);
  1644.       RETALLOC_IF (old_regend,     num_regs, const char *);
  1645.       RETALLOC_IF (best_regstart, num_regs, const char *);
  1646.       RETALLOC_IF (best_regend,     num_regs, const char *);
  1647.       RETALLOC_IF (reg_info,     num_regs, register_info_type);
  1648.       RETALLOC_IF (reg_dummy,     num_regs, const char *);
  1649.       RETALLOC_IF (reg_info_dummy, num_regs, register_info_type);
  1650.  
  1651.       regs_allocated_size = num_regs;
  1652.     }
  1653. }
  1654.  
  1655. #endif /* not MATCH_MAY_ALLOCATE */
  1656.  
  1657. static boolean group_in_compile_stack _RE_ARGS((compile_stack_type
  1658.                         compile_stack,
  1659.                         regnum_t regnum));
  1660.  
  1661. /* `regex_compile' compiles PATTERN (of length SIZE) according to SYNTAX.
  1662.    Returns one of error codes defined in `regex.h', or zero for success.
  1663.  
  1664.    Assumes the `allocated' (and perhaps `buffer') and `translate'
  1665.    fields are set in BUFP on entry.
  1666.  
  1667.    If it succeeds, results are put in BUFP (if it returns an error, the
  1668.    contents of BUFP are undefined):
  1669.      `buffer' is the compiled pattern;
  1670.      `syntax' is set to SYNTAX;
  1671.      `used' is set to the length of the compiled pattern;
  1672.      `fastmap_accurate' is zero;
  1673.      `re_nsub' is the number of subexpressions in PATTERN;
  1674.      `not_bol' and `not_eol' are zero;
  1675.    
  1676.    The `fastmap' and `newline_anchor' fields are neither
  1677.    examined nor set.  */
  1678.  
  1679. /* Return, freeing storage we allocated.  */
  1680. #define FREE_STACK_RETURN(value)        \
  1681.   return (free (compile_stack.stack), value)
  1682.  
  1683. static reg_errcode_t
  1684. regex_compile (pattern, size, syntax, bufp)
  1685.      const char *pattern;
  1686.      size_t size;
  1687.      reg_syntax_t syntax;
  1688.      struct re_pattern_buffer *bufp;
  1689. {
  1690.   /* We fetch characters from PATTERN here.  Even though PATTERN is
  1691.      `char *' (i.e., signed), we declare these variables as unsigned, so
  1692.      they can be reliably used as array indices.  */
  1693.   register unsigned char c, c1;
  1694.   
  1695.   /* A random temporary spot in PATTERN.  */
  1696.   const char *p1;
  1697.  
  1698.   /* Points to the end of the buffer, where we should append.  */
  1699.   register unsigned char *b;
  1700.   
  1701.   /* Keeps track of unclosed groups.  */
  1702.   compile_stack_type compile_stack;
  1703.  
  1704.   /* Points to the current (ending) position in the pattern.  */
  1705.   const char *p = pattern;
  1706.   const char *pend = pattern + size;
  1707.   
  1708.   /* How to translate the characters in the pattern.  */
  1709.   char *translate = bufp->translate;
  1710.  
  1711.   /* Address of the count-byte of the most recently inserted `exactn'
  1712.      command.  This makes it possible to tell if a new exact-match
  1713.      character can be added to that command or if the character requires
  1714.      a new `exactn' command.  */
  1715.   unsigned char *pending_exact = 0;
  1716.  
  1717.   /* Address of start of the most recently finished expression.
  1718.      This tells, e.g., postfix * where to find the start of its
  1719.      operand.  Reset at the beginning of groups and alternatives.  */
  1720.   unsigned char *laststart = 0;
  1721.  
  1722.   /* Address of beginning of regexp, or inside of last group.  */
  1723.   unsigned char *begalt;
  1724.  
  1725.   /* Place in the uncompiled pattern (i.e., the {) to
  1726.      which to go back if the interval is invalid.  */
  1727.   const char *beg_interval;
  1728.                 
  1729.   /* Address of the place where a forward jump should go to the end of
  1730.      the containing expression.  Each alternative of an `or' -- except the
  1731.      last -- ends with a forward jump of this sort.  */
  1732.   unsigned char *fixup_alt_jump = 0;
  1733.  
  1734.   /* Counts open-groups as they are encountered.  Remembered for the
  1735.      matching close-group on the compile stack, so the same register
  1736.      number is put in the stop_memory as the start_memory.  */
  1737.   regnum_t regnum = 0;
  1738.  
  1739. #ifdef DEBUG
  1740.   DEBUG_PRINT1 ("\nCompiling pattern: ");
  1741.   if (debug)
  1742.     {
  1743.       unsigned debug_count;
  1744.       
  1745.       for (debug_count = 0; debug_count < size; debug_count++)
  1746.         putchar (pattern[debug_count]);
  1747.       putchar ('\n');
  1748.     }
  1749. #endif /* DEBUG */
  1750.  
  1751.   /* Initialize the compile stack.  */
  1752.   compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t);
  1753.   if (compile_stack.stack == NULL)
  1754.     return REG_ESPACE;
  1755.  
  1756.   compile_stack.size = INIT_COMPILE_STACK_SIZE;
  1757.   compile_stack.avail = 0;
  1758.  
  1759.   /* Initialize the pattern buffer.  */
  1760.   bufp->syntax = syntax;
  1761.   bufp->fastmap_accurate = 0;
  1762.   bufp->not_bol = bufp->not_eol = 0;
  1763.  
  1764.   /* Set `used' to zero, so that if we return an error, the pattern
  1765.      printer (for debugging) will think there's no pattern.  We reset it
  1766.      at the end.  */
  1767.   bufp->used = 0;
  1768.   
  1769.   /* Always count groups, whether or not bufp->no_sub is set.  */
  1770.   bufp->re_nsub = 0;                
  1771.  
  1772. #if !defined (emacs) && !defined (SYNTAX_TABLE)
  1773.   /* Initialize the syntax table.  */
  1774.    init_syntax_once ();
  1775. #endif
  1776.  
  1777.   if (bufp->allocated == 0)
  1778.     {
  1779.       if (bufp->buffer)
  1780.     { /* If zero allocated, but buffer is non-null, try to realloc
  1781.              enough space.  This loses if buffer's address is bogus, but
  1782.              that is the user's responsibility.  */
  1783.           RETALLOC (bufp->buffer, INIT_BUF_SIZE, unsigned char);
  1784.         }
  1785.       else
  1786.         { /* Caller did not allocate a buffer.  Do it for them.  */
  1787.           bufp->buffer = TALLOC (INIT_BUF_SIZE, unsigned char);
  1788.         }
  1789.       if (!bufp->buffer) FREE_STACK_RETURN (REG_ESPACE);
  1790.  
  1791.       bufp->allocated = INIT_BUF_SIZE;
  1792.     }
  1793.  
  1794.   begalt = b = bufp->buffer;
  1795.  
  1796.   /* Loop through the uncompiled pattern until we're at the end.  */
  1797.   while (p != pend)
  1798.     {
  1799.       PATFETCH (c);
  1800.  
  1801.       switch (c)
  1802.         {
  1803.         case '^':
  1804.           {
  1805.             if (   /* If at start of pattern, it's an operator.  */
  1806.                    p == pattern + 1
  1807.                    /* If context independent, it's an operator.  */
  1808.                 || syntax & RE_CONTEXT_INDEP_ANCHORS
  1809.                    /* Otherwise, depends on what's come before.  */
  1810.                 || at_begline_loc_p (pattern, p, syntax))
  1811.               BUF_PUSH (begline);
  1812.             else
  1813.               goto normal_char;
  1814.           }
  1815.           break;
  1816.  
  1817.  
  1818.         case '$':
  1819.           {
  1820.             if (   /* If at end of pattern, it's an operator.  */
  1821.                    p == pend 
  1822.                    /* If context independent, it's an operator.  */
  1823.                 || syntax & RE_CONTEXT_INDEP_ANCHORS
  1824.                    /* Otherwise, depends on what's next.  */
  1825.                 || at_endline_loc_p (p, pend, syntax))
  1826.                BUF_PUSH (endline);
  1827.              else
  1828.                goto normal_char;
  1829.            }
  1830.            break;
  1831.  
  1832.  
  1833.     case '+':
  1834.         case '?':
  1835.           if ((syntax & RE_BK_PLUS_QM)
  1836.               || (syntax & RE_LIMITED_OPS))
  1837.             goto normal_char;
  1838.         handle_plus:
  1839.         case '*':
  1840.           /* If there is no previous pattern... */
  1841.           if (!laststart)
  1842.             {
  1843.               if (syntax & RE_CONTEXT_INVALID_OPS)
  1844.                 FREE_STACK_RETURN (REG_BADRPT);
  1845.               else if (!(syntax & RE_CONTEXT_INDEP_OPS))
  1846.                 goto normal_char;
  1847.             }
  1848.  
  1849.           {
  1850.             /* Are we optimizing this jump?  */
  1851.             boolean keep_string_p = false;
  1852.             
  1853.             /* 1 means zero (many) matches is allowed.  */
  1854.             char zero_times_ok = 0, many_times_ok = 0;
  1855.  
  1856.             /* If there is a sequence of repetition chars, collapse it
  1857.                down to just one (the right one).  We can't combine
  1858.                interval operators with these because of, e.g., `a{2}*',
  1859.                which should only match an even number of `a's.  */
  1860.  
  1861.             for (;;)
  1862.               {
  1863.                 zero_times_ok |= c != '+';
  1864.                 many_times_ok |= c != '?';
  1865.  
  1866.                 if (p == pend)
  1867.                   break;
  1868.  
  1869.                 PATFETCH (c);
  1870.  
  1871.                 if (c == '*'
  1872.                     || (!(syntax & RE_BK_PLUS_QM) && (c == '+' || c == '?')))
  1873.                   ;
  1874.  
  1875.                 else if (syntax & RE_BK_PLUS_QM  &&  c == '\\')
  1876.                   {
  1877.                     if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
  1878.  
  1879.                     PATFETCH (c1);
  1880.                     if (!(c1 == '+' || c1 == '?'))
  1881.                       {
  1882.                         PATUNFETCH;
  1883.                         PATUNFETCH;
  1884.                         break;
  1885.                       }
  1886.  
  1887.                     c = c1;
  1888.                   }
  1889.                 else
  1890.                   {
  1891.                     PATUNFETCH;
  1892.                     break;
  1893.                   }
  1894.  
  1895.                 /* If we get here, we found another repeat character.  */
  1896.                }
  1897.  
  1898.             /* Star, etc. applied to an empty pattern is equivalent
  1899.                to an empty pattern.  */
  1900.             if (!laststart)  
  1901.               break;
  1902.  
  1903.             /* Now we know whether or not zero matches is allowed
  1904.                and also whether or not two or more matches is allowed.  */
  1905.             if (many_times_ok)
  1906.               { /* More than one repetition is allowed, so put in at the
  1907.                    end a backward relative jump from `b' to before the next
  1908.                    jump we're going to put in below (which jumps from
  1909.                    laststart to after this jump).  
  1910.  
  1911.                    But if we are at the `*' in the exact sequence `.*\n',
  1912.                    insert an unconditional jump backwards to the .,
  1913.                    instead of the beginning of the loop.  This way we only
  1914.                    push a failure point once, instead of every time
  1915.                    through the loop.  */
  1916.                 assert (p - 1 > pattern);
  1917.  
  1918.                 /* Allocate the space for the jump.  */
  1919.                 GET_BUFFER_SPACE (3);
  1920.  
  1921.                 /* We know we are not at the first character of the pattern,
  1922.                    because laststart was nonzero.  And we've already
  1923.                    incremented `p', by the way, to be the character after
  1924.                    the `*'.  Do we have to do something analogous here
  1925.                    for null bytes, because of RE_DOT_NOT_NULL?  */
  1926.                 if (TRANSLATE (*(p - 2)) == TRANSLATE ('.')
  1927.             && zero_times_ok
  1928.                     && p < pend && TRANSLATE (*p) == TRANSLATE ('\n')
  1929.                     && !(syntax & RE_DOT_NEWLINE))
  1930.                   { /* We have .*\n.  */
  1931.                     STORE_JUMP (jump, b, laststart);
  1932.                     keep_string_p = true;
  1933.                   }
  1934.                 else
  1935.                   /* Anything else.  */
  1936.                   STORE_JUMP (maybe_pop_jump, b, laststart - 3);
  1937.  
  1938.                 /* We've added more stuff to the buffer.  */
  1939.                 b += 3;
  1940.               }
  1941.  
  1942.             /* On failure, jump from laststart to b + 3, which will be the
  1943.                end of the buffer after this jump is inserted.  */
  1944.             GET_BUFFER_SPACE (3);
  1945.             INSERT_JUMP (keep_string_p ? on_failure_keep_string_jump
  1946.                                        : on_failure_jump,
  1947.                          laststart, b + 3);
  1948.             pending_exact = 0;
  1949.             b += 3;
  1950.  
  1951.             if (!zero_times_ok)
  1952.               {
  1953.                 /* At least one repetition is required, so insert a
  1954.                    `dummy_failure_jump' before the initial
  1955.                    `on_failure_jump' instruction of the loop. This
  1956.                    effects a skip over that instruction the first time
  1957.                    we hit that loop.  */
  1958.                 GET_BUFFER_SPACE (3);
  1959.                 INSERT_JUMP (dummy_failure_jump, laststart, laststart + 6);
  1960.                 b += 3;
  1961.               }
  1962.             }
  1963.       break;
  1964.  
  1965.  
  1966.     case '.':
  1967.           laststart = b;
  1968.           BUF_PUSH (anychar);
  1969.           break;
  1970.  
  1971.  
  1972.         case '[':
  1973.           {
  1974.             boolean had_char_class = false;
  1975.  
  1976.             if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
  1977.  
  1978.             /* Ensure that we have enough space to push a charset: the
  1979.                opcode, the length count, and the bitset; 34 bytes in all.  */
  1980.         GET_BUFFER_SPACE (34);
  1981.  
  1982.             laststart = b;
  1983.  
  1984.             /* We test `*p == '^' twice, instead of using an if
  1985.                statement, so we only need one BUF_PUSH.  */
  1986.             BUF_PUSH (*p == '^' ? charset_not : charset); 
  1987.             if (*p == '^')
  1988.               p++;
  1989.  
  1990.             /* Remember the first position in the bracket expression.  */
  1991.             p1 = p;
  1992.  
  1993.             /* Push the number of bytes in the bitmap.  */
  1994.             BUF_PUSH ((1 << BYTEWIDTH) / BYTEWIDTH);
  1995.  
  1996.             /* Clear the whole map.  */
  1997.             bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH);
  1998.  
  1999.             /* charset_not matches newline according to a syntax bit.  */
  2000.             if ((re_opcode_t) b[-2] == charset_not
  2001.                 && (syntax & RE_HAT_LISTS_NOT_NEWLINE))
  2002.               SET_LIST_BIT ('\n');
  2003.  
  2004.             /* Read in characters and ranges, setting map bits.  */
  2005.             for (;;)
  2006.               {
  2007.                 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
  2008.  
  2009.                 PATFETCH (c);
  2010.  
  2011.                 /* \ might escape characters inside [...] and [^...].  */
  2012.                 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\\')
  2013.                   {
  2014.                     if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
  2015.  
  2016.                     PATFETCH (c1);
  2017.                     SET_LIST_BIT (c1);
  2018.                     continue;
  2019.                   }
  2020.  
  2021.                 /* Could be the end of the bracket expression.  If it's
  2022.                    not (i.e., when the bracket expression is `[]' so
  2023.                    far), the ']' character bit gets set way below.  */
  2024.                 if (c == ']' && p != p1 + 1)
  2025.                   break;
  2026.  
  2027.                 /* Look ahead to see if it's a range when the last thing
  2028.                    was a character class.  */
  2029.                 if (had_char_class && c == '-' && *p != ']')
  2030.                   FREE_STACK_RETURN (REG_ERANGE);
  2031.  
  2032.                 /* Look ahead to see if it's a range when the last thing
  2033.                    was a character: if this is a hyphen not at the
  2034.                    beginning or the end of a list, then it's the range
  2035.                    operator.  */
  2036.                 if (c == '-' 
  2037.                     && !(p - 2 >= pattern && p[-2] == '[') 
  2038.                     && !(p - 3 >= pattern && p[-3] == '[' && p[-2] == '^')
  2039.                     && *p != ']')
  2040.                   {
  2041.                     reg_errcode_t ret
  2042.                       = compile_range (&p, pend, translate, syntax, b);
  2043.                     if (ret != REG_NOERROR) FREE_STACK_RETURN (ret);
  2044.                   }
  2045.  
  2046.                 else if (p[0] == '-' && p[1] != ']')
  2047.                   { /* This handles ranges made up of characters only.  */
  2048.                     reg_errcode_t ret;
  2049.  
  2050.             /* Move past the `-'.  */
  2051.                     PATFETCH (c1);
  2052.                     
  2053.                     ret = compile_range (&p, pend, translate, syntax, b);
  2054.                     if (ret != REG_NOERROR) FREE_STACK_RETURN (ret);
  2055.                   }
  2056.  
  2057.                 /* See if we're at the beginning of a possible character
  2058.                    class.  */
  2059.  
  2060.                 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == ':')
  2061.                   { /* Leave room for the null.  */
  2062.                     char str[CHAR_CLASS_MAX_LENGTH + 1];
  2063.  
  2064.                     PATFETCH (c);
  2065.                     c1 = 0;
  2066.  
  2067.                     /* If pattern is `[[:'.  */
  2068.                     if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
  2069.  
  2070.                     for (;;)
  2071.                       {
  2072.                         PATFETCH (c);
  2073.                         if (c == ':' || c == ']' || p == pend
  2074.                             || c1 == CHAR_CLASS_MAX_LENGTH)
  2075.                           break;
  2076.                         str[c1++] = c;
  2077.                       }
  2078.                     str[c1] = '\0';
  2079.  
  2080.                     /* If isn't a word bracketed by `[:' and:`]':
  2081.                        undo the ending character, the letters, and leave 
  2082.                        the leading `:' and `[' (but set bits for them).  */
  2083.                     if (c == ':' && *p == ']')
  2084.                       {
  2085.                         int ch;
  2086.                         boolean is_alnum = STREQ (str, "alnum");
  2087.                         boolean is_alpha = STREQ (str, "alpha");
  2088.                         boolean is_blank = STREQ (str, "blank");
  2089.                         boolean is_cntrl = STREQ (str, "cntrl");
  2090.                         boolean is_digit = STREQ (str, "digit");
  2091.                         boolean is_graph = STREQ (str, "graph");
  2092.                         boolean is_lower = STREQ (str, "lower");
  2093.                         boolean is_print = STREQ (str, "print");
  2094.                         boolean is_punct = STREQ (str, "punct");
  2095.                         boolean is_space = STREQ (str, "space");
  2096.                         boolean is_upper = STREQ (str, "upper");
  2097.                         boolean is_xdigit = STREQ (str, "xdigit");
  2098.                         
  2099.                         if (!IS_CHAR_CLASS (str))
  2100.               FREE_STACK_RETURN (REG_ECTYPE);
  2101.  
  2102.                         /* Throw away the ] at the end of the character
  2103.                            class.  */
  2104.                         PATFETCH (c);                    
  2105.  
  2106.                         if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
  2107.  
  2108.                         for (ch = 0; ch < 1 << BYTEWIDTH; ch++)
  2109.                           {
  2110.                 /* This was split into 3 if's to
  2111.                    avoid an arbitrary limit in some compiler.  */
  2112.                             if (   (is_alnum  && ISALNUM (ch))
  2113.                                 || (is_alpha  && ISALPHA (ch))
  2114.                                 || (is_blank  && ISBLANK (ch))
  2115.                                 || (is_cntrl  && ISCNTRL (ch)))
  2116.                   SET_LIST_BIT (ch);
  2117.                 if (   (is_digit  && ISDIGIT (ch))
  2118.                                 || (is_graph  && ISGRAPH (ch))
  2119.                                 || (is_lower  && ISLOWER (ch))
  2120.                                 || (is_print  && ISPRINT (ch)))
  2121.                   SET_LIST_BIT (ch);
  2122.                 if (   (is_punct  && ISPUNCT (ch))
  2123.                                 || (is_space  && ISSPACE (ch))
  2124.                                 || (is_upper  && ISUPPER (ch))
  2125.                                 || (is_xdigit && ISXDIGIT (ch)))
  2126.                   SET_LIST_BIT (ch);
  2127.                           }
  2128.                         had_char_class = true;
  2129.                       }
  2130.                     else
  2131.                       {
  2132.                         c1++;
  2133.                         while (c1--)    
  2134.                           PATUNFETCH;
  2135.                         SET_LIST_BIT ('[');
  2136.                         SET_LIST_BIT (':');
  2137.                         had_char_class = false;
  2138.                       }
  2139.                   }
  2140.                 else
  2141.                   {
  2142.                     had_char_class = false;
  2143.                     SET_LIST_BIT (c);
  2144.                   }
  2145.               }
  2146.  
  2147.             /* Discard any (non)matching list bytes that are all 0 at the
  2148.                end of the map.  Decrease the map-length byte too.  */
  2149.             while ((int) b[-1] > 0 && b[b[-1] - 1] == 0) 
  2150.               b[-1]--; 
  2151.             b += b[-1];
  2152.           }
  2153.           break;
  2154.  
  2155.  
  2156.     case '(':
  2157.           if (syntax & RE_NO_BK_PARENS)
  2158.             goto handle_open;
  2159.           else
  2160.             goto normal_char;
  2161.  
  2162.  
  2163.         case ')':
  2164.           if (syntax & RE_NO_BK_PARENS)
  2165.             goto handle_close;
  2166.           else
  2167.             goto normal_char;
  2168.  
  2169.  
  2170.         case '\n':
  2171.           if (syntax & RE_NEWLINE_ALT)
  2172.             goto handle_alt;
  2173.           else
  2174.             goto normal_char;
  2175.  
  2176.  
  2177.     case '|':
  2178.           if (syntax & RE_NO_BK_VBAR)
  2179.             goto handle_alt;
  2180.           else
  2181.             goto normal_char;
  2182.  
  2183.  
  2184.         case '{':
  2185.            if (syntax & RE_INTERVALS && syntax & RE_NO_BK_BRACES)
  2186.              goto handle_interval;
  2187.            else
  2188.              goto normal_char;
  2189.  
  2190.  
  2191.         case '\\':
  2192.           if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
  2193.  
  2194.           /* Do not translate the character after the \, so that we can
  2195.              distinguish, e.g., \B from \b, even if we normally would
  2196.              translate, e.g., B to b.  */
  2197.           PATFETCH_RAW (c);
  2198.  
  2199.           switch (c)
  2200.             {
  2201.             case '(':
  2202.               if (syntax & RE_NO_BK_PARENS)
  2203.                 goto normal_backslash;
  2204.  
  2205.             handle_open:
  2206.               bufp->re_nsub++;
  2207.               regnum++;
  2208.  
  2209.               if (COMPILE_STACK_FULL)
  2210.                 { 
  2211.                   RETALLOC (compile_stack.stack, compile_stack.size << 1,
  2212.                             compile_stack_elt_t);
  2213.                   if (compile_stack.stack == NULL) return REG_ESPACE;
  2214.  
  2215.                   compile_stack.size <<= 1;
  2216.                 }
  2217.  
  2218.               /* These are the values to restore when we hit end of this
  2219.                  group.  They are all relative offsets, so that if the
  2220.                  whole pattern moves because of realloc, they will still
  2221.                  be valid.  */
  2222.               COMPILE_STACK_TOP.begalt_offset = begalt - bufp->buffer;
  2223.               COMPILE_STACK_TOP.fixup_alt_jump 
  2224.                 = fixup_alt_jump ? fixup_alt_jump - bufp->buffer + 1 : 0;
  2225.               COMPILE_STACK_TOP.laststart_offset = b - bufp->buffer;
  2226.               COMPILE_STACK_TOP.regnum = regnum;
  2227.  
  2228.               /* We will eventually replace the 0 with the number of
  2229.                  groups inner to this one.  But do not push a
  2230.                  start_memory for groups beyond the last one we can
  2231.                  represent in the compiled pattern.  */
  2232.               if (regnum <= MAX_REGNUM)
  2233.                 {
  2234.                   COMPILE_STACK_TOP.inner_group_offset = b - bufp->buffer + 2;
  2235.                   BUF_PUSH_3 (start_memory, regnum, 0);
  2236.                 }
  2237.                 
  2238.               compile_stack.avail++;
  2239.  
  2240.               fixup_alt_jump = 0;
  2241.               laststart = 0;
  2242.               begalt = b;
  2243.           /* If we've reached MAX_REGNUM groups, then this open
  2244.          won't actually generate any code, so we'll have to
  2245.          clear pending_exact explicitly.  */
  2246.           pending_exact = 0;
  2247.               break;
  2248.  
  2249.  
  2250.             case ')':
  2251.               if (syntax & RE_NO_BK_PARENS) goto normal_backslash;
  2252.  
  2253.               if (COMPILE_STACK_EMPTY)
  2254.                 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
  2255.                   goto normal_backslash;
  2256.                 else
  2257.                   FREE_STACK_RETURN (REG_ERPAREN);
  2258.  
  2259.             handle_close:
  2260.               if (fixup_alt_jump)
  2261.                 { /* Push a dummy failure point at the end of the
  2262.                      alternative for a possible future
  2263.                      `pop_failure_jump' to pop.  See comments at
  2264.                      `push_dummy_failure' in `re_match_2'.  */
  2265.                   BUF_PUSH (push_dummy_failure);
  2266.                   
  2267.                   /* We allocated space for this jump when we assigned
  2268.                      to `fixup_alt_jump', in the `handle_alt' case below.  */
  2269.                   STORE_JUMP (jump_past_alt, fixup_alt_jump, b - 1);
  2270.                 }
  2271.  
  2272.               /* See similar code for backslashed left paren above.  */
  2273.               if (COMPILE_STACK_EMPTY)
  2274.                 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
  2275.                   goto normal_char;
  2276.                 else
  2277.                   FREE_STACK_RETURN (REG_ERPAREN);
  2278.  
  2279.               /* Since we just checked for an empty stack above, this
  2280.                  ``can't happen''.  */
  2281.               assert (compile_stack.avail != 0);
  2282.               {
  2283.                 /* We don't just want to restore into `regnum', because
  2284.                    later groups should continue to be numbered higher,
  2285.                    as in `(ab)c(de)' -- the second group is #2.  */
  2286.                 regnum_t this_group_regnum;
  2287.  
  2288.                 compile_stack.avail--;        
  2289.                 begalt = bufp->buffer + COMPILE_STACK_TOP.begalt_offset;
  2290.                 fixup_alt_jump
  2291.                   = COMPILE_STACK_TOP.fixup_alt_jump
  2292.                     ? bufp->buffer + COMPILE_STACK_TOP.fixup_alt_jump - 1 
  2293.                     : 0;
  2294.                 laststart = bufp->buffer + COMPILE_STACK_TOP.laststart_offset;
  2295.                 this_group_regnum = COMPILE_STACK_TOP.regnum;
  2296.         /* If we've reached MAX_REGNUM groups, then this open
  2297.            won't actually generate any code, so we'll have to
  2298.            clear pending_exact explicitly.  */
  2299.         pending_exact = 0;
  2300.  
  2301.                 /* We're at the end of the group, so now we know how many
  2302.                    groups were inside this one.  */
  2303.                 if (this_group_regnum <= MAX_REGNUM)
  2304.                   {
  2305.                     unsigned char *inner_group_loc
  2306.                       = bufp->buffer + COMPILE_STACK_TOP.inner_group_offset;
  2307.                     
  2308.                     *inner_group_loc = regnum - this_group_regnum;
  2309.                     BUF_PUSH_3 (stop_memory, this_group_regnum,
  2310.                                 regnum - this_group_regnum);
  2311.                   }
  2312.               }
  2313.               break;
  2314.  
  2315.  
  2316.             case '|':                    /* `\|'.  */
  2317.               if (syntax & RE_LIMITED_OPS || syntax & RE_NO_BK_VBAR)
  2318.                 goto normal_backslash;
  2319.             handle_alt:
  2320.               if (syntax & RE_LIMITED_OPS)
  2321.                 goto normal_char;
  2322.  
  2323.               /* Insert before the previous alternative a jump which
  2324.                  jumps to this alternative if the former fails.  */
  2325.               GET_BUFFER_SPACE (3);
  2326.               INSERT_JUMP (on_failure_jump, begalt, b + 6);
  2327.               pending_exact = 0;
  2328.               b += 3;
  2329.  
  2330.               /* The alternative before this one has a jump after it
  2331.                  which gets executed if it gets matched.  Adjust that
  2332.                  jump so it will jump to this alternative's analogous
  2333.                  jump (put in below, which in turn will jump to the next
  2334.                  (if any) alternative's such jump, etc.).  The last such
  2335.                  jump jumps to the correct final destination.  A picture:
  2336.                           _____ _____ 
  2337.                           |   | |   |   
  2338.                           |   v |   v 
  2339.                          a | b   | c   
  2340.  
  2341.                  If we are at `b', then fixup_alt_jump right now points to a
  2342.                  three-byte space after `a'.  We'll put in the jump, set
  2343.                  fixup_alt_jump to right after `b', and leave behind three
  2344.                  bytes which we'll fill in when we get to after `c'.  */
  2345.  
  2346.               if (fixup_alt_jump)
  2347.                 STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
  2348.  
  2349.               /* Mark and leave space for a jump after this alternative,
  2350.                  to be filled in later either by next alternative or
  2351.                  when know we're at the end of a series of alternatives.  */
  2352.               fixup_alt_jump = b;
  2353.               GET_BUFFER_SPACE (3);
  2354.               b += 3;
  2355.  
  2356.               laststart = 0;
  2357.               begalt = b;
  2358.               break;
  2359.  
  2360.  
  2361.             case '{': 
  2362.               /* If \{ is a literal.  */
  2363.               if (!(syntax & RE_INTERVALS)
  2364.                      /* If we're at `\{' and it's not the open-interval 
  2365.                         operator.  */
  2366.                   || ((syntax & RE_INTERVALS) && (syntax & RE_NO_BK_BRACES))
  2367.                   || (p - 2 == pattern  &&  p == pend))
  2368.                 goto normal_backslash;
  2369.  
  2370.             handle_interval:
  2371.               {
  2372.                 /* If got here, then the syntax allows intervals.  */
  2373.  
  2374.                 /* At least (most) this many matches must be made.  */
  2375.                 int lower_bound = -1, upper_bound = -1;
  2376.  
  2377.                 beg_interval = p - 1;
  2378.  
  2379.                 if (p == pend)
  2380.                   {
  2381.                     if (syntax & RE_NO_BK_BRACES)
  2382.                       goto unfetch_interval;
  2383.                     else
  2384.                       FREE_STACK_RETURN (REG_EBRACE);
  2385.                   }
  2386.  
  2387.                 GET_UNSIGNED_NUMBER (lower_bound);
  2388.  
  2389.                 if (c == ',')
  2390.                   {
  2391.                     GET_UNSIGNED_NUMBER (upper_bound);
  2392.                     if (upper_bound < 0) upper_bound = RE_DUP_MAX;
  2393.                   }
  2394.                 else
  2395.                   /* Interval such as `{1}' => match exactly once. */
  2396.                   upper_bound = lower_bound;
  2397.  
  2398.                 if (lower_bound < 0 || upper_bound > RE_DUP_MAX
  2399.                     || lower_bound > upper_bound)
  2400.                   {
  2401.                     if (syntax & RE_NO_BK_BRACES)
  2402.                       goto unfetch_interval;
  2403.                     else 
  2404.                       FREE_STACK_RETURN (REG_BADBR);
  2405.                   }
  2406.  
  2407.                 if (!(syntax & RE_NO_BK_BRACES)) 
  2408.                   {
  2409.                     if (c != '\\') FREE_STACK_RETURN (REG_EBRACE);
  2410.  
  2411.                     PATFETCH (c);
  2412.                   }
  2413.  
  2414.                 if (c != '}')
  2415.                   {
  2416.                     if (syntax & RE_NO_BK_BRACES)
  2417.                       goto unfetch_interval;
  2418.                     else 
  2419.                       FREE_STACK_RETURN (REG_BADBR);
  2420.                   }
  2421.  
  2422.                 /* We just parsed a valid interval.  */
  2423.  
  2424.                 /* If it's invalid to have no preceding re.  */
  2425.                 if (!laststart)
  2426.                   {
  2427.                     if (syntax & RE_CONTEXT_INVALID_OPS)
  2428.                       FREE_STACK_RETURN (REG_BADRPT);
  2429.                     else if (syntax & RE_CONTEXT_INDEP_OPS)
  2430.                       laststart = b;
  2431.                     else
  2432.                       goto unfetch_interval;
  2433.                   }
  2434.  
  2435.                 /* If the upper bound is zero, don't want to succeed at
  2436.                    all; jump from `laststart' to `b + 3', which will be
  2437.                    the end of the buffer after we insert the jump.  */
  2438.                  if (upper_bound == 0)
  2439.                    {
  2440.                      GET_BUFFER_SPACE (3);
  2441.                      INSERT_JUMP (jump, laststart, b + 3);
  2442.                      b += 3;
  2443.                    }
  2444.  
  2445.                  /* Otherwise, we have a nontrivial interval.  When
  2446.                     we're all done, the pattern will look like:
  2447.                       set_number_at <jump count> <upper bound>
  2448.                       set_number_at <succeed_n count> <lower bound>
  2449.                       succeed_n <after jump addr> <succeed_n count>
  2450.                       <body of loop>
  2451.                       jump_n <succeed_n addr> <jump count>
  2452.                     (The upper bound and `jump_n' are omitted if
  2453.                     `upper_bound' is 1, though.)  */
  2454.                  else 
  2455.                    { /* If the upper bound is > 1, we need to insert
  2456.                         more at the end of the loop.  */
  2457.                      unsigned nbytes = 10 + (upper_bound > 1) * 10;
  2458.  
  2459.                      GET_BUFFER_SPACE (nbytes);
  2460.  
  2461.                      /* Initialize lower bound of the `succeed_n', even
  2462.                         though it will be set during matching by its
  2463.                         attendant `set_number_at' (inserted next),
  2464.                         because `re_compile_fastmap' needs to know.
  2465.                         Jump to the `jump_n' we might insert below.  */
  2466.                      INSERT_JUMP2 (succeed_n, laststart,
  2467.                                    b + 5 + (upper_bound > 1) * 5,
  2468.                                    lower_bound);
  2469.                      b += 5;
  2470.  
  2471.                      /* Code to initialize the lower bound.  Insert 
  2472.                         before the `succeed_n'.  The `5' is the last two
  2473.                         bytes of this `set_number_at', plus 3 bytes of
  2474.                         the following `succeed_n'.  */
  2475.                      insert_op2 (set_number_at, laststart, 5, lower_bound, b);
  2476.                      b += 5;
  2477.  
  2478.                      if (upper_bound > 1)
  2479.                        { /* More than one repetition is allowed, so
  2480.                             append a backward jump to the `succeed_n'
  2481.                             that starts this interval.
  2482.                             
  2483.                             When we've reached this during matching,
  2484.                             we'll have matched the interval once, so
  2485.                             jump back only `upper_bound - 1' times.  */
  2486.                          STORE_JUMP2 (jump_n, b, laststart + 5,
  2487.                                       upper_bound - 1);
  2488.                          b += 5;
  2489.  
  2490.                          /* The location we want to set is the second
  2491.                             parameter of the `jump_n'; that is `b-2' as
  2492.                             an absolute address.  `laststart' will be
  2493.                             the `set_number_at' we're about to insert;
  2494.                             `laststart+3' the number to set, the source
  2495.                             for the relative address.  But we are
  2496.                             inserting into the middle of the pattern --
  2497.                             so everything is getting moved up by 5.
  2498.                             Conclusion: (b - 2) - (laststart + 3) + 5,
  2499.                             i.e., b - laststart.
  2500.                             
  2501.                             We insert this at the beginning of the loop
  2502.                             so that if we fail during matching, we'll
  2503.                             reinitialize the bounds.  */
  2504.                          insert_op2 (set_number_at, laststart, b - laststart,
  2505.                                      upper_bound - 1, b);
  2506.                          b += 5;
  2507.                        }
  2508.                    }
  2509.                 pending_exact = 0;
  2510.                 beg_interval = NULL;
  2511.               }
  2512.               break;
  2513.  
  2514.             unfetch_interval:
  2515.               /* If an invalid interval, match the characters as literals.  */
  2516.                assert (beg_interval);
  2517.                p = beg_interval;
  2518.                beg_interval = NULL;
  2519.  
  2520.                /* normal_char and normal_backslash need `c'.  */
  2521.                PATFETCH (c);    
  2522.  
  2523.                if (!(syntax & RE_NO_BK_BRACES))
  2524.                  {
  2525.                    if (p > pattern  &&  p[-1] == '\\')
  2526.                      goto normal_backslash;
  2527.                  }
  2528.                goto normal_char;
  2529.  
  2530. #ifdef emacs
  2531.             /* There is no way to specify the before_dot and after_dot
  2532.                operators.  rms says this is ok.  --karl  */
  2533.             case '=':
  2534.               BUF_PUSH (at_dot);
  2535.               break;
  2536.  
  2537.             case 's':    
  2538.               laststart = b;
  2539.               PATFETCH (c);
  2540.               BUF_PUSH_2 (syntaxspec, syntax_spec_code[c]);
  2541.               break;
  2542.  
  2543.             case 'S':
  2544.               laststart = b;
  2545.               PATFETCH (c);
  2546.               BUF_PUSH_2 (notsyntaxspec, syntax_spec_code[c]);
  2547.               break;
  2548. #endif /* emacs */
  2549.  
  2550.  
  2551.             case 'w':
  2552.           if (re_syntax_options & RE_NO_GNU_OPS)
  2553.                goto normal_char;
  2554.               laststart = b;
  2555.               BUF_PUSH (wordchar);
  2556.               break;
  2557.  
  2558.  
  2559.             case 'W':
  2560.           if (re_syntax_options & RE_NO_GNU_OPS)
  2561.                goto normal_char;
  2562.               laststart = b;
  2563.               BUF_PUSH (notwordchar);
  2564.               break;
  2565.  
  2566.  
  2567.             case '<':
  2568.           if (re_syntax_options & RE_NO_GNU_OPS)
  2569.                goto normal_char;
  2570.               BUF_PUSH (wordbeg);
  2571.               break;
  2572.  
  2573.             case '>':
  2574.           if (re_syntax_options & RE_NO_GNU_OPS)
  2575.                goto normal_char;
  2576.               BUF_PUSH (wordend);
  2577.               break;
  2578.  
  2579.             case 'b':
  2580.           if (re_syntax_options & RE_NO_GNU_OPS)
  2581.                goto normal_char;
  2582.               BUF_PUSH (wordbound);
  2583.               break;
  2584.  
  2585.             case 'B':
  2586.           if (re_syntax_options & RE_NO_GNU_OPS)
  2587.                goto normal_char;
  2588.               BUF_PUSH (notwordbound);
  2589.               break;
  2590.  
  2591.             case '`':
  2592.           if (re_syntax_options & RE_NO_GNU_OPS)
  2593.                goto normal_char;
  2594.               BUF_PUSH (begbuf);
  2595.               break;
  2596.  
  2597.             case '\'':
  2598.           if (re_syntax_options & RE_NO_GNU_OPS)
  2599.                goto normal_char;
  2600.               BUF_PUSH (endbuf);
  2601.               break;
  2602.  
  2603.             case '1': case '2': case '3': case '4': case '5':
  2604.             case '6': case '7': case '8': case '9':
  2605.               if (syntax & RE_NO_BK_REFS)
  2606.                 goto normal_char;
  2607.  
  2608.               c1 = c - '0';
  2609.  
  2610.               if (c1 > regnum)
  2611.                 FREE_STACK_RETURN (REG_ESUBREG);
  2612.  
  2613.               /* Can't back reference to a subexpression if inside of it.  */
  2614.               if (group_in_compile_stack (compile_stack, (regnum_t)c1))
  2615.                 goto normal_char;
  2616.  
  2617.               laststart = b;
  2618.               BUF_PUSH_2 (duplicate, c1);
  2619.               break;
  2620.  
  2621.  
  2622.             case '+':
  2623.             case '?':
  2624.               if (syntax & RE_BK_PLUS_QM)
  2625.                 goto handle_plus;
  2626.               else
  2627.                 goto normal_backslash;
  2628.  
  2629.             default:
  2630.             normal_backslash:
  2631.               /* You might think it would be useful for \ to mean
  2632.                  not to translate; but if we don't translate it
  2633.                  it will never match anything.  */
  2634.               c = TRANSLATE (c);
  2635.               goto normal_char;
  2636.             }
  2637.           break;
  2638.  
  2639.  
  2640.     default:
  2641.         /* Expects the character in `c'.  */
  2642.     normal_char:
  2643.           /* If no exactn currently being built.  */
  2644.           if (!pending_exact 
  2645.  
  2646.               /* If last exactn not at current position.  */
  2647.               || pending_exact + *pending_exact + 1 != b
  2648.               
  2649.               /* We have only one byte following the exactn for the count.  */
  2650.           || *pending_exact == (1 << BYTEWIDTH) - 1
  2651.  
  2652.               /* If followed by a repetition operator.  */
  2653.               || *p == '*' || *p == '^'
  2654.           || ((syntax & RE_BK_PLUS_QM)
  2655.           ? *p == '\\' && (p[1] == '+' || p[1] == '?')
  2656.           : (*p == '+' || *p == '?'))
  2657.           || ((syntax & RE_INTERVALS)
  2658.                   && ((syntax & RE_NO_BK_BRACES)
  2659.               ? *p == '{'
  2660.                       : (p[0] == '\\' && p[1] == '{'))))
  2661.         {
  2662.           /* Start building a new exactn.  */
  2663.               
  2664.               laststart = b;
  2665.  
  2666.           BUF_PUSH_2 (exactn, 0);
  2667.           pending_exact = b - 1;
  2668.             }
  2669.             
  2670.       BUF_PUSH (c);
  2671.           (*pending_exact)++;
  2672.       break;
  2673.         } /* switch (c) */
  2674.     } /* while p != pend */
  2675.  
  2676.   
  2677.   /* Through the pattern now.  */
  2678.   
  2679.   if (fixup_alt_jump)
  2680.     STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
  2681.  
  2682.   if (!COMPILE_STACK_EMPTY) 
  2683.     FREE_STACK_RETURN (REG_EPAREN);
  2684.  
  2685.   /* If we don't want backtracking, force success
  2686.      the first time we reach the end of the compiled pattern.  */
  2687.   if (syntax & RE_NO_POSIX_BACKTRACKING)
  2688.     BUF_PUSH (succeed);
  2689.  
  2690.   free (compile_stack.stack);
  2691.  
  2692.   /* We have succeeded; set the length of the buffer.  */
  2693.   bufp->used = b - bufp->buffer;
  2694.  
  2695. #ifdef DEBUG
  2696.   if (debug)
  2697.     {
  2698.       DEBUG_PRINT1 ("\nCompiled pattern: \n");
  2699.       print_compiled_pattern (bufp);
  2700.     }
  2701. #endif /* DEBUG */
  2702.  
  2703. #ifndef MATCH_MAY_ALLOCATE
  2704.   /* Initialize the failure stack to the largest possible stack.  This
  2705.      isn't necessary unless we're trying to avoid calling alloca in
  2706.      the search and match routines.  */
  2707.   {
  2708.     int num_regs = bufp->re_nsub + 1;
  2709.  
  2710.     /* Since DOUBLE_FAIL_STACK refuses to double only if the current size
  2711.        is strictly greater than re_max_failures, the largest possible stack
  2712.        is 2 * re_max_failures failure points.  */
  2713.     if (fail_stack.size < (2 * re_max_failures * MAX_FAILURE_ITEMS))
  2714.       {
  2715.     fail_stack.size = (2 * re_max_failures * MAX_FAILURE_ITEMS);
  2716.  
  2717. #ifdef emacs
  2718.     if (! fail_stack.stack)
  2719.       fail_stack.stack
  2720.         = (fail_stack_elt_t *) xmalloc (fail_stack.size 
  2721.                         * sizeof (fail_stack_elt_t));
  2722.     else
  2723.       fail_stack.stack
  2724.         = (fail_stack_elt_t *) xrealloc (fail_stack.stack,
  2725.                          (fail_stack.size
  2726.                           * sizeof (fail_stack_elt_t)));
  2727. #else /* not emacs */
  2728.     if (! fail_stack.stack)
  2729.       fail_stack.stack
  2730.         = (fail_stack_elt_t *) malloc (fail_stack.size 
  2731.                        * sizeof (fail_stack_elt_t));
  2732.     else
  2733.       fail_stack.stack
  2734.         = (fail_stack_elt_t *) realloc (fail_stack.stack,
  2735.                         (fail_stack.size
  2736.                          * sizeof (fail_stack_elt_t)));
  2737. #endif /* not emacs */
  2738.       }
  2739.  
  2740.     regex_grow_registers (num_regs);
  2741.   }
  2742. #endif /* not MATCH_MAY_ALLOCATE */
  2743.  
  2744.   return REG_NOERROR;
  2745. } /* regex_compile */
  2746.  
  2747. /* Subroutines for `regex_compile'.  */
  2748.  
  2749. /* Store OP at LOC followed by two-byte integer parameter ARG.  */
  2750.  
  2751. static void
  2752. store_op1 (op, loc, arg)
  2753.     re_opcode_t op;
  2754.     unsigned char *loc;
  2755.     int arg;
  2756. {
  2757.   *loc = (unsigned char) op;
  2758.   STORE_NUMBER (loc + 1, arg);
  2759. }
  2760.  
  2761.  
  2762. /* Like `store_op1', but for two two-byte parameters ARG1 and ARG2.  */
  2763.  
  2764. static void
  2765. store_op2 (op, loc, arg1, arg2)
  2766.     re_opcode_t op;
  2767.     unsigned char *loc;
  2768.     int arg1, arg2;
  2769. {
  2770.   *loc = (unsigned char) op;
  2771.   STORE_NUMBER (loc + 1, arg1);
  2772.   STORE_NUMBER (loc + 3, arg2);
  2773. }
  2774.  
  2775.  
  2776. /* Copy the bytes from LOC to END to open up three bytes of space at LOC
  2777.    for OP followed by two-byte integer parameter ARG.  */
  2778.  
  2779. static void
  2780. insert_op1 (op, loc, arg, end)
  2781.     re_opcode_t op;
  2782.     unsigned char *loc;
  2783.     int arg;
  2784.     unsigned char *end;    
  2785. {
  2786.   register unsigned char *pfrom = end;
  2787.   register unsigned char *pto = end + 3;
  2788.  
  2789.   while (pfrom != loc)
  2790.     *--pto = *--pfrom;
  2791.     
  2792.   store_op1 (op, loc, arg);
  2793. }
  2794.  
  2795.  
  2796. /* Like `insert_op1', but for two two-byte parameters ARG1 and ARG2.  */
  2797.  
  2798. static void
  2799. insert_op2 (op, loc, arg1, arg2, end)
  2800.     re_opcode_t op;
  2801.     unsigned char *loc;
  2802.     int arg1, arg2;
  2803.     unsigned char *end;    
  2804. {
  2805.   register unsigned char *pfrom = end;
  2806.   register unsigned char *pto = end + 5;
  2807.  
  2808.   while (pfrom != loc)
  2809.     *--pto = *--pfrom;
  2810.     
  2811.   store_op2 (op, loc, arg1, arg2);
  2812. }
  2813.  
  2814.  
  2815. /* P points to just after a ^ in PATTERN.  Return true if that ^ comes
  2816.    after an alternative or a begin-subexpression.  We assume there is at
  2817.    least one character before the ^.  */
  2818.  
  2819. static boolean
  2820. at_begline_loc_p (pattern, p, syntax)
  2821.     const char *pattern, *p;
  2822.     reg_syntax_t syntax;
  2823. {
  2824.   const char *prev = p - 2;
  2825.   boolean prev_prev_backslash = prev > pattern && prev[-1] == '\\';
  2826.   
  2827.   return
  2828.        /* After a subexpression?  */
  2829.        (*prev == '(' && (syntax & RE_NO_BK_PARENS || prev_prev_backslash))
  2830.        /* After an alternative?  */
  2831.     || (*prev == '|' && (syntax & RE_NO_BK_VBAR || prev_prev_backslash));
  2832. }
  2833.  
  2834.  
  2835. /* The dual of at_begline_loc_p.  This one is for $.  We assume there is
  2836.    at least one character after the $, i.e., `P < PEND'.  */
  2837.  
  2838. static boolean
  2839. at_endline_loc_p (p, pend, syntax)
  2840.     const char *p, *pend;
  2841.     reg_syntax_t syntax;
  2842. {
  2843.   const char *next = p;
  2844.   boolean next_backslash = *next == '\\';
  2845.   const char *next_next = p + 1 < pend ? p + 1 : 0;
  2846.   
  2847.   return
  2848.        /* Before a subexpression?  */
  2849.        (syntax & RE_NO_BK_PARENS ? *next == ')'
  2850.         : next_backslash && next_next && *next_next == ')')
  2851.        /* Before an alternative?  */
  2852.     || (syntax & RE_NO_BK_VBAR ? *next == '|'
  2853.         : next_backslash && next_next && *next_next == '|');
  2854. }
  2855.  
  2856.  
  2857. /* Returns true if REGNUM is in one of COMPILE_STACK's elements and 
  2858.    false if it's not.  */
  2859.  
  2860. static boolean
  2861. group_in_compile_stack (compile_stack, regnum)
  2862.     compile_stack_type compile_stack;
  2863.     regnum_t regnum;
  2864. {
  2865.   int this_element;
  2866.  
  2867.   for (this_element = compile_stack.avail - 1;  
  2868.        this_element >= 0; 
  2869.        this_element--)
  2870.     if (compile_stack.stack[this_element].regnum == regnum)
  2871.       return true;
  2872.  
  2873.   return false;
  2874. }
  2875.  
  2876.  
  2877. /* Read the ending character of a range (in a bracket expression) from the
  2878.    uncompiled pattern *P_PTR (which ends at PEND).  We assume the
  2879.    starting character is in `P[-2]'.  (`P[-1]' is the character `-'.)
  2880.    Then we set the translation of all bits between the starting and
  2881.    ending characters (inclusive) in the compiled pattern B.
  2882.    
  2883.    Return an error code.
  2884.    
  2885.    We use these short variable names so we can use the same macros as
  2886.    `regex_compile' itself.  */
  2887.  
  2888. static reg_errcode_t
  2889. compile_range (p_ptr, pend, translate, syntax, b)
  2890.     const char **p_ptr, *pend;
  2891.     char *translate;
  2892.     reg_syntax_t syntax;
  2893.     unsigned char *b;
  2894. {
  2895.   unsigned this_char;
  2896.  
  2897.   const char *p = *p_ptr;
  2898.   int range_start, range_end;
  2899.   
  2900.   if (p == pend)
  2901.     return REG_ERANGE;
  2902.  
  2903.   /* Even though the pattern is a signed `char *', we need to fetch
  2904.      with unsigned char *'s; if the high bit of the pattern character
  2905.      is set, the range endpoints will be negative if we fetch using a
  2906.      signed char *.
  2907.  
  2908.      We also want to fetch the endpoints without translating them; the 
  2909.      appropriate translation is done in the bit-setting loop below.  */
  2910.   /* The SVR4 compiler on the 3B2 had trouble with unsigned const char *.  */
  2911.   range_start = ((const unsigned char *) p)[-2];
  2912.   range_end   = ((const unsigned char *) p)[0];
  2913.  
  2914.   /* Have to increment the pointer into the pattern string, so the
  2915.      caller isn't still at the ending character.  */
  2916.   (*p_ptr)++;
  2917.  
  2918.   /* If the start is after the end, the range is empty.  */
  2919.   if (range_start > range_end)
  2920.     return syntax & RE_NO_EMPTY_RANGES ? REG_ERANGE : REG_NOERROR;
  2921.  
  2922.   /* Here we see why `this_char' has to be larger than an `unsigned
  2923.      char' -- the range is inclusive, so if `range_end' == 0xff
  2924.      (assuming 8-bit characters), we would otherwise go into an infinite
  2925.      loop, since all characters <= 0xff.  */
  2926.   for (this_char = range_start; this_char <= range_end; this_char++)
  2927.     {
  2928.       SET_LIST_BIT (TRANSLATE (this_char));
  2929.     }
  2930.   
  2931.   return REG_NOERROR;
  2932. }
  2933.  
  2934. /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
  2935.    BUFP.  A fastmap records which of the (1 << BYTEWIDTH) possible
  2936.    characters can start a string that matches the pattern.  This fastmap
  2937.    is used by re_search to skip quickly over impossible starting points.
  2938.  
  2939.    The caller must supply the address of a (1 << BYTEWIDTH)-byte data
  2940.    area as BUFP->fastmap.
  2941.    
  2942.    We set the `fastmap', `fastmap_accurate', and `can_be_null' fields in
  2943.    the pattern buffer.
  2944.  
  2945.    Returns 0 if we succeed, -2 if an internal error.   */
  2946.  
  2947. int
  2948. re_compile_fastmap (bufp)
  2949.      struct re_pattern_buffer *bufp;
  2950. {
  2951.   int j, k;
  2952. #ifdef MATCH_MAY_ALLOCATE
  2953.   fail_stack_type fail_stack;
  2954. #endif
  2955. #ifndef REGEX_MALLOC
  2956.   char *destination;
  2957. #endif
  2958.   /* We don't push any register information onto the failure stack.  */
  2959.   unsigned num_regs = 0;
  2960.   
  2961.   register char *fastmap = bufp->fastmap;
  2962.   unsigned char *pattern = bufp->buffer;
  2963.   unsigned char *p = pattern;
  2964.   register unsigned char *pend = pattern + bufp->used;
  2965.  
  2966.   /* This holds the pointer to the failure stack, when
  2967.      it is allocated relocatably.  */
  2968.   fail_stack_elt_t *failure_stack_ptr;
  2969.  
  2970.   /* Assume that each path through the pattern can be null until
  2971.      proven otherwise.  We set this false at the bottom of switch
  2972.      statement, to which we get only if a particular path doesn't
  2973.      match the empty string.  */
  2974.   boolean path_can_be_null = true;
  2975.  
  2976.   /* We aren't doing a `succeed_n' to begin with.  */
  2977.   boolean succeed_n_p = false;
  2978.  
  2979.   assert (fastmap != NULL && p != NULL);
  2980.   
  2981.   INIT_FAIL_STACK ();
  2982.   bzero (fastmap, 1 << BYTEWIDTH);  /* Assume nothing's valid.  */
  2983.   bufp->fastmap_accurate = 1;        /* It will be when we're done.  */
  2984.   bufp->can_be_null = 0;
  2985.       
  2986.   while (1)
  2987.     {
  2988.       if (p == pend || *p == succeed)
  2989.     {
  2990.       /* We have reached the (effective) end of pattern.  */
  2991.       if (!FAIL_STACK_EMPTY ())
  2992.         {
  2993.           bufp->can_be_null |= path_can_be_null;
  2994.  
  2995.           /* Reset for next path.  */
  2996.           path_can_be_null = true;
  2997.  
  2998.           p = fail_stack.stack[--fail_stack.avail].pointer;
  2999.  
  3000.           continue;
  3001.         }
  3002.       else
  3003.         break;
  3004.     }
  3005.  
  3006.       /* We should never be about to go beyond the end of the pattern.  */
  3007.       assert (p < pend);
  3008.       
  3009.       switch (SWITCH_ENUM_CAST ((re_opcode_t) *p++))
  3010.     {
  3011.  
  3012.         /* I guess the idea here is to simply not bother with a fastmap
  3013.            if a backreference is used, since it's too hard to figure out
  3014.            the fastmap for the corresponding group.  Setting
  3015.            `can_be_null' stops `re_search_2' from using the fastmap, so
  3016.            that is all we do.  */
  3017.     case duplicate:
  3018.       bufp->can_be_null = 1;
  3019.           goto done;
  3020.  
  3021.  
  3022.       /* Following are the cases which match a character.  These end
  3023.          with `break'.  */
  3024.  
  3025.     case exactn:
  3026.           fastmap[p[1]] = 1;
  3027.       break;
  3028.  
  3029.  
  3030.         case charset:
  3031.           for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
  3032.         if (p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH)))
  3033.               fastmap[j] = 1;
  3034.       break;
  3035.  
  3036.  
  3037.     case charset_not:
  3038.       /* Chars beyond end of map must be allowed.  */
  3039.       for (j = *p * BYTEWIDTH; j < (1 << BYTEWIDTH); j++)
  3040.             fastmap[j] = 1;
  3041.  
  3042.       for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
  3043.         if (!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))))
  3044.               fastmap[j] = 1;
  3045.           break;
  3046.  
  3047.  
  3048.     case wordchar:
  3049.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  3050.         if (SYNTAX (j) == Sword)
  3051.           fastmap[j] = 1;
  3052.       break;
  3053.  
  3054.  
  3055.     case notwordchar:
  3056.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  3057.         if (SYNTAX (j) != Sword)
  3058.           fastmap[j] = 1;
  3059.       break;
  3060.  
  3061.  
  3062.         case anychar:
  3063.       {
  3064.         int fastmap_newline = fastmap['\n'];
  3065.  
  3066.         /* `.' matches anything ...  */
  3067.         for (j = 0; j < (1 << BYTEWIDTH); j++)
  3068.           fastmap[j] = 1;
  3069.  
  3070.         /* ... except perhaps newline.  */
  3071.         if (!(bufp->syntax & RE_DOT_NEWLINE))
  3072.           fastmap['\n'] = fastmap_newline;
  3073.  
  3074.         /* Return if we have already set `can_be_null'; if we have,
  3075.            then the fastmap is irrelevant.  Something's wrong here.  */
  3076.         else if (bufp->can_be_null)
  3077.           goto done;
  3078.  
  3079.         /* Otherwise, have to check alternative paths.  */
  3080.         break;
  3081.       }
  3082.  
  3083. #ifdef emacs
  3084.         case syntaxspec:
  3085.       k = *p++;
  3086.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  3087.         if (SYNTAX (j) == (enum syntaxcode) k)
  3088.           fastmap[j] = 1;
  3089.       break;
  3090.  
  3091.  
  3092.     case notsyntaxspec:
  3093.       k = *p++;
  3094.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  3095.         if (SYNTAX (j) != (enum syntaxcode) k)
  3096.           fastmap[j] = 1;
  3097.       break;
  3098.  
  3099.  
  3100.       /* All cases after this match the empty string.  These end with
  3101.          `continue'.  */
  3102.  
  3103.  
  3104.     case before_dot:
  3105.     case at_dot:
  3106.     case after_dot:
  3107.           continue;
  3108. #endif /* not emacs */
  3109.  
  3110.  
  3111.         case no_op:
  3112.         case begline:
  3113.         case endline:
  3114.     case begbuf:
  3115.     case endbuf:
  3116.     case wordbound:
  3117.     case notwordbound:
  3118.     case wordbeg:
  3119.     case wordend:
  3120.         case push_dummy_failure:
  3121.           continue;
  3122.  
  3123.  
  3124.     case jump_n:
  3125.         case pop_failure_jump:
  3126.     case maybe_pop_jump:
  3127.     case jump:
  3128.         case jump_past_alt:
  3129.     case dummy_failure_jump:
  3130.           EXTRACT_NUMBER_AND_INCR (j, p);
  3131.       p += j;    
  3132.       if (j > 0)
  3133.         continue;
  3134.             
  3135.           /* Jump backward implies we just went through the body of a
  3136.              loop and matched nothing.  Opcode jumped to should be
  3137.              `on_failure_jump' or `succeed_n'.  Just treat it like an
  3138.              ordinary jump.  For a * loop, it has pushed its failure
  3139.              point already; if so, discard that as redundant.  */
  3140.           if ((re_opcode_t) *p != on_failure_jump
  3141.           && (re_opcode_t) *p != succeed_n)
  3142.         continue;
  3143.  
  3144.           p++;
  3145.           EXTRACT_NUMBER_AND_INCR (j, p);
  3146.           p += j;        
  3147.       
  3148.           /* If what's on the stack is where we are now, pop it.  */
  3149.           if (!FAIL_STACK_EMPTY () 
  3150.           && fail_stack.stack[fail_stack.avail - 1].pointer == p)
  3151.             fail_stack.avail--;
  3152.  
  3153.           continue;
  3154.  
  3155.  
  3156.         case on_failure_jump:
  3157.         case on_failure_keep_string_jump:
  3158.     handle_on_failure_jump:
  3159.           EXTRACT_NUMBER_AND_INCR (j, p);
  3160.  
  3161.           /* For some patterns, e.g., `(a?)?', `p+j' here points to the
  3162.              end of the pattern.  We don't want to push such a point,
  3163.              since when we restore it above, entering the switch will
  3164.              increment `p' past the end of the pattern.  We don't need
  3165.              to push such a point since we obviously won't find any more
  3166.              fastmap entries beyond `pend'.  Such a pattern can match
  3167.              the null string, though.  */
  3168.           if (p + j < pend)
  3169.             {
  3170.               if (!PUSH_PATTERN_OP (p + j, fail_stack))
  3171.         {
  3172.           RESET_FAIL_STACK ();
  3173.           return -2;
  3174.         }
  3175.             }
  3176.           else
  3177.             bufp->can_be_null = 1;
  3178.  
  3179.           if (succeed_n_p)
  3180.             {
  3181.               EXTRACT_NUMBER_AND_INCR (k, p);    /* Skip the n.  */
  3182.               succeed_n_p = false;
  3183.         }
  3184.  
  3185.           continue;
  3186.  
  3187.  
  3188.     case succeed_n:
  3189.           /* Get to the number of times to succeed.  */
  3190.           p += 2;        
  3191.  
  3192.           /* Increment p past the n for when k != 0.  */
  3193.           EXTRACT_NUMBER_AND_INCR (k, p);
  3194.           if (k == 0)
  3195.         {
  3196.               p -= 4;
  3197.             succeed_n_p = true;  /* Spaghetti code alert.  */
  3198.               goto handle_on_failure_jump;
  3199.             }
  3200.           continue;
  3201.  
  3202.  
  3203.     case set_number_at:
  3204.           p += 4;
  3205.           continue;
  3206.  
  3207.  
  3208.     case start_memory:
  3209.         case stop_memory:
  3210.       p += 2;
  3211.       continue;
  3212.  
  3213.  
  3214.     default:
  3215.           abort (); /* We have listed all the cases.  */
  3216.         } /* switch *p++ */
  3217.  
  3218.       /* Getting here means we have found the possible starting
  3219.          characters for one path of the pattern -- and that the empty
  3220.          string does not match.  We need not follow this path further.
  3221.          Instead, look at the next alternative (remembered on the
  3222.          stack), or quit if no more.  The test at the top of the loop
  3223.          does these things.  */
  3224.       path_can_be_null = false;
  3225.       p = pend;
  3226.     } /* while p */
  3227.  
  3228.   /* Set `can_be_null' for the last path (also the first path, if the
  3229.      pattern is empty).  */
  3230.   bufp->can_be_null |= path_can_be_null;
  3231.  
  3232.  done:
  3233.   RESET_FAIL_STACK ();
  3234.   return 0;
  3235. } /* re_compile_fastmap */
  3236.  
  3237. /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
  3238.    ENDS.  Subsequent matches using PATTERN_BUFFER and REGS will use
  3239.    this memory for recording register information.  STARTS and ENDS
  3240.    must be allocated using the malloc library routine, and must each
  3241.    be at least NUM_REGS * sizeof (regoff_t) bytes long.
  3242.  
  3243.    If NUM_REGS == 0, then subsequent matches should allocate their own
  3244.    register data.
  3245.  
  3246.    Unless this function is called, the first search or match using
  3247.    PATTERN_BUFFER will allocate its own register data, without
  3248.    freeing the old data.  */
  3249.  
  3250. void
  3251. re_set_registers (bufp, regs, num_regs, starts, ends)
  3252.     struct re_pattern_buffer *bufp;
  3253.     struct re_registers *regs;
  3254.     unsigned num_regs;
  3255.     regoff_t *starts, *ends;
  3256. {
  3257.   if (num_regs)
  3258.     {
  3259.       bufp->regs_allocated = REGS_REALLOCATE;
  3260.       regs->num_regs = num_regs;
  3261.       regs->start = starts;
  3262.       regs->end = ends;
  3263.     }
  3264.   else
  3265.     {
  3266.       bufp->regs_allocated = REGS_UNALLOCATED;
  3267.       regs->num_regs = 0;
  3268.       regs->start = regs->end = (regoff_t *) 0;
  3269.     }
  3270. }
  3271.  
  3272. /* Searching routines.  */
  3273.  
  3274. /* Like re_search_2, below, but only one string is specified, and
  3275.    doesn't let you say where to stop matching. */
  3276.  
  3277. int
  3278. re_search (bufp, string, size, startpos, range, regs)
  3279.      struct re_pattern_buffer *bufp;
  3280.      const char *string;
  3281.      int size, startpos, range;
  3282.      struct re_registers *regs;
  3283. {
  3284.   return re_search_2 (bufp, NULL, 0, string, size, startpos, range, 
  3285.               regs, size);
  3286. }
  3287.  
  3288.  
  3289. /* Using the compiled pattern in BUFP->buffer, first tries to match the
  3290.    virtual concatenation of STRING1 and STRING2, starting first at index
  3291.    STARTPOS, then at STARTPOS + 1, and so on.
  3292.    
  3293.    STRING1 and STRING2 have length SIZE1 and SIZE2, respectively.
  3294.    
  3295.    RANGE is how far to scan while trying to match.  RANGE = 0 means try
  3296.    only at STARTPOS; in general, the last start tried is STARTPOS +
  3297.    RANGE.
  3298.    
  3299.    In REGS, return the indices of the virtual concatenation of STRING1
  3300.    and STRING2 that matched the entire BUFP->buffer and its contained
  3301.    subexpressions.
  3302.    
  3303.    Do not consider matching one past the index STOP in the virtual
  3304.    concatenation of STRING1 and STRING2.
  3305.  
  3306.    We return either the position in the strings at which the match was
  3307.    found, -1 if no match, or -2 if error (such as failure
  3308.    stack overflow).  */
  3309.  
  3310. int
  3311. re_search_2 (bufp, string1, size1, string2, size2, startpos, range, regs, stop)
  3312.      struct re_pattern_buffer *bufp;
  3313.      const char *string1, *string2;
  3314.      int size1, size2;
  3315.      int startpos;
  3316.      int range;
  3317.      struct re_registers *regs;
  3318.      int stop;
  3319. {
  3320.   int val;
  3321.   register char *fastmap = bufp->fastmap;
  3322.   register char *translate = bufp->translate;
  3323.   int total_size = size1 + size2;
  3324.   int endpos = startpos + range;
  3325.  
  3326.   /* Check for out-of-range STARTPOS.  */
  3327.   if (startpos < 0 || startpos > total_size)
  3328.     return -1;
  3329.     
  3330.   /* Fix up RANGE if it might eventually take us outside
  3331.      the virtual concatenation of STRING1 and STRING2.  */
  3332.   if (endpos < -1)
  3333.     range = -1 - startpos;
  3334.   else if (endpos > total_size)
  3335.     range = total_size - startpos;
  3336.  
  3337.   /* If the search isn't to be a backwards one, don't waste time in a
  3338.      search for a pattern that must be anchored.  */
  3339.   if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == begbuf && range > 0)
  3340.     {
  3341.       if (startpos > 0)
  3342.     return -1;
  3343.       else
  3344.     range = 1;
  3345.     }
  3346.  
  3347.   /* Update the fastmap now if not correct already.  */
  3348.   if (fastmap && !bufp->fastmap_accurate)
  3349.     if (re_compile_fastmap (bufp) == -2)
  3350.       return -2;
  3351.   
  3352.   /* Loop through the string, looking for a place to start matching.  */
  3353.   for (;;)
  3354.     { 
  3355.       /* If a fastmap is supplied, skip quickly over characters that
  3356.          cannot be the start of a match.  If the pattern can match the
  3357.          null string, however, we don't need to skip characters; we want
  3358.          the first null string.  */
  3359.       if (fastmap && startpos < total_size && !bufp->can_be_null)
  3360.     {
  3361.       if (range > 0)    /* Searching forwards.  */
  3362.         {
  3363.           register const char *d;
  3364.           register int lim = 0;
  3365.           int irange = range;
  3366.  
  3367.               if (startpos < size1 && startpos + range >= size1)
  3368.                 lim = range - (size1 - startpos);
  3369.  
  3370.           d = (startpos >= size1 ? string2 - size1 : string1) + startpos;
  3371.    
  3372.               /* Written out as an if-else to avoid testing `translate'
  3373.                  inside the loop.  */
  3374.           if (translate)
  3375.                 while (range > lim
  3376.                        && !fastmap[(unsigned char)
  3377.                    translate[(unsigned char) *d++]])
  3378.                   range--;
  3379.           else
  3380.                 while (range > lim && !fastmap[(unsigned char) *d++])
  3381.                   range--;
  3382.  
  3383.           startpos += irange - range;
  3384.         }
  3385.       else                /* Searching backwards.  */
  3386.         {
  3387.           register char c = (size1 == 0 || startpos >= size1
  3388.                                  ? string2[startpos - size1] 
  3389.                                  : string1[startpos]);
  3390.  
  3391.           if (!fastmap[(unsigned char) TRANSLATE (c)])
  3392.         goto advance;
  3393.         }
  3394.     }
  3395.  
  3396.       /* If can't match the null string, and that's all we have left, fail.  */
  3397.       if (range >= 0 && startpos == total_size && fastmap
  3398.           && !bufp->can_be_null)
  3399.     return -1;
  3400.  
  3401.       val = re_match_2_internal (bufp, string1, size1, string2, size2,
  3402.                  startpos, regs, stop);
  3403. #ifndef REGEX_MALLOC
  3404. #ifdef C_ALLOCA
  3405.       alloca (0);
  3406. #endif
  3407. #endif
  3408.  
  3409.       if (val >= 0)
  3410.     return startpos;
  3411.         
  3412.       if (val == -2)
  3413.     return -2;
  3414.  
  3415.     advance:
  3416.       if (!range) 
  3417.         break;
  3418.       else if (range > 0) 
  3419.         {
  3420.           range--; 
  3421.           startpos++;
  3422.         }
  3423.       else
  3424.         {
  3425.           range++; 
  3426.           startpos--;
  3427.         }
  3428.     }
  3429.   return -1;
  3430. } /* re_search_2 */
  3431.  
  3432. /* This converts PTR, a pointer into one of the search strings `string1'
  3433.    and `string2' into an offset from the beginning of that string.  */
  3434. #define POINTER_TO_OFFSET(ptr)            \
  3435.   (FIRST_STRING_P (ptr)                \
  3436.    ? ((regoff_t) ((ptr) - string1))        \
  3437.    : ((regoff_t) ((ptr) - string2 + size1)))
  3438.  
  3439. /* Macros for dealing with the split strings in re_match_2.  */
  3440.  
  3441. #define MATCHING_IN_FIRST_STRING  (dend == end_match_1)
  3442.  
  3443. /* Call before fetching a character with *d.  This switches over to
  3444.    string2 if necessary.  */
  3445. #define PREFETCH()                            \
  3446.   while (d == dend)                                \
  3447.     {                                    \
  3448.       /* End of string2 => fail.  */                    \
  3449.       if (dend == end_match_2)                         \
  3450.         goto fail;                            \
  3451.       /* End of string1 => advance to string2.  */             \
  3452.       d = string2;                                \
  3453.       dend = end_match_2;                        \
  3454.     }
  3455.  
  3456.  
  3457. /* Test if at very beginning or at very end of the virtual concatenation
  3458.    of `string1' and `string2'.  If only one string, it's `string2'.  */
  3459. #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2)
  3460. #define AT_STRINGS_END(d) ((d) == end2)    
  3461.  
  3462.  
  3463. /* Test if D points to a character which is word-constituent.  We have
  3464.    two special cases to check for: if past the end of string1, look at
  3465.    the first character in string2; and if before the beginning of
  3466.    string2, look at the last character in string1.  */
  3467. #define WORDCHAR_P(d)                            \
  3468.   (SYNTAX ((d) == end1 ? *string2                    \
  3469.            : (d) == string2 - 1 ? *(end1 - 1) : *(d))            \
  3470.    == Sword)
  3471.  
  3472. /* Test if the character before D and the one at D differ with respect
  3473.    to being word-constituent.  */
  3474. #define AT_WORD_BOUNDARY(d)                        \
  3475.   (AT_STRINGS_BEG (d) || AT_STRINGS_END (d)                \
  3476.    || WORDCHAR_P (d - 1) != WORDCHAR_P (d))
  3477.  
  3478.  
  3479. /* Free everything we malloc.  */
  3480. #ifdef MATCH_MAY_ALLOCATE
  3481. #define FREE_VAR(var) if (var) REGEX_FREE (var); var = NULL
  3482. #define FREE_VARIABLES()                        \
  3483.   do {                                    \
  3484.     REGEX_FREE_STACK (fail_stack.stack);                \
  3485.     FREE_VAR (regstart);                        \
  3486.     FREE_VAR (regend);                            \
  3487.     FREE_VAR (old_regstart);                        \
  3488.     FREE_VAR (old_regend);                        \
  3489.     FREE_VAR (best_regstart);                        \
  3490.     FREE_VAR (best_regend);                        \
  3491.     FREE_VAR (reg_info);                        \
  3492.     FREE_VAR (reg_dummy);                        \
  3493.     FREE_VAR (reg_info_dummy);                        \
  3494.   } while (0)
  3495. #else
  3496. #define FREE_VARIABLES() ((void)0) /* Do nothing!  But inhibit gcc warning.  */
  3497. #endif /* not MATCH_MAY_ALLOCATE */
  3498.  
  3499. /* These values must meet several constraints.  They must not be valid
  3500.    register values; since we have a limit of 255 registers (because
  3501.    we use only one byte in the pattern for the register number), we can
  3502.    use numbers larger than 255.  They must differ by 1, because of
  3503.    NUM_FAILURE_ITEMS above.  And the value for the lowest register must
  3504.    be larger than the value for the highest register, so we do not try
  3505.    to actually save any registers when none are active.  */
  3506. #define NO_HIGHEST_ACTIVE_REG (1 << BYTEWIDTH)
  3507. #define NO_LOWEST_ACTIVE_REG (NO_HIGHEST_ACTIVE_REG + 1)
  3508.  
  3509. /* Matching routines.  */
  3510.  
  3511. #ifndef emacs   /* Emacs never uses this.  */
  3512. /* re_match is like re_match_2 except it takes only a single string.  */
  3513.  
  3514. int
  3515. re_match (bufp, string, size, pos, regs)
  3516.      struct re_pattern_buffer *bufp;
  3517.      const char *string;
  3518.      int size, pos;
  3519.      struct re_registers *regs;
  3520. {
  3521.   int result = re_match_2_internal (bufp, NULL, 0, string, size,
  3522.                     pos, regs, size);
  3523.   alloca (0);
  3524.   return result;
  3525. }
  3526. #endif /* not emacs */
  3527.  
  3528. static boolean group_match_null_string_p _RE_ARGS((unsigned char **p,
  3529.                            unsigned char *end,
  3530.                         register_info_type *reg_info));
  3531. static boolean alt_match_null_string_p _RE_ARGS((unsigned char *p,
  3532.                          unsigned char *end,
  3533.                       register_info_type *reg_info));
  3534. static boolean common_op_match_null_string_p _RE_ARGS((unsigned char **p,
  3535.                                unsigned char *end,
  3536.                         register_info_type *reg_info));
  3537. static int bcmp_translate _RE_ARGS((const char *s1, const char *s2,
  3538.                     int len, char *translate));
  3539.  
  3540. /* re_match_2 matches the compiled pattern in BUFP against the
  3541.    the (virtual) concatenation of STRING1 and STRING2 (of length SIZE1
  3542.    and SIZE2, respectively).  We start matching at POS, and stop
  3543.    matching at STOP.
  3544.    
  3545.    If REGS is non-null and the `no_sub' field of BUFP is nonzero, we
  3546.    store offsets for the substring each group matched in REGS.  See the
  3547.    documentation for exactly how many groups we fill.
  3548.  
  3549.    We return -1 if no match, -2 if an internal error (such as the
  3550.    failure stack overflowing).  Otherwise, we return the length of the
  3551.    matched substring.  */
  3552.  
  3553. int
  3554. re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
  3555.      struct re_pattern_buffer *bufp;
  3556.      const char *string1, *string2;
  3557.      int size1, size2;
  3558.      int pos;
  3559.      struct re_registers *regs;
  3560.      int stop;
  3561. {
  3562.   int result = re_match_2_internal (bufp, string1, size1, string2, size2,
  3563.                     pos, regs, stop);
  3564.   alloca (0);
  3565.   return result;
  3566. }
  3567.  
  3568. /* This is a separate function so that we can force an alloca cleanup
  3569.    afterwards.  */
  3570. static int
  3571. re_match_2_internal (bufp, string1, size1, string2, size2, pos, regs, stop)
  3572.      struct re_pattern_buffer *bufp;
  3573.      const char *string1, *string2;
  3574.      int size1, size2;
  3575.      int pos;
  3576.      struct re_registers *regs;
  3577.      int stop;
  3578. {
  3579.   /* General temporaries.  */
  3580.   int mcnt;
  3581.   unsigned char *p1;
  3582.  
  3583.   /* Just past the end of the corresponding string.  */
  3584.   const char *end1, *end2;
  3585.  
  3586.   /* Pointers into string1 and string2, just past the last characters in
  3587.      each to consider matching.  */
  3588.   const char *end_match_1, *end_match_2;
  3589.  
  3590.   /* Where we are in the data, and the end of the current string.  */
  3591.   const char *d, *dend;
  3592.   
  3593.   /* Where we are in the pattern, and the end of the pattern.  */
  3594.   unsigned char *p = bufp->buffer;
  3595.   register unsigned char *pend = p + bufp->used;
  3596.  
  3597.   /* Mark the opcode just after a start_memory, so we can test for an
  3598.      empty subpattern when we get to the stop_memory.  */
  3599.   unsigned char *just_past_start_mem = 0;
  3600.  
  3601.   /* We use this to map every character in the string.  */
  3602.   char *translate = bufp->translate;
  3603.  
  3604.   /* Failure point stack.  Each place that can handle a failure further
  3605.      down the line pushes a failure point on this stack.  It consists of
  3606.      restart, regend, and reg_info for all registers corresponding to
  3607.      the subexpressions we're currently inside, plus the number of such
  3608.      registers, and, finally, two char *'s.  The first char * is where
  3609.      to resume scanning the pattern; the second one is where to resume
  3610.      scanning the strings.  If the latter is zero, the failure point is
  3611.      a ``dummy''; if a failure happens and the failure point is a dummy,
  3612.      it gets discarded and the next next one is tried.  */
  3613. #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global.  */
  3614.   fail_stack_type fail_stack;
  3615. #endif
  3616. #ifdef DEBUG
  3617.   static unsigned failure_id = 0;
  3618.   unsigned nfailure_points_pushed = 0, nfailure_points_popped = 0;
  3619. #endif
  3620.  
  3621.   /* This holds the pointer to the failure stack, when
  3622.      it is allocated relocatably.  */
  3623.   fail_stack_elt_t *failure_stack_ptr;
  3624.  
  3625.   /* We fill all the registers internally, independent of what we
  3626.      return, for use in backreferences.  The number here includes
  3627.      an element for register zero.  */
  3628.   size_t num_regs = bufp->re_nsub + 1;
  3629.   
  3630.   /* The currently active registers.  */
  3631.   active_reg_t lowest_active_reg = NO_LOWEST_ACTIVE_REG;
  3632.   active_reg_t highest_active_reg = NO_HIGHEST_ACTIVE_REG;
  3633.  
  3634.   /* Information on the contents of registers. These are pointers into
  3635.      the input strings; they record just what was matched (on this
  3636.      attempt) by a subexpression part of the pattern, that is, the
  3637.      regnum-th regstart pointer points to where in the pattern we began
  3638.      matching and the regnum-th regend points to right after where we
  3639.      stopped matching the regnum-th subexpression.  (The zeroth register
  3640.      keeps track of what the whole pattern matches.)  */
  3641. #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
  3642.   const char **regstart = 0, **regend = 0;
  3643. #endif
  3644.  
  3645.   /* If a group that's operated upon by a repetition operator fails to
  3646.      match anything, then the register for its start will need to be
  3647.      restored because it will have been set to wherever in the string we
  3648.      are when we last see its open-group operator.  Similarly for a
  3649.      register's end.  */
  3650. #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
  3651.   const char **old_regstart = 0, **old_regend = 0;
  3652. #endif
  3653.  
  3654.   /* The is_active field of reg_info helps us keep track of which (possibly
  3655.      nested) subexpressions we are currently in. The matched_something
  3656.      field of reg_info[reg_num] helps us tell whether or not we have
  3657.      matched any of the pattern so far this time through the reg_num-th
  3658.      subexpression.  These two fields get reset each time through any
  3659.      loop their register is in.  */
  3660. #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global.  */
  3661.   register_info_type *reg_info = 0; 
  3662. #endif
  3663.  
  3664.   /* The following record the register info as found in the above
  3665.      variables when we find a match better than any we've seen before. 
  3666.      This happens as we backtrack through the failure points, which in
  3667.      turn happens only if we have not yet matched the entire string. */
  3668.   unsigned best_regs_set = false;
  3669. #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
  3670.   const char **best_regstart = 0, **best_regend = 0;
  3671. #endif
  3672.   
  3673.   /* Logically, this is `best_regend[0]'.  But we don't want to have to
  3674.      allocate space for that if we're not allocating space for anything
  3675.      else (see below).  Also, we never need info about register 0 for
  3676.      any of the other register vectors, and it seems rather a kludge to
  3677.      treat `best_regend' differently than the rest.  So we keep track of
  3678.      the end of the best match so far in a separate variable.  We
  3679.      initialize this to NULL so that when we backtrack the first time
  3680.      and need to test it, it's not garbage.  */
  3681.   const char *match_end = NULL;
  3682.  
  3683.   /* This helps SET_REGS_MATCHED avoid doing redundant work.  */
  3684.   int set_regs_matched_done = 0;
  3685.  
  3686.   /* Used when we pop values we don't care about.  */
  3687. #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
  3688.   const char **reg_dummy = 0;
  3689.   register_info_type *reg_info_dummy = 0;
  3690. #endif
  3691.  
  3692. #ifdef DEBUG
  3693.   /* Counts the total number of registers pushed.  */
  3694.   unsigned num_regs_pushed = 0;     
  3695. #endif
  3696.  
  3697.   DEBUG_PRINT1 ("\n\nEntering re_match_2.\n");
  3698.   
  3699.   INIT_FAIL_STACK ();
  3700.   
  3701. #ifdef MATCH_MAY_ALLOCATE
  3702.   /* Do not bother to initialize all the register variables if there are
  3703.      no groups in the pattern, as it takes a fair amount of time.  If
  3704.      there are groups, we include space for register 0 (the whole
  3705.      pattern), even though we never use it, since it simplifies the
  3706.      array indexing.  We should fix this.  */
  3707.   if (bufp->re_nsub)
  3708.     {
  3709.       regstart = REGEX_TALLOC (num_regs, const char *);
  3710.       regend = REGEX_TALLOC (num_regs, const char *);
  3711.       old_regstart = REGEX_TALLOC (num_regs, const char *);
  3712.       old_regend = REGEX_TALLOC (num_regs, const char *);
  3713.       best_regstart = REGEX_TALLOC (num_regs, const char *);
  3714.       best_regend = REGEX_TALLOC (num_regs, const char *);
  3715.       reg_info = REGEX_TALLOC (num_regs, register_info_type);
  3716.       reg_dummy = REGEX_TALLOC (num_regs, const char *);
  3717.       reg_info_dummy = REGEX_TALLOC (num_regs, register_info_type);
  3718.  
  3719.       if (!(regstart && regend && old_regstart && old_regend && reg_info 
  3720.             && best_regstart && best_regend && reg_dummy && reg_info_dummy)) 
  3721.         {
  3722.           FREE_VARIABLES ();
  3723.           return -2;
  3724.         }
  3725.     }
  3726.   else
  3727.     {
  3728.       /* We must initialize all our variables to NULL, so that
  3729.          `FREE_VARIABLES' doesn't try to free them.  */
  3730.       regstart = regend = old_regstart = old_regend = best_regstart
  3731.         = best_regend = reg_dummy = NULL;
  3732.       reg_info = reg_info_dummy = (register_info_type *) NULL;
  3733.     }
  3734. #endif /* MATCH_MAY_ALLOCATE */
  3735.  
  3736.   /* The starting position is bogus.  */
  3737.   if (pos < 0 || pos > size1 + size2)
  3738.     {
  3739.       FREE_VARIABLES ();
  3740.       return -1;
  3741.     }
  3742.     
  3743.   /* Initialize subexpression text positions to -1 to mark ones that no
  3744.      start_memory/stop_memory has been seen for. Also initialize the
  3745.      register information struct.  */
  3746.   for (mcnt = 1; mcnt < num_regs; mcnt++)
  3747.     {
  3748.       regstart[mcnt] = regend[mcnt] 
  3749.         = old_regstart[mcnt] = old_regend[mcnt] = REG_UNSET_VALUE;
  3750.         
  3751.       REG_MATCH_NULL_STRING_P (reg_info[mcnt]) = MATCH_NULL_UNSET_VALUE;
  3752.       IS_ACTIVE (reg_info[mcnt]) = 0;
  3753.       MATCHED_SOMETHING (reg_info[mcnt]) = 0;
  3754.       EVER_MATCHED_SOMETHING (reg_info[mcnt]) = 0;
  3755.     }
  3756.   
  3757.   /* We move `string1' into `string2' if the latter's empty -- but not if
  3758.      `string1' is null.  */
  3759.   if (size2 == 0 && string1 != NULL)
  3760.     {
  3761.       string2 = string1;
  3762.       size2 = size1;
  3763.       string1 = 0;
  3764.       size1 = 0;
  3765.     }
  3766.   end1 = string1 + size1;
  3767.   end2 = string2 + size2;
  3768.  
  3769.   /* Compute where to stop matching, within the two strings.  */
  3770.   if (stop <= size1)
  3771.     {
  3772.       end_match_1 = string1 + stop;
  3773.       end_match_2 = string2;
  3774.     }
  3775.   else
  3776.     {
  3777.       end_match_1 = end1;
  3778.       end_match_2 = string2 + stop - size1;
  3779.     }
  3780.  
  3781.   /* `p' scans through the pattern as `d' scans through the data. 
  3782.      `dend' is the end of the input string that `d' points within.  `d'
  3783.      is advanced into the following input string whenever necessary, but
  3784.      this happens before fetching; therefore, at the beginning of the
  3785.      loop, `d' can be pointing at the end of a string, but it cannot
  3786.      equal `string2'.  */
  3787.   if (size1 > 0 && pos <= size1)
  3788.     {
  3789.       d = string1 + pos;
  3790.       dend = end_match_1;
  3791.     }
  3792.   else
  3793.     {
  3794.       d = string2 + pos - size1;
  3795.       dend = end_match_2;
  3796.     }
  3797.  
  3798.   DEBUG_PRINT1 ("The compiled pattern is: ");
  3799.   DEBUG_PRINT_COMPILED_PATTERN (bufp, p, pend);
  3800.   DEBUG_PRINT1 ("The string to match is: `");
  3801.   DEBUG_PRINT_DOUBLE_STRING (d, string1, size1, string2, size2);
  3802.   DEBUG_PRINT1 ("'\n");
  3803.   
  3804.   /* This loops over pattern commands.  It exits by returning from the
  3805.      function if the match is complete, or it drops through if the match
  3806.      fails at this starting point in the input data.  */
  3807.   for (;;)
  3808.     {
  3809.       DEBUG_PRINT2 ("\n0x%x: ", p);
  3810.  
  3811.       if (p == pend)
  3812.     { /* End of pattern means we might have succeeded.  */
  3813.           DEBUG_PRINT1 ("end of pattern ... ");
  3814.           
  3815.       /* If we haven't matched the entire string, and we want the
  3816.              longest match, try backtracking.  */
  3817.           if (d != end_match_2)
  3818.         {
  3819.           /* 1 if this match ends in the same string (string1 or string2)
  3820.          as the best previous match.  */
  3821.           boolean same_str_p = (FIRST_STRING_P (match_end) 
  3822.                     == MATCHING_IN_FIRST_STRING);
  3823.           /* 1 if this match is the best seen so far.  */
  3824.           boolean best_match_p;
  3825.  
  3826.           /* AIX compiler got confused when this was combined
  3827.          with the previous declaration.  */
  3828.           if (same_str_p)
  3829.         best_match_p = d > match_end;
  3830.           else
  3831.         best_match_p = !MATCHING_IN_FIRST_STRING;
  3832.  
  3833.               DEBUG_PRINT1 ("backtracking.\n");
  3834.               
  3835.               if (!FAIL_STACK_EMPTY ())
  3836.                 { /* More failure points to try.  */
  3837.  
  3838.                   /* If exceeds best match so far, save it.  */
  3839.                   if (!best_regs_set || best_match_p)
  3840.                     {
  3841.                       best_regs_set = true;
  3842.                       match_end = d;
  3843.                       
  3844.                       DEBUG_PRINT1 ("\nSAVING match as best so far.\n");
  3845.                       
  3846.                       for (mcnt = 1; mcnt < num_regs; mcnt++)
  3847.                         {
  3848.                           best_regstart[mcnt] = regstart[mcnt];
  3849.                           best_regend[mcnt] = regend[mcnt];
  3850.                         }
  3851.                     }
  3852.                   goto fail;           
  3853.                 }
  3854.  
  3855.               /* If no failure points, don't restore garbage.  And if
  3856.                  last match is real best match, don't restore second
  3857.                  best one. */
  3858.               else if (best_regs_set && !best_match_p)
  3859.                 {
  3860.               restore_best_regs:
  3861.                   /* Restore best match.  It may happen that `dend ==
  3862.                      end_match_1' while the restored d is in string2.
  3863.                      For example, the pattern `x.*y.*z' against the
  3864.                      strings `x-' and `y-z-', if the two strings are
  3865.                      not consecutive in memory.  */
  3866.                   DEBUG_PRINT1 ("Restoring best registers.\n");
  3867.                   
  3868.                   d = match_end;
  3869.                   dend = ((d >= string1 && d <= end1)
  3870.                    ? end_match_1 : end_match_2);
  3871.  
  3872.           for (mcnt = 1; mcnt < num_regs; mcnt++)
  3873.             {
  3874.               regstart[mcnt] = best_regstart[mcnt];
  3875.               regend[mcnt] = best_regend[mcnt];
  3876.             }
  3877.                 }
  3878.             } /* d != end_match_2 */
  3879.  
  3880.     succeed_label:
  3881.           DEBUG_PRINT1 ("Accepting match.\n");
  3882.  
  3883.           /* If caller wants register contents data back, do it.  */
  3884.           if (regs && !bufp->no_sub)
  3885.         {
  3886.               /* Have the register data arrays been allocated?  */
  3887.               if (bufp->regs_allocated == REGS_UNALLOCATED)
  3888.                 { /* No.  So allocate them with malloc.  We need one
  3889.                      extra element beyond `num_regs' for the `-1' marker
  3890.                      GNU code uses.  */
  3891.                   regs->num_regs = MAX (RE_NREGS, num_regs + 1);
  3892.                   regs->start = TALLOC (regs->num_regs, regoff_t);
  3893.                   regs->end = TALLOC (regs->num_regs, regoff_t);
  3894.                   if (regs->start == NULL || regs->end == NULL)
  3895.             {
  3896.               FREE_VARIABLES ();
  3897.               return -2;
  3898.             }
  3899.                   bufp->regs_allocated = REGS_REALLOCATE;
  3900.                 }
  3901.               else if (bufp->regs_allocated == REGS_REALLOCATE)
  3902.                 { /* Yes.  If we need more elements than were already
  3903.                      allocated, reallocate them.  If we need fewer, just
  3904.                      leave it alone.  */
  3905.                   if (regs->num_regs < num_regs + 1)
  3906.                     {
  3907.                       regs->num_regs = num_regs + 1;
  3908.                       RETALLOC (regs->start, regs->num_regs, regoff_t);
  3909.                       RETALLOC (regs->end, regs->num_regs, regoff_t);
  3910.                       if (regs->start == NULL || regs->end == NULL)
  3911.             {
  3912.               FREE_VARIABLES ();
  3913.               return -2;
  3914.             }
  3915.                     }
  3916.                 }
  3917.               else
  3918.         {
  3919.           /* These braces fend off a "empty body in an else-statement"
  3920.              warning under GCC when assert expands to nothing.  */
  3921.           assert (bufp->regs_allocated == REGS_FIXED);
  3922.         }
  3923.  
  3924.               /* Convert the pointer data in `regstart' and `regend' to
  3925.                  indices.  Register zero has to be set differently,
  3926.                  since we haven't kept track of any info for it.  */
  3927.               if (regs->num_regs > 0)
  3928.                 {
  3929.                   regs->start[0] = pos;
  3930.                   regs->end[0] = (MATCHING_IN_FIRST_STRING
  3931.                   ? ((regoff_t) (d - string1))
  3932.                       : ((regoff_t) (d - string2 + size1)));
  3933.                 }
  3934.               
  3935.               /* Go through the first `min (num_regs, regs->num_regs)'
  3936.                  registers, since that is all we initialized.  */
  3937.           for (mcnt = 1; mcnt < MIN (num_regs, regs->num_regs); mcnt++)
  3938.         {
  3939.                   if (REG_UNSET (regstart[mcnt]) || REG_UNSET (regend[mcnt]))
  3940.                     regs->start[mcnt] = regs->end[mcnt] = -1;
  3941.                   else
  3942.                     {
  3943.               regs->start[mcnt]
  3944.             = (regoff_t) POINTER_TO_OFFSET (regstart[mcnt]);
  3945.                       regs->end[mcnt]
  3946.             = (regoff_t) POINTER_TO_OFFSET (regend[mcnt]);
  3947.                     }
  3948.         }
  3949.               
  3950.               /* If the regs structure we return has more elements than
  3951.                  were in the pattern, set the extra elements to -1.  If
  3952.                  we (re)allocated the registers, this is the case,
  3953.                  because we always allocate enough to have at least one
  3954.                  -1 at the end.  */
  3955.               for (mcnt = num_regs; mcnt < regs->num_regs; mcnt++)
  3956.                 regs->start[mcnt] = regs->end[mcnt] = -1;
  3957.         } /* regs && !bufp->no_sub */
  3958.  
  3959.           DEBUG_PRINT4 ("%u failure points pushed, %u popped (%u remain).\n",
  3960.                         nfailure_points_pushed, nfailure_points_popped,
  3961.                         nfailure_points_pushed - nfailure_points_popped);
  3962.           DEBUG_PRINT2 ("%u registers pushed.\n", num_regs_pushed);
  3963.  
  3964.           mcnt = d - pos - (MATCHING_IN_FIRST_STRING 
  3965.                 ? string1 
  3966.                 : string2 - size1);
  3967.  
  3968.           DEBUG_PRINT2 ("Returning %d from re_match_2.\n", mcnt);
  3969.  
  3970.           FREE_VARIABLES ();
  3971.           return mcnt;
  3972.         }
  3973.  
  3974.       /* Otherwise match next pattern command.  */
  3975.       switch (SWITCH_ENUM_CAST ((re_opcode_t) *p++))
  3976.     {
  3977.         /* Ignore these.  Used to ignore the n of succeed_n's which
  3978.            currently have n == 0.  */
  3979.         case no_op:
  3980.           DEBUG_PRINT1 ("EXECUTING no_op.\n");
  3981.           break;
  3982.  
  3983.     case succeed:
  3984.           DEBUG_PRINT1 ("EXECUTING succeed.\n");
  3985.       goto succeed_label;
  3986.  
  3987.         /* Match the next n pattern characters exactly.  The following
  3988.            byte in the pattern defines n, and the n bytes after that
  3989.            are the characters to match.  */
  3990.     case exactn:
  3991.       mcnt = *p++;
  3992.           DEBUG_PRINT2 ("EXECUTING exactn %d.\n", mcnt);
  3993.  
  3994.           /* This is written out as an if-else so we don't waste time
  3995.              testing `translate' inside the loop.  */
  3996.           if (translate)
  3997.         {
  3998.           do
  3999.         {
  4000.           PREFETCH ();
  4001.           if (translate[(unsigned char) *d++] != (char) *p++)
  4002.                     goto fail;
  4003.         }
  4004.           while (--mcnt);
  4005.         }
  4006.       else
  4007.         {
  4008.           do
  4009.         {
  4010.           PREFETCH ();
  4011.           if (*d++ != (char) *p++) goto fail;
  4012.         }
  4013.           while (--mcnt);
  4014.         }
  4015.       SET_REGS_MATCHED ();
  4016.           break;
  4017.  
  4018.  
  4019.         /* Match any character except possibly a newline or a null.  */
  4020.     case anychar:
  4021.           DEBUG_PRINT1 ("EXECUTING anychar.\n");
  4022.  
  4023.           PREFETCH ();
  4024.  
  4025.           if ((!(bufp->syntax & RE_DOT_NEWLINE) && TRANSLATE (*d) == '\n')
  4026.               || (bufp->syntax & RE_DOT_NOT_NULL && TRANSLATE (*d) == '\000'))
  4027.         goto fail;
  4028.  
  4029.           SET_REGS_MATCHED ();
  4030.           DEBUG_PRINT2 ("  Matched `%d'.\n", *d);
  4031.           d++;
  4032.       break;
  4033.  
  4034.  
  4035.     case charset:
  4036.     case charset_not:
  4037.       {
  4038.         register unsigned char c;
  4039.         boolean not = (re_opcode_t) *(p - 1) == charset_not;
  4040.  
  4041.             DEBUG_PRINT2 ("EXECUTING charset%s.\n", not ? "_not" : "");
  4042.  
  4043.         PREFETCH ();
  4044.         c = TRANSLATE (*d); /* The character to match.  */
  4045.  
  4046.             /* Cast to `unsigned' instead of `unsigned char' in case the
  4047.                bit list is a full 32 bytes long.  */
  4048.         if (c < (unsigned) (*p * BYTEWIDTH)
  4049.         && p[1 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
  4050.           not = !not;
  4051.  
  4052.         p += 1 + *p;
  4053.  
  4054.         if (!not) goto fail;
  4055.             
  4056.         SET_REGS_MATCHED ();
  4057.             d++;
  4058.         break;
  4059.       }
  4060.  
  4061.  
  4062.         /* The beginning of a group is represented by start_memory.
  4063.            The arguments are the register number in the next byte, and the
  4064.            number of groups inner to this one in the next.  The text
  4065.            matched within the group is recorded (in the internal
  4066.            registers data structure) under the register number.  */
  4067.         case start_memory:
  4068.       DEBUG_PRINT3 ("EXECUTING start_memory %d (%d):\n", *p, p[1]);
  4069.  
  4070.           /* Find out if this group can match the empty string.  */
  4071.       p1 = p;        /* To send to group_match_null_string_p.  */
  4072.           
  4073.           if (REG_MATCH_NULL_STRING_P (reg_info[*p]) == MATCH_NULL_UNSET_VALUE)
  4074.             REG_MATCH_NULL_STRING_P (reg_info[*p]) 
  4075.               = group_match_null_string_p (&p1, pend, reg_info);
  4076.  
  4077.           /* Save the position in the string where we were the last time
  4078.              we were at this open-group operator in case the group is
  4079.              operated upon by a repetition operator, e.g., with `(a*)*b'
  4080.              against `ab'; then we want to ignore where we are now in
  4081.              the string in case this attempt to match fails.  */
  4082.           old_regstart[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
  4083.                              ? REG_UNSET (regstart[*p]) ? d : regstart[*p]
  4084.                              : regstart[*p];
  4085.       DEBUG_PRINT2 ("  old_regstart: %d\n", 
  4086.              POINTER_TO_OFFSET (old_regstart[*p]));
  4087.  
  4088.           regstart[*p] = d;
  4089.       DEBUG_PRINT2 ("  regstart: %d\n", POINTER_TO_OFFSET (regstart[*p]));
  4090.  
  4091.           IS_ACTIVE (reg_info[*p]) = 1;
  4092.           MATCHED_SOMETHING (reg_info[*p]) = 0;
  4093.  
  4094.       /* Clear this whenever we change the register activity status.  */
  4095.       set_regs_matched_done = 0;
  4096.           
  4097.           /* This is the new highest active register.  */
  4098.           highest_active_reg = *p;
  4099.           
  4100.           /* If nothing was active before, this is the new lowest active
  4101.              register.  */
  4102.           if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
  4103.             lowest_active_reg = *p;
  4104.  
  4105.           /* Move past the register number and inner group count.  */
  4106.           p += 2;
  4107.       just_past_start_mem = p;
  4108.  
  4109.           break;
  4110.  
  4111.  
  4112.         /* The stop_memory opcode represents the end of a group.  Its
  4113.            arguments are the same as start_memory's: the register
  4114.            number, and the number of inner groups.  */
  4115.     case stop_memory:
  4116.       DEBUG_PRINT3 ("EXECUTING stop_memory %d (%d):\n", *p, p[1]);
  4117.              
  4118.           /* We need to save the string position the last time we were at
  4119.              this close-group operator in case the group is operated
  4120.              upon by a repetition operator, e.g., with `((a*)*(b*)*)*'
  4121.              against `aba'; then we want to ignore where we are now in
  4122.              the string in case this attempt to match fails.  */
  4123.           old_regend[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
  4124.                            ? REG_UNSET (regend[*p]) ? d : regend[*p]
  4125.                : regend[*p];
  4126.       DEBUG_PRINT2 ("      old_regend: %d\n", 
  4127.              POINTER_TO_OFFSET (old_regend[*p]));
  4128.  
  4129.           regend[*p] = d;
  4130.       DEBUG_PRINT2 ("      regend: %d\n", POINTER_TO_OFFSET (regend[*p]));
  4131.  
  4132.           /* This register isn't active anymore.  */
  4133.           IS_ACTIVE (reg_info[*p]) = 0;
  4134.  
  4135.       /* Clear this whenever we change the register activity status.  */
  4136.       set_regs_matched_done = 0;
  4137.  
  4138.           /* If this was the only register active, nothing is active
  4139.              anymore.  */
  4140.           if (lowest_active_reg == highest_active_reg)
  4141.             {
  4142.               lowest_active_reg = NO_LOWEST_ACTIVE_REG;
  4143.               highest_active_reg = NO_HIGHEST_ACTIVE_REG;
  4144.             }
  4145.           else
  4146.             { /* We must scan for the new highest active register, since
  4147.                  it isn't necessarily one less than now: consider
  4148.                  (a(b)c(d(e)f)g).  When group 3 ends, after the f), the
  4149.                  new highest active register is 1.  */
  4150.               unsigned char r = *p - 1;
  4151.               while (r > 0 && !IS_ACTIVE (reg_info[r]))
  4152.                 r--;
  4153.               
  4154.               /* If we end up at register zero, that means that we saved
  4155.                  the registers as the result of an `on_failure_jump', not
  4156.                  a `start_memory', and we jumped to past the innermost
  4157.                  `stop_memory'.  For example, in ((.)*) we save
  4158.                  registers 1 and 2 as a result of the *, but when we pop
  4159.                  back to the second ), we are at the stop_memory 1.
  4160.                  Thus, nothing is active.  */
  4161.           if (r == 0)
  4162.                 {
  4163.                   lowest_active_reg = NO_LOWEST_ACTIVE_REG;
  4164.                   highest_active_reg = NO_HIGHEST_ACTIVE_REG;
  4165.                 }
  4166.               else
  4167.                 highest_active_reg = r;
  4168.             }
  4169.           
  4170.           /* If just failed to match something this time around with a
  4171.              group that's operated on by a repetition operator, try to
  4172.              force exit from the ``loop'', and restore the register
  4173.              information for this group that we had before trying this
  4174.              last match.  */
  4175.           if ((!MATCHED_SOMETHING (reg_info[*p])
  4176.                || just_past_start_mem == p - 1)
  4177.           && (p + 2) < pend)              
  4178.             {
  4179.               boolean is_a_jump_n = false;
  4180.               
  4181.               p1 = p + 2;
  4182.               mcnt = 0;
  4183.               switch ((re_opcode_t) *p1++)
  4184.                 {
  4185.                   case jump_n:
  4186.             is_a_jump_n = true;
  4187.                   case pop_failure_jump:
  4188.           case maybe_pop_jump:
  4189.           case jump:
  4190.           case dummy_failure_jump:
  4191.                     EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4192.             if (is_a_jump_n)
  4193.               p1 += 2;
  4194.                     break;
  4195.                   
  4196.                   default:
  4197.                     /* do nothing */ ;
  4198.                 }
  4199.           p1 += mcnt;
  4200.         
  4201.               /* If the next operation is a jump backwards in the pattern
  4202.              to an on_failure_jump right before the start_memory
  4203.                  corresponding to this stop_memory, exit from the loop
  4204.                  by forcing a failure after pushing on the stack the
  4205.                  on_failure_jump's jump in the pattern, and d.  */
  4206.               if (mcnt < 0 && (re_opcode_t) *p1 == on_failure_jump
  4207.                   && (re_opcode_t) p1[3] == start_memory && p1[4] == *p)
  4208.         {
  4209.                   /* If this group ever matched anything, then restore
  4210.                      what its registers were before trying this last
  4211.                      failed match, e.g., with `(a*)*b' against `ab' for
  4212.                      regstart[1], and, e.g., with `((a*)*(b*)*)*'
  4213.                      against `aba' for regend[3].
  4214.                      
  4215.                      Also restore the registers for inner groups for,
  4216.                      e.g., `((a*)(b*))*' against `aba' (register 3 would
  4217.                      otherwise get trashed).  */
  4218.                      
  4219.                   if (EVER_MATCHED_SOMETHING (reg_info[*p]))
  4220.             {
  4221.               unsigned r; 
  4222.         
  4223.                       EVER_MATCHED_SOMETHING (reg_info[*p]) = 0;
  4224.                       
  4225.               /* Restore this and inner groups' (if any) registers.  */
  4226.                       for (r = *p; r < *p + *(p + 1); r++)
  4227.                         {
  4228.                           regstart[r] = old_regstart[r];
  4229.  
  4230.                           /* xx why this test?  */
  4231.                           if ((s_reg_t) old_regend[r] >= (s_reg_t) regstart[r])
  4232.                             regend[r] = old_regend[r];
  4233.                         }     
  4234.                     }
  4235.           p1++;
  4236.                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4237.                   PUSH_FAILURE_POINT (p1 + mcnt, d, -2);
  4238.                   PUSH_FAILURE_POINT2(p1 + mcnt, d, -2);
  4239.  
  4240.                   goto fail;
  4241.                 }
  4242.             }
  4243.           
  4244.           /* Move past the register number and the inner group count.  */
  4245.           p += 2;
  4246.           break;
  4247.  
  4248.  
  4249.     /* \<digit> has been turned into a `duplicate' command which is
  4250.            followed by the numeric value of <digit> as the register number.  */
  4251.         case duplicate:
  4252.       {
  4253.         register const char *d2, *dend2;
  4254.         int regno = *p++;   /* Get which register to match against.  */
  4255.         DEBUG_PRINT2 ("EXECUTING duplicate %d.\n", regno);
  4256.  
  4257.         /* Can't back reference a group which we've never matched.  */
  4258.             if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
  4259.               goto fail;
  4260.               
  4261.             /* Where in input to try to start matching.  */
  4262.             d2 = regstart[regno];
  4263.             
  4264.             /* Where to stop matching; if both the place to start and
  4265.                the place to stop matching are in the same string, then
  4266.                set to the place to stop, otherwise, for now have to use
  4267.                the end of the first string.  */
  4268.  
  4269.             dend2 = ((FIRST_STRING_P (regstart[regno]) 
  4270.               == FIRST_STRING_P (regend[regno]))
  4271.              ? regend[regno] : end_match_1);
  4272.         for (;;)
  4273.           {
  4274.         /* If necessary, advance to next segment in register
  4275.                    contents.  */
  4276.         while (d2 == dend2)
  4277.           {
  4278.             if (dend2 == end_match_2) break;
  4279.             if (dend2 == regend[regno]) break;
  4280.  
  4281.                     /* End of string1 => advance to string2. */
  4282.                     d2 = string2;
  4283.                     dend2 = regend[regno];
  4284.           }
  4285.         /* At end of register contents => success */
  4286.         if (d2 == dend2) break;
  4287.  
  4288.         /* If necessary, advance to next segment in data.  */
  4289.         PREFETCH ();
  4290.  
  4291.         /* How many characters left in this segment to match.  */
  4292.         mcnt = dend - d;
  4293.                 
  4294.         /* Want how many consecutive characters we can match in
  4295.                    one shot, so, if necessary, adjust the count.  */
  4296.                 if (mcnt > dend2 - d2)
  4297.           mcnt = dend2 - d2;
  4298.                   
  4299.         /* Compare that many; failure if mismatch, else move
  4300.                    past them.  */
  4301.         if (translate 
  4302.                     ? bcmp_translate (d, d2, mcnt, translate) 
  4303.                     : bcmp (d, d2, mcnt))
  4304.           goto fail;
  4305.         d += mcnt, d2 += mcnt;
  4306.  
  4307.         /* Do this because we've match some characters.  */
  4308.         SET_REGS_MATCHED ();
  4309.           }
  4310.       }
  4311.       break;
  4312.  
  4313.  
  4314.         /* begline matches the empty string at the beginning of the string
  4315.            (unless `not_bol' is set in `bufp'), and, if
  4316.            `newline_anchor' is set, after newlines.  */
  4317.     case begline:
  4318.           DEBUG_PRINT1 ("EXECUTING begline.\n");
  4319.           
  4320.           if (AT_STRINGS_BEG (d))
  4321.             {
  4322.               if (!bufp->not_bol) break;
  4323.             }
  4324.           else if (d[-1] == '\n' && bufp->newline_anchor)
  4325.             {
  4326.               break;
  4327.             }
  4328.           /* In all other cases, we fail.  */
  4329.           goto fail;
  4330.  
  4331.  
  4332.         /* endline is the dual of begline.  */
  4333.     case endline:
  4334.           DEBUG_PRINT1 ("EXECUTING endline.\n");
  4335.  
  4336.           if (AT_STRINGS_END (d))
  4337.             {
  4338.               if (!bufp->not_eol) break;
  4339.             }
  4340.           
  4341.           /* We have to ``prefetch'' the next character.  */
  4342.           else if ((d == end1 ? *string2 : *d) == '\n'
  4343.                    && bufp->newline_anchor)
  4344.             {
  4345.               break;
  4346.             }
  4347.           goto fail;
  4348.  
  4349.  
  4350.     /* Match at the very beginning of the data.  */
  4351.         case begbuf:
  4352.           DEBUG_PRINT1 ("EXECUTING begbuf.\n");
  4353.           if (AT_STRINGS_BEG (d))
  4354.             break;
  4355.           goto fail;
  4356.  
  4357.  
  4358.     /* Match at the very end of the data.  */
  4359.         case endbuf:
  4360.           DEBUG_PRINT1 ("EXECUTING endbuf.\n");
  4361.       if (AT_STRINGS_END (d))
  4362.         break;
  4363.           goto fail;
  4364.  
  4365.  
  4366.         /* on_failure_keep_string_jump is used to optimize `.*\n'.  It
  4367.            pushes NULL as the value for the string on the stack.  Then
  4368.            `pop_failure_point' will keep the current value for the
  4369.            string, instead of restoring it.  To see why, consider
  4370.            matching `foo\nbar' against `.*\n'.  The .* matches the foo;
  4371.            then the . fails against the \n.  But the next thing we want
  4372.            to do is match the \n against the \n; if we restored the
  4373.            string value, we would be back at the foo.
  4374.            
  4375.            Because this is used only in specific cases, we don't need to
  4376.            check all the things that `on_failure_jump' does, to make
  4377.            sure the right things get saved on the stack.  Hence we don't
  4378.            share its code.  The only reason to push anything on the
  4379.            stack at all is that otherwise we would have to change
  4380.            `anychar's code to do something besides goto fail in this
  4381.            case; that seems worse than this.  */
  4382.         case on_failure_keep_string_jump:
  4383.           DEBUG_PRINT1 ("EXECUTING on_failure_keep_string_jump");
  4384.           
  4385.           EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4386.           DEBUG_PRINT3 (" %d (to 0x%x):\n", mcnt, p + mcnt);
  4387.  
  4388.           PUSH_FAILURE_POINT (p + mcnt, NULL, -2);
  4389.           PUSH_FAILURE_POINT2(p + mcnt, NULL, -2);
  4390.           break;
  4391.  
  4392.  
  4393.     /* Uses of on_failure_jump:
  4394.         
  4395.            Each alternative starts with an on_failure_jump that points
  4396.            to the beginning of the next alternative.  Each alternative
  4397.            except the last ends with a jump that in effect jumps past
  4398.            the rest of the alternatives.  (They really jump to the
  4399.            ending jump of the following alternative, because tensioning
  4400.            these jumps is a hassle.)
  4401.  
  4402.            Repeats start with an on_failure_jump that points past both
  4403.            the repetition text and either the following jump or
  4404.            pop_failure_jump back to this on_failure_jump.  */
  4405.     case on_failure_jump:
  4406.         on_failure:
  4407.           DEBUG_PRINT1 ("EXECUTING on_failure_jump");
  4408.  
  4409.           EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4410.           DEBUG_PRINT3 (" %d (to 0x%x)", mcnt, p + mcnt);
  4411.  
  4412.           /* If this on_failure_jump comes right before a group (i.e.,
  4413.              the original * applied to a group), save the information
  4414.              for that group and all inner ones, so that if we fail back
  4415.              to this point, the group's information will be correct.
  4416.              For example, in \(a*\)*\1, we need the preceding group,
  4417.              and in \(\(a*\)b*\)\2, we need the inner group.  */
  4418.  
  4419.           /* We can't use `p' to check ahead because we push
  4420.              a failure point to `p + mcnt' after we do this.  */
  4421.           p1 = p;
  4422.  
  4423.           /* We need to skip no_op's before we look for the
  4424.              start_memory in case this on_failure_jump is happening as
  4425.              the result of a completed succeed_n, as in \(a\)\{1,3\}b\1
  4426.              against aba.  */
  4427.           while (p1 < pend && (re_opcode_t) *p1 == no_op)
  4428.             p1++;
  4429.  
  4430.           if (p1 < pend && (re_opcode_t) *p1 == start_memory)
  4431.             {
  4432.               /* We have a new highest active register now.  This will
  4433.                  get reset at the start_memory we are about to get to,
  4434.                  but we will have saved all the registers relevant to
  4435.                  this repetition op, as described above.  */
  4436.               highest_active_reg = *(p1 + 1) + *(p1 + 2);
  4437.               if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
  4438.                 lowest_active_reg = *(p1 + 1);
  4439.             }
  4440.  
  4441.           DEBUG_PRINT1 (":\n");
  4442.           PUSH_FAILURE_POINT (p + mcnt, d, -2);
  4443.           PUSH_FAILURE_POINT2(p + mcnt, d, -2);
  4444.           break;
  4445.  
  4446.  
  4447.         /* A smart repeat ends with `maybe_pop_jump'.
  4448.        We change it to either `pop_failure_jump' or `jump'.  */
  4449.         case maybe_pop_jump:
  4450.           EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4451.           DEBUG_PRINT2 ("EXECUTING maybe_pop_jump %d.\n", mcnt);
  4452.           {
  4453.         register unsigned char *p2 = p;
  4454.  
  4455.             /* Compare the beginning of the repeat with what in the
  4456.                pattern follows its end. If we can establish that there
  4457.                is nothing that they would both match, i.e., that we
  4458.                would have to backtrack because of (as in, e.g., `a*a')
  4459.                then we can change to pop_failure_jump, because we'll
  4460.                never have to backtrack.
  4461.                
  4462.                This is not true in the case of alternatives: in
  4463.                `(a|ab)*' we do need to backtrack to the `ab' alternative
  4464.                (e.g., if the string was `ab').  But instead of trying to
  4465.                detect that here, the alternative has put on a dummy
  4466.                failure point which is what we will end up popping.  */
  4467.  
  4468.         /* Skip over open/close-group commands.
  4469.            If what follows this loop is a ...+ construct,
  4470.            look at what begins its body, since we will have to
  4471.            match at least one of that.  */
  4472.         while (1)
  4473.           {
  4474.         if (p2 + 2 < pend
  4475.             && ((re_opcode_t) *p2 == stop_memory
  4476.             || (re_opcode_t) *p2 == start_memory))
  4477.           p2 += 3;
  4478.         else if (p2 + 6 < pend
  4479.              && (re_opcode_t) *p2 == dummy_failure_jump)
  4480.           p2 += 6;
  4481.         else
  4482.           break;
  4483.           }
  4484.  
  4485.         p1 = p + mcnt;
  4486.         /* p1[0] ... p1[2] are the `on_failure_jump' corresponding
  4487.            to the `maybe_finalize_jump' of this case.  Examine what 
  4488.            follows.  */
  4489.  
  4490.             /* If we're at the end of the pattern, we can change.  */
  4491.             if (p2 == pend)
  4492.           {
  4493.         /* Consider what happens when matching ":\(.*\)"
  4494.            against ":/".  I don't really understand this code
  4495.            yet.  */
  4496.               p[-3] = (unsigned char) pop_failure_jump;
  4497.                 DEBUG_PRINT1
  4498.                   ("  End of pattern: change to `pop_failure_jump'.\n");
  4499.               }
  4500.  
  4501.             else if ((re_opcode_t) *p2 == exactn
  4502.              || (bufp->newline_anchor && (re_opcode_t) *p2 == endline))
  4503.           {
  4504.         register unsigned char c
  4505.                   = *p2 == (unsigned char) endline ? '\n' : p2[2];
  4506.  
  4507.                 if ((re_opcode_t) p1[3] == exactn && p1[5] != c)
  4508.                   {
  4509.               p[-3] = (unsigned char) pop_failure_jump;
  4510.                     DEBUG_PRINT3 ("  %c != %c => pop_failure_jump.\n",
  4511.                                   c, p1[5]);
  4512.                   }
  4513.                   
  4514.         else if ((re_opcode_t) p1[3] == charset
  4515.              || (re_opcode_t) p1[3] == charset_not)
  4516.           {
  4517.             int not = (re_opcode_t) p1[3] == charset_not;
  4518.                     
  4519.             if (c < (unsigned char) (p1[4] * BYTEWIDTH)
  4520.             && p1[5 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
  4521.               not = !not;
  4522.  
  4523.                     /* `not' is equal to 1 if c would match, which means
  4524.                         that we can't change to pop_failure_jump.  */
  4525.             if (!not)
  4526.                       {
  4527.                   p[-3] = (unsigned char) pop_failure_jump;
  4528.                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
  4529.                       }
  4530.           }
  4531.           }
  4532.             else if ((re_opcode_t) *p2 == charset)
  4533.           {
  4534. #ifdef DEBUG
  4535.         register unsigned char c
  4536.                   = *p2 == (unsigned char) endline ? '\n' : p2[2];
  4537. #endif
  4538.  
  4539.                 if ((re_opcode_t) p1[3] == exactn
  4540.             && ! ((int) p2[1] * BYTEWIDTH > (int) p1[4]
  4541.               && (p2[1 + p1[4] / BYTEWIDTH]
  4542.                   & (1 << (p1[4] % BYTEWIDTH)))))
  4543.                   {
  4544.               p[-3] = (unsigned char) pop_failure_jump;
  4545.                     DEBUG_PRINT3 ("  %c != %c => pop_failure_jump.\n",
  4546.                                   c, p1[5]);
  4547.                   }
  4548.                   
  4549.         else if ((re_opcode_t) p1[3] == charset_not)
  4550.           {
  4551.             int idx;
  4552.             /* We win if the charset_not inside the loop
  4553.                lists every character listed in the charset after.  */
  4554.             for (idx = 0; idx < (int) p2[1]; idx++)
  4555.               if (! (p2[2 + idx] == 0
  4556.                  || (idx < (int) p1[4]
  4557.                  && ((p2[2 + idx] & ~ p1[5 + idx]) == 0))))
  4558.             break;
  4559.  
  4560.             if (idx == p2[1])
  4561.                       {
  4562.                   p[-3] = (unsigned char) pop_failure_jump;
  4563.                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
  4564.                       }
  4565.           }
  4566.         else if ((re_opcode_t) p1[3] == charset)
  4567.           {
  4568.             int idx;
  4569.             /* We win if the charset inside the loop
  4570.                has no overlap with the one after the loop.  */
  4571.             for (idx = 0;
  4572.              idx < (int) p2[1] && idx < (int) p1[4];
  4573.              idx++)
  4574.               if ((p2[2 + idx] & p1[5 + idx]) != 0)
  4575.             break;
  4576.  
  4577.             if (idx == p2[1] || idx == p1[4])
  4578.                       {
  4579.                   p[-3] = (unsigned char) pop_failure_jump;
  4580.                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
  4581.                       }
  4582.           }
  4583.           }
  4584.       }
  4585.       p -= 2;        /* Point at relative address again.  */
  4586.       if ((re_opcode_t) p[-1] != pop_failure_jump)
  4587.         {
  4588.           p[-1] = (unsigned char) jump;
  4589.               DEBUG_PRINT1 ("  Match => jump.\n");
  4590.           goto unconditional_jump;
  4591.         }
  4592.         /* Note fall through.  */
  4593.  
  4594.  
  4595.     /* The end of a simple repeat has a pop_failure_jump back to
  4596.            its matching on_failure_jump, where the latter will push a
  4597.            failure point.  The pop_failure_jump takes off failure
  4598.            points put on by this pop_failure_jump's matching
  4599.            on_failure_jump; we got through the pattern to here from the
  4600.            matching on_failure_jump, so didn't fail.  */
  4601.         case pop_failure_jump:
  4602.           {
  4603.             /* We need to pass separate storage for the lowest and
  4604.                highest registers, even though we don't care about the
  4605.                actual values.  Otherwise, we will restore only one
  4606.                register from the stack, since lowest will == highest in
  4607.                `pop_failure_point'.  */
  4608.             active_reg_t dummy_low_reg, dummy_high_reg;
  4609.             unsigned char *pdummy;
  4610.             const char *sdummy;
  4611.  
  4612.             DEBUG_PRINT1 ("EXECUTING pop_failure_jump.\n");
  4613.             POP_FAILURE_POINT (sdummy, pdummy,
  4614.                                dummy_low_reg, dummy_high_reg,
  4615.                                reg_dummy, reg_dummy, reg_info_dummy);
  4616.           }
  4617.           /* Note fall through.  */
  4618.  
  4619.           
  4620.         /* Unconditionally jump (without popping any failure points).  */
  4621.         case jump:
  4622.     unconditional_jump:
  4623.       EXTRACT_NUMBER_AND_INCR (mcnt, p);    /* Get the amount to jump.  */
  4624.           DEBUG_PRINT2 ("EXECUTING jump %d ", mcnt);
  4625.       p += mcnt;                /* Do the jump.  */
  4626.           DEBUG_PRINT2 ("(to 0x%x).\n", p);
  4627.       break;
  4628.  
  4629.     
  4630.         /* We need this opcode so we can detect where alternatives end
  4631.            in `group_match_null_string_p' et al.  */
  4632.         case jump_past_alt:
  4633.           DEBUG_PRINT1 ("EXECUTING jump_past_alt.\n");
  4634.           goto unconditional_jump;
  4635.  
  4636.  
  4637.         /* Normally, the on_failure_jump pushes a failure point, which
  4638.            then gets popped at pop_failure_jump.  We will end up at
  4639.            pop_failure_jump, also, and with a pattern of, say, `a+', we
  4640.            are skipping over the on_failure_jump, so we have to push
  4641.            something meaningless for pop_failure_jump to pop.  */
  4642.         case dummy_failure_jump:
  4643.           DEBUG_PRINT1 ("EXECUTING dummy_failure_jump.\n");
  4644.           /* It doesn't matter what we push for the string here.  What
  4645.              the code at `fail' tests is the value for the pattern.  */
  4646.           PUSH_FAILURE_POINT (0, 0, -2);
  4647.           PUSH_FAILURE_POINT2(0, 0, -2);
  4648.           goto unconditional_jump;
  4649.  
  4650.  
  4651.         /* At the end of an alternative, we need to push a dummy failure
  4652.            point in case we are followed by a `pop_failure_jump', because
  4653.            we don't want the failure point for the alternative to be
  4654.            popped.  For example, matching `(a|ab)*' against `aab'
  4655.            requires that we match the `ab' alternative.  */
  4656.         case push_dummy_failure:
  4657.           DEBUG_PRINT1 ("EXECUTING push_dummy_failure.\n");
  4658.           /* See comments just above at `dummy_failure_jump' about the
  4659.              two zeroes.  */
  4660.           PUSH_FAILURE_POINT (0, 0, -2);
  4661.           PUSH_FAILURE_POINT2(0, 0, -2);
  4662.           break;
  4663.  
  4664.         /* Have to succeed matching what follows at least n times.
  4665.            After that, handle like `on_failure_jump'.  */
  4666.         case succeed_n: 
  4667.           EXTRACT_NUMBER (mcnt, p + 2);
  4668.           DEBUG_PRINT2 ("EXECUTING succeed_n %d.\n", mcnt);
  4669.  
  4670.           assert (mcnt >= 0);
  4671.           /* Originally, this is how many times we HAVE to succeed.  */
  4672.           if (mcnt > 0)
  4673.             {
  4674.                mcnt--;
  4675.            p += 2;
  4676.                STORE_NUMBER_AND_INCR (p, mcnt);
  4677.                DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p, mcnt);
  4678.             }
  4679.       else if (mcnt == 0)
  4680.             {
  4681.               DEBUG_PRINT2 ("  Setting two bytes from 0x%x to no_op.\n", p+2);
  4682.           p[2] = (unsigned char) no_op;
  4683.               p[3] = (unsigned char) no_op;
  4684.               goto on_failure;
  4685.             }
  4686.           break;
  4687.         
  4688.         case jump_n: 
  4689.           EXTRACT_NUMBER (mcnt, p + 2);
  4690.           DEBUG_PRINT2 ("EXECUTING jump_n %d.\n", mcnt);
  4691.  
  4692.           /* Originally, this is how many times we CAN jump.  */
  4693.           if (mcnt)
  4694.             {
  4695.                mcnt--;
  4696.                STORE_NUMBER (p + 2, mcnt);
  4697.            goto unconditional_jump;         
  4698.             }
  4699.           /* If don't have to jump any more, skip over the rest of command.  */
  4700.       else      
  4701.         p += 4;             
  4702.           break;
  4703.         
  4704.     case set_number_at:
  4705.       {
  4706.             DEBUG_PRINT1 ("EXECUTING set_number_at.\n");
  4707.  
  4708.             EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4709.             p1 = p + mcnt;
  4710.             EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4711.             DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p1, mcnt);
  4712.         STORE_NUMBER (p1, mcnt);
  4713.             break;
  4714.           }
  4715.  
  4716.         case wordbound:
  4717.           DEBUG_PRINT1 ("EXECUTING wordbound.\n");
  4718.           if (AT_WORD_BOUNDARY (d))
  4719.         break;
  4720.           goto fail;
  4721.  
  4722.     case notwordbound:
  4723.           DEBUG_PRINT1 ("EXECUTING notwordbound.\n");
  4724.       if (AT_WORD_BOUNDARY (d))
  4725.         goto fail;
  4726.           break;
  4727.  
  4728.     case wordbeg:
  4729.           DEBUG_PRINT1 ("EXECUTING wordbeg.\n");
  4730.       if (WORDCHAR_P (d) && (AT_STRINGS_BEG (d) || !WORDCHAR_P (d - 1)))
  4731.         break;
  4732.           goto fail;
  4733.  
  4734.     case wordend:
  4735.           DEBUG_PRINT1 ("EXECUTING wordend.\n");
  4736.       if (!AT_STRINGS_BEG (d) && WORDCHAR_P (d - 1)
  4737.               && (!WORDCHAR_P (d) || AT_STRINGS_END (d)))
  4738.         break;
  4739.           goto fail;
  4740.  
  4741. #ifdef emacs
  4742.       case before_dot:
  4743.           DEBUG_PRINT1 ("EXECUTING before_dot.\n");
  4744.        if (PTR_CHAR_POS ((unsigned char *) d) >= point)
  4745.           goto fail;
  4746.         break;
  4747.   
  4748.       case at_dot:
  4749.           DEBUG_PRINT1 ("EXECUTING at_dot.\n");
  4750.        if (PTR_CHAR_POS ((unsigned char *) d) != point)
  4751.           goto fail;
  4752.         break;
  4753.   
  4754.       case after_dot:
  4755.           DEBUG_PRINT1 ("EXECUTING after_dot.\n");
  4756.           if (PTR_CHAR_POS ((unsigned char *) d) <= point)
  4757.           goto fail;
  4758.         break;
  4759. #if 0 /* not emacs19 */
  4760.     case at_dot:
  4761.           DEBUG_PRINT1 ("EXECUTING at_dot.\n");
  4762.       if (PTR_CHAR_POS ((unsigned char *) d) + 1 != point)
  4763.         goto fail;
  4764.       break;
  4765. #endif /* not emacs19 */
  4766.  
  4767.     case syntaxspec:
  4768.           DEBUG_PRINT2 ("EXECUTING syntaxspec %d.\n", mcnt);
  4769.       mcnt = *p++;
  4770.       goto matchsyntax;
  4771.  
  4772.         case wordchar:
  4773.           DEBUG_PRINT1 ("EXECUTING Emacs wordchar.\n");
  4774.       mcnt = (int) Sword;
  4775.         matchsyntax:
  4776.       PREFETCH ();
  4777.       /* Can't use *d++ here; SYNTAX may be an unsafe macro.  */
  4778.       d++;
  4779.       if (SYNTAX (d[-1]) != (enum syntaxcode) mcnt)
  4780.         goto fail;
  4781.           SET_REGS_MATCHED ();
  4782.       break;
  4783.  
  4784.     case notsyntaxspec:
  4785.           DEBUG_PRINT2 ("EXECUTING notsyntaxspec %d.\n", mcnt);
  4786.       mcnt = *p++;
  4787.       goto matchnotsyntax;
  4788.  
  4789.         case notwordchar:
  4790.           DEBUG_PRINT1 ("EXECUTING Emacs notwordchar.\n");
  4791.       mcnt = (int) Sword;
  4792.         matchnotsyntax:
  4793.       PREFETCH ();
  4794.       /* Can't use *d++ here; SYNTAX may be an unsafe macro.  */
  4795.       d++;
  4796.       if (SYNTAX (d[-1]) == (enum syntaxcode) mcnt)
  4797.         goto fail;
  4798.       SET_REGS_MATCHED ();
  4799.           break;
  4800.  
  4801. #else /* not emacs */
  4802.     case wordchar:
  4803.           DEBUG_PRINT1 ("EXECUTING non-Emacs wordchar.\n");
  4804.       PREFETCH ();
  4805.           if (!WORDCHAR_P (d))
  4806.             goto fail;
  4807.       SET_REGS_MATCHED ();
  4808.           d++;
  4809.       break;
  4810.       
  4811.     case notwordchar:
  4812.           DEBUG_PRINT1 ("EXECUTING non-Emacs notwordchar.\n");
  4813.       PREFETCH ();
  4814.       if (WORDCHAR_P (d))
  4815.             goto fail;
  4816.           SET_REGS_MATCHED ();
  4817.           d++;
  4818.       break;
  4819. #endif /* not emacs */
  4820.           
  4821.         default:
  4822.           abort ();
  4823.     }
  4824.       continue;  /* Successfully executed one pattern command; keep going.  */
  4825.  
  4826.  
  4827.     /* We goto here if a matching operation fails. */
  4828.     fail:
  4829.       if (!FAIL_STACK_EMPTY ())
  4830.     { /* A restart point is known.  Restore to that state.  */
  4831.           DEBUG_PRINT1 ("\nFAIL:\n");
  4832.           POP_FAILURE_POINT (d, p,
  4833.                              lowest_active_reg, highest_active_reg,
  4834.                              regstart, regend, reg_info);
  4835.  
  4836.           /* If this failure point is a dummy, try the next one.  */
  4837.           if (!p)
  4838.         goto fail;
  4839.  
  4840.           /* If we failed to the end of the pattern, don't examine *p.  */
  4841.       assert (p <= pend);
  4842.           if (p < pend)
  4843.             {
  4844.               boolean is_a_jump_n = false;
  4845.               
  4846.               /* If failed to a backwards jump that's part of a repetition
  4847.                  loop, need to pop this failure point and use the next one.  */
  4848.               switch ((re_opcode_t) *p)
  4849.                 {
  4850.                 case jump_n:
  4851.                   is_a_jump_n = true;
  4852.                 case maybe_pop_jump:
  4853.                 case pop_failure_jump:
  4854.                 case jump:
  4855.                   p1 = p + 1;
  4856.                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4857.                   p1 += mcnt;    
  4858.  
  4859.                   if ((is_a_jump_n && (re_opcode_t) *p1 == succeed_n)
  4860.                       || (!is_a_jump_n
  4861.                           && (re_opcode_t) *p1 == on_failure_jump))
  4862.                     goto fail;
  4863.                   break;
  4864.                 default:
  4865.                   /* do nothing */ ;
  4866.                 }
  4867.             }
  4868.  
  4869.           if (d >= string1 && d <= end1)
  4870.         dend = end_match_1;
  4871.         }
  4872.       else
  4873.         break;   /* Matching at this starting point really fails.  */
  4874.     } /* for (;;) */
  4875.  
  4876.   if (best_regs_set)
  4877.     goto restore_best_regs;
  4878.  
  4879.   FREE_VARIABLES ();
  4880.  
  4881.   return -1;                     /* Failure to match.  */
  4882. } /* re_match_2 */
  4883.  
  4884. /* Subroutine definitions for re_match_2.  */
  4885.  
  4886.  
  4887. /* We are passed P pointing to a register number after a start_memory.
  4888.    
  4889.    Return true if the pattern up to the corresponding stop_memory can
  4890.    match the empty string, and false otherwise.
  4891.    
  4892.    If we find the matching stop_memory, sets P to point to one past its number.
  4893.    Otherwise, sets P to an undefined byte less than or equal to END.
  4894.  
  4895.    We don't handle duplicates properly (yet).  */
  4896.  
  4897. static boolean
  4898. group_match_null_string_p (p, end, reg_info)
  4899.     unsigned char **p, *end;
  4900.     register_info_type *reg_info;
  4901. {
  4902.   int mcnt;
  4903.   /* Point to after the args to the start_memory.  */
  4904.   unsigned char *p1 = *p + 2;
  4905.   
  4906.   while (p1 < end)
  4907.     {
  4908.       /* Skip over opcodes that can match nothing, and return true or
  4909.      false, as appropriate, when we get to one that can't, or to the
  4910.          matching stop_memory.  */
  4911.       
  4912.       switch ((re_opcode_t) *p1)
  4913.         {
  4914.         /* Could be either a loop or a series of alternatives.  */
  4915.         case on_failure_jump:
  4916.           p1++;
  4917.           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4918.           
  4919.           /* If the next operation is not a jump backwards in the
  4920.          pattern.  */
  4921.  
  4922.       if (mcnt >= 0)
  4923.         {
  4924.               /* Go through the on_failure_jumps of the alternatives,
  4925.                  seeing if any of the alternatives cannot match nothing.
  4926.                  The last alternative starts with only a jump,
  4927.                  whereas the rest start with on_failure_jump and end
  4928.                  with a jump, e.g., here is the pattern for `a|b|c':
  4929.  
  4930.                  /on_failure_jump/0/6/exactn/1/a/jump_past_alt/0/6
  4931.                  /on_failure_jump/0/6/exactn/1/b/jump_past_alt/0/3
  4932.                  /exactn/1/c                        
  4933.  
  4934.                  So, we have to first go through the first (n-1)
  4935.                  alternatives and then deal with the last one separately.  */
  4936.  
  4937.  
  4938.               /* Deal with the first (n-1) alternatives, which start
  4939.                  with an on_failure_jump (see above) that jumps to right
  4940.                  past a jump_past_alt.  */
  4941.  
  4942.               while ((re_opcode_t) p1[mcnt-3] == jump_past_alt)
  4943.                 {
  4944.                   /* `mcnt' holds how many bytes long the alternative
  4945.                      is, including the ending `jump_past_alt' and
  4946.                      its number.  */
  4947.  
  4948.                   if (!alt_match_null_string_p (p1, p1 + mcnt - 3, 
  4949.                                       reg_info))
  4950.                     return false;
  4951.  
  4952.                   /* Move to right after this alternative, including the
  4953.              jump_past_alt.  */
  4954.                   p1 += mcnt;    
  4955.  
  4956.                   /* Break if it's the beginning of an n-th alternative
  4957.                      that doesn't begin with an on_failure_jump.  */
  4958.                   if ((re_opcode_t) *p1 != on_failure_jump)
  4959.                     break;
  4960.         
  4961.           /* Still have to check that it's not an n-th
  4962.              alternative that starts with an on_failure_jump.  */
  4963.           p1++;
  4964.                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4965.                   if ((re_opcode_t) p1[mcnt-3] != jump_past_alt)
  4966.                     {
  4967.               /* Get to the beginning of the n-th alternative.  */
  4968.                       p1 -= 3;
  4969.                       break;
  4970.                     }
  4971.                 }
  4972.  
  4973.               /* Deal with the last alternative: go back and get number
  4974.                  of the `jump_past_alt' just before it.  `mcnt' contains
  4975.                  the length of the alternative.  */
  4976.               EXTRACT_NUMBER (mcnt, p1 - 2);
  4977.  
  4978.               if (!alt_match_null_string_p (p1, p1 + mcnt, reg_info))
  4979.                 return false;
  4980.  
  4981.               p1 += mcnt;    /* Get past the n-th alternative.  */
  4982.             } /* if mcnt > 0 */
  4983.           break;
  4984.  
  4985.           
  4986.         case stop_memory:
  4987.       assert (p1[1] == **p);
  4988.           *p = p1 + 2;
  4989.           return true;
  4990.  
  4991.         
  4992.         default: 
  4993.           if (!common_op_match_null_string_p (&p1, end, reg_info))
  4994.             return false;
  4995.         }
  4996.     } /* while p1 < end */
  4997.  
  4998.   return false;
  4999. } /* group_match_null_string_p */
  5000.  
  5001.  
  5002. /* Similar to group_match_null_string_p, but doesn't deal with alternatives:
  5003.    It expects P to be the first byte of a single alternative and END one
  5004.    byte past the last. The alternative can contain groups.  */
  5005.    
  5006. static boolean
  5007. alt_match_null_string_p (p, end, reg_info)
  5008.     unsigned char *p, *end;
  5009.     register_info_type *reg_info;
  5010. {
  5011.   int mcnt;
  5012.   unsigned char *p1 = p;
  5013.   
  5014.   while (p1 < end)
  5015.     {
  5016.       /* Skip over opcodes that can match nothing, and break when we get 
  5017.          to one that can't.  */
  5018.       
  5019.       switch ((re_opcode_t) *p1)
  5020.         {
  5021.     /* It's a loop.  */
  5022.         case on_failure_jump:
  5023.           p1++;
  5024.           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  5025.           p1 += mcnt;
  5026.           break;
  5027.           
  5028.     default: 
  5029.           if (!common_op_match_null_string_p (&p1, end, reg_info))
  5030.             return false;
  5031.         }
  5032.     }  /* while p1 < end */
  5033.  
  5034.   return true;
  5035. } /* alt_match_null_string_p */
  5036.  
  5037.  
  5038. /* Deals with the ops common to group_match_null_string_p and
  5039.    alt_match_null_string_p.  
  5040.    
  5041.    Sets P to one after the op and its arguments, if any.  */
  5042.  
  5043. static boolean
  5044. common_op_match_null_string_p (p, end, reg_info)
  5045.     unsigned char **p, *end;
  5046.     register_info_type *reg_info;
  5047. {
  5048.   int mcnt;
  5049.   boolean ret;
  5050.   int reg_no;
  5051.   unsigned char *p1 = *p;
  5052.  
  5053.   switch ((re_opcode_t) *p1++)
  5054.     {
  5055.     case no_op:
  5056.     case begline:
  5057.     case endline:
  5058.     case begbuf:
  5059.     case endbuf:
  5060.     case wordbeg:
  5061.     case wordend:
  5062.     case wordbound:
  5063.     case notwordbound:
  5064. #ifdef emacs
  5065.     case before_dot:
  5066.     case at_dot:
  5067.     case after_dot:
  5068. #endif
  5069.       break;
  5070.  
  5071.     case start_memory:
  5072.       reg_no = *p1;
  5073.       assert (reg_no > 0 && reg_no <= MAX_REGNUM);
  5074.       ret = group_match_null_string_p (&p1, end, reg_info);
  5075.       
  5076.       /* Have to set this here in case we're checking a group which
  5077.          contains a group and a back reference to it.  */
  5078.  
  5079.       if (REG_MATCH_NULL_STRING_P (reg_info[reg_no]) == MATCH_NULL_UNSET_VALUE)
  5080.         REG_MATCH_NULL_STRING_P (reg_info[reg_no]) = ret;
  5081.  
  5082.       if (!ret)
  5083.         return false;
  5084.       break;
  5085.           
  5086.     /* If this is an optimized succeed_n for zero times, make the jump.  */
  5087.     case jump:
  5088.       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  5089.       if (mcnt >= 0)
  5090.         p1 += mcnt;
  5091.       else
  5092.         return false;
  5093.       break;
  5094.  
  5095.     case succeed_n:
  5096.       /* Get to the number of times to succeed.  */
  5097.       p1 += 2;        
  5098.       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  5099.  
  5100.       if (mcnt == 0)
  5101.         {
  5102.           p1 -= 4;
  5103.           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  5104.           p1 += mcnt;
  5105.         }
  5106.       else
  5107.         return false;
  5108.       break;
  5109.  
  5110.     case duplicate: 
  5111.       if (!REG_MATCH_NULL_STRING_P (reg_info[*p1]))
  5112.         return false;
  5113.       break;
  5114.  
  5115.     case set_number_at:
  5116.       p1 += 4;
  5117.  
  5118.     default:
  5119.       /* All other opcodes mean we cannot match the empty string.  */
  5120.       return false;
  5121.   }
  5122.  
  5123.   *p = p1;
  5124.   return true;
  5125. } /* common_op_match_null_string_p */
  5126.  
  5127.  
  5128. /* Return zero if TRANSLATE[S1] and TRANSLATE[S2] are identical for LEN
  5129.    bytes; nonzero otherwise.  */
  5130.    
  5131. static int
  5132. bcmp_translate (s1, s2, len, translate)
  5133.      const char *s1, *s2;
  5134.      register int len;
  5135.      char *translate;
  5136. {
  5137.   register const unsigned char *p1 = (const unsigned char *) s1,
  5138.                    *p2 = (const unsigned char *) s2;
  5139.   while (len)
  5140.     {
  5141.       if (translate[*p1++] != translate[*p2++]) return 1;
  5142.       len--;
  5143.     }
  5144.   return 0;
  5145. }
  5146.  
  5147. /* Entry points for GNU code.  */
  5148.  
  5149. /* re_compile_pattern is the GNU regular expression compiler: it
  5150.    compiles PATTERN (of length SIZE) and puts the result in BUFP.
  5151.    Returns 0 if the pattern was valid, otherwise an error string.
  5152.    
  5153.    Assumes the `allocated' (and perhaps `buffer') and `translate' fields
  5154.    are set in BUFP on entry.
  5155.    
  5156.    We call regex_compile to do the actual compilation.  */
  5157.  
  5158. const char *
  5159. re_compile_pattern (pattern, length, bufp)
  5160.      const char *pattern;
  5161.      size_t length;
  5162.      struct re_pattern_buffer *bufp;
  5163. {
  5164.   reg_errcode_t ret;
  5165.   
  5166.   /* GNU code is written to assume at least RE_NREGS registers will be set
  5167.      (and at least one extra will be -1).  */
  5168.   bufp->regs_allocated = REGS_UNALLOCATED;
  5169.   
  5170.   /* And GNU code determines whether or not to get register information
  5171.      by passing null for the REGS argument to re_match, etc., not by
  5172.      setting no_sub.  */
  5173.   bufp->no_sub = 0;
  5174.   
  5175.   /* Match anchors at newline.  */
  5176.   bufp->newline_anchor = 1;
  5177.   
  5178.   ret = regex_compile (pattern, length, re_syntax_options, bufp);
  5179.  
  5180.   if (!ret)
  5181.     return NULL;
  5182.   return gettext (re_error_msgid[(int) ret]);
  5183. }     
  5184.  
  5185. /* Entry points compatible with 4.2 BSD regex library.  We don't define
  5186.    them unless specifically requested.  */
  5187.  
  5188. #ifdef _REGEX_RE_COMP
  5189.  
  5190. /* BSD has one and only one pattern buffer.  */
  5191. static struct re_pattern_buffer re_comp_buf;
  5192.  
  5193. char *
  5194. re_comp (s)
  5195.     const char *s;
  5196. {
  5197.   reg_errcode_t ret;
  5198.   
  5199.   if (!s)
  5200.     {
  5201.       if (!re_comp_buf.buffer)
  5202.     return gettext ("No previous regular expression");
  5203.       return 0;
  5204.     }
  5205.  
  5206.   if (!re_comp_buf.buffer)
  5207.     {
  5208.       re_comp_buf.buffer = (unsigned char *) malloc (200);
  5209.       if (re_comp_buf.buffer == NULL)
  5210.         return gettext (re_error_msgid[(int) REG_ESPACE]);
  5211.       re_comp_buf.allocated = 200;
  5212.  
  5213.       re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH);
  5214.       if (re_comp_buf.fastmap == NULL)
  5215.     return gettext (re_error_msgid[(int) REG_ESPACE]);
  5216.     }
  5217.  
  5218.   /* Since `re_exec' always passes NULL for the `regs' argument, we
  5219.      don't need to initialize the pattern buffer fields which affect it.  */
  5220.  
  5221.   /* Match anchors at newlines.  */
  5222.   re_comp_buf.newline_anchor = 1;
  5223.  
  5224.   ret = regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
  5225.   
  5226.   if (!ret)
  5227.     return NULL;
  5228.  
  5229.   /* Yes, we're discarding `const' here if !HAVE_LIBINTL.  */
  5230.   return (char *) gettext (re_error_msgid[(int) ret]);
  5231. }
  5232.  
  5233.  
  5234. int
  5235. re_exec (s)
  5236.     const char *s;
  5237. {
  5238.   const int len = strlen (s);
  5239.   return
  5240.     0 <= re_search (&re_comp_buf, s, len, 0, len, (struct re_registers *) 0);
  5241. }
  5242. #endif /* _REGEX_RE_COMP */
  5243.  
  5244. /* POSIX.2 functions.  Don't define these for Emacs.  */
  5245.  
  5246. #ifndef emacs
  5247.  
  5248. /* regcomp takes a regular expression as a string and compiles it.
  5249.  
  5250.    PREG is a regex_t *.  We do not expect any fields to be initialized,
  5251.    since POSIX says we shouldn't.  Thus, we set
  5252.  
  5253.      `buffer' to the compiled pattern;
  5254.      `used' to the length of the compiled pattern;
  5255.      `syntax' to RE_SYNTAX_POSIX_EXTENDED if the
  5256.        REG_EXTENDED bit in CFLAGS is set; otherwise, to
  5257.        RE_SYNTAX_POSIX_BASIC;
  5258.      `newline_anchor' to REG_NEWLINE being set in CFLAGS;
  5259.      `fastmap' and `fastmap_accurate' to zero;
  5260.      `re_nsub' to the number of subexpressions in PATTERN.
  5261.  
  5262.    PATTERN is the address of the pattern string.
  5263.  
  5264.    CFLAGS is a series of bits which affect compilation.
  5265.  
  5266.      If REG_EXTENDED is set, we use POSIX extended syntax; otherwise, we
  5267.      use POSIX basic syntax.
  5268.  
  5269.      If REG_NEWLINE is set, then . and [^...] don't match newline.
  5270.      Also, regexec will try a match beginning after every newline.
  5271.  
  5272.      If REG_ICASE is set, then we considers upper- and lowercase
  5273.      versions of letters to be equivalent when matching.
  5274.  
  5275.      If REG_NOSUB is set, then when PREG is passed to regexec, that
  5276.      routine will report only success or failure, and nothing about the
  5277.      registers.
  5278.  
  5279.    It returns 0 if it succeeds, nonzero if it doesn't.  (See regex.h for
  5280.    the return codes and their meanings.)  */
  5281.  
  5282. int
  5283. regcomp (preg, pattern, cflags)
  5284.     regex_t *preg;
  5285.     const char *pattern; 
  5286.     int cflags;
  5287. {
  5288.   reg_errcode_t ret;
  5289.   reg_syntax_t syntax
  5290.     = (cflags & REG_EXTENDED) ?
  5291.       RE_SYNTAX_POSIX_EXTENDED : RE_SYNTAX_POSIX_BASIC;
  5292.  
  5293.   /* regex_compile will allocate the space for the compiled pattern.  */
  5294.   preg->buffer = 0;
  5295.   preg->allocated = 0;
  5296.   preg->used = 0;
  5297.   
  5298.   /* Don't bother to use a fastmap when searching.  This simplifies the
  5299.      REG_NEWLINE case: if we used a fastmap, we'd have to put all the
  5300.      characters after newlines into the fastmap.  This way, we just try
  5301.      every character.  */
  5302.   preg->fastmap = 0;
  5303.   
  5304.   if (cflags & REG_ICASE)
  5305.     {
  5306.       unsigned i;
  5307.       
  5308.       preg->translate = (char *) malloc (CHAR_SET_SIZE);
  5309.       if (preg->translate == NULL)
  5310.         return (int) REG_ESPACE;
  5311.  
  5312.       /* Map uppercase characters to corresponding lowercase ones.  */
  5313.       for (i = 0; i < CHAR_SET_SIZE; i++)
  5314.         preg->translate[i] = ISUPPER (i) ? tolower (i) : i;
  5315.     }
  5316.   else
  5317.     preg->translate = NULL;
  5318.  
  5319.   /* If REG_NEWLINE is set, newlines are treated differently.  */
  5320.   if (cflags & REG_NEWLINE)
  5321.     { /* REG_NEWLINE implies neither . nor [^...] match newline.  */
  5322.       syntax &= ~RE_DOT_NEWLINE;
  5323.       syntax |= RE_HAT_LISTS_NOT_NEWLINE;
  5324.       /* It also changes the matching behavior.  */
  5325.       preg->newline_anchor = 1;
  5326.     }
  5327.   else
  5328.     preg->newline_anchor = 0;
  5329.  
  5330.   preg->no_sub = !!(cflags & REG_NOSUB);
  5331.  
  5332.   /* POSIX says a null character in the pattern terminates it, so we 
  5333.      can use strlen here in compiling the pattern.  */
  5334.   ret = regex_compile (pattern, strlen (pattern), syntax, preg);
  5335.   
  5336.   /* POSIX doesn't distinguish between an unmatched open-group and an
  5337.      unmatched close-group: both are REG_EPAREN.  */
  5338.   if (ret == REG_ERPAREN) ret = REG_EPAREN;
  5339.   
  5340.   return (int) ret;
  5341. }
  5342.  
  5343.  
  5344. /* regexec searches for a given pattern, specified by PREG, in the
  5345.    string STRING.
  5346.    
  5347.    If NMATCH is zero or REG_NOSUB was set in the cflags argument to
  5348.    `regcomp', we ignore PMATCH.  Otherwise, we assume PMATCH has at
  5349.    least NMATCH elements, and we set them to the offsets of the
  5350.    corresponding matched substrings.
  5351.    
  5352.    EFLAGS specifies `execution flags' which affect matching: if
  5353.    REG_NOTBOL is set, then ^ does not match at the beginning of the
  5354.    string; if REG_NOTEOL is set, then $ does not match at the end.
  5355.    
  5356.    We return 0 if we find a match and REG_NOMATCH if not.  */
  5357.  
  5358. int
  5359. regexec (preg, string, nmatch, pmatch, eflags)
  5360.     const regex_t *preg;
  5361.     const char *string; 
  5362.     size_t nmatch; 
  5363.     regmatch_t pmatch[]; 
  5364.     int eflags;
  5365. {
  5366.   int ret;
  5367.   struct re_registers regs;
  5368.   regex_t private_preg;
  5369.   int len = strlen (string);
  5370.   boolean want_reg_info = !preg->no_sub && nmatch > 0;
  5371.  
  5372.   private_preg = *preg;
  5373.   
  5374.   private_preg.not_bol = !!(eflags & REG_NOTBOL);
  5375.   private_preg.not_eol = !!(eflags & REG_NOTEOL);
  5376.   
  5377.   /* The user has told us exactly how many registers to return
  5378.      information about, via `nmatch'.  We have to pass that on to the
  5379.      matching routines.  */
  5380.   private_preg.regs_allocated = REGS_FIXED;
  5381.   
  5382.   if (want_reg_info)
  5383.     {
  5384.       regs.num_regs = nmatch;
  5385.       regs.start = TALLOC (nmatch, regoff_t);
  5386.       regs.end = TALLOC (nmatch, regoff_t);
  5387.       if (regs.start == NULL || regs.end == NULL)
  5388.         return (int) REG_NOMATCH;
  5389.     }
  5390.  
  5391.   /* Perform the searching operation.  */
  5392.   ret = re_search (&private_preg, string, len,
  5393.                    /* start: */ 0, /* range: */ len,
  5394.                    want_reg_info ? ®s : (struct re_registers *) 0);
  5395.   
  5396.   /* Copy the register information to the POSIX structure.  */
  5397.   if (want_reg_info)
  5398.     {
  5399.       if (ret >= 0)
  5400.         {
  5401.           unsigned r;
  5402.  
  5403.           for (r = 0; r < nmatch; r++)
  5404.             {
  5405.               pmatch[r].rm_so = regs.start[r];
  5406.               pmatch[r].rm_eo = regs.end[r];
  5407.             }
  5408.         }
  5409.  
  5410.       /* If we needed the temporary register info, free the space now.  */
  5411.       free (regs.start);
  5412.       free (regs.end);
  5413.     }
  5414.  
  5415.   /* We want zero return to mean success, unlike `re_search'.  */
  5416.   return ret >= 0 ? (int) REG_NOERROR : (int) REG_NOMATCH;
  5417. }
  5418.  
  5419.  
  5420. /* Returns a message corresponding to an error code, ERRCODE, returned
  5421.    from either regcomp or regexec.   We don't use PREG here.  */
  5422.  
  5423. size_t
  5424. regerror (errcode, preg, errbuf, errbuf_size)
  5425.     int errcode;
  5426.     const regex_t *preg;
  5427.     char *errbuf;
  5428.     size_t errbuf_size;
  5429. {
  5430.   const char *msg;
  5431.   size_t msg_size;
  5432.  
  5433.   if (errcode < 0
  5434.       || errcode >= (sizeof (re_error_msgid) / sizeof (re_error_msgid[0])))
  5435.     /* Only error codes returned by the rest of the code should be passed 
  5436.        to this routine.  If we are given anything else, or if other regex
  5437.        code generates an invalid error code, then the program has a bug.
  5438.        Dump core so we can fix it.  */
  5439.     abort ();
  5440.  
  5441.   msg = gettext (re_error_msgid[errcode]);
  5442.  
  5443.   msg_size = strlen (msg) + 1; /* Includes the null.  */
  5444.   
  5445.   if (errbuf_size != 0)
  5446.     {
  5447.       if (msg_size > errbuf_size)
  5448.         {
  5449.           strncpy (errbuf, msg, errbuf_size - 1);
  5450.           errbuf[errbuf_size - 1] = 0;
  5451.         }
  5452.       else
  5453.         strcpy (errbuf, msg);
  5454.     }
  5455.  
  5456.   return msg_size;
  5457. }
  5458.  
  5459.  
  5460. /* Free dynamically allocated space used by PREG.  */
  5461.  
  5462. void
  5463. regfree (preg)
  5464.     regex_t *preg;
  5465. {
  5466.   if (preg->buffer != NULL)
  5467.     free (preg->buffer);
  5468.   preg->buffer = NULL;
  5469.   
  5470.   preg->allocated = 0;
  5471.   preg->used = 0;
  5472.  
  5473.   if (preg->fastmap != NULL)
  5474.     free (preg->fastmap);
  5475.   preg->fastmap = NULL;
  5476.   preg->fastmap_accurate = 0;
  5477.  
  5478.   if (preg->translate != NULL)
  5479.     free (preg->translate);
  5480.   preg->translate = NULL;
  5481. }
  5482.  
  5483. #endif /* not emacs  */
  5484.  
  5485. /*
  5486. Local variables:
  5487. make-backup-files: t
  5488. version-control: t
  5489. trim-versions-without-asking: nil
  5490. End:
  5491. */
  5492.