home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / gnuawk.zip / regex.c < prev    next >
C/C++ Source or Header  |  1997-05-13  |  184KB  |  5,719 lines

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