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