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