no vasnprintf.h, either; argz_.h from libtool
[gnulib.git] / lib / regex.c
1 /* Extended regular expression matching and search library,
2    version 0.12.
3    (Implements POSIX draft P1003.2/D11.2, except for some of the
4    internationalization features.)
5
6    Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
7    2002, 2003, 2004 Free Software Foundation, Inc.
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2, or (at your option)
12    any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License along
20    with this program; if not, write to the Free Software Foundation,
21    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
22
23 /* AIX requires this to be the first thing in the file. */
24 #if defined _AIX && !defined REGEX_MALLOC
25   #pragma alloca
26 #endif
27
28 #undef  _GNU_SOURCE
29 #define _GNU_SOURCE
30
31 #ifdef HAVE_CONFIG_H
32 # include <config.h>
33 #endif
34
35 #ifndef INSIDE_RECURSION
36
37 # include <stddef.h>
38
39 # define WIDE_CHAR_SUPPORT (HAVE_WCTYPE_H && HAVE_WCHAR_H && HAVE_BTOWC)
40
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
49 # ifdef _LIBC
50 /* We have to keep the namespace clean.  */
51 #  define regfree(preg) __regfree (preg)
52 #  define regexec(pr, st, nm, pm, ef) __regexec (pr, st, nm, pm, ef)
53 #  define regcomp(preg, pattern, cflags) __regcomp (preg, pattern, cflags)
54 #  define regerror(errcode, preg, errbuf, errbuf_size) \
55         __regerror(errcode, preg, errbuf, errbuf_size)
56 #  define re_set_registers(bu, re, nu, st, en) \
57         __re_set_registers (bu, re, nu, st, en)
58 #  define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \
59         __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
60 #  define re_match(bufp, string, size, pos, regs) \
61         __re_match (bufp, string, size, pos, regs)
62 #  define re_search(bufp, string, size, startpos, range, regs) \
63         __re_search (bufp, string, size, startpos, range, regs)
64 #  define re_compile_pattern(pattern, length, bufp) \
65         __re_compile_pattern (pattern, length, bufp)
66 #  define re_set_syntax(syntax) __re_set_syntax (syntax)
67 #  define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \
68         __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
69 #  define re_compile_fastmap(bufp) __re_compile_fastmap (bufp)
70
71 #  define btowc __btowc
72 #  define iswctype __iswctype
73 #  define mbrtowc __mbrtowc
74 #  define wcslen __wcslen
75 #  define wcscoll __wcscoll
76 #  define wcrtomb __wcrtomb
77
78 /* We are also using some library internals.  */
79 #  include <locale/localeinfo.h>
80 #  include <locale/elem-hash.h>
81 #  include <langinfo.h>
82 #  include <locale/coll-lookup.h>
83 # endif
84
85 # ifdef _LIBC
86 #  include <libintl.h>
87 #  undef gettext
88 #  define gettext(msgid) __dcgettext ("libc", msgid, LC_MESSAGES)
89    /* This define is so xgettext can find the internationalizable strings.  */
90 #  define gettext_noop(msgid) msgid
91 # else
92 /* This is for other GNU distributions with internationalized messages.  */
93 #  include "gettext.h"
94 # endif
95
96 /* Support for bounded pointers.  */
97 # if !defined _LIBC && !defined __BOUNDED_POINTERS__
98 #  define __bounded     /* nothing */
99 #  define __unbounded   /* nothing */
100 #  define __ptrvalue    /* nothing */
101 # endif
102
103 /* The `emacs' switch turns on certain matching commands
104    that make sense only in Emacs. */
105 # ifdef emacs
106
107 #  include "lisp.h"
108 #  include "buffer.h"
109 #  include "syntax.h"
110
111 # else  /* not emacs */
112
113 /* If we are not linking with Emacs proper,
114    we can't use the relocating allocator
115    even if config.h says that we can.  */
116 #  undef REL_ALLOC
117
118 #  include <stdlib.h>
119
120 /* When used in Emacs's lib-src, we need to get bzero and bcopy somehow.
121    If nothing else has been done, use the method below.  */
122 #  ifdef INHIBIT_STRING_HEADER
123 #   if !(defined HAVE_BZERO && defined HAVE_BCOPY)
124 #    if !defined bzero && !defined bcopy
125 #     undef INHIBIT_STRING_HEADER
126 #    endif
127 #   endif
128 #  endif
129
130 /* This is the normal way of making sure we have a bcopy and a bzero.
131    This is used in most programs--a few other programs avoid this
132    by defining INHIBIT_STRING_HEADER.  */
133 #  ifndef INHIBIT_STRING_HEADER
134 #   include <string.h>
135 #   ifndef bzero
136 #    ifndef _LIBC
137 #     define bzero(s, n)        (memset (s, '\0', n), (s))
138 #    else
139 #     define bzero(s, n)        __bzero (s, n)
140 #    endif
141 #   endif
142 #  endif
143
144 /* Define the syntax stuff for \<, \>, etc.  */
145
146 /* This must be nonzero for the wordchar and notwordchar pattern
147    commands in re_match_2.  */
148 #  ifndef Sword
149 #   define Sword 1
150 #  endif
151
152 #  ifdef SWITCH_ENUM_BUG
153 #   define SWITCH_ENUM_CAST(x) ((int)(x))
154 #  else
155 #   define SWITCH_ENUM_CAST(x) (x)
156 #  endif
157
158 # endif /* not emacs */
159
160 # include <limits.h>
161
162 # ifndef MB_LEN_MAX
163 #  define MB_LEN_MAX 1
164 # endif
165 \f
166 /* Get the interface, including the syntax bits.  */
167 # include <regex.h>
168
169 /* isalpha etc. are used for the character classes.  */
170 # include <ctype.h>
171
172 /* Jim Meyering writes:
173
174    "... Some ctype macros are valid only for character codes that
175    isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
176    using /bin/cc or gcc but without giving an ansi option).  So, all
177    ctype uses should be through macros like ISPRINT...  If
178    STDC_HEADERS is defined, then autoconf has verified that the ctype
179    macros don't need to be guarded with references to isascii. ...
180    Defining isascii to 1 should let any compiler worth its salt
181    eliminate the && through constant folding."
182    Solaris defines some of these symbols so we must undefine them first.  */
183
184 # if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII)
185 #  define IN_CTYPE_DOMAIN(c) 1
186 # else
187 #  define IN_CTYPE_DOMAIN(c) isascii(c)
188 # endif
189
190 # ifdef isblank
191 #  define ISBLANK(c) (IN_CTYPE_DOMAIN (c) && isblank (c))
192 # else
193 #  define ISBLANK(c) ((c) == ' ' || (c) == '\t')
194 # endif
195 # ifdef isgraph
196 #  define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isgraph (c))
197 # else
198 #  define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isprint (c) && !isspace (c))
199 # endif
200
201 # undef ISPRINT
202 # define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint (c))
203 # define ISDIGIT(c) (IN_CTYPE_DOMAIN (c) && isdigit (c))
204 # define ISALNUM(c) (IN_CTYPE_DOMAIN (c) && isalnum (c))
205 # define ISALPHA(c) (IN_CTYPE_DOMAIN (c) && isalpha (c))
206 # define ISCNTRL(c) (IN_CTYPE_DOMAIN (c) && iscntrl (c))
207 # define ISLOWER(c) (IN_CTYPE_DOMAIN (c) && islower (c))
208 # define ISPUNCT(c) (IN_CTYPE_DOMAIN (c) && ispunct (c))
209 # define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
210 # define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c))
211 # define ISXDIGIT(c) (IN_CTYPE_DOMAIN (c) && isxdigit (c))
212
213 # ifdef _tolower
214 #  define TOLOWER(c) _tolower(c)
215 # else
216 #  define TOLOWER(c) tolower(c)
217 # endif
218 \f
219 # ifndef emacs
220 /* How many characters in the character set.  */
221 #  define CHAR_SET_SIZE 256
222
223 #  ifdef SYNTAX_TABLE
224
225 extern char *re_syntax_table;
226
227 #  else /* not SYNTAX_TABLE */
228
229 static char re_syntax_table[CHAR_SET_SIZE];
230
231 static void
232 init_syntax_once (void)
233 {
234    register int c;
235    static int done = 0;
236
237    if (done)
238      return;
239    bzero (re_syntax_table, sizeof re_syntax_table);
240
241    for (c = 0; c < CHAR_SET_SIZE; ++c)
242      if (ISALNUM (c))
243         re_syntax_table[c] = Sword;
244
245    re_syntax_table['_'] = Sword;
246
247    done = 1;
248 }
249
250 #  endif /* not SYNTAX_TABLE */
251
252 #  define SYNTAX(c) re_syntax_table[(unsigned char) (c)]
253
254 # endif /* emacs */
255 \f
256 /* Should we use malloc or alloca?  If REGEX_MALLOC is not defined, we
257    use `alloca' instead of `malloc'.  This is because using malloc in
258    re_search* or re_match* could cause memory leaks when C-g is used in
259    Emacs; also, malloc is slower and causes storage fragmentation.  On
260    the other hand, malloc is more portable, and easier to debug.
261
262    Because we sometimes use alloca, some routines have to be macros,
263    not functions -- `alloca'-allocated space disappears at the end of the
264    function it is called in.  */
265
266 # ifdef REGEX_MALLOC
267
268 #  define REGEX_ALLOCATE malloc
269 #  define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize)
270 #  define REGEX_FREE free
271
272 # else /* not REGEX_MALLOC  */
273
274 /* Emacs already defines alloca, sometimes.  */
275 #  ifndef alloca
276
277 /* Make alloca work the best possible way.  */
278 #   include <alloca.h>
279
280 #  endif /* not alloca */
281
282 #  define REGEX_ALLOCATE alloca
283
284 /* Assumes a `char *destination' variable.  */
285 #  define REGEX_REALLOCATE(source, osize, nsize)                        \
286   (destination = (char *) alloca (nsize),                               \
287    memcpy (destination, source, osize))
288
289 /* No need to do anything to free, after alloca.  */
290 #  define REGEX_FREE(arg) ((void)0) /* Do nothing!  But inhibit gcc warning.  */
291
292 # endif /* not REGEX_MALLOC */
293
294 /* Define how to allocate the failure stack.  */
295
296 # if defined REL_ALLOC && defined REGEX_MALLOC
297
298 #  define REGEX_ALLOCATE_STACK(size)                            \
299   r_alloc (&failure_stack_ptr, (size))
300 #  define REGEX_REALLOCATE_STACK(source, osize, nsize)          \
301   r_re_alloc (&failure_stack_ptr, (nsize))
302 #  define REGEX_FREE_STACK(ptr)                                 \
303   r_alloc_free (&failure_stack_ptr)
304
305 # else /* not using relocating allocator */
306
307 #  ifdef REGEX_MALLOC
308
309 #   define REGEX_ALLOCATE_STACK malloc
310 #   define REGEX_REALLOCATE_STACK(source, osize, nsize) realloc (source, nsize)
311 #   define REGEX_FREE_STACK free
312
313 #  else /* not REGEX_MALLOC */
314
315 #   define REGEX_ALLOCATE_STACK alloca
316
317 #   define REGEX_REALLOCATE_STACK(source, osize, nsize)                 \
318    REGEX_REALLOCATE (source, osize, nsize)
319 /* No need to explicitly free anything.  */
320 #   define REGEX_FREE_STACK(arg)
321
322 #  endif /* not REGEX_MALLOC */
323 # endif /* not using relocating allocator */
324
325
326 /* True if `size1' is non-NULL and PTR is pointing anywhere inside
327    `string1' or just past its end.  This works if PTR is NULL, which is
328    a good thing.  */
329 # define FIRST_STRING_P(ptr)                                    \
330   (size1 && string1 <= (ptr) && (ptr) <= string1 + size1)
331
332 /* (Re)Allocate N items of type T using malloc, or fail.  */
333 # define TALLOC(n, t) ((t *) malloc ((n) * sizeof (t)))
334 # define RETALLOC(addr, n, t) ((addr) = (t *) realloc (addr, (n) * sizeof (t)))
335 # define RETALLOC_IF(addr, n, t) \
336   if (addr) RETALLOC((addr), (n), t); else (addr) = TALLOC ((n), t)
337 # define REGEX_TALLOC(n, t) ((t *) REGEX_ALLOCATE ((n) * sizeof (t)))
338
339 # define BYTEWIDTH 8 /* In bits.  */
340
341 # define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
342
343 # undef MAX
344 # undef MIN
345 # define MAX(a, b) ((a) > (b) ? (a) : (b))
346 # define MIN(a, b) ((a) < (b) ? (a) : (b))
347
348 typedef char boolean;
349 # define false 0
350 # define true 1
351
352 static reg_errcode_t byte_regex_compile (const char *pattern, size_t size,
353                                          reg_syntax_t syntax,
354                                          struct re_pattern_buffer *bufp);
355
356 static int byte_re_match_2_internal (struct re_pattern_buffer *bufp,
357                                      const char *string1, int size1,
358                                      const char *string2, int size2,
359                                      int pos,
360                                      struct re_registers *regs,
361                                      int stop);
362 static int byte_re_search_2 (struct re_pattern_buffer *bufp,
363                              const char *string1, int size1,
364                              const char *string2, int size2,
365                              int startpos, int range,
366                              struct re_registers *regs, int stop);
367 static int byte_re_compile_fastmap (struct re_pattern_buffer *bufp);
368
369 #ifdef MBS_SUPPORT
370 static reg_errcode_t wcs_regex_compile (const char *pattern, size_t size,
371                                         reg_syntax_t syntax,
372                                         struct re_pattern_buffer *bufp);
373
374
375 static int wcs_re_match_2_internal (struct re_pattern_buffer *bufp,
376                                     const char *cstring1, int csize1,
377                                     const char *cstring2, int csize2,
378                                     int pos,
379                                     struct re_registers *regs,
380                                     int stop,
381                                     wchar_t *string1, int size1,
382                                     wchar_t *string2, int size2,
383                                     int *mbs_offset1, int *mbs_offset2);
384 static int wcs_re_search_2 (struct re_pattern_buffer *bufp,
385                             const char *string1, int size1,
386                             const char *string2, int size2,
387                             int startpos, int range,
388                             struct re_registers *regs, int stop);
389 static int wcs_re_compile_fastmap (struct re_pattern_buffer *bufp);
390 #endif
391 \f
392 /* These are the command codes that appear in compiled regular
393    expressions.  Some opcodes are followed by argument bytes.  A
394    command code can specify any interpretation whatsoever for its
395    arguments.  Zero bytes may appear in the compiled regular expression.  */
396
397 typedef enum
398 {
399   no_op = 0,
400
401   /* Succeed right away--no more backtracking.  */
402   succeed,
403
404         /* Followed by one byte giving n, then by n literal bytes.  */
405   exactn,
406
407 # ifdef MBS_SUPPORT
408         /* Same as exactn, but contains binary data.  */
409   exactn_bin,
410 # endif
411
412         /* Matches any (more or less) character.  */
413   anychar,
414
415         /* Matches any one char belonging to specified set.  First
416            following byte is number of bitmap bytes.  Then come bytes
417            for a bitmap saying which chars are in.  Bits in each byte
418            are ordered low-bit-first.  A character is in the set if its
419            bit is 1.  A character too large to have a bit in the map is
420            automatically not in the set.  */
421         /* ifdef MBS_SUPPORT, following element is length of character
422            classes, length of collating symbols, length of equivalence
423            classes, length of character ranges, and length of characters.
424            Next, character class element, collating symbols elements,
425            equivalence class elements, range elements, and character
426            elements follow.
427            See regex_compile function.  */
428   charset,
429
430         /* Same parameters as charset, but match any character that is
431            not one of those specified.  */
432   charset_not,
433
434         /* Start remembering the text that is matched, for storing in a
435            register.  Followed by one byte with the register number, in
436            the range 0 to one less than the pattern buffer's re_nsub
437            field.  Then followed by one byte with the number of groups
438            inner to this one.  (This last has to be part of the
439            start_memory only because we need it in the on_failure_jump
440            of re_match_2.)  */
441   start_memory,
442
443         /* Stop remembering the text that is matched and store it in a
444            memory register.  Followed by one byte with the register
445            number, in the range 0 to one less than `re_nsub' in the
446            pattern buffer, and one byte with the number of inner groups,
447            just like `start_memory'.  (We need the number of inner
448            groups here because we don't have any easy way of finding the
449            corresponding start_memory when we're at a stop_memory.)  */
450   stop_memory,
451
452         /* Match a duplicate of something remembered. Followed by one
453            byte containing the register number.  */
454   duplicate,
455
456         /* Fail unless at beginning of line.  */
457   begline,
458
459         /* Fail unless at end of line.  */
460   endline,
461
462         /* Succeeds if at beginning of buffer (if emacs) or at beginning
463            of string to be matched (if not).  */
464   begbuf,
465
466         /* Analogously, for end of buffer/string.  */
467   endbuf,
468
469         /* Followed by two byte relative address to which to jump.  */
470   jump,
471
472         /* Same as jump, but marks the end of an alternative.  */
473   jump_past_alt,
474
475         /* Followed by two-byte relative address of place to resume at
476            in case of failure.  */
477         /* ifdef MBS_SUPPORT, the size of address is 1.  */
478   on_failure_jump,
479
480         /* Like on_failure_jump, but pushes a placeholder instead of the
481            current string position when executed.  */
482   on_failure_keep_string_jump,
483
484         /* Throw away latest failure point and then jump to following
485            two-byte relative address.  */
486         /* ifdef MBS_SUPPORT, the size of address is 1.  */
487   pop_failure_jump,
488
489         /* Change to pop_failure_jump if know won't have to backtrack to
490            match; otherwise change to jump.  This is used to jump
491            back to the beginning of a repeat.  If what follows this jump
492            clearly won't match what the repeat does, such that we can be
493            sure that there is no use backtracking out of repetitions
494            already matched, then we change it to a pop_failure_jump.
495            Followed by two-byte address.  */
496         /* ifdef MBS_SUPPORT, the size of address is 1.  */
497   maybe_pop_jump,
498
499         /* Jump to following two-byte address, and push a dummy failure
500            point. This failure point will be thrown away if an attempt
501            is made to use it for a failure.  A `+' construct makes this
502            before the first repeat.  Also used as an intermediary kind
503            of jump when compiling an alternative.  */
504         /* ifdef MBS_SUPPORT, the size of address is 1.  */
505   dummy_failure_jump,
506
507         /* Push a dummy failure point and continue.  Used at the end of
508            alternatives.  */
509   push_dummy_failure,
510
511         /* Followed by two-byte relative address and two-byte number n.
512            After matching N times, jump to the address upon failure.  */
513         /* ifdef MBS_SUPPORT, the size of address is 1.  */
514   succeed_n,
515
516         /* Followed by two-byte relative address, and two-byte number n.
517            Jump to the address N times, then fail.  */
518         /* ifdef MBS_SUPPORT, the size of address is 1.  */
519   jump_n,
520
521         /* Set the following two-byte relative address to the
522            subsequent two-byte number.  The address *includes* the two
523            bytes of number.  */
524         /* ifdef MBS_SUPPORT, the size of address is 1.  */
525   set_number_at,
526
527   wordchar,     /* Matches any word-constituent character.  */
528   notwordchar,  /* Matches any char that is not a word-constituent.  */
529
530   wordbeg,      /* Succeeds if at word beginning.  */
531   wordend,      /* Succeeds if at word end.  */
532
533   wordbound,    /* Succeeds if at a word boundary.  */
534   notwordbound  /* Succeeds if not at a word boundary.  */
535
536 # ifdef emacs
537   ,before_dot,  /* Succeeds if before point.  */
538   at_dot,       /* Succeeds if at point.  */
539   after_dot,    /* Succeeds if after point.  */
540
541         /* Matches any character whose syntax is specified.  Followed by
542            a byte which contains a syntax code, e.g., Sword.  */
543   syntaxspec,
544
545         /* Matches any character whose syntax is not that specified.  */
546   notsyntaxspec
547 # endif /* emacs */
548 } re_opcode_t;
549 #endif /* not INSIDE_RECURSION */
550 \f
551
552 #ifdef BYTE
553 # define CHAR_T char
554 # define UCHAR_T unsigned char
555 # define COMPILED_BUFFER_VAR bufp->buffer
556 # define OFFSET_ADDRESS_SIZE 2
557 # define PREFIX(name) byte_##name
558 # define ARG_PREFIX(name) name
559 # define PUT_CHAR(c) putchar (c)
560 #else
561 # ifdef WCHAR
562 #  define CHAR_T wchar_t
563 #  define UCHAR_T wchar_t
564 #  define COMPILED_BUFFER_VAR wc_buffer
565 #  define OFFSET_ADDRESS_SIZE 1 /* the size which STORE_NUMBER macro use */
566 #  define CHAR_CLASS_SIZE ((__alignof__(wctype_t)+sizeof(wctype_t))/sizeof(CHAR_T)+1)
567 #  define PREFIX(name) wcs_##name
568 #  define ARG_PREFIX(name) c##name
569 /* Should we use wide stream??  */
570 #  define PUT_CHAR(c) printf ("%C", c);
571 #  define TRUE 1
572 #  define FALSE 0
573 # else
574 #  ifdef MBS_SUPPORT
575 #   define WCHAR
576 #   define INSIDE_RECURSION
577 #   include "regex.c"
578 #   undef INSIDE_RECURSION
579 #  endif
580 #  define BYTE
581 #  define INSIDE_RECURSION
582 #  include "regex.c"
583 #  undef INSIDE_RECURSION
584 # endif
585 #endif
586 #include "unlocked-io.h"
587
588 #ifdef INSIDE_RECURSION
589 /* Common operations on the compiled pattern.  */
590
591 /* Store NUMBER in two contiguous bytes starting at DESTINATION.  */
592 /* ifdef MBS_SUPPORT, we store NUMBER in 1 element.  */
593
594 # ifdef WCHAR
595 #  define STORE_NUMBER(destination, number)                             \
596   do {                                                                  \
597     *(destination) = (UCHAR_T)(number);                         \
598   } while (0)
599 # else /* BYTE */
600 #  define STORE_NUMBER(destination, number)                             \
601   do {                                                                  \
602     (destination)[0] = (number) & 0377;                                 \
603     (destination)[1] = (number) >> 8;                                   \
604   } while (0)
605 # endif /* WCHAR */
606
607 /* Same as STORE_NUMBER, except increment DESTINATION to
608    the byte after where the number is stored.  Therefore, DESTINATION
609    must be an lvalue.  */
610 /* ifdef MBS_SUPPORT, we store NUMBER in 1 element.  */
611
612 # define STORE_NUMBER_AND_INCR(destination, number)                     \
613   do {                                                                  \
614     STORE_NUMBER (destination, number);                                 \
615     (destination) += OFFSET_ADDRESS_SIZE;                               \
616   } while (0)
617
618 /* Put into DESTINATION a number stored in two contiguous bytes starting
619    at SOURCE.  */
620 /* ifdef MBS_SUPPORT, we store NUMBER in 1 element.  */
621
622 # ifdef WCHAR
623 #  define EXTRACT_NUMBER(destination, source)                           \
624   do {                                                                  \
625     (destination) = *(source);                                          \
626   } while (0)
627 # else /* BYTE */
628 #  define EXTRACT_NUMBER(destination, source)                           \
629   do {                                                                  \
630     (destination) = *(source) & 0377;                                   \
631     (destination) += (signed char) (*((source) + 1)) << 8;              \
632   } while (0)
633 # endif
634
635 # ifdef DEBUG
636 static void
637 PREFIX(extract_number) (int *dest, UCHAR_T *source)
638 {
639 #  ifdef WCHAR
640   *dest = *source;
641 #  else /* BYTE */
642   signed char temp = source[1];
643   *dest = *source & 0377;
644   *dest += temp << 8;
645 #  endif
646 }
647
648 #  ifndef EXTRACT_MACROS /* To debug the macros.  */
649 #   undef EXTRACT_NUMBER
650 #   define EXTRACT_NUMBER(dest, src) PREFIX(extract_number) (&dest, src)
651 #  endif /* not EXTRACT_MACROS */
652
653 # endif /* DEBUG */
654
655 /* Same as EXTRACT_NUMBER, except increment SOURCE to after the number.
656    SOURCE must be an lvalue.  */
657
658 # define EXTRACT_NUMBER_AND_INCR(destination, source)                   \
659   do {                                                                  \
660     EXTRACT_NUMBER (destination, source);                               \
661     (source) += OFFSET_ADDRESS_SIZE;                                    \
662   } while (0)
663
664 # ifdef DEBUG
665 static void
666 PREFIX(extract_number_and_incr) (int *destination, UCHAR_T **source)
667 {
668   PREFIX(extract_number) (destination, *source);
669   *source += OFFSET_ADDRESS_SIZE;
670 }
671
672 #  ifndef EXTRACT_MACROS
673 #   undef EXTRACT_NUMBER_AND_INCR
674 #   define EXTRACT_NUMBER_AND_INCR(dest, src) \
675   PREFIX(extract_number_and_incr) (&dest, &src)
676 #  endif /* not EXTRACT_MACROS */
677
678 # endif /* DEBUG */
679
680 \f
681
682 /* If DEBUG is defined, Regex prints many voluminous messages about what
683    it is doing (if the variable `debug' is nonzero).  If linked with the
684    main program in `iregex.c', you can enter patterns and strings
685    interactively.  And if linked with the main program in `main.c' and
686    the other test files, you can run the already-written tests.  */
687
688 # ifdef DEBUG
689
690 #  ifndef DEFINED_ONCE
691
692 /* We use standard I/O for debugging.  */
693 #   include <stdio.h>
694
695 /* It is useful to test things that ``must'' be true when debugging.  */
696 #   include <assert.h>
697
698 static int debug;
699
700 #   define DEBUG_STATEMENT(e) e
701 #   define DEBUG_PRINT1(x) if (debug) printf (x)
702 #   define DEBUG_PRINT2(x1, x2) if (debug) printf (x1, x2)
703 #   define DEBUG_PRINT3(x1, x2, x3) if (debug) printf (x1, x2, x3)
704 #   define DEBUG_PRINT4(x1, x2, x3, x4) if (debug) printf (x1, x2, x3, x4)
705 #  endif /* not DEFINED_ONCE */
706
707 #  define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)                         \
708   if (debug) PREFIX(print_partial_compiled_pattern) (s, e)
709 #  define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)                \
710   if (debug) PREFIX(print_double_string) (w, s1, sz1, s2, sz2)
711
712
713 /* Print the fastmap in human-readable form.  */
714
715 #  ifndef DEFINED_ONCE
716 void
717 print_fastmap (char *fastmap)
718 {
719   unsigned was_a_range = 0;
720   unsigned i = 0;
721
722   while (i < (1 << BYTEWIDTH))
723     {
724       if (fastmap[i++])
725         {
726           was_a_range = 0;
727           putchar (i - 1);
728           while (i < (1 << BYTEWIDTH)  &&  fastmap[i])
729             {
730               was_a_range = 1;
731               i++;
732             }
733           if (was_a_range)
734             {
735               printf ("-");
736               putchar (i - 1);
737             }
738         }
739     }
740   putchar ('\n');
741 }
742 #  endif /* not DEFINED_ONCE */
743
744
745 /* Print a compiled pattern string in human-readable form, starting at
746    the START pointer into it and ending just before the pointer END.  */
747
748 void
749 PREFIX(print_partial_compiled_pattern) (UCHAR_T *start, UCHAR_T *end)
750 {
751   int mcnt, mcnt2;
752   UCHAR_T *p1;
753   UCHAR_T *p = start;
754   UCHAR_T *pend = end;
755
756   if (start == NULL)
757     {
758       printf ("(null)\n");
759       return;
760     }
761
762   /* Loop over pattern commands.  */
763   while (p < pend)
764     {
765 #  ifdef _LIBC
766       printf ("%td:\t", p - start);
767 #  else
768       printf ("%ld:\t", (long int) (p - start));
769 #  endif
770
771       switch ((re_opcode_t) *p++)
772         {
773         case no_op:
774           printf ("/no_op");
775           break;
776
777         case exactn:
778           mcnt = *p++;
779           printf ("/exactn/%d", mcnt);
780           do
781             {
782               putchar ('/');
783               PUT_CHAR (*p++);
784             }
785           while (--mcnt);
786           break;
787
788 #  ifdef MBS_SUPPORT
789         case exactn_bin:
790           mcnt = *p++;
791           printf ("/exactn_bin/%d", mcnt);
792           do
793             {
794               printf("/%lx", (long int) *p++);
795             }
796           while (--mcnt);
797           break;
798 #  endif /* MBS_SUPPORT */
799
800         case start_memory:
801           mcnt = *p++;
802           printf ("/start_memory/%d/%ld", mcnt, (long int) *p++);
803           break;
804
805         case stop_memory:
806           mcnt = *p++;
807           printf ("/stop_memory/%d/%ld", mcnt, (long int) *p++);
808           break;
809
810         case duplicate:
811           printf ("/duplicate/%ld", (long int) *p++);
812           break;
813
814         case anychar:
815           printf ("/anychar");
816           break;
817
818         case charset:
819         case charset_not:
820           {
821 #  ifdef WCHAR
822             int i, length;
823             wchar_t *workp = p;
824             printf ("/charset [%s",
825                     (re_opcode_t) *(workp - 1) == charset_not ? "^" : "");
826             p += 5;
827             length = *workp++; /* the length of char_classes */
828             for (i=0 ; i<length ; i++)
829               printf("[:%lx:]", (long int) *p++);
830             length = *workp++; /* the length of collating_symbol */
831             for (i=0 ; i<length ;)
832               {
833                 printf("[.");
834                 while(*p != 0)
835                   PUT_CHAR((i++,*p++));
836                 i++,p++;
837                 printf(".]");
838               }
839             length = *workp++; /* the length of equivalence_class */
840             for (i=0 ; i<length ;)
841               {
842                 printf("[=");
843                 while(*p != 0)
844                   PUT_CHAR((i++,*p++));
845                 i++,p++;
846                 printf("=]");
847               }
848             length = *workp++; /* the length of char_range */
849             for (i=0 ; i<length ; i++)
850               {
851                 wchar_t range_start = *p++;
852                 wchar_t range_end = *p++;
853                 printf("%C-%C", range_start, range_end);
854               }
855             length = *workp++; /* the length of char */
856             for (i=0 ; i<length ; i++)
857               printf("%C", *p++);
858             putchar (']');
859 #  else
860             register int c, last = -100;
861             register int in_range = 0;
862
863             printf ("/charset [%s",
864                     (re_opcode_t) *(p - 1) == charset_not ? "^" : "");
865
866             assert (p + *p < pend);
867
868             for (c = 0; c < 256; c++)
869               if (c / 8 < *p
870                   && (p[1 + (c/8)] & (1 << (c % 8))))
871                 {
872                   /* Are we starting a range?  */
873                   if (last + 1 == c && ! in_range)
874                     {
875                       putchar ('-');
876                       in_range = 1;
877                     }
878                   /* Have we broken a range?  */
879                   else if (last + 1 != c && in_range)
880               {
881                       putchar (last);
882                       in_range = 0;
883                     }
884
885                   if (! in_range)
886                     putchar (c);
887
888                   last = c;
889               }
890
891             if (in_range)
892               putchar (last);
893
894             putchar (']');
895
896             p += 1 + *p;
897 #  endif /* WCHAR */
898           }
899           break;
900
901         case begline:
902           printf ("/begline");
903           break;
904
905         case endline:
906           printf ("/endline");
907           break;
908
909         case on_failure_jump:
910           PREFIX(extract_number_and_incr) (&mcnt, &p);
911 #  ifdef _LIBC
912           printf ("/on_failure_jump to %td", p + mcnt - start);
913 #  else
914           printf ("/on_failure_jump to %ld", (long int) (p + mcnt - start));
915 #  endif
916           break;
917
918         case on_failure_keep_string_jump:
919           PREFIX(extract_number_and_incr) (&mcnt, &p);
920 #  ifdef _LIBC
921           printf ("/on_failure_keep_string_jump to %td", p + mcnt - start);
922 #  else
923           printf ("/on_failure_keep_string_jump to %ld",
924                   (long int) (p + mcnt - start));
925 #  endif
926           break;
927
928         case dummy_failure_jump:
929           PREFIX(extract_number_and_incr) (&mcnt, &p);
930 #  ifdef _LIBC
931           printf ("/dummy_failure_jump to %td", p + mcnt - start);
932 #  else
933           printf ("/dummy_failure_jump to %ld", (long int) (p + mcnt - start));
934 #  endif
935           break;
936
937         case push_dummy_failure:
938           printf ("/push_dummy_failure");
939           break;
940
941         case maybe_pop_jump:
942           PREFIX(extract_number_and_incr) (&mcnt, &p);
943 #  ifdef _LIBC
944           printf ("/maybe_pop_jump to %td", p + mcnt - start);
945 #  else
946           printf ("/maybe_pop_jump to %ld", (long int) (p + mcnt - start));
947 #  endif
948           break;
949
950         case pop_failure_jump:
951           PREFIX(extract_number_and_incr) (&mcnt, &p);
952 #  ifdef _LIBC
953           printf ("/pop_failure_jump to %td", p + mcnt - start);
954 #  else
955           printf ("/pop_failure_jump to %ld", (long int) (p + mcnt - start));
956 #  endif
957           break;
958
959         case jump_past_alt:
960           PREFIX(extract_number_and_incr) (&mcnt, &p);
961 #  ifdef _LIBC
962           printf ("/jump_past_alt to %td", p + mcnt - start);
963 #  else
964           printf ("/jump_past_alt to %ld", (long int) (p + mcnt - start));
965 #  endif
966           break;
967
968         case jump:
969           PREFIX(extract_number_and_incr) (&mcnt, &p);
970 #  ifdef _LIBC
971           printf ("/jump to %td", p + mcnt - start);
972 #  else
973           printf ("/jump to %ld", (long int) (p + mcnt - start));
974 #  endif
975           break;
976
977         case succeed_n:
978           PREFIX(extract_number_and_incr) (&mcnt, &p);
979           p1 = p + mcnt;
980           PREFIX(extract_number_and_incr) (&mcnt2, &p);
981 #  ifdef _LIBC
982           printf ("/succeed_n to %td, %d times", p1 - start, mcnt2);
983 #  else
984           printf ("/succeed_n to %ld, %d times",
985                   (long int) (p1 - start), mcnt2);
986 #  endif
987           break;
988
989         case jump_n:
990           PREFIX(extract_number_and_incr) (&mcnt, &p);
991           p1 = p + mcnt;
992           PREFIX(extract_number_and_incr) (&mcnt2, &p);
993           printf ("/jump_n to %d, %d times", p1 - start, mcnt2);
994           break;
995
996         case set_number_at:
997           PREFIX(extract_number_and_incr) (&mcnt, &p);
998           p1 = p + mcnt;
999           PREFIX(extract_number_and_incr) (&mcnt2, &p);
1000 #  ifdef _LIBC
1001           printf ("/set_number_at location %td to %d", p1 - start, mcnt2);
1002 #  else
1003           printf ("/set_number_at location %ld to %d",
1004                   (long int) (p1 - start), mcnt2);
1005 #  endif
1006           break;
1007
1008         case wordbound:
1009           printf ("/wordbound");
1010           break;
1011
1012         case notwordbound:
1013           printf ("/notwordbound");
1014           break;
1015
1016         case wordbeg:
1017           printf ("/wordbeg");
1018           break;
1019
1020         case wordend:
1021           printf ("/wordend");
1022           break;
1023
1024 #  ifdef emacs
1025         case before_dot:
1026           printf ("/before_dot");
1027           break;
1028
1029         case at_dot:
1030           printf ("/at_dot");
1031           break;
1032
1033         case after_dot:
1034           printf ("/after_dot");
1035           break;
1036
1037         case syntaxspec:
1038           printf ("/syntaxspec");
1039           mcnt = *p++;
1040           printf ("/%d", mcnt);
1041           break;
1042
1043         case notsyntaxspec:
1044           printf ("/notsyntaxspec");
1045           mcnt = *p++;
1046           printf ("/%d", mcnt);
1047           break;
1048 #  endif /* emacs */
1049
1050         case wordchar:
1051           printf ("/wordchar");
1052           break;
1053
1054         case notwordchar:
1055           printf ("/notwordchar");
1056           break;
1057
1058         case begbuf:
1059           printf ("/begbuf");
1060           break;
1061
1062         case endbuf:
1063           printf ("/endbuf");
1064           break;
1065
1066         default:
1067           printf ("?%ld", (long int) *(p-1));
1068         }
1069
1070       putchar ('\n');
1071     }
1072
1073 #  ifdef _LIBC
1074   printf ("%td:\tend of pattern.\n", p - start);
1075 #  else
1076   printf ("%ld:\tend of pattern.\n", (long int) (p - start));
1077 #  endif
1078 }
1079
1080
1081 void
1082 PREFIX(print_compiled_pattern) (struct re_pattern_buffer *bufp)
1083 {
1084   UCHAR_T *buffer = (UCHAR_T*) bufp->buffer;
1085
1086   PREFIX(print_partial_compiled_pattern) (buffer, buffer
1087                                   + bufp->used / sizeof(UCHAR_T));
1088   printf ("%ld bytes used/%ld bytes allocated.\n",
1089           bufp->used, bufp->allocated);
1090
1091   if (bufp->fastmap_accurate && bufp->fastmap)
1092     {
1093       printf ("fastmap: ");
1094       print_fastmap (bufp->fastmap);
1095     }
1096
1097 #  ifdef _LIBC
1098   printf ("re_nsub: %Zd\t", bufp->re_nsub);
1099 #  else
1100   printf ("re_nsub: %ld\t", (long int) bufp->re_nsub);
1101 #  endif
1102   printf ("regs_alloc: %d\t", bufp->regs_allocated);
1103   printf ("can_be_null: %d\t", bufp->can_be_null);
1104   printf ("newline_anchor: %d\n", bufp->newline_anchor);
1105   printf ("no_sub: %d\t", bufp->no_sub);
1106   printf ("not_bol: %d\t", bufp->not_bol);
1107   printf ("not_eol: %d\t", bufp->not_eol);
1108   printf ("syntax: %lx\n", bufp->syntax);
1109   /* Perhaps we should print the translate table?  */
1110 }
1111
1112
1113 void
1114 PREFIX(print_double_string) (const CHAR_T *where,
1115                              const CHAR_T *string1,
1116                              const CHAR_T *string2,
1117                              int size1,
1118                              int size2)
1119 {
1120   int this_char;
1121
1122   if (where == NULL)
1123     printf ("(null)");
1124   else
1125     {
1126       int cnt;
1127
1128       if (FIRST_STRING_P (where))
1129         {
1130           for (this_char = where - string1; this_char < size1; this_char++)
1131             PUT_CHAR (string1[this_char]);
1132
1133           where = string2;
1134         }
1135
1136       cnt = 0;
1137       for (this_char = where - string2; this_char < size2; this_char++)
1138         {
1139           PUT_CHAR (string2[this_char]);
1140           if (++cnt > 100)
1141             {
1142               fputs ("...", stdout);
1143               break;
1144             }
1145         }
1146     }
1147 }
1148
1149 #  ifndef DEFINED_ONCE
1150 void
1151 printchar (c)
1152      int c;
1153 {
1154   putc (c, stderr);
1155 }
1156 #  endif
1157
1158 # else /* not DEBUG */
1159
1160 #  ifndef DEFINED_ONCE
1161 #   undef assert
1162 #   define assert(e)
1163
1164 #   define DEBUG_STATEMENT(e)
1165 #   define DEBUG_PRINT1(x)
1166 #   define DEBUG_PRINT2(x1, x2)
1167 #   define DEBUG_PRINT3(x1, x2, x3)
1168 #   define DEBUG_PRINT4(x1, x2, x3, x4)
1169 #  endif /* not DEFINED_ONCE */
1170 #  define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)
1171 #  define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)
1172
1173 # endif /* not DEBUG */
1174
1175 \f
1176
1177 # ifdef WCHAR
1178 /* This  convert a multibyte string to a wide character string.
1179    And write their correspondances to offset_buffer(see below)
1180    and write whether each wchar_t is binary data to is_binary.
1181    This assume invalid multibyte sequences as binary data.
1182    We assume offset_buffer and is_binary is already allocated
1183    enough space.  */
1184
1185 static size_t
1186 convert_mbs_to_wcs (CHAR_T *dest,
1187                     const unsigned char* src,
1188
1189                     /* The length of multibyte string.  */
1190                     size_t len,
1191
1192                     /* Correspondences between src(char string) and
1193                        dest(wchar_t string) for optimization.  E.g.:
1194                        src  = "xxxyzz"
1195                        dest = {'X', 'Y', 'Z'}
1196                          (each "xxx", "y" and "zz" represent one
1197                           multibyte character corresponding to 'X',
1198                           'Y' and 'Z'.)
1199                        offset_buffer = {0, 0+3("xxx"), 0+3+1("y"),
1200                                         0+3+1+2("zz")}
1201                                      = {0, 3, 4, 6} */
1202                     int *offset_buffer,
1203
1204                     char *is_binary)
1205 {
1206   wchar_t *pdest = dest;
1207   const unsigned char *psrc = src;
1208   size_t wc_count = 0;
1209
1210   mbstate_t mbs;
1211   int i, consumed;
1212   size_t mb_remain = len;
1213   size_t mb_count = 0;
1214
1215   /* Initialize the conversion state.  */
1216   memset (&mbs, 0, sizeof (mbstate_t));
1217
1218   offset_buffer[0] = 0;
1219   for( ; mb_remain > 0 ; ++wc_count, ++pdest, mb_remain -= consumed,
1220          psrc += consumed)
1221     {
1222       consumed = mbrtowc (pdest, psrc, mb_remain, &mbs);
1223
1224       if (consumed <= 0)
1225         /* failed to convert. maybe src contains binary data.
1226            So we consume 1 byte manualy.  */
1227         {
1228           *pdest = *psrc;
1229           consumed = 1;
1230           is_binary[wc_count] = TRUE;
1231         }
1232       else
1233         is_binary[wc_count] = FALSE;
1234       /* In sjis encoding, we use yen sign as escape character in
1235          place of reverse solidus. So we convert 0x5c(yen sign in
1236          sjis) to not 0xa5(yen sign in UCS2) but 0x5c(reverse
1237          solidus in UCS2).  */
1238       if (consumed == 1 && (int) *psrc == 0x5c && (int) *pdest == 0xa5)
1239         *pdest = (wchar_t) *psrc;
1240
1241       offset_buffer[wc_count + 1] = mb_count += consumed;
1242     }
1243
1244   /* Fill remain of the buffer with sentinel.  */
1245   for (i = wc_count + 1 ; i <= len ; i++)
1246     offset_buffer[i] = mb_count + 1;
1247
1248   return wc_count;
1249 }
1250
1251 # endif /* WCHAR */
1252
1253 #else /* not INSIDE_RECURSION */
1254
1255 /* Set by `re_set_syntax' to the current regexp syntax to recognize.  Can
1256    also be assigned to arbitrarily: each pattern buffer stores its own
1257    syntax, so it can be changed between regex compilations.  */
1258 /* This has no initializer because initialized variables in Emacs
1259    become read-only after dumping.  */
1260 reg_syntax_t re_syntax_options;
1261
1262
1263 /* Specify the precise syntax of regexps for compilation.  This provides
1264    for compatibility for various utilities which historically have
1265    different, incompatible syntaxes.
1266
1267    The argument SYNTAX is a bit mask comprised of the various bits
1268    defined in regex.h.  We return the old syntax.  */
1269
1270 reg_syntax_t
1271 re_set_syntax (reg_syntax_t syntax)
1272 {
1273   reg_syntax_t ret = re_syntax_options;
1274
1275   re_syntax_options = syntax;
1276 # ifdef DEBUG
1277   if (syntax & RE_DEBUG)
1278     debug = 1;
1279   else if (debug) /* was on but now is not */
1280     debug = 0;
1281 # endif /* DEBUG */
1282   return ret;
1283 }
1284 # ifdef _LIBC
1285 weak_alias (__re_set_syntax, re_set_syntax)
1286 # endif
1287 \f
1288 /* This table gives an error message for each of the error codes listed
1289    in regex.h.  Obviously the order here has to be same as there.
1290    POSIX doesn't require that we do anything for REG_NOERROR,
1291    but why not be nice?  */
1292
1293 static const char re_error_msgid[] =
1294   {
1295 # define REG_NOERROR_IDX        0
1296     gettext_noop ("Success")    /* REG_NOERROR */
1297     "\0"
1298 # define REG_NOMATCH_IDX (REG_NOERROR_IDX + sizeof "Success")
1299     gettext_noop ("No match")   /* REG_NOMATCH */
1300     "\0"
1301 # define REG_BADPAT_IDX (REG_NOMATCH_IDX + sizeof "No match")
1302     gettext_noop ("Invalid regular expression") /* REG_BADPAT */
1303     "\0"
1304 # define REG_ECOLLATE_IDX (REG_BADPAT_IDX + sizeof "Invalid regular expression")
1305     gettext_noop ("Invalid collation character") /* REG_ECOLLATE */
1306     "\0"
1307 # define REG_ECTYPE_IDX (REG_ECOLLATE_IDX + sizeof "Invalid collation character")
1308     gettext_noop ("Invalid character class name") /* REG_ECTYPE */
1309     "\0"
1310 # define REG_EESCAPE_IDX        (REG_ECTYPE_IDX + sizeof "Invalid character class name")
1311     gettext_noop ("Trailing backslash") /* REG_EESCAPE */
1312     "\0"
1313 # define REG_ESUBREG_IDX        (REG_EESCAPE_IDX + sizeof "Trailing backslash")
1314     gettext_noop ("Invalid back reference") /* REG_ESUBREG */
1315     "\0"
1316 # define REG_EBRACK_IDX (REG_ESUBREG_IDX + sizeof "Invalid back reference")
1317     gettext_noop ("Unmatched [ or [^")  /* REG_EBRACK */
1318     "\0"
1319 # define REG_EPAREN_IDX (REG_EBRACK_IDX + sizeof "Unmatched [ or [^")
1320     gettext_noop ("Unmatched ( or \\(") /* REG_EPAREN */
1321     "\0"
1322 # define REG_EBRACE_IDX (REG_EPAREN_IDX + sizeof "Unmatched ( or \\(")
1323     gettext_noop ("Unmatched \\{") /* REG_EBRACE */
1324     "\0"
1325 # define REG_BADBR_IDX  (REG_EBRACE_IDX + sizeof "Unmatched \\{")
1326     gettext_noop ("Invalid content of \\{\\}") /* REG_BADBR */
1327     "\0"
1328 # define REG_ERANGE_IDX (REG_BADBR_IDX + sizeof "Invalid content of \\{\\}")
1329     gettext_noop ("Invalid range end")  /* REG_ERANGE */
1330     "\0"
1331 # define REG_ESPACE_IDX (REG_ERANGE_IDX + sizeof "Invalid range end")
1332     gettext_noop ("Memory exhausted") /* REG_ESPACE */
1333     "\0"
1334 # define REG_BADRPT_IDX (REG_ESPACE_IDX + sizeof "Memory exhausted")
1335     gettext_noop ("Invalid preceding regular expression") /* REG_BADRPT */
1336     "\0"
1337 # define REG_EEND_IDX   (REG_BADRPT_IDX + sizeof "Invalid preceding regular expression")
1338     gettext_noop ("Premature end of regular expression") /* REG_EEND */
1339     "\0"
1340 # define REG_ESIZE_IDX  (REG_EEND_IDX + sizeof "Premature end of regular expression")
1341     gettext_noop ("Regular expression too big") /* REG_ESIZE */
1342     "\0"
1343 # define REG_ERPAREN_IDX        (REG_ESIZE_IDX + sizeof "Regular expression too big")
1344     gettext_noop ("Unmatched ) or \\)") /* REG_ERPAREN */
1345   };
1346
1347 static const size_t re_error_msgid_idx[] =
1348   {
1349     REG_NOERROR_IDX,
1350     REG_NOMATCH_IDX,
1351     REG_BADPAT_IDX,
1352     REG_ECOLLATE_IDX,
1353     REG_ECTYPE_IDX,
1354     REG_EESCAPE_IDX,
1355     REG_ESUBREG_IDX,
1356     REG_EBRACK_IDX,
1357     REG_EPAREN_IDX,
1358     REG_EBRACE_IDX,
1359     REG_BADBR_IDX,
1360     REG_ERANGE_IDX,
1361     REG_ESPACE_IDX,
1362     REG_BADRPT_IDX,
1363     REG_EEND_IDX,
1364     REG_ESIZE_IDX,
1365     REG_ERPAREN_IDX
1366   };
1367 \f
1368 #endif /* INSIDE_RECURSION */
1369
1370 #ifndef DEFINED_ONCE
1371 /* Avoiding alloca during matching, to placate r_alloc.  */
1372
1373 /* Define MATCH_MAY_ALLOCATE unless we need to make sure that the
1374    searching and matching functions should not call alloca.  On some
1375    systems, alloca is implemented in terms of malloc, and if we're
1376    using the relocating allocator routines, then malloc could cause a
1377    relocation, which might (if the strings being searched are in the
1378    ralloc heap) shift the data out from underneath the regexp
1379    routines.
1380
1381    Here's another reason to avoid allocation: Emacs
1382    processes input from X in a signal handler; processing X input may
1383    call malloc; if input arrives while a matching routine is calling
1384    malloc, then we're scrod.  But Emacs can't just block input while
1385    calling matching routines; then we don't notice interrupts when
1386    they come in.  So, Emacs blocks input around all regexp calls
1387    except the matching calls, which it leaves unprotected, in the
1388    faith that they will not malloc.  */
1389
1390 /* Normally, this is fine.  */
1391 # define MATCH_MAY_ALLOCATE
1392
1393 /* When using GNU C, we are not REALLY using the C alloca, no matter
1394    what config.h may say.  So don't take precautions for it.  */
1395 # ifdef __GNUC__
1396 #  undef C_ALLOCA
1397 # endif
1398
1399 /* The match routines may not allocate if (1) they would do it with malloc
1400    and (2) it's not safe for them to use malloc.
1401    Note that if REL_ALLOC is defined, matching would not use malloc for the
1402    failure stack, but we would still use it for the register vectors;
1403    so REL_ALLOC should not affect this.  */
1404 # if (defined C_ALLOCA || defined REGEX_MALLOC) && defined emacs
1405 #  undef MATCH_MAY_ALLOCATE
1406 # endif
1407 #endif /* not DEFINED_ONCE */
1408 \f
1409 #ifdef INSIDE_RECURSION
1410 /* Failure stack declarations and macros; both re_compile_fastmap and
1411    re_match_2 use a failure stack.  These have to be macros because of
1412    REGEX_ALLOCATE_STACK.  */
1413
1414
1415 /* Number of failure points for which to initially allocate space
1416    when matching.  If this number is exceeded, we allocate more
1417    space, so it is not a hard limit.  */
1418 # ifndef INIT_FAILURE_ALLOC
1419 #  define INIT_FAILURE_ALLOC 5
1420 # endif
1421
1422 /* Roughly the maximum number of failure points on the stack.  Would be
1423    exactly that if always used MAX_FAILURE_ITEMS items each time we failed.
1424    This is a variable only so users of regex can assign to it; we never
1425    change it ourselves.  */
1426
1427 # ifdef INT_IS_16BIT
1428
1429 #  ifndef DEFINED_ONCE
1430 #   if defined MATCH_MAY_ALLOCATE
1431 /* 4400 was enough to cause a crash on Alpha OSF/1,
1432    whose default stack limit is 2mb.  */
1433 long int re_max_failures = 4000;
1434 #   else
1435 long int re_max_failures = 2000;
1436 #   endif
1437 #  endif
1438
1439 union PREFIX(fail_stack_elt)
1440 {
1441   UCHAR_T *pointer;
1442   long int integer;
1443 };
1444
1445 typedef union PREFIX(fail_stack_elt) PREFIX(fail_stack_elt_t);
1446
1447 typedef struct
1448 {
1449   PREFIX(fail_stack_elt_t) *stack;
1450   unsigned long int size;
1451   unsigned long int avail;              /* Offset of next open position.  */
1452 } PREFIX(fail_stack_type);
1453
1454 # else /* not INT_IS_16BIT */
1455
1456 #  ifndef DEFINED_ONCE
1457 #   if defined MATCH_MAY_ALLOCATE
1458 /* 4400 was enough to cause a crash on Alpha OSF/1,
1459    whose default stack limit is 2mb.  */
1460 int re_max_failures = 4000;
1461 #   else
1462 int re_max_failures = 2000;
1463 #   endif
1464 #  endif
1465
1466 union PREFIX(fail_stack_elt)
1467 {
1468   UCHAR_T *pointer;
1469   int integer;
1470 };
1471
1472 typedef union PREFIX(fail_stack_elt) PREFIX(fail_stack_elt_t);
1473
1474 typedef struct
1475 {
1476   PREFIX(fail_stack_elt_t) *stack;
1477   unsigned size;
1478   unsigned avail;                       /* Offset of next open position.  */
1479 } PREFIX(fail_stack_type);
1480
1481 # endif /* INT_IS_16BIT */
1482
1483 # ifndef DEFINED_ONCE
1484 #  define FAIL_STACK_EMPTY()     (fail_stack.avail == 0)
1485 #  define FAIL_STACK_PTR_EMPTY() (fail_stack_ptr->avail == 0)
1486 #  define FAIL_STACK_FULL()      (fail_stack.avail == fail_stack.size)
1487 # endif
1488
1489
1490 /* Define macros to initialize and free the failure stack.
1491    Do `return -2' if the alloc fails.  */
1492
1493 # ifdef MATCH_MAY_ALLOCATE
1494 #  define INIT_FAIL_STACK()                                             \
1495   do {                                                                  \
1496     fail_stack.stack = (PREFIX(fail_stack_elt_t) *)             \
1497       REGEX_ALLOCATE_STACK (INIT_FAILURE_ALLOC * sizeof (PREFIX(fail_stack_elt_t))); \
1498                                                                         \
1499     if (fail_stack.stack == NULL)                               \
1500       return -2;                                                        \
1501                                                                         \
1502     fail_stack.size = INIT_FAILURE_ALLOC;                       \
1503     fail_stack.avail = 0;                                       \
1504   } while (0)
1505
1506 #  define RESET_FAIL_STACK()  REGEX_FREE_STACK (fail_stack.stack)
1507 # else
1508 #  define INIT_FAIL_STACK()                                             \
1509   do {                                                                  \
1510     fail_stack.avail = 0;                                       \
1511   } while (0)
1512
1513 #  define RESET_FAIL_STACK()
1514 # endif
1515
1516
1517 /* Double the size of FAIL_STACK, up to approximately `re_max_failures' items.
1518
1519    Return 1 if succeeds, and 0 if either ran out of memory
1520    allocating space for it or it was already too large.
1521
1522    REGEX_REALLOCATE_STACK requires `destination' be declared.   */
1523
1524 # define DOUBLE_FAIL_STACK(fail_stack)                                  \
1525   ((fail_stack).size > (unsigned) (re_max_failures * MAX_FAILURE_ITEMS) \
1526    ? 0                                                                  \
1527    : ((fail_stack).stack = (PREFIX(fail_stack_elt_t) *)                 \
1528         REGEX_REALLOCATE_STACK ((fail_stack).stack,                     \
1529           (fail_stack).size * sizeof (PREFIX(fail_stack_elt_t)),        \
1530           ((fail_stack).size << 1) * sizeof (PREFIX(fail_stack_elt_t))),\
1531                                                                         \
1532       (fail_stack).stack == NULL                                        \
1533       ? 0                                                               \
1534       : ((fail_stack).size <<= 1,                                       \
1535          1)))
1536
1537
1538 /* Push pointer POINTER on FAIL_STACK.
1539    Return 1 if was able to do so and 0 if ran out of memory allocating
1540    space to do so.  */
1541 # define PUSH_PATTERN_OP(POINTER, FAIL_STACK)                           \
1542   ((FAIL_STACK_FULL ()                                                  \
1543     && !DOUBLE_FAIL_STACK (FAIL_STACK))                                 \
1544    ? 0                                                                  \
1545    : ((FAIL_STACK).stack[(FAIL_STACK).avail++].pointer = POINTER,       \
1546       1))
1547
1548 /* Push a pointer value onto the failure stack.
1549    Assumes the variable `fail_stack'.  Probably should only
1550    be called from within `PUSH_FAILURE_POINT'.  */
1551 # define PUSH_FAILURE_POINTER(item)                                     \
1552   fail_stack.stack[fail_stack.avail++].pointer = (UCHAR_T *) (item)
1553
1554 /* This pushes an integer-valued item onto the failure stack.
1555    Assumes the variable `fail_stack'.  Probably should only
1556    be called from within `PUSH_FAILURE_POINT'.  */
1557 # define PUSH_FAILURE_INT(item)                                 \
1558   fail_stack.stack[fail_stack.avail++].integer = (item)
1559
1560 /* Push a fail_stack_elt_t value onto the failure stack.
1561    Assumes the variable `fail_stack'.  Probably should only
1562    be called from within `PUSH_FAILURE_POINT'.  */
1563 # define PUSH_FAILURE_ELT(item)                                 \
1564   fail_stack.stack[fail_stack.avail++] =  (item)
1565
1566 /* These three POP... operations complement the three PUSH... operations.
1567    All assume that `fail_stack' is nonempty.  */
1568 # define POP_FAILURE_POINTER() fail_stack.stack[--fail_stack.avail].pointer
1569 # define POP_FAILURE_INT() fail_stack.stack[--fail_stack.avail].integer
1570 # define POP_FAILURE_ELT() fail_stack.stack[--fail_stack.avail]
1571
1572 /* Used to omit pushing failure point id's when we're not debugging.  */
1573 # ifdef DEBUG
1574 #  define DEBUG_PUSH PUSH_FAILURE_INT
1575 #  define DEBUG_POP(item_addr) *(item_addr) = POP_FAILURE_INT ()
1576 # else
1577 #  define DEBUG_PUSH(item)
1578 #  define DEBUG_POP(item_addr)
1579 # endif
1580
1581
1582 /* Push the information about the state we will need
1583    if we ever fail back to it.
1584
1585    Requires variables fail_stack, regstart, regend, reg_info, and
1586    num_regs_pushed be declared.  DOUBLE_FAIL_STACK requires `destination'
1587    be declared.
1588
1589    Does `return FAILURE_CODE' if runs out of memory.  */
1590
1591 # define PUSH_FAILURE_POINT(pattern_place, string_place, failure_code)  \
1592   do {                                                                  \
1593     char *destination;                                                  \
1594     /* Must be int, so when we don't save any registers, the arithmetic \
1595        of 0 + -1 isn't done as unsigned.  */                            \
1596     /* Can't be int, since there is not a shred of a guarantee that int \
1597        is wide enough to hold a value of something to which pointer can \
1598        be assigned */                                                   \
1599     active_reg_t this_reg;                                              \
1600                                                                         \
1601     DEBUG_STATEMENT (failure_id++);                                     \
1602     DEBUG_STATEMENT (nfailure_points_pushed++);                         \
1603     DEBUG_PRINT2 ("\nPUSH_FAILURE_POINT #%u:\n", failure_id);           \
1604     DEBUG_PRINT2 ("  Before push, next avail: %d\n", (fail_stack).avail);\
1605     DEBUG_PRINT2 ("                     size: %d\n", (fail_stack).size);\
1606                                                                         \
1607     DEBUG_PRINT2 ("  slots needed: %ld\n", NUM_FAILURE_ITEMS);          \
1608     DEBUG_PRINT2 ("     available: %d\n", REMAINING_AVAIL_SLOTS);       \
1609                                                                         \
1610     /* Ensure we have enough space allocated for what we will push.  */ \
1611     while (REMAINING_AVAIL_SLOTS < NUM_FAILURE_ITEMS)                   \
1612       {                                                                 \
1613         if (!DOUBLE_FAIL_STACK (fail_stack))                            \
1614           return failure_code;                                          \
1615                                                                         \
1616         DEBUG_PRINT2 ("\n  Doubled stack; size now: %d\n",              \
1617                        (fail_stack).size);                              \
1618         DEBUG_PRINT2 ("  slots available: %d\n", REMAINING_AVAIL_SLOTS);\
1619       }                                                                 \
1620                                                                         \
1621     /* Push the info, starting with the registers.  */                  \
1622     DEBUG_PRINT1 ("\n");                                                \
1623                                                                         \
1624     if (1)                                                              \
1625       for (this_reg = lowest_active_reg; this_reg <= highest_active_reg; \
1626            this_reg++)                                                  \
1627         {                                                               \
1628           DEBUG_PRINT2 ("  Pushing reg: %lu\n", this_reg);              \
1629           DEBUG_STATEMENT (num_regs_pushed++);                          \
1630                                                                         \
1631           DEBUG_PRINT2 ("    start: %p\n", regstart[this_reg]);         \
1632           PUSH_FAILURE_POINTER (regstart[this_reg]);                    \
1633                                                                         \
1634           DEBUG_PRINT2 ("    end: %p\n", regend[this_reg]);             \
1635           PUSH_FAILURE_POINTER (regend[this_reg]);                      \
1636                                                                         \
1637           DEBUG_PRINT2 ("    info: %p\n      ",                         \
1638                         reg_info[this_reg].word.pointer);               \
1639           DEBUG_PRINT2 (" match_null=%d",                               \
1640                         REG_MATCH_NULL_STRING_P (reg_info[this_reg]));  \
1641           DEBUG_PRINT2 (" active=%d", IS_ACTIVE (reg_info[this_reg]));  \
1642           DEBUG_PRINT2 (" matched_something=%d",                        \
1643                         MATCHED_SOMETHING (reg_info[this_reg]));        \
1644           DEBUG_PRINT2 (" ever_matched=%d",                             \
1645                         EVER_MATCHED_SOMETHING (reg_info[this_reg]));   \
1646           DEBUG_PRINT1 ("\n");                                          \
1647           PUSH_FAILURE_ELT (reg_info[this_reg].word);                   \
1648         }                                                               \
1649                                                                         \
1650     DEBUG_PRINT2 ("  Pushing  low active reg: %ld\n", lowest_active_reg);\
1651     PUSH_FAILURE_INT (lowest_active_reg);                               \
1652                                                                         \
1653     DEBUG_PRINT2 ("  Pushing high active reg: %ld\n", highest_active_reg);\
1654     PUSH_FAILURE_INT (highest_active_reg);                              \
1655                                                                         \
1656     DEBUG_PRINT2 ("  Pushing pattern %p:\n", pattern_place);            \
1657     DEBUG_PRINT_COMPILED_PATTERN (bufp, pattern_place, pend);           \
1658     PUSH_FAILURE_POINTER (pattern_place);                               \
1659                                                                         \
1660     DEBUG_PRINT2 ("  Pushing string %p: `", string_place);              \
1661     DEBUG_PRINT_DOUBLE_STRING (string_place, string1, size1, string2,   \
1662                                  size2);                                \
1663     DEBUG_PRINT1 ("'\n");                                               \
1664     PUSH_FAILURE_POINTER (string_place);                                \
1665                                                                         \
1666     DEBUG_PRINT2 ("  Pushing failure id: %u\n", failure_id);            \
1667     DEBUG_PUSH (failure_id);                                            \
1668   } while (0)
1669
1670 # ifndef DEFINED_ONCE
1671 /* This is the number of items that are pushed and popped on the stack
1672    for each register.  */
1673 #  define NUM_REG_ITEMS  3
1674
1675 /* Individual items aside from the registers.  */
1676 #  ifdef DEBUG
1677 #   define NUM_NONREG_ITEMS 5 /* Includes failure point id.  */
1678 #  else
1679 #   define NUM_NONREG_ITEMS 4
1680 #  endif
1681
1682 /* We push at most this many items on the stack.  */
1683 /* We used to use (num_regs - 1), which is the number of registers
1684    this regexp will save; but that was changed to 5
1685    to avoid stack overflow for a regexp with lots of parens.  */
1686 #  define MAX_FAILURE_ITEMS (5 * NUM_REG_ITEMS + NUM_NONREG_ITEMS)
1687
1688 /* We actually push this many items.  */
1689 #  define NUM_FAILURE_ITEMS                             \
1690   (((0                                                  \
1691      ? 0 : highest_active_reg - lowest_active_reg + 1)  \
1692     * NUM_REG_ITEMS)                                    \
1693    + NUM_NONREG_ITEMS)
1694
1695 /* How many items can still be added to the stack without overflowing it.  */
1696 #  define REMAINING_AVAIL_SLOTS ((fail_stack).size - (fail_stack).avail)
1697 # endif /* not DEFINED_ONCE */
1698
1699
1700 /* Pops what PUSH_FAIL_STACK pushes.
1701
1702    We restore into the parameters, all of which should be lvalues:
1703      STR -- the saved data position.
1704      PAT -- the saved pattern position.
1705      LOW_REG, HIGH_REG -- the highest and lowest active registers.
1706      REGSTART, REGEND -- arrays of string positions.
1707      REG_INFO -- array of information about each subexpression.
1708
1709    Also assumes the variables `fail_stack' and (if debugging), `bufp',
1710    `pend', `string1', `size1', `string2', and `size2'.  */
1711 # define POP_FAILURE_POINT(str, pat, low_reg, high_reg, regstart, regend, reg_info)\
1712 {                                                                       \
1713   DEBUG_STATEMENT (unsigned failure_id;)                                \
1714   active_reg_t this_reg;                                                \
1715   const UCHAR_T *string_temp;                                           \
1716                                                                         \
1717   assert (!FAIL_STACK_EMPTY ());                                        \
1718                                                                         \
1719   /* Remove failure points and point to how many regs pushed.  */       \
1720   DEBUG_PRINT1 ("POP_FAILURE_POINT:\n");                                \
1721   DEBUG_PRINT2 ("  Before pop, next avail: %d\n", fail_stack.avail);    \
1722   DEBUG_PRINT2 ("                    size: %d\n", fail_stack.size);     \
1723                                                                         \
1724   assert (fail_stack.avail >= NUM_NONREG_ITEMS);                        \
1725                                                                         \
1726   DEBUG_POP (&failure_id);                                              \
1727   DEBUG_PRINT2 ("  Popping failure id: %u\n", failure_id);              \
1728                                                                         \
1729   /* If the saved string location is NULL, it came from an              \
1730      on_failure_keep_string_jump opcode, and we want to throw away the  \
1731      saved NULL, thus retaining our current position in the string.  */ \
1732   string_temp = POP_FAILURE_POINTER ();                                 \
1733   if (string_temp != NULL)                                              \
1734     str = (const CHAR_T *) string_temp;                                 \
1735                                                                         \
1736   DEBUG_PRINT2 ("  Popping string %p: `", str);                         \
1737   DEBUG_PRINT_DOUBLE_STRING (str, string1, size1, string2, size2);      \
1738   DEBUG_PRINT1 ("'\n");                                                 \
1739                                                                         \
1740   pat = (UCHAR_T *) POP_FAILURE_POINTER ();                             \
1741   DEBUG_PRINT2 ("  Popping pattern %p:\n", pat);                        \
1742   DEBUG_PRINT_COMPILED_PATTERN (bufp, pat, pend);                       \
1743                                                                         \
1744   /* Restore register info.  */                                         \
1745   high_reg = (active_reg_t) POP_FAILURE_INT ();                         \
1746   DEBUG_PRINT2 ("  Popping high active reg: %ld\n", high_reg);          \
1747                                                                         \
1748   low_reg = (active_reg_t) POP_FAILURE_INT ();                          \
1749   DEBUG_PRINT2 ("  Popping  low active reg: %ld\n", low_reg);           \
1750                                                                         \
1751   if (1)                                                                \
1752     for (this_reg = high_reg; this_reg >= low_reg; this_reg--)          \
1753       {                                                                 \
1754         DEBUG_PRINT2 ("    Popping reg: %ld\n", this_reg);              \
1755                                                                         \
1756         reg_info[this_reg].word = POP_FAILURE_ELT ();                   \
1757         DEBUG_PRINT2 ("      info: %p\n",                               \
1758                       reg_info[this_reg].word.pointer);                 \
1759                                                                         \
1760         regend[this_reg] = (const CHAR_T *) POP_FAILURE_POINTER ();     \
1761         DEBUG_PRINT2 ("      end: %p\n", regend[this_reg]);             \
1762                                                                         \
1763         regstart[this_reg] = (const CHAR_T *) POP_FAILURE_POINTER ();   \
1764         DEBUG_PRINT2 ("      start: %p\n", regstart[this_reg]);         \
1765       }                                                                 \
1766   else                                                                  \
1767     {                                                                   \
1768       for (this_reg = highest_active_reg; this_reg > high_reg; this_reg--) \
1769         {                                                               \
1770           reg_info[this_reg].word.integer = 0;                          \
1771           regend[this_reg] = 0;                                         \
1772           regstart[this_reg] = 0;                                       \
1773         }                                                               \
1774       highest_active_reg = high_reg;                                    \
1775     }                                                                   \
1776                                                                         \
1777   set_regs_matched_done = 0;                                            \
1778   DEBUG_STATEMENT (nfailure_points_popped++);                           \
1779 } /* POP_FAILURE_POINT */
1780 \f
1781 /* Structure for per-register (a.k.a. per-group) information.
1782    Other register information, such as the
1783    starting and ending positions (which are addresses), and the list of
1784    inner groups (which is a bits list) are maintained in separate
1785    variables.
1786
1787    We are making a (strictly speaking) nonportable assumption here: that
1788    the compiler will pack our bit fields into something that fits into
1789    the type of `word', i.e., is something that fits into one item on the
1790    failure stack.  */
1791
1792
1793 /* Declarations and macros for re_match_2.  */
1794
1795 typedef union
1796 {
1797   PREFIX(fail_stack_elt_t) word;
1798   struct
1799   {
1800       /* This field is one if this group can match the empty string,
1801          zero if not.  If not yet determined,  `MATCH_NULL_UNSET_VALUE'.  */
1802 # define MATCH_NULL_UNSET_VALUE 3
1803     unsigned match_null_string_p : 2;
1804     unsigned is_active : 1;
1805     unsigned matched_something : 1;
1806     unsigned ever_matched_something : 1;
1807   } bits;
1808 } PREFIX(register_info_type);
1809
1810 # ifndef DEFINED_ONCE
1811 #  define REG_MATCH_NULL_STRING_P(R)  ((R).bits.match_null_string_p)
1812 #  define IS_ACTIVE(R)  ((R).bits.is_active)
1813 #  define MATCHED_SOMETHING(R)  ((R).bits.matched_something)
1814 #  define EVER_MATCHED_SOMETHING(R)  ((R).bits.ever_matched_something)
1815
1816
1817 /* Call this when have matched a real character; it sets `matched' flags
1818    for the subexpressions which we are currently inside.  Also records
1819    that those subexprs have matched.  */
1820 #  define SET_REGS_MATCHED()                                            \
1821   do                                                                    \
1822     {                                                                   \
1823       if (!set_regs_matched_done)                                       \
1824         {                                                               \
1825           active_reg_t r;                                               \
1826           set_regs_matched_done = 1;                                    \
1827           for (r = lowest_active_reg; r <= highest_active_reg; r++)     \
1828             {                                                           \
1829               MATCHED_SOMETHING (reg_info[r])                           \
1830                 = EVER_MATCHED_SOMETHING (reg_info[r])                  \
1831                 = 1;                                                    \
1832             }                                                           \
1833         }                                                               \
1834     }                                                                   \
1835   while (0)
1836 # endif /* not DEFINED_ONCE */
1837
1838 /* Registers are set to a sentinel when they haven't yet matched.  */
1839 static CHAR_T PREFIX(reg_unset_dummy);
1840 # define REG_UNSET_VALUE (&PREFIX(reg_unset_dummy))
1841 # define REG_UNSET(e) ((e) == REG_UNSET_VALUE)
1842
1843 /* Subroutine declarations and macros for regex_compile.  */
1844 static void PREFIX(store_op1) (re_opcode_t op, UCHAR_T *loc, int arg);
1845 static void PREFIX(store_op2) (re_opcode_t op, UCHAR_T *loc,
1846                                int arg1, int arg2);
1847 static void PREFIX(insert_op1) (re_opcode_t op, UCHAR_T *loc,
1848                                 int arg, UCHAR_T *end);
1849 static void PREFIX(insert_op2) (re_opcode_t op, UCHAR_T *loc,
1850                                 int arg1, int arg2, UCHAR_T *end);
1851 static boolean PREFIX(at_begline_loc_p) (const CHAR_T *pattern,
1852                                          const CHAR_T *p,
1853                                          reg_syntax_t syntax);
1854 static boolean PREFIX(at_endline_loc_p) (const CHAR_T *p,
1855                                          const CHAR_T *pend,
1856                                          reg_syntax_t syntax);
1857 # ifdef WCHAR
1858 static reg_errcode_t wcs_compile_range (CHAR_T range_start,
1859                                         const CHAR_T **p_ptr,
1860                                         const CHAR_T *pend,
1861                                         char *translate,
1862                                         reg_syntax_t syntax,
1863                                         UCHAR_T *b,
1864                                         CHAR_T *char_set);
1865 static void insert_space (int num, CHAR_T *loc, CHAR_T *end);
1866 # else /* BYTE */
1867 static reg_errcode_t byte_compile_range (unsigned int range_start,
1868                                          const char **p_ptr,
1869                                          const char *pend,
1870                                          char *translate,
1871                                          reg_syntax_t syntax,
1872                                          unsigned char *b);
1873 # endif /* WCHAR */
1874
1875 /* Fetch the next character in the uncompiled pattern---translating it
1876    if necessary.  Also cast from a signed character in the constant
1877    string passed to us by the user to an unsigned char that we can use
1878    as an array index (in, e.g., `translate').  */
1879 /* ifdef MBS_SUPPORT, we translate only if character <= 0xff,
1880    because it is impossible to allocate 4GB array for some encodings
1881    which have 4 byte character_set like UCS4.  */
1882 # ifndef PATFETCH
1883 #  ifdef WCHAR
1884 #   define PATFETCH(c)                                                  \
1885   do {if (p == pend) return REG_EEND;                                   \
1886     c = (UCHAR_T) *p++;                                                 \
1887     if (translate && (c <= 0xff)) c = (UCHAR_T) translate[c];           \
1888   } while (0)
1889 #  else /* BYTE */
1890 #   define PATFETCH(c)                                                  \
1891   do {if (p == pend) return REG_EEND;                                   \
1892     c = (unsigned char) *p++;                                           \
1893     if (translate) c = (unsigned char) translate[c];                    \
1894   } while (0)
1895 #  endif /* WCHAR */
1896 # endif
1897
1898 /* Fetch the next character in the uncompiled pattern, with no
1899    translation.  */
1900 # define PATFETCH_RAW(c)                                                \
1901   do {if (p == pend) return REG_EEND;                                   \
1902     c = (UCHAR_T) *p++;                                                 \
1903   } while (0)
1904
1905 /* Go backwards one character in the pattern.  */
1906 # define PATUNFETCH p--
1907
1908
1909 /* If `translate' is non-null, return translate[D], else just D.  We
1910    cast the subscript to translate because some data is declared as
1911    `char *', to avoid warnings when a string constant is passed.  But
1912    when we use a character as a subscript we must make it unsigned.  */
1913 /* ifdef MBS_SUPPORT, we translate only if character <= 0xff,
1914    because it is impossible to allocate 4GB array for some encodings
1915    which have 4 byte character_set like UCS4.  */
1916
1917 # ifndef TRANSLATE
1918 #  ifdef WCHAR
1919 #   define TRANSLATE(d) \
1920   ((translate && ((UCHAR_T) (d)) <= 0xff) \
1921    ? (char) translate[(unsigned char) (d)] : (d))
1922 # else /* BYTE */
1923 #   define TRANSLATE(d) \
1924   (translate ? (char) translate[(unsigned char) (d)] : (d))
1925 #  endif /* WCHAR */
1926 # endif
1927
1928
1929 /* Macros for outputting the compiled pattern into `buffer'.  */
1930
1931 /* If the buffer isn't allocated when it comes in, use this.  */
1932 # define INIT_BUF_SIZE  (32 * sizeof(UCHAR_T))
1933
1934 /* Make sure we have at least N more bytes of space in buffer.  */
1935 # ifdef WCHAR
1936 #  define GET_BUFFER_SPACE(n)                                           \
1937     while (((unsigned long)b - (unsigned long)COMPILED_BUFFER_VAR       \
1938             + (n)*sizeof(CHAR_T)) > bufp->allocated)                    \
1939       EXTEND_BUFFER ()
1940 # else /* BYTE */
1941 #  define GET_BUFFER_SPACE(n)                                           \
1942     while ((unsigned long) (b - bufp->buffer + (n)) > bufp->allocated)  \
1943       EXTEND_BUFFER ()
1944 # endif /* WCHAR */
1945
1946 /* Make sure we have one more byte of buffer space and then add C to it.  */
1947 # define BUF_PUSH(c)                                                    \
1948   do {                                                                  \
1949     GET_BUFFER_SPACE (1);                                               \
1950     *b++ = (UCHAR_T) (c);                                               \
1951   } while (0)
1952
1953
1954 /* Ensure we have two more bytes of buffer space and then append C1 and C2.  */
1955 # define BUF_PUSH_2(c1, c2)                                             \
1956   do {                                                                  \
1957     GET_BUFFER_SPACE (2);                                               \
1958     *b++ = (UCHAR_T) (c1);                                              \
1959     *b++ = (UCHAR_T) (c2);                                              \
1960   } while (0)
1961
1962
1963 /* As with BUF_PUSH_2, except for three bytes.  */
1964 # define BUF_PUSH_3(c1, c2, c3)                                         \
1965   do {                                                                  \
1966     GET_BUFFER_SPACE (3);                                               \
1967     *b++ = (UCHAR_T) (c1);                                              \
1968     *b++ = (UCHAR_T) (c2);                                              \
1969     *b++ = (UCHAR_T) (c3);                                              \
1970   } while (0)
1971
1972 /* Store a jump with opcode OP at LOC to location TO.  We store a
1973    relative address offset by the three bytes the jump itself occupies.  */
1974 # define STORE_JUMP(op, loc, to) \
1975  PREFIX(store_op1) (op, loc, (int) ((to) - (loc) - (1 + OFFSET_ADDRESS_SIZE)))
1976
1977 /* Likewise, for a two-argument jump.  */
1978 # define STORE_JUMP2(op, loc, to, arg) \
1979   PREFIX(store_op2) (op, loc, (int) ((to) - (loc) - (1 + OFFSET_ADDRESS_SIZE)), arg)
1980
1981 /* Like `STORE_JUMP', but for inserting.  Assume `b' is the buffer end.  */
1982 # define INSERT_JUMP(op, loc, to) \
1983   PREFIX(insert_op1) (op, loc, (int) ((to) - (loc) - (1 + OFFSET_ADDRESS_SIZE)), b)
1984
1985 /* Like `STORE_JUMP2', but for inserting.  Assume `b' is the buffer end.  */
1986 # define INSERT_JUMP2(op, loc, to, arg) \
1987   PREFIX(insert_op2) (op, loc, (int) ((to) - (loc) - (1 + OFFSET_ADDRESS_SIZE)),\
1988               arg, b)
1989
1990 /* This is not an arbitrary limit: the arguments which represent offsets
1991    into the pattern are two bytes long.  So if 2^16 bytes turns out to
1992    be too small, many things would have to change.  */
1993 /* Any other compiler which, like MSC, has allocation limit below 2^16
1994    bytes will have to use approach similar to what was done below for
1995    MSC and drop MAX_BUF_SIZE a bit.  Otherwise you may end up
1996    reallocating to 0 bytes.  Such thing is not going to work too well.
1997    You have been warned!!  */
1998 # ifndef DEFINED_ONCE
1999 #  if defined _MSC_VER  && !defined WIN32
2000 /* Microsoft C 16-bit versions limit malloc to approx 65512 bytes.
2001    The REALLOC define eliminates a flurry of conversion warnings,
2002    but is not required. */
2003 #   define MAX_BUF_SIZE  65500L
2004 #   define REALLOC(p,s) realloc ((p), (size_t) (s))
2005 #  else
2006 #   define MAX_BUF_SIZE (1L << 16)
2007 #   define REALLOC(p,s) realloc ((p), (s))
2008 #  endif
2009
2010 /* Extend the buffer by twice its current size via realloc and
2011    reset the pointers that pointed into the old block to point to the
2012    correct places in the new one.  If extending the buffer results in it
2013    being larger than MAX_BUF_SIZE, then flag memory exhausted.  */
2014 #  if __BOUNDED_POINTERS__
2015 #   define SET_HIGH_BOUND(P) (__ptrhigh (P) = __ptrlow (P) + bufp->allocated)
2016 #   define MOVE_BUFFER_POINTER(P) \
2017   (__ptrlow (P) += incr, SET_HIGH_BOUND (P), __ptrvalue (P) += incr)
2018 #   define ELSE_EXTEND_BUFFER_HIGH_BOUND        \
2019   else                                          \
2020     {                                           \
2021       SET_HIGH_BOUND (b);                       \
2022       SET_HIGH_BOUND (begalt);                  \
2023       if (fixup_alt_jump)                       \
2024         SET_HIGH_BOUND (fixup_alt_jump);        \
2025       if (laststart)                            \
2026         SET_HIGH_BOUND (laststart);             \
2027       if (pending_exact)                        \
2028         SET_HIGH_BOUND (pending_exact);         \
2029     }
2030 #  else
2031 #   define MOVE_BUFFER_POINTER(P) (P) += incr
2032 #   define ELSE_EXTEND_BUFFER_HIGH_BOUND
2033 #  endif
2034 # endif /* not DEFINED_ONCE */
2035
2036 # ifdef WCHAR
2037 #  define EXTEND_BUFFER()                                               \
2038   do {                                                                  \
2039     UCHAR_T *old_buffer = COMPILED_BUFFER_VAR;                          \
2040     int wchar_count;                                                    \
2041     if (bufp->allocated + sizeof(UCHAR_T) > MAX_BUF_SIZE)               \
2042       return REG_ESIZE;                                                 \
2043     bufp->allocated <<= 1;                                              \
2044     if (bufp->allocated > MAX_BUF_SIZE)                                 \
2045       bufp->allocated = MAX_BUF_SIZE;                                   \
2046     /* How many characters the new buffer can have?  */                 \
2047     wchar_count = bufp->allocated / sizeof(UCHAR_T);                    \
2048     if (wchar_count == 0) wchar_count = 1;                              \
2049     /* Truncate the buffer to CHAR_T align.  */                 \
2050     bufp->allocated = wchar_count * sizeof(UCHAR_T);                    \
2051     RETALLOC (COMPILED_BUFFER_VAR, wchar_count, UCHAR_T);               \
2052     bufp->buffer = (char*)COMPILED_BUFFER_VAR;                          \
2053     if (COMPILED_BUFFER_VAR == NULL)                                    \
2054       return REG_ESPACE;                                                \
2055     /* If the buffer moved, move all the pointers into it.  */          \
2056     if (old_buffer != COMPILED_BUFFER_VAR)                              \
2057       {                                                                 \
2058         int incr = COMPILED_BUFFER_VAR - old_buffer;                    \
2059         MOVE_BUFFER_POINTER (b);                                        \
2060         MOVE_BUFFER_POINTER (begalt);                                   \
2061         if (fixup_alt_jump)                                             \
2062           MOVE_BUFFER_POINTER (fixup_alt_jump);                         \
2063         if (laststart)                                                  \
2064           MOVE_BUFFER_POINTER (laststart);                              \
2065         if (pending_exact)                                              \
2066           MOVE_BUFFER_POINTER (pending_exact);                          \
2067       }                                                                 \
2068     ELSE_EXTEND_BUFFER_HIGH_BOUND                                       \
2069   } while (0)
2070 # else /* BYTE */
2071 #  define EXTEND_BUFFER()                                               \
2072   do {                                                                  \
2073     UCHAR_T *old_buffer = COMPILED_BUFFER_VAR;                          \
2074     if (bufp->allocated == MAX_BUF_SIZE)                                \
2075       return REG_ESIZE;                                                 \
2076     bufp->allocated <<= 1;                                              \
2077     if (bufp->allocated > MAX_BUF_SIZE)                                 \
2078       bufp->allocated = MAX_BUF_SIZE;                                   \
2079     bufp->buffer = REALLOC (COMPILED_BUFFER_VAR, bufp->allocated);      \
2080     if (COMPILED_BUFFER_VAR == NULL)                                    \
2081       return REG_ESPACE;                                                \
2082     /* If the buffer moved, move all the pointers into it.  */          \
2083     if (old_buffer != COMPILED_BUFFER_VAR)                              \
2084       {                                                                 \
2085         int incr = COMPILED_BUFFER_VAR - old_buffer;                    \
2086         MOVE_BUFFER_POINTER (b);                                        \
2087         MOVE_BUFFER_POINTER (begalt);                                   \
2088         if (fixup_alt_jump)                                             \
2089           MOVE_BUFFER_POINTER (fixup_alt_jump);                         \
2090         if (laststart)                                                  \
2091           MOVE_BUFFER_POINTER (laststart);                              \
2092         if (pending_exact)                                              \
2093           MOVE_BUFFER_POINTER (pending_exact);                          \
2094       }                                                                 \
2095     ELSE_EXTEND_BUFFER_HIGH_BOUND                                       \
2096   } while (0)
2097 # endif /* WCHAR */
2098
2099 # ifndef DEFINED_ONCE
2100 /* Since we have one byte reserved for the register number argument to
2101    {start,stop}_memory, the maximum number of groups we can report
2102    things about is what fits in that byte.  */
2103 #  define MAX_REGNUM 255
2104
2105 /* But patterns can have more than `MAX_REGNUM' registers.  We just
2106    ignore the excess.  */
2107 typedef unsigned regnum_t;
2108
2109
2110 /* Macros for the compile stack.  */
2111
2112 /* Since offsets can go either forwards or backwards, this type needs to
2113    be able to hold values from -(MAX_BUF_SIZE - 1) to MAX_BUF_SIZE - 1.  */
2114 /* int may be not enough when sizeof(int) == 2.  */
2115 typedef long pattern_offset_t;
2116
2117 typedef struct
2118 {
2119   pattern_offset_t begalt_offset;
2120   pattern_offset_t fixup_alt_jump;
2121   pattern_offset_t inner_group_offset;
2122   pattern_offset_t laststart_offset;
2123   regnum_t regnum;
2124 } compile_stack_elt_t;
2125
2126
2127 typedef struct
2128 {
2129   compile_stack_elt_t *stack;
2130   unsigned size;
2131   unsigned avail;                       /* Offset of next open position.  */
2132 } compile_stack_type;
2133
2134
2135 #  define INIT_COMPILE_STACK_SIZE 32
2136
2137 #  define COMPILE_STACK_EMPTY  (compile_stack.avail == 0)
2138 #  define COMPILE_STACK_FULL  (compile_stack.avail == compile_stack.size)
2139
2140 /* The next available element.  */
2141 #  define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
2142
2143 # endif /* not DEFINED_ONCE */
2144
2145 /* Set the bit for character C in a list.  */
2146 # ifndef DEFINED_ONCE
2147 #  define SET_LIST_BIT(c)                               \
2148   (b[((unsigned char) (c)) / BYTEWIDTH]               \
2149    |= 1 << (((unsigned char) c) % BYTEWIDTH))
2150 # endif /* DEFINED_ONCE */
2151
2152 /* Get the next unsigned number in the uncompiled pattern.  */
2153 # define GET_UNSIGNED_NUMBER(num) \
2154   {                                                                     \
2155     while (p != pend)                                                   \
2156       {                                                                 \
2157         PATFETCH (c);                                                   \
2158         if (c < '0' || c > '9')                                         \
2159           break;                                                        \
2160         if (num <= RE_DUP_MAX)                                          \
2161           {                                                             \
2162             if (num < 0)                                                \
2163               num = 0;                                                  \
2164             num = num * 10 + c - '0';                                   \
2165           }                                                             \
2166       }                                                                 \
2167   }
2168
2169 # ifndef DEFINED_ONCE
2170 #  if defined _LIBC || WIDE_CHAR_SUPPORT
2171 /* The GNU C library provides support for user-defined character classes
2172    and the functions from ISO C amendement 1.  */
2173 #   ifdef CHARCLASS_NAME_MAX
2174 #    define CHAR_CLASS_MAX_LENGTH CHARCLASS_NAME_MAX
2175 #   else
2176 /* This shouldn't happen but some implementation might still have this
2177    problem.  Use a reasonable default value.  */
2178 #    define CHAR_CLASS_MAX_LENGTH 256
2179 #   endif
2180
2181 #   ifdef _LIBC
2182 #    define IS_CHAR_CLASS(string) __wctype (string)
2183 #   else
2184 #    define IS_CHAR_CLASS(string) wctype (string)
2185 #   endif
2186 #  else
2187 #   define CHAR_CLASS_MAX_LENGTH  6 /* Namely, `xdigit'.  */
2188
2189 #   define IS_CHAR_CLASS(string)                                        \
2190    (STREQ (string, "alpha") || STREQ (string, "upper")                  \
2191     || STREQ (string, "lower") || STREQ (string, "digit")               \
2192     || STREQ (string, "alnum") || STREQ (string, "xdigit")              \
2193     || STREQ (string, "space") || STREQ (string, "print")               \
2194     || STREQ (string, "punct") || STREQ (string, "graph")               \
2195     || STREQ (string, "cntrl") || STREQ (string, "blank"))
2196 #  endif
2197 # endif /* DEFINED_ONCE */
2198 \f
2199 # ifndef MATCH_MAY_ALLOCATE
2200
2201 /* If we cannot allocate large objects within re_match_2_internal,
2202    we make the fail stack and register vectors global.
2203    The fail stack, we grow to the maximum size when a regexp
2204    is compiled.
2205    The register vectors, we adjust in size each time we
2206    compile a regexp, according to the number of registers it needs.  */
2207
2208 static PREFIX(fail_stack_type) fail_stack;
2209
2210 /* Size with which the following vectors are currently allocated.
2211    That is so we can make them bigger as needed,
2212    but never make them smaller.  */
2213 #  ifdef DEFINED_ONCE
2214 static int regs_allocated_size;
2215
2216 static const char **     regstart, **     regend;
2217 static const char ** old_regstart, ** old_regend;
2218 static const char **best_regstart, **best_regend;
2219 static const char **reg_dummy;
2220 #  endif /* DEFINED_ONCE */
2221
2222 static PREFIX(register_info_type) *PREFIX(reg_info);
2223 static PREFIX(register_info_type) *PREFIX(reg_info_dummy);
2224
2225 /* Make the register vectors big enough for NUM_REGS registers,
2226    but don't make them smaller.  */
2227
2228 static void
2229 PREFIX(regex_grow_registers) (int num_regs)
2230 {
2231   if (num_regs > regs_allocated_size)
2232     {
2233       RETALLOC_IF (regstart,     num_regs, const char *);
2234       RETALLOC_IF (regend,       num_regs, const char *);
2235       RETALLOC_IF (old_regstart, num_regs, const char *);
2236       RETALLOC_IF (old_regend,   num_regs, const char *);
2237       RETALLOC_IF (best_regstart, num_regs, const char *);
2238       RETALLOC_IF (best_regend,  num_regs, const char *);
2239       RETALLOC_IF (PREFIX(reg_info), num_regs, PREFIX(register_info_type));
2240       RETALLOC_IF (reg_dummy,    num_regs, const char *);
2241       RETALLOC_IF (PREFIX(reg_info_dummy), num_regs, PREFIX(register_info_type));
2242
2243       regs_allocated_size = num_regs;
2244     }
2245 }
2246
2247 # endif /* not MATCH_MAY_ALLOCATE */
2248 \f
2249 # ifndef DEFINED_ONCE
2250 static boolean group_in_compile_stack (compile_stack_type
2251                                        compile_stack,
2252                                        regnum_t regnum);
2253 # endif /* not DEFINED_ONCE */
2254
2255 /* `regex_compile' compiles PATTERN (of length SIZE) according to SYNTAX.
2256    Returns one of error codes defined in `regex.h', or zero for success.
2257
2258    Assumes the `allocated' (and perhaps `buffer') and `translate'
2259    fields are set in BUFP on entry.
2260
2261    If it succeeds, results are put in BUFP (if it returns an error, the
2262    contents of BUFP are undefined):
2263      `buffer' is the compiled pattern;
2264      `syntax' is set to SYNTAX;
2265      `used' is set to the length of the compiled pattern;
2266      `fastmap_accurate' is zero;
2267      `re_nsub' is the number of subexpressions in PATTERN;
2268      `not_bol' and `not_eol' are zero;
2269
2270    The `fastmap' and `newline_anchor' fields are neither
2271    examined nor set.  */
2272
2273 /* Return, freeing storage we allocated.  */
2274 # ifdef WCHAR
2275 #  define FREE_STACK_RETURN(value)              \
2276   return (free(pattern), free(mbs_offset), free(is_binary), free (compile_stack.stack), value)
2277 # else
2278 #  define FREE_STACK_RETURN(value)              \
2279   return (free (compile_stack.stack), value)
2280 # endif /* WCHAR */
2281
2282 static reg_errcode_t
2283 PREFIX(regex_compile) (const char *ARG_PREFIX(pattern),
2284                        size_t ARG_PREFIX(size),
2285                        reg_syntax_t syntax,
2286                        struct re_pattern_buffer *bufp)
2287 {
2288   /* We fetch characters from PATTERN here.  Even though PATTERN is
2289      `char *' (i.e., signed), we declare these variables as unsigned, so
2290      they can be reliably used as array indices.  */
2291   register UCHAR_T c, c1;
2292
2293 #ifdef WCHAR
2294   /* A temporary space to keep wchar_t pattern and compiled pattern.  */
2295   CHAR_T *pattern, *COMPILED_BUFFER_VAR;
2296   size_t size;
2297   /* offset buffer for optimization. See convert_mbs_to_wc.  */
2298   int *mbs_offset = NULL;
2299   /* It hold whether each wchar_t is binary data or not.  */
2300   char *is_binary = NULL;
2301   /* A flag whether exactn is handling binary data or not.  */
2302   char is_exactn_bin = FALSE;
2303 #endif /* WCHAR */
2304
2305   /* A random temporary spot in PATTERN.  */
2306   const CHAR_T *p1;
2307
2308   /* Points to the end of the buffer, where we should append.  */
2309   register UCHAR_T *b;
2310
2311   /* Keeps track of unclosed groups.  */
2312   compile_stack_type compile_stack;
2313
2314   /* Points to the current (ending) position in the pattern.  */
2315 #ifdef WCHAR
2316   const CHAR_T *p;
2317   const CHAR_T *pend;
2318 #else /* BYTE */
2319   const CHAR_T *p = pattern;
2320   const CHAR_T *pend = pattern + size;
2321 #endif /* WCHAR */
2322
2323   /* How to translate the characters in the pattern.  */
2324   RE_TRANSLATE_TYPE translate = bufp->translate;
2325
2326   /* Address of the count-byte of the most recently inserted `exactn'
2327      command.  This makes it possible to tell if a new exact-match
2328      character can be added to that command or if the character requires
2329      a new `exactn' command.  */
2330   UCHAR_T *pending_exact = 0;
2331
2332   /* Address of start of the most recently finished expression.
2333      This tells, e.g., postfix * where to find the start of its
2334      operand.  Reset at the beginning of groups and alternatives.  */
2335   UCHAR_T *laststart = 0;
2336
2337   /* Address of beginning of regexp, or inside of last group.  */
2338   UCHAR_T *begalt;
2339
2340   /* Address of the place where a forward jump should go to the end of
2341      the containing expression.  Each alternative of an `or' -- except the
2342      last -- ends with a forward jump of this sort.  */
2343   UCHAR_T *fixup_alt_jump = 0;
2344
2345   /* Counts open-groups as they are encountered.  Remembered for the
2346      matching close-group on the compile stack, so the same register
2347      number is put in the stop_memory as the start_memory.  */
2348   regnum_t regnum = 0;
2349
2350 #ifdef WCHAR
2351   /* Initialize the wchar_t PATTERN and offset_buffer.  */
2352   p = pend = pattern = TALLOC(csize + 1, CHAR_T);
2353   mbs_offset = TALLOC(csize + 1, int);
2354   is_binary = TALLOC(csize + 1, char);
2355   if (pattern == NULL || mbs_offset == NULL || is_binary == NULL)
2356     {
2357       free(pattern);
2358       free(mbs_offset);
2359       free(is_binary);
2360       return REG_ESPACE;
2361     }
2362   pattern[csize] = L'\0';       /* sentinel */
2363   size = convert_mbs_to_wcs(pattern, cpattern, csize, mbs_offset, is_binary);
2364   pend = p + size;
2365   if (size < 0)
2366     {
2367       free(pattern);
2368       free(mbs_offset);
2369       free(is_binary);
2370       return REG_BADPAT;
2371     }
2372 #endif
2373
2374 #ifdef DEBUG
2375   DEBUG_PRINT1 ("\nCompiling pattern: ");
2376   if (debug)
2377     {
2378       unsigned debug_count;
2379
2380       for (debug_count = 0; debug_count < size; debug_count++)
2381         PUT_CHAR (pattern[debug_count]);
2382       putchar ('\n');
2383     }
2384 #endif /* DEBUG */
2385
2386   /* Initialize the compile stack.  */
2387   compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t);
2388   if (compile_stack.stack == NULL)
2389     {
2390 #ifdef WCHAR
2391       free(pattern);
2392       free(mbs_offset);
2393       free(is_binary);
2394 #endif
2395       return REG_ESPACE;
2396     }
2397
2398   compile_stack.size = INIT_COMPILE_STACK_SIZE;
2399   compile_stack.avail = 0;
2400
2401   /* Initialize the pattern buffer.  */
2402   bufp->syntax = syntax;
2403   bufp->fastmap_accurate = 0;
2404   bufp->not_bol = bufp->not_eol = 0;
2405
2406   /* Set `used' to zero, so that if we return an error, the pattern
2407      printer (for debugging) will think there's no pattern.  We reset it
2408      at the end.  */
2409   bufp->used = 0;
2410
2411   /* Always count groups, whether or not bufp->no_sub is set.  */
2412   bufp->re_nsub = 0;
2413
2414 #if !defined emacs && !defined SYNTAX_TABLE
2415   /* Initialize the syntax table.  */
2416    init_syntax_once ();
2417 #endif
2418
2419   if (bufp->allocated == 0)
2420     {
2421       if (bufp->buffer)
2422         { /* If zero allocated, but buffer is non-null, try to realloc
2423              enough space.  This loses if buffer's address is bogus, but
2424              that is the user's responsibility.  */
2425 #ifdef WCHAR
2426           /* Free bufp->buffer and allocate an array for wchar_t pattern
2427              buffer.  */
2428           free(bufp->buffer);
2429           COMPILED_BUFFER_VAR = TALLOC (INIT_BUF_SIZE/sizeof(UCHAR_T),
2430                                         UCHAR_T);
2431 #else
2432           RETALLOC (COMPILED_BUFFER_VAR, INIT_BUF_SIZE, UCHAR_T);
2433 #endif /* WCHAR */
2434         }
2435       else
2436         { /* Caller did not allocate a buffer.  Do it for them.  */
2437           COMPILED_BUFFER_VAR = TALLOC (INIT_BUF_SIZE / sizeof(UCHAR_T),
2438                                         UCHAR_T);
2439         }
2440
2441       if (!COMPILED_BUFFER_VAR) FREE_STACK_RETURN (REG_ESPACE);
2442 #ifdef WCHAR
2443       bufp->buffer = (char*)COMPILED_BUFFER_VAR;
2444 #endif /* WCHAR */
2445       bufp->allocated = INIT_BUF_SIZE;
2446     }
2447 #ifdef WCHAR
2448   else
2449     COMPILED_BUFFER_VAR = (UCHAR_T*) bufp->buffer;
2450 #endif
2451
2452   begalt = b = COMPILED_BUFFER_VAR;
2453
2454   /* Loop through the uncompiled pattern until we're at the end.  */
2455   while (p != pend)
2456     {
2457       PATFETCH (c);
2458
2459       switch (c)
2460         {
2461         case '^':
2462           {
2463             if (   /* If at start of pattern, it's an operator.  */
2464                    p == pattern + 1
2465                    /* If context independent, it's an operator.  */
2466                 || syntax & RE_CONTEXT_INDEP_ANCHORS
2467                    /* Otherwise, depends on what's come before.  */
2468                 || PREFIX(at_begline_loc_p) (pattern, p, syntax))
2469               BUF_PUSH (begline);
2470             else
2471               goto normal_char;
2472           }
2473           break;
2474
2475
2476         case '$':
2477           {
2478             if (   /* If at end of pattern, it's an operator.  */
2479                    p == pend
2480                    /* If context independent, it's an operator.  */
2481                 || syntax & RE_CONTEXT_INDEP_ANCHORS
2482                    /* Otherwise, depends on what's next.  */
2483                 || PREFIX(at_endline_loc_p) (p, pend, syntax))
2484                BUF_PUSH (endline);
2485              else
2486                goto normal_char;
2487            }
2488            break;
2489
2490
2491         case '+':
2492         case '?':
2493           if ((syntax & RE_BK_PLUS_QM)
2494               || (syntax & RE_LIMITED_OPS))
2495             goto normal_char;
2496         handle_plus:
2497         case '*':
2498           /* If there is no previous pattern... */
2499           if (!laststart)
2500             {
2501               if (syntax & RE_CONTEXT_INVALID_OPS)
2502                 FREE_STACK_RETURN (REG_BADRPT);
2503               else if (!(syntax & RE_CONTEXT_INDEP_OPS))
2504                 goto normal_char;
2505             }
2506
2507           {
2508             /* Are we optimizing this jump?  */
2509             boolean keep_string_p = false;
2510
2511             /* 1 means zero (many) matches is allowed.  */
2512             char zero_times_ok = 0, many_times_ok = 0;
2513
2514             /* If there is a sequence of repetition chars, collapse it
2515                down to just one (the right one).  We can't combine
2516                interval operators with these because of, e.g., `a{2}*',
2517                which should only match an even number of `a's.  */
2518
2519             for (;;)
2520               {
2521                 zero_times_ok |= c != '+';
2522                 many_times_ok |= c != '?';
2523
2524                 if (p == pend)
2525                   break;
2526
2527                 PATFETCH (c);
2528
2529                 if (c == '*'
2530                     || (!(syntax & RE_BK_PLUS_QM) && (c == '+' || c == '?')))
2531                   ;
2532
2533                 else if (syntax & RE_BK_PLUS_QM  &&  c == '\\')
2534                   {
2535                     if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
2536
2537                     PATFETCH (c1);
2538                     if (!(c1 == '+' || c1 == '?'))
2539                       {
2540                         PATUNFETCH;
2541                         PATUNFETCH;
2542                         break;
2543                       }
2544
2545                     c = c1;
2546                   }
2547                 else
2548                   {
2549                     PATUNFETCH;
2550                     break;
2551                   }
2552
2553                 /* If we get here, we found another repeat character.  */
2554                }
2555
2556             /* Star, etc. applied to an empty pattern is equivalent
2557                to an empty pattern.  */
2558             if (!laststart)
2559               break;
2560
2561             /* Now we know whether or not zero matches is allowed
2562                and also whether or not two or more matches is allowed.  */
2563             if (many_times_ok)
2564               { /* More than one repetition is allowed, so put in at the
2565                    end a backward relative jump from `b' to before the next
2566                    jump we're going to put in below (which jumps from
2567                    laststart to after this jump).
2568
2569                    But if we are at the `*' in the exact sequence `.*\n',
2570                    insert an unconditional jump backwards to the .,
2571                    instead of the beginning of the loop.  This way we only
2572                    push a failure point once, instead of every time
2573                    through the loop.  */
2574                 assert (p - 1 > pattern);
2575
2576                 /* Allocate the space for the jump.  */
2577                 GET_BUFFER_SPACE (1 + OFFSET_ADDRESS_SIZE);
2578
2579                 /* We know we are not at the first character of the pattern,
2580                    because laststart was nonzero.  And we've already
2581                    incremented `p', by the way, to be the character after
2582                    the `*'.  Do we have to do something analogous here
2583                    for null bytes, because of RE_DOT_NOT_NULL?  */
2584                 if (TRANSLATE (*(p - 2)) == TRANSLATE ('.')
2585                     && zero_times_ok
2586                     && p < pend && TRANSLATE (*p) == TRANSLATE ('\n')
2587                     && !(syntax & RE_DOT_NEWLINE))
2588                   { /* We have .*\n.  */
2589                     STORE_JUMP (jump, b, laststart);
2590                     keep_string_p = true;
2591                   }
2592                 else
2593                   /* Anything else.  */
2594                   STORE_JUMP (maybe_pop_jump, b, laststart -
2595                               (1 + OFFSET_ADDRESS_SIZE));
2596
2597                 /* We've added more stuff to the buffer.  */
2598                 b += 1 + OFFSET_ADDRESS_SIZE;
2599               }
2600
2601             /* On failure, jump from laststart to b + 3, which will be the
2602                end of the buffer after this jump is inserted.  */
2603             /* ifdef WCHAR, 'b + 1 + OFFSET_ADDRESS_SIZE' instead of
2604                'b + 3'.  */
2605             GET_BUFFER_SPACE (1 + OFFSET_ADDRESS_SIZE);
2606             INSERT_JUMP (keep_string_p ? on_failure_keep_string_jump
2607                                        : on_failure_jump,
2608                          laststart, b + 1 + OFFSET_ADDRESS_SIZE);
2609             pending_exact = 0;
2610             b += 1 + OFFSET_ADDRESS_SIZE;
2611
2612             if (!zero_times_ok)
2613               {
2614                 /* At least one repetition is required, so insert a
2615                    `dummy_failure_jump' before the initial
2616                    `on_failure_jump' instruction of the loop. This
2617                    effects a skip over that instruction the first time
2618                    we hit that loop.  */
2619                 GET_BUFFER_SPACE (1 + OFFSET_ADDRESS_SIZE);
2620                 INSERT_JUMP (dummy_failure_jump, laststart, laststart +
2621                              2 + 2 * OFFSET_ADDRESS_SIZE);
2622                 b += 1 + OFFSET_ADDRESS_SIZE;
2623               }
2624             }
2625           break;
2626
2627
2628         case '.':
2629           laststart = b;
2630           BUF_PUSH (anychar);
2631           break;
2632
2633
2634         case '[':
2635           {
2636             boolean had_char_class = false;
2637 #ifdef WCHAR
2638             CHAR_T range_start = 0xffffffff;
2639 #else
2640             unsigned int range_start = 0xffffffff;
2641 #endif
2642             if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
2643
2644 #ifdef WCHAR
2645             /* We assume a charset(_not) structure as a wchar_t array.
2646                charset[0] = (re_opcode_t) charset(_not)
2647                charset[1] = l (= length of char_classes)
2648                charset[2] = m (= length of collating_symbols)
2649                charset[3] = n (= length of equivalence_classes)
2650                charset[4] = o (= length of char_ranges)
2651                charset[5] = p (= length of chars)
2652
2653                charset[6] = char_class (wctype_t)
2654                charset[6+CHAR_CLASS_SIZE] = char_class (wctype_t)
2655                          ...
2656                charset[l+5]  = char_class (wctype_t)
2657
2658                charset[l+6]  = collating_symbol (wchar_t)
2659                             ...
2660                charset[l+m+5]  = collating_symbol (wchar_t)
2661                                         ifdef _LIBC we use the index if
2662                                         _NL_COLLATE_SYMB_EXTRAMB instead of
2663                                         wchar_t string.
2664
2665                charset[l+m+6]  = equivalence_classes (wchar_t)
2666                               ...
2667                charset[l+m+n+5]  = equivalence_classes (wchar_t)
2668                                         ifdef _LIBC we use the index in
2669                                         _NL_COLLATE_WEIGHT instead of
2670                                         wchar_t string.
2671
2672                charset[l+m+n+6] = range_start
2673                charset[l+m+n+7] = range_end
2674                                ...
2675                charset[l+m+n+2o+4] = range_start
2676                charset[l+m+n+2o+5] = range_end
2677                                         ifdef _LIBC we use the value looked up
2678                                         in _NL_COLLATE_COLLSEQ instead of
2679                                         wchar_t character.
2680
2681                charset[l+m+n+2o+6] = char
2682                                   ...
2683                charset[l+m+n+2o+p+5] = char
2684
2685              */
2686
2687             /* We need at least 6 spaces: the opcode, the length of
2688                char_classes, the length of collating_symbols, the length of
2689                equivalence_classes, the length of char_ranges, the length of
2690                chars.  */
2691             GET_BUFFER_SPACE (6);
2692
2693             /* Save b as laststart. And We use laststart as the pointer
2694                to the first element of the charset here.
2695                In other words, laststart[i] indicates charset[i].  */
2696             laststart = b;
2697
2698             /* We test `*p == '^' twice, instead of using an if
2699                statement, so we only need one BUF_PUSH.  */
2700             BUF_PUSH (*p == '^' ? charset_not : charset);
2701             if (*p == '^')
2702               p++;
2703
2704             /* Push the length of char_classes, the length of
2705                collating_symbols, the length of equivalence_classes, the
2706                length of char_ranges and the length of chars.  */
2707             BUF_PUSH_3 (0, 0, 0);
2708             BUF_PUSH_2 (0, 0);
2709
2710             /* Remember the first position in the bracket expression.  */
2711             p1 = p;
2712
2713             /* charset_not matches newline according to a syntax bit.  */
2714             if ((re_opcode_t) b[-6] == charset_not
2715                 && (syntax & RE_HAT_LISTS_NOT_NEWLINE))
2716               {
2717                 BUF_PUSH('\n');
2718                 laststart[5]++; /* Update the length of characters  */
2719               }
2720
2721             /* Read in characters and ranges, setting map bits.  */
2722             for (;;)
2723               {
2724                 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
2725
2726                 PATFETCH (c);
2727
2728                 /* \ might escape characters inside [...] and [^...].  */
2729                 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\\')
2730                   {
2731                     if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
2732
2733                     PATFETCH (c1);
2734                     BUF_PUSH(c1);
2735                     laststart[5]++; /* Update the length of chars  */
2736                     range_start = c1;
2737                     continue;
2738                   }
2739
2740                 /* Could be the end of the bracket expression.  If it's
2741                    not (i.e., when the bracket expression is `[]' so
2742                    far), the ']' character bit gets set way below.  */
2743                 if (c == ']' && p != p1 + 1)
2744                   break;
2745
2746                 /* Look ahead to see if it's a range when the last thing
2747                    was a character class.  */
2748                 if (had_char_class && c == '-' && *p != ']')
2749                   FREE_STACK_RETURN (REG_ERANGE);
2750
2751                 /* Look ahead to see if it's a range when the last thing
2752                    was a character: if this is a hyphen not at the
2753                    beginning or the end of a list, then it's the range
2754                    operator.  */
2755                 if (c == '-'
2756                     && !(p - 2 >= pattern && p[-2] == '[')
2757                     && !(p - 3 >= pattern && p[-3] == '[' && p[-2] == '^')
2758                     && *p != ']')
2759                   {
2760                     reg_errcode_t ret;
2761                     /* Allocate the space for range_start and range_end.  */
2762                     GET_BUFFER_SPACE (2);
2763                     /* Update the pointer to indicate end of buffer.  */
2764                     b += 2;
2765                     ret = wcs_compile_range (range_start, &p, pend, translate,
2766                                          syntax, b, laststart);
2767                     if (ret != REG_NOERROR) FREE_STACK_RETURN (ret);
2768                     range_start = 0xffffffff;
2769                   }
2770                 else if (p[0] == '-' && p[1] != ']')
2771                   { /* This handles ranges made up of characters only.  */
2772                     reg_errcode_t ret;
2773
2774                     /* Move past the `-'.  */
2775                     PATFETCH (c1);
2776                     /* Allocate the space for range_start and range_end.  */
2777                     GET_BUFFER_SPACE (2);
2778                     /* Update the pointer to indicate end of buffer.  */
2779                     b += 2;
2780                     ret = wcs_compile_range (c, &p, pend, translate, syntax, b,
2781                                          laststart);
2782                     if (ret != REG_NOERROR) FREE_STACK_RETURN (ret);
2783                     range_start = 0xffffffff;
2784                   }
2785
2786                 /* See if we're at the beginning of a possible character
2787                    class.  */
2788                 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == ':')
2789                   { /* Leave room for the null.  */
2790                     char str[CHAR_CLASS_MAX_LENGTH + 1];
2791
2792                     PATFETCH (c);
2793                     c1 = 0;
2794
2795                     /* If pattern is `[[:'.  */
2796                     if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
2797
2798                     for (;;)
2799                       {
2800                         PATFETCH (c);
2801                         if ((c == ':' && *p == ']') || p == pend)
2802                           break;
2803                         if (c1 < CHAR_CLASS_MAX_LENGTH)
2804                           str[c1++] = c;
2805                         else
2806                           /* This is in any case an invalid class name.  */
2807                           str[0] = '\0';
2808                       }
2809                     str[c1] = '\0';
2810
2811                     /* If isn't a word bracketed by `[:' and `:]':
2812                        undo the ending character, the letters, and leave
2813                        the leading `:' and `[' (but store them as character).  */
2814                     if (c == ':' && *p == ']')
2815                       {
2816                         wctype_t wt;
2817                         uintptr_t alignedp;
2818
2819                         /* Query the character class as wctype_t.  */
2820                         wt = IS_CHAR_CLASS (str);
2821                         if (wt == 0)
2822                           FREE_STACK_RETURN (REG_ECTYPE);
2823
2824                         /* Throw away the ] at the end of the character
2825                            class.  */
2826                         PATFETCH (c);
2827
2828                         if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
2829
2830                         /* Allocate the space for character class.  */
2831                         GET_BUFFER_SPACE(CHAR_CLASS_SIZE);
2832                         /* Update the pointer to indicate end of buffer.  */
2833                         b += CHAR_CLASS_SIZE;
2834                         /* Move data which follow character classes
2835                             not to violate the data.  */
2836                         insert_space(CHAR_CLASS_SIZE,
2837                                      laststart + 6 + laststart[1],
2838                                      b - 1);
2839                         alignedp = ((uintptr_t)(laststart + 6 + laststart[1])
2840                                     + __alignof__(wctype_t) - 1)
2841                                     & ~(uintptr_t)(__alignof__(wctype_t) - 1);
2842                         /* Store the character class.  */
2843                         *((wctype_t*)alignedp) = wt;
2844                         /* Update length of char_classes */
2845                         laststart[1] += CHAR_CLASS_SIZE;
2846
2847                         had_char_class = true;
2848                       }
2849                     else
2850                       {
2851                         c1++;
2852                         while (c1--)
2853                           PATUNFETCH;
2854                         BUF_PUSH ('[');
2855                         BUF_PUSH (':');
2856                         laststart[5] += 2; /* Update the length of characters  */
2857                         range_start = ':';
2858                         had_char_class = false;
2859                       }
2860                   }
2861                 else if (syntax & RE_CHAR_CLASSES && c == '[' && (*p == '='
2862                                                           || *p == '.'))
2863                   {
2864                     CHAR_T str[128];    /* Should be large enough.  */
2865                     CHAR_T delim = *p; /* '=' or '.'  */
2866 # ifdef _LIBC
2867                     uint32_t nrules =
2868                       _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
2869 # endif
2870                     PATFETCH (c);
2871                     c1 = 0;
2872
2873                     /* If pattern is `[[=' or '[[.'.  */
2874                     if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
2875
2876                     for (;;)
2877                       {
2878                         PATFETCH (c);
2879                         if ((c == delim && *p == ']') || p == pend)
2880                           break;
2881                         if (c1 < sizeof (str) - 1)
2882                           str[c1++] = c;
2883                         else
2884                           /* This is in any case an invalid class name.  */
2885                           str[0] = '\0';
2886                       }
2887                     str[c1] = '\0';
2888
2889                     if (c == delim && *p == ']' && str[0] != '\0')
2890                       {
2891                         unsigned int i, offset;
2892                         /* If we have no collation data we use the default
2893                            collation in which each character is in a class
2894                            by itself.  It also means that ASCII is the
2895                            character set and therefore we cannot have character
2896                            with more than one byte in the multibyte
2897                            representation.  */
2898
2899                         /* If not defined _LIBC, we push the name and
2900                            `\0' for the sake of matching performance.  */
2901                         int datasize = c1 + 1;
2902
2903 # ifdef _LIBC
2904                         int32_t idx = 0;
2905                         if (nrules == 0)
2906 # endif
2907                           {
2908                             if (c1 != 1)
2909                               FREE_STACK_RETURN (REG_ECOLLATE);
2910                           }
2911 # ifdef _LIBC
2912                         else
2913                           {
2914                             const int32_t *table;
2915                             const int32_t *weights;
2916                             const int32_t *extra;
2917                             const int32_t *indirect;
2918                             wint_t *cp;
2919
2920                             /* This #include defines a local function!  */
2921 #  include <locale/weightwc.h>
2922
2923                             if(delim == '=')
2924                               {
2925                                 /* We push the index for equivalence class.  */
2926                                 cp = (wint_t*)str;
2927
2928                                 table = (const int32_t *)
2929                                   _NL_CURRENT (LC_COLLATE,
2930                                                _NL_COLLATE_TABLEWC);
2931                                 weights = (const int32_t *)
2932                                   _NL_CURRENT (LC_COLLATE,
2933                                                _NL_COLLATE_WEIGHTWC);
2934                                 extra = (const int32_t *)
2935                                   _NL_CURRENT (LC_COLLATE,
2936                                                _NL_COLLATE_EXTRAWC);
2937                                 indirect = (const int32_t *)
2938                                   _NL_CURRENT (LC_COLLATE,
2939                                                _NL_COLLATE_INDIRECTWC);
2940
2941                                 idx = findidx ((const wint_t**)&cp);
2942                                 if (idx == 0 || cp < (wint_t*) str + c1)
2943                                   /* This is no valid character.  */
2944                                   FREE_STACK_RETURN (REG_ECOLLATE);
2945
2946                                 str[0] = (wchar_t)idx;
2947                               }
2948                             else /* delim == '.' */
2949                               {
2950                                 /* We push collation sequence value
2951                                    for collating symbol.  */
2952                                 int32_t table_size;
2953                                 const int32_t *symb_table;
2954                                 const unsigned char *extra;
2955                                 int32_t idx;
2956                                 int32_t elem;
2957                                 int32_t second;
2958                                 int32_t hash;
2959                                 char char_str[c1];
2960
2961                                 /* We have to convert the name to a single-byte
2962                                    string.  This is possible since the names
2963                                    consist of ASCII characters and the internal
2964                                    representation is UCS4.  */
2965                                 for (i = 0; i < c1; ++i)
2966                                   char_str[i] = str[i];
2967
2968                                 table_size =
2969                                   _NL_CURRENT_WORD (LC_COLLATE,
2970                                                     _NL_COLLATE_SYMB_HASH_SIZEMB);
2971                                 symb_table = (const int32_t *)
2972                                   _NL_CURRENT (LC_COLLATE,
2973                                                _NL_COLLATE_SYMB_TABLEMB);
2974                                 extra = (const unsigned char *)
2975                                   _NL_CURRENT (LC_COLLATE,
2976                                                _NL_COLLATE_SYMB_EXTRAMB);
2977
2978                                 /* Locate the character in the hashing table.  */
2979                                 hash = elem_hash (char_str, c1);
2980
2981                                 idx = 0;
2982                                 elem = hash % table_size;
2983                                 second = hash % (table_size - 2);
2984                                 while (symb_table[2 * elem] != 0)
2985                                   {
2986                                     /* First compare the hashing value.  */
2987                                     if (symb_table[2 * elem] == hash
2988                                         && c1 == extra[symb_table[2 * elem + 1]]
2989                                         && memcmp (char_str,
2990                                                    &extra[symb_table[2 * elem + 1]
2991                                                          + 1], c1) == 0)
2992                                       {
2993                                         /* Yep, this is the entry.  */
2994                                         idx = symb_table[2 * elem + 1];
2995                                         idx += 1 + extra[idx];
2996                                         break;
2997                                       }
2998
2999                                     /* Next entry.  */
3000                                     elem += second;
3001                                   }
3002
3003                                 if (symb_table[2 * elem] != 0)
3004                                   {
3005                                     /* Compute the index of the byte sequence
3006                                        in the table.  */
3007                                     idx += 1 + extra[idx];
3008                                     /* Adjust for the alignment.  */
3009                                     idx = (idx + 3) & ~3;
3010
3011                                     str[0] = (wchar_t) idx + 4;
3012                                   }
3013                                 else if (symb_table[2 * elem] == 0 && c1 == 1)
3014                                   {
3015                                     /* No valid character.  Match it as a
3016                                        single byte character.  */
3017                                     had_char_class = false;
3018                                     BUF_PUSH(str[0]);
3019                                     /* Update the length of characters  */
3020                                     laststart[5]++;
3021                                     range_start = str[0];
3022
3023                                     /* Throw away the ] at the end of the
3024                                        collating symbol.  */
3025                                     PATFETCH (c);
3026                                     /* exit from the switch block.  */
3027                                     continue;
3028                                   }
3029                                 else
3030                                   FREE_STACK_RETURN (REG_ECOLLATE);
3031                               }
3032                             datasize = 1;
3033                           }
3034 # endif
3035                         /* Throw away the ] at the end of the equivalence
3036                            class (or collating symbol).  */
3037                         PATFETCH (c);
3038
3039                         /* Allocate the space for the equivalence class
3040                            (or collating symbol) (and '\0' if needed).  */
3041                         GET_BUFFER_SPACE(datasize);
3042                         /* Update the pointer to indicate end of buffer.  */
3043                         b += datasize;
3044
3045                         if (delim == '=')
3046                           { /* equivalence class  */
3047                             /* Calculate the offset of char_ranges,
3048                                which is next to equivalence_classes.  */
3049                             offset = laststart[1] + laststart[2]
3050                               + laststart[3] +6;
3051                             /* Insert space.  */
3052                             insert_space(datasize, laststart + offset, b - 1);
3053
3054                             /* Write the equivalence_class and \0.  */
3055                             for (i = 0 ; i < datasize ; i++)
3056                               laststart[offset + i] = str[i];
3057
3058                             /* Update the length of equivalence_classes.  */
3059                             laststart[3] += datasize;
3060                             had_char_class = true;
3061                           }
3062                         else /* delim == '.' */
3063                           { /* collating symbol  */
3064                             /* Calculate the offset of the equivalence_classes,
3065                                which is next to collating_symbols.  */
3066                             offset = laststart[1] + laststart[2] + 6;
3067                             /* Insert space and write the collationg_symbol
3068                                and \0.  */
3069                             insert_space(datasize, laststart + offset, b-1);
3070                             for (i = 0 ; i < datasize ; i++)
3071                               laststart[offset + i] = str[i];
3072
3073                             /* In re_match_2_internal if range_start < -1, we
3074                                assume -range_start is the offset of the
3075                                collating symbol which is specified as
3076                                the character of the range start.  So we assign
3077                                -(laststart[1] + laststart[2] + 6) to
3078                                range_start.  */
3079                             range_start = -(laststart[1] + laststart[2] + 6);
3080                             /* Update the length of collating_symbol.  */
3081                             laststart[2] += datasize;
3082                             had_char_class = false;
3083                           }
3084                       }
3085                     else
3086                       {
3087                         c1++;
3088                         while (c1--)
3089                           PATUNFETCH;
3090                         BUF_PUSH ('[');
3091                         BUF_PUSH (delim);
3092                         laststart[5] += 2; /* Update the length of characters  */
3093                         range_start = delim;
3094                         had_char_class = false;
3095                       }
3096                   }
3097                 else
3098                   {
3099                     had_char_class = false;
3100                     BUF_PUSH(c);
3101                     laststart[5]++;  /* Update the length of characters  */
3102                     range_start = c;
3103                   }
3104               }
3105
3106 #else /* BYTE */
3107             /* Ensure that we have enough space to push a charset: the
3108                opcode, the length count, and the bitset; 34 bytes in all.  */
3109             GET_BUFFER_SPACE (34);
3110
3111             laststart = b;
3112
3113             /* We test `*p == '^' twice, instead of using an if
3114                statement, so we only need one BUF_PUSH.  */
3115             BUF_PUSH (*p == '^' ? charset_not : charset);
3116             if (*p == '^')
3117               p++;
3118
3119             /* Remember the first position in the bracket expression.  */
3120             p1 = p;
3121
3122             /* Push the number of bytes in the bitmap.  */
3123             BUF_PUSH ((1 << BYTEWIDTH) / BYTEWIDTH);
3124
3125             /* Clear the whole map.  */
3126             bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH);
3127
3128             /* charset_not matches newline according to a syntax bit.  */
3129             if ((re_opcode_t) b[-2] == charset_not
3130                 && (syntax & RE_HAT_LISTS_NOT_NEWLINE))
3131               SET_LIST_BIT ('\n');
3132
3133             /* Read in characters and ranges, setting map bits.  */
3134             for (;;)
3135               {
3136                 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
3137
3138                 PATFETCH (c);
3139
3140                 /* \ might escape characters inside [...] and [^...].  */
3141                 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\\')
3142                   {
3143                     if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
3144
3145                     PATFETCH (c1);
3146                     SET_LIST_BIT (c1);
3147                     range_start = c1;
3148                     continue;
3149                   }
3150
3151                 /* Could be the end of the bracket expression.  If it's
3152                    not (i.e., when the bracket expression is `[]' so
3153                    far), the ']' character bit gets set way below.  */
3154                 if (c == ']' && p != p1 + 1)
3155                   break;
3156
3157                 /* Look ahead to see if it's a range when the last thing
3158                    was a character class.  */
3159                 if (had_char_class && c == '-' && *p != ']')
3160                   FREE_STACK_RETURN (REG_ERANGE);
3161
3162                 /* Look ahead to see if it's a range when the last thing
3163                    was a character: if this is a hyphen not at the
3164                    beginning or the end of a list, then it's the range
3165                    operator.  */
3166                 if (c == '-'
3167                     && !(p - 2 >= pattern && p[-2] == '[')
3168                     && !(p - 3 >= pattern && p[-3] == '[' && p[-2] == '^')
3169                     && *p != ']')
3170                   {
3171                     reg_errcode_t ret
3172                       = byte_compile_range (range_start, &p, pend, translate,
3173                                             syntax, b);
3174                     if (ret != REG_NOERROR) FREE_STACK_RETURN (ret);
3175                     range_start = 0xffffffff;
3176                   }
3177
3178                 else if (p[0] == '-' && p[1] != ']')
3179                   { /* This handles ranges made up of characters only.  */
3180                     reg_errcode_t ret;
3181
3182                     /* Move past the `-'.  */
3183                     PATFETCH (c1);
3184
3185                     ret = byte_compile_range (c, &p, pend, translate, syntax, b);
3186                     if (ret != REG_NOERROR) FREE_STACK_RETURN (ret);
3187                     range_start = 0xffffffff;
3188                   }
3189
3190                 /* See if we're at the beginning of a possible character
3191                    class.  */
3192
3193                 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == ':')
3194                   { /* Leave room for the null.  */
3195                     char str[CHAR_CLASS_MAX_LENGTH + 1];
3196
3197                     PATFETCH (c);
3198                     c1 = 0;
3199
3200                     /* If pattern is `[[:'.  */
3201                     if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
3202
3203                     for (;;)
3204                       {
3205                         PATFETCH (c);
3206                         if ((c == ':' && *p == ']') || p == pend)
3207                           break;
3208                         if (c1 < CHAR_CLASS_MAX_LENGTH)
3209                           str[c1++] = c;
3210                         else
3211                           /* This is in any case an invalid class name.  */
3212                           str[0] = '\0';
3213                       }
3214                     str[c1] = '\0';
3215
3216                     /* If isn't a word bracketed by `[:' and `:]':
3217                        undo the ending character, the letters, and leave
3218                        the leading `:' and `[' (but set bits for them).  */
3219                     if (c == ':' && *p == ']')
3220                       {
3221 # if defined _LIBC || WIDE_CHAR_SUPPORT
3222                         boolean is_lower = STREQ (str, "lower");
3223                         boolean is_upper = STREQ (str, "upper");
3224                         wctype_t wt;
3225                         int ch;
3226
3227                         wt = IS_CHAR_CLASS (str);
3228                         if (wt == 0)
3229                           FREE_STACK_RETURN (REG_ECTYPE);
3230
3231                         /* Throw away the ] at the end of the character
3232                            class.  */
3233                         PATFETCH (c);
3234
3235                         if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
3236
3237                         for (ch = 0; ch < 1 << BYTEWIDTH; ++ch)
3238                           {
3239                             if (iswctype (btowc (ch), wt))
3240                               SET_LIST_BIT (ch);
3241
3242                             if (translate && (is_upper || is_lower)
3243                                 && (ISUPPER (ch) || ISLOWER (ch)))
3244                               SET_LIST_BIT (ch);
3245                           }
3246
3247                         had_char_class = true;
3248 # else
3249                         int ch;
3250                         boolean is_alnum = STREQ (str, "alnum");
3251                         boolean is_alpha = STREQ (str, "alpha");
3252                         boolean is_blank = STREQ (str, "blank");
3253                         boolean is_cntrl = STREQ (str, "cntrl");
3254                         boolean is_digit = STREQ (str, "digit");
3255                         boolean is_graph = STREQ (str, "graph");
3256                         boolean is_lower = STREQ (str, "lower");
3257                         boolean is_print = STREQ (str, "print");
3258                         boolean is_punct = STREQ (str, "punct");
3259                         boolean is_space = STREQ (str, "space");
3260                         boolean is_upper = STREQ (str, "upper");
3261                         boolean is_xdigit = STREQ (str, "xdigit");
3262
3263                         if (!IS_CHAR_CLASS (str))
3264                           FREE_STACK_RETURN (REG_ECTYPE);
3265
3266                         /* Throw away the ] at the end of the character
3267                            class.  */
3268                         PATFETCH (c);
3269
3270                         if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
3271
3272                         for (ch = 0; ch < 1 << BYTEWIDTH; ch++)
3273                           {
3274                             /* This was split into 3 if's to
3275                                avoid an arbitrary limit in some compiler.  */
3276                             if (   (is_alnum  && ISALNUM (ch))
3277                                 || (is_alpha  && ISALPHA (ch))
3278                                 || (is_blank  && ISBLANK (ch))
3279                                 || (is_cntrl  && ISCNTRL (ch)))
3280                               SET_LIST_BIT (ch);
3281                             if (   (is_digit  && ISDIGIT (ch))
3282                                 || (is_graph  && ISGRAPH (ch))
3283                                 || (is_lower  && ISLOWER (ch))
3284                                 || (is_print  && ISPRINT (ch)))
3285                               SET_LIST_BIT (ch);
3286                             if (   (is_punct  && ISPUNCT (ch))
3287                                 || (is_space  && ISSPACE (ch))
3288                                 || (is_upper  && ISUPPER (ch))
3289                                 || (is_xdigit && ISXDIGIT (ch)))
3290                               SET_LIST_BIT (ch);
3291                             if (   translate && (is_upper || is_lower)
3292                                 && (ISUPPER (ch) || ISLOWER (ch)))
3293                               SET_LIST_BIT (ch);
3294                           }
3295                         had_char_class = true;
3296 # endif /* libc || wctype.h */
3297                       }
3298                     else
3299                       {
3300                         c1++;
3301                         while (c1--)
3302                           PATUNFETCH;
3303                         SET_LIST_BIT ('[');
3304                         SET_LIST_BIT (':');
3305                         range_start = ':';
3306                         had_char_class = false;
3307                       }
3308                   }
3309                 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == '=')
3310                   {
3311                     unsigned char str[MB_LEN_MAX + 1];
3312 # ifdef _LIBC
3313                     uint32_t nrules =
3314                       _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
3315 # endif
3316
3317                     PATFETCH (c);
3318                     c1 = 0;
3319
3320                     /* If pattern is `[[='.  */
3321                     if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
3322
3323                     for (;;)
3324                       {
3325                         PATFETCH (c);
3326                         if ((c == '=' && *p == ']') || p == pend)
3327                           break;
3328                         if (c1 < MB_LEN_MAX)
3329                           str[c1++] = c;
3330                         else
3331                           /* This is in any case an invalid class name.  */
3332                           str[0] = '\0';
3333                       }
3334                     str[c1] = '\0';
3335
3336                     if (c == '=' && *p == ']' && str[0] != '\0')
3337                       {
3338                         /* If we have no collation data we use the default
3339                            collation in which each character is in a class
3340                            by itself.  It also means that ASCII is the
3341                            character set and therefore we cannot have character
3342                            with more than one byte in the multibyte
3343                            representation.  */
3344 # ifdef _LIBC
3345                         if (nrules == 0)
3346 # endif
3347                           {
3348                             if (c1 != 1)
3349                               FREE_STACK_RETURN (REG_ECOLLATE);
3350
3351                             /* Throw away the ] at the end of the equivalence
3352                                class.  */
3353                             PATFETCH (c);
3354
3355                             /* Set the bit for the character.  */
3356                             SET_LIST_BIT (str[0]);
3357                           }
3358 # ifdef _LIBC
3359                         else
3360                           {
3361                             /* Try to match the byte sequence in `str' against
3362                                those known to the collate implementation.
3363                                First find out whether the bytes in `str' are
3364                                actually from exactly one character.  */
3365                             const int32_t *table;
3366                             const unsigned char *weights;
3367                             const unsigned char *extra;
3368                             const int32_t *indirect;
3369                             int32_t idx;
3370                             const unsigned char *cp = str;
3371                             int ch;
3372
3373                             /* This #include defines a local function!  */
3374 #  include <locale/weight.h>
3375
3376                             table = (const int32_t *)
3377                               _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEMB);
3378                             weights = (const unsigned char *)
3379                               _NL_CURRENT (LC_COLLATE, _NL_COLLATE_WEIGHTMB);
3380                             extra = (const unsigned char *)
3381                               _NL_CURRENT (LC_COLLATE, _NL_COLLATE_EXTRAMB);
3382                             indirect = (const int32_t *)
3383                               _NL_CURRENT (LC_COLLATE, _NL_COLLATE_INDIRECTMB);
3384
3385                             idx = findidx (&cp);
3386                             if (idx == 0 || cp < str + c1)
3387                               /* This is no valid character.  */
3388                               FREE_STACK_RETURN (REG_ECOLLATE);
3389
3390                             /* Throw away the ] at the end of the equivalence
3391                                class.  */
3392                             PATFETCH (c);
3393
3394                             /* Now we have to go throught the whole table
3395                                and find all characters which have the same
3396                                first level weight.
3397
3398                                XXX Note that this is not entirely correct.
3399                                we would have to match multibyte sequences
3400                                but this is not possible with the current
3401                                implementation.  */
3402                             for (ch = 1; ch < 256; ++ch)
3403                               /* XXX This test would have to be changed if we
3404                                  would allow matching multibyte sequences.  */
3405                               if (table[ch] > 0)
3406                                 {
3407                                   int32_t idx2 = table[ch];
3408                                   size_t len = weights[idx2];
3409
3410                                   /* Test whether the lenghts match.  */
3411                                   if (weights[idx] == len)
3412                                     {
3413                                       /* They do.  New compare the bytes of
3414                                          the weight.  */
3415                                       size_t cnt = 0;
3416
3417                                       while (cnt < len
3418                                              && (weights[idx + 1 + cnt]
3419                                                  == weights[idx2 + 1 + cnt]))
3420                                         ++cnt;
3421
3422                                       if (cnt == len)
3423                                         /* They match.  Mark the character as
3424                                            acceptable.  */
3425                                         SET_LIST_BIT (ch);
3426                                     }
3427                                 }
3428                           }
3429 # endif
3430                         had_char_class = true;
3431                       }
3432                     else
3433                       {
3434                         c1++;
3435                         while (c1--)
3436                           PATUNFETCH;
3437                         SET_LIST_BIT ('[');
3438                         SET_LIST_BIT ('=');
3439                         range_start = '=';
3440                         had_char_class = false;
3441                       }
3442                   }
3443                 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == '.')
3444                   {
3445                     unsigned char str[128];     /* Should be large enough.  */
3446 # ifdef _LIBC
3447                     uint32_t nrules =
3448                       _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
3449 # endif
3450
3451                     PATFETCH (c);
3452                     c1 = 0;
3453
3454                     /* If pattern is `[[.'.  */
3455                     if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
3456
3457                     for (;;)
3458                       {
3459                         PATFETCH (c);
3460                         if ((c == '.' && *p == ']') || p == pend)
3461                           break;
3462                         if (c1 < sizeof (str))
3463                           str[c1++] = c;
3464                         else
3465                           /* This is in any case an invalid class name.  */
3466                           str[0] = '\0';
3467                       }
3468                     str[c1] = '\0';
3469
3470                     if (c == '.' && *p == ']' && str[0] != '\0')
3471                       {
3472                         /* If we have no collation data we use the default
3473                            collation in which each character is the name
3474                            for its own class which contains only the one
3475                            character.  It also means that ASCII is the
3476                            character set and therefore we cannot have character
3477                            with more than one byte in the multibyte
3478                            representation.  */
3479 # ifdef _LIBC
3480                         if (nrules == 0)
3481 # endif
3482                           {
3483                             if (c1 != 1)
3484                               FREE_STACK_RETURN (REG_ECOLLATE);
3485
3486                             /* Throw away the ] at the end of the equivalence
3487                                class.  */
3488                             PATFETCH (c);
3489
3490                             /* Set the bit for the character.  */
3491                             SET_LIST_BIT (str[0]);
3492                             range_start = ((const unsigned char *) str)[0];
3493                           }
3494 # ifdef _LIBC
3495                         else
3496                           {
3497                             /* Try to match the byte sequence in `str' against
3498                                those known to the collate implementation.
3499                                First find out whether the bytes in `str' are
3500                                actually from exactly one character.  */
3501                             int32_t table_size;
3502                             const int32_t *symb_table;
3503                             const unsigned char *extra;
3504                             int32_t idx;
3505                             int32_t elem;
3506                             int32_t second;
3507                             int32_t hash;
3508
3509                             table_size =
3510                               _NL_CURRENT_WORD (LC_COLLATE,
3511                                                 _NL_COLLATE_SYMB_HASH_SIZEMB);
3512                             symb_table = (const int32_t *)
3513                               _NL_CURRENT (LC_COLLATE,
3514                                            _NL_COLLATE_SYMB_TABLEMB);
3515                             extra = (const unsigned char *)
3516                               _NL_CURRENT (LC_COLLATE,
3517                                            _NL_COLLATE_SYMB_EXTRAMB);
3518
3519                             /* Locate the character in the hashing table.  */
3520                             hash = elem_hash (str, c1);
3521
3522                             idx = 0;
3523                             elem = hash % table_size;
3524                             second = hash % (table_size - 2);
3525                             while (symb_table[2 * elem] != 0)
3526                               {
3527                                 /* First compare the hashing value.  */
3528                                 if (symb_table[2 * elem] == hash
3529                                     && c1 == extra[symb_table[2 * elem + 1]]
3530                                     && memcmp (str,
3531                                                &extra[symb_table[2 * elem + 1]
3532                                                      + 1],
3533                                                c1) == 0)
3534                                   {
3535                                     /* Yep, this is the entry.  */
3536                                     idx = symb_table[2 * elem + 1];
3537                                     idx += 1 + extra[idx];
3538                                     break;
3539                                   }
3540
3541                                 /* Next entry.  */
3542                                 elem += second;
3543                               }
3544
3545                             if (symb_table[2 * elem] == 0)
3546                               /* This is no valid character.  */
3547                               FREE_STACK_RETURN (REG_ECOLLATE);
3548
3549                             /* Throw away the ] at the end of the equivalence
3550                                class.  */
3551                             PATFETCH (c);
3552
3553                             /* Now add the multibyte character(s) we found
3554                                to the accept list.
3555
3556                                XXX Note that this is not entirely correct.
3557                                we would have to match multibyte sequences
3558                                but this is not possible with the current
3559                                implementation.  Also, we have to match
3560                                collating symbols, which expand to more than
3561                                one file, as a whole and not allow the
3562                                individual bytes.  */
3563                             c1 = extra[idx++];
3564                             if (c1 == 1)
3565                               range_start = extra[idx];
3566                             while (c1-- > 0)
3567                               {
3568                                 SET_LIST_BIT (extra[idx]);
3569                                 ++idx;
3570                               }
3571                           }
3572 # endif
3573                         had_char_class = false;
3574                       }
3575                     else
3576                       {
3577                         c1++;
3578                         while (c1--)
3579                           PATUNFETCH;
3580                         SET_LIST_BIT ('[');
3581                         SET_LIST_BIT ('.');
3582                         range_start = '.';
3583                         had_char_class = false;
3584                       }
3585                   }
3586                 else
3587                   {
3588                     had_char_class = false;
3589                     SET_LIST_BIT (c);
3590                     range_start = c;
3591                   }
3592               }
3593
3594             /* Discard any (non)matching list bytes that are all 0 at the
3595                end of the map.  Decrease the map-length byte too.  */
3596             while ((int) b[-1] > 0 && b[b[-1] - 1] == 0)
3597               b[-1]--;
3598             b += b[-1];
3599 #endif /* WCHAR */
3600           }
3601           break;
3602
3603
3604         case '(':
3605           if (syntax & RE_NO_BK_PARENS)
3606             goto handle_open;
3607           else
3608             goto normal_char;
3609
3610
3611         case ')':
3612           if (syntax & RE_NO_BK_PARENS)
3613             goto handle_close;
3614           else
3615             goto normal_char;
3616
3617
3618         case '\n':
3619           if (syntax & RE_NEWLINE_ALT)
3620             goto handle_alt;
3621           else
3622             goto normal_char;
3623
3624
3625         case '|':
3626           if (syntax & RE_NO_BK_VBAR)
3627             goto handle_alt;
3628           else
3629             goto normal_char;
3630
3631
3632         case '{':
3633            if (syntax & RE_INTERVALS && syntax & RE_NO_BK_BRACES)
3634              goto handle_interval;
3635            else
3636              goto normal_char;
3637
3638
3639         case '\\':
3640           if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
3641
3642           /* Do not translate the character after the \, so that we can
3643              distinguish, e.g., \B from \b, even if we normally would
3644              translate, e.g., B to b.  */
3645           PATFETCH_RAW (c);
3646
3647           switch (c)
3648             {
3649             case '(':
3650               if (syntax & RE_NO_BK_PARENS)
3651                 goto normal_backslash;
3652
3653             handle_open:
3654               bufp->re_nsub++;
3655               regnum++;
3656
3657               if (COMPILE_STACK_FULL)
3658                 {
3659                   RETALLOC (compile_stack.stack, compile_stack.size << 1,
3660                             compile_stack_elt_t);
3661                   if (compile_stack.stack == NULL) return REG_ESPACE;
3662
3663                   compile_stack.size <<= 1;
3664                 }
3665
3666               /* These are the values to restore when we hit end of this
3667                  group.  They are all relative offsets, so that if the
3668                  whole pattern moves because of realloc, they will still
3669                  be valid.  */
3670               COMPILE_STACK_TOP.begalt_offset = begalt - COMPILED_BUFFER_VAR;
3671               COMPILE_STACK_TOP.fixup_alt_jump
3672                 = fixup_alt_jump ? fixup_alt_jump - COMPILED_BUFFER_VAR + 1 : 0;
3673               COMPILE_STACK_TOP.laststart_offset = b - COMPILED_BUFFER_VAR;
3674               COMPILE_STACK_TOP.regnum = regnum;
3675
3676               /* We will eventually replace the 0 with the number of
3677                  groups inner to this one.  But do not push a
3678                  start_memory for groups beyond the last one we can
3679                  represent in the compiled pattern.  */
3680               if (regnum <= MAX_REGNUM)
3681                 {
3682                   COMPILE_STACK_TOP.inner_group_offset = b
3683                     - COMPILED_BUFFER_VAR + 2;
3684                   BUF_PUSH_3 (start_memory, regnum, 0);
3685                 }
3686
3687               compile_stack.avail++;
3688
3689               fixup_alt_jump = 0;
3690               laststart = 0;
3691               begalt = b;
3692               /* If we've reached MAX_REGNUM groups, then this open
3693                  won't actually generate any code, so we'll have to
3694                  clear pending_exact explicitly.  */
3695               pending_exact = 0;
3696               break;
3697
3698
3699             case ')':
3700               if (syntax & RE_NO_BK_PARENS) goto normal_backslash;
3701
3702               if (COMPILE_STACK_EMPTY)
3703                 {
3704                   if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
3705                     goto normal_backslash;
3706                   else
3707                     FREE_STACK_RETURN (REG_ERPAREN);
3708                 }
3709
3710             handle_close:
3711               if (fixup_alt_jump)
3712                 { /* Push a dummy failure point at the end of the
3713                      alternative for a possible future
3714                      `pop_failure_jump' to pop.  See comments at
3715                      `push_dummy_failure' in `re_match_2'.  */
3716                   BUF_PUSH (push_dummy_failure);
3717
3718                   /* We allocated space for this jump when we assigned
3719                      to `fixup_alt_jump', in the `handle_alt' case below.  */
3720                   STORE_JUMP (jump_past_alt, fixup_alt_jump, b - 1);
3721                 }
3722
3723               /* See similar code for backslashed left paren above.  */
3724               if (COMPILE_STACK_EMPTY)
3725                 {
3726                   if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
3727                     goto normal_char;
3728                   else
3729                     FREE_STACK_RETURN (REG_ERPAREN);
3730                 }
3731
3732               /* Since we just checked for an empty stack above, this
3733                  ``can't happen''.  */
3734               assert (compile_stack.avail != 0);
3735               {
3736                 /* We don't just want to restore into `regnum', because
3737                    later groups should continue to be numbered higher,
3738                    as in `(ab)c(de)' -- the second group is #2.  */
3739                 regnum_t this_group_regnum;
3740
3741                 compile_stack.avail--;
3742                 begalt = COMPILED_BUFFER_VAR + COMPILE_STACK_TOP.begalt_offset;
3743                 fixup_alt_jump
3744                   = COMPILE_STACK_TOP.fixup_alt_jump
3745                     ? COMPILED_BUFFER_VAR + COMPILE_STACK_TOP.fixup_alt_jump - 1
3746                     : 0;
3747                 laststart = COMPILED_BUFFER_VAR + COMPILE_STACK_TOP.laststart_offset;
3748                 this_group_regnum = COMPILE_STACK_TOP.regnum;
3749                 /* If we've reached MAX_REGNUM groups, then this open
3750                    won't actually generate any code, so we'll have to
3751                    clear pending_exact explicitly.  */
3752                 pending_exact = 0;
3753
3754                 /* We're at the end of the group, so now we know how many
3755                    groups were inside this one.  */
3756                 if (this_group_regnum <= MAX_REGNUM)
3757                   {
3758                     UCHAR_T *inner_group_loc
3759                       = COMPILED_BUFFER_VAR + COMPILE_STACK_TOP.inner_group_offset;
3760
3761                     *inner_group_loc = regnum - this_group_regnum;
3762                     BUF_PUSH_3 (stop_memory, this_group_regnum,
3763                                 regnum - this_group_regnum);
3764                   }
3765               }
3766               break;
3767
3768
3769             case '|':                                   /* `\|'.  */
3770               if (syntax & RE_LIMITED_OPS || syntax & RE_NO_BK_VBAR)
3771                 goto normal_backslash;
3772             handle_alt:
3773               if (syntax & RE_LIMITED_OPS)
3774                 goto normal_char;
3775
3776               /* Insert before the previous alternative a jump which
3777                  jumps to this alternative if the former fails.  */
3778               GET_BUFFER_SPACE (1 + OFFSET_ADDRESS_SIZE);
3779               INSERT_JUMP (on_failure_jump, begalt,
3780                            b + 2 + 2 * OFFSET_ADDRESS_SIZE);
3781               pending_exact = 0;
3782               b += 1 + OFFSET_ADDRESS_SIZE;
3783
3784               /* The alternative before this one has a jump after it
3785                  which gets executed if it gets matched.  Adjust that
3786                  jump so it will jump to this alternative's analogous
3787                  jump (put in below, which in turn will jump to the next
3788                  (if any) alternative's such jump, etc.).  The last such
3789                  jump jumps to the correct final destination.  A picture:
3790                           _____ _____
3791                           |   | |   |
3792                           |   v |   v
3793                          a | b   | c
3794
3795                  If we are at `b', then fixup_alt_jump right now points to a
3796                  three-byte space after `a'.  We'll put in the jump, set
3797                  fixup_alt_jump to right after `b', and leave behind three
3798                  bytes which we'll fill in when we get to after `c'.  */
3799
3800               if (fixup_alt_jump)
3801                 STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
3802
3803               /* Mark and leave space for a jump after this alternative,
3804                  to be filled in later either by next alternative or
3805                  when know we're at the end of a series of alternatives.  */
3806               fixup_alt_jump = b;
3807               GET_BUFFER_SPACE (1 + OFFSET_ADDRESS_SIZE);
3808               b += 1 + OFFSET_ADDRESS_SIZE;
3809
3810               laststart = 0;
3811               begalt = b;
3812               break;
3813
3814
3815             case '{':
3816               /* If \{ is a literal.  */
3817               if (!(syntax & RE_INTERVALS)
3818                      /* If we're at `\{' and it's not the open-interval
3819                         operator.  */
3820                   || (syntax & RE_NO_BK_BRACES))
3821                 goto normal_backslash;
3822
3823             handle_interval:
3824               {
3825                 /* If got here, then the syntax allows intervals.  */
3826
3827                 /* At least (most) this many matches must be made.  */
3828                 int lower_bound = -1, upper_bound = -1;
3829
3830                 /* Place in the uncompiled pattern (i.e., just after
3831                    the '{') to go back to if the interval is invalid.  */
3832                 const CHAR_T *beg_interval = p;
3833
3834                 if (p == pend)
3835                   goto invalid_interval;
3836
3837                 GET_UNSIGNED_NUMBER (lower_bound);
3838
3839                 if (c == ',')
3840                   {
3841                     GET_UNSIGNED_NUMBER (upper_bound);
3842                     if (upper_bound < 0)
3843                       upper_bound = RE_DUP_MAX;
3844                   }
3845                 else
3846                   /* Interval such as `{1}' => match exactly once. */
3847                   upper_bound = lower_bound;
3848
3849                 if (! (0 <= lower_bound && lower_bound <= upper_bound))
3850                   goto invalid_interval;
3851
3852                 if (!(syntax & RE_NO_BK_BRACES))
3853                   {
3854                     if (c != '\\' || p == pend)
3855                       goto invalid_interval;
3856                     PATFETCH (c);
3857                   }
3858
3859                 if (c != '}')
3860                   goto invalid_interval;
3861
3862                 /* If it's invalid to have no preceding re.  */
3863                 if (!laststart)
3864                   {
3865                     if (syntax & RE_CONTEXT_INVALID_OPS
3866                         && !(syntax & RE_INVALID_INTERVAL_ORD))
3867                       FREE_STACK_RETURN (REG_BADRPT);
3868                     else if (syntax & RE_CONTEXT_INDEP_OPS)
3869                       laststart = b;
3870                     else
3871                       goto unfetch_interval;
3872                   }
3873
3874                 /* We just parsed a valid interval.  */
3875
3876                 if (RE_DUP_MAX < upper_bound)
3877                   FREE_STACK_RETURN (REG_BADBR);
3878
3879                 /* If the upper bound is zero, don't want to succeed at
3880                    all; jump from `laststart' to `b + 3', which will be
3881                    the end of the buffer after we insert the jump.  */
3882                 /* ifdef WCHAR, 'b + 1 + OFFSET_ADDRESS_SIZE'
3883                    instead of 'b + 3'.  */
3884                  if (upper_bound == 0)
3885                    {
3886                      GET_BUFFER_SPACE (1 + OFFSET_ADDRESS_SIZE);
3887                      INSERT_JUMP (jump, laststart, b + 1
3888                                   + OFFSET_ADDRESS_SIZE);
3889                      b += 1 + OFFSET_ADDRESS_SIZE;
3890                    }
3891
3892                  /* Otherwise, we have a nontrivial interval.  When
3893                     we're all done, the pattern will look like:
3894                       set_number_at <jump count> <upper bound>
3895                       set_number_at <succeed_n count> <lower bound>
3896                       succeed_n <after jump addr> <succeed_n count>
3897                       <body of loop>
3898                       jump_n <succeed_n addr> <jump count>
3899                     (The upper bound and `jump_n' are omitted if
3900                     `upper_bound' is 1, though.)  */
3901                  else
3902                    { /* If the upper bound is > 1, we need to insert
3903                         more at the end of the loop.  */
3904                      unsigned nbytes = 2 + 4 * OFFSET_ADDRESS_SIZE +
3905                        (upper_bound > 1) * (2 + 4 * OFFSET_ADDRESS_SIZE);
3906
3907                      GET_BUFFER_SPACE (nbytes);
3908
3909                      /* Initialize lower bound of the `succeed_n', even
3910                         though it will be set during matching by its
3911                         attendant `set_number_at' (inserted next),
3912                         because `re_compile_fastmap' needs to know.
3913                         Jump to the `jump_n' we might insert below.  */
3914                      INSERT_JUMP2 (succeed_n, laststart,
3915                                    b + 1 + 2 * OFFSET_ADDRESS_SIZE
3916                                    + (upper_bound > 1) * (1 + 2 * OFFSET_ADDRESS_SIZE)
3917                                    , lower_bound);
3918                      b += 1 + 2 * OFFSET_ADDRESS_SIZE;
3919
3920                      /* Code to initialize the lower bound.  Insert
3921                         before the `succeed_n'.  The `5' is the last two
3922                         bytes of this `set_number_at', plus 3 bytes of
3923                         the following `succeed_n'.  */
3924                      /* ifdef WCHAR, The '1+2*OFFSET_ADDRESS_SIZE'
3925                         is the 'set_number_at', plus '1+OFFSET_ADDRESS_SIZE'
3926                         of the following `succeed_n'.  */
3927                      PREFIX(insert_op2) (set_number_at, laststart, 1
3928                                  + 2 * OFFSET_ADDRESS_SIZE, lower_bound, b);
3929                      b += 1 + 2 * OFFSET_ADDRESS_SIZE;
3930
3931                      if (upper_bound > 1)
3932                        { /* More than one repetition is allowed, so
3933                             append a backward jump to the `succeed_n'
3934                             that starts this interval.
3935
3936                             When we've reached this during matching,
3937                             we'll have matched the interval once, so
3938                             jump back only `upper_bound - 1' times.  */
3939                          STORE_JUMP2 (jump_n, b, laststart
3940                                       + 2 * OFFSET_ADDRESS_SIZE + 1,
3941                                       upper_bound - 1);
3942                          b += 1 + 2 * OFFSET_ADDRESS_SIZE;
3943
3944                          /* The location we want to set is the second
3945                             parameter of the `jump_n'; that is `b-2' as
3946                             an absolute address.  `laststart' will be
3947                             the `set_number_at' we're about to insert;
3948                             `laststart+3' the number to set, the source
3949                             for the relative address.  But we are
3950                             inserting into the middle of the pattern --
3951                             so everything is getting moved up by 5.
3952                             Conclusion: (b - 2) - (laststart + 3) + 5,
3953                             i.e., b - laststart.
3954
3955                             We insert this at the beginning of the loop
3956                             so that if we fail during matching, we'll
3957                             reinitialize the bounds.  */
3958                          PREFIX(insert_op2) (set_number_at, laststart,
3959                                              b - laststart,
3960                                              upper_bound - 1, b);
3961                          b += 1 + 2 * OFFSET_ADDRESS_SIZE;
3962                        }
3963                    }
3964                 pending_exact = 0;
3965                 break;
3966
3967               invalid_interval:
3968                 if (!(syntax & RE_INVALID_INTERVAL_ORD))
3969                   FREE_STACK_RETURN (p == pend ? REG_EBRACE : REG_BADBR);
3970               unfetch_interval:
3971                 /* Match the characters as literals.  */
3972                 p = beg_interval;
3973                 c = '{';
3974                 if (syntax & RE_NO_BK_BRACES)
3975                   goto normal_char;
3976                 else
3977                   goto normal_backslash;
3978               }
3979
3980 #ifdef emacs
3981             /* There is no way to specify the before_dot and after_dot
3982                operators.  rms says this is ok.  --karl  */
3983             case '=':
3984               BUF_PUSH (at_dot);
3985               break;
3986
3987             case 's':
3988               laststart = b;
3989               PATFETCH (c);
3990               BUF_PUSH_2 (syntaxspec, syntax_spec_code[c]);
3991               break;
3992
3993             case 'S':
3994               laststart = b;
3995               PATFETCH (c);
3996               BUF_PUSH_2 (notsyntaxspec, syntax_spec_code[c]);
3997               break;
3998 #endif /* emacs */
3999
4000
4001             case 'w':
4002               if (syntax & RE_NO_GNU_OPS)
4003                 goto normal_char;
4004               laststart = b;
4005               BUF_PUSH (wordchar);
4006               break;
4007
4008
4009             case 'W':
4010               if (syntax & RE_NO_GNU_OPS)
4011                 goto normal_char;
4012               laststart = b;
4013               BUF_PUSH (notwordchar);
4014               break;
4015
4016
4017             case '<':
4018               if (syntax & RE_NO_GNU_OPS)
4019                 goto normal_char;
4020               BUF_PUSH (wordbeg);
4021               break;
4022
4023             case '>':
4024               if (syntax & RE_NO_GNU_OPS)
4025                 goto normal_char;
4026               BUF_PUSH (wordend);
4027               break;
4028
4029             case 'b':
4030               if (syntax & RE_NO_GNU_OPS)
4031                 goto normal_char;
4032               BUF_PUSH (wordbound);
4033               break;
4034
4035             case 'B':
4036               if (syntax & RE_NO_GNU_OPS)
4037                 goto normal_char;
4038               BUF_PUSH (notwordbound);
4039               break;
4040
4041             case '`':
4042               if (syntax & RE_NO_GNU_OPS)
4043                 goto normal_char;
4044               BUF_PUSH (begbuf);
4045               break;
4046
4047             case '\'':
4048               if (syntax & RE_NO_GNU_OPS)
4049                 goto normal_char;
4050               BUF_PUSH (endbuf);
4051               break;
4052
4053             case '1': case '2': case '3': case '4': case '5':
4054             case '6': case '7': case '8': case '9':
4055               if (syntax & RE_NO_BK_REFS)
4056                 goto normal_char;
4057
4058               c1 = c - '0';
4059
4060               if (c1 > regnum)
4061                 FREE_STACK_RETURN (REG_ESUBREG);
4062
4063               /* Can't back reference to a subexpression if inside of it.  */
4064               if (group_in_compile_stack (compile_stack, (regnum_t) c1))
4065                 goto normal_char;
4066
4067               laststart = b;
4068               BUF_PUSH_2 (duplicate, c1);
4069               break;
4070
4071
4072             case '+':
4073             case '?':
4074               if (syntax & RE_BK_PLUS_QM)
4075                 goto handle_plus;
4076               else
4077                 goto normal_backslash;
4078
4079             default:
4080             normal_backslash:
4081               /* You might think it would be useful for \ to mean
4082                  not to translate; but if we don't translate it
4083                  it will never match anything.  */
4084               c = TRANSLATE (c);
4085               goto normal_char;
4086             }
4087           break;
4088
4089
4090         default:
4091         /* Expects the character in `c'.  */
4092         normal_char:
4093               /* If no exactn currently being built.  */
4094           if (!pending_exact
4095 #ifdef WCHAR
4096               /* If last exactn handle binary(or character) and
4097                  new exactn handle character(or binary).  */
4098               || is_exactn_bin != is_binary[p - 1 - pattern]
4099 #endif /* WCHAR */
4100
4101               /* If last exactn not at current position.  */
4102               || pending_exact + *pending_exact + 1 != b
4103
4104               /* We have only one byte following the exactn for the count.  */
4105               || *pending_exact == (1 << BYTEWIDTH) - 1
4106
4107               /* If followed by a repetition operator.  */
4108               || *p == '*' || *p == '^'
4109               || ((syntax & RE_BK_PLUS_QM)
4110                   ? *p == '\\' && (p[1] == '+' || p[1] == '?')
4111                   : (*p == '+' || *p == '?'))
4112               || ((syntax & RE_INTERVALS)
4113                   && ((syntax & RE_NO_BK_BRACES)
4114                       ? *p == '{'
4115                       : (p[0] == '\\' && p[1] == '{'))))
4116             {
4117               /* Start building a new exactn.  */
4118
4119               laststart = b;
4120
4121 #ifdef WCHAR
4122               /* Is this exactn binary data or character? */
4123               is_exactn_bin = is_binary[p - 1 - pattern];
4124               if (is_exactn_bin)
4125                   BUF_PUSH_2 (exactn_bin, 0);
4126               else
4127                   BUF_PUSH_2 (exactn, 0);
4128 #else
4129               BUF_PUSH_2 (exactn, 0);
4130 #endif /* WCHAR */
4131               pending_exact = b - 1;
4132             }
4133
4134           BUF_PUSH (c);
4135           (*pending_exact)++;
4136           break;
4137         } /* switch (c) */
4138     } /* while p != pend */
4139
4140
4141   /* Through the pattern now.  */
4142
4143   if (fixup_alt_jump)
4144     STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
4145
4146   if (!COMPILE_STACK_EMPTY)
4147     FREE_STACK_RETURN (REG_EPAREN);
4148
4149   /* If we don't want backtracking, force success
4150      the first time we reach the end of the compiled pattern.  */
4151   if (syntax & RE_NO_POSIX_BACKTRACKING)
4152     BUF_PUSH (succeed);
4153
4154 #ifdef WCHAR
4155   free (pattern);
4156   free (mbs_offset);
4157   free (is_binary);
4158 #endif
4159   free (compile_stack.stack);
4160
4161   /* We have succeeded; set the length of the buffer.  */
4162 #ifdef WCHAR
4163   bufp->used = (uintptr_t) b - (uintptr_t) COMPILED_BUFFER_VAR;
4164 #else
4165   bufp->used = b - bufp->buffer;
4166 #endif
4167
4168 #ifdef DEBUG
4169   if (debug)
4170     {
4171       DEBUG_PRINT1 ("\nCompiled pattern: \n");
4172       PREFIX(print_compiled_pattern) (bufp);
4173     }
4174 #endif /* DEBUG */
4175
4176 #ifndef MATCH_MAY_ALLOCATE
4177   /* Initialize the failure stack to the largest possible stack.  This
4178      isn't necessary unless we're trying to avoid calling alloca in
4179      the search and match routines.  */
4180   {
4181     int num_regs = bufp->re_nsub + 1;
4182
4183     /* Since DOUBLE_FAIL_STACK refuses to double only if the current size
4184        is strictly greater than re_max_failures, the largest possible stack
4185        is 2 * re_max_failures failure points.  */
4186     if (fail_stack.size < (2 * re_max_failures * MAX_FAILURE_ITEMS))
4187       {
4188         fail_stack.size = (2 * re_max_failures * MAX_FAILURE_ITEMS);
4189
4190 # ifdef emacs
4191         if (! fail_stack.stack)
4192           fail_stack.stack
4193             = (PREFIX(fail_stack_elt_t) *) xmalloc (fail_stack.size
4194                                     * sizeof (PREFIX(fail_stack_elt_t)));
4195         else
4196           fail_stack.stack
4197             = (PREFIX(fail_stack_elt_t) *) xrealloc (fail_stack.stack,
4198                                      (fail_stack.size
4199                                       * sizeof (PREFIX(fail_stack_elt_t))));
4200 # else /* not emacs */
4201         if (! fail_stack.stack)
4202           fail_stack.stack
4203             = malloc (fail_stack.size * sizeof (PREFIX(fail_stack_elt_t)));
4204         else
4205           fail_stack.stack
4206             = realloc (fail_stack.stack,
4207                        fail_stack.size * sizeof (PREFIX(fail_stack_elt_t)));
4208 # endif /* not emacs */
4209       }
4210
4211    PREFIX(regex_grow_registers) (num_regs);
4212   }
4213 #endif /* not MATCH_MAY_ALLOCATE */
4214
4215   return REG_NOERROR;
4216 } /* regex_compile */
4217
4218 /* Subroutines for `regex_compile'.  */
4219
4220 /* Store OP at LOC followed by two-byte integer parameter ARG.  */
4221 /* ifdef WCHAR, integer parameter is 1 wchar_t.  */
4222
4223 static void
4224 PREFIX(store_op1) (re_opcode_t op, UCHAR_T *loc, int arg)
4225 {
4226   *loc = (UCHAR_T) op;
4227   STORE_NUMBER (loc + 1, arg);
4228 }
4229
4230
4231 /* Like `store_op1', but for two two-byte parameters ARG1 and ARG2.  */
4232 /* ifdef WCHAR, integer parameter is 1 wchar_t.  */
4233
4234 static void
4235 PREFIX(store_op2) (re_opcode_t op, UCHAR_T *loc, int arg1, int arg2)
4236 {
4237   *loc = (UCHAR_T) op;
4238   STORE_NUMBER (loc + 1, arg1);
4239   STORE_NUMBER (loc + 1 + OFFSET_ADDRESS_SIZE, arg2);
4240 }
4241
4242
4243 /* Copy the bytes from LOC to END to open up three bytes of space at LOC
4244    for OP followed by two-byte integer parameter ARG.  */
4245 /* ifdef WCHAR, integer parameter is 1 wchar_t.  */
4246
4247 static void
4248 PREFIX(insert_op1) (re_opcode_t op, UCHAR_T *loc, int arg, UCHAR_T *end)
4249 {
4250   register UCHAR_T *pfrom = end;
4251   register UCHAR_T *pto = end + 1 + OFFSET_ADDRESS_SIZE;
4252
4253   while (pfrom != loc)
4254     *--pto = *--pfrom;
4255
4256   PREFIX(store_op1) (op, loc, arg);
4257 }
4258
4259
4260 /* Like `insert_op1', but for two two-byte parameters ARG1 and ARG2.  */
4261 /* ifdef WCHAR, integer parameter is 1 wchar_t.  */
4262
4263 static void
4264 PREFIX(insert_op2) (re_opcode_t op, UCHAR_T *loc, int arg1, int arg2,
4265                     UCHAR_T *end)
4266 {
4267   register UCHAR_T *pfrom = end;
4268   register UCHAR_T *pto = end + 1 + 2 * OFFSET_ADDRESS_SIZE;
4269
4270   while (pfrom != loc)
4271     *--pto = *--pfrom;
4272
4273   PREFIX(store_op2) (op, loc, arg1, arg2);
4274 }
4275
4276
4277 /* P points to just after a ^ in PATTERN.  Return true if that ^ comes
4278    after an alternative or a begin-subexpression.  We assume there is at
4279    least one character before the ^.  */
4280
4281 static boolean
4282 PREFIX(at_begline_loc_p) (const CHAR_T *pattern, const CHAR_T *p,
4283                           reg_syntax_t syntax)
4284 {
4285   const CHAR_T *prev = p - 2;
4286   boolean prev_prev_backslash = prev > pattern && prev[-1] == '\\';
4287
4288   return
4289        /* After a subexpression?  */
4290        (*prev == '(' && (syntax & RE_NO_BK_PARENS || prev_prev_backslash))
4291        /* After an alternative?  */
4292     || (*prev == '|' && (syntax & RE_NO_BK_VBAR || prev_prev_backslash));
4293 }
4294
4295
4296 /* The dual of at_begline_loc_p.  This one is for $.  We assume there is
4297    at least one character after the $, i.e., `P < PEND'.  */
4298
4299 static boolean
4300 PREFIX(at_endline_loc_p) (const CHAR_T *p, const CHAR_T *pend,
4301                           reg_syntax_t syntax)
4302 {
4303   const CHAR_T *next = p;
4304   boolean next_backslash = *next == '\\';
4305   const CHAR_T *next_next = p + 1 < pend ? p + 1 : 0;
4306
4307   return
4308        /* Before a subexpression?  */
4309        (syntax & RE_NO_BK_PARENS ? *next == ')'
4310         : next_backslash && next_next && *next_next == ')')
4311        /* Before an alternative?  */
4312     || (syntax & RE_NO_BK_VBAR ? *next == '|'
4313         : next_backslash && next_next && *next_next == '|');
4314 }
4315
4316 #else /* not INSIDE_RECURSION */
4317
4318 /* Returns true if REGNUM is in one of COMPILE_STACK's elements and
4319    false if it's not.  */
4320
4321 static boolean
4322 group_in_compile_stack (compile_stack_type compile_stack,
4323                         regnum_t regnum)
4324 {
4325   int this_element;
4326
4327   for (this_element = compile_stack.avail - 1;
4328        this_element >= 0;
4329        this_element--)
4330     if (compile_stack.stack[this_element].regnum == regnum)
4331       return true;
4332
4333   return false;
4334 }
4335 #endif /* not INSIDE_RECURSION */
4336
4337 #ifdef INSIDE_RECURSION
4338
4339 #ifdef WCHAR
4340 /* This insert space, which size is "num", into the pattern at "loc".
4341    "end" must point the end of the allocated buffer.  */
4342 static void
4343 insert_space (int num, CHAR_T *loc, CHAR_T *end)
4344 {
4345   register CHAR_T *pto = end;
4346   register CHAR_T *pfrom = end - num;
4347
4348   while (pfrom >= loc)
4349     *pto-- = *pfrom--;
4350 }
4351 #endif /* WCHAR */
4352
4353 #ifdef WCHAR
4354 static reg_errcode_t
4355 wcs_compile_range (CHAR_T range_start_char,
4356                    const CHAR_T **p_ptr, const CHAR_T *pend,
4357                    RE_TRANSLATE_TYPE translate, reg_syntax_t syntax,
4358                    CHAR_T *b, CHAR_T *char_set)
4359 {
4360   const CHAR_T *p = *p_ptr;
4361   CHAR_T range_start, range_end;
4362   reg_errcode_t ret;
4363 # ifdef _LIBC
4364   uint32_t nrules;
4365   uint32_t start_val, end_val;
4366 # endif
4367   if (p == pend)
4368     return REG_ERANGE;
4369
4370 # ifdef _LIBC
4371   nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
4372   if (nrules != 0)
4373     {
4374       const char *collseq = (const char *) _NL_CURRENT(LC_COLLATE,
4375                                                        _NL_COLLATE_COLLSEQWC);
4376       const unsigned char *extra = (const unsigned char *)
4377         _NL_CURRENT (LC_COLLATE, _NL_COLLATE_SYMB_EXTRAMB);
4378
4379       if (range_start_char < -1)
4380         {
4381           /* range_start is a collating symbol.  */
4382           int32_t *wextra;
4383           /* Retreive the index and get collation sequence value.  */
4384           wextra = (int32_t*)(extra + char_set[-range_start_char]);
4385           start_val = wextra[1 + *wextra];
4386         }
4387       else
4388         start_val = collseq_table_lookup(collseq, TRANSLATE(range_start_char));
4389
4390       end_val = collseq_table_lookup (collseq, TRANSLATE (p[0]));
4391
4392       /* Report an error if the range is empty and the syntax prohibits
4393          this.  */
4394       ret = ((syntax & RE_NO_EMPTY_RANGES)
4395              && (start_val > end_val))? REG_ERANGE : REG_NOERROR;
4396
4397       /* Insert space to the end of the char_ranges.  */
4398       insert_space(2, b - char_set[5] - 2, b - 1);
4399       *(b - char_set[5] - 2) = (wchar_t)start_val;
4400       *(b - char_set[5] - 1) = (wchar_t)end_val;
4401       char_set[4]++; /* ranges_index */
4402     }
4403   else
4404 # endif
4405     {
4406       range_start = (range_start_char >= 0)? TRANSLATE (range_start_char):
4407         range_start_char;
4408       range_end = TRANSLATE (p[0]);
4409       /* Report an error if the range is empty and the syntax prohibits
4410          this.  */
4411       ret = ((syntax & RE_NO_EMPTY_RANGES)
4412              && (range_start > range_end))? REG_ERANGE : REG_NOERROR;
4413
4414       /* Insert space to the end of the char_ranges.  */
4415       insert_space(2, b - char_set[5] - 2, b - 1);
4416       *(b - char_set[5] - 2) = range_start;
4417       *(b - char_set[5] - 1) = range_end;
4418       char_set[4]++; /* ranges_index */
4419     }
4420   /* Have to increment the pointer into the pattern string, so the
4421      caller isn't still at the ending character.  */
4422   (*p_ptr)++;
4423
4424   return ret;
4425 }
4426 #else /* BYTE */
4427 /* Read the ending character of a range (in a bracket expression) from the
4428    uncompiled pattern *P_PTR (which ends at PEND).  We assume the
4429    starting character is in `P[-2]'.  (`P[-1]' is the character `-'.)
4430    Then we set the translation of all bits between the starting and
4431    ending characters (inclusive) in the compiled pattern B.
4432
4433    Return an error code.
4434
4435    We use these short variable names so we can use the same macros as
4436    `regex_compile' itself.  */
4437
4438 static reg_errcode_t
4439 byte_compile_range (unsigned int range_start_char,
4440                     const char **p_ptr, const char *pend,
4441                     RE_TRANSLATE_TYPE translate, reg_syntax_t syntax,
4442                     unsigned char *b)
4443 {
4444   unsigned this_char;
4445   const char *p = *p_ptr;
4446   reg_errcode_t ret;
4447 # if _LIBC
4448   const unsigned char *collseq;
4449   unsigned int start_colseq;
4450   unsigned int end_colseq;
4451 # else
4452   unsigned end_char;
4453 # endif
4454
4455   if (p == pend)
4456     return REG_ERANGE;
4457
4458   /* Have to increment the pointer into the pattern string, so the
4459      caller isn't still at the ending character.  */
4460   (*p_ptr)++;
4461
4462   /* Report an error if the range is empty and the syntax prohibits this.  */
4463   ret = syntax & RE_NO_EMPTY_RANGES ? REG_ERANGE : REG_NOERROR;
4464
4465 # if _LIBC
4466   collseq = (const unsigned char *) _NL_CURRENT (LC_COLLATE,
4467                                                  _NL_COLLATE_COLLSEQMB);
4468
4469   start_colseq = collseq[(unsigned char) TRANSLATE (range_start_char)];
4470   end_colseq = collseq[(unsigned char) TRANSLATE (p[0])];
4471   for (this_char = 0; this_char <= (unsigned char) -1; ++this_char)
4472     {
4473       unsigned int this_colseq = collseq[(unsigned char) TRANSLATE (this_char)];
4474
4475       if (start_colseq <= this_colseq && this_colseq <= end_colseq)
4476         {
4477           SET_LIST_BIT (TRANSLATE (this_char));
4478           ret = REG_NOERROR;
4479         }
4480     }
4481 # else
4482   /* Here we see why `this_char' has to be larger than an `unsigned
4483      char' -- we would otherwise go into an infinite loop, since all
4484      characters <= 0xff.  */
4485   range_start_char = TRANSLATE (range_start_char);
4486   /* TRANSLATE(p[0]) is casted to char (not unsigned char) in TRANSLATE,
4487      and some compilers cast it to int implicitly, so following for_loop
4488      may fall to (almost) infinite loop.
4489      e.g. If translate[p[0]] = 0xff, end_char may equals to 0xffffffff.
4490      To avoid this, we cast p[0] to unsigned int and truncate it.  */
4491   end_char = ((unsigned)TRANSLATE(p[0]) & ((1 << BYTEWIDTH) - 1));
4492
4493   for (this_char = range_start_char; this_char <= end_char; ++this_char)
4494     {
4495       SET_LIST_BIT (TRANSLATE (this_char));
4496       ret = REG_NOERROR;
4497     }
4498 # endif
4499
4500   return ret;
4501 }
4502 #endif /* WCHAR */
4503 \f
4504 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
4505    BUFP.  A fastmap records which of the (1 << BYTEWIDTH) possible
4506    characters can start a string that matches the pattern.  This fastmap
4507    is used by re_search to skip quickly over impossible starting points.
4508
4509    The caller must supply the address of a (1 << BYTEWIDTH)-byte data
4510    area as BUFP->fastmap.
4511
4512    We set the `fastmap', `fastmap_accurate', and `can_be_null' fields in
4513    the pattern buffer.
4514
4515    Returns 0 if we succeed, -2 if an internal error.   */
4516
4517 #ifdef WCHAR
4518 /* local function for re_compile_fastmap.
4519    truncate wchar_t character to char.  */
4520
4521 static unsigned char
4522 truncate_wchar (CHAR_T c)
4523 {
4524   unsigned char buf[MB_CUR_MAX];
4525   mbstate_t state;
4526   int retval;
4527   memset (&state, '\0', sizeof (state));
4528   retval = wcrtomb (buf, c, &state);
4529   return retval > 0 ? buf[0] : (unsigned char) c;
4530 }
4531 #endif /* WCHAR */
4532
4533 static int
4534 PREFIX(re_compile_fastmap) (struct re_pattern_buffer *bufp)
4535 {
4536   int j, k;
4537 #ifdef MATCH_MAY_ALLOCATE
4538   PREFIX(fail_stack_type) fail_stack;
4539 #endif
4540 #ifndef REGEX_MALLOC
4541   char *destination;
4542 #endif
4543
4544   register char *fastmap = bufp->fastmap;
4545
4546 #ifdef WCHAR
4547   /* We need to cast pattern to (wchar_t*), because we casted this compiled
4548      pattern to (char*) in regex_compile.  */
4549   UCHAR_T *pattern = (UCHAR_T*)bufp->buffer;
4550   register UCHAR_T *pend = (UCHAR_T*) (bufp->buffer + bufp->used);
4551 #else /* BYTE */
4552   UCHAR_T *pattern = bufp->buffer;
4553   register UCHAR_T *pend = pattern + bufp->used;
4554 #endif /* WCHAR */
4555   UCHAR_T *p = pattern;
4556
4557 #ifdef REL_ALLOC
4558   /* This holds the pointer to the failure stack, when
4559      it is allocated relocatably.  */
4560   fail_stack_elt_t *failure_stack_ptr;
4561 #endif
4562
4563   /* Assume that each path through the pattern can be null until
4564      proven otherwise.  We set this false at the bottom of switch
4565      statement, to which we get only if a particular path doesn't
4566      match the empty string.  */
4567   boolean path_can_be_null = true;
4568
4569   /* We aren't doing a `succeed_n' to begin with.  */
4570   boolean succeed_n_p = false;
4571
4572   assert (fastmap != NULL && p != NULL);
4573
4574   INIT_FAIL_STACK ();
4575   bzero (fastmap, 1 << BYTEWIDTH);  /* Assume nothing's valid.  */
4576   bufp->fastmap_accurate = 1;       /* It will be when we're done.  */
4577   bufp->can_be_null = 0;
4578
4579   while (1)
4580     {
4581       if (p == pend || *p == succeed)
4582         {
4583           /* We have reached the (effective) end of pattern.  */
4584           if (!FAIL_STACK_EMPTY ())
4585             {
4586               bufp->can_be_null |= path_can_be_null;
4587
4588               /* Reset for next path.  */
4589               path_can_be_null = true;
4590
4591               p = fail_stack.stack[--fail_stack.avail].pointer;
4592
4593               continue;
4594             }
4595           else
4596             break;
4597         }
4598
4599       /* We should never be about to go beyond the end of the pattern.  */
4600       assert (p < pend);
4601
4602       switch (SWITCH_ENUM_CAST ((re_opcode_t) *p++))
4603         {
4604
4605         /* I guess the idea here is to simply not bother with a fastmap
4606            if a backreference is used, since it's too hard to figure out
4607            the fastmap for the corresponding group.  Setting
4608            `can_be_null' stops `re_search_2' from using the fastmap, so
4609            that is all we do.  */
4610         case duplicate:
4611           bufp->can_be_null = 1;
4612           goto done;
4613
4614
4615       /* Following are the cases which match a character.  These end
4616          with `break'.  */
4617
4618 #ifdef WCHAR
4619         case exactn:
4620           fastmap[truncate_wchar(p[1])] = 1;
4621           break;
4622 #else /* BYTE */
4623         case exactn:
4624           fastmap[p[1]] = 1;
4625           break;
4626 #endif /* WCHAR */
4627 #ifdef MBS_SUPPORT
4628         case exactn_bin:
4629           fastmap[p[1]] = 1;
4630           break;
4631 #endif
4632
4633 #ifdef WCHAR
4634         /* It is hard to distinguish fastmap from (multi byte) characters
4635            which depends on current locale.  */
4636         case charset:
4637         case charset_not:
4638         case wordchar:
4639         case notwordchar:
4640           bufp->can_be_null = 1;
4641           goto done;
4642 #else /* BYTE */
4643         case charset:
4644           for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
4645             if (p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH)))
4646               fastmap[j] = 1;
4647           break;
4648
4649
4650         case charset_not:
4651           /* Chars beyond end of map must be allowed.  */
4652           for (j = *p * BYTEWIDTH; j < (1 << BYTEWIDTH); j++)
4653             fastmap[j] = 1;
4654
4655           for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
4656             if (!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))))
4657               fastmap[j] = 1;
4658           break;
4659
4660
4661         case wordchar:
4662           for (j = 0; j < (1 << BYTEWIDTH); j++)
4663             if (SYNTAX (j) == Sword)
4664               fastmap[j] = 1;
4665           break;
4666
4667
4668         case notwordchar:
4669           for (j = 0; j < (1 << BYTEWIDTH); j++)
4670             if (SYNTAX (j) != Sword)
4671               fastmap[j] = 1;
4672           break;
4673 #endif /* WCHAR */
4674
4675         case anychar:
4676           {
4677             int fastmap_newline = fastmap['\n'];
4678
4679             /* `.' matches anything ...  */
4680             for (j = 0; j < (1 << BYTEWIDTH); j++)
4681               fastmap[j] = 1;
4682
4683             /* ... except perhaps newline.  */
4684             if (!(bufp->syntax & RE_DOT_NEWLINE))
4685               fastmap['\n'] = fastmap_newline;
4686
4687             /* Return if we have already set `can_be_null'; if we have,
4688                then the fastmap is irrelevant.  Something's wrong here.  */
4689             else if (bufp->can_be_null)
4690               goto done;
4691
4692             /* Otherwise, have to check alternative paths.  */
4693             break;
4694           }
4695
4696 #ifdef emacs
4697         case syntaxspec:
4698           k = *p++;
4699           for (j = 0; j < (1 << BYTEWIDTH); j++)
4700             if (SYNTAX (j) == (enum syntaxcode) k)
4701               fastmap[j] = 1;
4702           break;
4703
4704
4705         case notsyntaxspec:
4706           k = *p++;
4707           for (j = 0; j < (1 << BYTEWIDTH); j++)
4708             if (SYNTAX (j) != (enum syntaxcode) k)
4709               fastmap[j] = 1;
4710           break;
4711
4712
4713       /* All cases after this match the empty string.  These end with
4714          `continue'.  */
4715
4716
4717         case before_dot:
4718         case at_dot:
4719         case after_dot:
4720           continue;
4721 #endif /* emacs */
4722
4723
4724         case no_op:
4725         case begline:
4726         case endline:
4727         case begbuf:
4728         case endbuf:
4729         case wordbound:
4730         case notwordbound:
4731         case wordbeg:
4732         case wordend:
4733         case push_dummy_failure:
4734           continue;
4735
4736
4737         case jump_n:
4738         case pop_failure_jump:
4739         case maybe_pop_jump:
4740         case jump:
4741         case jump_past_alt:
4742         case dummy_failure_jump:
4743           EXTRACT_NUMBER_AND_INCR (j, p);
4744           p += j;
4745           if (j > 0)
4746             continue;
4747
4748           /* Jump backward implies we just went through the body of a
4749              loop and matched nothing.  Opcode jumped to should be
4750              `on_failure_jump' or `succeed_n'.  Just treat it like an
4751              ordinary jump.  For a * loop, it has pushed its failure
4752              point already; if so, discard that as redundant.  */
4753           if ((re_opcode_t) *p != on_failure_jump
4754               && (re_opcode_t) *p != succeed_n)
4755             continue;
4756
4757           p++;
4758           EXTRACT_NUMBER_AND_INCR (j, p);
4759           p += j;
4760
4761           /* If what's on the stack is where we are now, pop it.  */
4762           if (!FAIL_STACK_EMPTY ()
4763               && fail_stack.stack[fail_stack.avail - 1].pointer == p)
4764             fail_stack.avail--;
4765
4766           continue;
4767
4768
4769         case on_failure_jump:
4770         case on_failure_keep_string_jump:
4771         handle_on_failure_jump:
4772           EXTRACT_NUMBER_AND_INCR (j, p);
4773
4774           /* For some patterns, e.g., `(a?)?', `p+j' here points to the
4775              end of the pattern.  We don't want to push such a point,
4776              since when we restore it above, entering the switch will
4777              increment `p' past the end of the pattern.  We don't need
4778              to push such a point since we obviously won't find any more
4779              fastmap entries beyond `pend'.  Such a pattern can match
4780              the null string, though.  */
4781           if (p + j < pend)
4782             {
4783               if (!PUSH_PATTERN_OP (p + j, fail_stack))
4784                 {
4785                   RESET_FAIL_STACK ();
4786                   return -2;
4787                 }
4788             }
4789           else
4790             bufp->can_be_null = 1;
4791
4792           if (succeed_n_p)
4793             {
4794               EXTRACT_NUMBER_AND_INCR (k, p);   /* Skip the n.  */
4795               succeed_n_p = false;
4796             }
4797
4798           continue;
4799
4800
4801         case succeed_n:
4802           /* Get to the number of times to succeed.  */
4803           p += OFFSET_ADDRESS_SIZE;
4804
4805           /* Increment p past the n for when k != 0.  */
4806           EXTRACT_NUMBER_AND_INCR (k, p);
4807           if (k == 0)
4808             {
4809               p -= 2 * OFFSET_ADDRESS_SIZE;
4810               succeed_n_p = true;  /* Spaghetti code alert.  */
4811               goto handle_on_failure_jump;
4812             }
4813           continue;
4814
4815
4816         case set_number_at:
4817           p += 2 * OFFSET_ADDRESS_SIZE;
4818           continue;
4819
4820
4821         case start_memory:
4822         case stop_memory:
4823           p += 2;
4824           continue;
4825
4826
4827         default:
4828           abort (); /* We have listed all the cases.  */
4829         } /* switch *p++ */
4830
4831       /* Getting here means we have found the possible starting
4832          characters for one path of the pattern -- and that the empty
4833          string does not match.  We need not follow this path further.
4834          Instead, look at the next alternative (remembered on the
4835          stack), or quit if no more.  The test at the top of the loop
4836          does these things.  */
4837       path_can_be_null = false;
4838       p = pend;
4839     } /* while p */
4840
4841   /* Set `can_be_null' for the last path (also the first path, if the
4842      pattern is empty).  */
4843   bufp->can_be_null |= path_can_be_null;
4844
4845  done:
4846   RESET_FAIL_STACK ();
4847   return 0;
4848 }
4849
4850 #else /* not INSIDE_RECURSION */
4851
4852 int
4853 re_compile_fastmap (struct re_pattern_buffer *bufp)
4854 {
4855 # ifdef MBS_SUPPORT
4856   if (MB_CUR_MAX != 1)
4857     return wcs_re_compile_fastmap(bufp);
4858   else
4859 # endif
4860     return byte_re_compile_fastmap(bufp);
4861 } /* re_compile_fastmap */
4862 #ifdef _LIBC
4863 weak_alias (__re_compile_fastmap, re_compile_fastmap)
4864 #endif
4865 \f
4866
4867 /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
4868    ENDS.  Subsequent matches using PATTERN_BUFFER and REGS will use
4869    this memory for recording register information.  STARTS and ENDS
4870    must be allocated using the malloc library routine, and must each
4871    be at least NUM_REGS * sizeof (regoff_t) bytes long.
4872
4873    If NUM_REGS == 0, then subsequent matches should allocate their own
4874    register data.
4875
4876    Unless this function is called, the first search or match using
4877    PATTERN_BUFFER will allocate its own register data, without
4878    freeing the old data.  */
4879
4880 void
4881 re_set_registers (struct re_pattern_buffer *bufp,
4882                   struct re_registers *regs,
4883                   unsigned int num_regs,
4884                   regoff_t *starts, regoff_t *ends)
4885 {
4886   if (num_regs)
4887     {
4888       bufp->regs_allocated = REGS_REALLOCATE;
4889       regs->num_regs = num_regs;
4890       regs->start = starts;
4891       regs->end = ends;
4892     }
4893   else
4894     {
4895       bufp->regs_allocated = REGS_UNALLOCATED;
4896       regs->num_regs = 0;
4897       regs->start = regs->end = (regoff_t *) 0;
4898     }
4899 }
4900 #ifdef _LIBC
4901 weak_alias (__re_set_registers, re_set_registers)
4902 #endif
4903 \f
4904 /* Searching routines.  */
4905
4906 /* Like re_search_2, below, but only one string is specified, and
4907    doesn't let you say where to stop matching.  */
4908
4909 int
4910 re_search (struct re_pattern_buffer *bufp,
4911            const char *string,
4912            int size, int startpos, int range,
4913            struct re_registers *regs)
4914 {
4915   return re_search_2 (bufp, NULL, 0, string, size, startpos, range,
4916                       regs, size);
4917 }
4918 #ifdef _LIBC
4919 weak_alias (__re_search, re_search)
4920 #endif
4921
4922
4923 /* Using the compiled pattern in BUFP->buffer, first tries to match the
4924    virtual concatenation of STRING1 and STRING2, starting first at index
4925    STARTPOS, then at STARTPOS + 1, and so on.
4926
4927    STRING1 and STRING2 have length SIZE1 and SIZE2, respectively.
4928
4929    RANGE is how far to scan while trying to match.  RANGE = 0 means try
4930    only at STARTPOS; in general, the last start tried is STARTPOS +
4931    RANGE.
4932
4933    In REGS, return the indices of the virtual concatenation of STRING1
4934    and STRING2 that matched the entire BUFP->buffer and its contained
4935    subexpressions.
4936
4937    Do not consider matching one past the index STOP in the virtual
4938    concatenation of STRING1 and STRING2.
4939
4940    We return either the position in the strings at which the match was
4941    found, -1 if no match, or -2 if error (such as failure
4942    stack overflow).  */
4943
4944 int
4945 re_search_2 (struct re_pattern_buffer *bufp,
4946              const char *string1, int size1,
4947              const char *string2, int size2,
4948              int startpos, int range,
4949              struct re_registers *regs,
4950              int stop)
4951 {
4952 # ifdef MBS_SUPPORT
4953   if (MB_CUR_MAX != 1)
4954     return wcs_re_search_2 (bufp, string1, size1, string2, size2, startpos,
4955                             range, regs, stop);
4956   else
4957 # endif
4958     return byte_re_search_2 (bufp, string1, size1, string2, size2, startpos,
4959                              range, regs, stop);
4960 } /* re_search_2 */
4961 #ifdef _LIBC
4962 weak_alias (__re_search_2, re_search_2)
4963 #endif
4964
4965 #endif /* not INSIDE_RECURSION */
4966
4967 #ifdef INSIDE_RECURSION
4968
4969 #ifdef MATCH_MAY_ALLOCATE
4970 # define FREE_VAR(var) if (var) REGEX_FREE (var); var = NULL
4971 #else
4972 # define FREE_VAR(var) if (var) free (var); var = NULL
4973 #endif
4974
4975 #ifdef WCHAR
4976 # define MAX_ALLOCA_SIZE        2000
4977
4978 # define FREE_WCS_BUFFERS() \
4979   do {                                                                        \
4980     if (size1 > MAX_ALLOCA_SIZE)                                              \
4981       {                                                                       \
4982         free (wcs_string1);                                                   \
4983         free (mbs_offset1);                                                   \
4984       }                                                                       \
4985     else                                                                      \
4986       {                                                                       \
4987         FREE_VAR (wcs_string1);                                               \
4988         FREE_VAR (mbs_offset1);                                               \
4989       }                                                                       \
4990     if (size2 > MAX_ALLOCA_SIZE)                                              \
4991       {                                                                       \
4992         free (wcs_string2);                                                   \
4993         free (mbs_offset2);                                                   \
4994       }                                                                       \
4995     else                                                                      \
4996       {                                                                       \
4997         FREE_VAR (wcs_string2);                                               \
4998         FREE_VAR (mbs_offset2);                                               \
4999       }                                                                       \
5000   } while (0)
5001
5002 #endif
5003
5004
5005 static int
5006 PREFIX(re_search_2) (struct re_pattern_buffer *bufp,
5007                      const char *string1, int size1,
5008                      const char *string2, int size2,
5009                      int startpos, int range,
5010                      struct re_registers *regs,
5011                      int stop)
5012 {
5013   int val;
5014   register char *fastmap = bufp->fastmap;
5015   register RE_TRANSLATE_TYPE translate = bufp->translate;
5016   int total_size = size1 + size2;
5017   int endpos = startpos + range;
5018 #ifdef WCHAR
5019   /* We need wchar_t* buffers correspond to cstring1, cstring2.  */
5020   wchar_t *wcs_string1 = NULL, *wcs_string2 = NULL;
5021   /* We need the size of wchar_t buffers correspond to csize1, csize2.  */
5022   int wcs_size1 = 0, wcs_size2 = 0;
5023   /* offset buffer for optimizatoin. See convert_mbs_to_wc.  */
5024   int *mbs_offset1 = NULL, *mbs_offset2 = NULL;
5025   /* They hold whether each wchar_t is binary data or not.  */
5026   char *is_binary = NULL;
5027 #endif /* WCHAR */
5028
5029   /* Check for out-of-range STARTPOS.  */
5030   if (startpos < 0 || startpos > total_size)
5031     return -1;
5032
5033   /* Fix up RANGE if it might eventually take us outside
5034      the virtual concatenation of STRING1 and STRING2.
5035      Make sure we won't move STARTPOS below 0 or above TOTAL_SIZE.  */
5036   if (endpos < 0)
5037     range = 0 - startpos;
5038   else if (endpos > total_size)
5039     range = total_size - startpos;
5040
5041   /* If the search isn't to be a backwards one, don't waste time in a
5042      search for a pattern that must be anchored.  */
5043   if (bufp->used > 0 && range > 0
5044       && ((re_opcode_t) bufp->buffer[0] == begbuf
5045           /* `begline' is like `begbuf' if it cannot match at newlines.  */
5046           || ((re_opcode_t) bufp->buffer[0] == begline
5047               && !bufp->newline_anchor)))
5048     {
5049       if (startpos > 0)
5050         return -1;
5051       else
5052         range = 1;
5053     }
5054
5055 #ifdef emacs
5056   /* In a forward search for something that starts with \=.
5057      don't keep searching past point.  */
5058   if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == at_dot && range > 0)
5059     {
5060       range = PT - startpos;
5061       if (range <= 0)
5062         return -1;
5063     }
5064 #endif /* emacs */
5065
5066   /* Update the fastmap now if not correct already.  */
5067   if (fastmap && !bufp->fastmap_accurate)
5068     if (re_compile_fastmap (bufp) == -2)
5069       return -2;
5070
5071 #ifdef WCHAR
5072   /* Allocate wchar_t array for wcs_string1 and wcs_string2 and
5073      fill them with converted string.  */
5074   if (size1 != 0)
5075     {
5076       if (size1 > MAX_ALLOCA_SIZE)
5077         {
5078           wcs_string1 = TALLOC (size1 + 1, CHAR_T);
5079           mbs_offset1 = TALLOC (size1 + 1, int);
5080           is_binary = TALLOC (size1 + 1, char);
5081         }
5082       else
5083         {
5084           wcs_string1 = REGEX_TALLOC (size1 + 1, CHAR_T);
5085           mbs_offset1 = REGEX_TALLOC (size1 + 1, int);
5086           is_binary = REGEX_TALLOC (size1 + 1, char);
5087         }
5088       if (!wcs_string1 || !mbs_offset1 || !is_binary)
5089         {
5090           if (size1 > MAX_ALLOCA_SIZE)
5091             {
5092               free (wcs_string1);
5093               free (mbs_offset1);
5094               free (is_binary);
5095             }
5096           else
5097             {
5098               FREE_VAR (wcs_string1);
5099               FREE_VAR (mbs_offset1);
5100               FREE_VAR (is_binary);
5101             }
5102           return -2;
5103         }
5104       wcs_size1 = convert_mbs_to_wcs(wcs_string1, string1, size1,
5105                                      mbs_offset1, is_binary);
5106       wcs_string1[wcs_size1] = L'\0'; /* for a sentinel  */
5107       if (size1 > MAX_ALLOCA_SIZE)
5108         free (is_binary);
5109       else
5110         FREE_VAR (is_binary);
5111     }
5112   if (size2 != 0)
5113     {
5114       if (size2 > MAX_ALLOCA_SIZE)
5115         {
5116           wcs_string2 = TALLOC (size2 + 1, CHAR_T);
5117           mbs_offset2 = TALLOC (size2 + 1, int);
5118           is_binary = TALLOC (size2 + 1, char);
5119         }
5120       else
5121         {
5122           wcs_string2 = REGEX_TALLOC (size2 + 1, CHAR_T);
5123           mbs_offset2 = REGEX_TALLOC (size2 + 1, int);
5124           is_binary = REGEX_TALLOC (size2 + 1, char);
5125         }
5126       if (!wcs_string2 || !mbs_offset2 || !is_binary)
5127         {
5128           FREE_WCS_BUFFERS ();
5129           if (size2 > MAX_ALLOCA_SIZE)
5130             free (is_binary);
5131           else
5132             FREE_VAR (is_binary);
5133           return -2;
5134         }
5135       wcs_size2 = convert_mbs_to_wcs(wcs_string2, string2, size2,
5136                                      mbs_offset2, is_binary);
5137       wcs_string2[wcs_size2] = L'\0'; /* for a sentinel  */
5138       if (size2 > MAX_ALLOCA_SIZE)
5139         free (is_binary);
5140       else
5141         FREE_VAR (is_binary);
5142     }
5143 #endif /* WCHAR */
5144
5145
5146   /* Loop through the string, looking for a place to start matching.  */
5147   for (;;)
5148     {
5149       /* If a fastmap is supplied, skip quickly over characters that
5150          cannot be the start of a match.  If the pattern can match the
5151          null string, however, we don't need to skip characters; we want
5152          the first null string.  */
5153       if (fastmap && startpos < total_size && !bufp->can_be_null)
5154         {
5155           if (range > 0)        /* Searching forwards.  */
5156             {
5157               register const char *d;
5158               register int lim = 0;
5159               int irange = range;
5160
5161               if (startpos < size1 && startpos + range >= size1)
5162                 lim = range - (size1 - startpos);
5163
5164               d = (startpos >= size1 ? string2 - size1 : string1) + startpos;
5165
5166               /* Written out as an if-else to avoid testing `translate'
5167                  inside the loop.  */
5168               if (translate)
5169                 while (range > lim
5170                        && !fastmap[(unsigned char)
5171                                    translate[(unsigned char) *d++]])
5172                   range--;
5173               else
5174                 while (range > lim && !fastmap[(unsigned char) *d++])
5175                   range--;
5176
5177               startpos += irange - range;
5178             }
5179           else                          /* Searching backwards.  */
5180             {
5181               register CHAR_T c = (size1 == 0 || startpos >= size1
5182                                       ? string2[startpos - size1]
5183                                       : string1[startpos]);
5184
5185               if (!fastmap[(unsigned char) TRANSLATE (c)])
5186                 goto advance;
5187             }
5188         }
5189
5190       /* If can't match the null string, and that's all we have left, fail.  */
5191       if (range >= 0 && startpos == total_size && fastmap
5192           && !bufp->can_be_null)
5193        {
5194 #ifdef WCHAR
5195          FREE_WCS_BUFFERS ();
5196 #endif
5197          return -1;
5198        }
5199
5200 #ifdef WCHAR
5201       val = wcs_re_match_2_internal (bufp, string1, size1, string2,
5202                                      size2, startpos, regs, stop,
5203                                      wcs_string1, wcs_size1,
5204                                      wcs_string2, wcs_size2,
5205                                      mbs_offset1, mbs_offset2);
5206 #else /* BYTE */
5207       val = byte_re_match_2_internal (bufp, string1, size1, string2,
5208                                       size2, startpos, regs, stop);
5209 #endif /* BYTE */
5210
5211 #ifndef REGEX_MALLOC
5212 # ifdef C_ALLOCA
5213       alloca (0);
5214 # endif
5215 #endif
5216
5217       if (val >= 0)
5218         {
5219 #ifdef WCHAR
5220           FREE_WCS_BUFFERS ();
5221 #endif
5222           return startpos;
5223         }
5224
5225       if (val == -2)
5226         {
5227 #ifdef WCHAR
5228           FREE_WCS_BUFFERS ();
5229 #endif
5230           return -2;
5231         }
5232
5233     advance:
5234       if (!range)
5235         break;
5236       else if (range > 0)
5237         {
5238           range--;
5239           startpos++;
5240         }
5241       else
5242         {
5243           range++;
5244           startpos--;
5245         }
5246     }
5247 #ifdef WCHAR
5248   FREE_WCS_BUFFERS ();
5249 #endif
5250   return -1;
5251 }
5252
5253 #ifdef WCHAR
5254 /* This converts PTR, a pointer into one of the search wchar_t strings
5255    `string1' and `string2' into an multibyte string offset from the
5256    beginning of that string. We use mbs_offset to optimize.
5257    See convert_mbs_to_wcs.  */
5258 # define POINTER_TO_OFFSET(ptr)                                         \
5259   (FIRST_STRING_P (ptr)                                                 \
5260    ? ((regoff_t)(mbs_offset1 != NULL? mbs_offset1[(ptr)-string1] : 0))  \
5261    : ((regoff_t)((mbs_offset2 != NULL? mbs_offset2[(ptr)-string2] : 0)  \
5262                  + csize1)))
5263 #else /* BYTE */
5264 /* This converts PTR, a pointer into one of the search strings `string1'
5265    and `string2' into an offset from the beginning of that string.  */
5266 # define POINTER_TO_OFFSET(ptr)                 \
5267   (FIRST_STRING_P (ptr)                         \
5268    ? ((regoff_t) ((ptr) - string1))             \
5269    : ((regoff_t) ((ptr) - string2 + size1)))
5270 #endif /* WCHAR */
5271
5272 /* Macros for dealing with the split strings in re_match_2.  */
5273
5274 #define MATCHING_IN_FIRST_STRING  (dend == end_match_1)
5275
5276 /* Call before fetching a character with *d.  This switches over to
5277    string2 if necessary.  */
5278 #define PREFETCH()                                                      \
5279   while (d == dend)                                                     \
5280     {                                                                   \
5281       /* End of string2 => fail.  */                                    \
5282       if (dend == end_match_2)                                          \
5283         goto fail;                                                      \
5284       /* End of string1 => advance to string2.  */                      \
5285       d = string2;                                                      \
5286       dend = end_match_2;                                               \
5287     }
5288
5289 /* Test if at very beginning or at very end of the virtual concatenation
5290    of `string1' and `string2'.  If only one string, it's `string2'.  */
5291 #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2)
5292 #define AT_STRINGS_END(d) ((d) == end2)
5293
5294
5295 /* Test if D points to a character which is word-constituent.  We have
5296    two special cases to check for: if past the end of string1, look at
5297    the first character in string2; and if before the beginning of
5298    string2, look at the last character in string1.  */
5299 #ifdef WCHAR
5300 /* Use internationalized API instead of SYNTAX.  */
5301 # define WORDCHAR_P(d)                                                  \
5302   (iswalnum ((wint_t)((d) == end1 ? *string2                            \
5303            : (d) == string2 - 1 ? *(end1 - 1) : *(d))) != 0             \
5304    || ((d) == end1 ? *string2                                           \
5305        : (d) == string2 - 1 ? *(end1 - 1) : *(d)) == L'_')
5306 #else /* BYTE */
5307 # define WORDCHAR_P(d)                                                  \
5308   (SYNTAX ((d) == end1 ? *string2                                       \
5309            : (d) == string2 - 1 ? *(end1 - 1) : *(d))                   \
5310    == Sword)
5311 #endif /* WCHAR */
5312
5313 /* Disabled due to a compiler bug -- see comment at case wordbound */
5314 #if 0
5315 /* Test if the character before D and the one at D differ with respect
5316    to being word-constituent.  */
5317 #define AT_WORD_BOUNDARY(d)                                             \
5318   (AT_STRINGS_BEG (d) || AT_STRINGS_END (d)                             \
5319    || WORDCHAR_P (d - 1) != WORDCHAR_P (d))
5320 #endif
5321
5322 /* Free everything we malloc.  */
5323 #ifdef MATCH_MAY_ALLOCATE
5324 # ifdef WCHAR
5325 #  define FREE_VARIABLES()                                              \
5326   do {                                                                  \
5327     REGEX_FREE_STACK (fail_stack.stack);                                \
5328     FREE_VAR (regstart);                                                \
5329     FREE_VAR (regend);                                                  \
5330     FREE_VAR (old_regstart);                                            \
5331     FREE_VAR (old_regend);                                              \
5332     FREE_VAR (best_regstart);                                           \
5333     FREE_VAR (best_regend);                                             \
5334     FREE_VAR (reg_info);                                                \
5335     FREE_VAR (reg_dummy);                                               \
5336     FREE_VAR (reg_info_dummy);                                          \
5337     if (!cant_free_wcs_buf)                                             \
5338       {                                                                 \
5339         FREE_VAR (string1);                                             \
5340         FREE_VAR (string2);                                             \
5341         FREE_VAR (mbs_offset1);                                         \
5342         FREE_VAR (mbs_offset2);                                         \
5343       }                                                                 \
5344   } while (0)
5345 # else /* BYTE */
5346 #  define FREE_VARIABLES()                                              \
5347   do {                                                                  \
5348     REGEX_FREE_STACK (fail_stack.stack);                                \
5349     FREE_VAR (regstart);                                                \
5350     FREE_VAR (regend);                                                  \
5351     FREE_VAR (old_regstart);                                            \
5352     FREE_VAR (old_regend);                                              \
5353     FREE_VAR (best_regstart);                                           \
5354     FREE_VAR (best_regend);                                             \
5355     FREE_VAR (reg_info);                                                \
5356     FREE_VAR (reg_dummy);                                               \
5357     FREE_VAR (reg_info_dummy);                                          \
5358   } while (0)
5359 # endif /* WCHAR */
5360 #else
5361 # ifdef WCHAR
5362 #  define FREE_VARIABLES()                                              \
5363   do {                                                                  \
5364     if (!cant_free_wcs_buf)                                             \
5365       {                                                                 \
5366         FREE_VAR (string1);                                             \
5367         FREE_VAR (string2);                                             \
5368         FREE_VAR (mbs_offset1);                                         \
5369         FREE_VAR (mbs_offset2);                                         \
5370       }                                                                 \
5371   } while (0)
5372 # else /* BYTE */
5373 #  define FREE_VARIABLES() ((void)0) /* Do nothing!  But inhibit gcc warning. */
5374 # endif /* WCHAR */
5375 #endif /* not MATCH_MAY_ALLOCATE */
5376
5377 /* These values must meet several constraints.  They must not be valid
5378    register values; since we have a limit of 255 registers (because
5379    we use only one byte in the pattern for the register number), we can
5380    use numbers larger than 255.  They must differ by 1, because of
5381    NUM_FAILURE_ITEMS above.  And the value for the lowest register must
5382    be larger than the value for the highest register, so we do not try
5383    to actually save any registers when none are active.  */
5384 #define NO_HIGHEST_ACTIVE_REG (1 << BYTEWIDTH)
5385 #define NO_LOWEST_ACTIVE_REG (NO_HIGHEST_ACTIVE_REG + 1)
5386 \f
5387 #else /* not INSIDE_RECURSION */
5388 /* Matching routines.  */
5389
5390 #ifndef emacs   /* Emacs never uses this.  */
5391 /* re_match is like re_match_2 except it takes only a single string.  */
5392
5393 int
5394 re_match (struct re_pattern_buffer *bufp,
5395           const char *string,
5396           int size, int pos,
5397           struct re_registers *regs)
5398 {
5399   int result;
5400 # ifdef MBS_SUPPORT
5401   if (MB_CUR_MAX != 1)
5402     result = wcs_re_match_2_internal (bufp, NULL, 0, string, size,
5403                                       pos, regs, size,
5404                                       NULL, 0, NULL, 0, NULL, NULL);
5405   else
5406 # endif
5407     result = byte_re_match_2_internal (bufp, NULL, 0, string, size,
5408                                   pos, regs, size);
5409 # ifndef REGEX_MALLOC
5410 #  ifdef C_ALLOCA
5411   alloca (0);
5412 #  endif
5413 # endif
5414   return result;
5415 }
5416 # ifdef _LIBC
5417 weak_alias (__re_match, re_match)
5418 # endif
5419 #endif /* not emacs */
5420
5421 #endif /* not INSIDE_RECURSION */
5422
5423 #ifdef INSIDE_RECURSION
5424 static boolean PREFIX(group_match_null_string_p) (UCHAR_T **p,
5425                                                   UCHAR_T *end,
5426                                         PREFIX(register_info_type) *reg_info);
5427 static boolean PREFIX(alt_match_null_string_p) (UCHAR_T *p,
5428                                                 UCHAR_T *end,
5429                                         PREFIX(register_info_type) *reg_info);
5430 static boolean PREFIX(common_op_match_null_string_p) (UCHAR_T **p,
5431                                                       UCHAR_T *end,
5432                                         PREFIX(register_info_type) *reg_info);
5433 static int PREFIX(bcmp_translate) (const CHAR_T *s1, const CHAR_T *s2,
5434                                    int len, char *translate);
5435 #else /* not INSIDE_RECURSION */
5436
5437 /* re_match_2 matches the compiled pattern in BUFP against the
5438    the (virtual) concatenation of STRING1 and STRING2 (of length SIZE1
5439    and SIZE2, respectively).  We start matching at POS, and stop
5440    matching at STOP.
5441
5442    If REGS is non-null and the `no_sub' field of BUFP is nonzero, we
5443    store offsets for the substring each group matched in REGS.  See the
5444    documentation for exactly how many groups we fill.
5445
5446    We return -1 if no match, -2 if an internal error (such as the
5447    failure stack overflowing).  Otherwise, we return the length of the
5448    matched substring.  */
5449
5450 int
5451 re_match_2 (struct re_pattern_buffer *bufp,
5452             const char *string1, int size1,
5453             const char *string2, int size2,
5454             int pos, struct re_registers *regs,
5455             int stop)
5456 {
5457   int result;
5458 # ifdef MBS_SUPPORT
5459   if (MB_CUR_MAX != 1)
5460     result = wcs_re_match_2_internal (bufp, string1, size1, string2, size2,
5461                                       pos, regs, stop,
5462                                       NULL, 0, NULL, 0, NULL, NULL);
5463   else
5464 # endif
5465     result = byte_re_match_2_internal (bufp, string1, size1, string2, size2,
5466                                   pos, regs, stop);
5467
5468 #ifndef REGEX_MALLOC
5469 # ifdef C_ALLOCA
5470   alloca (0);
5471 # endif
5472 #endif
5473   return result;
5474 }
5475 #ifdef _LIBC
5476 weak_alias (__re_match_2, re_match_2)
5477 #endif
5478
5479 #endif /* not INSIDE_RECURSION */
5480
5481 #ifdef INSIDE_RECURSION
5482
5483 #ifdef WCHAR
5484
5485 /* This check the substring (from 0, to length) of the multibyte string,
5486    to which offset_buffer correspond. And count how many wchar_t_characters
5487    the substring occupy. We use offset_buffer to optimization.
5488    See convert_mbs_to_wcs.  */
5489
5490 static int
5491 count_mbs_length (int *offset_buffer, int length)
5492 {
5493   int upper, lower;
5494
5495   /* Check whether the size is valid.  */
5496   if (length < 0)
5497     return -1;
5498
5499   if (offset_buffer == NULL)
5500     return 0;
5501
5502   /* If there are no multibyte character, offset_buffer[i] == i.
5503    Optmize for this case.  */
5504   if (offset_buffer[length] == length)
5505     return length;
5506
5507   /* Set up upper with length. (because for all i, offset_buffer[i] >= i)  */
5508   upper = length;
5509   lower = 0;
5510
5511   while (true)
5512     {
5513       int middle = (lower + upper) / 2;
5514       if (middle == lower || middle == upper)
5515         break;
5516       if (offset_buffer[middle] > length)
5517         upper = middle;
5518       else if (offset_buffer[middle] < length)
5519         lower = middle;
5520       else
5521         return middle;
5522     }
5523
5524   return -1;
5525 }
5526 #endif /* WCHAR */
5527
5528 /* This is a separate function so that we can force an alloca cleanup
5529    afterwards.  */
5530 #ifdef WCHAR
5531 static int
5532 wcs_re_match_2_internal (struct re_pattern_buffer *bufp,
5533                          const char *cstring1, int csize1,
5534                          const char *cstring2, int csize2,
5535                          int pos,
5536                          struct re_registers *regs,
5537                          int stop,
5538                          /* string1 == string2 == NULL means
5539                             string1/2, size1/2 and mbs_offset1/2 need
5540                             setting up in this function.  */
5541                          /* We need wchar_t * buffers corresponding to
5542                             cstring1, cstring2.  */
5543                          wchar_t *string1, int size1,
5544                          wchar_t *string2, int size2,
5545                          /* Offset buffer for optimization.  See
5546                             convert_mbs_to_wc.  */
5547                          int *mbs_offset1,
5548                          int *mbs_offset2)
5549 #else /* BYTE */
5550 static int
5551 byte_re_match_2_internal (struct re_pattern_buffer *bufp,
5552                           const char *string1, int size1,
5553                           const char *string2, int size2,
5554                           int pos,
5555                           struct re_registers *regs,
5556                           int stop)
5557 #endif /* BYTE */
5558 {
5559   /* General temporaries.  */
5560   int mcnt;
5561   UCHAR_T *p1;
5562 #ifdef WCHAR
5563   /* They hold whether each wchar_t is binary data or not.  */
5564   char *is_binary = NULL;
5565   /* If true, we can't free string1/2, mbs_offset1/2.  */
5566   int cant_free_wcs_buf = 1;
5567 #endif /* WCHAR */
5568
5569   /* Just past the end of the corresponding string.  */
5570   const CHAR_T *end1, *end2;
5571
5572   /* Pointers into string1 and string2, just past the last characters in
5573      each to consider matching.  */
5574   const CHAR_T *end_match_1, *end_match_2;
5575
5576   /* Where we are in the data, and the end of the current string.  */
5577   const CHAR_T *d, *dend;
5578
5579   /* Where we are in the pattern, and the end of the pattern.  */
5580 #ifdef WCHAR
5581   UCHAR_T *pattern, *p;
5582   register UCHAR_T *pend;
5583 #else /* BYTE */
5584   UCHAR_T *p = bufp->buffer;
5585   register UCHAR_T *pend = p + bufp->used;
5586 #endif /* WCHAR */
5587
5588   /* Mark the opcode just after a start_memory, so we can test for an
5589      empty subpattern when we get to the stop_memory.  */
5590   UCHAR_T *just_past_start_mem = 0;
5591
5592   /* We use this to map every character in the string.  */
5593   RE_TRANSLATE_TYPE translate = bufp->translate;
5594
5595   /* Failure point stack.  Each place that can handle a failure further
5596      down the line pushes a failure point on this stack.  It consists of
5597      restart, regend, and reg_info for all registers corresponding to
5598      the subexpressions we're currently inside, plus the number of such
5599      registers, and, finally, two char *'s.  The first char * is where
5600      to resume scanning the pattern; the second one is where to resume
5601      scanning the strings.  If the latter is zero, the failure point is
5602      a ``dummy''; if a failure happens and the failure point is a dummy,
5603      it gets discarded and the next next one is tried.  */
5604 #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global.  */
5605   PREFIX(fail_stack_type) fail_stack;
5606 #endif
5607 #ifdef DEBUG
5608   static unsigned failure_id;
5609   unsigned nfailure_points_pushed = 0, nfailure_points_popped = 0;
5610 #endif
5611
5612 #ifdef REL_ALLOC
5613   /* This holds the pointer to the failure stack, when
5614      it is allocated relocatably.  */
5615   fail_stack_elt_t *failure_stack_ptr;
5616 #endif
5617
5618   /* We fill all the registers internally, independent of what we
5619      return, for use in backreferences.  The number here includes
5620      an element for register zero.  */
5621   size_t num_regs = bufp->re_nsub + 1;
5622
5623   /* The currently active registers.  */
5624   active_reg_t lowest_active_reg = NO_LOWEST_ACTIVE_REG;
5625   active_reg_t highest_active_reg = NO_HIGHEST_ACTIVE_REG;
5626
5627   /* Information on the contents of registers. These are pointers into
5628      the input strings; they record just what was matched (on this
5629      attempt) by a subexpression part of the pattern, that is, the
5630      regnum-th regstart pointer points to where in the pattern we began
5631      matching and the regnum-th regend points to right after where we
5632      stopped matching the regnum-th subexpression.  (The zeroth register
5633      keeps track of what the whole pattern matches.)  */
5634 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
5635   const CHAR_T **regstart, **regend;
5636 #endif
5637
5638   /* If a group that's operated upon by a repetition operator fails to
5639      match anything, then the register for its start will need to be
5640      restored because it will have been set to wherever in the string we
5641      are when we last see its open-group operator.  Similarly for a
5642      register's end.  */
5643 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
5644   const CHAR_T **old_regstart, **old_regend;
5645 #endif
5646
5647   /* The is_active field of reg_info helps us keep track of which (possibly
5648      nested) subexpressions we are currently in. The matched_something
5649      field of reg_info[reg_num] helps us tell whether or not we have
5650      matched any of the pattern so far this time through the reg_num-th
5651      subexpression.  These two fields get reset each time through any
5652      loop their register is in.  */
5653 #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global.  */
5654   PREFIX(register_info_type) *reg_info;
5655 #endif
5656
5657   /* The following record the register info as found in the above
5658      variables when we find a match better than any we've seen before.
5659      This happens as we backtrack through the failure points, which in
5660      turn happens only if we have not yet matched the entire string. */
5661   unsigned best_regs_set = false;
5662 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
5663   const CHAR_T **best_regstart, **best_regend;
5664 #endif
5665
5666   /* Logically, this is `best_regend[0]'.  But we don't want to have to
5667      allocate space for that if we're not allocating space for anything
5668      else (see below).  Also, we never need info about register 0 for
5669      any of the other register vectors, and it seems rather a kludge to
5670      treat `best_regend' differently than the rest.  So we keep track of
5671      the end of the best match so far in a separate variable.  We
5672      initialize this to NULL so that when we backtrack the first time
5673      and need to test it, it's not garbage.  */
5674   const CHAR_T *match_end = NULL;
5675
5676   /* This helps SET_REGS_MATCHED avoid doing redundant work.  */
5677   int set_regs_matched_done = 0;
5678
5679   /* Used when we pop values we don't care about.  */
5680 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
5681   const CHAR_T **reg_dummy;
5682   PREFIX(register_info_type) *reg_info_dummy;
5683 #endif
5684
5685 #ifdef DEBUG
5686   /* Counts the total number of registers pushed.  */
5687   unsigned num_regs_pushed = 0;
5688 #endif
5689
5690   /* Definitions for state transitions.  More efficiently for gcc.  */
5691 #ifdef __GNUC__
5692 # if defined HAVE_SUBTRACT_LOCAL_LABELS && defined SHARED
5693 #  define NEXT \
5694       do                                                                      \
5695         {                                                                     \
5696           int offset;                                                         \
5697           const void *__unbounded ptr;                                        \
5698           offset = (p == pend                                                 \
5699                     ? 0 : jmptable[SWITCH_ENUM_CAST ((re_opcode_t) *p++)]);   \
5700           ptr = &&end_of_pattern + offset;                                    \
5701           goto *ptr;                                                          \
5702         }                                                                     \
5703       while (0)
5704 #  define REF(x) \
5705   &&label_##x - &&end_of_pattern
5706 #  define JUMP_TABLE_TYPE const int
5707 # else
5708 #  define NEXT \
5709       do                                                                      \
5710         {                                                                     \
5711           const void *__unbounded ptr;                                        \
5712           ptr = (p == pend ? &&end_of_pattern                                 \
5713                  : jmptable[SWITCH_ENUM_CAST ((re_opcode_t) *p++)]);          \
5714           goto *ptr;                                                          \
5715         }                                                                     \
5716       while (0)
5717 #  define REF(x) \
5718   &&label_##x
5719 #  define JUMP_TABLE_TYPE const void *const
5720 # endif
5721 # define CASE(x) label_##x
5722   static JUMP_TABLE_TYPE jmptable[] =
5723     {
5724     REF (no_op),
5725     REF (succeed),
5726     REF (exactn),
5727 # ifdef MBS_SUPPORT
5728     REF (exactn_bin),
5729 # endif
5730     REF (anychar),
5731     REF (charset),
5732     REF (charset_not),
5733     REF (start_memory),
5734     REF (stop_memory),
5735     REF (duplicate),
5736     REF (begline),
5737     REF (endline),
5738     REF (begbuf),
5739     REF (endbuf),
5740     REF (jump),
5741     REF (jump_past_alt),
5742     REF (on_failure_jump),
5743     REF (on_failure_keep_string_jump),
5744     REF (pop_failure_jump),
5745     REF (maybe_pop_jump),
5746     REF (dummy_failure_jump),
5747     REF (push_dummy_failure),
5748     REF (succeed_n),
5749     REF (jump_n),
5750     REF (set_number_at),
5751     REF (wordchar),
5752     REF (notwordchar),
5753     REF (wordbeg),
5754     REF (wordend),
5755     REF (wordbound),
5756     REF (notwordbound)
5757 # ifdef emacs
5758     ,REF (before_dot),
5759     REF (at_dot),
5760     REF (after_dot),
5761     REF (syntaxspec),
5762     REF (notsyntaxspec)
5763 # endif
5764     };
5765 #else
5766 # define NEXT \
5767   break
5768 # define CASE(x) \
5769   case x
5770 #endif
5771
5772   DEBUG_PRINT1 ("\n\nEntering re_match_2.\n");
5773
5774   INIT_FAIL_STACK ();
5775
5776 #ifdef MATCH_MAY_ALLOCATE
5777   /* Do not bother to initialize all the register variables if there are
5778      no groups in the pattern, as it takes a fair amount of time.  If
5779      there are groups, we include space for register 0 (the whole
5780      pattern), even though we never use it, since it simplifies the
5781      array indexing.  We should fix this.  */
5782   if (bufp->re_nsub)
5783     {
5784       regstart = REGEX_TALLOC (num_regs, const CHAR_T *);
5785       regend = REGEX_TALLOC (num_regs, const CHAR_T *);
5786       old_regstart = REGEX_TALLOC (num_regs, const CHAR_T *);
5787       old_regend = REGEX_TALLOC (num_regs, const CHAR_T *);
5788       best_regstart = REGEX_TALLOC (num_regs, const CHAR_T *);
5789       best_regend = REGEX_TALLOC (num_regs, const CHAR_T *);
5790       reg_info = REGEX_TALLOC (num_regs, PREFIX(register_info_type));
5791       reg_dummy = REGEX_TALLOC (num_regs, const CHAR_T *);
5792       reg_info_dummy = REGEX_TALLOC (num_regs, PREFIX(register_info_type));
5793
5794       if (!(regstart && regend && old_regstart && old_regend && reg_info
5795             && best_regstart && best_regend && reg_dummy && reg_info_dummy))
5796         {
5797           FREE_VARIABLES ();
5798           return -2;
5799         }
5800     }
5801   else
5802     {
5803       /* We must initialize all our variables to NULL, so that
5804          `FREE_VARIABLES' doesn't try to free them.  */
5805       regstart = regend = old_regstart = old_regend = best_regstart
5806         = best_regend = reg_dummy = NULL;
5807       reg_info = reg_info_dummy = (PREFIX(register_info_type) *) NULL;
5808     }
5809 #endif /* MATCH_MAY_ALLOCATE */
5810
5811   /* The starting position is bogus.  */
5812 #ifdef WCHAR
5813   if (pos < 0 || pos > csize1 + csize2)
5814 #else /* BYTE */
5815   if (pos < 0 || pos > size1 + size2)
5816 #endif
5817     {
5818       FREE_VARIABLES ();
5819       return -1;
5820     }
5821
5822 #ifdef WCHAR
5823   /* Allocate wchar_t array for string1 and string2 and
5824      fill them with converted string.  */
5825   if (string1 == NULL && string2 == NULL)
5826     {
5827       /* We need seting up buffers here.  */
5828
5829       /* We must free wcs buffers in this function.  */
5830       cant_free_wcs_buf = 0;
5831
5832       if (csize1 != 0)
5833         {
5834           string1 = REGEX_TALLOC (csize1 + 1, CHAR_T);
5835           mbs_offset1 = REGEX_TALLOC (csize1 + 1, int);
5836           is_binary = REGEX_TALLOC (csize1 + 1, char);
5837           if (!string1 || !mbs_offset1 || !is_binary)
5838             {
5839               FREE_VAR (string1);
5840               FREE_VAR (mbs_offset1);
5841               FREE_VAR (is_binary);
5842               return -2;
5843             }
5844         }
5845       if (csize2 != 0)
5846         {
5847           string2 = REGEX_TALLOC (csize2 + 1, CHAR_T);
5848           mbs_offset2 = REGEX_TALLOC (csize2 + 1, int);
5849           is_binary = REGEX_TALLOC (csize2 + 1, char);
5850           if (!string2 || !mbs_offset2 || !is_binary)
5851             {
5852               FREE_VAR (string1);
5853               FREE_VAR (mbs_offset1);
5854               FREE_VAR (string2);
5855               FREE_VAR (mbs_offset2);
5856               FREE_VAR (is_binary);
5857               return -2;
5858             }
5859           size2 = convert_mbs_to_wcs(string2, cstring2, csize2,
5860                                      mbs_offset2, is_binary);
5861           string2[size2] = L'\0'; /* for a sentinel  */
5862           FREE_VAR (is_binary);
5863         }
5864     }
5865
5866   /* We need to cast pattern to (wchar_t*), because we casted this compiled
5867      pattern to (char*) in regex_compile.  */
5868   p = pattern = (CHAR_T*)bufp->buffer;
5869   pend = (CHAR_T*)(bufp->buffer + bufp->used);
5870
5871 #endif /* WCHAR */
5872
5873   /* Initialize subexpression text positions to -1 to mark ones that no
5874      start_memory/stop_memory has been seen for. Also initialize the
5875      register information struct.  */
5876   for (mcnt = 1; (unsigned) mcnt < num_regs; mcnt++)
5877     {
5878       regstart[mcnt] = regend[mcnt]
5879         = old_regstart[mcnt] = old_regend[mcnt] = REG_UNSET_VALUE;
5880
5881       REG_MATCH_NULL_STRING_P (reg_info[mcnt]) = MATCH_NULL_UNSET_VALUE;
5882       IS_ACTIVE (reg_info[mcnt]) = 0;
5883       MATCHED_SOMETHING (reg_info[mcnt]) = 0;
5884       EVER_MATCHED_SOMETHING (reg_info[mcnt]) = 0;
5885     }
5886
5887   /* We move `string1' into `string2' if the latter's empty -- but not if
5888      `string1' is null.  */
5889   if (size2 == 0 && string1 != NULL)
5890     {
5891       string2 = string1;
5892       size2 = size1;
5893       string1 = 0;
5894       size1 = 0;
5895 #ifdef WCHAR
5896       mbs_offset2 = mbs_offset1;
5897       csize2 = csize1;
5898       mbs_offset1 = NULL;
5899       csize1 = 0;
5900 #endif
5901     }
5902   end1 = string1 + size1;
5903   end2 = string2 + size2;
5904
5905   /* Compute where to stop matching, within the two strings.  */
5906 #ifdef WCHAR
5907   if (stop <= csize1)
5908     {
5909       mcnt = count_mbs_length(mbs_offset1, stop);
5910       end_match_1 = string1 + mcnt;
5911       end_match_2 = string2;
5912     }
5913   else
5914     {
5915       if (stop > csize1 + csize2)
5916         stop = csize1 + csize2;
5917       end_match_1 = end1;
5918       mcnt = count_mbs_length(mbs_offset2, stop-csize1);
5919       end_match_2 = string2 + mcnt;
5920     }
5921   if (mcnt < 0)
5922     { /* count_mbs_length return error.  */
5923       FREE_VARIABLES ();
5924       return -1;
5925     }
5926 #else
5927   if (stop <= size1)
5928     {
5929       end_match_1 = string1 + stop;
5930       end_match_2 = string2;
5931     }
5932   else
5933     {
5934       end_match_1 = end1;
5935       end_match_2 = string2 + stop - size1;
5936     }
5937 #endif /* WCHAR */
5938
5939   /* `p' scans through the pattern as `d' scans through the data.
5940      `dend' is the end of the input string that `d' points within.  `d'
5941      is advanced into the following input string whenever necessary, but
5942      this happens before fetching; therefore, at the beginning of the
5943      loop, `d' can be pointing at the end of a string, but it cannot
5944      equal `string2'.  */
5945 #ifdef WCHAR
5946   if (size1 > 0 && pos <= csize1)
5947     {
5948       mcnt = count_mbs_length(mbs_offset1, pos);
5949       d = string1 + mcnt;
5950       dend = end_match_1;
5951     }
5952   else
5953     {
5954       mcnt = count_mbs_length(mbs_offset2, pos-csize1);
5955       d = string2 + mcnt;
5956       dend = end_match_2;
5957     }
5958
5959   if (mcnt < 0)
5960     { /* count_mbs_length return error.  */
5961       FREE_VARIABLES ();
5962       return -1;
5963     }
5964 #else
5965   if (size1 > 0 && pos <= size1)
5966     {
5967       d = string1 + pos;
5968       dend = end_match_1;
5969     }
5970   else
5971     {
5972       d = string2 + pos - size1;
5973       dend = end_match_2;
5974     }
5975 #endif /* WCHAR */
5976
5977   DEBUG_PRINT1 ("The compiled pattern is:\n");
5978   DEBUG_PRINT_COMPILED_PATTERN (bufp, p, pend);
5979   DEBUG_PRINT1 ("The string to match is: `");
5980   DEBUG_PRINT_DOUBLE_STRING (d, string1, size1, string2, size2);
5981   DEBUG_PRINT1 ("'\n");
5982
5983   /* This loops over pattern commands.  It exits by returning from the
5984      function if the match is complete, or it drops through if the match
5985      fails at this starting point in the input data.  */
5986   for (;;)
5987     {
5988 #ifdef _LIBC
5989       DEBUG_PRINT2 ("\n%p: ", p);
5990 #else
5991       DEBUG_PRINT2 ("\n0x%x: ", p);
5992 #endif
5993
5994 #ifdef __GNUC__
5995       NEXT;
5996 #else
5997       if (p == pend)
5998 #endif
5999         {
6000 #ifdef __GNUC__
6001         end_of_pattern:
6002 #endif
6003           /* End of pattern means we might have succeeded.  */
6004           DEBUG_PRINT1 ("end of pattern ... ");
6005
6006           /* If we haven't matched the entire string, and we want the
6007              longest match, try backtracking.  */
6008           if (d != end_match_2)
6009             {
6010               /* 1 if this match ends in the same string (string1 or string2)
6011                  as the best previous match.  */
6012               boolean same_str_p = (FIRST_STRING_P (match_end)
6013                                     == MATCHING_IN_FIRST_STRING);
6014               /* 1 if this match is the best seen so far.  */
6015               boolean best_match_p;
6016
6017               /* AIX compiler got confused when this was combined
6018                  with the previous declaration.  */
6019               if (same_str_p)
6020                 best_match_p = d > match_end;
6021               else
6022                 best_match_p = !MATCHING_IN_FIRST_STRING;
6023
6024               DEBUG_PRINT1 ("backtracking.\n");
6025
6026               if (!FAIL_STACK_EMPTY ())
6027                 { /* More failure points to try.  */
6028
6029                   /* If exceeds best match so far, save it.  */
6030                   if (!best_regs_set || best_match_p)
6031                     {
6032                       best_regs_set = true;
6033                       match_end = d;
6034
6035                       DEBUG_PRINT1 ("\nSAVING match as best so far.\n");
6036
6037                       for (mcnt = 1; (unsigned) mcnt < num_regs; mcnt++)
6038                         {
6039                           best_regstart[mcnt] = regstart[mcnt];
6040                           best_regend[mcnt] = regend[mcnt];
6041                         }
6042                     }
6043                   goto fail;
6044                 }
6045
6046               /* If no failure points, don't restore garbage.  And if
6047                  last match is real best match, don't restore second
6048                  best one. */
6049               else if (best_regs_set && !best_match_p)
6050                 {
6051                 restore_best_regs:
6052                   /* Restore best match.  It may happen that `dend ==
6053                      end_match_1' while the restored d is in string2.
6054                      For example, the pattern `x.*y.*z' against the
6055                      strings `x-' and `y-z-', if the two strings are
6056                      not consecutive in memory.  */
6057                   DEBUG_PRINT1 ("Restoring best registers.\n");
6058
6059                   d = match_end;
6060                   dend = ((d >= string1 && d <= end1)
6061                           ? end_match_1 : end_match_2);
6062
6063                   for (mcnt = 1; (unsigned) mcnt < num_regs; mcnt++)
6064                     {
6065                       regstart[mcnt] = best_regstart[mcnt];
6066                       regend[mcnt] = best_regend[mcnt];
6067                     }
6068                 }
6069             } /* d != end_match_2 */
6070
6071         succeed_label:
6072           DEBUG_PRINT1 ("Accepting match.\n");
6073           /* If caller wants register contents data back, do it.  */
6074           if (regs && !bufp->no_sub)
6075             {
6076               /* Have the register data arrays been allocated?  */
6077               if (bufp->regs_allocated == REGS_UNALLOCATED)
6078                 { /* No.  So allocate them with malloc.  We need one
6079                      extra element beyond `num_regs' for the `-1' marker
6080                      GNU code uses.  */
6081                   regs->num_regs = MAX (RE_NREGS, num_regs + 1);
6082                   regs->start = TALLOC (regs->num_regs, regoff_t);
6083                   regs->end = TALLOC (regs->num_regs, regoff_t);
6084                   if (regs->start == NULL || regs->end == NULL)
6085                     {
6086                       FREE_VARIABLES ();
6087                       return -2;
6088                     }
6089                   bufp->regs_allocated = REGS_REALLOCATE;
6090                 }
6091               else if (bufp->regs_allocated == REGS_REALLOCATE)
6092                 { /* Yes.  If we need more elements than were already
6093                      allocated, reallocate them.  If we need fewer, just
6094                      leave it alone.  */
6095                   if (regs->num_regs < num_regs + 1)
6096                     {
6097                       regs->num_regs = num_regs + 1;
6098                       RETALLOC (regs->start, regs->num_regs, regoff_t);
6099                       RETALLOC (regs->end, regs->num_regs, regoff_t);
6100                       if (regs->start == NULL || regs->end == NULL)
6101                         {
6102                           FREE_VARIABLES ();
6103                           return -2;
6104                         }
6105                     }
6106                 }
6107               else
6108                 {
6109                   /* These braces fend off a "empty body in an else-statement"
6110                      warning under GCC when assert expands to nothing.  */
6111                   assert (bufp->regs_allocated == REGS_FIXED);
6112                 }
6113
6114               /* Convert the pointer data in `regstart' and `regend' to
6115                  indices.  Register zero has to be set differently,
6116                  since we haven't kept track of any info for it.  */
6117               if (regs->num_regs > 0)
6118                 {
6119                   regs->start[0] = pos;
6120 #ifdef WCHAR
6121                   if (MATCHING_IN_FIRST_STRING)
6122                     regs->end[0] = (mbs_offset1 != NULL ?
6123                                     mbs_offset1[d-string1] : 0);
6124                   else
6125                     regs->end[0] = csize1 + (mbs_offset2 != NULL
6126                                              ? mbs_offset2[d-string2] : 0);
6127 #else
6128                   regs->end[0] = (MATCHING_IN_FIRST_STRING
6129                                   ? ((regoff_t) (d - string1))
6130                                   : ((regoff_t) (d - string2 + size1)));
6131 #endif /* WCHAR */
6132                 }
6133
6134               /* Go through the first `min (num_regs, regs->num_regs)'
6135                  registers, since that is all we initialized.  */
6136               for (mcnt = 1; (unsigned) mcnt < MIN (num_regs, regs->num_regs);
6137                    mcnt++)
6138                 {
6139                   if (REG_UNSET (regstart[mcnt]) || REG_UNSET (regend[mcnt]))
6140                     regs->start[mcnt] = regs->end[mcnt] = -1;
6141                   else
6142                     {
6143                       regs->start[mcnt]
6144                         = (regoff_t) POINTER_TO_OFFSET (regstart[mcnt]);
6145                       regs->end[mcnt]
6146                         = (regoff_t) POINTER_TO_OFFSET (regend[mcnt]);
6147                     }
6148                 }
6149
6150               /* If the regs structure we return has more elements than
6151                  were in the pattern, set the extra elements to -1.  If
6152                  we (re)allocated the registers, this is the case,
6153                  because we always allocate enough to have at least one
6154                  -1 at the end.  */
6155               for (mcnt = num_regs; (unsigned) mcnt < regs->num_regs; mcnt++)
6156                 regs->start[mcnt] = regs->end[mcnt] = -1;
6157             } /* regs && !bufp->no_sub */
6158
6159           DEBUG_PRINT4 ("%u failure points pushed, %u popped (%u remain).\n",
6160                         nfailure_points_pushed, nfailure_points_popped,
6161                         nfailure_points_pushed - nfailure_points_popped);
6162           DEBUG_PRINT2 ("%u registers pushed.\n", num_regs_pushed);
6163
6164 #ifdef WCHAR
6165           if (MATCHING_IN_FIRST_STRING)
6166             mcnt = mbs_offset1 != NULL ? mbs_offset1[d-string1] : 0;
6167           else
6168             mcnt = (mbs_offset2 != NULL ? mbs_offset2[d-string2] : 0) +
6169               csize1;
6170           mcnt -= pos;
6171 #else
6172           mcnt = d - pos - (MATCHING_IN_FIRST_STRING
6173                             ? string1 : string2 - size1);
6174 #endif /* WCHAR */
6175
6176           DEBUG_PRINT2 ("Returning %d from re_match_2.\n", mcnt);
6177
6178           FREE_VARIABLES ();
6179           return mcnt;
6180         }
6181
6182 #ifndef __GNUC__
6183       /* Otherwise match next pattern command.  */
6184       switch (SWITCH_ENUM_CAST ((re_opcode_t) *p++))
6185         {
6186 #endif
6187         /* Ignore these.  Used to ignore the n of succeed_n's which
6188            currently have n == 0.  */
6189         CASE (no_op):
6190           DEBUG_PRINT1 ("EXECUTING no_op.\n");
6191           NEXT;
6192
6193         CASE (succeed):
6194           DEBUG_PRINT1 ("EXECUTING succeed.\n");
6195           goto succeed_label;
6196
6197         /* Match the next n pattern characters exactly.  The following
6198            byte in the pattern defines n, and the n bytes after that
6199            are the characters to match.  */
6200         CASE (exactn):
6201 #ifdef MBS_SUPPORT
6202         CASE (exactn_bin):
6203 #endif
6204           mcnt = *p++;
6205           DEBUG_PRINT2 ("EXECUTING exactn %d.\n", mcnt);
6206
6207           /* This is written out as an if-else so we don't waste time
6208              testing `translate' inside the loop.  */
6209           if (translate)
6210             {
6211               do
6212                 {
6213                   PREFETCH ();
6214 #ifdef WCHAR
6215                   if (*d <= 0xff)
6216                     {
6217                       if ((UCHAR_T) translate[(unsigned char) *d++]
6218                           != (UCHAR_T) *p++)
6219                         goto fail;
6220                     }
6221                   else
6222                     {
6223                       if (*d++ != (CHAR_T) *p++)
6224                         goto fail;
6225                     }
6226 #else
6227                   if ((UCHAR_T) translate[(unsigned char) *d++]
6228                       != (UCHAR_T) *p++)
6229                     goto fail;
6230 #endif /* WCHAR */
6231                 }
6232               while (--mcnt);
6233             }
6234           else
6235             {
6236               do
6237                 {
6238                   PREFETCH ();
6239                   if (*d++ != (CHAR_T) *p++) goto fail;
6240                 }
6241               while (--mcnt);
6242             }
6243           SET_REGS_MATCHED ();
6244           NEXT;
6245
6246
6247         /* Match any character except possibly a newline or a null.  */
6248         CASE (anychar):
6249           DEBUG_PRINT1 ("EXECUTING anychar.\n");
6250
6251           PREFETCH ();
6252
6253           if ((!(bufp->syntax & RE_DOT_NEWLINE) && TRANSLATE (*d) == '\n')
6254               || (bufp->syntax & RE_DOT_NOT_NULL && TRANSLATE (*d) == '\000'))
6255             goto fail;
6256
6257           SET_REGS_MATCHED ();
6258           DEBUG_PRINT2 ("  Matched `%ld'.\n", (long int) *d);
6259           d++;
6260           NEXT;
6261
6262
6263         CASE (charset):
6264         CASE (charset_not):
6265           {
6266             register UCHAR_T c;
6267 #ifdef WCHAR
6268             unsigned int i, char_class_length, coll_symbol_length,
6269               equiv_class_length, ranges_length, chars_length, length;
6270             CHAR_T *workp, *workp2, *charset_top;
6271 #define WORK_BUFFER_SIZE 128
6272             CHAR_T str_buf[WORK_BUFFER_SIZE];
6273 # ifdef _LIBC
6274             uint32_t nrules;
6275 # endif /* _LIBC */
6276 #endif /* WCHAR */
6277             boolean not = (re_opcode_t) *(p - 1) == charset_not;
6278
6279             DEBUG_PRINT2 ("EXECUTING charset%s.\n", not ? "_not" : "");
6280             PREFETCH ();
6281             c = TRANSLATE (*d); /* The character to match.  */
6282 #ifdef WCHAR
6283 # ifdef _LIBC
6284             nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
6285 # endif /* _LIBC */
6286             charset_top = p - 1;
6287             char_class_length = *p++;
6288             coll_symbol_length = *p++;
6289             equiv_class_length = *p++;
6290             ranges_length = *p++;
6291             chars_length = *p++;
6292             /* p points charset[6], so the address of the next instruction
6293                (charset[l+m+n+2o+k+p']) equals p[l+m+n+2*o+p'],
6294                where l=length of char_classes, m=length of collating_symbol,
6295                n=equivalence_class, o=length of char_range,
6296                p'=length of character.  */
6297             workp = p;
6298             /* Update p to indicate the next instruction.  */
6299             p += char_class_length + coll_symbol_length+ equiv_class_length +
6300               2*ranges_length + chars_length;
6301
6302             /* match with char_class?  */
6303             for (i = 0; i < char_class_length ; i += CHAR_CLASS_SIZE)
6304               {
6305                 wctype_t wctype;
6306                 uintptr_t alignedp = ((uintptr_t)workp
6307                                       + __alignof__(wctype_t) - 1)
6308                                       & ~(uintptr_t)(__alignof__(wctype_t) - 1);
6309                 wctype = *((wctype_t*)alignedp);
6310                 workp += CHAR_CLASS_SIZE;
6311                 if (iswctype((wint_t)c, wctype))
6312                   goto char_set_matched;
6313               }
6314
6315             /* match with collating_symbol?  */
6316 # ifdef _LIBC
6317             if (nrules != 0)
6318               {
6319                 const unsigned char *extra = (const unsigned char *)
6320                   _NL_CURRENT (LC_COLLATE, _NL_COLLATE_SYMB_EXTRAMB);
6321
6322                 for (workp2 = workp + coll_symbol_length ; workp < workp2 ;
6323                      workp++)
6324                   {
6325                     int32_t *wextra;
6326                     wextra = (int32_t*)(extra + *workp++);
6327                     for (i = 0; i < *wextra; ++i)
6328                       if (TRANSLATE(d[i]) != wextra[1 + i])
6329                         break;
6330
6331                     if (i == *wextra)
6332                       {
6333                         /* Update d, however d will be incremented at
6334                            char_set_matched:, we decrement d here.  */
6335                         d += i - 1;
6336                         goto char_set_matched;
6337                       }
6338                   }
6339               }
6340             else /* (nrules == 0) */
6341 # endif
6342               /* If we can't look up collation data, we use wcscoll
6343                  instead.  */
6344               {
6345                 for (workp2 = workp + coll_symbol_length ; workp < workp2 ;)
6346                   {
6347                     const CHAR_T *backup_d = d, *backup_dend = dend;
6348                     length = wcslen (workp);
6349
6350                     /* If wcscoll(the collating symbol, whole string) > 0,
6351                        any substring of the string never match with the
6352                        collating symbol.  */
6353                     if (wcscoll (workp, d) > 0)
6354                       {
6355                         workp += length + 1;
6356                         continue;
6357                       }
6358
6359                     /* First, we compare the collating symbol with
6360                        the first character of the string.
6361                        If it don't match, we add the next character to
6362                        the compare buffer in turn.  */
6363                     for (i = 0 ; i < WORK_BUFFER_SIZE-1 ; i++, d++)
6364                       {
6365                         int match;
6366                         if (d == dend)
6367                           {
6368                             if (dend == end_match_2)
6369                               break;
6370                             d = string2;
6371                             dend = end_match_2;
6372                           }
6373
6374                         /* add next character to the compare buffer.  */
6375                         str_buf[i] = TRANSLATE(*d);
6376                         str_buf[i+1] = '\0';
6377
6378                         match = wcscoll (workp, str_buf);
6379                         if (match == 0)
6380                           goto char_set_matched;
6381
6382                         if (match < 0)
6383                           /* (str_buf > workp) indicate (str_buf + X > workp),
6384                              because for all X (str_buf + X > str_buf).
6385                              So we don't need continue this loop.  */
6386                           break;
6387
6388                         /* Otherwise(str_buf < workp),
6389                            (str_buf+next_character) may equals (workp).
6390                            So we continue this loop.  */
6391                       }
6392                     /* not matched */
6393                     d = backup_d;
6394                     dend = backup_dend;
6395                     workp += length + 1;
6396                   }
6397               }
6398             /* match with equivalence_class?  */
6399 # ifdef _LIBC
6400             if (nrules != 0)
6401               {
6402                 const CHAR_T *backup_d = d, *backup_dend = dend;
6403                 /* Try to match the equivalence class against
6404                    those known to the collate implementation.  */
6405                 const int32_t *table;
6406                 const int32_t *weights;
6407                 const int32_t *extra;
6408                 const int32_t *indirect;
6409                 int32_t idx, idx2;
6410                 wint_t *cp;
6411                 size_t len;
6412
6413                 /* This #include defines a local function!  */
6414 #  include <locale/weightwc.h>
6415
6416                 table = (const int32_t *)
6417                   _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEWC);
6418                 weights = (const wint_t *)
6419                   _NL_CURRENT (LC_COLLATE, _NL_COLLATE_WEIGHTWC);
6420                 extra = (const wint_t *)
6421                   _NL_CURRENT (LC_COLLATE, _NL_COLLATE_EXTRAWC);
6422                 indirect = (const int32_t *)
6423                   _NL_CURRENT (LC_COLLATE, _NL_COLLATE_INDIRECTWC);
6424
6425                 /* Write 1 collating element to str_buf, and
6426                    get its index.  */
6427                 idx2 = 0;
6428
6429                 for (i = 0 ; idx2 == 0 && i < WORK_BUFFER_SIZE - 1; i++)
6430                   {
6431                     cp = (wint_t*)str_buf;
6432                     if (d == dend)
6433                       {
6434                         if (dend == end_match_2)
6435                           break;
6436                         d = string2;
6437                         dend = end_match_2;
6438                       }
6439                     str_buf[i] = TRANSLATE(*(d+i));
6440                     str_buf[i+1] = '\0'; /* sentinel */
6441                     idx2 = findidx ((const wint_t**)&cp);
6442                   }
6443
6444                 /* Update d, however d will be incremented at
6445                    char_set_matched:, we decrement d here.  */
6446                 d = backup_d + ((wchar_t*)cp - (wchar_t*)str_buf - 1);
6447                 if (d >= dend)
6448                   {
6449                     if (dend == end_match_2)
6450                         d = dend;
6451                     else
6452                       {
6453                         d = string2;
6454                         dend = end_match_2;
6455                       }
6456                   }
6457
6458                 len = weights[idx2];
6459
6460                 for (workp2 = workp + equiv_class_length ; workp < workp2 ;
6461                      workp++)
6462                   {
6463                     idx = (int32_t)*workp;
6464                     /* We already checked idx != 0 in regex_compile. */
6465
6466                     if (idx2 != 0 && len == weights[idx])
6467                       {
6468                         int cnt = 0;
6469                         while (cnt < len && (weights[idx + 1 + cnt]
6470                                              == weights[idx2 + 1 + cnt]))
6471                           ++cnt;
6472
6473                         if (cnt == len)
6474                           goto char_set_matched;
6475                       }
6476                   }
6477                 /* not matched */
6478                 d = backup_d;
6479                 dend = backup_dend;
6480               }
6481             else /* (nrules == 0) */
6482 # endif
6483               /* If we can't look up collation data, we use wcscoll
6484                  instead.  */
6485               {
6486                 for (workp2 = workp + equiv_class_length ; workp < workp2 ;)
6487                   {
6488                     const CHAR_T *backup_d = d, *backup_dend = dend;
6489                     length = wcslen (workp);
6490
6491                     /* If wcscoll(the collating symbol, whole string) > 0,
6492                        any substring of the string never match with the
6493                        collating symbol.  */
6494                     if (wcscoll (workp, d) > 0)
6495                       {
6496                         workp += length + 1;
6497                         break;
6498                       }
6499
6500                     /* First, we compare the equivalence class with
6501                        the first character of the string.
6502                        If it don't match, we add the next character to
6503                        the compare buffer in turn.  */
6504                     for (i = 0 ; i < WORK_BUFFER_SIZE - 1 ; i++, d++)
6505                       {
6506                         int match;
6507                         if (d == dend)
6508                           {
6509                             if (dend == end_match_2)
6510                               break;
6511                             d = string2;
6512                             dend = end_match_2;
6513                           }
6514
6515                         /* add next character to the compare buffer.  */
6516                         str_buf[i] = TRANSLATE(*d);
6517                         str_buf[i+1] = '\0';
6518
6519                         match = wcscoll (workp, str_buf);
6520
6521                         if (match == 0)
6522                           goto char_set_matched;
6523
6524                         if (match < 0)
6525                         /* (str_buf > workp) indicate (str_buf + X > workp),
6526                            because for all X (str_buf + X > str_buf).
6527                            So we don't need continue this loop.  */
6528                           break;
6529
6530                         /* Otherwise(str_buf < workp),
6531                            (str_buf+next_character) may equals (workp).
6532                            So we continue this loop.  */
6533                       }
6534                     /* not matched */
6535                     d = backup_d;
6536                     dend = backup_dend;
6537                     workp += length + 1;
6538                   }
6539               }
6540
6541             /* match with char_range?  */
6542 # ifdef _LIBC
6543             if (nrules != 0)
6544               {
6545                 uint32_t collseqval;
6546                 const char *collseq = (const char *)
6547                   _NL_CURRENT(LC_COLLATE, _NL_COLLATE_COLLSEQWC);
6548
6549                 collseqval = collseq_table_lookup (collseq, c);
6550
6551                 for (; workp < p - chars_length ;)
6552                   {
6553                     uint32_t start_val, end_val;
6554
6555                     /* We already compute the collation sequence value
6556                        of the characters (or collating symbols).  */
6557                     start_val = (uint32_t) *workp++; /* range_start */
6558                     end_val = (uint32_t) *workp++; /* range_end */
6559
6560                     if (start_val <= collseqval && collseqval <= end_val)
6561                       goto char_set_matched;
6562                   }
6563               }
6564             else
6565 # endif
6566               {
6567                 /* We set range_start_char at str_buf[0], range_end_char
6568                    at str_buf[4], and compared char at str_buf[2].  */
6569                 str_buf[1] = 0;
6570                 str_buf[2] = c;
6571                 str_buf[3] = 0;
6572                 str_buf[5] = 0;
6573                 for (; workp < p - chars_length ;)
6574                   {
6575                     wchar_t *range_start_char, *range_end_char;
6576
6577                     /* match if (range_start_char <= c <= range_end_char).  */
6578
6579                     /* If range_start(or end) < 0, we assume -range_start(end)
6580                        is the offset of the collating symbol which is specified
6581                        as the character of the range start(end).  */
6582
6583                     /* range_start */
6584                     if (*workp < 0)
6585                       range_start_char = charset_top - (*workp++);
6586                     else
6587                       {
6588                         str_buf[0] = *workp++;
6589                         range_start_char = str_buf;
6590                       }
6591
6592                     /* range_end */
6593                     if (*workp < 0)
6594                       range_end_char = charset_top - (*workp++);
6595                     else
6596                       {
6597                         str_buf[4] = *workp++;
6598                         range_end_char = str_buf + 4;
6599                       }
6600
6601                     if (wcscoll (range_start_char, str_buf+2) <= 0
6602                         && wcscoll (str_buf+2, range_end_char) <= 0)
6603                       goto char_set_matched;
6604                   }
6605               }
6606
6607             /* match with char?  */
6608             for (; workp < p ; workp++)
6609               if (c == *workp)
6610                 goto char_set_matched;
6611
6612             not = !not;
6613
6614           char_set_matched:
6615             if (not) goto fail;
6616 #else
6617             /* Cast to `unsigned' instead of `unsigned char' in case the
6618                bit list is a full 32 bytes long.  */
6619             if (c < (unsigned) (*p * BYTEWIDTH)
6620                 && p[1 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
6621               not = !not;
6622
6623             p += 1 + *p;
6624
6625             if (!not) goto fail;
6626 #undef WORK_BUFFER_SIZE
6627 #endif /* WCHAR */
6628             SET_REGS_MATCHED ();
6629             d++;
6630             NEXT;
6631           }
6632
6633
6634         /* The beginning of a group is represented by start_memory.
6635            The arguments are the register number in the next byte, and the
6636            number of groups inner to this one in the next.  The text
6637            matched within the group is recorded (in the internal
6638            registers data structure) under the register number.  */
6639         CASE (start_memory):
6640           DEBUG_PRINT3 ("EXECUTING start_memory %ld (%ld):\n",
6641                         (long int) *p, (long int) p[1]);
6642
6643           /* Find out if this group can match the empty string.  */
6644           p1 = p;               /* To send to group_match_null_string_p.  */
6645
6646           if (REG_MATCH_NULL_STRING_P (reg_info[*p]) == MATCH_NULL_UNSET_VALUE)
6647             REG_MATCH_NULL_STRING_P (reg_info[*p])
6648               = PREFIX(group_match_null_string_p) (&p1, pend, reg_info);
6649
6650           /* Save the position in the string where we were the last time
6651              we were at this open-group operator in case the group is
6652              operated upon by a repetition operator, e.g., with `(a*)*b'
6653              against `ab'; then we want to ignore where we are now in
6654              the string in case this attempt to match fails.  */
6655           old_regstart[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
6656                              ? REG_UNSET (regstart[*p]) ? d : regstart[*p]
6657                              : regstart[*p];
6658           DEBUG_PRINT2 ("  old_regstart: %d\n",
6659                          POINTER_TO_OFFSET (old_regstart[*p]));
6660
6661           regstart[*p] = d;
6662           DEBUG_PRINT2 ("  regstart: %d\n", POINTER_TO_OFFSET (regstart[*p]));
6663
6664           IS_ACTIVE (reg_info[*p]) = 1;
6665           MATCHED_SOMETHING (reg_info[*p]) = 0;
6666
6667           /* Clear this whenever we change the register activity status.  */
6668           set_regs_matched_done = 0;
6669
6670           /* This is the new highest active register.  */
6671           highest_active_reg = *p;
6672
6673           /* If nothing was active before, this is the new lowest active
6674              register.  */
6675           if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
6676             lowest_active_reg = *p;
6677
6678           /* Move past the register number and inner group count.  */
6679           p += 2;
6680           just_past_start_mem = p;
6681
6682           NEXT;
6683
6684
6685         /* The stop_memory opcode represents the end of a group.  Its
6686            arguments are the same as start_memory's: the register
6687            number, and the number of inner groups.  */
6688         CASE (stop_memory):
6689           DEBUG_PRINT3 ("EXECUTING stop_memory %ld (%ld):\n",
6690                         (long int) *p, (long int) p[1]);
6691
6692           /* We need to save the string position the last time we were at
6693              this close-group operator in case the group is operated
6694              upon by a repetition operator, e.g., with `((a*)*(b*)*)*'
6695              against `aba'; then we want to ignore where we are now in
6696              the string in case this attempt to match fails.  */
6697           old_regend[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
6698                            ? REG_UNSET (regend[*p]) ? d : regend[*p]
6699                            : regend[*p];
6700           DEBUG_PRINT2 ("      old_regend: %d\n",
6701                          POINTER_TO_OFFSET (old_regend[*p]));
6702
6703           regend[*p] = d;
6704           DEBUG_PRINT2 ("      regend: %d\n", POINTER_TO_OFFSET (regend[*p]));
6705
6706           /* This register isn't active anymore.  */
6707           IS_ACTIVE (reg_info[*p]) = 0;
6708
6709           /* Clear this whenever we change the register activity status.  */
6710           set_regs_matched_done = 0;
6711
6712           /* If this was the only register active, nothing is active
6713              anymore.  */
6714           if (lowest_active_reg == highest_active_reg)
6715             {
6716               lowest_active_reg = NO_LOWEST_ACTIVE_REG;
6717               highest_active_reg = NO_HIGHEST_ACTIVE_REG;
6718             }
6719           else
6720             { /* We must scan for the new highest active register, since
6721                  it isn't necessarily one less than now: consider
6722                  (a(b)c(d(e)f)g).  When group 3 ends, after the f), the
6723                  new highest active register is 1.  */
6724               UCHAR_T r = *p - 1;
6725               while (r > 0 && !IS_ACTIVE (reg_info[r]))
6726                 r--;
6727
6728               /* If we end up at register zero, that means that we saved
6729                  the registers as the result of an `on_failure_jump', not
6730                  a `start_memory', and we jumped to past the innermost
6731                  `stop_memory'.  For example, in ((.)*) we save
6732                  registers 1 and 2 as a result of the *, but when we pop
6733                  back to the second ), we are at the stop_memory 1.
6734                  Thus, nothing is active.  */
6735               if (r == 0)
6736                 {
6737                   lowest_active_reg = NO_LOWEST_ACTIVE_REG;
6738                   highest_active_reg = NO_HIGHEST_ACTIVE_REG;
6739                 }
6740               else
6741                 highest_active_reg = r;
6742             }
6743
6744           /* If just failed to match something this time around with a
6745              group that's operated on by a repetition operator, try to
6746              force exit from the ``loop'', and restore the register
6747              information for this group that we had before trying this
6748              last match.  */
6749           if ((!MATCHED_SOMETHING (reg_info[*p])
6750                || just_past_start_mem == p - 1)
6751               && (p + 2) < pend)
6752             {
6753               boolean is_a_jump_n = false;
6754
6755               p1 = p + 2;
6756               mcnt = 0;
6757               switch ((re_opcode_t) *p1++)
6758                 {
6759                   case jump_n:
6760                     is_a_jump_n = true;
6761                   case pop_failure_jump:
6762                   case maybe_pop_jump:
6763                   case jump:
6764                   case dummy_failure_jump:
6765                     EXTRACT_NUMBER_AND_INCR (mcnt, p1);
6766                     if (is_a_jump_n)
6767                       p1 += OFFSET_ADDRESS_SIZE;
6768                     break;
6769
6770                   default:
6771                     /* do nothing */ ;
6772                 }
6773               p1 += mcnt;
6774
6775               /* If the next operation is a jump backwards in the pattern
6776                  to an on_failure_jump right before the start_memory
6777                  corresponding to this stop_memory, exit from the loop
6778                  by forcing a failure after pushing on the stack the
6779                  on_failure_jump's jump in the pattern, and d.  */
6780               if (mcnt < 0 && (re_opcode_t) *p1 == on_failure_jump
6781                   && (re_opcode_t) p1[1+OFFSET_ADDRESS_SIZE] == start_memory
6782                   && p1[2+OFFSET_ADDRESS_SIZE] == *p)
6783                 {
6784                   /* If this group ever matched anything, then restore
6785                      what its registers were before trying this last
6786                      failed match, e.g., with `(a*)*b' against `ab' for
6787                      regstart[1], and, e.g., with `((a*)*(b*)*)*'
6788                      against `aba' for regend[3].
6789
6790                      Also restore the registers for inner groups for,
6791                      e.g., `((a*)(b*))*' against `aba' (register 3 would
6792                      otherwise get trashed).  */
6793
6794                   if (EVER_MATCHED_SOMETHING (reg_info[*p]))
6795                     {
6796                       unsigned r;
6797
6798                       EVER_MATCHED_SOMETHING (reg_info[*p]) = 0;
6799
6800                       /* Restore this and inner groups' (if any) registers.  */
6801                       for (r = *p; r < (unsigned) *p + (unsigned) *(p + 1);
6802                            r++)
6803                         {
6804                           regstart[r] = old_regstart[r];
6805
6806                           /* xx why this test?  */
6807                           if (old_regend[r] >= regstart[r])
6808                             regend[r] = old_regend[r];
6809                         }
6810                     }
6811                   p1++;
6812                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
6813                   PUSH_FAILURE_POINT (p1 + mcnt, d, -2);
6814
6815                   goto fail;
6816                 }
6817             }
6818
6819           /* Move past the register number and the inner group count.  */
6820           p += 2;
6821           NEXT;
6822
6823
6824         /* \<digit> has been turned into a `duplicate' command which is
6825            followed by the numeric value of <digit> as the register number.  */
6826         CASE (duplicate):
6827           {
6828             register const CHAR_T *d2, *dend2;
6829             int regno = *p++;   /* Get which register to match against.  */
6830             DEBUG_PRINT2 ("EXECUTING duplicate %d.\n", regno);
6831
6832             /* Can't back reference a group which we've never matched.  */
6833             if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
6834               goto fail;
6835
6836             /* Where in input to try to start matching.  */
6837             d2 = regstart[regno];
6838
6839             /* Where to stop matching; if both the place to start and
6840                the place to stop matching are in the same string, then
6841                set to the place to stop, otherwise, for now have to use
6842                the end of the first string.  */
6843
6844             dend2 = ((FIRST_STRING_P (regstart[regno])
6845                       == FIRST_STRING_P (regend[regno]))
6846                      ? regend[regno] : end_match_1);
6847             for (;;)
6848               {
6849                 /* If necessary, advance to next segment in register
6850                    contents.  */
6851                 while (d2 == dend2)
6852                   {
6853                     if (dend2 == end_match_2) break;
6854                     if (dend2 == regend[regno]) break;
6855
6856                     /* End of string1 => advance to string2. */
6857                     d2 = string2;
6858                     dend2 = regend[regno];
6859                   }
6860                 /* At end of register contents => success */
6861                 if (d2 == dend2) break;
6862
6863                 /* If necessary, advance to next segment in data.  */
6864                 PREFETCH ();
6865
6866                 /* How many characters left in this segment to match.  */
6867                 mcnt = dend - d;
6868
6869                 /* Want how many consecutive characters we can match in
6870                    one shot, so, if necessary, adjust the count.  */
6871                 if (mcnt > dend2 - d2)
6872                   mcnt = dend2 - d2;
6873
6874                 /* Compare that many; failure if mismatch, else move
6875                    past them.  */
6876                 if (translate
6877                     ? PREFIX(bcmp_translate) (d, d2, mcnt, translate)
6878                     : memcmp (d, d2, mcnt*sizeof(UCHAR_T)))
6879                   goto fail;
6880                 d += mcnt, d2 += mcnt;
6881
6882                 /* Do this because we've match some characters.  */
6883                 SET_REGS_MATCHED ();
6884               }
6885           }
6886           NEXT;
6887
6888
6889         /* begline matches the empty string at the beginning of the string
6890            (unless `not_bol' is set in `bufp'), and, if
6891            `newline_anchor' is set, after newlines.  */
6892         CASE (begline):
6893           DEBUG_PRINT1 ("EXECUTING begline.\n");
6894
6895           if (AT_STRINGS_BEG (d))
6896             {
6897               if (!bufp->not_bol)
6898                 {
6899                   NEXT;
6900                 }
6901             }
6902           else if (d[-1] == '\n' && bufp->newline_anchor)
6903             {
6904               NEXT;
6905             }
6906           /* In all other cases, we fail.  */
6907           goto fail;
6908
6909
6910         /* endline is the dual of begline.  */
6911         CASE (endline):
6912           DEBUG_PRINT1 ("EXECUTING endline.\n");
6913
6914           if (AT_STRINGS_END (d))
6915             {
6916               if (!bufp->not_eol)
6917                 {
6918                   NEXT;
6919                 }
6920             }
6921
6922           /* We have to ``prefetch'' the next character.  */
6923           else if ((d == end1 ? *string2 : *d) == '\n'
6924                    && bufp->newline_anchor)
6925             {
6926               NEXT;
6927             }
6928           goto fail;
6929
6930
6931         /* Match at the very beginning of the data.  */
6932         CASE (begbuf):
6933           DEBUG_PRINT1 ("EXECUTING begbuf.\n");
6934           if (AT_STRINGS_BEG (d))
6935             {
6936               NEXT;
6937             }
6938           goto fail;
6939
6940
6941         /* Match at the very end of the data.  */
6942         CASE (endbuf):
6943           DEBUG_PRINT1 ("EXECUTING endbuf.\n");
6944           if (AT_STRINGS_END (d))
6945             {
6946               NEXT;
6947             }
6948           goto fail;
6949
6950
6951         /* on_failure_keep_string_jump is used to optimize `.*\n'.  It
6952            pushes NULL as the value for the string on the stack.  Then
6953            `pop_failure_point' will keep the current value for the
6954            string, instead of restoring it.  To see why, consider
6955            matching `foo\nbar' against `.*\n'.  The .* matches the foo;
6956            then the . fails against the \n.  But the next thing we want
6957            to do is match the \n against the \n; if we restored the
6958            string value, we would be back at the foo.
6959
6960            Because this is used only in specific cases, we don't need to
6961            check all the things that `on_failure_jump' does, to make
6962            sure the right things get saved on the stack.  Hence we don't
6963            share its code.  The only reason to push anything on the
6964            stack at all is that otherwise we would have to change
6965            `anychar's code to do something besides goto fail in this
6966            case; that seems worse than this.  */
6967         CASE (on_failure_keep_string_jump):
6968           DEBUG_PRINT1 ("EXECUTING on_failure_keep_string_jump");
6969
6970           EXTRACT_NUMBER_AND_INCR (mcnt, p);
6971 #ifdef _LIBC
6972           DEBUG_PRINT3 (" %d (to %p):\n", mcnt, p + mcnt);
6973 #else
6974           DEBUG_PRINT3 (" %d (to 0x%x):\n", mcnt, p + mcnt);
6975 #endif
6976
6977           PUSH_FAILURE_POINT (p + mcnt, NULL, -2);
6978           NEXT;
6979
6980
6981         /* Uses of on_failure_jump:
6982
6983            Each alternative starts with an on_failure_jump that points
6984            to the beginning of the next alternative.  Each alternative
6985            except the last ends with a jump that in effect jumps past
6986            the rest of the alternatives.  (They really jump to the
6987            ending jump of the following alternative, because tensioning
6988            these jumps is a hassle.)
6989
6990            Repeats start with an on_failure_jump that points past both
6991            the repetition text and either the following jump or
6992            pop_failure_jump back to this on_failure_jump.  */
6993         CASE (on_failure_jump):
6994         on_failure:
6995           DEBUG_PRINT1 ("EXECUTING on_failure_jump");
6996
6997           EXTRACT_NUMBER_AND_INCR (mcnt, p);
6998 #ifdef _LIBC
6999           DEBUG_PRINT3 (" %d (to %p)", mcnt, p + mcnt);
7000 #else
7001           DEBUG_PRINT3 (" %d (to 0x%x)", mcnt, p + mcnt);
7002 #endif
7003
7004           /* If this on_failure_jump comes right before a group (i.e.,
7005              the original * applied to a group), save the information
7006              for that group and all inner ones, so that if we fail back
7007              to this point, the group's information will be correct.
7008              For example, in \(a*\)*\1, we need the preceding group,
7009              and in \(zz\(a*\)b*\)\2, we need the inner group.  */
7010
7011           /* We can't use `p' to check ahead because we push
7012              a failure point to `p + mcnt' after we do this.  */
7013           p1 = p;
7014
7015           /* We need to skip no_op's before we look for the
7016              start_memory in case this on_failure_jump is happening as
7017              the result of a completed succeed_n, as in \(a\)\{1,3\}b\1
7018              against aba.  */
7019           while (p1 < pend && (re_opcode_t) *p1 == no_op)
7020             p1++;
7021
7022           if (p1 < pend && (re_opcode_t) *p1 == start_memory)
7023             {
7024               /* We have a new highest active register now.  This will
7025                  get reset at the start_memory we are about to get to,
7026                  but we will have saved all the registers relevant to
7027                  this repetition op, as described above.  */
7028               highest_active_reg = *(p1 + 1) + *(p1 + 2);
7029               if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
7030                 lowest_active_reg = *(p1 + 1);
7031             }
7032
7033           DEBUG_PRINT1 (":\n");
7034           PUSH_FAILURE_POINT (p + mcnt, d, -2);
7035           NEXT;
7036
7037
7038         /* A smart repeat ends with `maybe_pop_jump'.
7039            We change it to either `pop_failure_jump' or `jump'.  */
7040         CASE (maybe_pop_jump):
7041           EXTRACT_NUMBER_AND_INCR (mcnt, p);
7042           DEBUG_PRINT2 ("EXECUTING maybe_pop_jump %d.\n", mcnt);
7043           {
7044             register UCHAR_T *p2 = p;
7045
7046             /* Compare the beginning of the repeat with what in the
7047                pattern follows its end. If we can establish that there
7048                is nothing that they would both match, i.e., that we
7049                would have to backtrack because of (as in, e.g., `a*a')
7050                then we can change to pop_failure_jump, because we'll
7051                never have to backtrack.
7052
7053                This is not true in the case of alternatives: in
7054                `(a|ab)*' we do need to backtrack to the `ab' alternative
7055                (e.g., if the string was `ab').  But instead of trying to
7056                detect that here, the alternative has put on a dummy
7057                failure point which is what we will end up popping.  */
7058
7059             /* Skip over open/close-group commands.
7060                If what follows this loop is a ...+ construct,
7061                look at what begins its body, since we will have to
7062                match at least one of that.  */
7063             while (1)
7064               {
7065                 if (p2 + 2 < pend
7066                     && ((re_opcode_t) *p2 == stop_memory
7067                         || (re_opcode_t) *p2 == start_memory))
7068                   p2 += 3;
7069                 else if (p2 + 2 + 2 * OFFSET_ADDRESS_SIZE < pend
7070                          && (re_opcode_t) *p2 == dummy_failure_jump)
7071                   p2 += 2 + 2 * OFFSET_ADDRESS_SIZE;
7072                 else
7073                   break;
7074               }
7075
7076             p1 = p + mcnt;
7077             /* p1[0] ... p1[2] are the `on_failure_jump' corresponding
7078                to the `maybe_finalize_jump' of this case.  Examine what
7079                follows.  */
7080
7081             /* If we're at the end of the pattern, we can change.  */
7082             if (p2 == pend)
7083               {
7084                 /* Consider what happens when matching ":\(.*\)"
7085                    against ":/".  I don't really understand this code
7086                    yet.  */
7087                 p[-(1+OFFSET_ADDRESS_SIZE)] = (UCHAR_T)
7088                   pop_failure_jump;
7089                 DEBUG_PRINT1
7090                   ("  End of pattern: change to `pop_failure_jump'.\n");
7091               }
7092
7093             else if ((re_opcode_t) *p2 == exactn
7094 #ifdef MBS_SUPPORT
7095                      || (re_opcode_t) *p2 == exactn_bin
7096 #endif
7097                      || (bufp->newline_anchor && (re_opcode_t) *p2 == endline))
7098               {
7099                 register UCHAR_T c
7100                   = *p2 == (UCHAR_T) endline ? '\n' : p2[2];
7101
7102                 if (((re_opcode_t) p1[1+OFFSET_ADDRESS_SIZE] == exactn
7103 #ifdef MBS_SUPPORT
7104                      || (re_opcode_t) p1[1+OFFSET_ADDRESS_SIZE] == exactn_bin
7105 #endif
7106                     ) && p1[3+OFFSET_ADDRESS_SIZE] != c)
7107                   {
7108                     p[-(1+OFFSET_ADDRESS_SIZE)] = (UCHAR_T)
7109                       pop_failure_jump;
7110 #ifdef WCHAR
7111                       DEBUG_PRINT3 ("  %C != %C => pop_failure_jump.\n",
7112                                     (wint_t) c,
7113                                     (wint_t) p1[3+OFFSET_ADDRESS_SIZE]);
7114 #else
7115                       DEBUG_PRINT3 ("  %c != %c => pop_failure_jump.\n",
7116                                     (char) c,
7117                                     (char) p1[3+OFFSET_ADDRESS_SIZE]);
7118 #endif
7119                   }
7120
7121 #ifndef WCHAR
7122                 else if ((re_opcode_t) p1[3] == charset
7123                          || (re_opcode_t) p1[3] == charset_not)
7124                   {
7125                     int not = (re_opcode_t) p1[3] == charset_not;
7126
7127                     if (c < (unsigned) (p1[4] * BYTEWIDTH)
7128                         && p1[5 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
7129                       not = !not;
7130
7131                     /* `not' is equal to 1 if c would match, which means
7132                         that we can't change to pop_failure_jump.  */
7133                     if (!not)
7134                       {
7135                         p[-3] = (unsigned char) pop_failure_jump;
7136                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
7137                       }
7138                   }
7139 #endif /* not WCHAR */
7140               }
7141 #ifndef WCHAR
7142             else if ((re_opcode_t) *p2 == charset)
7143               {
7144                 /* We win if the first character of the loop is not part
7145                    of the charset.  */
7146                 if ((re_opcode_t) p1[3] == exactn
7147                     && ! ((int) p2[1] * BYTEWIDTH > (int) p1[5]
7148                           && (p2[2 + p1[5] / BYTEWIDTH]
7149                               & (1 << (p1[5] % BYTEWIDTH)))))
7150                   {
7151                     p[-3] = (unsigned char) pop_failure_jump;
7152                     DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
7153                   }
7154
7155                 else if ((re_opcode_t) p1[3] == charset_not)
7156                   {
7157                     int idx;
7158                     /* We win if the charset_not inside the loop
7159                        lists every character listed in the charset after.  */
7160                     for (idx = 0; idx < (int) p2[1]; idx++)
7161                       if (! (p2[2 + idx] == 0
7162                              || (idx < (int) p1[4]
7163                                  && ((p2[2 + idx] & ~ p1[5 + idx]) == 0))))
7164                         break;
7165
7166                     if (idx == p2[1])
7167                       {
7168                         p[-3] = (unsigned char) pop_failure_jump;
7169                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
7170                       }
7171                   }
7172                 else if ((re_opcode_t) p1[3] == charset)
7173                   {
7174                     int idx;
7175                     /* We win if the charset inside the loop
7176                        has no overlap with the one after the loop.  */
7177                     for (idx = 0;
7178                          idx < (int) p2[1] && idx < (int) p1[4];
7179                          idx++)
7180                       if ((p2[2 + idx] & p1[5 + idx]) != 0)
7181                         break;
7182
7183                     if (idx == p2[1] || idx == p1[4])
7184                       {
7185                         p[-3] = (unsigned char) pop_failure_jump;
7186                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
7187                       }
7188                   }
7189               }
7190 #endif /* not WCHAR */
7191           }
7192           p -= OFFSET_ADDRESS_SIZE;     /* Point at relative address again.  */
7193           if ((re_opcode_t) p[-1] != pop_failure_jump)
7194             {
7195               p[-1] = (UCHAR_T) jump;
7196               DEBUG_PRINT1 ("  Match => jump.\n");
7197               goto unconditional_jump;
7198             }
7199         /* Note fall through.  */
7200
7201
7202         /* The end of a simple repeat has a pop_failure_jump back to
7203            its matching on_failure_jump, where the latter will push a
7204            failure point.  The pop_failure_jump takes off failure
7205            points put on by this pop_failure_jump's matching
7206            on_failure_jump; we got through the pattern to here from the
7207            matching on_failure_jump, so didn't fail.  */
7208         CASE (pop_failure_jump):
7209           {
7210             /* We need to pass separate storage for the lowest and
7211                highest registers, even though we don't care about the
7212                actual values.  Otherwise, we will restore only one
7213                register from the stack, since lowest will == highest in
7214                `pop_failure_point'.  */
7215             active_reg_t dummy_low_reg, dummy_high_reg;
7216             UCHAR_T *pdummy = NULL;
7217             const CHAR_T *sdummy = NULL;
7218
7219             DEBUG_PRINT1 ("EXECUTING pop_failure_jump.\n");
7220             POP_FAILURE_POINT (sdummy, pdummy,
7221                                dummy_low_reg, dummy_high_reg,
7222                                reg_dummy, reg_dummy, reg_info_dummy);
7223           }
7224           /* Note fall through.  */
7225
7226         unconditional_jump:
7227 #ifdef _LIBC
7228           DEBUG_PRINT2 ("\n%p: ", p);
7229 #else
7230           DEBUG_PRINT2 ("\n0x%x: ", p);
7231 #endif
7232           /* Note fall through.  */
7233
7234         /* Unconditionally jump (without popping any failure points).  */
7235         CASE (jump):
7236           EXTRACT_NUMBER_AND_INCR (mcnt, p);    /* Get the amount to jump.  */
7237           DEBUG_PRINT2 ("EXECUTING jump %d ", mcnt);
7238           p += mcnt;                            /* Do the jump.  */
7239 #ifdef _LIBC
7240           DEBUG_PRINT2 ("(to %p).\n", p);
7241 #else
7242           DEBUG_PRINT2 ("(to 0x%x).\n", p);
7243 #endif
7244           NEXT;
7245
7246
7247         /* We need this opcode so we can detect where alternatives end
7248            in `group_match_null_string_p' et al.  */
7249         CASE (jump_past_alt):
7250           DEBUG_PRINT1 ("EXECUTING jump_past_alt.\n");
7251           goto unconditional_jump;
7252
7253
7254         /* Normally, the on_failure_jump pushes a failure point, which
7255            then gets popped at pop_failure_jump.  We will end up at
7256            pop_failure_jump, also, and with a pattern of, say, `a+', we
7257            are skipping over the on_failure_jump, so we have to push
7258            something meaningless for pop_failure_jump to pop.  */
7259         CASE (dummy_failure_jump):
7260           DEBUG_PRINT1 ("EXECUTING dummy_failure_jump.\n");
7261           /* It doesn't matter what we push for the string here.  What
7262              the code at `fail' tests is the value for the pattern.  */
7263           PUSH_FAILURE_POINT (NULL, NULL, -2);
7264           goto unconditional_jump;
7265
7266
7267         /* At the end of an alternative, we need to push a dummy failure
7268            point in case we are followed by a `pop_failure_jump', because
7269            we don't want the failure point for the alternative to be
7270            popped.  For example, matching `(a|ab)*' against `aab'
7271            requires that we match the `ab' alternative.  */
7272         CASE (push_dummy_failure):
7273           DEBUG_PRINT1 ("EXECUTING push_dummy_failure.\n");
7274           /* See comments just above at `dummy_failure_jump' about the
7275              two zeroes.  */
7276           PUSH_FAILURE_POINT (NULL, NULL, -2);
7277           NEXT;
7278
7279         /* Have to succeed matching what follows at least n times.
7280            After that, handle like `on_failure_jump'.  */
7281         CASE (succeed_n):
7282           EXTRACT_NUMBER (mcnt, p + OFFSET_ADDRESS_SIZE);
7283           DEBUG_PRINT2 ("EXECUTING succeed_n %d.\n", mcnt);
7284
7285           assert (mcnt >= 0);
7286           /* Originally, this is how many times we HAVE to succeed.  */
7287           if (mcnt > 0)
7288             {
7289                mcnt--;
7290                p += OFFSET_ADDRESS_SIZE;
7291                STORE_NUMBER_AND_INCR (p, mcnt);
7292 #ifdef _LIBC
7293                DEBUG_PRINT3 ("  Setting %p to %d.\n", p - OFFSET_ADDRESS_SIZE
7294                              , mcnt);
7295 #else
7296                DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p - OFFSET_ADDRESS_SIZE
7297                              , mcnt);
7298 #endif
7299             }
7300           else if (mcnt == 0)
7301             {
7302 #ifdef _LIBC
7303               DEBUG_PRINT2 ("  Setting two bytes from %p to no_op.\n",
7304                             p + OFFSET_ADDRESS_SIZE);
7305 #else
7306               DEBUG_PRINT2 ("  Setting two bytes from 0x%x to no_op.\n",
7307                             p + OFFSET_ADDRESS_SIZE);
7308 #endif /* _LIBC */
7309
7310 #ifdef WCHAR
7311               p[1] = (UCHAR_T) no_op;
7312 #else
7313               p[2] = (UCHAR_T) no_op;
7314               p[3] = (UCHAR_T) no_op;
7315 #endif /* WCHAR */
7316               goto on_failure;
7317             }
7318           NEXT;
7319
7320         CASE (jump_n):
7321           EXTRACT_NUMBER (mcnt, p + OFFSET_ADDRESS_SIZE);
7322           DEBUG_PRINT2 ("EXECUTING jump_n %d.\n", mcnt);
7323
7324           /* Originally, this is how many times we CAN jump.  */
7325           if (mcnt)
7326             {
7327                mcnt--;
7328                STORE_NUMBER (p + OFFSET_ADDRESS_SIZE, mcnt);
7329
7330 #ifdef _LIBC
7331                DEBUG_PRINT3 ("  Setting %p to %d.\n", p + OFFSET_ADDRESS_SIZE,
7332                              mcnt);
7333 #else
7334                DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p + OFFSET_ADDRESS_SIZE,
7335                              mcnt);
7336 #endif /* _LIBC */
7337                goto unconditional_jump;
7338             }
7339           /* If don't have to jump any more, skip over the rest of command.  */
7340           else
7341             p += 2 * OFFSET_ADDRESS_SIZE;
7342           NEXT;
7343
7344         CASE (set_number_at):
7345           {
7346             DEBUG_PRINT1 ("EXECUTING set_number_at.\n");
7347
7348             EXTRACT_NUMBER_AND_INCR (mcnt, p);
7349             p1 = p + mcnt;
7350             EXTRACT_NUMBER_AND_INCR (mcnt, p);
7351 #ifdef _LIBC
7352             DEBUG_PRINT3 ("  Setting %p to %d.\n", p1, mcnt);
7353 #else
7354             DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p1, mcnt);
7355 #endif
7356             STORE_NUMBER (p1, mcnt);
7357             NEXT;
7358           }
7359
7360 #if 0
7361         /* The DEC Alpha C compiler 3.x generates incorrect code for the
7362            test  WORDCHAR_P (d - 1) != WORDCHAR_P (d)  in the expansion of
7363            AT_WORD_BOUNDARY, so this code is disabled.  Expanding the
7364            macro and introducing temporary variables works around the bug.  */
7365
7366         CASE (wordbound):
7367           DEBUG_PRINT1 ("EXECUTING wordbound.\n");
7368           if (AT_WORD_BOUNDARY (d))
7369             {
7370               NEXT;
7371             }
7372           goto fail;
7373
7374         CASE (notwordbound):
7375           DEBUG_PRINT1 ("EXECUTING notwordbound.\n");
7376           if (AT_WORD_BOUNDARY (d))
7377             goto fail;
7378           NEXT;
7379 #else
7380         CASE (wordbound):
7381         {
7382           boolean prevchar, thischar;
7383
7384           DEBUG_PRINT1 ("EXECUTING wordbound.\n");
7385           if (AT_STRINGS_BEG (d) || AT_STRINGS_END (d))
7386             {
7387               NEXT;
7388             }
7389
7390           prevchar = WORDCHAR_P (d - 1);
7391           thischar = WORDCHAR_P (d);
7392           if (prevchar != thischar)
7393             {
7394               NEXT;
7395             }
7396           goto fail;
7397         }
7398
7399       CASE (notwordbound):
7400         {
7401           boolean prevchar, thischar;
7402
7403           DEBUG_PRINT1 ("EXECUTING notwordbound.\n");
7404           if (AT_STRINGS_BEG (d) || AT_STRINGS_END (d))
7405             goto fail;
7406
7407           prevchar = WORDCHAR_P (d - 1);
7408           thischar = WORDCHAR_P (d);
7409           if (prevchar != thischar)
7410             goto fail;
7411           NEXT;
7412         }
7413 #endif
7414
7415         CASE (wordbeg):
7416           DEBUG_PRINT1 ("EXECUTING wordbeg.\n");
7417           if (!AT_STRINGS_END (d) && WORDCHAR_P (d)
7418               && (AT_STRINGS_BEG (d) || !WORDCHAR_P (d - 1)))
7419             {
7420               NEXT;
7421             }
7422           goto fail;
7423
7424         CASE (wordend):
7425           DEBUG_PRINT1 ("EXECUTING wordend.\n");
7426           if (!AT_STRINGS_BEG (d) && WORDCHAR_P (d - 1)
7427               && (AT_STRINGS_END (d) || !WORDCHAR_P (d)))
7428             {
7429               NEXT;
7430             }
7431           goto fail;
7432
7433 #ifdef emacs
7434         CASE (before_dot):
7435           DEBUG_PRINT1 ("EXECUTING before_dot.\n");
7436           if (PTR_CHAR_POS ((unsigned char *) d) >= point)
7437             goto fail;
7438           NEXT;
7439
7440         CASE (at_dot):
7441           DEBUG_PRINT1 ("EXECUTING at_dot.\n");
7442           if (PTR_CHAR_POS ((unsigned char *) d) != point)
7443             goto fail;
7444           NEXT;
7445
7446         CASE (after_dot):
7447           DEBUG_PRINT1 ("EXECUTING after_dot.\n");
7448           if (PTR_CHAR_POS ((unsigned char *) d) <= point)
7449             goto fail;
7450           NEXT;
7451
7452         CASE (syntaxspec):
7453           DEBUG_PRINT2 ("EXECUTING syntaxspec %d.\n", mcnt);
7454           mcnt = *p++;
7455           goto matchsyntax;
7456
7457         CASE (wordchar):
7458           DEBUG_PRINT1 ("EXECUTING Emacs wordchar.\n");
7459           mcnt = (int) Sword;
7460         matchsyntax:
7461           PREFETCH ();
7462           /* Can't use *d++ here; SYNTAX may be an unsafe macro.  */
7463           d++;
7464           if (SYNTAX (d[-1]) != (enum syntaxcode) mcnt)
7465             goto fail;
7466           SET_REGS_MATCHED ();
7467           NEXT;
7468
7469         CASE (notsyntaxspec):
7470           DEBUG_PRINT2 ("EXECUTING notsyntaxspec %d.\n", mcnt);
7471           mcnt = *p++;
7472           goto matchnotsyntax;
7473
7474         CASE (notwordchar):
7475           DEBUG_PRINT1 ("EXECUTING Emacs notwordchar.\n");
7476           mcnt = (int) Sword;
7477         matchnotsyntax:
7478           PREFETCH ();
7479           /* Can't use *d++ here; SYNTAX may be an unsafe macro.  */
7480           d++;
7481           if (SYNTAX (d[-1]) == (enum syntaxcode) mcnt)
7482             goto fail;
7483           SET_REGS_MATCHED ();
7484           NEXT;
7485
7486 #else /* not emacs */
7487         CASE (wordchar):
7488           DEBUG_PRINT1 ("EXECUTING non-Emacs wordchar.\n");
7489           PREFETCH ();
7490           if (!WORDCHAR_P (d))
7491             goto fail;
7492           SET_REGS_MATCHED ();
7493           d++;
7494           NEXT;
7495
7496         CASE (notwordchar):
7497           DEBUG_PRINT1 ("EXECUTING non-Emacs notwordchar.\n");
7498           PREFETCH ();
7499           if (WORDCHAR_P (d))
7500             goto fail;
7501           SET_REGS_MATCHED ();
7502           d++;
7503           NEXT;
7504 #endif /* not emacs */
7505
7506 #ifndef __GNUC__
7507         default:
7508           abort ();
7509         }
7510       continue;  /* Successfully executed one pattern command; keep going.  */
7511 #endif
7512
7513
7514     /* We goto here if a matching operation fails. */
7515     fail:
7516       if (!FAIL_STACK_EMPTY ())
7517         { /* A restart point is known.  Restore to that state.  */
7518           DEBUG_PRINT1 ("\nFAIL:\n");
7519           POP_FAILURE_POINT (d, p,
7520                              lowest_active_reg, highest_active_reg,
7521                              regstart, regend, reg_info);
7522
7523           /* If this failure point is a dummy, try the next one.  */
7524           if (!p)
7525             goto fail;
7526
7527           /* If we failed to the end of the pattern, don't examine *p.  */
7528           assert (p <= pend);
7529           if (p < pend)
7530             {
7531               boolean is_a_jump_n = false;
7532
7533               /* If failed to a backwards jump that's part of a repetition
7534                  loop, need to pop this failure point and use the next one.  */
7535               switch ((re_opcode_t) *p)
7536                 {
7537                 case jump_n:
7538                   is_a_jump_n = true;
7539                 case maybe_pop_jump:
7540                 case pop_failure_jump:
7541                 case jump:
7542                   p1 = p + 1;
7543                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7544                   p1 += mcnt;
7545
7546                   if ((is_a_jump_n && (re_opcode_t) *p1 == succeed_n)
7547                       || (!is_a_jump_n
7548                           && (re_opcode_t) *p1 == on_failure_jump))
7549                     goto fail;
7550                   break;
7551                 default:
7552                   /* do nothing */ ;
7553                 }
7554             }
7555
7556           if (d >= string1 && d <= end1)
7557             dend = end_match_1;
7558         }
7559       else
7560         break;   /* Matching at this starting point really fails.  */
7561     } /* for (;;) */
7562
7563   if (best_regs_set)
7564     goto restore_best_regs;
7565
7566   FREE_VARIABLES ();
7567
7568   return -1;                            /* Failure to match.  */
7569 } /* re_match_2 */
7570 \f
7571 /* Subroutine definitions for re_match_2.  */
7572
7573
7574 /* We are passed P pointing to a register number after a start_memory.
7575
7576    Return true if the pattern up to the corresponding stop_memory can
7577    match the empty string, and false otherwise.
7578
7579    If we find the matching stop_memory, sets P to point to one past its number.
7580    Otherwise, sets P to an undefined byte less than or equal to END.
7581
7582    We don't handle duplicates properly (yet).  */
7583
7584 static boolean
7585 PREFIX(group_match_null_string_p) (UCHAR_T **p, UCHAR_T *end,
7586                                    PREFIX(register_info_type) *reg_info)
7587 {
7588   int mcnt;
7589   /* Point to after the args to the start_memory.  */
7590   UCHAR_T *p1 = *p + 2;
7591
7592   while (p1 < end)
7593     {
7594       /* Skip over opcodes that can match nothing, and return true or
7595          false, as appropriate, when we get to one that can't, or to the
7596          matching stop_memory.  */
7597
7598       switch ((re_opcode_t) *p1)
7599         {
7600         /* Could be either a loop or a series of alternatives.  */
7601         case on_failure_jump:
7602           p1++;
7603           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7604
7605           /* If the next operation is not a jump backwards in the
7606              pattern.  */
7607
7608           if (mcnt >= 0)
7609             {
7610               /* Go through the on_failure_jumps of the alternatives,
7611                  seeing if any of the alternatives cannot match nothing.
7612                  The last alternative starts with only a jump,
7613                  whereas the rest start with on_failure_jump and end
7614                  with a jump, e.g., here is the pattern for `a|b|c':
7615
7616                  /on_failure_jump/0/6/exactn/1/a/jump_past_alt/0/6
7617                  /on_failure_jump/0/6/exactn/1/b/jump_past_alt/0/3
7618                  /exactn/1/c
7619
7620                  So, we have to first go through the first (n-1)
7621                  alternatives and then deal with the last one separately.  */
7622
7623
7624               /* Deal with the first (n-1) alternatives, which start
7625                  with an on_failure_jump (see above) that jumps to right
7626                  past a jump_past_alt.  */
7627
7628               while ((re_opcode_t) p1[mcnt-(1+OFFSET_ADDRESS_SIZE)] ==
7629                      jump_past_alt)
7630                 {
7631                   /* `mcnt' holds how many bytes long the alternative
7632                      is, including the ending `jump_past_alt' and
7633                      its number.  */
7634
7635                   if (!PREFIX(alt_match_null_string_p) (p1, p1 + mcnt -
7636                                                 (1 + OFFSET_ADDRESS_SIZE),
7637                                                 reg_info))
7638                     return false;
7639
7640                   /* Move to right after this alternative, including the
7641                      jump_past_alt.  */
7642                   p1 += mcnt;
7643
7644                   /* Break if it's the beginning of an n-th alternative
7645                      that doesn't begin with an on_failure_jump.  */
7646                   if ((re_opcode_t) *p1 != on_failure_jump)
7647                     break;
7648
7649                   /* Still have to check that it's not an n-th
7650                      alternative that starts with an on_failure_jump.  */
7651                   p1++;
7652                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7653                   if ((re_opcode_t) p1[mcnt-(1+OFFSET_ADDRESS_SIZE)] !=
7654                       jump_past_alt)
7655                     {
7656                       /* Get to the beginning of the n-th alternative.  */
7657                       p1 -= 1 + OFFSET_ADDRESS_SIZE;
7658                       break;
7659                     }
7660                 }
7661
7662               /* Deal with the last alternative: go back and get number
7663                  of the `jump_past_alt' just before it.  `mcnt' contains
7664                  the length of the alternative.  */
7665               EXTRACT_NUMBER (mcnt, p1 - OFFSET_ADDRESS_SIZE);
7666
7667               if (!PREFIX(alt_match_null_string_p) (p1, p1 + mcnt, reg_info))
7668                 return false;
7669
7670               p1 += mcnt;       /* Get past the n-th alternative.  */
7671             } /* if mcnt > 0 */
7672           break;
7673
7674
7675         case stop_memory:
7676           assert (p1[1] == **p);
7677           *p = p1 + 2;
7678           return true;
7679
7680
7681         default:
7682           if (!PREFIX(common_op_match_null_string_p) (&p1, end, reg_info))
7683             return false;
7684         }
7685     } /* while p1 < end */
7686
7687   return false;
7688 } /* group_match_null_string_p */
7689
7690
7691 /* Similar to group_match_null_string_p, but doesn't deal with alternatives:
7692    It expects P to be the first byte of a single alternative and END one
7693    byte past the last. The alternative can contain groups.  */
7694
7695 static boolean
7696 PREFIX(alt_match_null_string_p) (UCHAR_T *p, UCHAR_T *end,
7697                                  PREFIX(register_info_type) *reg_info)
7698 {
7699   int mcnt;
7700   UCHAR_T *p1 = p;
7701
7702   while (p1 < end)
7703     {
7704       /* Skip over opcodes that can match nothing, and break when we get
7705          to one that can't.  */
7706
7707       switch ((re_opcode_t) *p1)
7708         {
7709         /* It's a loop.  */
7710         case on_failure_jump:
7711           p1++;
7712           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7713           p1 += mcnt;
7714           break;
7715
7716         default:
7717           if (!PREFIX(common_op_match_null_string_p) (&p1, end, reg_info))
7718             return false;
7719         }
7720     }  /* while p1 < end */
7721
7722   return true;
7723 } /* alt_match_null_string_p */
7724
7725
7726 /* Deals with the ops common to group_match_null_string_p and
7727    alt_match_null_string_p.
7728
7729    Sets P to one after the op and its arguments, if any.  */
7730
7731 static boolean
7732 PREFIX(common_op_match_null_string_p) (UCHAR_T **p, UCHAR_T *end,
7733                                        PREFIX(register_info_type) *reg_info)
7734 {
7735   int mcnt;
7736   boolean ret;
7737   int reg_no;
7738   UCHAR_T *p1 = *p;
7739
7740   switch ((re_opcode_t) *p1++)
7741     {
7742     case no_op:
7743     case begline:
7744     case endline:
7745     case begbuf:
7746     case endbuf:
7747     case wordbeg:
7748     case wordend:
7749     case wordbound:
7750     case notwordbound:
7751 #ifdef emacs
7752     case before_dot:
7753     case at_dot:
7754     case after_dot:
7755 #endif
7756       break;
7757
7758     case start_memory:
7759       reg_no = *p1;
7760       assert (reg_no > 0 && reg_no <= MAX_REGNUM);
7761       ret = PREFIX(group_match_null_string_p) (&p1, end, reg_info);
7762
7763       /* Have to set this here in case we're checking a group which
7764          contains a group and a back reference to it.  */
7765
7766       if (REG_MATCH_NULL_STRING_P (reg_info[reg_no]) == MATCH_NULL_UNSET_VALUE)
7767         REG_MATCH_NULL_STRING_P (reg_info[reg_no]) = ret;
7768
7769       if (!ret)
7770         return false;
7771       break;
7772
7773     /* If this is an optimized succeed_n for zero times, make the jump.  */
7774     case jump:
7775       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7776       if (mcnt >= 0)
7777         p1 += mcnt;
7778       else
7779         return false;
7780       break;
7781
7782     case succeed_n:
7783       /* Get to the number of times to succeed.  */
7784       p1 += OFFSET_ADDRESS_SIZE;
7785       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7786
7787       if (mcnt == 0)
7788         {
7789           p1 -= 2 * OFFSET_ADDRESS_SIZE;
7790           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7791           p1 += mcnt;
7792         }
7793       else
7794         return false;
7795       break;
7796
7797     case duplicate:
7798       if (!REG_MATCH_NULL_STRING_P (reg_info[*p1]))
7799         return false;
7800       break;
7801
7802     case set_number_at:
7803       p1 += 2 * OFFSET_ADDRESS_SIZE;
7804
7805     default:
7806       /* All other opcodes mean we cannot match the empty string.  */
7807       return false;
7808   }
7809
7810   *p = p1;
7811   return true;
7812 } /* common_op_match_null_string_p */
7813
7814
7815 /* Return zero if TRANSLATE[S1] and TRANSLATE[S2] are identical for LEN
7816    bytes; nonzero otherwise.  */
7817
7818 static int
7819 PREFIX(bcmp_translate) (const CHAR_T *s1, const CHAR_T *s2,
7820                         register int len,
7821                         RE_TRANSLATE_TYPE translate)
7822 {
7823   register const UCHAR_T *p1 = (const UCHAR_T *) s1;
7824   register const UCHAR_T *p2 = (const UCHAR_T *) s2;
7825   while (len)
7826     {
7827 #ifdef WCHAR
7828       if (((*p1<=0xff)?translate[*p1++]:*p1++)
7829           != ((*p2<=0xff)?translate[*p2++]:*p2++))
7830         return 1;
7831 #else /* BYTE */
7832       if (translate[*p1++] != translate[*p2++]) return 1;
7833 #endif /* WCHAR */
7834       len--;
7835     }
7836   return 0;
7837 }
7838 \f
7839
7840 #else /* not INSIDE_RECURSION */
7841
7842 /* Entry points for GNU code.  */
7843
7844 /* re_compile_pattern is the GNU regular expression compiler: it
7845    compiles PATTERN (of length SIZE) and puts the result in BUFP.
7846    Returns 0 if the pattern was valid, otherwise an error string.
7847
7848    Assumes the `allocated' (and perhaps `buffer') and `translate' fields
7849    are set in BUFP on entry.
7850
7851    We call regex_compile to do the actual compilation.  */
7852
7853 const char *
7854 re_compile_pattern (const char *pattern,
7855                     size_t length,
7856                     struct re_pattern_buffer *bufp)
7857 {
7858   reg_errcode_t ret;
7859
7860   /* GNU code is written to assume at least RE_NREGS registers will be set
7861      (and at least one extra will be -1).  */
7862   bufp->regs_allocated = REGS_UNALLOCATED;
7863
7864   /* And GNU code determines whether or not to get register information
7865      by passing null for the REGS argument to re_match, etc., not by
7866      setting no_sub.  */
7867   bufp->no_sub = 0;
7868
7869   /* Match anchors at newline.  */
7870   bufp->newline_anchor = 1;
7871
7872 # ifdef MBS_SUPPORT
7873   if (MB_CUR_MAX != 1)
7874     ret = wcs_regex_compile (pattern, length, re_syntax_options, bufp);
7875   else
7876 # endif
7877     ret = byte_regex_compile (pattern, length, re_syntax_options, bufp);
7878
7879   if (!ret)
7880     return NULL;
7881   return gettext (re_error_msgid + re_error_msgid_idx[(int) ret]);
7882 }
7883 #ifdef _LIBC
7884 weak_alias (__re_compile_pattern, re_compile_pattern)
7885 #endif
7886 \f
7887 /* Entry points compatible with 4.2 BSD regex library.  We don't define
7888    them unless specifically requested.  */
7889
7890 #if defined _REGEX_RE_COMP || defined _LIBC
7891
7892 /* BSD has one and only one pattern buffer.  */
7893 static struct re_pattern_buffer re_comp_buf;
7894
7895 char *
7896 #ifdef _LIBC
7897 /* Make these definitions weak in libc, so POSIX programs can redefine
7898    these names if they don't use our functions, and still use
7899    regcomp/regexec below without link errors.  */
7900 weak_function
7901 #endif
7902 re_comp (const char *s)
7903 {
7904   reg_errcode_t ret;
7905
7906   if (!s)
7907     {
7908       if (!re_comp_buf.buffer)
7909         return gettext ("No previous regular expression");
7910       return 0;
7911     }
7912
7913   if (!re_comp_buf.buffer)
7914     {
7915       re_comp_buf.buffer = malloc (200);
7916       if (re_comp_buf.buffer == NULL)
7917         return (char *) gettext (re_error_msgid
7918                                  + re_error_msgid_idx[(int) REG_ESPACE]);
7919       re_comp_buf.allocated = 200;
7920
7921       re_comp_buf.fastmap = malloc (1 << BYTEWIDTH);
7922       if (re_comp_buf.fastmap == NULL)
7923         return (char *) gettext (re_error_msgid
7924                                  + re_error_msgid_idx[(int) REG_ESPACE]);
7925     }
7926
7927   /* Since `re_exec' always passes NULL for the `regs' argument, we
7928      don't need to initialize the pattern buffer fields which affect it.  */
7929
7930   /* Match anchors at newlines.  */
7931   re_comp_buf.newline_anchor = 1;
7932
7933 # ifdef MBS_SUPPORT
7934   if (MB_CUR_MAX != 1)
7935     ret = wcs_regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
7936   else
7937 # endif
7938     ret = byte_regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
7939
7940   if (!ret)
7941     return NULL;
7942
7943   /* Yes, we're discarding `const' here if !HAVE_LIBINTL.  */
7944   return (char *) gettext (re_error_msgid + re_error_msgid_idx[(int) ret]);
7945 }
7946
7947
7948 int
7949 #ifdef _LIBC
7950 weak_function
7951 #endif
7952 re_exec (const char *s)
7953 {
7954   const int len = strlen (s);
7955   return
7956     0 <= re_search (&re_comp_buf, s, len, 0, len, 0);
7957 }
7958
7959 #endif /* _REGEX_RE_COMP */
7960 \f
7961 /* POSIX.2 functions.  Don't define these for Emacs.  */
7962
7963 #ifndef emacs
7964
7965 /* regcomp takes a regular expression as a string and compiles it.
7966
7967    PREG is a regex_t *.  We do not expect any fields to be initialized,
7968    since POSIX says we shouldn't.  Thus, we set
7969
7970      `buffer' to the compiled pattern;
7971      `used' to the length of the compiled pattern;
7972      `syntax' to RE_SYNTAX_POSIX_EXTENDED if the
7973        REG_EXTENDED bit in CFLAGS is set; otherwise, to
7974        RE_SYNTAX_POSIX_BASIC;
7975      `newline_anchor' to REG_NEWLINE being set in CFLAGS;
7976      `fastmap' to an allocated space for the fastmap;
7977      `fastmap_accurate' to zero;
7978      `re_nsub' to the number of subexpressions in PATTERN.
7979
7980    PATTERN is the address of the pattern string.
7981
7982    CFLAGS is a series of bits which affect compilation.
7983
7984      If REG_EXTENDED is set, we use POSIX extended syntax; otherwise, we
7985      use POSIX basic syntax.
7986
7987      If REG_NEWLINE is set, then . and [^...] don't match newline.
7988      Also, regexec will try a match beginning after every newline.
7989
7990      If REG_ICASE is set, then we considers upper- and lowercase
7991      versions of letters to be equivalent when matching.
7992
7993      If REG_NOSUB is set, then when PREG is passed to regexec, that
7994      routine will report only success or failure, and nothing about the
7995      registers.
7996
7997    It returns 0 if it succeeds, nonzero if it doesn't.  (See regex.h for
7998    the return codes and their meanings.)  */
7999
8000 int
8001 regcomp (regex_t *preg, const char *pattern, int cflags)
8002 {
8003   reg_errcode_t ret;
8004   reg_syntax_t syntax
8005     = (cflags & REG_EXTENDED) ?
8006       RE_SYNTAX_POSIX_EXTENDED : RE_SYNTAX_POSIX_BASIC;
8007
8008   /* regex_compile will allocate the space for the compiled pattern.  */
8009   preg->buffer = 0;
8010   preg->allocated = 0;
8011   preg->used = 0;
8012
8013   /* Try to allocate space for the fastmap.  */
8014   preg->fastmap = malloc (1 << BYTEWIDTH);
8015
8016   if (cflags & REG_ICASE)
8017     {
8018       unsigned i;
8019
8020       preg->translate = malloc (CHAR_SET_SIZE
8021                                 * sizeof (*(RE_TRANSLATE_TYPE)0));
8022       if (preg->translate == NULL)
8023         return (int) REG_ESPACE;
8024
8025       /* Map uppercase characters to corresponding lowercase ones.  */
8026       for (i = 0; i < CHAR_SET_SIZE; i++)
8027         preg->translate[i] = ISUPPER (i) ? TOLOWER (i) : i;
8028     }
8029   else
8030     preg->translate = NULL;
8031
8032   /* If REG_NEWLINE is set, newlines are treated differently.  */
8033   if (cflags & REG_NEWLINE)
8034     { /* REG_NEWLINE implies neither . nor [^...] match newline.  */
8035       syntax &= ~RE_DOT_NEWLINE;
8036       syntax |= RE_HAT_LISTS_NOT_NEWLINE;
8037       /* It also changes the matching behavior.  */
8038       preg->newline_anchor = 1;
8039     }
8040   else
8041     preg->newline_anchor = 0;
8042
8043   preg->no_sub = !!(cflags & REG_NOSUB);
8044
8045   /* POSIX says a null character in the pattern terminates it, so we
8046      can use strlen here in compiling the pattern.  */
8047 # ifdef MBS_SUPPORT
8048   if (MB_CUR_MAX != 1)
8049     ret = wcs_regex_compile (pattern, strlen (pattern), syntax, preg);
8050   else
8051 # endif
8052     ret = byte_regex_compile (pattern, strlen (pattern), syntax, preg);
8053
8054   /* POSIX doesn't distinguish between an unmatched open-group and an
8055      unmatched close-group: both are REG_EPAREN.  */
8056   if (ret == REG_ERPAREN) ret = REG_EPAREN;
8057
8058   if (ret == REG_NOERROR && preg->fastmap)
8059     {
8060       /* Compute the fastmap now, since regexec cannot modify the pattern
8061          buffer.  */
8062       if (re_compile_fastmap (preg) == -2)
8063         {
8064           /* Some error occurred while computing the fastmap, just forget
8065              about it.  */
8066           free (preg->fastmap);
8067           preg->fastmap = NULL;
8068         }
8069     }
8070
8071   return (int) ret;
8072 }
8073 #ifdef _LIBC
8074 weak_alias (__regcomp, regcomp)
8075 #endif
8076
8077
8078 /* regexec searches for a given pattern, specified by PREG, in the
8079    string STRING.
8080
8081    If NMATCH is zero or REG_NOSUB was set in the cflags argument to
8082    `regcomp', we ignore PMATCH.  Otherwise, we assume PMATCH has at
8083    least NMATCH elements, and we set them to the offsets of the
8084    corresponding matched substrings.
8085
8086    EFLAGS specifies `execution flags' which affect matching: if
8087    REG_NOTBOL is set, then ^ does not match at the beginning of the
8088    string; if REG_NOTEOL is set, then $ does not match at the end.
8089
8090    We return 0 if we find a match and REG_NOMATCH if not.  */
8091
8092 int
8093 regexec (const regex_t *preg, const char *string,
8094          size_t nmatch, regmatch_t pmatch[], int eflags)
8095 {
8096   int ret;
8097   struct re_registers regs;
8098   regex_t private_preg;
8099   int len = strlen (string);
8100   boolean want_reg_info = !preg->no_sub && nmatch > 0;
8101
8102   private_preg = *preg;
8103
8104   private_preg.not_bol = !!(eflags & REG_NOTBOL);
8105   private_preg.not_eol = !!(eflags & REG_NOTEOL);
8106
8107   /* The user has told us exactly how many registers to return
8108      information about, via `nmatch'.  We have to pass that on to the
8109      matching routines.  */
8110   private_preg.regs_allocated = REGS_FIXED;
8111
8112   if (want_reg_info)
8113     {
8114       regs.num_regs = nmatch;
8115       regs.start = TALLOC (nmatch * 2, regoff_t);
8116       if (regs.start == NULL)
8117         return (int) REG_NOMATCH;
8118       regs.end = regs.start + nmatch;
8119     }
8120
8121   /* Perform the searching operation.  */
8122   ret = re_search (&private_preg, string, len,
8123                    /* start: */ 0, /* range: */ len,
8124                    want_reg_info ? &regs : 0);
8125
8126   /* Copy the register information to the POSIX structure.  */
8127   if (want_reg_info)
8128     {
8129       if (ret >= 0)
8130         {
8131           unsigned r;
8132
8133           for (r = 0; r < nmatch; r++)
8134             {
8135               pmatch[r].rm_so = regs.start[r];
8136               pmatch[r].rm_eo = regs.end[r];
8137             }
8138         }
8139
8140       /* If we needed the temporary register info, free the space now.  */
8141       free (regs.start);
8142     }
8143
8144   /* We want zero return to mean success, unlike `re_search'.  */
8145   return ret >= 0 ? (int) REG_NOERROR : (int) REG_NOMATCH;
8146 }
8147 #ifdef _LIBC
8148 weak_alias (__regexec, regexec)
8149 #endif
8150
8151
8152 /* Returns a message corresponding to an error code, ERRCODE, returned
8153    from either regcomp or regexec.   We don't use PREG here.  */
8154
8155 size_t
8156 regerror (int errcode, const regex_t *preg, char *errbuf, size_t errbuf_size)
8157 {
8158   const char *msg;
8159   size_t msg_size;
8160
8161   if (errcode < 0
8162       || errcode >= (int) (sizeof (re_error_msgid_idx)
8163                            / sizeof (re_error_msgid_idx[0])))
8164     /* Only error codes returned by the rest of the code should be passed
8165        to this routine.  If we are given anything else, or if other regex
8166        code generates an invalid error code, then the program has a bug.
8167        Dump core so we can fix it.  */
8168     abort ();
8169
8170   msg = gettext (re_error_msgid + re_error_msgid_idx[errcode]);
8171
8172   msg_size = strlen (msg) + 1; /* Includes the null.  */
8173
8174   if (errbuf_size != 0)
8175     {
8176       if (msg_size > errbuf_size)
8177         {
8178 #if defined HAVE_MEMPCPY || defined _LIBC
8179           *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
8180 #else
8181           memcpy (errbuf, msg, errbuf_size - 1);
8182           errbuf[errbuf_size - 1] = 0;
8183 #endif
8184         }
8185       else
8186         memcpy (errbuf, msg, msg_size);
8187     }
8188
8189   return msg_size;
8190 }
8191 #ifdef _LIBC
8192 weak_alias (__regerror, regerror)
8193 #endif
8194
8195
8196 /* Free dynamically allocated space used by PREG.  */
8197
8198 void
8199 regfree (regex_t *preg)
8200 {
8201   if (preg->buffer != NULL)
8202     free (preg->buffer);
8203   preg->buffer = NULL;
8204
8205   preg->allocated = 0;
8206   preg->used = 0;
8207
8208   if (preg->fastmap != NULL)
8209     free (preg->fastmap);
8210   preg->fastmap = NULL;
8211   preg->fastmap_accurate = 0;
8212
8213   if (preg->translate != NULL)
8214     free (preg->translate);
8215   preg->translate = NULL;
8216 }
8217 #ifdef _LIBC
8218 weak_alias (__regfree, regfree)
8219 #endif
8220
8221 #endif /* not emacs  */
8222
8223 #endif /* not INSIDE_RECURSION */
8224
8225 \f
8226 #undef STORE_NUMBER
8227 #undef STORE_NUMBER_AND_INCR
8228 #undef EXTRACT_NUMBER
8229 #undef EXTRACT_NUMBER_AND_INCR
8230
8231 #undef DEBUG_PRINT_COMPILED_PATTERN
8232 #undef DEBUG_PRINT_DOUBLE_STRING
8233
8234 #undef INIT_FAIL_STACK
8235 #undef RESET_FAIL_STACK
8236 #undef DOUBLE_FAIL_STACK
8237 #undef PUSH_PATTERN_OP
8238 #undef PUSH_FAILURE_POINTER
8239 #undef PUSH_FAILURE_INT
8240 #undef PUSH_FAILURE_ELT
8241 #undef POP_FAILURE_POINTER
8242 #undef POP_FAILURE_INT
8243 #undef POP_FAILURE_ELT
8244 #undef DEBUG_PUSH
8245 #undef DEBUG_POP
8246 #undef PUSH_FAILURE_POINT
8247 #undef POP_FAILURE_POINT
8248
8249 #undef REG_UNSET_VALUE
8250 #undef REG_UNSET
8251
8252 #undef PATFETCH
8253 #undef PATFETCH_RAW
8254 #undef PATUNFETCH
8255 #undef TRANSLATE
8256
8257 #undef INIT_BUF_SIZE
8258 #undef GET_BUFFER_SPACE
8259 #undef BUF_PUSH
8260 #undef BUF_PUSH_2
8261 #undef BUF_PUSH_3
8262 #undef STORE_JUMP
8263 #undef STORE_JUMP2
8264 #undef INSERT_JUMP
8265 #undef INSERT_JUMP2
8266 #undef EXTEND_BUFFER
8267 #undef GET_UNSIGNED_NUMBER
8268 #undef FREE_STACK_RETURN
8269
8270 # undef POINTER_TO_OFFSET
8271 # undef MATCHING_IN_FRST_STRING
8272 # undef PREFETCH
8273 # undef AT_STRINGS_BEG
8274 # undef AT_STRINGS_END
8275 # undef WORDCHAR_P
8276 # undef FREE_VAR
8277 # undef FREE_VARIABLES
8278 # undef NO_HIGHEST_ACTIVE_REG
8279 # undef NO_LOWEST_ACTIVE_REG
8280
8281 # undef CHAR_T
8282 # undef UCHAR_T
8283 # undef COMPILED_BUFFER_VAR
8284 # undef OFFSET_ADDRESS_SIZE
8285 # undef CHAR_CLASS_SIZE
8286 # undef PREFIX
8287 # undef ARG_PREFIX
8288 # undef PUT_CHAR
8289 # undef BYTE
8290 # undef WCHAR
8291
8292 # define DEFINED_ONCE