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