Merge in changes for ConvexOS 11.0.
[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   fail_stack_elt_t *failure_stack_ptr;
2904
2905   /* Assume that each path through the pattern can be null until
2906      proven otherwise.  We set this false at the bottom of switch
2907      statement, to which we get only if a particular path doesn't
2908      match the empty string.  */
2909   boolean path_can_be_null = true;
2910
2911   /* We aren't doing a `succeed_n' to begin with.  */
2912   boolean succeed_n_p = false;
2913
2914   assert (fastmap != NULL && p != NULL);
2915   
2916   INIT_FAIL_STACK ();
2917   bzero (fastmap, 1 << BYTEWIDTH);  /* Assume nothing's valid.  */
2918   bufp->fastmap_accurate = 1;       /* It will be when we're done.  */
2919   bufp->can_be_null = 0;
2920       
2921   while (1)
2922     {
2923       if (p == pend || *p == succeed)
2924         {
2925           /* We have reached the (effective) end of pattern.  */
2926           if (!FAIL_STACK_EMPTY ())
2927             {
2928               bufp->can_be_null |= path_can_be_null;
2929
2930               /* Reset for next path.  */
2931               path_can_be_null = true;
2932
2933               p = fail_stack.stack[--fail_stack.avail].pointer;
2934
2935               continue;
2936             }
2937           else
2938             break;
2939         }
2940
2941       /* We should never be about to go beyond the end of the pattern.  */
2942       assert (p < pend);
2943       
2944       switch (SWITCH_ENUM_CAST ((re_opcode_t) *p++))
2945         {
2946
2947         /* I guess the idea here is to simply not bother with a fastmap
2948            if a backreference is used, since it's too hard to figure out
2949            the fastmap for the corresponding group.  Setting
2950            `can_be_null' stops `re_search_2' from using the fastmap, so
2951            that is all we do.  */
2952         case duplicate:
2953           bufp->can_be_null = 1;
2954           goto done;
2955
2956
2957       /* Following are the cases which match a character.  These end
2958          with `break'.  */
2959
2960         case exactn:
2961           fastmap[p[1]] = 1;
2962           break;
2963
2964
2965         case charset:
2966           for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
2967             if (p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH)))
2968               fastmap[j] = 1;
2969           break;
2970
2971
2972         case charset_not:
2973           /* Chars beyond end of map must be allowed.  */
2974           for (j = *p * BYTEWIDTH; j < (1 << BYTEWIDTH); j++)
2975             fastmap[j] = 1;
2976
2977           for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
2978             if (!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))))
2979               fastmap[j] = 1;
2980           break;
2981
2982
2983         case wordchar:
2984           for (j = 0; j < (1 << BYTEWIDTH); j++)
2985             if (SYNTAX (j) == Sword)
2986               fastmap[j] = 1;
2987           break;
2988
2989
2990         case notwordchar:
2991           for (j = 0; j < (1 << BYTEWIDTH); j++)
2992             if (SYNTAX (j) != Sword)
2993               fastmap[j] = 1;
2994           break;
2995
2996
2997         case anychar:
2998           {
2999             int fastmap_newline = fastmap['\n'];
3000
3001             /* `.' matches anything ...  */
3002             for (j = 0; j < (1 << BYTEWIDTH); j++)
3003               fastmap[j] = 1;
3004
3005             /* ... except perhaps newline.  */
3006             if (!(bufp->syntax & RE_DOT_NEWLINE))
3007               fastmap['\n'] = fastmap_newline;
3008
3009             /* Return if we have already set `can_be_null'; if we have,
3010                then the fastmap is irrelevant.  Something's wrong here.  */
3011             else if (bufp->can_be_null)
3012               goto done;
3013
3014             /* Otherwise, have to check alternative paths.  */
3015             break;
3016           }
3017
3018 #ifdef emacs
3019         case syntaxspec:
3020           k = *p++;
3021           for (j = 0; j < (1 << BYTEWIDTH); j++)
3022             if (SYNTAX (j) == (enum syntaxcode) k)
3023               fastmap[j] = 1;
3024           break;
3025
3026
3027         case notsyntaxspec:
3028           k = *p++;
3029           for (j = 0; j < (1 << BYTEWIDTH); j++)
3030             if (SYNTAX (j) != (enum syntaxcode) k)
3031               fastmap[j] = 1;
3032           break;
3033
3034
3035       /* All cases after this match the empty string.  These end with
3036          `continue'.  */
3037
3038
3039         case before_dot:
3040         case at_dot:
3041         case after_dot:
3042           continue;
3043 #endif /* emacs */
3044
3045
3046         case no_op:
3047         case begline:
3048         case endline:
3049         case begbuf:
3050         case endbuf:
3051         case wordbound:
3052         case notwordbound:
3053         case wordbeg:
3054         case wordend:
3055         case push_dummy_failure:
3056           continue;
3057
3058
3059         case jump_n:
3060         case pop_failure_jump:
3061         case maybe_pop_jump:
3062         case jump:
3063         case jump_past_alt:
3064         case dummy_failure_jump:
3065           EXTRACT_NUMBER_AND_INCR (j, p);
3066           p += j;       
3067           if (j > 0)
3068             continue;
3069             
3070           /* Jump backward implies we just went through the body of a
3071              loop and matched nothing.  Opcode jumped to should be
3072              `on_failure_jump' or `succeed_n'.  Just treat it like an
3073              ordinary jump.  For a * loop, it has pushed its failure
3074              point already; if so, discard that as redundant.  */
3075           if ((re_opcode_t) *p != on_failure_jump
3076               && (re_opcode_t) *p != succeed_n)
3077             continue;
3078
3079           p++;
3080           EXTRACT_NUMBER_AND_INCR (j, p);
3081           p += j;               
3082           
3083           /* If what's on the stack is where we are now, pop it.  */
3084           if (!FAIL_STACK_EMPTY () 
3085               && fail_stack.stack[fail_stack.avail - 1].pointer == p)
3086             fail_stack.avail--;
3087
3088           continue;
3089
3090
3091         case on_failure_jump:
3092         case on_failure_keep_string_jump:
3093         handle_on_failure_jump:
3094           EXTRACT_NUMBER_AND_INCR (j, p);
3095
3096           /* For some patterns, e.g., `(a?)?', `p+j' here points to the
3097              end of the pattern.  We don't want to push such a point,
3098              since when we restore it above, entering the switch will
3099              increment `p' past the end of the pattern.  We don't need
3100              to push such a point since we obviously won't find any more
3101              fastmap entries beyond `pend'.  Such a pattern can match
3102              the null string, though.  */
3103           if (p + j < pend)
3104             {
3105               if (!PUSH_PATTERN_OP (p + j, fail_stack))
3106                 {
3107                   RESET_FAIL_STACK ();
3108                   return -2;
3109                 }
3110             }
3111           else
3112             bufp->can_be_null = 1;
3113
3114           if (succeed_n_p)
3115             {
3116               EXTRACT_NUMBER_AND_INCR (k, p);   /* Skip the n.  */
3117               succeed_n_p = false;
3118             }
3119
3120           continue;
3121
3122
3123         case succeed_n:
3124           /* Get to the number of times to succeed.  */
3125           p += 2;               
3126
3127           /* Increment p past the n for when k != 0.  */
3128           EXTRACT_NUMBER_AND_INCR (k, p);
3129           if (k == 0)
3130             {
3131               p -= 4;
3132               succeed_n_p = true;  /* Spaghetti code alert.  */
3133               goto handle_on_failure_jump;
3134             }
3135           continue;
3136
3137
3138         case set_number_at:
3139           p += 4;
3140           continue;
3141
3142
3143         case start_memory:
3144         case stop_memory:
3145           p += 2;
3146           continue;
3147
3148
3149         default:
3150           abort (); /* We have listed all the cases.  */
3151         } /* switch *p++ */
3152
3153       /* Getting here means we have found the possible starting
3154          characters for one path of the pattern -- and that the empty
3155          string does not match.  We need not follow this path further.
3156          Instead, look at the next alternative (remembered on the
3157          stack), or quit if no more.  The test at the top of the loop
3158          does these things.  */
3159       path_can_be_null = false;
3160       p = pend;
3161     } /* while p */
3162
3163   /* Set `can_be_null' for the last path (also the first path, if the
3164      pattern is empty).  */
3165   bufp->can_be_null |= path_can_be_null;
3166
3167  done:
3168   RESET_FAIL_STACK ();
3169   return 0;
3170 } /* re_compile_fastmap */
3171 \f
3172 /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
3173    ENDS.  Subsequent matches using PATTERN_BUFFER and REGS will use
3174    this memory for recording register information.  STARTS and ENDS
3175    must be allocated using the malloc library routine, and must each
3176    be at least NUM_REGS * sizeof (regoff_t) bytes long.
3177
3178    If NUM_REGS == 0, then subsequent matches should allocate their own
3179    register data.
3180
3181    Unless this function is called, the first search or match using
3182    PATTERN_BUFFER will allocate its own register data, without
3183    freeing the old data.  */
3184
3185 void
3186 re_set_registers (bufp, regs, num_regs, starts, ends)
3187     struct re_pattern_buffer *bufp;
3188     struct re_registers *regs;
3189     unsigned num_regs;
3190     regoff_t *starts, *ends;
3191 {
3192   if (num_regs)
3193     {
3194       bufp->regs_allocated = REGS_REALLOCATE;
3195       regs->num_regs = num_regs;
3196       regs->start = starts;
3197       regs->end = ends;
3198     }
3199   else
3200     {
3201       bufp->regs_allocated = REGS_UNALLOCATED;
3202       regs->num_regs = 0;
3203       regs->start = regs->end = (regoff_t *) 0;
3204     }
3205 }
3206 \f
3207 /* Searching routines.  */
3208
3209 /* Like re_search_2, below, but only one string is specified, and
3210    doesn't let you say where to stop matching. */
3211
3212 int
3213 re_search (bufp, string, size, startpos, range, regs)
3214      struct re_pattern_buffer *bufp;
3215      const char *string;
3216      int size, startpos, range;
3217      struct re_registers *regs;
3218 {
3219   return re_search_2 (bufp, NULL, 0, string, size, startpos, range, 
3220                       regs, size);
3221 }
3222
3223
3224 /* Using the compiled pattern in BUFP->buffer, first tries to match the
3225    virtual concatenation of STRING1 and STRING2, starting first at index
3226    STARTPOS, then at STARTPOS + 1, and so on.
3227    
3228    STRING1 and STRING2 have length SIZE1 and SIZE2, respectively.
3229    
3230    RANGE is how far to scan while trying to match.  RANGE = 0 means try
3231    only at STARTPOS; in general, the last start tried is STARTPOS +
3232    RANGE.
3233    
3234    In REGS, return the indices of the virtual concatenation of STRING1
3235    and STRING2 that matched the entire BUFP->buffer and its contained
3236    subexpressions.
3237    
3238    Do not consider matching one past the index STOP in the virtual
3239    concatenation of STRING1 and STRING2.
3240
3241    We return either the position in the strings at which the match was
3242    found, -1 if no match, or -2 if error (such as failure
3243    stack overflow).  */
3244
3245 int
3246 re_search_2 (bufp, string1, size1, string2, size2, startpos, range, regs, stop)
3247      struct re_pattern_buffer *bufp;
3248      const char *string1, *string2;
3249      int size1, size2;
3250      int startpos;
3251      int range;
3252      struct re_registers *regs;
3253      int stop;
3254 {
3255   int val;
3256   register char *fastmap = bufp->fastmap;
3257   register char *translate = bufp->translate;
3258   int total_size = size1 + size2;
3259   int endpos = startpos + range;
3260
3261   /* Check for out-of-range STARTPOS.  */
3262   if (startpos < 0 || startpos > total_size)
3263     return -1;
3264     
3265   /* Fix up RANGE if it might eventually take us outside
3266      the virtual concatenation of STRING1 and STRING2.  */
3267   if (endpos < -1)
3268     range = -1 - startpos;
3269   else if (endpos > total_size)
3270     range = total_size - startpos;
3271
3272   /* If the search isn't to be a backwards one, don't waste time in a
3273      search for a pattern that must be anchored.  */
3274   if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == begbuf && range > 0)
3275     {
3276       if (startpos > 0)
3277         return -1;
3278       else
3279         range = 1;
3280     }
3281
3282 #ifdef emacs
3283   /* In a forward search for something that starts with \=.
3284      don't keep searching past point.  */
3285   if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == at_dot && range > 0)
3286     {
3287       range = PT - startpos;
3288       if (range <= 0)
3289         return -1;
3290     }
3291 #endif /* emacs */
3292
3293   /* Update the fastmap now if not correct already.  */
3294   if (fastmap && !bufp->fastmap_accurate)
3295     if (re_compile_fastmap (bufp) == -2)
3296       return -2;
3297   
3298   /* Loop through the string, looking for a place to start matching.  */
3299   for (;;)
3300     { 
3301       /* If a fastmap is supplied, skip quickly over characters that
3302          cannot be the start of a match.  If the pattern can match the
3303          null string, however, we don't need to skip characters; we want
3304          the first null string.  */
3305       if (fastmap && startpos < total_size && !bufp->can_be_null)
3306         {
3307           if (range > 0)        /* Searching forwards.  */
3308             {
3309               register const char *d;
3310               register int lim = 0;
3311               int irange = range;
3312
3313               if (startpos < size1 && startpos + range >= size1)
3314                 lim = range - (size1 - startpos);
3315
3316               d = (startpos >= size1 ? string2 - size1 : string1) + startpos;
3317    
3318               /* Written out as an if-else to avoid testing `translate'
3319                  inside the loop.  */
3320               if (translate)
3321                 while (range > lim
3322                        && !fastmap[(unsigned char)
3323                                    translate[(unsigned char) *d++]])
3324                   range--;
3325               else
3326                 while (range > lim && !fastmap[(unsigned char) *d++])
3327                   range--;
3328
3329               startpos += irange - range;
3330             }
3331           else                          /* Searching backwards.  */
3332             {
3333               register char c = (size1 == 0 || startpos >= size1
3334                                  ? string2[startpos - size1] 
3335                                  : string1[startpos]);
3336
3337               if (!fastmap[(unsigned char) TRANSLATE (c)])
3338                 goto advance;
3339             }
3340         }
3341
3342       /* If can't match the null string, and that's all we have left, fail.  */
3343       if (range >= 0 && startpos == total_size && fastmap
3344           && !bufp->can_be_null)
3345         return -1;
3346
3347       val = re_match_2_internal (bufp, string1, size1, string2, size2,
3348                                  startpos, regs, stop);
3349 #ifndef REGEX_MALLOC
3350 #ifdef C_ALLOCA
3351       alloca (0);
3352 #endif
3353 #endif
3354
3355       if (val >= 0)
3356         return startpos;
3357         
3358       if (val == -2)
3359         return -2;
3360
3361     advance:
3362       if (!range) 
3363         break;
3364       else if (range > 0) 
3365         {
3366           range--; 
3367           startpos++;
3368         }
3369       else
3370         {
3371           range++; 
3372           startpos--;
3373         }
3374     }
3375   return -1;
3376 } /* re_search_2 */
3377 \f
3378 /* Declarations and macros for re_match_2.  */
3379
3380 static int bcmp_translate ();
3381 static boolean alt_match_null_string_p (),
3382                common_op_match_null_string_p (),
3383                group_match_null_string_p ();
3384
3385 /* This converts PTR, a pointer into one of the search strings `string1'
3386    and `string2' into an offset from the beginning of that string.  */
3387 #define POINTER_TO_OFFSET(ptr)                  \
3388   (FIRST_STRING_P (ptr)                         \
3389    ? ((regoff_t) ((ptr) - string1))             \
3390    : ((regoff_t) ((ptr) - string2 + size1)))
3391
3392 /* Macros for dealing with the split strings in re_match_2.  */
3393
3394 #define MATCHING_IN_FIRST_STRING  (dend == end_match_1)
3395
3396 /* Call before fetching a character with *d.  This switches over to
3397    string2 if necessary.  */
3398 #define PREFETCH()                                                      \
3399   while (d == dend)                                                     \
3400     {                                                                   \
3401       /* End of string2 => fail.  */                                    \
3402       if (dend == end_match_2)                                          \
3403         goto fail;                                                      \
3404       /* End of string1 => advance to string2.  */                      \
3405       d = string2;                                                      \
3406       dend = end_match_2;                                               \
3407     }
3408
3409
3410 /* Test if at very beginning or at very end of the virtual concatenation
3411    of `string1' and `string2'.  If only one string, it's `string2'.  */
3412 #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2)
3413 #define AT_STRINGS_END(d) ((d) == end2) 
3414
3415
3416 /* Test if D points to a character which is word-constituent.  We have
3417    two special cases to check for: if past the end of string1, look at
3418    the first character in string2; and if before the beginning of
3419    string2, look at the last character in string1.  */
3420 #define WORDCHAR_P(d)                                                   \
3421   (SYNTAX ((d) == end1 ? *string2                                       \
3422            : (d) == string2 - 1 ? *(end1 - 1) : *(d))                   \
3423    == Sword)
3424
3425 /* Test if the character before D and the one at D differ with respect
3426    to being word-constituent.  */
3427 #define AT_WORD_BOUNDARY(d)                                             \
3428   (AT_STRINGS_BEG (d) || AT_STRINGS_END (d)                             \
3429    || WORDCHAR_P (d - 1) != WORDCHAR_P (d))
3430
3431
3432 /* Free everything we malloc.  */
3433 #ifdef MATCH_MAY_ALLOCATE
3434 #define FREE_VAR(var) if (var) REGEX_FREE (var); var = NULL
3435 #define FREE_VARIABLES()                                                \
3436   do {                                                                  \
3437     REGEX_FREE_STACK (fail_stack.stack);                                \
3438     FREE_VAR (regstart);                                                \
3439     FREE_VAR (regend);                                                  \
3440     FREE_VAR (old_regstart);                                            \
3441     FREE_VAR (old_regend);                                              \
3442     FREE_VAR (best_regstart);                                           \
3443     FREE_VAR (best_regend);                                             \
3444     FREE_VAR (reg_info);                                                \
3445     FREE_VAR (reg_dummy);                                               \
3446     FREE_VAR (reg_info_dummy);                                          \
3447   } while (0)
3448 #else
3449 #define FREE_VARIABLES() ((void)0) /* Do nothing!  But inhibit gcc warning.  */
3450 #endif /* not MATCH_MAY_ALLOCATE */
3451
3452 /* These values must meet several constraints.  They must not be valid
3453    register values; since we have a limit of 255 registers (because
3454    we use only one byte in the pattern for the register number), we can
3455    use numbers larger than 255.  They must differ by 1, because of
3456    NUM_FAILURE_ITEMS above.  And the value for the lowest register must
3457    be larger than the value for the highest register, so we do not try
3458    to actually save any registers when none are active.  */
3459 #define NO_HIGHEST_ACTIVE_REG (1 << BYTEWIDTH)
3460 #define NO_LOWEST_ACTIVE_REG (NO_HIGHEST_ACTIVE_REG + 1)
3461 \f
3462 /* Matching routines.  */
3463
3464 #ifndef emacs   /* Emacs never uses this.  */
3465 /* re_match is like re_match_2 except it takes only a single string.  */
3466
3467 int
3468 re_match (bufp, string, size, pos, regs)
3469      struct re_pattern_buffer *bufp;
3470      const char *string;
3471      int size, pos;
3472      struct re_registers *regs;
3473 {
3474   int result = re_match_2_internal (bufp, NULL, 0, string, size,
3475                                     pos, regs, size);
3476   alloca (0);
3477   return result;
3478 }
3479 #endif /* not emacs */
3480
3481
3482 /* re_match_2 matches the compiled pattern in BUFP against the
3483    the (virtual) concatenation of STRING1 and STRING2 (of length SIZE1
3484    and SIZE2, respectively).  We start matching at POS, and stop
3485    matching at STOP.
3486    
3487    If REGS is non-null and the `no_sub' field of BUFP is nonzero, we
3488    store offsets for the substring each group matched in REGS.  See the
3489    documentation for exactly how many groups we fill.
3490
3491    We return -1 if no match, -2 if an internal error (such as the
3492    failure stack overflowing).  Otherwise, we return the length of the
3493    matched substring.  */
3494
3495 int
3496 re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
3497      struct re_pattern_buffer *bufp;
3498      const char *string1, *string2;
3499      int size1, size2;
3500      int pos;
3501      struct re_registers *regs;
3502      int stop;
3503 {
3504   int result = re_match_2_internal (bufp, string1, size1, string2, size2,
3505                                     pos, regs, stop);
3506   alloca (0);
3507   return result;
3508 }
3509
3510 /* This is a separate function so that we can force an alloca cleanup
3511    afterwards.  */
3512 static int
3513 re_match_2_internal (bufp, string1, size1, string2, size2, pos, regs, stop)
3514      struct re_pattern_buffer *bufp;
3515      const char *string1, *string2;
3516      int size1, size2;
3517      int pos;
3518      struct re_registers *regs;
3519      int stop;
3520 {
3521   /* General temporaries.  */
3522   int mcnt;
3523   unsigned char *p1;
3524
3525   /* Just past the end of the corresponding string.  */
3526   const char *end1, *end2;
3527
3528   /* Pointers into string1 and string2, just past the last characters in
3529      each to consider matching.  */
3530   const char *end_match_1, *end_match_2;
3531
3532   /* Where we are in the data, and the end of the current string.  */
3533   const char *d, *dend;
3534   
3535   /* Where we are in the pattern, and the end of the pattern.  */
3536   unsigned char *p = bufp->buffer;
3537   register unsigned char *pend = p + bufp->used;
3538
3539   /* Mark the opcode just after a start_memory, so we can test for an
3540      empty subpattern when we get to the stop_memory.  */
3541   unsigned char *just_past_start_mem = 0;
3542
3543   /* We use this to map every character in the string.  */
3544   char *translate = bufp->translate;
3545
3546   /* Failure point stack.  Each place that can handle a failure further
3547      down the line pushes a failure point on this stack.  It consists of
3548      restart, regend, and reg_info for all registers corresponding to
3549      the subexpressions we're currently inside, plus the number of such
3550      registers, and, finally, two char *'s.  The first char * is where
3551      to resume scanning the pattern; the second one is where to resume
3552      scanning the strings.  If the latter is zero, the failure point is
3553      a ``dummy''; if a failure happens and the failure point is a dummy,
3554      it gets discarded and the next next one is tried.  */
3555 #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global.  */
3556   fail_stack_type fail_stack;
3557 #endif
3558 #ifdef DEBUG
3559   static unsigned failure_id = 0;
3560   unsigned nfailure_points_pushed = 0, nfailure_points_popped = 0;
3561 #endif
3562
3563   /* This holds the pointer to the failure stack, when
3564      it is allocated relocatably.  */
3565   fail_stack_elt_t *failure_stack_ptr;
3566
3567   /* We fill all the registers internally, independent of what we
3568      return, for use in backreferences.  The number here includes
3569      an element for register zero.  */
3570   unsigned num_regs = bufp->re_nsub + 1;
3571   
3572   /* The currently active registers.  */
3573   unsigned lowest_active_reg = NO_LOWEST_ACTIVE_REG;
3574   unsigned highest_active_reg = NO_HIGHEST_ACTIVE_REG;
3575
3576   /* Information on the contents of registers. These are pointers into
3577      the input strings; they record just what was matched (on this
3578      attempt) by a subexpression part of the pattern, that is, the
3579      regnum-th regstart pointer points to where in the pattern we began
3580      matching and the regnum-th regend points to right after where we
3581      stopped matching the regnum-th subexpression.  (The zeroth register
3582      keeps track of what the whole pattern matches.)  */
3583 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
3584   const char **regstart, **regend;
3585 #endif
3586
3587   /* If a group that's operated upon by a repetition operator fails to
3588      match anything, then the register for its start will need to be
3589      restored because it will have been set to wherever in the string we
3590      are when we last see its open-group operator.  Similarly for a
3591      register's end.  */
3592 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
3593   const char **old_regstart, **old_regend;
3594 #endif
3595
3596   /* The is_active field of reg_info helps us keep track of which (possibly
3597      nested) subexpressions we are currently in. The matched_something
3598      field of reg_info[reg_num] helps us tell whether or not we have
3599      matched any of the pattern so far this time through the reg_num-th
3600      subexpression.  These two fields get reset each time through any
3601      loop their register is in.  */
3602 #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global.  */
3603   register_info_type *reg_info; 
3604 #endif
3605
3606   /* The following record the register info as found in the above
3607      variables when we find a match better than any we've seen before. 
3608      This happens as we backtrack through the failure points, which in
3609      turn happens only if we have not yet matched the entire string. */
3610   unsigned best_regs_set = false;
3611 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
3612   const char **best_regstart, **best_regend;
3613 #endif
3614   
3615   /* Logically, this is `best_regend[0]'.  But we don't want to have to
3616      allocate space for that if we're not allocating space for anything
3617      else (see below).  Also, we never need info about register 0 for
3618      any of the other register vectors, and it seems rather a kludge to
3619      treat `best_regend' differently than the rest.  So we keep track of
3620      the end of the best match so far in a separate variable.  We
3621      initialize this to NULL so that when we backtrack the first time
3622      and need to test it, it's not garbage.  */
3623   const char *match_end = NULL;
3624
3625   /* This helps SET_REGS_MATCHED avoid doing redundant work.  */
3626   int set_regs_matched_done = 0;
3627
3628   /* Used when we pop values we don't care about.  */
3629 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
3630   const char **reg_dummy;
3631   register_info_type *reg_info_dummy;
3632 #endif
3633
3634 #ifdef DEBUG
3635   /* Counts the total number of registers pushed.  */
3636   unsigned num_regs_pushed = 0;         
3637 #endif
3638
3639   DEBUG_PRINT1 ("\n\nEntering re_match_2.\n");
3640   
3641   INIT_FAIL_STACK ();
3642   
3643 #ifdef MATCH_MAY_ALLOCATE
3644   /* Do not bother to initialize all the register variables if there are
3645      no groups in the pattern, as it takes a fair amount of time.  If
3646      there are groups, we include space for register 0 (the whole
3647      pattern), even though we never use it, since it simplifies the
3648      array indexing.  We should fix this.  */
3649   if (bufp->re_nsub)
3650     {
3651       regstart = REGEX_TALLOC (num_regs, const char *);
3652       regend = REGEX_TALLOC (num_regs, const char *);
3653       old_regstart = REGEX_TALLOC (num_regs, const char *);
3654       old_regend = REGEX_TALLOC (num_regs, const char *);
3655       best_regstart = REGEX_TALLOC (num_regs, const char *);
3656       best_regend = REGEX_TALLOC (num_regs, const char *);
3657       reg_info = REGEX_TALLOC (num_regs, register_info_type);
3658       reg_dummy = REGEX_TALLOC (num_regs, const char *);
3659       reg_info_dummy = REGEX_TALLOC (num_regs, register_info_type);
3660
3661       if (!(regstart && regend && old_regstart && old_regend && reg_info 
3662             && best_regstart && best_regend && reg_dummy && reg_info_dummy)) 
3663         {
3664           FREE_VARIABLES ();
3665           return -2;
3666         }
3667     }
3668   else
3669     {
3670       /* We must initialize all our variables to NULL, so that
3671          `FREE_VARIABLES' doesn't try to free them.  */
3672       regstart = regend = old_regstart = old_regend = best_regstart
3673         = best_regend = reg_dummy = NULL;
3674       reg_info = reg_info_dummy = (register_info_type *) NULL;
3675     }
3676 #endif /* MATCH_MAY_ALLOCATE */
3677
3678   /* The starting position is bogus.  */
3679   if (pos < 0 || pos > size1 + size2)
3680     {
3681       FREE_VARIABLES ();
3682       return -1;
3683     }
3684     
3685   /* Initialize subexpression text positions to -1 to mark ones that no
3686      start_memory/stop_memory has been seen for. Also initialize the
3687      register information struct.  */
3688   for (mcnt = 1; mcnt < num_regs; mcnt++)
3689     {
3690       regstart[mcnt] = regend[mcnt] 
3691         = old_regstart[mcnt] = old_regend[mcnt] = REG_UNSET_VALUE;
3692         
3693       REG_MATCH_NULL_STRING_P (reg_info[mcnt]) = MATCH_NULL_UNSET_VALUE;
3694       IS_ACTIVE (reg_info[mcnt]) = 0;
3695       MATCHED_SOMETHING (reg_info[mcnt]) = 0;
3696       EVER_MATCHED_SOMETHING (reg_info[mcnt]) = 0;
3697     }
3698   
3699   /* We move `string1' into `string2' if the latter's empty -- but not if
3700      `string1' is null.  */
3701   if (size2 == 0 && string1 != NULL)
3702     {
3703       string2 = string1;
3704       size2 = size1;
3705       string1 = 0;
3706       size1 = 0;
3707     }
3708   end1 = string1 + size1;
3709   end2 = string2 + size2;
3710
3711   /* Compute where to stop matching, within the two strings.  */
3712   if (stop <= size1)
3713     {
3714       end_match_1 = string1 + stop;
3715       end_match_2 = string2;
3716     }
3717   else
3718     {
3719       end_match_1 = end1;
3720       end_match_2 = string2 + stop - size1;
3721     }
3722
3723   /* `p' scans through the pattern as `d' scans through the data. 
3724      `dend' is the end of the input string that `d' points within.  `d'
3725      is advanced into the following input string whenever necessary, but
3726      this happens before fetching; therefore, at the beginning of the
3727      loop, `d' can be pointing at the end of a string, but it cannot
3728      equal `string2'.  */
3729   if (size1 > 0 && pos <= size1)
3730     {
3731       d = string1 + pos;
3732       dend = end_match_1;
3733     }
3734   else
3735     {
3736       d = string2 + pos - size1;
3737       dend = end_match_2;
3738     }
3739
3740   DEBUG_PRINT1 ("The compiled pattern is: ");
3741   DEBUG_PRINT_COMPILED_PATTERN (bufp, p, pend);
3742   DEBUG_PRINT1 ("The string to match is: `");
3743   DEBUG_PRINT_DOUBLE_STRING (d, string1, size1, string2, size2);
3744   DEBUG_PRINT1 ("'\n");
3745   
3746   /* This loops over pattern commands.  It exits by returning from the
3747      function if the match is complete, or it drops through if the match
3748      fails at this starting point in the input data.  */
3749   for (;;)
3750     {
3751       DEBUG_PRINT2 ("\n0x%x: ", p);
3752
3753       if (p == pend)
3754         { /* End of pattern means we might have succeeded.  */
3755           DEBUG_PRINT1 ("end of pattern ... ");
3756           
3757           /* If we haven't matched the entire string, and we want the
3758              longest match, try backtracking.  */
3759           if (d != end_match_2)
3760             {
3761               /* 1 if this match ends in the same string (string1 or string2)
3762                  as the best previous match.  */
3763               boolean same_str_p = (FIRST_STRING_P (match_end) 
3764                                     == MATCHING_IN_FIRST_STRING);
3765               /* 1 if this match is the best seen so far.  */
3766               boolean best_match_p;
3767
3768               /* AIX compiler got confused when this was combined
3769                  with the previous declaration.  */
3770               if (same_str_p)
3771                 best_match_p = d > match_end;
3772               else
3773                 best_match_p = !MATCHING_IN_FIRST_STRING;
3774
3775               DEBUG_PRINT1 ("backtracking.\n");
3776               
3777               if (!FAIL_STACK_EMPTY ())
3778                 { /* More failure points to try.  */
3779
3780                   /* If exceeds best match so far, save it.  */
3781                   if (!best_regs_set || best_match_p)
3782                     {
3783                       best_regs_set = true;
3784                       match_end = d;
3785                       
3786                       DEBUG_PRINT1 ("\nSAVING match as best so far.\n");
3787                       
3788                       for (mcnt = 1; mcnt < num_regs; mcnt++)
3789                         {
3790                           best_regstart[mcnt] = regstart[mcnt];
3791                           best_regend[mcnt] = regend[mcnt];
3792                         }
3793                     }
3794                   goto fail;           
3795                 }
3796
3797               /* If no failure points, don't restore garbage.  And if
3798                  last match is real best match, don't restore second
3799                  best one. */
3800               else if (best_regs_set && !best_match_p)
3801                 {
3802                 restore_best_regs:
3803                   /* Restore best match.  It may happen that `dend ==
3804                      end_match_1' while the restored d is in string2.
3805                      For example, the pattern `x.*y.*z' against the
3806                      strings `x-' and `y-z-', if the two strings are
3807                      not consecutive in memory.  */
3808                   DEBUG_PRINT1 ("Restoring best registers.\n");
3809                   
3810                   d = match_end;
3811                   dend = ((d >= string1 && d <= end1)
3812                            ? end_match_1 : end_match_2);
3813
3814                   for (mcnt = 1; mcnt < num_regs; mcnt++)
3815                     {
3816                       regstart[mcnt] = best_regstart[mcnt];
3817                       regend[mcnt] = best_regend[mcnt];
3818                     }
3819                 }
3820             } /* d != end_match_2 */
3821
3822         succeed_label:
3823           DEBUG_PRINT1 ("Accepting match.\n");
3824
3825           /* If caller wants register contents data back, do it.  */
3826           if (regs && !bufp->no_sub)
3827             {
3828               /* Have the register data arrays been allocated?  */
3829               if (bufp->regs_allocated == REGS_UNALLOCATED)
3830                 { /* No.  So allocate them with malloc.  We need one
3831                      extra element beyond `num_regs' for the `-1' marker
3832                      GNU code uses.  */
3833                   regs->num_regs = MAX (RE_NREGS, num_regs + 1);
3834                   regs->start = TALLOC (regs->num_regs, regoff_t);
3835                   regs->end = TALLOC (regs->num_regs, regoff_t);
3836                   if (regs->start == NULL || regs->end == NULL)
3837                     {
3838                       FREE_VARIABLES ();
3839                       return -2;
3840                     }
3841                   bufp->regs_allocated = REGS_REALLOCATE;
3842                 }
3843               else if (bufp->regs_allocated == REGS_REALLOCATE)
3844                 { /* Yes.  If we need more elements than were already
3845                      allocated, reallocate them.  If we need fewer, just
3846                      leave it alone.  */
3847                   if (regs->num_regs < num_regs + 1)
3848                     {
3849                       regs->num_regs = num_regs + 1;
3850                       RETALLOC (regs->start, regs->num_regs, regoff_t);
3851                       RETALLOC (regs->end, regs->num_regs, regoff_t);
3852                       if (regs->start == NULL || regs->end == NULL)
3853                         {
3854                           FREE_VARIABLES ();
3855                           return -2;
3856                         }
3857                     }
3858                 }
3859               else
3860                 {
3861                   /* These braces fend off a "empty body in an else-statement"
3862                      warning under GCC when assert expands to nothing.  */
3863                   assert (bufp->regs_allocated == REGS_FIXED);
3864                 }
3865
3866               /* Convert the pointer data in `regstart' and `regend' to
3867                  indices.  Register zero has to be set differently,
3868                  since we haven't kept track of any info for it.  */
3869               if (regs->num_regs > 0)
3870                 {
3871                   regs->start[0] = pos;
3872                   regs->end[0] = (MATCHING_IN_FIRST_STRING
3873                                   ? ((regoff_t) (d - string1))
3874                                   : ((regoff_t) (d - string2 + size1)));
3875                 }
3876               
3877               /* Go through the first `min (num_regs, regs->num_regs)'
3878                  registers, since that is all we initialized.  */
3879               for (mcnt = 1; mcnt < MIN (num_regs, regs->num_regs); mcnt++)
3880                 {
3881                   if (REG_UNSET (regstart[mcnt]) || REG_UNSET (regend[mcnt]))
3882                     regs->start[mcnt] = regs->end[mcnt] = -1;
3883                   else
3884                     {
3885                       regs->start[mcnt]
3886                         = (regoff_t) POINTER_TO_OFFSET (regstart[mcnt]);
3887                       regs->end[mcnt]
3888                         = (regoff_t) POINTER_TO_OFFSET (regend[mcnt]);
3889                     }
3890                 }
3891               
3892               /* If the regs structure we return has more elements than
3893                  were in the pattern, set the extra elements to -1.  If
3894                  we (re)allocated the registers, this is the case,
3895                  because we always allocate enough to have at least one
3896                  -1 at the end.  */
3897               for (mcnt = num_regs; mcnt < regs->num_regs; mcnt++)
3898                 regs->start[mcnt] = regs->end[mcnt] = -1;
3899             } /* regs && !bufp->no_sub */
3900
3901           DEBUG_PRINT4 ("%u failure points pushed, %u popped (%u remain).\n",
3902                         nfailure_points_pushed, nfailure_points_popped,
3903                         nfailure_points_pushed - nfailure_points_popped);
3904           DEBUG_PRINT2 ("%u registers pushed.\n", num_regs_pushed);
3905
3906           mcnt = d - pos - (MATCHING_IN_FIRST_STRING 
3907                             ? string1 
3908                             : string2 - size1);
3909
3910           DEBUG_PRINT2 ("Returning %d from re_match_2.\n", mcnt);
3911
3912           FREE_VARIABLES ();
3913           return mcnt;
3914         }
3915
3916       /* Otherwise match next pattern command.  */
3917       switch (SWITCH_ENUM_CAST ((re_opcode_t) *p++))
3918         {
3919         /* Ignore these.  Used to ignore the n of succeed_n's which
3920            currently have n == 0.  */
3921         case no_op:
3922           DEBUG_PRINT1 ("EXECUTING no_op.\n");
3923           break;
3924
3925         case succeed:
3926           DEBUG_PRINT1 ("EXECUTING succeed.\n");
3927           goto succeed_label;
3928
3929         /* Match the next n pattern characters exactly.  The following
3930            byte in the pattern defines n, and the n bytes after that
3931            are the characters to match.  */
3932         case exactn:
3933           mcnt = *p++;
3934           DEBUG_PRINT2 ("EXECUTING exactn %d.\n", mcnt);
3935
3936           /* This is written out as an if-else so we don't waste time
3937              testing `translate' inside the loop.  */
3938           if (translate)
3939             {
3940               do
3941                 {
3942                   PREFETCH ();
3943                   if (translate[(unsigned char) *d++] != (char) *p++)
3944                     goto fail;
3945                 }
3946               while (--mcnt);
3947             }
3948           else
3949             {
3950               do
3951                 {
3952                   PREFETCH ();
3953                   if (*d++ != (char) *p++) goto fail;
3954                 }
3955               while (--mcnt);
3956             }
3957           SET_REGS_MATCHED ();
3958           break;
3959
3960
3961         /* Match any character except possibly a newline or a null.  */
3962         case anychar:
3963           DEBUG_PRINT1 ("EXECUTING anychar.\n");
3964
3965           PREFETCH ();
3966
3967           if ((!(bufp->syntax & RE_DOT_NEWLINE) && TRANSLATE (*d) == '\n')
3968               || (bufp->syntax & RE_DOT_NOT_NULL && TRANSLATE (*d) == '\000'))
3969             goto fail;
3970
3971           SET_REGS_MATCHED ();
3972           DEBUG_PRINT2 ("  Matched `%d'.\n", *d);
3973           d++;
3974           break;
3975
3976
3977         case charset:
3978         case charset_not:
3979           {
3980             register unsigned char c;
3981             boolean not = (re_opcode_t) *(p - 1) == charset_not;
3982
3983             DEBUG_PRINT2 ("EXECUTING charset%s.\n", not ? "_not" : "");
3984
3985             PREFETCH ();
3986             c = TRANSLATE (*d); /* The character to match.  */
3987
3988             /* Cast to `unsigned' instead of `unsigned char' in case the
3989                bit list is a full 32 bytes long.  */
3990             if (c < (unsigned) (*p * BYTEWIDTH)
3991                 && p[1 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
3992               not = !not;
3993
3994             p += 1 + *p;
3995
3996             if (!not) goto fail;
3997             
3998             SET_REGS_MATCHED ();
3999             d++;
4000             break;
4001           }
4002
4003
4004         /* The beginning of a group is represented by start_memory.
4005            The arguments are the register number in the next byte, and the
4006            number of groups inner to this one in the next.  The text
4007            matched within the group is recorded (in the internal
4008            registers data structure) under the register number.  */
4009         case start_memory:
4010           DEBUG_PRINT3 ("EXECUTING start_memory %d (%d):\n", *p, p[1]);
4011
4012           /* Find out if this group can match the empty string.  */
4013           p1 = p;               /* To send to group_match_null_string_p.  */
4014           
4015           if (REG_MATCH_NULL_STRING_P (reg_info[*p]) == MATCH_NULL_UNSET_VALUE)
4016             REG_MATCH_NULL_STRING_P (reg_info[*p]) 
4017               = group_match_null_string_p (&p1, pend, reg_info);
4018
4019           /* Save the position in the string where we were the last time
4020              we were at this open-group operator in case the group is
4021              operated upon by a repetition operator, e.g., with `(a*)*b'
4022              against `ab'; then we want to ignore where we are now in
4023              the string in case this attempt to match fails.  */
4024           old_regstart[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
4025                              ? REG_UNSET (regstart[*p]) ? d : regstart[*p]
4026                              : regstart[*p];
4027           DEBUG_PRINT2 ("  old_regstart: %d\n", 
4028                          POINTER_TO_OFFSET (old_regstart[*p]));
4029
4030           regstart[*p] = d;
4031           DEBUG_PRINT2 ("  regstart: %d\n", POINTER_TO_OFFSET (regstart[*p]));
4032
4033           IS_ACTIVE (reg_info[*p]) = 1;
4034           MATCHED_SOMETHING (reg_info[*p]) = 0;
4035
4036           /* Clear this whenever we change the register activity status.  */
4037           set_regs_matched_done = 0;
4038           
4039           /* This is the new highest active register.  */
4040           highest_active_reg = *p;
4041           
4042           /* If nothing was active before, this is the new lowest active
4043              register.  */
4044           if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
4045             lowest_active_reg = *p;
4046
4047           /* Move past the register number and inner group count.  */
4048           p += 2;
4049           just_past_start_mem = p;
4050
4051           break;
4052
4053
4054         /* The stop_memory opcode represents the end of a group.  Its
4055            arguments are the same as start_memory's: the register
4056            number, and the number of inner groups.  */
4057         case stop_memory:
4058           DEBUG_PRINT3 ("EXECUTING stop_memory %d (%d):\n", *p, p[1]);
4059              
4060           /* We need to save the string position the last time we were at
4061              this close-group operator in case the group is operated
4062              upon by a repetition operator, e.g., with `((a*)*(b*)*)*'
4063              against `aba'; then we want to ignore where we are now in
4064              the string in case this attempt to match fails.  */
4065           old_regend[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
4066                            ? REG_UNSET (regend[*p]) ? d : regend[*p]
4067                            : regend[*p];
4068           DEBUG_PRINT2 ("      old_regend: %d\n", 
4069                          POINTER_TO_OFFSET (old_regend[*p]));
4070
4071           regend[*p] = d;
4072           DEBUG_PRINT2 ("      regend: %d\n", POINTER_TO_OFFSET (regend[*p]));
4073
4074           /* This register isn't active anymore.  */
4075           IS_ACTIVE (reg_info[*p]) = 0;
4076
4077           /* Clear this whenever we change the register activity status.  */
4078           set_regs_matched_done = 0;
4079
4080           /* If this was the only register active, nothing is active
4081              anymore.  */
4082           if (lowest_active_reg == highest_active_reg)
4083             {
4084               lowest_active_reg = NO_LOWEST_ACTIVE_REG;
4085               highest_active_reg = NO_HIGHEST_ACTIVE_REG;
4086             }
4087           else
4088             { /* We must scan for the new highest active register, since
4089                  it isn't necessarily one less than now: consider
4090                  (a(b)c(d(e)f)g).  When group 3 ends, after the f), the
4091                  new highest active register is 1.  */
4092               unsigned char r = *p - 1;
4093               while (r > 0 && !IS_ACTIVE (reg_info[r]))
4094                 r--;
4095               
4096               /* If we end up at register zero, that means that we saved
4097                  the registers as the result of an `on_failure_jump', not
4098                  a `start_memory', and we jumped to past the innermost
4099                  `stop_memory'.  For example, in ((.)*) we save
4100                  registers 1 and 2 as a result of the *, but when we pop
4101                  back to the second ), we are at the stop_memory 1.
4102                  Thus, nothing is active.  */
4103               if (r == 0)
4104                 {
4105                   lowest_active_reg = NO_LOWEST_ACTIVE_REG;
4106                   highest_active_reg = NO_HIGHEST_ACTIVE_REG;
4107                 }
4108               else
4109                 highest_active_reg = r;
4110             }
4111           
4112           /* If just failed to match something this time around with a
4113              group that's operated on by a repetition operator, try to
4114              force exit from the ``loop'', and restore the register
4115              information for this group that we had before trying this
4116              last match.  */
4117           if ((!MATCHED_SOMETHING (reg_info[*p])
4118                || just_past_start_mem == p - 1)
4119               && (p + 2) < pend)              
4120             {
4121               boolean is_a_jump_n = false;
4122               
4123               p1 = p + 2;
4124               mcnt = 0;
4125               switch ((re_opcode_t) *p1++)
4126                 {
4127                   case jump_n:
4128                     is_a_jump_n = true;
4129                   case pop_failure_jump:
4130                   case maybe_pop_jump:
4131                   case jump:
4132                   case dummy_failure_jump:
4133                     EXTRACT_NUMBER_AND_INCR (mcnt, p1);
4134                     if (is_a_jump_n)
4135                       p1 += 2;
4136                     break;
4137                   
4138                   default:
4139                     /* do nothing */ ;
4140                 }
4141               p1 += mcnt;
4142         
4143               /* If the next operation is a jump backwards in the pattern
4144                  to an on_failure_jump right before the start_memory
4145                  corresponding to this stop_memory, exit from the loop
4146                  by forcing a failure after pushing on the stack the
4147                  on_failure_jump's jump in the pattern, and d.  */
4148               if (mcnt < 0 && (re_opcode_t) *p1 == on_failure_jump
4149                   && (re_opcode_t) p1[3] == start_memory && p1[4] == *p)
4150                 {
4151                   /* If this group ever matched anything, then restore
4152                      what its registers were before trying this last
4153                      failed match, e.g., with `(a*)*b' against `ab' for
4154                      regstart[1], and, e.g., with `((a*)*(b*)*)*'
4155                      against `aba' for regend[3].
4156                      
4157                      Also restore the registers for inner groups for,
4158                      e.g., `((a*)(b*))*' against `aba' (register 3 would
4159                      otherwise get trashed).  */
4160                      
4161                   if (EVER_MATCHED_SOMETHING (reg_info[*p]))
4162                     {
4163                       unsigned r; 
4164         
4165                       EVER_MATCHED_SOMETHING (reg_info[*p]) = 0;
4166                       
4167                       /* Restore this and inner groups' (if any) registers.  */
4168                       for (r = *p; r < *p + *(p + 1); r++)
4169                         {
4170                           regstart[r] = old_regstart[r];
4171
4172                           /* xx why this test?  */
4173                           if (old_regend[r] >= regstart[r])
4174                             regend[r] = old_regend[r];
4175                         }     
4176                     }
4177                   p1++;
4178                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
4179                   PUSH_FAILURE_POINT (p1 + mcnt, d, -2);
4180
4181                   goto fail;
4182                 }
4183             }
4184           
4185           /* Move past the register number and the inner group count.  */
4186           p += 2;
4187           break;
4188
4189
4190         /* \<digit> has been turned into a `duplicate' command which is
4191            followed by the numeric value of <digit> as the register number.  */
4192         case duplicate:
4193           {
4194             register const char *d2, *dend2;
4195             int regno = *p++;   /* Get which register to match against.  */
4196             DEBUG_PRINT2 ("EXECUTING duplicate %d.\n", regno);
4197
4198             /* Can't back reference a group which we've never matched.  */
4199             if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
4200               goto fail;
4201               
4202             /* Where in input to try to start matching.  */
4203             d2 = regstart[regno];
4204             
4205             /* Where to stop matching; if both the place to start and
4206                the place to stop matching are in the same string, then
4207                set to the place to stop, otherwise, for now have to use
4208                the end of the first string.  */
4209
4210             dend2 = ((FIRST_STRING_P (regstart[regno]) 
4211                       == FIRST_STRING_P (regend[regno]))
4212                      ? regend[regno] : end_match_1);
4213             for (;;)
4214               {
4215                 /* If necessary, advance to next segment in register
4216                    contents.  */
4217                 while (d2 == dend2)
4218                   {
4219                     if (dend2 == end_match_2) break;
4220                     if (dend2 == regend[regno]) break;
4221
4222                     /* End of string1 => advance to string2. */
4223                     d2 = string2;
4224                     dend2 = regend[regno];
4225                   }
4226                 /* At end of register contents => success */
4227                 if (d2 == dend2) break;
4228
4229                 /* If necessary, advance to next segment in data.  */
4230                 PREFETCH ();
4231
4232                 /* How many characters left in this segment to match.  */
4233                 mcnt = dend - d;
4234                 
4235                 /* Want how many consecutive characters we can match in
4236                    one shot, so, if necessary, adjust the count.  */
4237                 if (mcnt > dend2 - d2)
4238                   mcnt = dend2 - d2;
4239                   
4240                 /* Compare that many; failure if mismatch, else move
4241                    past them.  */
4242                 if (translate 
4243                     ? bcmp_translate (d, d2, mcnt, translate) 
4244                     : bcmp (d, d2, mcnt))
4245                   goto fail;
4246                 d += mcnt, d2 += mcnt;
4247
4248                 /* Do this because we've match some characters.  */
4249                 SET_REGS_MATCHED ();
4250               }
4251           }
4252           break;
4253
4254
4255         /* begline matches the empty string at the beginning of the string
4256            (unless `not_bol' is set in `bufp'), and, if
4257            `newline_anchor' is set, after newlines.  */
4258         case begline:
4259           DEBUG_PRINT1 ("EXECUTING begline.\n");
4260           
4261           if (AT_STRINGS_BEG (d))
4262             {
4263               if (!bufp->not_bol) break;
4264             }
4265           else if (d[-1] == '\n' && bufp->newline_anchor)
4266             {
4267               break;
4268             }
4269           /* In all other cases, we fail.  */
4270           goto fail;
4271
4272
4273         /* endline is the dual of begline.  */
4274         case endline:
4275           DEBUG_PRINT1 ("EXECUTING endline.\n");
4276
4277           if (AT_STRINGS_END (d))
4278             {
4279               if (!bufp->not_eol) break;
4280             }
4281           
4282           /* We have to ``prefetch'' the next character.  */
4283           else if ((d == end1 ? *string2 : *d) == '\n'
4284                    && bufp->newline_anchor)
4285             {
4286               break;
4287             }
4288           goto fail;
4289
4290
4291         /* Match at the very beginning of the data.  */
4292         case begbuf:
4293           DEBUG_PRINT1 ("EXECUTING begbuf.\n");
4294           if (AT_STRINGS_BEG (d))
4295             break;
4296           goto fail;
4297
4298
4299         /* Match at the very end of the data.  */
4300         case endbuf:
4301           DEBUG_PRINT1 ("EXECUTING endbuf.\n");
4302           if (AT_STRINGS_END (d))
4303             break;
4304           goto fail;
4305
4306
4307         /* on_failure_keep_string_jump is used to optimize `.*\n'.  It
4308            pushes NULL as the value for the string on the stack.  Then
4309            `pop_failure_point' will keep the current value for the
4310            string, instead of restoring it.  To see why, consider
4311            matching `foo\nbar' against `.*\n'.  The .* matches the foo;
4312            then the . fails against the \n.  But the next thing we want
4313            to do is match the \n against the \n; if we restored the
4314            string value, we would be back at the foo.
4315            
4316            Because this is used only in specific cases, we don't need to
4317            check all the things that `on_failure_jump' does, to make
4318            sure the right things get saved on the stack.  Hence we don't
4319            share its code.  The only reason to push anything on the
4320            stack at all is that otherwise we would have to change
4321            `anychar's code to do something besides goto fail in this
4322            case; that seems worse than this.  */
4323         case on_failure_keep_string_jump:
4324           DEBUG_PRINT1 ("EXECUTING on_failure_keep_string_jump");
4325           
4326           EXTRACT_NUMBER_AND_INCR (mcnt, p);
4327           DEBUG_PRINT3 (" %d (to 0x%x):\n", mcnt, p + mcnt);
4328
4329           PUSH_FAILURE_POINT (p + mcnt, NULL, -2);
4330           break;
4331
4332
4333         /* Uses of on_failure_jump:
4334         
4335            Each alternative starts with an on_failure_jump that points
4336            to the beginning of the next alternative.  Each alternative
4337            except the last ends with a jump that in effect jumps past
4338            the rest of the alternatives.  (They really jump to the
4339            ending jump of the following alternative, because tensioning
4340            these jumps is a hassle.)
4341
4342            Repeats start with an on_failure_jump that points past both
4343            the repetition text and either the following jump or
4344            pop_failure_jump back to this on_failure_jump.  */
4345         case on_failure_jump:
4346         on_failure:
4347           DEBUG_PRINT1 ("EXECUTING on_failure_jump");
4348
4349           EXTRACT_NUMBER_AND_INCR (mcnt, p);
4350           DEBUG_PRINT3 (" %d (to 0x%x)", mcnt, p + mcnt);
4351
4352           /* If this on_failure_jump comes right before a group (i.e.,
4353              the original * applied to a group), save the information
4354              for that group and all inner ones, so that if we fail back
4355              to this point, the group's information will be correct.
4356              For example, in \(a*\)*\1, we need the preceding group,
4357              and in \(\(a*\)b*\)\2, we need the inner group.  */
4358
4359           /* We can't use `p' to check ahead because we push
4360              a failure point to `p + mcnt' after we do this.  */
4361           p1 = p;
4362
4363           /* We need to skip no_op's before we look for the
4364              start_memory in case this on_failure_jump is happening as
4365              the result of a completed succeed_n, as in \(a\)\{1,3\}b\1
4366              against aba.  */
4367           while (p1 < pend && (re_opcode_t) *p1 == no_op)
4368             p1++;
4369
4370           if (p1 < pend && (re_opcode_t) *p1 == start_memory)
4371             {
4372               /* We have a new highest active register now.  This will
4373                  get reset at the start_memory we are about to get to,
4374                  but we will have saved all the registers relevant to
4375                  this repetition op, as described above.  */
4376               highest_active_reg = *(p1 + 1) + *(p1 + 2);
4377               if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
4378                 lowest_active_reg = *(p1 + 1);
4379             }
4380
4381           DEBUG_PRINT1 (":\n");
4382           PUSH_FAILURE_POINT (p + mcnt, d, -2);
4383           break;
4384
4385
4386         /* A smart repeat ends with `maybe_pop_jump'.
4387            We change it to either `pop_failure_jump' or `jump'.  */
4388         case maybe_pop_jump:
4389           EXTRACT_NUMBER_AND_INCR (mcnt, p);
4390           DEBUG_PRINT2 ("EXECUTING maybe_pop_jump %d.\n", mcnt);
4391           {
4392             register unsigned char *p2 = p;
4393
4394             /* Compare the beginning of the repeat with what in the
4395                pattern follows its end. If we can establish that there
4396                is nothing that they would both match, i.e., that we
4397                would have to backtrack because of (as in, e.g., `a*a')
4398                then we can change to pop_failure_jump, because we'll
4399                never have to backtrack.
4400                
4401                This is not true in the case of alternatives: in
4402                `(a|ab)*' we do need to backtrack to the `ab' alternative
4403                (e.g., if the string was `ab').  But instead of trying to
4404                detect that here, the alternative has put on a dummy
4405                failure point which is what we will end up popping.  */
4406
4407             /* Skip over open/close-group commands.
4408                If what follows this loop is a ...+ construct,
4409                look at what begins its body, since we will have to
4410                match at least one of that.  */
4411             while (1)
4412               {
4413                 if (p2 + 2 < pend
4414                     && ((re_opcode_t) *p2 == stop_memory
4415                         || (re_opcode_t) *p2 == start_memory))
4416                   p2 += 3;
4417                 else if (p2 + 6 < pend
4418                          && (re_opcode_t) *p2 == dummy_failure_jump)
4419                   p2 += 6;
4420                 else
4421                   break;
4422               }
4423
4424             p1 = p + mcnt;
4425             /* p1[0] ... p1[2] are the `on_failure_jump' corresponding
4426                to the `maybe_finalize_jump' of this case.  Examine what 
4427                follows.  */
4428
4429             /* If we're at the end of the pattern, we can change.  */
4430             if (p2 == pend)
4431               {
4432                 /* Consider what happens when matching ":\(.*\)"
4433                    against ":/".  I don't really understand this code
4434                    yet.  */
4435                 p[-3] = (unsigned char) pop_failure_jump;
4436                 DEBUG_PRINT1
4437                   ("  End of pattern: change to `pop_failure_jump'.\n");
4438               }
4439
4440             else if ((re_opcode_t) *p2 == exactn
4441                      || (bufp->newline_anchor && (re_opcode_t) *p2 == endline))
4442               {
4443                 register unsigned char c
4444                   = *p2 == (unsigned char) endline ? '\n' : p2[2];
4445
4446                 if ((re_opcode_t) p1[3] == exactn && p1[5] != c)
4447                   {
4448                     p[-3] = (unsigned char) pop_failure_jump;
4449                     DEBUG_PRINT3 ("  %c != %c => pop_failure_jump.\n",
4450                                   c, p1[5]);
4451                   }
4452                   
4453                 else if ((re_opcode_t) p1[3] == charset
4454                          || (re_opcode_t) p1[3] == charset_not)
4455                   {
4456                     int not = (re_opcode_t) p1[3] == charset_not;
4457                     
4458                     if (c < (unsigned char) (p1[4] * BYTEWIDTH)
4459                         && p1[5 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
4460                       not = !not;
4461
4462                     /* `not' is equal to 1 if c would match, which means
4463                         that we can't change to pop_failure_jump.  */
4464                     if (!not)
4465                       {
4466                         p[-3] = (unsigned char) pop_failure_jump;
4467                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
4468                       }
4469                   }
4470               }
4471             else if ((re_opcode_t) *p2 == charset)
4472               {
4473 #ifdef DEBUG
4474                 register unsigned char c
4475                   = *p2 == (unsigned char) endline ? '\n' : p2[2];
4476 #endif
4477
4478                 if ((re_opcode_t) p1[3] == exactn
4479                     && ! ((int) p2[1] * BYTEWIDTH > (int) p1[4]
4480                           && (p2[1 + p1[4] / BYTEWIDTH]
4481                               & (1 << (p1[4] % BYTEWIDTH)))))
4482                   {
4483                     p[-3] = (unsigned char) pop_failure_jump;
4484                     DEBUG_PRINT3 ("  %c != %c => pop_failure_jump.\n",
4485                                   c, p1[5]);
4486                   }
4487                   
4488                 else if ((re_opcode_t) p1[3] == charset_not)
4489                   {
4490                     int idx;
4491                     /* We win if the charset_not inside the loop
4492                        lists every character listed in the charset after.  */
4493                     for (idx = 0; idx < (int) p2[1]; idx++)
4494                       if (! (p2[2 + idx] == 0
4495                              || (idx < (int) p1[4]
4496                                  && ((p2[2 + idx] & ~ p1[5 + idx]) == 0))))
4497                         break;
4498
4499                     if (idx == p2[1])
4500                       {
4501                         p[-3] = (unsigned char) pop_failure_jump;
4502                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
4503                       }
4504                   }
4505                 else if ((re_opcode_t) p1[3] == charset)
4506                   {
4507                     int idx;
4508                     /* We win if the charset inside the loop
4509                        has no overlap with the one after the loop.  */
4510                     for (idx = 0;
4511                          idx < (int) p2[1] && idx < (int) p1[4];
4512                          idx++)
4513                       if ((p2[2 + idx] & p1[5 + idx]) != 0)
4514                         break;
4515
4516                     if (idx == p2[1] || idx == p1[4])
4517                       {
4518                         p[-3] = (unsigned char) pop_failure_jump;
4519                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
4520                       }
4521                   }
4522               }
4523           }
4524           p -= 2;               /* Point at relative address again.  */
4525           if ((re_opcode_t) p[-1] != pop_failure_jump)
4526             {
4527               p[-1] = (unsigned char) jump;
4528               DEBUG_PRINT1 ("  Match => jump.\n");
4529               goto unconditional_jump;
4530             }
4531         /* Note fall through.  */
4532
4533
4534         /* The end of a simple repeat has a pop_failure_jump back to
4535            its matching on_failure_jump, where the latter will push a
4536            failure point.  The pop_failure_jump takes off failure
4537            points put on by this pop_failure_jump's matching
4538            on_failure_jump; we got through the pattern to here from the
4539            matching on_failure_jump, so didn't fail.  */
4540         case pop_failure_jump:
4541           {
4542             /* We need to pass separate storage for the lowest and
4543                highest registers, even though we don't care about the
4544                actual values.  Otherwise, we will restore only one
4545                register from the stack, since lowest will == highest in
4546                `pop_failure_point'.  */
4547             unsigned dummy_low_reg, dummy_high_reg;
4548             unsigned char *pdummy;
4549             const char *sdummy;
4550
4551             DEBUG_PRINT1 ("EXECUTING pop_failure_jump.\n");
4552             POP_FAILURE_POINT (sdummy, pdummy,
4553                                dummy_low_reg, dummy_high_reg,
4554                                reg_dummy, reg_dummy, reg_info_dummy);
4555           }
4556           /* Note fall through.  */
4557
4558           
4559         /* Unconditionally jump (without popping any failure points).  */
4560         case jump:
4561         unconditional_jump:
4562           EXTRACT_NUMBER_AND_INCR (mcnt, p);    /* Get the amount to jump.  */
4563           DEBUG_PRINT2 ("EXECUTING jump %d ", mcnt);
4564           p += mcnt;                            /* Do the jump.  */
4565           DEBUG_PRINT2 ("(to 0x%x).\n", p);
4566           break;
4567
4568         
4569         /* We need this opcode so we can detect where alternatives end
4570            in `group_match_null_string_p' et al.  */
4571         case jump_past_alt:
4572           DEBUG_PRINT1 ("EXECUTING jump_past_alt.\n");
4573           goto unconditional_jump;
4574
4575
4576         /* Normally, the on_failure_jump pushes a failure point, which
4577            then gets popped at pop_failure_jump.  We will end up at
4578            pop_failure_jump, also, and with a pattern of, say, `a+', we
4579            are skipping over the on_failure_jump, so we have to push
4580            something meaningless for pop_failure_jump to pop.  */
4581         case dummy_failure_jump:
4582           DEBUG_PRINT1 ("EXECUTING dummy_failure_jump.\n");
4583           /* It doesn't matter what we push for the string here.  What
4584              the code at `fail' tests is the value for the pattern.  */
4585           PUSH_FAILURE_POINT (0, 0, -2);
4586           goto unconditional_jump;
4587
4588
4589         /* At the end of an alternative, we need to push a dummy failure
4590            point in case we are followed by a `pop_failure_jump', because
4591            we don't want the failure point for the alternative to be
4592            popped.  For example, matching `(a|ab)*' against `aab'
4593            requires that we match the `ab' alternative.  */
4594         case push_dummy_failure:
4595           DEBUG_PRINT1 ("EXECUTING push_dummy_failure.\n");
4596           /* See comments just above at `dummy_failure_jump' about the
4597              two zeroes.  */
4598           PUSH_FAILURE_POINT (0, 0, -2);
4599           break;
4600
4601         /* Have to succeed matching what follows at least n times.
4602            After that, handle like `on_failure_jump'.  */
4603         case succeed_n: 
4604           EXTRACT_NUMBER (mcnt, p + 2);
4605           DEBUG_PRINT2 ("EXECUTING succeed_n %d.\n", mcnt);
4606
4607           assert (mcnt >= 0);
4608           /* Originally, this is how many times we HAVE to succeed.  */
4609           if (mcnt > 0)
4610             {
4611                mcnt--;
4612                p += 2;
4613                STORE_NUMBER_AND_INCR (p, mcnt);
4614                DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p, mcnt);
4615             }
4616           else if (mcnt == 0)
4617             {
4618               DEBUG_PRINT2 ("  Setting two bytes from 0x%x to no_op.\n", p+2);
4619               p[2] = (unsigned char) no_op;
4620               p[3] = (unsigned char) no_op;
4621               goto on_failure;
4622             }
4623           break;
4624         
4625         case jump_n: 
4626           EXTRACT_NUMBER (mcnt, p + 2);
4627           DEBUG_PRINT2 ("EXECUTING jump_n %d.\n", mcnt);
4628
4629           /* Originally, this is how many times we CAN jump.  */
4630           if (mcnt)
4631             {
4632                mcnt--;
4633                STORE_NUMBER (p + 2, mcnt);
4634                goto unconditional_jump;      
4635             }
4636           /* If don't have to jump any more, skip over the rest of command.  */
4637           else      
4638             p += 4;                  
4639           break;
4640         
4641         case set_number_at:
4642           {
4643             DEBUG_PRINT1 ("EXECUTING set_number_at.\n");
4644
4645             EXTRACT_NUMBER_AND_INCR (mcnt, p);
4646             p1 = p + mcnt;
4647             EXTRACT_NUMBER_AND_INCR (mcnt, p);
4648             DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p1, mcnt);
4649             STORE_NUMBER (p1, mcnt);
4650             break;
4651           }
4652
4653         case wordbound:
4654           DEBUG_PRINT1 ("EXECUTING wordbound.\n");
4655           if (AT_WORD_BOUNDARY (d))
4656             break;
4657           goto fail;
4658
4659         case notwordbound:
4660           DEBUG_PRINT1 ("EXECUTING notwordbound.\n");
4661           if (AT_WORD_BOUNDARY (d))
4662             goto fail;
4663           break;
4664
4665         case wordbeg:
4666           DEBUG_PRINT1 ("EXECUTING wordbeg.\n");
4667           if (WORDCHAR_P (d) && (AT_STRINGS_BEG (d) || !WORDCHAR_P (d - 1)))
4668             break;
4669           goto fail;
4670
4671         case wordend:
4672           DEBUG_PRINT1 ("EXECUTING wordend.\n");
4673           if (!AT_STRINGS_BEG (d) && WORDCHAR_P (d - 1)
4674               && (!WORDCHAR_P (d) || AT_STRINGS_END (d)))
4675             break;
4676           goto fail;
4677
4678 #ifdef emacs
4679         case before_dot:
4680           DEBUG_PRINT1 ("EXECUTING before_dot.\n");
4681           if (PTR_CHAR_POS ((unsigned char *) d) >= point)
4682             goto fail;
4683           break;
4684   
4685         case at_dot:
4686           DEBUG_PRINT1 ("EXECUTING at_dot.\n");
4687           if (PTR_CHAR_POS ((unsigned char *) d) != point)
4688             goto fail;
4689           break;
4690   
4691         case after_dot:
4692           DEBUG_PRINT1 ("EXECUTING after_dot.\n");
4693           if (PTR_CHAR_POS ((unsigned char *) d) <= point)
4694             goto fail;
4695           break;
4696
4697         case syntaxspec:
4698           DEBUG_PRINT2 ("EXECUTING syntaxspec %d.\n", mcnt);
4699           mcnt = *p++;
4700           goto matchsyntax;
4701
4702         case wordchar:
4703           DEBUG_PRINT1 ("EXECUTING Emacs wordchar.\n");
4704           mcnt = (int) Sword;
4705         matchsyntax:
4706           PREFETCH ();
4707           /* Can't use *d++ here; SYNTAX may be an unsafe macro.  */
4708           d++;
4709           if (SYNTAX (d[-1]) != (enum syntaxcode) mcnt)
4710             goto fail;
4711           SET_REGS_MATCHED ();
4712           break;
4713
4714         case notsyntaxspec:
4715           DEBUG_PRINT2 ("EXECUTING notsyntaxspec %d.\n", mcnt);
4716           mcnt = *p++;
4717           goto matchnotsyntax;
4718
4719         case notwordchar:
4720           DEBUG_PRINT1 ("EXECUTING Emacs notwordchar.\n");
4721           mcnt = (int) Sword;
4722         matchnotsyntax:
4723           PREFETCH ();
4724           /* Can't use *d++ here; SYNTAX may be an unsafe macro.  */
4725           d++;
4726           if (SYNTAX (d[-1]) == (enum syntaxcode) mcnt)
4727             goto fail;
4728           SET_REGS_MATCHED ();
4729           break;
4730
4731 #else /* not emacs */
4732         case wordchar:
4733           DEBUG_PRINT1 ("EXECUTING non-Emacs wordchar.\n");
4734           PREFETCH ();
4735           if (!WORDCHAR_P (d))
4736             goto fail;
4737           SET_REGS_MATCHED ();
4738           d++;
4739           break;
4740           
4741         case notwordchar:
4742           DEBUG_PRINT1 ("EXECUTING non-Emacs notwordchar.\n");
4743           PREFETCH ();
4744           if (WORDCHAR_P (d))
4745             goto fail;
4746           SET_REGS_MATCHED ();
4747           d++;
4748           break;
4749 #endif /* not emacs */
4750           
4751         default:
4752           abort ();
4753         }
4754       continue;  /* Successfully executed one pattern command; keep going.  */
4755
4756
4757     /* We goto here if a matching operation fails. */
4758     fail:
4759       if (!FAIL_STACK_EMPTY ())
4760         { /* A restart point is known.  Restore to that state.  */
4761           DEBUG_PRINT1 ("\nFAIL:\n");
4762           POP_FAILURE_POINT (d, p,
4763                              lowest_active_reg, highest_active_reg,
4764                              regstart, regend, reg_info);
4765
4766           /* If this failure point is a dummy, try the next one.  */
4767           if (!p)
4768             goto fail;
4769
4770           /* If we failed to the end of the pattern, don't examine *p.  */
4771           assert (p <= pend);
4772           if (p < pend)
4773             {
4774               boolean is_a_jump_n = false;
4775               
4776               /* If failed to a backwards jump that's part of a repetition
4777                  loop, need to pop this failure point and use the next one.  */
4778               switch ((re_opcode_t) *p)
4779                 {
4780                 case jump_n:
4781                   is_a_jump_n = true;
4782                 case maybe_pop_jump:
4783                 case pop_failure_jump:
4784                 case jump:
4785                   p1 = p + 1;
4786                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
4787                   p1 += mcnt;   
4788
4789                   if ((is_a_jump_n && (re_opcode_t) *p1 == succeed_n)
4790                       || (!is_a_jump_n
4791                           && (re_opcode_t) *p1 == on_failure_jump))
4792                     goto fail;
4793                   break;
4794                 default:
4795                   /* do nothing */ ;
4796                 }
4797             }
4798
4799           if (d >= string1 && d <= end1)
4800             dend = end_match_1;
4801         }
4802       else
4803         break;   /* Matching at this starting point really fails.  */
4804     } /* for (;;) */
4805
4806   if (best_regs_set)
4807     goto restore_best_regs;
4808
4809   FREE_VARIABLES ();
4810
4811   return -1;                            /* Failure to match.  */
4812 } /* re_match_2 */
4813 \f
4814 /* Subroutine definitions for re_match_2.  */
4815
4816
4817 /* We are passed P pointing to a register number after a start_memory.
4818    
4819    Return true if the pattern up to the corresponding stop_memory can
4820    match the empty string, and false otherwise.
4821    
4822    If we find the matching stop_memory, sets P to point to one past its number.
4823    Otherwise, sets P to an undefined byte less than or equal to END.
4824
4825    We don't handle duplicates properly (yet).  */
4826
4827 static boolean
4828 group_match_null_string_p (p, end, reg_info)
4829     unsigned char **p, *end;
4830     register_info_type *reg_info;
4831 {
4832   int mcnt;
4833   /* Point to after the args to the start_memory.  */
4834   unsigned char *p1 = *p + 2;
4835   
4836   while (p1 < end)
4837     {
4838       /* Skip over opcodes that can match nothing, and return true or
4839          false, as appropriate, when we get to one that can't, or to the
4840          matching stop_memory.  */
4841       
4842       switch ((re_opcode_t) *p1)
4843         {
4844         /* Could be either a loop or a series of alternatives.  */
4845         case on_failure_jump:
4846           p1++;
4847           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
4848           
4849           /* If the next operation is not a jump backwards in the
4850              pattern.  */
4851
4852           if (mcnt >= 0)
4853             {
4854               /* Go through the on_failure_jumps of the alternatives,
4855                  seeing if any of the alternatives cannot match nothing.
4856                  The last alternative starts with only a jump,
4857                  whereas the rest start with on_failure_jump and end
4858                  with a jump, e.g., here is the pattern for `a|b|c':
4859
4860                  /on_failure_jump/0/6/exactn/1/a/jump_past_alt/0/6
4861                  /on_failure_jump/0/6/exactn/1/b/jump_past_alt/0/3
4862                  /exactn/1/c                                            
4863
4864                  So, we have to first go through the first (n-1)
4865                  alternatives and then deal with the last one separately.  */
4866
4867
4868               /* Deal with the first (n-1) alternatives, which start
4869                  with an on_failure_jump (see above) that jumps to right
4870                  past a jump_past_alt.  */
4871
4872               while ((re_opcode_t) p1[mcnt-3] == jump_past_alt)
4873                 {
4874                   /* `mcnt' holds how many bytes long the alternative
4875                      is, including the ending `jump_past_alt' and
4876                      its number.  */
4877
4878                   if (!alt_match_null_string_p (p1, p1 + mcnt - 3, 
4879                                                       reg_info))
4880                     return false;
4881
4882                   /* Move to right after this alternative, including the
4883                      jump_past_alt.  */
4884                   p1 += mcnt;   
4885
4886                   /* Break if it's the beginning of an n-th alternative
4887                      that doesn't begin with an on_failure_jump.  */
4888                   if ((re_opcode_t) *p1 != on_failure_jump)
4889                     break;
4890                 
4891                   /* Still have to check that it's not an n-th
4892                      alternative that starts with an on_failure_jump.  */
4893                   p1++;
4894                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
4895                   if ((re_opcode_t) p1[mcnt-3] != jump_past_alt)
4896                     {
4897                       /* Get to the beginning of the n-th alternative.  */
4898                       p1 -= 3;
4899                       break;
4900                     }
4901                 }
4902
4903               /* Deal with the last alternative: go back and get number
4904                  of the `jump_past_alt' just before it.  `mcnt' contains
4905                  the length of the alternative.  */
4906               EXTRACT_NUMBER (mcnt, p1 - 2);
4907
4908               if (!alt_match_null_string_p (p1, p1 + mcnt, reg_info))
4909                 return false;
4910
4911               p1 += mcnt;       /* Get past the n-th alternative.  */
4912             } /* if mcnt > 0 */
4913           break;
4914
4915           
4916         case stop_memory:
4917           assert (p1[1] == **p);
4918           *p = p1 + 2;
4919           return true;
4920
4921         
4922         default: 
4923           if (!common_op_match_null_string_p (&p1, end, reg_info))
4924             return false;
4925         }
4926     } /* while p1 < end */
4927
4928   return false;
4929 } /* group_match_null_string_p */
4930
4931
4932 /* Similar to group_match_null_string_p, but doesn't deal with alternatives:
4933    It expects P to be the first byte of a single alternative and END one
4934    byte past the last. The alternative can contain groups.  */
4935    
4936 static boolean
4937 alt_match_null_string_p (p, end, reg_info)
4938     unsigned char *p, *end;
4939     register_info_type *reg_info;
4940 {
4941   int mcnt;
4942   unsigned char *p1 = p;
4943   
4944   while (p1 < end)
4945     {
4946       /* Skip over opcodes that can match nothing, and break when we get 
4947          to one that can't.  */
4948       
4949       switch ((re_opcode_t) *p1)
4950         {
4951         /* It's a loop.  */
4952         case on_failure_jump:
4953           p1++;
4954           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
4955           p1 += mcnt;
4956           break;
4957           
4958         default: 
4959           if (!common_op_match_null_string_p (&p1, end, reg_info))
4960             return false;
4961         }
4962     }  /* while p1 < end */
4963
4964   return true;
4965 } /* alt_match_null_string_p */
4966
4967
4968 /* Deals with the ops common to group_match_null_string_p and
4969    alt_match_null_string_p.  
4970    
4971    Sets P to one after the op and its arguments, if any.  */
4972
4973 static boolean
4974 common_op_match_null_string_p (p, end, reg_info)
4975     unsigned char **p, *end;
4976     register_info_type *reg_info;
4977 {
4978   int mcnt;
4979   boolean ret;
4980   int reg_no;
4981   unsigned char *p1 = *p;
4982
4983   switch ((re_opcode_t) *p1++)
4984     {
4985     case no_op:
4986     case begline:
4987     case endline:
4988     case begbuf:
4989     case endbuf:
4990     case wordbeg:
4991     case wordend:
4992     case wordbound:
4993     case notwordbound:
4994 #ifdef emacs
4995     case before_dot:
4996     case at_dot:
4997     case after_dot:
4998 #endif
4999       break;
5000
5001     case start_memory:
5002       reg_no = *p1;
5003       assert (reg_no > 0 && reg_no <= MAX_REGNUM);
5004       ret = group_match_null_string_p (&p1, end, reg_info);
5005       
5006       /* Have to set this here in case we're checking a group which
5007          contains a group and a back reference to it.  */
5008
5009       if (REG_MATCH_NULL_STRING_P (reg_info[reg_no]) == MATCH_NULL_UNSET_VALUE)
5010         REG_MATCH_NULL_STRING_P (reg_info[reg_no]) = ret;
5011
5012       if (!ret)
5013         return false;
5014       break;
5015           
5016     /* If this is an optimized succeed_n for zero times, make the jump.  */
5017     case jump:
5018       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
5019       if (mcnt >= 0)
5020         p1 += mcnt;
5021       else
5022         return false;
5023       break;
5024
5025     case succeed_n:
5026       /* Get to the number of times to succeed.  */
5027       p1 += 2;          
5028       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
5029
5030       if (mcnt == 0)
5031         {
5032           p1 -= 4;
5033           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
5034           p1 += mcnt;
5035         }
5036       else
5037         return false;
5038       break;
5039
5040     case duplicate: 
5041       if (!REG_MATCH_NULL_STRING_P (reg_info[*p1]))
5042         return false;
5043       break;
5044
5045     case set_number_at:
5046       p1 += 4;
5047
5048     default:
5049       /* All other opcodes mean we cannot match the empty string.  */
5050       return false;
5051   }
5052
5053   *p = p1;
5054   return true;
5055 } /* common_op_match_null_string_p */
5056
5057
5058 /* Return zero if TRANSLATE[S1] and TRANSLATE[S2] are identical for LEN
5059    bytes; nonzero otherwise.  */
5060    
5061 static int
5062 bcmp_translate (s1, s2, len, translate)
5063      unsigned char *s1, *s2;
5064      register int len;
5065      char *translate;
5066 {
5067   register unsigned char *p1 = s1, *p2 = s2;
5068   while (len)
5069     {
5070       if (translate[*p1++] != translate[*p2++]) return 1;
5071       len--;
5072     }
5073   return 0;
5074 }
5075 \f
5076 /* Entry points for GNU code.  */
5077
5078 /* re_compile_pattern is the GNU regular expression compiler: it
5079    compiles PATTERN (of length SIZE) and puts the result in BUFP.
5080    Returns 0 if the pattern was valid, otherwise an error string.
5081    
5082    Assumes the `allocated' (and perhaps `buffer') and `translate' fields
5083    are set in BUFP on entry.
5084    
5085    We call regex_compile to do the actual compilation.  */
5086
5087 const char *
5088 re_compile_pattern (pattern, length, bufp)
5089      const char *pattern;
5090      int length;
5091      struct re_pattern_buffer *bufp;
5092 {
5093   reg_errcode_t ret;
5094   
5095   /* GNU code is written to assume at least RE_NREGS registers will be set
5096      (and at least one extra will be -1).  */
5097   bufp->regs_allocated = REGS_UNALLOCATED;
5098   
5099   /* And GNU code determines whether or not to get register information
5100      by passing null for the REGS argument to re_match, etc., not by
5101      setting no_sub.  */
5102   bufp->no_sub = 0;
5103   
5104   /* Match anchors at newline.  */
5105   bufp->newline_anchor = 1;
5106   
5107   ret = regex_compile (pattern, length, re_syntax_options, bufp);
5108
5109   if (!ret)
5110     return NULL;
5111   return gettext (re_error_msgid[(int) ret]);
5112 }     
5113 \f
5114 /* Entry points compatible with 4.2 BSD regex library.  We don't define
5115    them unless specifically requested.  */
5116
5117 #ifdef _REGEX_RE_COMP
5118
5119 /* BSD has one and only one pattern buffer.  */
5120 static struct re_pattern_buffer re_comp_buf;
5121
5122 char *
5123 re_comp (s)
5124     const char *s;
5125 {
5126   reg_errcode_t ret;
5127   
5128   if (!s)
5129     {
5130       if (!re_comp_buf.buffer)
5131         return gettext ("No previous regular expression");
5132       return 0;
5133     }
5134
5135   if (!re_comp_buf.buffer)
5136     {
5137       re_comp_buf.buffer = (unsigned char *) malloc (200);
5138       if (re_comp_buf.buffer == NULL)
5139         return gettext (re_error_msgid[(int) REG_ESPACE]);
5140       re_comp_buf.allocated = 200;
5141
5142       re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH);
5143       if (re_comp_buf.fastmap == NULL)
5144         return gettext (re_error_msgid[(int) REG_ESPACE]);
5145     }
5146
5147   /* Since `re_exec' always passes NULL for the `regs' argument, we
5148      don't need to initialize the pattern buffer fields which affect it.  */
5149
5150   /* Match anchors at newlines.  */
5151   re_comp_buf.newline_anchor = 1;
5152
5153   ret = regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
5154   
5155   if (!ret)
5156     return NULL;
5157
5158   /* Yes, we're discarding `const' here if !HAVE_LIBINTL.  */
5159   return (char *) gettext (re_error_msgid[(int) ret]);
5160 }
5161
5162
5163 int
5164 re_exec (s)
5165     const char *s;
5166 {
5167   const int len = strlen (s);
5168   return
5169     0 <= re_search (&re_comp_buf, s, len, 0, len, (struct re_registers *) 0);
5170 }
5171 #endif /* _REGEX_RE_COMP */
5172 \f
5173 /* POSIX.2 functions.  Don't define these for Emacs.  */
5174
5175 #ifndef emacs
5176
5177 /* regcomp takes a regular expression as a string and compiles it.
5178
5179    PREG is a regex_t *.  We do not expect any fields to be initialized,
5180    since POSIX says we shouldn't.  Thus, we set
5181
5182      `buffer' to the compiled pattern;
5183      `used' to the length of the compiled pattern;
5184      `syntax' to RE_SYNTAX_POSIX_EXTENDED if the
5185        REG_EXTENDED bit in CFLAGS is set; otherwise, to
5186        RE_SYNTAX_POSIX_BASIC;
5187      `newline_anchor' to REG_NEWLINE being set in CFLAGS;
5188      `fastmap' and `fastmap_accurate' to zero;
5189      `re_nsub' to the number of subexpressions in PATTERN.
5190
5191    PATTERN is the address of the pattern string.
5192
5193    CFLAGS is a series of bits which affect compilation.
5194
5195      If REG_EXTENDED is set, we use POSIX extended syntax; otherwise, we
5196      use POSIX basic syntax.
5197
5198      If REG_NEWLINE is set, then . and [^...] don't match newline.
5199      Also, regexec will try a match beginning after every newline.
5200
5201      If REG_ICASE is set, then we considers upper- and lowercase
5202      versions of letters to be equivalent when matching.
5203
5204      If REG_NOSUB is set, then when PREG is passed to regexec, that
5205      routine will report only success or failure, and nothing about the
5206      registers.
5207
5208    It returns 0 if it succeeds, nonzero if it doesn't.  (See regex.h for
5209    the return codes and their meanings.)  */
5210
5211 int
5212 regcomp (preg, pattern, cflags)
5213     regex_t *preg;
5214     const char *pattern; 
5215     int cflags;
5216 {
5217   reg_errcode_t ret;
5218   unsigned syntax
5219     = (cflags & REG_EXTENDED) ?
5220       RE_SYNTAX_POSIX_EXTENDED : RE_SYNTAX_POSIX_BASIC;
5221
5222   /* regex_compile will allocate the space for the compiled pattern.  */
5223   preg->buffer = 0;
5224   preg->allocated = 0;
5225   preg->used = 0;
5226   
5227   /* Don't bother to use a fastmap when searching.  This simplifies the
5228      REG_NEWLINE case: if we used a fastmap, we'd have to put all the
5229      characters after newlines into the fastmap.  This way, we just try
5230      every character.  */
5231   preg->fastmap = 0;
5232   
5233   if (cflags & REG_ICASE)
5234     {
5235       unsigned i;
5236       
5237       preg->translate = (char *) malloc (CHAR_SET_SIZE);
5238       if (preg->translate == NULL)
5239         return (int) REG_ESPACE;
5240
5241       /* Map uppercase characters to corresponding lowercase ones.  */
5242       for (i = 0; i < CHAR_SET_SIZE; i++)
5243         preg->translate[i] = ISUPPER (i) ? tolower (i) : i;
5244     }
5245   else
5246     preg->translate = NULL;
5247
5248   /* If REG_NEWLINE is set, newlines are treated differently.  */
5249   if (cflags & REG_NEWLINE)
5250     { /* REG_NEWLINE implies neither . nor [^...] match newline.  */
5251       syntax &= ~RE_DOT_NEWLINE;
5252       syntax |= RE_HAT_LISTS_NOT_NEWLINE;
5253       /* It also changes the matching behavior.  */
5254       preg->newline_anchor = 1;
5255     }
5256   else
5257     preg->newline_anchor = 0;
5258
5259   preg->no_sub = !!(cflags & REG_NOSUB);
5260
5261   /* POSIX says a null character in the pattern terminates it, so we 
5262      can use strlen here in compiling the pattern.  */
5263   ret = regex_compile (pattern, strlen (pattern), syntax, preg);
5264   
5265   /* POSIX doesn't distinguish between an unmatched open-group and an
5266      unmatched close-group: both are REG_EPAREN.  */
5267   if (ret == REG_ERPAREN) ret = REG_EPAREN;
5268   
5269   return (int) ret;
5270 }
5271
5272
5273 /* regexec searches for a given pattern, specified by PREG, in the
5274    string STRING.
5275    
5276    If NMATCH is zero or REG_NOSUB was set in the cflags argument to
5277    `regcomp', we ignore PMATCH.  Otherwise, we assume PMATCH has at
5278    least NMATCH elements, and we set them to the offsets of the
5279    corresponding matched substrings.
5280    
5281    EFLAGS specifies `execution flags' which affect matching: if
5282    REG_NOTBOL is set, then ^ does not match at the beginning of the
5283    string; if REG_NOTEOL is set, then $ does not match at the end.
5284    
5285    We return 0 if we find a match and REG_NOMATCH if not.  */
5286
5287 int
5288 regexec (preg, string, nmatch, pmatch, eflags)
5289     const regex_t *preg;
5290     const char *string; 
5291     size_t nmatch; 
5292     regmatch_t pmatch[]; 
5293     int eflags;
5294 {
5295   int ret;
5296   struct re_registers regs;
5297   regex_t private_preg;
5298   int len = strlen (string);
5299   boolean want_reg_info = !preg->no_sub && nmatch > 0;
5300
5301   private_preg = *preg;
5302   
5303   private_preg.not_bol = !!(eflags & REG_NOTBOL);
5304   private_preg.not_eol = !!(eflags & REG_NOTEOL);
5305   
5306   /* The user has told us exactly how many registers to return
5307      information about, via `nmatch'.  We have to pass that on to the
5308      matching routines.  */
5309   private_preg.regs_allocated = REGS_FIXED;
5310   
5311   if (want_reg_info)
5312     {
5313       regs.num_regs = nmatch;
5314       regs.start = TALLOC (nmatch, regoff_t);
5315       regs.end = TALLOC (nmatch, regoff_t);
5316       if (regs.start == NULL || regs.end == NULL)
5317         return (int) REG_NOMATCH;
5318     }
5319
5320   /* Perform the searching operation.  */
5321   ret = re_search (&private_preg, string, len,
5322                    /* start: */ 0, /* range: */ len,
5323                    want_reg_info ? &regs : (struct re_registers *) 0);
5324   
5325   /* Copy the register information to the POSIX structure.  */
5326   if (want_reg_info)
5327     {
5328       if (ret >= 0)
5329         {
5330           unsigned r;
5331
5332           for (r = 0; r < nmatch; r++)
5333             {
5334               pmatch[r].rm_so = regs.start[r];
5335               pmatch[r].rm_eo = regs.end[r];
5336             }
5337         }
5338
5339       /* If we needed the temporary register info, free the space now.  */
5340       free (regs.start);
5341       free (regs.end);
5342     }
5343
5344   /* We want zero return to mean success, unlike `re_search'.  */
5345   return ret >= 0 ? (int) REG_NOERROR : (int) REG_NOMATCH;
5346 }
5347
5348
5349 /* Returns a message corresponding to an error code, ERRCODE, returned
5350    from either regcomp or regexec.   We don't use PREG here.  */
5351
5352 size_t
5353 regerror (errcode, preg, errbuf, errbuf_size)
5354     int errcode;
5355     const regex_t *preg;
5356     char *errbuf;
5357     size_t errbuf_size;
5358 {
5359   const char *msg;
5360   size_t msg_size;
5361
5362   if (errcode < 0
5363       || errcode >= (sizeof (re_error_msgid) / sizeof (re_error_msgid[0])))
5364     /* Only error codes returned by the rest of the code should be passed 
5365        to this routine.  If we are given anything else, or if other regex
5366        code generates an invalid error code, then the program has a bug.
5367        Dump core so we can fix it.  */
5368     abort ();
5369
5370   msg = gettext (re_error_msgid[errcode]);
5371
5372   msg_size = strlen (msg) + 1; /* Includes the null.  */
5373   
5374   if (errbuf_size != 0)
5375     {
5376       if (msg_size > errbuf_size)
5377         {
5378           strncpy (errbuf, msg, errbuf_size - 1);
5379           errbuf[errbuf_size - 1] = 0;
5380         }
5381       else
5382         strcpy (errbuf, msg);
5383     }
5384
5385   return msg_size;
5386 }
5387
5388
5389 /* Free dynamically allocated space used by PREG.  */
5390
5391 void
5392 regfree (preg)
5393     regex_t *preg;
5394 {
5395   if (preg->buffer != NULL)
5396     free (preg->buffer);
5397   preg->buffer = NULL;
5398   
5399   preg->allocated = 0;
5400   preg->used = 0;
5401
5402   if (preg->fastmap != NULL)
5403     free (preg->fastmap);
5404   preg->fastmap = NULL;
5405   preg->fastmap_accurate = 0;
5406
5407   if (preg->translate != NULL)
5408     free (preg->translate);
5409   preg->translate = NULL;
5410 }
5411
5412 #endif /* not emacs  */
5413 \f
5414 /*
5415 Local variables:
5416 make-backup-files: t
5417 version-control: t
5418 trim-versions-without-asking: nil
5419 End:
5420 */