regex.c
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:184k
源码类别:

网络

开发平台:

Unix_Linux

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