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