Updated TODO.
[mpdm.git] / gnu_regex.c
blob2ec88d6eded2e8852519465bff3abf46d21ef59b
1 #include "config.h"
3 char *gnu_regex_rcs = "$Id$";
4 #ifdef REGEX
6 #define REGEX_MALLOC
8 /* Extended regular expression matching and search library,
9 version 0.12.
10 (Implements POSIX draft P10003.2/D11.2, except for
11 internationalization features.)
13 Copyright (C) 1993 Free Software Foundation, Inc.
15 This program is free software; you can redistribute it and/or modify
16 it under the terms of the GNU General Public License as published by
17 the Free Software Foundation; either version 2, or (at your option)
18 any later version.
20 This program is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
29 /* AIX requires this to be the first thing in the file. */
30 #if defined (_AIX) && !defined (REGEX_MALLOC)
31 #pragma alloca
32 #endif
34 #define _GNU_SOURCE
36 /* We need this for `regex.h', and perhaps for the Emacs include files. */
37 #if !macintosh
38 #include <sys/types.h>
39 #else
40 #include <SizeTDef.h>
41 #endif
43 #ifdef HAVE_CONFIG_H
44 #include "config.h"
45 #endif
47 /* The `emacs' switch turns on certain matching commands
48 that make sense only in Emacs. */
49 #ifdef emacs
51 #include "lisp.h"
52 #include "buffer.h"
53 #include "syntax.h"
55 /* Emacs uses `NULL' as a predicate. */
56 #undef NULL
58 #else /* not emacs */
60 /* We used to test for `BSTRING' here, but only GCC and Emacs define
61 `BSTRING', as far as I know, and neither of them use this code. */
62 #if HAVE_STRING_H || STDC_HEADERS
63 #include <string.h>
64 #ifndef bcmp
65 #define bcmp(s1, s2, n) memcmp ((s1), (s2), (n))
66 #endif
67 #ifndef bcopy
68 #define bcopy(s, d, n) memcpy ((d), (s), (n))
69 #endif
70 #ifndef bzero
71 #define bzero(s, n) memset ((s), 0, (n))
72 #endif
73 #else
74 #include <strings.h>
75 #endif
77 #ifdef STDC_HEADERS
78 #include <stdlib.h>
79 #else
80 char *malloc ();
81 char *realloc ();
82 #endif
85 /* Define the syntax stuff for \<, \>, etc. */
87 /* This must be nonzero for the wordchar and notwordchar pattern
88 commands in re_match_2. */
89 #ifndef Sword
90 #define Sword 1
91 #endif
93 #ifdef SYNTAX_TABLE
95 extern char *re_syntax_table;
97 #else /* not SYNTAX_TABLE */
99 /* How many characters in the character set. */
100 #define CHAR_SET_SIZE 256
102 static char re_syntax_table[CHAR_SET_SIZE];
104 static void
105 init_syntax_once ()
107 register int c;
108 static int done = 0;
110 if (done)
111 return;
113 bzero (re_syntax_table, sizeof re_syntax_table);
115 for (c = 'a'; c <= 'z'; c++)
116 re_syntax_table[c] = Sword;
118 for (c = 'A'; c <= 'Z'; c++)
119 re_syntax_table[c] = Sword;
121 for (c = '0'; c <= '9'; c++)
122 re_syntax_table[c] = Sword;
124 re_syntax_table['_'] = Sword;
126 done = 1;
129 #endif /* not SYNTAX_TABLE */
131 #define SYNTAX(c) re_syntax_table[c]
133 #endif /* not emacs */
135 /* Get the interface, including the syntax bits. */
136 #include "gnu_regex.h"
138 /* isalpha etc. are used for the character classes. */
139 #include <ctype.h>
141 #ifndef isascii
142 #define isascii(c) 1
143 #endif
145 #ifdef isblank
146 #define ISBLANK(c) (isascii (c) && isblank (c))
147 #else
148 #define ISBLANK(c) ((c) == ' ' || (c) == '\t')
149 #endif
150 #ifdef isgraph
151 #define ISGRAPH(c) (isascii (c) && isgraph (c))
152 #else
153 #define ISGRAPH(c) (isascii (c) && isprint (c) && !isspace (c))
154 #endif
156 #define ISPRINT(c) (isascii (c) && isprint (c))
157 #define ISDIGIT(c) (isascii (c) && isdigit (c))
158 #define ISALNUM(c) (isascii (c) && isalnum (c))
159 #define ISALPHA(c) (isascii (c) && isalpha (c))
160 #define ISCNTRL(c) (isascii (c) && iscntrl (c))
161 #define ISLOWER(c) (isascii (c) && islower (c))
162 #define ISPUNCT(c) (isascii (c) && ispunct (c))
163 #define ISSPACE(c) (isascii (c) && isspace (c))
164 #define ISUPPER(c) (isascii (c) && isupper (c))
165 #define ISXDIGIT(c) (isascii (c) && isxdigit (c))
167 #ifndef NULL
168 #define NULL 0
169 #endif
171 /* We remove any previous definition of `SIGN_EXTEND_CHAR',
172 since ours (we hope) works properly with all combinations of
173 machines, compilers, `char' and `unsigned char' argument types.
174 (Per Bothner suggested the basic approach.) */
175 #undef SIGN_EXTEND_CHAR
176 #if __STDC__
177 #define SIGN_EXTEND_CHAR(c) ((signed char) (c))
178 #else /* not __STDC__ */
179 /* As in Harbison and Steele. */
180 #define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128)
181 #endif
183 /* Should we use malloc or alloca? If REGEX_MALLOC is not defined, we
184 use `alloca' instead of `malloc'. This is because using malloc in
185 re_search* or re_match* could cause memory leaks when C-g is used in
186 Emacs; also, malloc is slower and causes storage fragmentation. On
187 the other hand, malloc is more portable, and easier to debug.
189 Because we sometimes use alloca, some routines have to be macros,
190 not functions -- `alloca'-allocated space disappears at the end of the
191 function it is called in. */
193 #ifdef REGEX_MALLOC
195 #define REGEX_ALLOCATE malloc
196 #define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize)
198 #else /* not REGEX_MALLOC */
200 /* Emacs already defines alloca, sometimes. */
201 #ifndef alloca
203 /* Make alloca work the best possible way. */
204 #ifdef __GNUC__
205 #define alloca __builtin_alloca
206 #else /* not __GNUC__ */
207 #if HAVE_ALLOCA_H
208 #include <alloca.h>
209 #else /* not __GNUC__ or HAVE_ALLOCA_H */
210 #ifndef _AIX /* Already did AIX, up at the top. */
211 char *alloca ();
212 #endif /* not _AIX */
213 #endif /* not HAVE_ALLOCA_H */
214 #endif /* not __GNUC__ */
216 #endif /* not alloca */
218 #define REGEX_ALLOCATE alloca
220 /* Assumes a `char *destination' variable. */
221 #define REGEX_REALLOCATE(source, osize, nsize) \
222 (destination = (char *) alloca (nsize), \
223 bcopy (source, destination, osize), \
224 destination)
226 #endif /* not REGEX_MALLOC */
229 /* True if `size1' is non-NULL and PTR is pointing anywhere inside
230 `string1' or just past its end. This works if PTR is NULL, which is
231 a good thing. */
232 #define FIRST_STRING_P(ptr) \
233 (size1 && string1 <= (ptr) && (ptr) <= string1 + size1)
235 /* (Re)Allocate N items of type T using malloc, or fail. */
236 #define TALLOC(n, t) ((t *) malloc ((n) * sizeof (t)))
237 #define RETALLOC(addr, n, t) ((addr) = (t *) realloc (addr, (n) * sizeof (t)))
238 #define REGEX_TALLOC(n, t) ((t *) REGEX_ALLOCATE ((n) * sizeof (t)))
240 #define BYTEWIDTH 8 /* In bits. */
242 #define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
244 #define MAX(a, b) ((a) > (b) ? (a) : (b))
245 #define MIN(a, b) ((a) < (b) ? (a) : (b))
247 typedef char boolean;
248 #define false 0
249 #define true 1
251 /* These are the command codes that appear in compiled regular
252 expressions. Some opcodes are followed by argument bytes. A
253 command code can specify any interpretation whatsoever for its
254 arguments. Zero bytes may appear in the compiled regular expression.
256 The value of `exactn' is needed in search.c (search_buffer) in Emacs.
257 So regex.h defines a symbol `RE_EXACTN_VALUE' to be 1; the value of
258 `exactn' we use here must also be 1. */
260 typedef enum
262 no_op = 0,
264 /* Followed by one byte giving n, then by n literal bytes. */
265 exactn = 1,
267 /* Matches any (more or less) character. */
268 anychar,
270 /* Matches any one char belonging to specified set. First
271 following byte is number of bitmap bytes. Then come bytes
272 for a bitmap saying which chars are in. Bits in each byte
273 are ordered low-bit-first. A character is in the set if its
274 bit is 1. A character too large to have a bit in the map is
275 automatically not in the set. */
276 charset,
278 /* Same parameters as charset, but match any character that is
279 not one of those specified. */
280 charset_not,
282 /* Start remembering the text that is matched, for storing in a
283 register. Followed by one byte with the register number, in
284 the range 0 to one less than the pattern buffer's re_nsub
285 field. Then followed by one byte with the number of groups
286 inner to this one. (This last has to be part of the
287 start_memory only because we need it in the on_failure_jump
288 of re_match_2.) */
289 start_memory,
291 /* Stop remembering the text that is matched and store it in a
292 memory register. Followed by one byte with the register
293 number, in the range 0 to one less than `re_nsub' in the
294 pattern buffer, and one byte with the number of inner groups,
295 just like `start_memory'. (We need the number of inner
296 groups here because we don't have any easy way of finding the
297 corresponding start_memory when we're at a stop_memory.) */
298 stop_memory,
300 /* Match a duplicate of something remembered. Followed by one
301 byte containing the register number. */
302 duplicate,
304 /* Fail unless at beginning of line. */
305 begline,
307 /* Fail unless at end of line. */
308 endline,
310 /* Succeeds if at beginning of buffer (if emacs) or at beginning
311 of string to be matched (if not). */
312 begbuf,
314 /* Analogously, for end of buffer/string. */
315 endbuf,
317 /* Followed by two byte relative address to which to jump. */
318 jump,
320 /* Same as jump, but marks the end of an alternative. */
321 jump_past_alt,
323 /* Followed by two-byte relative address of place to resume at
324 in case of failure. */
325 on_failure_jump,
327 /* Like on_failure_jump, but pushes a placeholder instead of the
328 current string position when executed. */
329 on_failure_keep_string_jump,
331 /* Throw away latest failure point and then jump to following
332 two-byte relative address. */
333 pop_failure_jump,
335 /* Change to pop_failure_jump if know won't have to backtrack to
336 match; otherwise change to jump. This is used to jump
337 back to the beginning of a repeat. If what follows this jump
338 clearly won't match what the repeat does, such that we can be
339 sure that there is no use backtracking out of repetitions
340 already matched, then we change it to a pop_failure_jump.
341 Followed by two-byte address. */
342 maybe_pop_jump,
344 /* Jump to following two-byte address, and push a dummy failure
345 point. This failure point will be thrown away if an attempt
346 is made to use it for a failure. A `+' construct makes this
347 before the first repeat. Also used as an intermediary kind
348 of jump when compiling an alternative. */
349 dummy_failure_jump,
351 /* Push a dummy failure point and continue. Used at the end of
352 alternatives. */
353 push_dummy_failure,
355 /* Followed by two-byte relative address and two-byte number n.
356 After matching N times, jump to the address upon failure. */
357 succeed_n,
359 /* Followed by two-byte relative address, and two-byte number n.
360 Jump to the address N times, then fail. */
361 jump_n,
363 /* Set the following two-byte relative address to the
364 subsequent two-byte number. The address *includes* the two
365 bytes of number. */
366 set_number_at,
368 wordchar, /* Matches any word-constituent character. */
369 notwordchar, /* Matches any char that is not a word-constituent. */
371 wordbeg, /* Succeeds if at word beginning. */
372 wordend, /* Succeeds if at word end. */
374 wordbound, /* Succeeds if at a word boundary. */
375 notwordbound /* Succeeds if not at a word boundary. */
377 #ifdef emacs
378 ,before_dot, /* Succeeds if before point. */
379 at_dot, /* Succeeds if at point. */
380 after_dot, /* Succeeds if after point. */
382 /* Matches any character whose syntax is specified. Followed by
383 a byte which contains a syntax code, e.g., Sword. */
384 syntaxspec,
386 /* Matches any character whose syntax is not that specified. */
387 notsyntaxspec
388 #endif /* emacs */
389 } re_opcode_t;
391 /* Common operations on the compiled pattern. */
393 /* Store NUMBER in two contiguous bytes starting at DESTINATION. */
395 #define STORE_NUMBER(destination, number) \
396 do { \
397 (destination)[0] = (number) & 0377; \
398 (destination)[1] = (number) >> 8; \
399 } while (0)
401 /* Same as STORE_NUMBER, except increment DESTINATION to
402 the byte after where the number is stored. Therefore, DESTINATION
403 must be an lvalue. */
405 #define STORE_NUMBER_AND_INCR(destination, number) \
406 do { \
407 STORE_NUMBER (destination, number); \
408 (destination) += 2; \
409 } while (0)
411 /* Put into DESTINATION a number stored in two contiguous bytes starting
412 at SOURCE. */
414 #define EXTRACT_NUMBER(destination, source) \
415 do { \
416 (destination) = *(source) & 0377; \
417 (destination) += SIGN_EXTEND_CHAR (*((source) + 1)) << 8; \
418 } while (0)
420 #ifdef DEBUG
421 static void
422 extract_number (dest, source)
423 int *dest;
424 unsigned char *source;
426 int temp = SIGN_EXTEND_CHAR (*(source + 1));
427 *dest = *source & 0377;
428 *dest += temp << 8;
431 #ifndef EXTRACT_MACROS /* To debug the macros. */
432 #undef EXTRACT_NUMBER
433 #define EXTRACT_NUMBER(dest, src) extract_number (&dest, src)
434 #endif /* not EXTRACT_MACROS */
436 #endif /* DEBUG */
438 /* Same as EXTRACT_NUMBER, except increment SOURCE to after the number.
439 SOURCE must be an lvalue. */
441 #define EXTRACT_NUMBER_AND_INCR(destination, source) \
442 do { \
443 EXTRACT_NUMBER (destination, source); \
444 (source) += 2; \
445 } while (0)
447 #ifdef DEBUG
448 static void
449 extract_number_and_incr (destination, source)
450 int *destination;
451 unsigned char **source;
453 extract_number (destination, *source);
454 *source += 2;
457 #ifndef EXTRACT_MACROS
458 #undef EXTRACT_NUMBER_AND_INCR
459 #define EXTRACT_NUMBER_AND_INCR(dest, src) \
460 extract_number_and_incr (&dest, &src)
461 #endif /* not EXTRACT_MACROS */
463 #endif /* DEBUG */
465 /* If DEBUG is defined, Regex prints many voluminous messages about what
466 it is doing (if the variable `debug' is nonzero). If linked with the
467 main program in `iregex.c', you can enter patterns and strings
468 interactively. And if linked with the main program in `main.c' and
469 the other test files, you can run the already-written tests. */
471 #ifdef DEBUG
473 /* We use standard I/O for debugging. */
474 #include <stdio.h>
476 /* It is useful to test things that ``must'' be true when debugging. */
477 #include <assert.h>
479 static int debug = 0;
481 #define DEBUG_STATEMENT(e) e
482 #define DEBUG_PRINT1(x) if (debug) printf (x)
483 #define DEBUG_PRINT2(x1, x2) if (debug) printf (x1, x2)
484 #define DEBUG_PRINT3(x1, x2, x3) if (debug) printf (x1, x2, x3)
485 #define DEBUG_PRINT4(x1, x2, x3, x4) if (debug) printf (x1, x2, x3, x4)
486 #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e) \
487 if (debug) print_partial_compiled_pattern (s, e)
488 #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2) \
489 if (debug) print_double_string (w, s1, sz1, s2, sz2)
492 extern void printchar();
494 /* Print the fastmap in human-readable form. */
496 void
497 print_fastmap (fastmap)
498 char *fastmap;
500 unsigned was_a_range = 0;
501 unsigned i = 0;
503 while (i < (1 << BYTEWIDTH))
505 if (fastmap[i++])
507 was_a_range = 0;
508 printchar (i - 1);
509 while (i < (1 << BYTEWIDTH) && fastmap[i])
511 was_a_range = 1;
512 i++;
514 if (was_a_range)
516 printf ("-");
517 printchar (i - 1);
521 putchar ('\n');
525 /* Print a compiled pattern string in human-readable form, starting at
526 the START pointer into it and ending just before the pointer END. */
528 void
529 print_partial_compiled_pattern (start, end)
530 unsigned char *start;
531 unsigned char *end;
533 int mcnt, mcnt2;
534 unsigned char *p = start;
535 unsigned char *pend = end;
537 if (start == NULL)
539 printf ("(null)\n");
540 return;
543 /* Loop over pattern commands. */
544 while (p < pend)
546 switch ((re_opcode_t) *p++)
548 case no_op:
549 printf ("/no_op");
550 break;
552 case exactn:
553 mcnt = *p++;
554 printf ("/exactn/%d", mcnt);
557 putchar ('/');
558 printchar (*p++);
560 while (--mcnt);
561 break;
563 case start_memory:
564 mcnt = *p++;
565 printf ("/start_memory/%d/%d", mcnt, *p++);
566 break;
568 case stop_memory:
569 mcnt = *p++;
570 printf ("/stop_memory/%d/%d", mcnt, *p++);
571 break;
573 case duplicate:
574 printf ("/duplicate/%d", *p++);
575 break;
577 case anychar:
578 printf ("/anychar");
579 break;
581 case charset:
582 case charset_not:
584 register int c;
586 printf ("/charset%s",
587 (re_opcode_t) *(p - 1) == charset_not ? "_not" : "");
589 assert (p + *p < pend);
591 for (c = 0; c < *p; c++)
593 unsigned bit;
594 unsigned char map_byte = p[1 + c];
596 putchar ('/');
598 for (bit = 0; bit < BYTEWIDTH; bit++)
599 if (map_byte & (1 << bit))
600 printchar (c * BYTEWIDTH + bit);
602 p += 1 + *p;
603 break;
606 case begline:
607 printf ("/begline");
608 break;
610 case endline:
611 printf ("/endline");
612 break;
614 case on_failure_jump:
615 extract_number_and_incr (&mcnt, &p);
616 printf ("/on_failure_jump/0/%d", mcnt);
617 break;
619 case on_failure_keep_string_jump:
620 extract_number_and_incr (&mcnt, &p);
621 printf ("/on_failure_keep_string_jump/0/%d", mcnt);
622 break;
624 case dummy_failure_jump:
625 extract_number_and_incr (&mcnt, &p);
626 printf ("/dummy_failure_jump/0/%d", mcnt);
627 break;
629 case push_dummy_failure:
630 printf ("/push_dummy_failure");
631 break;
633 case maybe_pop_jump:
634 extract_number_and_incr (&mcnt, &p);
635 printf ("/maybe_pop_jump/0/%d", mcnt);
636 break;
638 case pop_failure_jump:
639 extract_number_and_incr (&mcnt, &p);
640 printf ("/pop_failure_jump/0/%d", mcnt);
641 break;
643 case jump_past_alt:
644 extract_number_and_incr (&mcnt, &p);
645 printf ("/jump_past_alt/0/%d", mcnt);
646 break;
648 case jump:
649 extract_number_and_incr (&mcnt, &p);
650 printf ("/jump/0/%d", mcnt);
651 break;
653 case succeed_n:
654 extract_number_and_incr (&mcnt, &p);
655 extract_number_and_incr (&mcnt2, &p);
656 printf ("/succeed_n/0/%d/0/%d", mcnt, mcnt2);
657 break;
659 case jump_n:
660 extract_number_and_incr (&mcnt, &p);
661 extract_number_and_incr (&mcnt2, &p);
662 printf ("/jump_n/0/%d/0/%d", mcnt, mcnt2);
663 break;
665 case set_number_at:
666 extract_number_and_incr (&mcnt, &p);
667 extract_number_and_incr (&mcnt2, &p);
668 printf ("/set_number_at/0/%d/0/%d", mcnt, mcnt2);
669 break;
671 case wordbound:
672 printf ("/wordbound");
673 break;
675 case notwordbound:
676 printf ("/notwordbound");
677 break;
679 case wordbeg:
680 printf ("/wordbeg");
681 break;
683 case wordend:
684 printf ("/wordend");
686 #ifdef emacs
687 case before_dot:
688 printf ("/before_dot");
689 break;
691 case at_dot:
692 printf ("/at_dot");
693 break;
695 case after_dot:
696 printf ("/after_dot");
697 break;
699 case syntaxspec:
700 printf ("/syntaxspec");
701 mcnt = *p++;
702 printf ("/%d", mcnt);
703 break;
705 case notsyntaxspec:
706 printf ("/notsyntaxspec");
707 mcnt = *p++;
708 printf ("/%d", mcnt);
709 break;
710 #endif /* emacs */
712 case wordchar:
713 printf ("/wordchar");
714 break;
716 case notwordchar:
717 printf ("/notwordchar");
718 break;
720 case begbuf:
721 printf ("/begbuf");
722 break;
724 case endbuf:
725 printf ("/endbuf");
726 break;
728 default:
729 printf ("?%d", *(p-1));
732 printf ("/\n");
736 void
737 print_compiled_pattern (bufp)
738 struct re_pattern_buffer *bufp;
740 unsigned char *buffer = bufp->buffer;
742 print_partial_compiled_pattern (buffer, buffer + bufp->used);
743 printf ("%d bytes used/%d bytes allocated.\n", bufp->used, bufp->allocated);
745 if (bufp->fastmap_accurate && bufp->fastmap)
747 printf ("fastmap: ");
748 print_fastmap (bufp->fastmap);
751 printf ("re_nsub: %d\t", bufp->re_nsub);
752 printf ("regs_alloc: %d\t", bufp->regs_allocated);
753 printf ("can_be_null: %d\t", bufp->can_be_null);
754 printf ("newline_anchor: %d\n", bufp->newline_anchor);
755 printf ("no_sub: %d\t", bufp->no_sub);
756 printf ("not_bol: %d\t", bufp->not_bol);
757 printf ("not_eol: %d\t", bufp->not_eol);
758 printf ("syntax: %d\n", bufp->syntax);
759 /* Perhaps we should print the translate table? */
763 void
764 print_double_string (where, string1, size1, string2, size2)
765 const char *where;
766 const char *string1;
767 const char *string2;
768 int size1;
769 int size2;
771 unsigned this_char;
773 if (where == NULL)
774 printf ("(null)");
775 else
777 if (FIRST_STRING_P (where))
779 for (this_char = where - string1; this_char < size1; this_char++)
780 printchar (string1[this_char]);
782 where = string2;
785 for (this_char = where - string2; this_char < size2; this_char++)
786 printchar (string2[this_char]);
790 #else /* not DEBUG */
792 #undef assert
793 #define assert(e)
795 #define DEBUG_STATEMENT(e)
796 #define DEBUG_PRINT1(x)
797 #define DEBUG_PRINT2(x1, x2)
798 #define DEBUG_PRINT3(x1, x2, x3)
799 #define DEBUG_PRINT4(x1, x2, x3, x4)
800 #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)
801 #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)
803 #endif /* not DEBUG */
805 /* Set by `re_set_syntax' to the current regexp syntax to recognize. Can
806 also be assigned to arbitrarily: each pattern buffer stores its own
807 syntax, so it can be changed between regex compilations. */
808 reg_syntax_t re_syntax_options = RE_SYNTAX_EMACS;
811 /* Specify the precise syntax of regexps for compilation. This provides
812 for compatibility for various utilities which historically have
813 different, incompatible syntaxes.
815 The argument SYNTAX is a bit mask comprised of the various bits
816 defined in regex.h. We return the old syntax. */
818 reg_syntax_t
819 re_set_syntax (syntax)
820 reg_syntax_t syntax;
822 reg_syntax_t ret = re_syntax_options;
824 re_syntax_options = syntax;
825 return ret;
828 /* This table gives an error message for each of the error codes listed
829 in regex.h. Obviously the order here has to be same as there. */
831 static const char *re_error_msg[] =
832 { NULL, /* REG_NOERROR */
833 "No match", /* REG_NOMATCH */
834 "Invalid regular expression", /* REG_BADPAT */
835 "Invalid collation character", /* REG_ECOLLATE */
836 "Invalid character class name", /* REG_ECTYPE */
837 "Trailing backslash", /* REG_EESCAPE */
838 "Invalid back reference", /* REG_ESUBREG */
839 "Unmatched [ or [^", /* REG_EBRACK */
840 "Unmatched ( or \\(", /* REG_EPAREN */
841 "Unmatched \\{", /* REG_EBRACE */
842 "Invalid content of \\{\\}", /* REG_BADBR */
843 "Invalid range end", /* REG_ERANGE */
844 "Memory exhausted", /* REG_ESPACE */
845 "Invalid preceding regular expression", /* REG_BADRPT */
846 "Premature end of regular expression", /* REG_EEND */
847 "Regular expression too big", /* REG_ESIZE */
848 "Unmatched ) or \\)", /* REG_ERPAREN */
851 /* Subroutine declarations and macros for regex_compile. */
853 static void store_op1 (), store_op2 ();
854 static void insert_op1 (), insert_op2 ();
855 static boolean at_begline_loc_p (), at_endline_loc_p ();
856 static boolean group_in_compile_stack ();
857 static reg_errcode_t compile_range ();
859 /* Fetch the next character in the uncompiled pattern---translating it
860 if necessary. Also cast from a signed character in the constant
861 string passed to us by the user to an unsigned char that we can use
862 as an array index (in, e.g., `translate'). */
863 #define PATFETCH(c) \
864 do {if (p == pend) return REG_EEND; \
865 c = (unsigned char) *p++; \
866 if (translate) c = translate[c]; \
867 } while (0)
869 /* Fetch the next character in the uncompiled pattern, with no
870 translation. */
871 #define PATFETCH_RAW(c) \
872 do {if (p == pend) return REG_EEND; \
873 c = (unsigned char) *p++; \
874 } while (0)
876 /* Go backwards one character in the pattern. */
877 #define PATUNFETCH p--
880 /* If `translate' is non-null, return translate[D], else just D. We
881 cast the subscript to translate because some data is declared as
882 `char *', to avoid warnings when a string constant is passed. But
883 when we use a character as a subscript we must make it unsigned. */
884 #define TRANSLATE(d) (translate ? translate[(unsigned char) (d)] : (d))
887 /* Macros for outputting the compiled pattern into `buffer'. */
889 /* If the buffer isn't allocated when it comes in, use this. */
890 #define INIT_BUF_SIZE 32
892 /* Make sure we have at least N more bytes of space in buffer. */
893 #define GET_BUFFER_SPACE(n) \
894 while (b - bufp->buffer + (n) > bufp->allocated) \
895 EXTEND_BUFFER ()
897 /* Make sure we have one more byte of buffer space and then add C to it. */
898 #define BUF_PUSH(c) \
899 do { \
900 GET_BUFFER_SPACE (1); \
901 *b++ = (unsigned char) (c); \
902 } while (0)
905 /* Ensure we have two more bytes of buffer space and then append C1 and C2. */
906 #define BUF_PUSH_2(c1, c2) \
907 do { \
908 GET_BUFFER_SPACE (2); \
909 *b++ = (unsigned char) (c1); \
910 *b++ = (unsigned char) (c2); \
911 } while (0)
914 /* As with BUF_PUSH_2, except for three bytes. */
915 #define BUF_PUSH_3(c1, c2, c3) \
916 do { \
917 GET_BUFFER_SPACE (3); \
918 *b++ = (unsigned char) (c1); \
919 *b++ = (unsigned char) (c2); \
920 *b++ = (unsigned char) (c3); \
921 } while (0)
924 /* Store a jump with opcode OP at LOC to location TO. We store a
925 relative address offset by the three bytes the jump itself occupies. */
926 #define STORE_JUMP(op, loc, to) \
927 store_op1 (op, loc, (to) - (loc) - 3)
929 /* Likewise, for a two-argument jump. */
930 #define STORE_JUMP2(op, loc, to, arg) \
931 store_op2 (op, loc, (to) - (loc) - 3, arg)
933 /* Like `STORE_JUMP', but for inserting. Assume `b' is the buffer end. */
934 #define INSERT_JUMP(op, loc, to) \
935 insert_op1 (op, loc, (to) - (loc) - 3, b)
937 /* Like `STORE_JUMP2', but for inserting. Assume `b' is the buffer end. */
938 #define INSERT_JUMP2(op, loc, to, arg) \
939 insert_op2 (op, loc, (to) - (loc) - 3, arg, b)
942 /* This is not an arbitrary limit: the arguments which represent offsets
943 into the pattern are two bytes long. So if 2^16 bytes turns out to
944 be too small, many things would have to change. */
945 #define MAX_BUF_SIZE (1L << 16)
948 /* Extend the buffer by twice its current size via realloc and
949 reset the pointers that pointed into the old block to point to the
950 correct places in the new one. If extending the buffer results in it
951 being larger than MAX_BUF_SIZE, then flag memory exhausted. */
952 #define EXTEND_BUFFER() \
953 do { \
954 unsigned char *old_buffer = bufp->buffer; \
955 if (bufp->allocated == MAX_BUF_SIZE) \
956 return REG_ESIZE; \
957 bufp->allocated <<= 1; \
958 if (bufp->allocated > MAX_BUF_SIZE) \
959 bufp->allocated = MAX_BUF_SIZE; \
960 bufp->buffer = (unsigned char *) realloc (bufp->buffer, bufp->allocated);\
961 if (bufp->buffer == NULL) \
962 return REG_ESPACE; \
963 /* If the buffer moved, move all the pointers into it. */ \
964 if (old_buffer != bufp->buffer) \
966 b = (b - old_buffer) + bufp->buffer; \
967 begalt = (begalt - old_buffer) + bufp->buffer; \
968 if (fixup_alt_jump) \
969 fixup_alt_jump = (fixup_alt_jump - old_buffer) + bufp->buffer;\
970 if (laststart) \
971 laststart = (laststart - old_buffer) + bufp->buffer; \
972 if (pending_exact) \
973 pending_exact = (pending_exact - old_buffer) + bufp->buffer; \
975 } while (0)
978 /* Since we have one byte reserved for the register number argument to
979 {start,stop}_memory, the maximum number of groups we can report
980 things about is what fits in that byte. */
981 #define MAX_REGNUM 255
983 /* But patterns can have more than `MAX_REGNUM' registers. We just
984 ignore the excess. */
985 typedef unsigned regnum_t;
988 /* Macros for the compile stack. */
990 /* Since offsets can go either forwards or backwards, this type needs to
991 be able to hold values from -(MAX_BUF_SIZE - 1) to MAX_BUF_SIZE - 1. */
992 typedef int pattern_offset_t;
994 typedef struct
996 pattern_offset_t begalt_offset;
997 pattern_offset_t fixup_alt_jump;
998 pattern_offset_t inner_group_offset;
999 pattern_offset_t laststart_offset;
1000 regnum_t regnum;
1001 } compile_stack_elt_t;
1004 typedef struct
1006 compile_stack_elt_t *stack;
1007 unsigned size;
1008 unsigned avail; /* Offset of next open position. */
1009 } compile_stack_type;
1012 #define INIT_COMPILE_STACK_SIZE 32
1014 #define COMPILE_STACK_EMPTY (compile_stack.avail == 0)
1015 #define COMPILE_STACK_FULL (compile_stack.avail == compile_stack.size)
1017 /* The next available element. */
1018 #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
1021 /* Set the bit for character C in a list. */
1022 #define SET_LIST_BIT(c) \
1023 (b[((unsigned char) (c)) / BYTEWIDTH] \
1024 |= 1 << (((unsigned char) c) % BYTEWIDTH))
1027 /* Get the next unsigned number in the uncompiled pattern. */
1028 #define GET_UNSIGNED_NUMBER(num) \
1029 { if (p != pend) \
1031 PATFETCH (c); \
1032 while (ISDIGIT (c)) \
1034 if (num < 0) \
1035 num = 0; \
1036 num = num * 10 + c - '0'; \
1037 if (p == pend) \
1038 break; \
1039 PATFETCH (c); \
1044 #define CHAR_CLASS_MAX_LENGTH 6 /* Namely, `xdigit'. */
1046 #define IS_CHAR_CLASS(string) \
1047 (STREQ (string, "alpha") || STREQ (string, "upper") \
1048 || STREQ (string, "lower") || STREQ (string, "digit") \
1049 || STREQ (string, "alnum") || STREQ (string, "xdigit") \
1050 || STREQ (string, "space") || STREQ (string, "print") \
1051 || STREQ (string, "punct") || STREQ (string, "graph") \
1052 || STREQ (string, "cntrl") || STREQ (string, "blank"))
1054 /* `regex_compile' compiles PATTERN (of length SIZE) according to SYNTAX.
1055 Returns one of error codes defined in `regex.h', or zero for success.
1057 Assumes the `allocated' (and perhaps `buffer') and `translate'
1058 fields are set in BUFP on entry.
1060 If it succeeds, results are put in BUFP (if it returns an error, the
1061 contents of BUFP are undefined):
1062 `buffer' is the compiled pattern;
1063 `syntax' is set to SYNTAX;
1064 `used' is set to the length of the compiled pattern;
1065 `fastmap_accurate' is zero;
1066 `re_nsub' is the number of subexpressions in PATTERN;
1067 `not_bol' and `not_eol' are zero;
1069 The `fastmap' and `newline_anchor' fields are neither
1070 examined nor set. */
1072 static reg_errcode_t
1073 regex_compile (pattern, size, syntax, bufp)
1074 const char *pattern;
1075 int size;
1076 reg_syntax_t syntax;
1077 struct re_pattern_buffer *bufp;
1079 /* We fetch characters from PATTERN here. Even though PATTERN is
1080 `char *' (i.e., signed), we declare these variables as unsigned, so
1081 they can be reliably used as array indices. */
1082 register unsigned char c, c1;
1084 /* A random tempory spot in PATTERN. */
1085 const char *p1;
1087 /* Points to the end of the buffer, where we should append. */
1088 register unsigned char *b;
1090 /* Keeps track of unclosed groups. */
1091 compile_stack_type compile_stack;
1093 /* Points to the current (ending) position in the pattern. */
1094 const char *p = pattern;
1095 const char *pend = pattern + size;
1097 /* How to translate the characters in the pattern. */
1098 char *translate = bufp->translate;
1100 /* Address of the count-byte of the most recently inserted `exactn'
1101 command. This makes it possible to tell if a new exact-match
1102 character can be added to that command or if the character requires
1103 a new `exactn' command. */
1104 unsigned char *pending_exact = 0;
1106 /* Address of start of the most recently finished expression.
1107 This tells, e.g., postfix * where to find the start of its
1108 operand. Reset at the beginning of groups and alternatives. */
1109 unsigned char *laststart = 0;
1111 /* Address of beginning of regexp, or inside of last group. */
1112 unsigned char *begalt;
1114 /* Place in the uncompiled pattern (i.e., the {) to
1115 which to go back if the interval is invalid. */
1116 const char *beg_interval;
1118 /* Address of the place where a forward jump should go to the end of
1119 the containing expression. Each alternative of an `or' -- except the
1120 last -- ends with a forward jump of this sort. */
1121 unsigned char *fixup_alt_jump = 0;
1123 /* Counts open-groups as they are encountered. Remembered for the
1124 matching close-group on the compile stack, so the same register
1125 number is put in the stop_memory as the start_memory. */
1126 regnum_t regnum = 0;
1128 #ifdef DEBUG
1129 DEBUG_PRINT1 ("\nCompiling pattern: ");
1130 if (debug)
1132 unsigned debug_count;
1134 for (debug_count = 0; debug_count < size; debug_count++)
1135 printchar (pattern[debug_count]);
1136 putchar ('\n');
1138 #endif /* DEBUG */
1140 /* Initialize the compile stack. */
1141 compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t);
1142 if (compile_stack.stack == NULL)
1143 return REG_ESPACE;
1145 compile_stack.size = INIT_COMPILE_STACK_SIZE;
1146 compile_stack.avail = 0;
1148 /* Initialize the pattern buffer. */
1149 bufp->syntax = syntax;
1150 bufp->fastmap_accurate = 0;
1151 bufp->not_bol = bufp->not_eol = 0;
1153 /* Set `used' to zero, so that if we return an error, the pattern
1154 printer (for debugging) will think there's no pattern. We reset it
1155 at the end. */
1156 bufp->used = 0;
1158 /* Always count groups, whether or not bufp->no_sub is set. */
1159 bufp->re_nsub = 0;
1161 #if !defined (emacs) && !defined (SYNTAX_TABLE)
1162 /* Initialize the syntax table. */
1163 init_syntax_once ();
1164 #endif
1166 if (bufp->allocated == 0)
1168 if (bufp->buffer)
1169 { /* If zero allocated, but buffer is non-null, try to realloc
1170 enough space. This loses if buffer's address is bogus, but
1171 that is the user's responsibility. */
1172 RETALLOC (bufp->buffer, INIT_BUF_SIZE, unsigned char);
1174 else
1175 { /* Caller did not allocate a buffer. Do it for them. */
1176 bufp->buffer = TALLOC (INIT_BUF_SIZE, unsigned char);
1178 if (!bufp->buffer) return REG_ESPACE;
1180 bufp->allocated = INIT_BUF_SIZE;
1183 begalt = b = bufp->buffer;
1185 /* Loop through the uncompiled pattern until we're at the end. */
1186 while (p != pend)
1188 PATFETCH (c);
1190 switch (c)
1192 case '^':
1194 if ( /* If at start of pattern, it's an operator. */
1195 p == pattern + 1
1196 /* If context independent, it's an operator. */
1197 || syntax & RE_CONTEXT_INDEP_ANCHORS
1198 /* Otherwise, depends on what's come before. */
1199 || at_begline_loc_p (pattern, p, syntax))
1200 BUF_PUSH (begline);
1201 else
1202 goto normal_char;
1204 break;
1207 case '$':
1209 if ( /* If at end of pattern, it's an operator. */
1210 p == pend
1211 /* If context independent, it's an operator. */
1212 || syntax & RE_CONTEXT_INDEP_ANCHORS
1213 /* Otherwise, depends on what's next. */
1214 || at_endline_loc_p (p, pend, syntax))
1215 BUF_PUSH (endline);
1216 else
1217 goto normal_char;
1219 break;
1222 case '+':
1223 case '?':
1224 if ((syntax & RE_BK_PLUS_QM)
1225 || (syntax & RE_LIMITED_OPS))
1226 goto normal_char;
1227 handle_plus:
1228 case '*':
1229 /* If there is no previous pattern... */
1230 if (!laststart)
1232 if (syntax & RE_CONTEXT_INVALID_OPS)
1233 return REG_BADRPT;
1234 else if (!(syntax & RE_CONTEXT_INDEP_OPS))
1235 goto normal_char;
1239 /* Are we optimizing this jump? */
1240 boolean keep_string_p = false;
1242 /* 1 means zero (many) matches is allowed. */
1243 char zero_times_ok = 0, many_times_ok = 0;
1245 /* If there is a sequence of repetition chars, collapse it
1246 down to just one (the right one). We can't combine
1247 interval operators with these because of, e.g., `a{2}*',
1248 which should only match an even number of `a's. */
1250 for (;;)
1252 zero_times_ok |= c != '+';
1253 many_times_ok |= c != '?';
1255 if (p == pend)
1256 break;
1258 PATFETCH (c);
1260 if (c == '*'
1261 || (!(syntax & RE_BK_PLUS_QM) && (c == '+' || c == '?')))
1264 else if (syntax & RE_BK_PLUS_QM && c == '\\')
1266 if (p == pend) return REG_EESCAPE;
1268 PATFETCH (c1);
1269 if (!(c1 == '+' || c1 == '?'))
1271 PATUNFETCH;
1272 PATUNFETCH;
1273 break;
1276 c = c1;
1278 else
1280 PATUNFETCH;
1281 break;
1284 /* If we get here, we found another repeat character. */
1287 /* Star, etc. applied to an empty pattern is equivalent
1288 to an empty pattern. */
1289 if (!laststart)
1290 break;
1292 /* Now we know whether or not zero matches is allowed
1293 and also whether or not two or more matches is allowed. */
1294 if (many_times_ok)
1295 { /* More than one repetition is allowed, so put in at the
1296 end a backward relative jump from `b' to before the next
1297 jump we're going to put in below (which jumps from
1298 laststart to after this jump).
1300 But if we are at the `*' in the exact sequence `.*\n',
1301 insert an unconditional jump backwards to the .,
1302 instead of the beginning of the loop. This way we only
1303 push a failure point once, instead of every time
1304 through the loop. */
1305 assert (p - 1 > pattern);
1307 /* Allocate the space for the jump. */
1308 GET_BUFFER_SPACE (3);
1310 /* We know we are not at the first character of the pattern,
1311 because laststart was nonzero. And we've already
1312 incremented `p', by the way, to be the character after
1313 the `*'. Do we have to do something analogous here
1314 for null bytes, because of RE_DOT_NOT_NULL? */
1315 if (TRANSLATE (*(p - 2)) == TRANSLATE ('.')
1316 && zero_times_ok
1317 && p < pend && TRANSLATE (*p) == TRANSLATE ('\n')
1318 && !(syntax & RE_DOT_NEWLINE))
1319 { /* We have .*\n. */
1320 STORE_JUMP (jump, b, laststart);
1321 keep_string_p = true;
1323 else
1324 /* Anything else. */
1325 STORE_JUMP (maybe_pop_jump, b, laststart - 3);
1327 /* We've added more stuff to the buffer. */
1328 b += 3;
1331 /* On failure, jump from laststart to b + 3, which will be the
1332 end of the buffer after this jump is inserted. */
1333 GET_BUFFER_SPACE (3);
1334 INSERT_JUMP (keep_string_p ? on_failure_keep_string_jump
1335 : on_failure_jump,
1336 laststart, b + 3);
1337 pending_exact = 0;
1338 b += 3;
1340 if (!zero_times_ok)
1342 /* At least one repetition is required, so insert a
1343 `dummy_failure_jump' before the initial
1344 `on_failure_jump' instruction of the loop. This
1345 effects a skip over that instruction the first time
1346 we hit that loop. */
1347 GET_BUFFER_SPACE (3);
1348 INSERT_JUMP (dummy_failure_jump, laststart, laststart + 6);
1349 b += 3;
1352 break;
1355 case '.':
1356 laststart = b;
1357 BUF_PUSH (anychar);
1358 break;
1361 case '[':
1363 boolean had_char_class = false;
1365 if (p == pend) return REG_EBRACK;
1367 /* Ensure that we have enough space to push a charset: the
1368 opcode, the length count, and the bitset; 34 bytes in all. */
1369 GET_BUFFER_SPACE (34);
1371 laststart = b;
1373 /* We test `*p == '^' twice, instead of using an if
1374 statement, so we only need one BUF_PUSH. */
1375 BUF_PUSH (*p == '^' ? charset_not : charset);
1376 if (*p == '^')
1377 p++;
1379 /* Remember the first position in the bracket expression. */
1380 p1 = p;
1382 /* Push the number of bytes in the bitmap. */
1383 BUF_PUSH ((1 << BYTEWIDTH) / BYTEWIDTH);
1385 /* Clear the whole map. */
1386 bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH);
1388 /* charset_not matches newline according to a syntax bit. */
1389 if ((re_opcode_t) b[-2] == charset_not
1390 && (syntax & RE_HAT_LISTS_NOT_NEWLINE))
1391 SET_LIST_BIT ('\n');
1393 /* Read in characters and ranges, setting map bits. */
1394 for (;;)
1396 if (p == pend) return REG_EBRACK;
1398 PATFETCH (c);
1400 /* \ might escape characters inside [...] and [^...]. */
1401 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\\')
1403 if (p == pend) return REG_EESCAPE;
1405 PATFETCH (c1);
1406 SET_LIST_BIT (c1);
1407 continue;
1410 /* Could be the end of the bracket expression. If it's
1411 not (i.e., when the bracket expression is `[]' so
1412 far), the ']' character bit gets set way below. */
1413 if (c == ']' && p != p1 + 1)
1414 break;
1416 /* Look ahead to see if it's a range when the last thing
1417 was a character class. */
1418 if (had_char_class && c == '-' && *p != ']')
1419 return REG_ERANGE;
1421 /* Look ahead to see if it's a range when the last thing
1422 was a character: if this is a hyphen not at the
1423 beginning or the end of a list, then it's the range
1424 operator. */
1425 if (c == '-'
1426 && !(p - 2 >= pattern && p[-2] == '[')
1427 && !(p - 3 >= pattern && p[-3] == '[' && p[-2] == '^')
1428 && *p != ']')
1430 reg_errcode_t ret
1431 = compile_range (&p, pend, translate, syntax, b);
1432 if (ret != REG_NOERROR) return ret;
1435 else if (p[0] == '-' && p[1] != ']')
1436 { /* This handles ranges made up of characters only. */
1437 reg_errcode_t ret;
1439 /* Move past the `-'. */
1440 PATFETCH (c1);
1442 ret = compile_range (&p, pend, translate, syntax, b);
1443 if (ret != REG_NOERROR) return ret;
1446 /* See if we're at the beginning of a possible character
1447 class. */
1449 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == ':')
1450 { /* Leave room for the null. */
1451 char str[CHAR_CLASS_MAX_LENGTH + 1];
1453 PATFETCH (c);
1454 c1 = 0;
1456 /* If pattern is `[[:'. */
1457 if (p == pend) return REG_EBRACK;
1459 for (;;)
1461 PATFETCH (c);
1462 if (c == ':' || c == ']' || p == pend
1463 || c1 == CHAR_CLASS_MAX_LENGTH)
1464 break;
1465 str[c1++] = c;
1467 str[c1] = '\0';
1469 /* If isn't a word bracketed by `[:' and:`]':
1470 undo the ending character, the letters, and leave
1471 the leading `:' and `[' (but set bits for them). */
1472 if (c == ':' && *p == ']')
1474 int ch;
1475 boolean is_alnum = STREQ (str, "alnum");
1476 boolean is_alpha = STREQ (str, "alpha");
1477 boolean is_blank = STREQ (str, "blank");
1478 boolean is_cntrl = STREQ (str, "cntrl");
1479 boolean is_digit = STREQ (str, "digit");
1480 boolean is_graph = STREQ (str, "graph");
1481 boolean is_lower = STREQ (str, "lower");
1482 boolean is_print = STREQ (str, "print");
1483 boolean is_punct = STREQ (str, "punct");
1484 boolean is_space = STREQ (str, "space");
1485 boolean is_upper = STREQ (str, "upper");
1486 boolean is_xdigit = STREQ (str, "xdigit");
1488 if (!IS_CHAR_CLASS (str)) return REG_ECTYPE;
1490 /* Throw away the ] at the end of the character
1491 class. */
1492 PATFETCH (c);
1494 if (p == pend) return REG_EBRACK;
1496 for (ch = 0; ch < 1 << BYTEWIDTH; ch++)
1498 if ( (is_alnum && ISALNUM (ch))
1499 || (is_alpha && ISALPHA (ch))
1500 || (is_blank && ISBLANK (ch))
1501 || (is_cntrl && ISCNTRL (ch))
1502 || (is_digit && ISDIGIT (ch))
1503 || (is_graph && ISGRAPH (ch))
1504 || (is_lower && ISLOWER (ch))
1505 || (is_print && ISPRINT (ch))
1506 || (is_punct && ISPUNCT (ch))
1507 || (is_space && ISSPACE (ch))
1508 || (is_upper && ISUPPER (ch))
1509 || (is_xdigit && ISXDIGIT (ch)))
1510 SET_LIST_BIT (ch);
1512 had_char_class = true;
1514 else
1516 c1++;
1517 while (c1--)
1518 PATUNFETCH;
1519 SET_LIST_BIT ('[');
1520 SET_LIST_BIT (':');
1521 had_char_class = false;
1524 else
1526 had_char_class = false;
1527 SET_LIST_BIT (c);
1531 /* Discard any (non)matching list bytes that are all 0 at the
1532 end of the map. Decrease the map-length byte too. */
1533 while ((int) b[-1] > 0 && b[b[-1] - 1] == 0)
1534 b[-1]--;
1535 b += b[-1];
1537 break;
1540 case '(':
1541 if (syntax & RE_NO_BK_PARENS)
1542 goto handle_open;
1543 else
1544 goto normal_char;
1547 case ')':
1548 if (syntax & RE_NO_BK_PARENS)
1549 goto handle_close;
1550 else
1551 goto normal_char;
1554 case '\n':
1555 if (syntax & RE_NEWLINE_ALT)
1556 goto handle_alt;
1557 else
1558 goto normal_char;
1561 case '|':
1562 if (syntax & RE_NO_BK_VBAR)
1563 goto handle_alt;
1564 else
1565 goto normal_char;
1568 case '{':
1569 if (syntax & RE_INTERVALS && syntax & RE_NO_BK_BRACES)
1570 goto handle_interval;
1571 else
1572 goto normal_char;
1575 case '\\':
1576 if (p == pend) return REG_EESCAPE;
1578 /* Do not translate the character after the \, so that we can
1579 distinguish, e.g., \B from \b, even if we normally would
1580 translate, e.g., B to b. */
1581 PATFETCH_RAW (c);
1583 switch (c)
1585 case '(':
1586 if (syntax & RE_NO_BK_PARENS)
1587 goto normal_backslash;
1589 handle_open:
1590 bufp->re_nsub++;
1591 regnum++;
1593 if (COMPILE_STACK_FULL)
1595 RETALLOC (compile_stack.stack, compile_stack.size << 1,
1596 compile_stack_elt_t);
1597 if (compile_stack.stack == NULL) return REG_ESPACE;
1599 compile_stack.size <<= 1;
1602 /* These are the values to restore when we hit end of this
1603 group. They are all relative offsets, so that if the
1604 whole pattern moves because of realloc, they will still
1605 be valid. */
1606 COMPILE_STACK_TOP.begalt_offset = begalt - bufp->buffer;
1607 COMPILE_STACK_TOP.fixup_alt_jump
1608 = fixup_alt_jump ? fixup_alt_jump - bufp->buffer + 1 : 0;
1609 COMPILE_STACK_TOP.laststart_offset = b - bufp->buffer;
1610 COMPILE_STACK_TOP.regnum = regnum;
1612 /* We will eventually replace the 0 with the number of
1613 groups inner to this one. But do not push a
1614 start_memory for groups beyond the last one we can
1615 represent in the compiled pattern. */
1616 if (regnum <= MAX_REGNUM)
1618 COMPILE_STACK_TOP.inner_group_offset = b - bufp->buffer + 2;
1619 BUF_PUSH_3 (start_memory, regnum, 0);
1622 compile_stack.avail++;
1624 fixup_alt_jump = 0;
1625 laststart = 0;
1626 begalt = b;
1627 /* If we've reached MAX_REGNUM groups, then this open
1628 won't actually generate any code, so we'll have to
1629 clear pending_exact explicitly. */
1630 pending_exact = 0;
1631 break;
1634 case ')':
1635 if (syntax & RE_NO_BK_PARENS) goto normal_backslash;
1637 if (COMPILE_STACK_EMPTY)
1639 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
1640 goto normal_backslash;
1641 else
1642 return REG_ERPAREN;
1645 handle_close:
1646 if (fixup_alt_jump)
1647 { /* Push a dummy failure point at the end of the
1648 alternative for a possible future
1649 `pop_failure_jump' to pop. See comments at
1650 `push_dummy_failure' in `re_match_2'. */
1651 BUF_PUSH (push_dummy_failure);
1653 /* We allocated space for this jump when we assigned
1654 to `fixup_alt_jump', in the `handle_alt' case below. */
1655 STORE_JUMP (jump_past_alt, fixup_alt_jump, b - 1);
1658 /* See similar code for backslashed left paren above. */
1659 if (COMPILE_STACK_EMPTY)
1661 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
1662 goto normal_char;
1663 else
1664 return REG_ERPAREN;
1667 /* Since we just checked for an empty stack above, this
1668 ``can't happen''. */
1669 assert (compile_stack.avail != 0);
1671 /* We don't just want to restore into `regnum', because
1672 later groups should continue to be numbered higher,
1673 as in `(ab)c(de)' -- the second group is #2. */
1674 regnum_t this_group_regnum;
1676 compile_stack.avail--;
1677 begalt = bufp->buffer + COMPILE_STACK_TOP.begalt_offset;
1678 fixup_alt_jump
1679 = COMPILE_STACK_TOP.fixup_alt_jump
1680 ? bufp->buffer + COMPILE_STACK_TOP.fixup_alt_jump - 1
1681 : 0;
1682 laststart = bufp->buffer + COMPILE_STACK_TOP.laststart_offset;
1683 this_group_regnum = COMPILE_STACK_TOP.regnum;
1684 /* If we've reached MAX_REGNUM groups, then this open
1685 won't actually generate any code, so we'll have to
1686 clear pending_exact explicitly. */
1687 pending_exact = 0;
1689 /* We're at the end of the group, so now we know how many
1690 groups were inside this one. */
1691 if (this_group_regnum <= MAX_REGNUM)
1693 unsigned char *inner_group_loc
1694 = bufp->buffer + COMPILE_STACK_TOP.inner_group_offset;
1696 *inner_group_loc = regnum - this_group_regnum;
1697 BUF_PUSH_3 (stop_memory, this_group_regnum,
1698 regnum - this_group_regnum);
1701 break;
1704 case '|': /* `\|'. */
1705 if (syntax & RE_LIMITED_OPS || syntax & RE_NO_BK_VBAR)
1706 goto normal_backslash;
1707 handle_alt:
1708 if (syntax & RE_LIMITED_OPS)
1709 goto normal_char;
1711 /* Insert before the previous alternative a jump which
1712 jumps to this alternative if the former fails. */
1713 GET_BUFFER_SPACE (3);
1714 INSERT_JUMP (on_failure_jump, begalt, b + 6);
1715 pending_exact = 0;
1716 b += 3;
1718 /* The alternative before this one has a jump after it
1719 which gets executed if it gets matched. Adjust that
1720 jump so it will jump to this alternative's analogous
1721 jump (put in below, which in turn will jump to the next
1722 (if any) alternative's such jump, etc.). The last such
1723 jump jumps to the correct final destination. A picture:
1724 _____ _____
1725 | | | |
1726 | v | v
1727 a | b | c
1729 If we are at `b', then fixup_alt_jump right now points to a
1730 three-byte space after `a'. We'll put in the jump, set
1731 fixup_alt_jump to right after `b', and leave behind three
1732 bytes which we'll fill in when we get to after `c'. */
1734 if (fixup_alt_jump)
1735 STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
1737 /* Mark and leave space for a jump after this alternative,
1738 to be filled in later either by next alternative or
1739 when know we're at the end of a series of alternatives. */
1740 fixup_alt_jump = b;
1741 GET_BUFFER_SPACE (3);
1742 b += 3;
1744 laststart = 0;
1745 begalt = b;
1746 break;
1749 case '{':
1750 /* If \{ is a literal. */
1751 if (!(syntax & RE_INTERVALS)
1752 /* If we're at `\{' and it's not the open-interval
1753 operator. */
1754 || ((syntax & RE_INTERVALS) && (syntax & RE_NO_BK_BRACES))
1755 || (p - 2 == pattern && p == pend))
1756 goto normal_backslash;
1758 handle_interval:
1760 /* If got here, then the syntax allows intervals. */
1762 /* At least (most) this many matches must be made. */
1763 int lower_bound = -1, upper_bound = -1;
1765 beg_interval = p - 1;
1767 if (p == pend)
1769 if (syntax & RE_NO_BK_BRACES)
1770 goto unfetch_interval;
1771 else
1772 return REG_EBRACE;
1775 GET_UNSIGNED_NUMBER (lower_bound);
1777 if (c == ',')
1779 GET_UNSIGNED_NUMBER (upper_bound);
1780 if (upper_bound < 0) upper_bound = RE_DUP_MAX;
1782 else
1783 /* Interval such as `{1}' => match exactly once. */
1784 upper_bound = lower_bound;
1786 if (lower_bound < 0 || upper_bound > RE_DUP_MAX
1787 || lower_bound > upper_bound)
1789 if (syntax & RE_NO_BK_BRACES)
1790 goto unfetch_interval;
1791 else
1792 return REG_BADBR;
1795 if (!(syntax & RE_NO_BK_BRACES))
1797 if (c != '\\') return REG_EBRACE;
1799 PATFETCH (c);
1802 if (c != '}')
1804 if (syntax & RE_NO_BK_BRACES)
1805 goto unfetch_interval;
1806 else
1807 return REG_BADBR;
1810 /* We just parsed a valid interval. */
1812 /* If it's invalid to have no preceding re. */
1813 if (!laststart)
1815 if (syntax & RE_CONTEXT_INVALID_OPS)
1816 return REG_BADRPT;
1817 else if (syntax & RE_CONTEXT_INDEP_OPS)
1818 laststart = b;
1819 else
1820 goto unfetch_interval;
1823 /* If the upper bound is zero, don't want to succeed at
1824 all; jump from `laststart' to `b + 3', which will be
1825 the end of the buffer after we insert the jump. */
1826 if (upper_bound == 0)
1828 GET_BUFFER_SPACE (3);
1829 INSERT_JUMP (jump, laststart, b + 3);
1830 b += 3;
1833 /* Otherwise, we have a nontrivial interval. When
1834 we're all done, the pattern will look like:
1835 set_number_at <jump count> <upper bound>
1836 set_number_at <succeed_n count> <lower bound>
1837 succeed_n <after jump addr> <succed_n count>
1838 <body of loop>
1839 jump_n <succeed_n addr> <jump count>
1840 (The upper bound and `jump_n' are omitted if
1841 `upper_bound' is 1, though.) */
1842 else
1843 { /* If the upper bound is > 1, we need to insert
1844 more at the end of the loop. */
1845 unsigned nbytes = 10 + (upper_bound > 1) * 10;
1847 GET_BUFFER_SPACE (nbytes);
1849 /* Initialize lower bound of the `succeed_n', even
1850 though it will be set during matching by its
1851 attendant `set_number_at' (inserted next),
1852 because `re_compile_fastmap' needs to know.
1853 Jump to the `jump_n' we might insert below. */
1854 INSERT_JUMP2 (succeed_n, laststart,
1855 b + 5 + (upper_bound > 1) * 5,
1856 lower_bound);
1857 b += 5;
1859 /* Code to initialize the lower bound. Insert
1860 before the `succeed_n'. The `5' is the last two
1861 bytes of this `set_number_at', plus 3 bytes of
1862 the following `succeed_n'. */
1863 insert_op2 (set_number_at, laststart, 5, lower_bound, b);
1864 b += 5;
1866 if (upper_bound > 1)
1867 { /* More than one repetition is allowed, so
1868 append a backward jump to the `succeed_n'
1869 that starts this interval.
1871 When we've reached this during matching,
1872 we'll have matched the interval once, so
1873 jump back only `upper_bound - 1' times. */
1874 STORE_JUMP2 (jump_n, b, laststart + 5,
1875 upper_bound - 1);
1876 b += 5;
1878 /* The location we want to set is the second
1879 parameter of the `jump_n'; that is `b-2' as
1880 an absolute address. `laststart' will be
1881 the `set_number_at' we're about to insert;
1882 `laststart+3' the number to set, the source
1883 for the relative address. But we are
1884 inserting into the middle of the pattern --
1885 so everything is getting moved up by 5.
1886 Conclusion: (b - 2) - (laststart + 3) + 5,
1887 i.e., b - laststart.
1889 We insert this at the beginning of the loop
1890 so that if we fail during matching, we'll
1891 reinitialize the bounds. */
1892 insert_op2 (set_number_at, laststart, b - laststart,
1893 upper_bound - 1, b);
1894 b += 5;
1897 pending_exact = 0;
1898 beg_interval = NULL;
1900 break;
1902 unfetch_interval:
1903 /* If an invalid interval, match the characters as literals. */
1904 assert (beg_interval);
1905 p = beg_interval;
1906 beg_interval = NULL;
1908 /* normal_char and normal_backslash need `c'. */
1909 PATFETCH (c);
1911 if (!(syntax & RE_NO_BK_BRACES))
1913 if (p > pattern && p[-1] == '\\')
1914 goto normal_backslash;
1916 goto normal_char;
1918 #ifdef emacs
1919 /* There is no way to specify the before_dot and after_dot
1920 operators. rms says this is ok. --karl */
1921 case '=':
1922 BUF_PUSH (at_dot);
1923 break;
1925 case 's':
1926 laststart = b;
1927 PATFETCH (c);
1928 BUF_PUSH_2 (syntaxspec, syntax_spec_code[c]);
1929 break;
1931 case 'S':
1932 laststart = b;
1933 PATFETCH (c);
1934 BUF_PUSH_2 (notsyntaxspec, syntax_spec_code[c]);
1935 break;
1936 #endif /* emacs */
1939 case 'w':
1940 laststart = b;
1941 BUF_PUSH (wordchar);
1942 break;
1945 case 'W':
1946 laststart = b;
1947 BUF_PUSH (notwordchar);
1948 break;
1951 case '<':
1952 BUF_PUSH (wordbeg);
1953 break;
1955 case '>':
1956 BUF_PUSH (wordend);
1957 break;
1959 case 'b':
1960 BUF_PUSH (wordbound);
1961 break;
1963 case 'B':
1964 BUF_PUSH (notwordbound);
1965 break;
1967 case '`':
1968 BUF_PUSH (begbuf);
1969 break;
1971 case '\'':
1972 BUF_PUSH (endbuf);
1973 break;
1975 case '1': case '2': case '3': case '4': case '5':
1976 case '6': case '7': case '8': case '9':
1977 if (syntax & RE_NO_BK_REFS)
1978 goto normal_char;
1980 c1 = c - '0';
1982 if (c1 > regnum)
1983 return REG_ESUBREG;
1985 /* Can't back reference to a subexpression if inside of it. */
1986 if (group_in_compile_stack (compile_stack, c1))
1987 goto normal_char;
1989 laststart = b;
1990 BUF_PUSH_2 (duplicate, c1);
1991 break;
1994 case '+':
1995 case '?':
1996 if (syntax & RE_BK_PLUS_QM)
1997 goto handle_plus;
1998 else
1999 goto normal_backslash;
2001 default:
2002 normal_backslash:
2003 /* You might think it would be useful for \ to mean
2004 not to translate; but if we don't translate it
2005 it will never match anything. */
2006 c = TRANSLATE (c);
2007 goto normal_char;
2009 break;
2012 default:
2013 /* Expects the character in `c'. */
2014 normal_char:
2015 /* If no exactn currently being built. */
2016 if (!pending_exact
2018 /* If last exactn not at current position. */
2019 || pending_exact + *pending_exact + 1 != b
2021 /* We have only one byte following the exactn for the count. */
2022 || *pending_exact == (1 << BYTEWIDTH) - 1
2024 /* If followed by a repetition operator. */
2025 || *p == '*' || *p == '^'
2026 || ((syntax & RE_BK_PLUS_QM)
2027 ? *p == '\\' && (p[1] == '+' || p[1] == '?')
2028 : (*p == '+' || *p == '?'))
2029 || ((syntax & RE_INTERVALS)
2030 && ((syntax & RE_NO_BK_BRACES)
2031 ? *p == '{'
2032 : (p[0] == '\\' && p[1] == '{'))))
2034 /* Start building a new exactn. */
2036 laststart = b;
2038 BUF_PUSH_2 (exactn, 0);
2039 pending_exact = b - 1;
2042 BUF_PUSH (c);
2043 (*pending_exact)++;
2044 break;
2045 } /* switch (c) */
2046 } /* while p != pend */
2049 /* Through the pattern now. */
2051 if (fixup_alt_jump)
2052 STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
2054 if (!COMPILE_STACK_EMPTY)
2055 return REG_EPAREN;
2057 free (compile_stack.stack);
2059 /* We have succeeded; set the length of the buffer. */
2060 bufp->used = b - bufp->buffer;
2062 #ifdef DEBUG
2063 if (debug)
2065 DEBUG_PRINT1 ("\nCompiled pattern: ");
2066 print_compiled_pattern (bufp);
2068 #endif /* DEBUG */
2070 return REG_NOERROR;
2071 } /* regex_compile */
2073 /* Subroutines for `regex_compile'. */
2075 /* Store OP at LOC followed by two-byte integer parameter ARG. */
2077 static void
2078 store_op1 (op, loc, arg)
2079 re_opcode_t op;
2080 unsigned char *loc;
2081 int arg;
2083 *loc = (unsigned char) op;
2084 STORE_NUMBER (loc + 1, arg);
2088 /* Like `store_op1', but for two two-byte parameters ARG1 and ARG2. */
2090 static void
2091 store_op2 (op, loc, arg1, arg2)
2092 re_opcode_t op;
2093 unsigned char *loc;
2094 int arg1, arg2;
2096 *loc = (unsigned char) op;
2097 STORE_NUMBER (loc + 1, arg1);
2098 STORE_NUMBER (loc + 3, arg2);
2102 /* Copy the bytes from LOC to END to open up three bytes of space at LOC
2103 for OP followed by two-byte integer parameter ARG. */
2105 static void
2106 insert_op1 (op, loc, arg, end)
2107 re_opcode_t op;
2108 unsigned char *loc;
2109 int arg;
2110 unsigned char *end;
2112 register unsigned char *pfrom = end;
2113 register unsigned char *pto = end + 3;
2115 while (pfrom != loc)
2116 *--pto = *--pfrom;
2118 store_op1 (op, loc, arg);
2122 /* Like `insert_op1', but for two two-byte parameters ARG1 and ARG2. */
2124 static void
2125 insert_op2 (op, loc, arg1, arg2, end)
2126 re_opcode_t op;
2127 unsigned char *loc;
2128 int arg1, arg2;
2129 unsigned char *end;
2131 register unsigned char *pfrom = end;
2132 register unsigned char *pto = end + 5;
2134 while (pfrom != loc)
2135 *--pto = *--pfrom;
2137 store_op2 (op, loc, arg1, arg2);
2141 /* P points to just after a ^ in PATTERN. Return true if that ^ comes
2142 after an alternative or a begin-subexpression. We assume there is at
2143 least one character before the ^. */
2145 static boolean
2146 at_begline_loc_p (pattern, p, syntax)
2147 const char *pattern, *p;
2148 reg_syntax_t syntax;
2150 const char *prev = p - 2;
2151 boolean prev_prev_backslash = prev > pattern && prev[-1] == '\\';
2153 return
2154 /* After a subexpression? */
2155 (*prev == '(' && (syntax & RE_NO_BK_PARENS || prev_prev_backslash))
2156 /* After an alternative? */
2157 || (*prev == '|' && (syntax & RE_NO_BK_VBAR || prev_prev_backslash));
2161 /* The dual of at_begline_loc_p. This one is for $. We assume there is
2162 at least one character after the $, i.e., `P < PEND'. */
2164 static boolean
2165 at_endline_loc_p (p, pend, syntax)
2166 const char *p, *pend;
2167 int syntax;
2169 const char *next = p;
2170 boolean next_backslash = *next == '\\';
2171 const char *next_next = p + 1 < pend ? p + 1 : NULL;
2173 return
2174 /* Before a subexpression? */
2175 (syntax & RE_NO_BK_PARENS ? *next == ')'
2176 : next_backslash && next_next && *next_next == ')')
2177 /* Before an alternative? */
2178 || (syntax & RE_NO_BK_VBAR ? *next == '|'
2179 : next_backslash && next_next && *next_next == '|');
2183 /* Returns true if REGNUM is in one of COMPILE_STACK's elements and
2184 false if it's not. */
2186 static boolean
2187 group_in_compile_stack (compile_stack, regnum)
2188 compile_stack_type compile_stack;
2189 regnum_t regnum;
2191 int this_element;
2193 for (this_element = compile_stack.avail - 1;
2194 this_element >= 0;
2195 this_element--)
2196 if (compile_stack.stack[this_element].regnum == regnum)
2197 return true;
2199 return false;
2203 /* Read the ending character of a range (in a bracket expression) from the
2204 uncompiled pattern *P_PTR (which ends at PEND). We assume the
2205 starting character is in `P[-2]'. (`P[-1]' is the character `-'.)
2206 Then we set the translation of all bits between the starting and
2207 ending characters (inclusive) in the compiled pattern B.
2209 Return an error code.
2211 We use these short variable names so we can use the same macros as
2212 `regex_compile' itself. */
2214 static reg_errcode_t
2215 compile_range (p_ptr, pend, translate, syntax, b)
2216 const char **p_ptr, *pend;
2217 char *translate;
2218 reg_syntax_t syntax;
2219 unsigned char *b;
2221 unsigned this_char;
2223 const char *p = *p_ptr;
2224 int range_start, range_end;
2226 if (p == pend)
2227 return REG_ERANGE;
2229 /* Even though the pattern is a signed `char *', we need to fetch
2230 with unsigned char *'s; if the high bit of the pattern character
2231 is set, the range endpoints will be negative if we fetch using a
2232 signed char *.
2234 We also want to fetch the endpoints without translating them; the
2235 appropriate translation is done in the bit-setting loop below. */
2236 range_start = ((unsigned char *) p)[-2];
2237 range_end = ((unsigned char *) p)[0];
2239 /* Have to increment the pointer into the pattern string, so the
2240 caller isn't still at the ending character. */
2241 (*p_ptr)++;
2243 /* If the start is after the end, the range is empty. */
2244 if (range_start > range_end)
2245 return syntax & RE_NO_EMPTY_RANGES ? REG_ERANGE : REG_NOERROR;
2247 /* Here we see why `this_char' has to be larger than an `unsigned
2248 char' -- the range is inclusive, so if `range_end' == 0xff
2249 (assuming 8-bit characters), we would otherwise go into an infinite
2250 loop, since all characters <= 0xff. */
2251 for (this_char = range_start; this_char <= range_end; this_char++)
2253 SET_LIST_BIT (TRANSLATE (this_char));
2256 return REG_NOERROR;
2259 /* Failure stack declarations and macros; both re_compile_fastmap and
2260 re_match_2 use a failure stack. These have to be macros because of
2261 REGEX_ALLOCATE. */
2264 /* Number of failure points for which to initially allocate space
2265 when matching. If this number is exceeded, we allocate more
2266 space, so it is not a hard limit. */
2267 #ifndef INIT_FAILURE_ALLOC
2268 #define INIT_FAILURE_ALLOC 5
2269 #endif
2271 /* Roughly the maximum number of failure points on the stack. Would be
2272 exactly that if always used MAX_FAILURE_SPACE each time we failed.
2273 This is a variable only so users of regex can assign to it; we never
2274 change it ourselves. */
2275 int re_max_failures = 2000;
2277 typedef const unsigned char *fail_stack_elt_t;
2279 typedef struct
2281 fail_stack_elt_t *stack;
2282 unsigned size;
2283 unsigned avail; /* Offset of next open position. */
2284 } fail_stack_type;
2286 #define FAIL_STACK_EMPTY() (fail_stack.avail == 0)
2287 #define FAIL_STACK_PTR_EMPTY() (fail_stack_ptr->avail == 0)
2288 #define FAIL_STACK_FULL() (fail_stack.avail == fail_stack.size)
2289 #define FAIL_STACK_TOP() (fail_stack.stack[fail_stack.avail])
2292 /* Initialize `fail_stack'. Do `return -2' if the alloc fails. */
2294 #define INIT_FAIL_STACK() \
2295 do { \
2296 fail_stack.stack = (fail_stack_elt_t *) \
2297 REGEX_ALLOCATE (INIT_FAILURE_ALLOC * sizeof (fail_stack_elt_t)); \
2299 if (fail_stack.stack == NULL) \
2300 return -2; \
2302 fail_stack.size = INIT_FAILURE_ALLOC; \
2303 fail_stack.avail = 0; \
2304 } while (0)
2307 /* Double the size of FAIL_STACK, up to approximately `re_max_failures' items.
2309 Return 1 if succeeds, and 0 if either ran out of memory
2310 allocating space for it or it was already too large.
2312 REGEX_REALLOCATE requires `destination' be declared. */
2314 #define DOUBLE_FAIL_STACK(fail_stack) \
2315 ((fail_stack).size > re_max_failures * MAX_FAILURE_ITEMS \
2316 ? 0 \
2317 : ((fail_stack).stack = (fail_stack_elt_t *) \
2318 REGEX_REALLOCATE ((fail_stack).stack, \
2319 (fail_stack).size * sizeof (fail_stack_elt_t), \
2320 ((fail_stack).size << 1) * sizeof (fail_stack_elt_t)), \
2322 (fail_stack).stack == NULL \
2323 ? 0 \
2324 : ((fail_stack).size <<= 1, \
2325 1)))
2328 /* Push PATTERN_OP on FAIL_STACK.
2330 Return 1 if was able to do so and 0 if ran out of memory allocating
2331 space to do so. */
2332 #define PUSH_PATTERN_OP(pattern_op, fail_stack) \
2333 ((FAIL_STACK_FULL () \
2334 && !DOUBLE_FAIL_STACK (fail_stack)) \
2335 ? 0 \
2336 : ((fail_stack).stack[(fail_stack).avail++] = pattern_op, \
2339 /* This pushes an item onto the failure stack. Must be a four-byte
2340 value. Assumes the variable `fail_stack'. Probably should only
2341 be called from within `PUSH_FAILURE_POINT'. */
2342 #define PUSH_FAILURE_ITEM(item) \
2343 fail_stack.stack[fail_stack.avail++] = (fail_stack_elt_t) item
2345 /* The complement operation. Assumes `fail_stack' is nonempty. */
2346 #define POP_FAILURE_ITEM() fail_stack.stack[--fail_stack.avail]
2348 /* Used to omit pushing failure point id's when we're not debugging. */
2349 #ifdef DEBUG
2350 #define DEBUG_PUSH PUSH_FAILURE_ITEM
2351 #define DEBUG_POP(item_addr) *(item_addr) = POP_FAILURE_ITEM ()
2352 #else
2353 #define DEBUG_PUSH(item)
2354 #define DEBUG_POP(item_addr)
2355 #endif
2358 /* Push the information about the state we will need
2359 if we ever fail back to it.
2361 Requires variables fail_stack, regstart, regend, reg_info, and
2362 num_regs be declared. DOUBLE_FAIL_STACK requires `destination' be
2363 declared.
2365 Does `return FAILURE_CODE' if runs out of memory. */
2367 #define PUSH_FAILURE_POINT(pattern_place, string_place, failure_code) \
2368 do { \
2369 /* Must be int, so when we don't save any registers, the arithmetic \
2370 of 0 + -1 isn't done as unsigned. */ \
2371 int this_reg; \
2373 DEBUG_STATEMENT (failure_id++); \
2374 DEBUG_STATEMENT (nfailure_points_pushed++); \
2375 DEBUG_PRINT2 ("\nPUSH_FAILURE_POINT #%u:\n", failure_id); \
2376 DEBUG_PRINT2 (" Before push, next avail: %d\n", (fail_stack).avail);\
2377 DEBUG_PRINT2 (" size: %d\n", (fail_stack).size);\
2379 DEBUG_PRINT2 (" slots needed: %d\n", NUM_FAILURE_ITEMS); \
2380 DEBUG_PRINT2 (" available: %d\n", REMAINING_AVAIL_SLOTS); \
2382 /* Ensure we have enough space allocated for what we will push. */ \
2383 while (REMAINING_AVAIL_SLOTS < NUM_FAILURE_ITEMS) \
2385 if (!DOUBLE_FAIL_STACK (fail_stack)) \
2386 return failure_code; \
2388 DEBUG_PRINT2 ("\n Doubled stack; size now: %d\n", \
2389 (fail_stack).size); \
2390 DEBUG_PRINT2 (" slots available: %d\n", REMAINING_AVAIL_SLOTS);\
2393 /* Push the info, starting with the registers. */ \
2394 DEBUG_PRINT1 ("\n"); \
2396 for (this_reg = lowest_active_reg; this_reg <= highest_active_reg; \
2397 this_reg++) \
2399 DEBUG_PRINT2 (" Pushing reg: %d\n", this_reg); \
2400 DEBUG_STATEMENT (num_regs_pushed++); \
2402 DEBUG_PRINT2 (" start: 0x%x\n", regstart[this_reg]); \
2403 PUSH_FAILURE_ITEM (regstart[this_reg]); \
2405 DEBUG_PRINT2 (" end: 0x%x\n", regend[this_reg]); \
2406 PUSH_FAILURE_ITEM (regend[this_reg]); \
2408 DEBUG_PRINT2 (" info: 0x%x\n ", reg_info[this_reg]); \
2409 DEBUG_PRINT2 (" match_null=%d", \
2410 REG_MATCH_NULL_STRING_P (reg_info[this_reg])); \
2411 DEBUG_PRINT2 (" active=%d", IS_ACTIVE (reg_info[this_reg])); \
2412 DEBUG_PRINT2 (" matched_something=%d", \
2413 MATCHED_SOMETHING (reg_info[this_reg])); \
2414 DEBUG_PRINT2 (" ever_matched=%d", \
2415 EVER_MATCHED_SOMETHING (reg_info[this_reg])); \
2416 DEBUG_PRINT1 ("\n"); \
2417 PUSH_FAILURE_ITEM (reg_info[this_reg].word); \
2420 DEBUG_PRINT2 (" Pushing low active reg: %d\n", lowest_active_reg);\
2421 PUSH_FAILURE_ITEM (lowest_active_reg); \
2423 DEBUG_PRINT2 (" Pushing high active reg: %d\n", highest_active_reg);\
2424 PUSH_FAILURE_ITEM (highest_active_reg); \
2426 DEBUG_PRINT2 (" Pushing pattern 0x%x: ", pattern_place); \
2427 DEBUG_PRINT_COMPILED_PATTERN (bufp, pattern_place, pend); \
2428 PUSH_FAILURE_ITEM (pattern_place); \
2430 DEBUG_PRINT2 (" Pushing string 0x%x: `", string_place); \
2431 DEBUG_PRINT_DOUBLE_STRING (string_place, string1, size1, string2, \
2432 size2); \
2433 DEBUG_PRINT1 ("'\n"); \
2434 PUSH_FAILURE_ITEM (string_place); \
2436 DEBUG_PRINT2 (" Pushing failure id: %u\n", failure_id); \
2437 DEBUG_PUSH (failure_id); \
2438 } while (0)
2440 /* This is the number of items that are pushed and popped on the stack
2441 for each register. */
2442 #define NUM_REG_ITEMS 3
2444 /* Individual items aside from the registers. */
2445 #ifdef DEBUG
2446 #define NUM_NONREG_ITEMS 5 /* Includes failure point id. */
2447 #else
2448 #define NUM_NONREG_ITEMS 4
2449 #endif
2451 /* We push at most this many items on the stack. */
2452 #define MAX_FAILURE_ITEMS ((num_regs - 1) * NUM_REG_ITEMS + NUM_NONREG_ITEMS)
2454 /* We actually push this many items. */
2455 #define NUM_FAILURE_ITEMS \
2456 ((highest_active_reg - lowest_active_reg + 1) * NUM_REG_ITEMS \
2457 + NUM_NONREG_ITEMS)
2459 /* How many items can still be added to the stack without overflowing it. */
2460 #define REMAINING_AVAIL_SLOTS ((fail_stack).size - (fail_stack).avail)
2463 /* Pops what PUSH_FAIL_STACK pushes.
2465 We restore into the parameters, all of which should be lvalues:
2466 STR -- the saved data position.
2467 PAT -- the saved pattern position.
2468 LOW_REG, HIGH_REG -- the highest and lowest active registers.
2469 REGSTART, REGEND -- arrays of string positions.
2470 REG_INFO -- array of information about each subexpression.
2472 Also assumes the variables `fail_stack' and (if debugging), `bufp',
2473 `pend', `string1', `size1', `string2', and `size2'. */
2475 #define POP_FAILURE_POINT(str, pat, low_reg, high_reg, regstart, regend, reg_info)\
2477 DEBUG_STATEMENT (fail_stack_elt_t failure_id;) \
2478 int this_reg; \
2479 const unsigned char *string_temp; \
2481 assert (!FAIL_STACK_EMPTY ()); \
2483 /* Remove failure points and point to how many regs pushed. */ \
2484 DEBUG_PRINT1 ("POP_FAILURE_POINT:\n"); \
2485 DEBUG_PRINT2 (" Before pop, next avail: %d\n", fail_stack.avail); \
2486 DEBUG_PRINT2 (" size: %d\n", fail_stack.size); \
2488 assert (fail_stack.avail >= NUM_NONREG_ITEMS); \
2490 DEBUG_POP (&failure_id); \
2491 DEBUG_PRINT2 (" Popping failure id: %u\n", failure_id); \
2493 /* If the saved string location is NULL, it came from an \
2494 on_failure_keep_string_jump opcode, and we want to throw away the \
2495 saved NULL, thus retaining our current position in the string. */ \
2496 string_temp = POP_FAILURE_ITEM (); \
2497 if (string_temp != NULL) \
2498 str = (const char *) string_temp; \
2500 DEBUG_PRINT2 (" Popping string 0x%x: `", str); \
2501 DEBUG_PRINT_DOUBLE_STRING (str, string1, size1, string2, size2); \
2502 DEBUG_PRINT1 ("'\n"); \
2504 pat = (unsigned char *) POP_FAILURE_ITEM (); \
2505 DEBUG_PRINT2 (" Popping pattern 0x%x: ", pat); \
2506 DEBUG_PRINT_COMPILED_PATTERN (bufp, pat, pend); \
2508 /* Restore register info. */ \
2509 high_reg = (unsigned) POP_FAILURE_ITEM (); \
2510 DEBUG_PRINT2 (" Popping high active reg: %d\n", high_reg); \
2512 low_reg = (unsigned) POP_FAILURE_ITEM (); \
2513 DEBUG_PRINT2 (" Popping low active reg: %d\n", low_reg); \
2515 for (this_reg = high_reg; this_reg >= low_reg; this_reg--) \
2517 DEBUG_PRINT2 (" Popping reg: %d\n", this_reg); \
2519 reg_info[this_reg].word = POP_FAILURE_ITEM (); \
2520 DEBUG_PRINT2 (" info: 0x%x\n", reg_info[this_reg]); \
2522 regend[this_reg] = (const char *) POP_FAILURE_ITEM (); \
2523 DEBUG_PRINT2 (" end: 0x%x\n", regend[this_reg]); \
2525 regstart[this_reg] = (const char *) POP_FAILURE_ITEM (); \
2526 DEBUG_PRINT2 (" start: 0x%x\n", regstart[this_reg]); \
2529 DEBUG_STATEMENT (nfailure_points_popped++); \
2530 } /* POP_FAILURE_POINT */
2532 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
2533 BUFP. A fastmap records which of the (1 << BYTEWIDTH) possible
2534 characters can start a string that matches the pattern. This fastmap
2535 is used by re_search to skip quickly over impossible starting points.
2537 The caller must supply the address of a (1 << BYTEWIDTH)-byte data
2538 area as BUFP->fastmap.
2540 We set the `fastmap', `fastmap_accurate', and `can_be_null' fields in
2541 the pattern buffer.
2543 Returns 0 if we succeed, -2 if an internal error. */
2546 re_compile_fastmap (bufp)
2547 struct re_pattern_buffer *bufp;
2549 int j, k;
2550 fail_stack_type fail_stack;
2551 #ifndef REGEX_MALLOC
2552 char *destination;
2553 #endif
2554 /* We don't push any register information onto the failure stack. */
2555 unsigned num_regs = 0;
2557 register char *fastmap = bufp->fastmap;
2558 unsigned char *pattern = bufp->buffer;
2559 unsigned long size = bufp->used;
2560 const unsigned char *p = pattern;
2561 register unsigned char *pend = pattern + size;
2563 /* Assume that each path through the pattern can be null until
2564 proven otherwise. We set this false at the bottom of switch
2565 statement, to which we get only if a particular path doesn't
2566 match the empty string. */
2567 boolean path_can_be_null = true;
2569 /* We aren't doing a `succeed_n' to begin with. */
2570 boolean succeed_n_p = false;
2572 assert (fastmap != NULL && p != NULL);
2574 INIT_FAIL_STACK ();
2575 bzero (fastmap, 1 << BYTEWIDTH); /* Assume nothing's valid. */
2576 bufp->fastmap_accurate = 1; /* It will be when we're done. */
2577 bufp->can_be_null = 0;
2579 while (p != pend || !FAIL_STACK_EMPTY ())
2581 if (p == pend)
2583 bufp->can_be_null |= path_can_be_null;
2585 /* Reset for next path. */
2586 path_can_be_null = true;
2588 p = fail_stack.stack[--fail_stack.avail];
2591 /* We should never be about to go beyond the end of the pattern. */
2592 assert (p < pend);
2594 #ifdef SWITCH_ENUM_BUG
2595 switch ((int) ((re_opcode_t) *p++))
2596 #else
2597 switch ((re_opcode_t) *p++)
2598 #endif
2601 /* I guess the idea here is to simply not bother with a fastmap
2602 if a backreference is used, since it's too hard to figure out
2603 the fastmap for the corresponding group. Setting
2604 `can_be_null' stops `re_search_2' from using the fastmap, so
2605 that is all we do. */
2606 case duplicate:
2607 bufp->can_be_null = 1;
2608 return 0;
2611 /* Following are the cases which match a character. These end
2612 with `break'. */
2614 case exactn:
2615 fastmap[p[1]] = 1;
2616 break;
2619 case charset:
2620 for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
2621 if (p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH)))
2622 fastmap[j] = 1;
2623 break;
2626 case charset_not:
2627 /* Chars beyond end of map must be allowed. */
2628 for (j = *p * BYTEWIDTH; j < (1 << BYTEWIDTH); j++)
2629 fastmap[j] = 1;
2631 for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
2632 if (!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))))
2633 fastmap[j] = 1;
2634 break;
2637 case wordchar:
2638 for (j = 0; j < (1 << BYTEWIDTH); j++)
2639 if (SYNTAX (j) == Sword)
2640 fastmap[j] = 1;
2641 break;
2644 case notwordchar:
2645 for (j = 0; j < (1 << BYTEWIDTH); j++)
2646 if (SYNTAX (j) != Sword)
2647 fastmap[j] = 1;
2648 break;
2651 case anychar:
2652 /* `.' matches anything ... */
2653 for (j = 0; j < (1 << BYTEWIDTH); j++)
2654 fastmap[j] = 1;
2656 /* ... except perhaps newline. */
2657 if (!(bufp->syntax & RE_DOT_NEWLINE))
2658 fastmap['\n'] = 0;
2660 /* Return if we have already set `can_be_null'; if we have,
2661 then the fastmap is irrelevant. Something's wrong here. */
2662 else if (bufp->can_be_null)
2663 return 0;
2665 /* Otherwise, have to check alternative paths. */
2666 break;
2669 #ifdef emacs
2670 case syntaxspec:
2671 k = *p++;
2672 for (j = 0; j < (1 << BYTEWIDTH); j++)
2673 if (SYNTAX (j) == (enum syntaxcode) k)
2674 fastmap[j] = 1;
2675 break;
2678 case notsyntaxspec:
2679 k = *p++;
2680 for (j = 0; j < (1 << BYTEWIDTH); j++)
2681 if (SYNTAX (j) != (enum syntaxcode) k)
2682 fastmap[j] = 1;
2683 break;
2686 /* All cases after this match the empty string. These end with
2687 `continue'. */
2690 case before_dot:
2691 case at_dot:
2692 case after_dot:
2693 continue;
2694 #endif /* not emacs */
2697 case no_op:
2698 case begline:
2699 case endline:
2700 case begbuf:
2701 case endbuf:
2702 case wordbound:
2703 case notwordbound:
2704 case wordbeg:
2705 case wordend:
2706 case push_dummy_failure:
2707 continue;
2710 case jump_n:
2711 case pop_failure_jump:
2712 case maybe_pop_jump:
2713 case jump:
2714 case jump_past_alt:
2715 case dummy_failure_jump:
2716 EXTRACT_NUMBER_AND_INCR (j, p);
2717 p += j;
2718 if (j > 0)
2719 continue;
2721 /* Jump backward implies we just went through the body of a
2722 loop and matched nothing. Opcode jumped to should be
2723 `on_failure_jump' or `succeed_n'. Just treat it like an
2724 ordinary jump. For a * loop, it has pushed its failure
2725 point already; if so, discard that as redundant. */
2726 if ((re_opcode_t) *p != on_failure_jump
2727 && (re_opcode_t) *p != succeed_n)
2728 continue;
2730 p++;
2731 EXTRACT_NUMBER_AND_INCR (j, p);
2732 p += j;
2734 /* If what's on the stack is where we are now, pop it. */
2735 if (!FAIL_STACK_EMPTY ()
2736 && fail_stack.stack[fail_stack.avail - 1] == p)
2737 fail_stack.avail--;
2739 continue;
2742 case on_failure_jump:
2743 case on_failure_keep_string_jump:
2744 handle_on_failure_jump:
2745 EXTRACT_NUMBER_AND_INCR (j, p);
2747 /* For some patterns, e.g., `(a?)?', `p+j' here points to the
2748 end of the pattern. We don't want to push such a point,
2749 since when we restore it above, entering the switch will
2750 increment `p' past the end of the pattern. We don't need
2751 to push such a point since we obviously won't find any more
2752 fastmap entries beyond `pend'. Such a pattern can match
2753 the null string, though. */
2754 if (p + j < pend)
2756 if (!PUSH_PATTERN_OP (p + j, fail_stack))
2757 return -2;
2759 else
2760 bufp->can_be_null = 1;
2762 if (succeed_n_p)
2764 EXTRACT_NUMBER_AND_INCR (k, p); /* Skip the n. */
2765 succeed_n_p = false;
2768 continue;
2771 case succeed_n:
2772 /* Get to the number of times to succeed. */
2773 p += 2;
2775 /* Increment p past the n for when k != 0. */
2776 EXTRACT_NUMBER_AND_INCR (k, p);
2777 if (k == 0)
2779 p -= 4;
2780 succeed_n_p = true; /* Spaghetti code alert. */
2781 goto handle_on_failure_jump;
2783 continue;
2786 case set_number_at:
2787 p += 4;
2788 continue;
2791 case start_memory:
2792 case stop_memory:
2793 p += 2;
2794 continue;
2797 default:
2798 abort (); /* We have listed all the cases. */
2799 } /* switch *p++ */
2801 /* Getting here means we have found the possible starting
2802 characters for one path of the pattern -- and that the empty
2803 string does not match. We need not follow this path further.
2804 Instead, look at the next alternative (remembered on the
2805 stack), or quit if no more. The test at the top of the loop
2806 does these things. */
2807 path_can_be_null = false;
2808 p = pend;
2809 } /* while p */
2811 /* Set `can_be_null' for the last path (also the first path, if the
2812 pattern is empty). */
2813 bufp->can_be_null |= path_can_be_null;
2814 return 0;
2815 } /* re_compile_fastmap */
2817 /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
2818 ENDS. Subsequent matches using PATTERN_BUFFER and REGS will use
2819 this memory for recording register information. STARTS and ENDS
2820 must be allocated using the malloc library routine, and must each
2821 be at least NUM_REGS * sizeof (regoff_t) bytes long.
2823 If NUM_REGS == 0, then subsequent matches should allocate their own
2824 register data.
2826 Unless this function is called, the first search or match using
2827 PATTERN_BUFFER will allocate its own register data, without
2828 freeing the old data. */
2830 void
2831 re_set_registers (bufp, regs, num_regs, starts, ends)
2832 struct re_pattern_buffer *bufp;
2833 struct re_registers *regs;
2834 unsigned num_regs;
2835 regoff_t *starts, *ends;
2837 if (num_regs)
2839 bufp->regs_allocated = REGS_REALLOCATE;
2840 regs->num_regs = num_regs;
2841 regs->start = starts;
2842 regs->end = ends;
2844 else
2846 bufp->regs_allocated = REGS_UNALLOCATED;
2847 regs->num_regs = 0;
2848 regs->start = regs->end = (regoff_t) 0;
2852 /* Searching routines. */
2854 /* Like re_search_2, below, but only one string is specified, and
2855 doesn't let you say where to stop matching. */
2858 re_search (bufp, string, size, startpos, range, regs)
2859 struct re_pattern_buffer *bufp;
2860 const char *string;
2861 int size, startpos, range;
2862 struct re_registers *regs;
2864 return re_search_2 (bufp, NULL, 0, string, size, startpos, range,
2865 regs, size);
2869 /* Using the compiled pattern in BUFP->buffer, first tries to match the
2870 virtual concatenation of STRING1 and STRING2, starting first at index
2871 STARTPOS, then at STARTPOS + 1, and so on.
2873 STRING1 and STRING2 have length SIZE1 and SIZE2, respectively.
2875 RANGE is how far to scan while trying to match. RANGE = 0 means try
2876 only at STARTPOS; in general, the last start tried is STARTPOS +
2877 RANGE.
2879 In REGS, return the indices of the virtual concatenation of STRING1
2880 and STRING2 that matched the entire BUFP->buffer and its contained
2881 subexpressions.
2883 Do not consider matching one past the index STOP in the virtual
2884 concatenation of STRING1 and STRING2.
2886 We return either the position in the strings at which the match was
2887 found, -1 if no match, or -2 if error (such as failure
2888 stack overflow). */
2891 re_search_2 (bufp, string1, size1, string2, size2, startpos, range, regs, stop)
2892 struct re_pattern_buffer *bufp;
2893 const char *string1, *string2;
2894 int size1, size2;
2895 int startpos;
2896 int range;
2897 struct re_registers *regs;
2898 int stop;
2900 int val;
2901 register char *fastmap = bufp->fastmap;
2902 register char *translate = bufp->translate;
2903 int total_size = size1 + size2;
2904 int endpos = startpos + range;
2906 /* Check for out-of-range STARTPOS. */
2907 if (startpos < 0 || startpos > total_size)
2908 return -1;
2910 /* Fix up RANGE if it might eventually take us outside
2911 the virtual concatenation of STRING1 and STRING2. */
2912 if (endpos < -1)
2913 range = -1 - startpos;
2914 else if (endpos > total_size)
2915 range = total_size - startpos;
2917 /* If the search isn't to be a backwards one, don't waste time in a
2918 search for a pattern that must be anchored. */
2919 if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == begbuf && range > 0)
2921 if (startpos > 0)
2922 return -1;
2923 else
2924 range = 1;
2927 /* Update the fastmap now if not correct already. */
2928 if (fastmap && !bufp->fastmap_accurate)
2929 if (re_compile_fastmap (bufp) == -2)
2930 return -2;
2932 /* Loop through the string, looking for a place to start matching. */
2933 for (;;)
2935 /* If a fastmap is supplied, skip quickly over characters that
2936 cannot be the start of a match. If the pattern can match the
2937 null string, however, we don't need to skip characters; we want
2938 the first null string. */
2939 if (fastmap && startpos < total_size && !bufp->can_be_null)
2941 if (range > 0) /* Searching forwards. */
2943 register const char *d;
2944 register int lim = 0;
2945 int irange = range;
2947 if (startpos < size1 && startpos + range >= size1)
2948 lim = range - (size1 - startpos);
2950 d = (startpos >= size1 ? string2 - size1 : string1) + startpos;
2952 /* Written out as an if-else to avoid testing `translate'
2953 inside the loop. */
2954 if (translate)
2955 while (range > lim
2956 && !fastmap[(unsigned char)
2957 translate[(unsigned char) *d++]])
2958 range--;
2959 else
2960 while (range > lim && !fastmap[(unsigned char) *d++])
2961 range--;
2963 startpos += irange - range;
2965 else /* Searching backwards. */
2967 register char c = (size1 == 0 || startpos >= size1
2968 ? string2[startpos - size1]
2969 : string1[startpos]);
2971 if (!fastmap[(unsigned char) TRANSLATE (c)])
2972 goto advance;
2976 /* If can't match the null string, and that's all we have left, fail. */
2977 if (range >= 0 && startpos == total_size && fastmap
2978 && !bufp->can_be_null)
2979 return -1;
2981 val = re_match_2 (bufp, string1, size1, string2, size2,
2982 startpos, regs, stop);
2983 if (val >= 0)
2984 return startpos;
2986 if (val == -2)
2987 return -2;
2989 advance:
2990 if (!range)
2991 break;
2992 else if (range > 0)
2994 range--;
2995 startpos++;
2997 else
2999 range++;
3000 startpos--;
3003 return -1;
3004 } /* re_search_2 */
3006 /* Declarations and macros for re_match_2. */
3008 static int bcmp_translate ();
3009 static boolean alt_match_null_string_p (),
3010 common_op_match_null_string_p (),
3011 group_match_null_string_p ();
3013 /* Structure for per-register (a.k.a. per-group) information.
3014 This must not be longer than one word, because we push this value
3015 onto the failure stack. Other register information, such as the
3016 starting and ending positions (which are addresses), and the list of
3017 inner groups (which is a bits list) are maintained in separate
3018 variables.
3020 We are making a (strictly speaking) nonportable assumption here: that
3021 the compiler will pack our bit fields into something that fits into
3022 the type of `word', i.e., is something that fits into one item on the
3023 failure stack. */
3024 typedef union
3026 fail_stack_elt_t word;
3027 struct
3029 /* This field is one if this group can match the empty string,
3030 zero if not. If not yet determined, `MATCH_NULL_UNSET_VALUE'. */
3031 #define MATCH_NULL_UNSET_VALUE 3
3032 unsigned match_null_string_p : 2;
3033 unsigned is_active : 1;
3034 unsigned matched_something : 1;
3035 unsigned ever_matched_something : 1;
3036 } bits;
3037 } register_info_type;
3039 #define REG_MATCH_NULL_STRING_P(R) ((R).bits.match_null_string_p)
3040 #define IS_ACTIVE(R) ((R).bits.is_active)
3041 #define MATCHED_SOMETHING(R) ((R).bits.matched_something)
3042 #define EVER_MATCHED_SOMETHING(R) ((R).bits.ever_matched_something)
3045 /* Call this when have matched a real character; it sets `matched' flags
3046 for the subexpressions which we are currently inside. Also records
3047 that those subexprs have matched. */
3048 #define SET_REGS_MATCHED() \
3049 do \
3051 unsigned r; \
3052 for (r = lowest_active_reg; r <= highest_active_reg; r++) \
3054 MATCHED_SOMETHING (reg_info[r]) \
3055 = EVER_MATCHED_SOMETHING (reg_info[r]) \
3056 = 1; \
3059 while (0)
3062 /* This converts PTR, a pointer into one of the search strings `string1'
3063 and `string2' into an offset from the beginning of that string. */
3064 #define POINTER_TO_OFFSET(ptr) \
3065 (FIRST_STRING_P (ptr) ? (ptr) - string1 : (ptr) - string2 + size1)
3067 /* Registers are set to a sentinel when they haven't yet matched. */
3068 #define REG_UNSET_VALUE ((char *) -1)
3069 #define REG_UNSET(e) ((e) == REG_UNSET_VALUE)
3072 /* Macros for dealing with the split strings in re_match_2. */
3074 #define MATCHING_IN_FIRST_STRING (dend == end_match_1)
3076 /* Call before fetching a character with *d. This switches over to
3077 string2 if necessary. */
3078 #define PREFETCH() \
3079 while (d == dend) \
3081 /* End of string2 => fail. */ \
3082 if (dend == end_match_2) \
3083 goto fail; \
3084 /* End of string1 => advance to string2. */ \
3085 d = string2; \
3086 dend = end_match_2; \
3090 /* Test if at very beginning or at very end of the virtual concatenation
3091 of `string1' and `string2'. If only one string, it's `string2'. */
3092 #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2)
3093 #define AT_STRINGS_END(d) ((d) == end2)
3096 /* Test if D points to a character which is word-constituent. We have
3097 two special cases to check for: if past the end of string1, look at
3098 the first character in string2; and if before the beginning of
3099 string2, look at the last character in string1. */
3100 #define WORDCHAR_P(d) \
3101 (SYNTAX ((d) == end1 ? *string2 \
3102 : (d) == string2 - 1 ? *(end1 - 1) : *(d)) \
3103 == Sword)
3105 /* Test if the character before D and the one at D differ with respect
3106 to being word-constituent. */
3107 #define AT_WORD_BOUNDARY(d) \
3108 (AT_STRINGS_BEG (d) || AT_STRINGS_END (d) \
3109 || WORDCHAR_P (d - 1) != WORDCHAR_P (d))
3112 /* Free everything we malloc. */
3113 #ifdef REGEX_MALLOC
3114 #define FREE_VAR(var) if (var) free (var); var = NULL
3115 #define FREE_VARIABLES() \
3116 do { \
3117 FREE_VAR (fail_stack.stack); \
3118 FREE_VAR (regstart); \
3119 FREE_VAR (regend); \
3120 FREE_VAR (old_regstart); \
3121 FREE_VAR (old_regend); \
3122 FREE_VAR (best_regstart); \
3123 FREE_VAR (best_regend); \
3124 FREE_VAR (reg_info); \
3125 FREE_VAR (reg_dummy); \
3126 FREE_VAR (reg_info_dummy); \
3127 } while (0)
3128 #else /* not REGEX_MALLOC */
3129 /* Some MIPS systems (at least) want this to free alloca'd storage. */
3130 #define FREE_VARIABLES() alloca (0)
3131 #endif /* not REGEX_MALLOC */
3134 /* These values must meet several constraints. They must not be valid
3135 register values; since we have a limit of 255 registers (because
3136 we use only one byte in the pattern for the register number), we can
3137 use numbers larger than 255. They must differ by 1, because of
3138 NUM_FAILURE_ITEMS above. And the value for the lowest register must
3139 be larger than the value for the highest register, so we do not try
3140 to actually save any registers when none are active. */
3141 #define NO_HIGHEST_ACTIVE_REG (1 << BYTEWIDTH)
3142 #define NO_LOWEST_ACTIVE_REG (NO_HIGHEST_ACTIVE_REG + 1)
3144 /* Matching routines. */
3146 #ifndef emacs /* Emacs never uses this. */
3147 /* re_match is like re_match_2 except it takes only a single string. */
3150 re_match (bufp, string, size, pos, regs)
3151 struct re_pattern_buffer *bufp;
3152 const char *string;
3153 int size, pos;
3154 struct re_registers *regs;
3156 return re_match_2 (bufp, NULL, 0, string, size, pos, regs, size);
3158 #endif /* not emacs */
3161 /* re_match_2 matches the compiled pattern in BUFP against the
3162 the (virtual) concatenation of STRING1 and STRING2 (of length SIZE1
3163 and SIZE2, respectively). We start matching at POS, and stop
3164 matching at STOP.
3166 If REGS is non-null and the `no_sub' field of BUFP is nonzero, we
3167 store offsets for the substring each group matched in REGS. See the
3168 documentation for exactly how many groups we fill.
3170 We return -1 if no match, -2 if an internal error (such as the
3171 failure stack overflowing). Otherwise, we return the length of the
3172 matched substring. */
3175 re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
3176 struct re_pattern_buffer *bufp;
3177 const char *string1, *string2;
3178 int size1, size2;
3179 int pos;
3180 struct re_registers *regs;
3181 int stop;
3183 /* General temporaries. */
3184 int mcnt;
3185 unsigned char *p1;
3187 /* Just past the end of the corresponding string. */
3188 const char *end1, *end2;
3190 /* Pointers into string1 and string2, just past the last characters in
3191 each to consider matching. */
3192 const char *end_match_1, *end_match_2;
3194 /* Where we are in the data, and the end of the current string. */
3195 const char *d, *dend;
3197 /* Where we are in the pattern, and the end of the pattern. */
3198 unsigned char *p = bufp->buffer;
3199 register unsigned char *pend = p + bufp->used;
3201 /* We use this to map every character in the string. */
3202 char *translate = bufp->translate;
3204 /* Failure point stack. Each place that can handle a failure further
3205 down the line pushes a failure point on this stack. It consists of
3206 restart, regend, and reg_info for all registers corresponding to
3207 the subexpressions we're currently inside, plus the number of such
3208 registers, and, finally, two char *'s. The first char * is where
3209 to resume scanning the pattern; the second one is where to resume
3210 scanning the strings. If the latter is zero, the failure point is
3211 a ``dummy''; if a failure happens and the failure point is a dummy,
3212 it gets discarded and the next next one is tried. */
3213 fail_stack_type fail_stack;
3214 #ifdef DEBUG
3215 static unsigned failure_id = 0;
3216 unsigned nfailure_points_pushed = 0, nfailure_points_popped = 0;
3217 #endif
3219 /* We fill all the registers internally, independent of what we
3220 return, for use in backreferences. The number here includes
3221 an element for register zero. */
3222 unsigned num_regs = bufp->re_nsub + 1;
3224 /* The currently active registers. */
3225 unsigned lowest_active_reg = NO_LOWEST_ACTIVE_REG;
3226 unsigned highest_active_reg = NO_HIGHEST_ACTIVE_REG;
3228 /* Information on the contents of registers. These are pointers into
3229 the input strings; they record just what was matched (on this
3230 attempt) by a subexpression part of the pattern, that is, the
3231 regnum-th regstart pointer points to where in the pattern we began
3232 matching and the regnum-th regend points to right after where we
3233 stopped matching the regnum-th subexpression. (The zeroth register
3234 keeps track of what the whole pattern matches.) */
3235 const char **regstart, **regend;
3237 /* If a group that's operated upon by a repetition operator fails to
3238 match anything, then the register for its start will need to be
3239 restored because it will have been set to wherever in the string we
3240 are when we last see its open-group operator. Similarly for a
3241 register's end. */
3242 const char **old_regstart, **old_regend;
3244 /* The is_active field of reg_info helps us keep track of which (possibly
3245 nested) subexpressions we are currently in. The matched_something
3246 field of reg_info[reg_num] helps us tell whether or not we have
3247 matched any of the pattern so far this time through the reg_num-th
3248 subexpression. These two fields get reset each time through any
3249 loop their register is in. */
3250 register_info_type *reg_info;
3252 /* The following record the register info as found in the above
3253 variables when we find a match better than any we've seen before.
3254 This happens as we backtrack through the failure points, which in
3255 turn happens only if we have not yet matched the entire string. */
3256 unsigned best_regs_set = false;
3257 const char **best_regstart, **best_regend;
3259 /* Logically, this is `best_regend[0]'. But we don't want to have to
3260 allocate space for that if we're not allocating space for anything
3261 else (see below). Also, we never need info about register 0 for
3262 any of the other register vectors, and it seems rather a kludge to
3263 treat `best_regend' differently than the rest. So we keep track of
3264 the end of the best match so far in a separate variable. We
3265 initialize this to NULL so that when we backtrack the first time
3266 and need to test it, it's not garbage. */
3267 const char *match_end = NULL;
3269 /* Used when we pop values we don't care about. */
3270 const char **reg_dummy;
3271 register_info_type *reg_info_dummy;
3273 #ifdef DEBUG
3274 /* Counts the total number of registers pushed. */
3275 unsigned num_regs_pushed = 0;
3276 #endif
3278 DEBUG_PRINT1 ("\n\nEntering re_match_2.\n");
3280 INIT_FAIL_STACK ();
3282 /* Do not bother to initialize all the register variables if there are
3283 no groups in the pattern, as it takes a fair amount of time. If
3284 there are groups, we include space for register 0 (the whole
3285 pattern), even though we never use it, since it simplifies the
3286 array indexing. We should fix this. */
3287 if (bufp->re_nsub)
3289 regstart = REGEX_TALLOC (num_regs, const char *);
3290 regend = REGEX_TALLOC (num_regs, const char *);
3291 old_regstart = REGEX_TALLOC (num_regs, const char *);
3292 old_regend = REGEX_TALLOC (num_regs, const char *);
3293 best_regstart = REGEX_TALLOC (num_regs, const char *);
3294 best_regend = REGEX_TALLOC (num_regs, const char *);
3295 reg_info = REGEX_TALLOC (num_regs, register_info_type);
3296 reg_dummy = REGEX_TALLOC (num_regs, const char *);
3297 reg_info_dummy = REGEX_TALLOC (num_regs, register_info_type);
3299 if (!(regstart && regend && old_regstart && old_regend && reg_info
3300 && best_regstart && best_regend && reg_dummy && reg_info_dummy))
3302 FREE_VARIABLES ();
3303 return -2;
3306 #ifdef REGEX_MALLOC
3307 else
3309 /* We must initialize all our variables to NULL, so that
3310 `FREE_VARIABLES' doesn't try to free them. */
3311 regstart = regend = old_regstart = old_regend = best_regstart
3312 = best_regend = reg_dummy = NULL;
3313 reg_info = reg_info_dummy = (register_info_type *) NULL;
3315 #endif /* REGEX_MALLOC */
3317 /* The starting position is bogus. */
3318 if (pos < 0 || pos > size1 + size2)
3320 FREE_VARIABLES ();
3321 return -1;
3324 /* Initialize subexpression text positions to -1 to mark ones that no
3325 start_memory/stop_memory has been seen for. Also initialize the
3326 register information struct. */
3327 for (mcnt = 1; mcnt < num_regs; mcnt++)
3329 regstart[mcnt] = regend[mcnt]
3330 = old_regstart[mcnt] = old_regend[mcnt] = REG_UNSET_VALUE;
3332 REG_MATCH_NULL_STRING_P (reg_info[mcnt]) = MATCH_NULL_UNSET_VALUE;
3333 IS_ACTIVE (reg_info[mcnt]) = 0;
3334 MATCHED_SOMETHING (reg_info[mcnt]) = 0;
3335 EVER_MATCHED_SOMETHING (reg_info[mcnt]) = 0;
3338 /* We move `string1' into `string2' if the latter's empty -- but not if
3339 `string1' is null. */
3340 if (size2 == 0 && string1 != NULL)
3342 string2 = string1;
3343 size2 = size1;
3344 string1 = 0;
3345 size1 = 0;
3347 end1 = string1 + size1;
3348 end2 = string2 + size2;
3350 /* Compute where to stop matching, within the two strings. */
3351 if (stop <= size1)
3353 end_match_1 = string1 + stop;
3354 end_match_2 = string2;
3356 else
3358 end_match_1 = end1;
3359 end_match_2 = string2 + stop - size1;
3362 /* `p' scans through the pattern as `d' scans through the data.
3363 `dend' is the end of the input string that `d' points within. `d'
3364 is advanced into the following input string whenever necessary, but
3365 this happens before fetching; therefore, at the beginning of the
3366 loop, `d' can be pointing at the end of a string, but it cannot
3367 equal `string2'. */
3368 if (size1 > 0 && pos <= size1)
3370 d = string1 + pos;
3371 dend = end_match_1;
3373 else
3375 d = string2 + pos - size1;
3376 dend = end_match_2;
3379 DEBUG_PRINT1 ("The compiled pattern is: ");
3380 DEBUG_PRINT_COMPILED_PATTERN (bufp, p, pend);
3381 DEBUG_PRINT1 ("The string to match is: `");
3382 DEBUG_PRINT_DOUBLE_STRING (d, string1, size1, string2, size2);
3383 DEBUG_PRINT1 ("'\n");
3385 /* This loops over pattern commands. It exits by returning from the
3386 function if the match is complete, or it drops through if the match
3387 fails at this starting point in the input data. */
3388 for (;;)
3390 DEBUG_PRINT2 ("\n0x%x: ", p);
3392 if (p == pend)
3393 { /* End of pattern means we might have succeeded. */
3394 DEBUG_PRINT1 ("end of pattern ... ");
3396 /* If we haven't matched the entire string, and we want the
3397 longest match, try backtracking. */
3398 if (d != end_match_2)
3400 DEBUG_PRINT1 ("backtracking.\n");
3402 if (!FAIL_STACK_EMPTY ())
3403 { /* More failure points to try. */
3404 boolean same_str_p = (FIRST_STRING_P (match_end)
3405 == MATCHING_IN_FIRST_STRING);
3407 /* If exceeds best match so far, save it. */
3408 if (!best_regs_set
3409 || (same_str_p && d > match_end)
3410 || (!same_str_p && !MATCHING_IN_FIRST_STRING))
3412 best_regs_set = true;
3413 match_end = d;
3415 DEBUG_PRINT1 ("\nSAVING match as best so far.\n");
3417 for (mcnt = 1; mcnt < num_regs; mcnt++)
3419 best_regstart[mcnt] = regstart[mcnt];
3420 best_regend[mcnt] = regend[mcnt];
3423 goto fail;
3426 /* If no failure points, don't restore garbage. */
3427 else if (best_regs_set)
3429 restore_best_regs:
3430 /* Restore best match. It may happen that `dend ==
3431 end_match_1' while the restored d is in string2.
3432 For example, the pattern `x.*y.*z' against the
3433 strings `x-' and `y-z-', if the two strings are
3434 not consecutive in memory. */
3435 DEBUG_PRINT1 ("Restoring best registers.\n");
3437 d = match_end;
3438 dend = ((d >= string1 && d <= end1)
3439 ? end_match_1 : end_match_2);
3441 for (mcnt = 1; mcnt < num_regs; mcnt++)
3443 regstart[mcnt] = best_regstart[mcnt];
3444 regend[mcnt] = best_regend[mcnt];
3447 } /* d != end_match_2 */
3449 DEBUG_PRINT1 ("Accepting match.\n");
3451 /* If caller wants register contents data back, do it. */
3452 if (regs && !bufp->no_sub)
3454 /* Have the register data arrays been allocated? */
3455 if (bufp->regs_allocated == REGS_UNALLOCATED)
3456 { /* No. So allocate them with malloc. We need one
3457 extra element beyond `num_regs' for the `-1' marker
3458 GNU code uses. */
3459 regs->num_regs = MAX (RE_NREGS, num_regs + 1);
3460 regs->start = TALLOC (regs->num_regs, regoff_t);
3461 regs->end = TALLOC (regs->num_regs, regoff_t);
3462 if (regs->start == NULL || regs->end == NULL)
3463 return -2;
3464 bufp->regs_allocated = REGS_REALLOCATE;
3466 else if (bufp->regs_allocated == REGS_REALLOCATE)
3467 { /* Yes. If we need more elements than were already
3468 allocated, reallocate them. If we need fewer, just
3469 leave it alone. */
3470 if (regs->num_regs < num_regs + 1)
3472 regs->num_regs = num_regs + 1;
3473 RETALLOC (regs->start, regs->num_regs, regoff_t);
3474 RETALLOC (regs->end, regs->num_regs, regoff_t);
3475 if (regs->start == NULL || regs->end == NULL)
3476 return -2;
3479 else
3480 assert (bufp->regs_allocated == REGS_FIXED);
3482 /* Convert the pointer data in `regstart' and `regend' to
3483 indices. Register zero has to be set differently,
3484 since we haven't kept track of any info for it. */
3485 if (regs->num_regs > 0)
3487 regs->start[0] = pos;
3488 regs->end[0] = (MATCHING_IN_FIRST_STRING ? d - string1
3489 : d - string2 + size1);
3492 /* Go through the first `min (num_regs, regs->num_regs)'
3493 registers, since that is all we initialized. */
3494 for (mcnt = 1; mcnt < MIN (num_regs, regs->num_regs); mcnt++)
3496 if (REG_UNSET (regstart[mcnt]) || REG_UNSET (regend[mcnt]))
3497 regs->start[mcnt] = regs->end[mcnt] = -1;
3498 else
3500 regs->start[mcnt] = POINTER_TO_OFFSET (regstart[mcnt]);
3501 regs->end[mcnt] = POINTER_TO_OFFSET (regend[mcnt]);
3505 /* If the regs structure we return has more elements than
3506 were in the pattern, set the extra elements to -1. If
3507 we (re)allocated the registers, this is the case,
3508 because we always allocate enough to have at least one
3509 -1 at the end. */
3510 for (mcnt = num_regs; mcnt < regs->num_regs; mcnt++)
3511 regs->start[mcnt] = regs->end[mcnt] = -1;
3512 } /* regs && !bufp->no_sub */
3514 FREE_VARIABLES ();
3515 DEBUG_PRINT4 ("%u failure points pushed, %u popped (%u remain).\n",
3516 nfailure_points_pushed, nfailure_points_popped,
3517 nfailure_points_pushed - nfailure_points_popped);
3518 DEBUG_PRINT2 ("%u registers pushed.\n", num_regs_pushed);
3520 mcnt = d - pos - (MATCHING_IN_FIRST_STRING
3521 ? string1
3522 : string2 - size1);
3524 DEBUG_PRINT2 ("Returning %d from re_match_2.\n", mcnt);
3526 return mcnt;
3529 /* Otherwise match next pattern command. */
3530 #ifdef SWITCH_ENUM_BUG
3531 switch ((int) ((re_opcode_t) *p++))
3532 #else
3533 switch ((re_opcode_t) *p++)
3534 #endif
3536 /* Ignore these. Used to ignore the n of succeed_n's which
3537 currently have n == 0. */
3538 case no_op:
3539 DEBUG_PRINT1 ("EXECUTING no_op.\n");
3540 break;
3543 /* Match the next n pattern characters exactly. The following
3544 byte in the pattern defines n, and the n bytes after that
3545 are the characters to match. */
3546 case exactn:
3547 mcnt = *p++;
3548 DEBUG_PRINT2 ("EXECUTING exactn %d.\n", mcnt);
3550 /* This is written out as an if-else so we don't waste time
3551 testing `translate' inside the loop. */
3552 if (translate)
3556 PREFETCH ();
3557 if (translate[(unsigned char) *d++] != (char) *p++)
3558 goto fail;
3560 while (--mcnt);
3562 else
3566 PREFETCH ();
3567 if (*d++ != (char) *p++) goto fail;
3569 while (--mcnt);
3571 SET_REGS_MATCHED ();
3572 break;
3575 /* Match any character except possibly a newline or a null. */
3576 case anychar:
3577 DEBUG_PRINT1 ("EXECUTING anychar.\n");
3579 PREFETCH ();
3581 if ((!(bufp->syntax & RE_DOT_NEWLINE) && TRANSLATE (*d) == '\n')
3582 || (bufp->syntax & RE_DOT_NOT_NULL && TRANSLATE (*d) == '\000'))
3583 goto fail;
3585 SET_REGS_MATCHED ();
3586 DEBUG_PRINT2 (" Matched `%d'.\n", *d);
3587 d++;
3588 break;
3591 case charset:
3592 case charset_not:
3594 register unsigned char c;
3595 boolean not = (re_opcode_t) *(p - 1) == charset_not;
3597 DEBUG_PRINT2 ("EXECUTING charset%s.\n", not ? "_not" : "");
3599 PREFETCH ();
3600 c = TRANSLATE (*d); /* The character to match. */
3602 /* Cast to `unsigned' instead of `unsigned char' in case the
3603 bit list is a full 32 bytes long. */
3604 if (c < (unsigned) (*p * BYTEWIDTH)
3605 && p[1 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
3606 not = !not;
3608 p += 1 + *p;
3610 if (!not) goto fail;
3612 SET_REGS_MATCHED ();
3613 d++;
3614 break;
3618 /* The beginning of a group is represented by start_memory.
3619 The arguments are the register number in the next byte, and the
3620 number of groups inner to this one in the next. The text
3621 matched within the group is recorded (in the internal
3622 registers data structure) under the register number. */
3623 case start_memory:
3624 DEBUG_PRINT3 ("EXECUTING start_memory %d (%d):\n", *p, p[1]);
3626 /* Find out if this group can match the empty string. */
3627 p1 = p; /* To send to group_match_null_string_p. */
3629 if (REG_MATCH_NULL_STRING_P (reg_info[*p]) == MATCH_NULL_UNSET_VALUE)
3630 REG_MATCH_NULL_STRING_P (reg_info[*p])
3631 = group_match_null_string_p (&p1, pend, reg_info);
3633 /* Save the position in the string where we were the last time
3634 we were at this open-group operator in case the group is
3635 operated upon by a repetition operator, e.g., with `(a*)*b'
3636 against `ab'; then we want to ignore where we are now in
3637 the string in case this attempt to match fails. */
3638 old_regstart[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
3639 ? REG_UNSET (regstart[*p]) ? d : regstart[*p]
3640 : regstart[*p];
3641 DEBUG_PRINT2 (" old_regstart: %d\n",
3642 POINTER_TO_OFFSET (old_regstart[*p]));
3644 regstart[*p] = d;
3645 DEBUG_PRINT2 (" regstart: %d\n", POINTER_TO_OFFSET (regstart[*p]));
3647 IS_ACTIVE (reg_info[*p]) = 1;
3648 MATCHED_SOMETHING (reg_info[*p]) = 0;
3650 /* This is the new highest active register. */
3651 highest_active_reg = *p;
3653 /* If nothing was active before, this is the new lowest active
3654 register. */
3655 if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
3656 lowest_active_reg = *p;
3658 /* Move past the register number and inner group count. */
3659 p += 2;
3660 break;
3663 /* The stop_memory opcode represents the end of a group. Its
3664 arguments are the same as start_memory's: the register
3665 number, and the number of inner groups. */
3666 case stop_memory:
3667 DEBUG_PRINT3 ("EXECUTING stop_memory %d (%d):\n", *p, p[1]);
3669 /* We need to save the string position the last time we were at
3670 this close-group operator in case the group is operated
3671 upon by a repetition operator, e.g., with `((a*)*(b*)*)*'
3672 against `aba'; then we want to ignore where we are now in
3673 the string in case this attempt to match fails. */
3674 old_regend[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
3675 ? REG_UNSET (regend[*p]) ? d : regend[*p]
3676 : regend[*p];
3677 DEBUG_PRINT2 (" old_regend: %d\n",
3678 POINTER_TO_OFFSET (old_regend[*p]));
3680 regend[*p] = d;
3681 DEBUG_PRINT2 (" regend: %d\n", POINTER_TO_OFFSET (regend[*p]));
3683 /* This register isn't active anymore. */
3684 IS_ACTIVE (reg_info[*p]) = 0;
3686 /* If this was the only register active, nothing is active
3687 anymore. */
3688 if (lowest_active_reg == highest_active_reg)
3690 lowest_active_reg = NO_LOWEST_ACTIVE_REG;
3691 highest_active_reg = NO_HIGHEST_ACTIVE_REG;
3693 else
3694 { /* We must scan for the new highest active register, since
3695 it isn't necessarily one less than now: consider
3696 (a(b)c(d(e)f)g). When group 3 ends, after the f), the
3697 new highest active register is 1. */
3698 unsigned char r = *p - 1;
3699 while (r > 0 && !IS_ACTIVE (reg_info[r]))
3700 r--;
3702 /* If we end up at register zero, that means that we saved
3703 the registers as the result of an `on_failure_jump', not
3704 a `start_memory', and we jumped to past the innermost
3705 `stop_memory'. For example, in ((.)*) we save
3706 registers 1 and 2 as a result of the *, but when we pop
3707 back to the second ), we are at the stop_memory 1.
3708 Thus, nothing is active. */
3709 if (r == 0)
3711 lowest_active_reg = NO_LOWEST_ACTIVE_REG;
3712 highest_active_reg = NO_HIGHEST_ACTIVE_REG;
3714 else
3715 highest_active_reg = r;
3718 /* If just failed to match something this time around with a
3719 group that's operated on by a repetition operator, try to
3720 force exit from the ``loop'', and restore the register
3721 information for this group that we had before trying this
3722 last match. */
3723 if ((!MATCHED_SOMETHING (reg_info[*p])
3724 || (re_opcode_t) p[-3] == start_memory)
3725 && (p + 2) < pend)
3727 boolean is_a_jump_n = false;
3729 p1 = p + 2;
3730 mcnt = 0;
3731 switch ((re_opcode_t) *p1++)
3733 case jump_n:
3734 is_a_jump_n = true;
3735 case pop_failure_jump:
3736 case maybe_pop_jump:
3737 case jump:
3738 case dummy_failure_jump:
3739 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
3740 if (is_a_jump_n)
3741 p1 += 2;
3742 break;
3744 default:
3745 /* do nothing */ ;
3747 p1 += mcnt;
3749 /* If the next operation is a jump backwards in the pattern
3750 to an on_failure_jump right before the start_memory
3751 corresponding to this stop_memory, exit from the loop
3752 by forcing a failure after pushing on the stack the
3753 on_failure_jump's jump in the pattern, and d. */
3754 if (mcnt < 0 && (re_opcode_t) *p1 == on_failure_jump
3755 && (re_opcode_t) p1[3] == start_memory && p1[4] == *p)
3757 /* If this group ever matched anything, then restore
3758 what its registers were before trying this last
3759 failed match, e.g., with `(a*)*b' against `ab' for
3760 regstart[1], and, e.g., with `((a*)*(b*)*)*'
3761 against `aba' for regend[3].
3763 Also restore the registers for inner groups for,
3764 e.g., `((a*)(b*))*' against `aba' (register 3 would
3765 otherwise get trashed). */
3767 if (EVER_MATCHED_SOMETHING (reg_info[*p]))
3769 unsigned r;
3771 EVER_MATCHED_SOMETHING (reg_info[*p]) = 0;
3773 /* Restore this and inner groups' (if any) registers. */
3774 for (r = *p; r < *p + *(p + 1); r++)
3776 regstart[r] = old_regstart[r];
3778 /* xx why this test? */
3779 if ((int) old_regend[r] >= (int) regstart[r])
3780 regend[r] = old_regend[r];
3783 p1++;
3784 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
3785 PUSH_FAILURE_POINT (p1 + mcnt, d, -2);
3787 goto fail;
3791 /* Move past the register number and the inner group count. */
3792 p += 2;
3793 break;
3796 /* \<digit> has been turned into a `duplicate' command which is
3797 followed by the numeric value of <digit> as the register number. */
3798 case duplicate:
3800 register const char *d2, *dend2;
3801 int regno = *p++; /* Get which register to match against. */
3802 DEBUG_PRINT2 ("EXECUTING duplicate %d.\n", regno);
3804 /* Can't back reference a group which we've never matched. */
3805 if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
3806 goto fail;
3808 /* Where in input to try to start matching. */
3809 d2 = regstart[regno];
3811 /* Where to stop matching; if both the place to start and
3812 the place to stop matching are in the same string, then
3813 set to the place to stop, otherwise, for now have to use
3814 the end of the first string. */
3816 dend2 = ((FIRST_STRING_P (regstart[regno])
3817 == FIRST_STRING_P (regend[regno]))
3818 ? regend[regno] : end_match_1);
3819 for (;;)
3821 /* If necessary, advance to next segment in register
3822 contents. */
3823 while (d2 == dend2)
3825 if (dend2 == end_match_2) break;
3826 if (dend2 == regend[regno]) break;
3828 /* End of string1 => advance to string2. */
3829 d2 = string2;
3830 dend2 = regend[regno];
3832 /* At end of register contents => success */
3833 if (d2 == dend2) break;
3835 /* If necessary, advance to next segment in data. */
3836 PREFETCH ();
3838 /* How many characters left in this segment to match. */
3839 mcnt = dend - d;
3841 /* Want how many consecutive characters we can match in
3842 one shot, so, if necessary, adjust the count. */
3843 if (mcnt > dend2 - d2)
3844 mcnt = dend2 - d2;
3846 /* Compare that many; failure if mismatch, else move
3847 past them. */
3848 if (translate
3849 ? bcmp_translate ((unsigned char*)d, (unsigned char*)d2, mcnt, translate)
3850 : bcmp (d, d2, mcnt))
3851 goto fail;
3852 d += mcnt, d2 += mcnt;
3855 break;
3858 /* begline matches the empty string at the beginning of the string
3859 (unless `not_bol' is set in `bufp'), and, if
3860 `newline_anchor' is set, after newlines. */
3861 case begline:
3862 DEBUG_PRINT1 ("EXECUTING begline.\n");
3864 if (AT_STRINGS_BEG (d))
3866 if (!bufp->not_bol) break;
3868 else if (d[-1] == '\n' && bufp->newline_anchor)
3870 break;
3872 /* In all other cases, we fail. */
3873 goto fail;
3876 /* endline is the dual of begline. */
3877 case endline:
3878 DEBUG_PRINT1 ("EXECUTING endline.\n");
3880 if (AT_STRINGS_END (d))
3882 if (!bufp->not_eol) break;
3885 /* We have to ``prefetch'' the next character. */
3886 else if ((d == end1 ? *string2 : *d) == '\n'
3887 && bufp->newline_anchor)
3889 break;
3891 goto fail;
3894 /* Match at the very beginning of the data. */
3895 case begbuf:
3896 DEBUG_PRINT1 ("EXECUTING begbuf.\n");
3897 if (AT_STRINGS_BEG (d))
3898 break;
3899 goto fail;
3902 /* Match at the very end of the data. */
3903 case endbuf:
3904 DEBUG_PRINT1 ("EXECUTING endbuf.\n");
3905 if (AT_STRINGS_END (d))
3906 break;
3907 goto fail;
3910 /* on_failure_keep_string_jump is used to optimize `.*\n'. It
3911 pushes NULL as the value for the string on the stack. Then
3912 `pop_failure_point' will keep the current value for the
3913 string, instead of restoring it. To see why, consider
3914 matching `foo\nbar' against `.*\n'. The .* matches the foo;
3915 then the . fails against the \n. But the next thing we want
3916 to do is match the \n against the \n; if we restored the
3917 string value, we would be back at the foo.
3919 Because this is used only in specific cases, we don't need to
3920 check all the things that `on_failure_jump' does, to make
3921 sure the right things get saved on the stack. Hence we don't
3922 share its code. The only reason to push anything on the
3923 stack at all is that otherwise we would have to change
3924 `anychar's code to do something besides goto fail in this
3925 case; that seems worse than this. */
3926 case on_failure_keep_string_jump:
3927 DEBUG_PRINT1 ("EXECUTING on_failure_keep_string_jump");
3929 EXTRACT_NUMBER_AND_INCR (mcnt, p);
3930 DEBUG_PRINT3 (" %d (to 0x%x):\n", mcnt, p + mcnt);
3932 PUSH_FAILURE_POINT (p + mcnt, NULL, -2);
3933 break;
3936 /* Uses of on_failure_jump:
3938 Each alternative starts with an on_failure_jump that points
3939 to the beginning of the next alternative. Each alternative
3940 except the last ends with a jump that in effect jumps past
3941 the rest of the alternatives. (They really jump to the
3942 ending jump of the following alternative, because tensioning
3943 these jumps is a hassle.)
3945 Repeats start with an on_failure_jump that points past both
3946 the repetition text and either the following jump or
3947 pop_failure_jump back to this on_failure_jump. */
3948 case on_failure_jump:
3949 on_failure:
3950 DEBUG_PRINT1 ("EXECUTING on_failure_jump");
3952 EXTRACT_NUMBER_AND_INCR (mcnt, p);
3953 DEBUG_PRINT3 (" %d (to 0x%x)", mcnt, p + mcnt);
3955 /* If this on_failure_jump comes right before a group (i.e.,
3956 the original * applied to a group), save the information
3957 for that group and all inner ones, so that if we fail back
3958 to this point, the group's information will be correct.
3959 For example, in \(a*\)*\1, we need the preceding group,
3960 and in \(\(a*\)b*\)\2, we need the inner group. */
3962 /* We can't use `p' to check ahead because we push
3963 a failure point to `p + mcnt' after we do this. */
3964 p1 = p;
3966 /* We need to skip no_op's before we look for the
3967 start_memory in case this on_failure_jump is happening as
3968 the result of a completed succeed_n, as in \(a\)\{1,3\}b\1
3969 against aba. */
3970 while (p1 < pend && (re_opcode_t) *p1 == no_op)
3971 p1++;
3973 if (p1 < pend && (re_opcode_t) *p1 == start_memory)
3975 /* We have a new highest active register now. This will
3976 get reset at the start_memory we are about to get to,
3977 but we will have saved all the registers relevant to
3978 this repetition op, as described above. */
3979 highest_active_reg = *(p1 + 1) + *(p1 + 2);
3980 if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
3981 lowest_active_reg = *(p1 + 1);
3984 DEBUG_PRINT1 (":\n");
3985 PUSH_FAILURE_POINT (p + mcnt, d, -2);
3986 break;
3989 /* A smart repeat ends with `maybe_pop_jump'.
3990 We change it to either `pop_failure_jump' or `jump'. */
3991 case maybe_pop_jump:
3992 EXTRACT_NUMBER_AND_INCR (mcnt, p);
3993 DEBUG_PRINT2 ("EXECUTING maybe_pop_jump %d.\n", mcnt);
3995 register unsigned char *p2 = p;
3997 /* Compare the beginning of the repeat with what in the
3998 pattern follows its end. If we can establish that there
3999 is nothing that they would both match, i.e., that we
4000 would have to backtrack because of (as in, e.g., `a*a')
4001 then we can change to pop_failure_jump, because we'll
4002 never have to backtrack.
4004 This is not true in the case of alternatives: in
4005 `(a|ab)*' we do need to backtrack to the `ab' alternative
4006 (e.g., if the string was `ab'). But instead of trying to
4007 detect that here, the alternative has put on a dummy
4008 failure point which is what we will end up popping. */
4010 /* Skip over open/close-group commands. */
4011 while (p2 + 2 < pend
4012 && ((re_opcode_t) *p2 == stop_memory
4013 || (re_opcode_t) *p2 == start_memory))
4014 p2 += 3; /* Skip over args, too. */
4016 /* If we're at the end of the pattern, we can change. */
4017 if (p2 == pend)
4019 /* Consider what happens when matching ":\(.*\)"
4020 against ":/". I don't really understand this code
4021 yet. */
4022 p[-3] = (unsigned char) pop_failure_jump;
4023 DEBUG_PRINT1
4024 (" End of pattern: change to `pop_failure_jump'.\n");
4027 else if ((re_opcode_t) *p2 == exactn
4028 || (bufp->newline_anchor && (re_opcode_t) *p2 == endline))
4030 register unsigned char c
4031 = *p2 == (unsigned char) endline ? '\n' : p2[2];
4032 p1 = p + mcnt;
4034 /* p1[0] ... p1[2] are the `on_failure_jump' corresponding
4035 to the `maybe_finalize_jump' of this case. Examine what
4036 follows. */
4037 if ((re_opcode_t) p1[3] == exactn && p1[5] != c)
4039 p[-3] = (unsigned char) pop_failure_jump;
4040 DEBUG_PRINT3 (" %c != %c => pop_failure_jump.\n",
4041 c, p1[5]);
4044 else if ((re_opcode_t) p1[3] == charset
4045 || (re_opcode_t) p1[3] == charset_not)
4047 int not = (re_opcode_t) p1[3] == charset_not;
4049 if (c < (unsigned char) (p1[4] * BYTEWIDTH)
4050 && p1[5 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
4051 not = !not;
4053 /* `not' is equal to 1 if c would match, which means
4054 that we can't change to pop_failure_jump. */
4055 if (!not)
4057 p[-3] = (unsigned char) pop_failure_jump;
4058 DEBUG_PRINT1 (" No match => pop_failure_jump.\n");
4063 p -= 2; /* Point at relative address again. */
4064 if ((re_opcode_t) p[-1] != pop_failure_jump)
4066 p[-1] = (unsigned char) jump;
4067 DEBUG_PRINT1 (" Match => jump.\n");
4068 goto unconditional_jump;
4070 /* Note fall through. */
4073 /* The end of a simple repeat has a pop_failure_jump back to
4074 its matching on_failure_jump, where the latter will push a
4075 failure point. The pop_failure_jump takes off failure
4076 points put on by this pop_failure_jump's matching
4077 on_failure_jump; we got through the pattern to here from the
4078 matching on_failure_jump, so didn't fail. */
4079 case pop_failure_jump:
4081 /* We need to pass separate storage for the lowest and
4082 highest registers, even though we don't care about the
4083 actual values. Otherwise, we will restore only one
4084 register from the stack, since lowest will == highest in
4085 `pop_failure_point'. */
4086 unsigned dummy_low_reg, dummy_high_reg;
4087 unsigned char *pdummy;
4088 const char *sdummy;
4090 DEBUG_PRINT1 ("EXECUTING pop_failure_jump.\n");
4091 POP_FAILURE_POINT (sdummy, pdummy,
4092 dummy_low_reg, dummy_high_reg,
4093 reg_dummy, reg_dummy, reg_info_dummy);
4095 /* Note fall through. */
4098 /* Unconditionally jump (without popping any failure points). */
4099 case jump:
4100 unconditional_jump:
4101 EXTRACT_NUMBER_AND_INCR (mcnt, p); /* Get the amount to jump. */
4102 DEBUG_PRINT2 ("EXECUTING jump %d ", mcnt);
4103 p += mcnt; /* Do the jump. */
4104 DEBUG_PRINT2 ("(to 0x%x).\n", p);
4105 break;
4108 /* We need this opcode so we can detect where alternatives end
4109 in `group_match_null_string_p' et al. */
4110 case jump_past_alt:
4111 DEBUG_PRINT1 ("EXECUTING jump_past_alt.\n");
4112 goto unconditional_jump;
4115 /* Normally, the on_failure_jump pushes a failure point, which
4116 then gets popped at pop_failure_jump. We will end up at
4117 pop_failure_jump, also, and with a pattern of, say, `a+', we
4118 are skipping over the on_failure_jump, so we have to push
4119 something meaningless for pop_failure_jump to pop. */
4120 case dummy_failure_jump:
4121 DEBUG_PRINT1 ("EXECUTING dummy_failure_jump.\n");
4122 /* It doesn't matter what we push for the string here. What
4123 the code at `fail' tests is the value for the pattern. */
4124 PUSH_FAILURE_POINT (0, 0, -2);
4125 goto unconditional_jump;
4128 /* At the end of an alternative, we need to push a dummy failure
4129 point in case we are followed by a `pop_failure_jump', because
4130 we don't want the failure point for the alternative to be
4131 popped. For example, matching `(a|ab)*' against `aab'
4132 requires that we match the `ab' alternative. */
4133 case push_dummy_failure:
4134 DEBUG_PRINT1 ("EXECUTING push_dummy_failure.\n");
4135 /* See comments just above at `dummy_failure_jump' about the
4136 two zeroes. */
4137 PUSH_FAILURE_POINT (0, 0, -2);
4138 break;
4140 /* Have to succeed matching what follows at least n times.
4141 After that, handle like `on_failure_jump'. */
4142 case succeed_n:
4143 EXTRACT_NUMBER (mcnt, p + 2);
4144 DEBUG_PRINT2 ("EXECUTING succeed_n %d.\n", mcnt);
4146 assert (mcnt >= 0);
4147 /* Originally, this is how many times we HAVE to succeed. */
4148 if (mcnt > 0)
4150 mcnt--;
4151 p += 2;
4152 STORE_NUMBER_AND_INCR (p, mcnt);
4153 DEBUG_PRINT3 (" Setting 0x%x to %d.\n", p, mcnt);
4155 else if (mcnt == 0)
4157 DEBUG_PRINT2 (" Setting two bytes from 0x%x to no_op.\n", p+2);
4158 p[2] = (unsigned char) no_op;
4159 p[3] = (unsigned char) no_op;
4160 goto on_failure;
4162 break;
4164 case jump_n:
4165 EXTRACT_NUMBER (mcnt, p + 2);
4166 DEBUG_PRINT2 ("EXECUTING jump_n %d.\n", mcnt);
4168 /* Originally, this is how many times we CAN jump. */
4169 if (mcnt)
4171 mcnt--;
4172 STORE_NUMBER (p + 2, mcnt);
4173 goto unconditional_jump;
4175 /* If don't have to jump any more, skip over the rest of command. */
4176 else
4177 p += 4;
4178 break;
4180 case set_number_at:
4182 DEBUG_PRINT1 ("EXECUTING set_number_at.\n");
4184 EXTRACT_NUMBER_AND_INCR (mcnt, p);
4185 p1 = p + mcnt;
4186 EXTRACT_NUMBER_AND_INCR (mcnt, p);
4187 DEBUG_PRINT3 (" Setting 0x%x to %d.\n", p1, mcnt);
4188 STORE_NUMBER (p1, mcnt);
4189 break;
4192 case wordbound:
4193 DEBUG_PRINT1 ("EXECUTING wordbound.\n");
4194 if (AT_WORD_BOUNDARY (d))
4195 break;
4196 goto fail;
4198 case notwordbound:
4199 DEBUG_PRINT1 ("EXECUTING notwordbound.\n");
4200 if (AT_WORD_BOUNDARY (d))
4201 goto fail;
4202 break;
4204 case wordbeg:
4205 DEBUG_PRINT1 ("EXECUTING wordbeg.\n");
4206 if (WORDCHAR_P (d) && (AT_STRINGS_BEG (d) || !WORDCHAR_P (d - 1)))
4207 break;
4208 goto fail;
4210 case wordend:
4211 DEBUG_PRINT1 ("EXECUTING wordend.\n");
4212 if (!AT_STRINGS_BEG (d) && WORDCHAR_P (d - 1)
4213 && (!WORDCHAR_P (d) || AT_STRINGS_END (d)))
4214 break;
4215 goto fail;
4217 #ifdef emacs
4218 #ifdef emacs19
4219 case before_dot:
4220 DEBUG_PRINT1 ("EXECUTING before_dot.\n");
4221 if (PTR_CHAR_POS ((unsigned char *) d) >= point)
4222 goto fail;
4223 break;
4225 case at_dot:
4226 DEBUG_PRINT1 ("EXECUTING at_dot.\n");
4227 if (PTR_CHAR_POS ((unsigned char *) d) != point)
4228 goto fail;
4229 break;
4231 case after_dot:
4232 DEBUG_PRINT1 ("EXECUTING after_dot.\n");
4233 if (PTR_CHAR_POS ((unsigned char *) d) <= point)
4234 goto fail;
4235 break;
4236 #else /* not emacs19 */
4237 case at_dot:
4238 DEBUG_PRINT1 ("EXECUTING at_dot.\n");
4239 if (PTR_CHAR_POS ((unsigned char *) d) + 1 != point)
4240 goto fail;
4241 break;
4242 #endif /* not emacs19 */
4244 case syntaxspec:
4245 DEBUG_PRINT2 ("EXECUTING syntaxspec %d.\n", mcnt);
4246 mcnt = *p++;
4247 goto matchsyntax;
4249 case wordchar:
4250 DEBUG_PRINT1 ("EXECUTING Emacs wordchar.\n");
4251 mcnt = (int) Sword;
4252 matchsyntax:
4253 PREFETCH ();
4254 if (SYNTAX (*d++) != (enum syntaxcode) mcnt)
4255 goto fail;
4256 SET_REGS_MATCHED ();
4257 break;
4259 case notsyntaxspec:
4260 DEBUG_PRINT2 ("EXECUTING notsyntaxspec %d.\n", mcnt);
4261 mcnt = *p++;
4262 goto matchnotsyntax;
4264 case notwordchar:
4265 DEBUG_PRINT1 ("EXECUTING Emacs notwordchar.\n");
4266 mcnt = (int) Sword;
4267 matchnotsyntax:
4268 PREFETCH ();
4269 if (SYNTAX (*d++) == (enum syntaxcode) mcnt)
4270 goto fail;
4271 SET_REGS_MATCHED ();
4272 break;
4274 #else /* not emacs */
4275 case wordchar:
4276 DEBUG_PRINT1 ("EXECUTING non-Emacs wordchar.\n");
4277 PREFETCH ();
4278 if (!WORDCHAR_P (d))
4279 goto fail;
4280 SET_REGS_MATCHED ();
4281 d++;
4282 break;
4284 case notwordchar:
4285 DEBUG_PRINT1 ("EXECUTING non-Emacs notwordchar.\n");
4286 PREFETCH ();
4287 if (WORDCHAR_P (d))
4288 goto fail;
4289 SET_REGS_MATCHED ();
4290 d++;
4291 break;
4292 #endif /* not emacs */
4294 default:
4295 abort ();
4297 continue; /* Successfully executed one pattern command; keep going. */
4300 /* We goto here if a matching operation fails. */
4301 fail:
4302 if (!FAIL_STACK_EMPTY ())
4303 { /* A restart point is known. Restore to that state. */
4304 DEBUG_PRINT1 ("\nFAIL:\n");
4305 POP_FAILURE_POINT (d, p,
4306 lowest_active_reg, highest_active_reg,
4307 regstart, regend, reg_info);
4309 /* If this failure point is a dummy, try the next one. */
4310 if (!p)
4311 goto fail;
4313 /* If we failed to the end of the pattern, don't examine *p. */
4314 assert (p <= pend);
4315 if (p < pend)
4317 boolean is_a_jump_n = false;
4319 /* If failed to a backwards jump that's part of a repetition
4320 loop, need to pop this failure point and use the next one. */
4321 switch ((re_opcode_t) *p)
4323 case jump_n:
4324 is_a_jump_n = true;
4325 case maybe_pop_jump:
4326 case pop_failure_jump:
4327 case jump:
4328 p1 = p + 1;
4329 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
4330 p1 += mcnt;
4332 if ((is_a_jump_n && (re_opcode_t) *p1 == succeed_n)
4333 || (!is_a_jump_n
4334 && (re_opcode_t) *p1 == on_failure_jump))
4335 goto fail;
4336 break;
4337 default:
4338 /* do nothing */ ;
4342 if (d >= string1 && d <= end1)
4343 dend = end_match_1;
4345 else
4346 break; /* Matching at this starting point really fails. */
4347 } /* for (;;) */
4349 if (best_regs_set)
4350 goto restore_best_regs;
4352 FREE_VARIABLES ();
4354 return -1; /* Failure to match. */
4355 } /* re_match_2 */
4357 /* Subroutine definitions for re_match_2. */
4360 /* We are passed P pointing to a register number after a start_memory.
4362 Return true if the pattern up to the corresponding stop_memory can
4363 match the empty string, and false otherwise.
4365 If we find the matching stop_memory, sets P to point to one past its number.
4366 Otherwise, sets P to an undefined byte less than or equal to END.
4368 We don't handle duplicates properly (yet). */
4370 static boolean
4371 group_match_null_string_p (p, end, reg_info)
4372 unsigned char **p, *end;
4373 register_info_type *reg_info;
4375 int mcnt;
4376 /* Point to after the args to the start_memory. */
4377 unsigned char *p1 = *p + 2;
4379 while (p1 < end)
4381 /* Skip over opcodes that can match nothing, and return true or
4382 false, as appropriate, when we get to one that can't, or to the
4383 matching stop_memory. */
4385 switch ((re_opcode_t) *p1)
4387 /* Could be either a loop or a series of alternatives. */
4388 case on_failure_jump:
4389 p1++;
4390 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
4392 /* If the next operation is not a jump backwards in the
4393 pattern. */
4395 if (mcnt >= 0)
4397 /* Go through the on_failure_jumps of the alternatives,
4398 seeing if any of the alternatives cannot match nothing.
4399 The last alternative starts with only a jump,
4400 whereas the rest start with on_failure_jump and end
4401 with a jump, e.g., here is the pattern for `a|b|c':
4403 /on_failure_jump/0/6/exactn/1/a/jump_past_alt/0/6
4404 /on_failure_jump/0/6/exactn/1/b/jump_past_alt/0/3
4405 /exactn/1/c
4407 So, we have to first go through the first (n-1)
4408 alternatives and then deal with the last one separately. */
4411 /* Deal with the first (n-1) alternatives, which start
4412 with an on_failure_jump (see above) that jumps to right
4413 past a jump_past_alt. */
4415 while ((re_opcode_t) p1[mcnt-3] == jump_past_alt)
4417 /* `mcnt' holds how many bytes long the alternative
4418 is, including the ending `jump_past_alt' and
4419 its number. */
4421 if (!alt_match_null_string_p (p1, p1 + mcnt - 3,
4422 reg_info))
4423 return false;
4425 /* Move to right after this alternative, including the
4426 jump_past_alt. */
4427 p1 += mcnt;
4429 /* Break if it's the beginning of an n-th alternative
4430 that doesn't begin with an on_failure_jump. */
4431 if ((re_opcode_t) *p1 != on_failure_jump)
4432 break;
4434 /* Still have to check that it's not an n-th
4435 alternative that starts with an on_failure_jump. */
4436 p1++;
4437 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
4438 if ((re_opcode_t) p1[mcnt-3] != jump_past_alt)
4440 /* Get to the beginning of the n-th alternative. */
4441 p1 -= 3;
4442 break;
4446 /* Deal with the last alternative: go back and get number
4447 of the `jump_past_alt' just before it. `mcnt' contains
4448 the length of the alternative. */
4449 EXTRACT_NUMBER (mcnt, p1 - 2);
4451 if (!alt_match_null_string_p (p1, p1 + mcnt, reg_info))
4452 return false;
4454 p1 += mcnt; /* Get past the n-th alternative. */
4455 } /* if mcnt > 0 */
4456 break;
4459 case stop_memory:
4460 assert (p1[1] == **p);
4461 *p = p1 + 2;
4462 return true;
4465 default:
4466 if (!common_op_match_null_string_p (&p1, end, reg_info))
4467 return false;
4469 } /* while p1 < end */
4471 return false;
4472 } /* group_match_null_string_p */
4475 /* Similar to group_match_null_string_p, but doesn't deal with alternatives:
4476 It expects P to be the first byte of a single alternative and END one
4477 byte past the last. The alternative can contain groups. */
4479 static boolean
4480 alt_match_null_string_p (p, end, reg_info)
4481 unsigned char *p, *end;
4482 register_info_type *reg_info;
4484 int mcnt;
4485 unsigned char *p1 = p;
4487 while (p1 < end)
4489 /* Skip over opcodes that can match nothing, and break when we get
4490 to one that can't. */
4492 switch ((re_opcode_t) *p1)
4494 /* It's a loop. */
4495 case on_failure_jump:
4496 p1++;
4497 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
4498 p1 += mcnt;
4499 break;
4501 default:
4502 if (!common_op_match_null_string_p (&p1, end, reg_info))
4503 return false;
4505 } /* while p1 < end */
4507 return true;
4508 } /* alt_match_null_string_p */
4511 /* Deals with the ops common to group_match_null_string_p and
4512 alt_match_null_string_p.
4514 Sets P to one after the op and its arguments, if any. */
4516 static boolean
4517 common_op_match_null_string_p (p, end, reg_info)
4518 unsigned char **p, *end;
4519 register_info_type *reg_info;
4521 int mcnt;
4522 boolean ret;
4523 int reg_no;
4524 unsigned char *p1 = *p;
4526 switch ((re_opcode_t) *p1++)
4528 case no_op:
4529 case begline:
4530 case endline:
4531 case begbuf:
4532 case endbuf:
4533 case wordbeg:
4534 case wordend:
4535 case wordbound:
4536 case notwordbound:
4537 #ifdef emacs
4538 case before_dot:
4539 case at_dot:
4540 case after_dot:
4541 #endif
4542 break;
4544 case start_memory:
4545 reg_no = *p1;
4546 assert (reg_no > 0 && reg_no <= MAX_REGNUM);
4547 ret = group_match_null_string_p (&p1, end, reg_info);
4549 /* Have to set this here in case we're checking a group which
4550 contains a group and a back reference to it. */
4552 if (REG_MATCH_NULL_STRING_P (reg_info[reg_no]) == MATCH_NULL_UNSET_VALUE)
4553 REG_MATCH_NULL_STRING_P (reg_info[reg_no]) = ret;
4555 if (!ret)
4556 return false;
4557 break;
4559 /* If this is an optimized succeed_n for zero times, make the jump. */
4560 case jump:
4561 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
4562 if (mcnt >= 0)
4563 p1 += mcnt;
4564 else
4565 return false;
4566 break;
4568 case succeed_n:
4569 /* Get to the number of times to succeed. */
4570 p1 += 2;
4571 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
4573 if (mcnt == 0)
4575 p1 -= 4;
4576 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
4577 p1 += mcnt;
4579 else
4580 return false;
4581 break;
4583 case duplicate:
4584 if (!REG_MATCH_NULL_STRING_P (reg_info[*p1]))
4585 return false;
4586 break;
4588 case set_number_at:
4589 p1 += 4;
4591 default:
4592 /* All other opcodes mean we cannot match the empty string. */
4593 return false;
4596 *p = p1;
4597 return true;
4598 } /* common_op_match_null_string_p */
4601 /* Return zero if TRANSLATE[S1] and TRANSLATE[S2] are identical for LEN
4602 bytes; nonzero otherwise. */
4604 static int
4605 bcmp_translate (s1, s2, len, translate)
4606 unsigned char *s1, *s2;
4607 register int len;
4608 char *translate;
4610 register unsigned char *p1 = s1, *p2 = s2;
4611 while (len)
4613 if (translate[*p1++] != translate[*p2++]) return 1;
4614 len--;
4616 return 0;
4619 /* Entry points for GNU code. */
4621 /* re_compile_pattern is the GNU regular expression compiler: it
4622 compiles PATTERN (of length SIZE) and puts the result in BUFP.
4623 Returns 0 if the pattern was valid, otherwise an error string.
4625 Assumes the `allocated' (and perhaps `buffer') and `translate' fields
4626 are set in BUFP on entry.
4628 We call regex_compile to do the actual compilation. */
4630 const char *
4631 re_compile_pattern (pattern, length, bufp)
4632 const char *pattern;
4633 int length;
4634 struct re_pattern_buffer *bufp;
4636 reg_errcode_t ret;
4638 /* GNU code is written to assume at least RE_NREGS registers will be set
4639 (and at least one extra will be -1). */
4640 bufp->regs_allocated = REGS_UNALLOCATED;
4642 /* And GNU code determines whether or not to get register information
4643 by passing null for the REGS argument to re_match, etc., not by
4644 setting no_sub. */
4645 bufp->no_sub = 0;
4647 /* Match anchors at newline. */
4648 bufp->newline_anchor = 1;
4650 ret = regex_compile (pattern, length, re_syntax_options, bufp);
4652 return re_error_msg[(int) ret];
4655 /* Entry points compatible with 4.2 BSD regex library. We don't define
4656 them if this is an Emacs or POSIX compilation. */
4658 #if !defined (emacs) && !defined (_POSIX_SOURCE)
4660 /* BSD has one and only one pattern buffer. */
4661 static struct re_pattern_buffer re_comp_buf;
4663 char *
4664 re_comp (s)
4665 const char *s;
4667 reg_errcode_t ret;
4669 if (!s)
4671 if (!re_comp_buf.buffer)
4672 return "No previous regular expression";
4673 return 0;
4676 if (!re_comp_buf.buffer)
4678 re_comp_buf.buffer = (unsigned char *) malloc (200);
4679 if (re_comp_buf.buffer == NULL)
4680 return "Memory exhausted";
4681 re_comp_buf.allocated = 200;
4683 re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH);
4684 if (re_comp_buf.fastmap == NULL)
4685 return "Memory exhausted";
4688 /* Since `re_exec' always passes NULL for the `regs' argument, we
4689 don't need to initialize the pattern buffer fields which affect it. */
4691 /* Match anchors at newlines. */
4692 re_comp_buf.newline_anchor = 1;
4694 ret = regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
4696 /* Yes, we're discarding `const' here. */
4697 return (char *) re_error_msg[(int) ret];
4702 re_exec (s)
4703 const char *s;
4705 const int len = strlen (s);
4706 return
4707 0 <= re_search (&re_comp_buf, s, len, 0, len, (struct re_registers *) 0);
4709 #endif /* not emacs and not _POSIX_SOURCE */
4711 /* POSIX.2 functions. Don't define these for Emacs. */
4713 #ifndef emacs
4715 /* regcomp takes a regular expression as a string and compiles it.
4717 PREG is a regex_t *. We do not expect any fields to be initialized,
4718 since POSIX says we shouldn't. Thus, we set
4720 `buffer' to the compiled pattern;
4721 `used' to the length of the compiled pattern;
4722 `syntax' to RE_SYNTAX_POSIX_EXTENDED if the
4723 REG_EXTENDED bit in CFLAGS is set; otherwise, to
4724 RE_SYNTAX_POSIX_BASIC;
4725 `newline_anchor' to REG_NEWLINE being set in CFLAGS;
4726 `fastmap' and `fastmap_accurate' to zero;
4727 `re_nsub' to the number of subexpressions in PATTERN.
4729 PATTERN is the address of the pattern string.
4731 CFLAGS is a series of bits which affect compilation.
4733 If REG_EXTENDED is set, we use POSIX extended syntax; otherwise, we
4734 use POSIX basic syntax.
4736 If REG_NEWLINE is set, then . and [^...] don't match newline.
4737 Also, regexec will try a match beginning after every newline.
4739 If REG_ICASE is set, then we considers upper- and lowercase
4740 versions of letters to be equivalent when matching.
4742 If REG_NOSUB is set, then when PREG is passed to regexec, that
4743 routine will report only success or failure, and nothing about the
4744 registers.
4746 It returns 0 if it succeeds, nonzero if it doesn't. (See regex.h for
4747 the return codes and their meanings.) */
4750 regcomp (preg, pattern, cflags)
4751 regex_t *preg;
4752 const char *pattern;
4753 int cflags;
4755 reg_errcode_t ret;
4756 unsigned syntax
4757 = (cflags & REG_EXTENDED) ?
4758 RE_SYNTAX_POSIX_EXTENDED : RE_SYNTAX_POSIX_BASIC;
4760 /* regex_compile will allocate the space for the compiled pattern. */
4761 preg->buffer = 0;
4762 preg->allocated = 0;
4764 /* Don't bother to use a fastmap when searching. This simplifies the
4765 REG_NEWLINE case: if we used a fastmap, we'd have to put all the
4766 characters after newlines into the fastmap. This way, we just try
4767 every character. */
4768 preg->fastmap = 0;
4770 if (cflags & REG_ICASE)
4772 unsigned i;
4774 preg->translate = (char *) malloc (CHAR_SET_SIZE);
4775 if (preg->translate == NULL)
4776 return (int) REG_ESPACE;
4778 /* Map uppercase characters to corresponding lowercase ones. */
4779 for (i = 0; i < CHAR_SET_SIZE; i++)
4780 preg->translate[i] = ISUPPER (i) ? tolower (i) : i;
4782 else
4783 preg->translate = NULL;
4785 /* If REG_NEWLINE is set, newlines are treated differently. */
4786 if (cflags & REG_NEWLINE)
4787 { /* REG_NEWLINE implies neither . nor [^...] match newline. */
4788 syntax &= ~RE_DOT_NEWLINE;
4789 syntax |= RE_HAT_LISTS_NOT_NEWLINE;
4790 /* It also changes the matching behavior. */
4791 preg->newline_anchor = 1;
4793 else
4794 preg->newline_anchor = 0;
4796 preg->no_sub = !!(cflags & REG_NOSUB);
4798 /* POSIX says a null character in the pattern terminates it, so we
4799 can use strlen here in compiling the pattern. */
4800 ret = regex_compile (pattern, strlen (pattern), syntax, preg);
4802 /* POSIX doesn't distinguish between an unmatched open-group and an
4803 unmatched close-group: both are REG_EPAREN. */
4804 if (ret == REG_ERPAREN) ret = REG_EPAREN;
4806 return (int) ret;
4810 /* regexec searches for a given pattern, specified by PREG, in the
4811 string STRING.
4813 If NMATCH is zero or REG_NOSUB was set in the cflags argument to
4814 `regcomp', we ignore PMATCH. Otherwise, we assume PMATCH has at
4815 least NMATCH elements, and we set them to the offsets of the
4816 corresponding matched substrings.
4818 EFLAGS specifies `execution flags' which affect matching: if
4819 REG_NOTBOL is set, then ^ does not match at the beginning of the
4820 string; if REG_NOTEOL is set, then $ does not match at the end.
4822 We return 0 if we find a match and REG_NOMATCH if not. */
4825 regexec (preg, string, nmatch, pmatch, eflags)
4826 const regex_t *preg;
4827 const char *string;
4828 size_t nmatch;
4829 regmatch_t pmatch[];
4830 int eflags;
4832 int ret;
4833 struct re_registers regs;
4834 regex_t private_preg;
4835 int len = strlen (string);
4836 boolean want_reg_info = !preg->no_sub && nmatch > 0;
4838 private_preg = *preg;
4840 private_preg.not_bol = !!(eflags & REG_NOTBOL);
4841 private_preg.not_eol = !!(eflags & REG_NOTEOL);
4843 /* The user has told us exactly how many registers to return
4844 information about, via `nmatch'. We have to pass that on to the
4845 matching routines. */
4846 private_preg.regs_allocated = REGS_FIXED;
4848 if (want_reg_info)
4850 regs.num_regs = nmatch;
4851 regs.start = TALLOC (nmatch, regoff_t);
4852 regs.end = TALLOC (nmatch, regoff_t);
4853 if (regs.start == NULL || regs.end == NULL)
4854 return (int) REG_NOMATCH;
4857 /* Perform the searching operation. */
4858 ret = re_search (&private_preg, string, len,
4859 /* start: */ 0, /* range: */ len,
4860 want_reg_info ? &regs : (struct re_registers *) 0);
4862 /* Copy the register information to the POSIX structure. */
4863 if (want_reg_info)
4865 if (ret >= 0)
4867 unsigned r;
4869 for (r = 0; r < nmatch; r++)
4871 pmatch[r].rm_so = regs.start[r];
4872 pmatch[r].rm_eo = regs.end[r];
4876 /* If we needed the temporary register info, free the space now. */
4877 free (regs.start);
4878 free (regs.end);
4881 /* We want zero return to mean success, unlike `re_search'. */
4882 return ret >= 0 ? (int) REG_NOERROR : (int) REG_NOMATCH;
4886 /* Returns a message corresponding to an error code, ERRCODE, returned
4887 from either regcomp or regexec. We don't use PREG here. */
4889 size_t
4890 regerror (errcode, preg, errbuf, errbuf_size)
4891 int errcode;
4892 const regex_t *preg;
4893 char *errbuf;
4894 size_t errbuf_size;
4896 const char *msg;
4897 size_t msg_size;
4899 if (errcode < 0
4900 || errcode >= (sizeof (re_error_msg) / sizeof (re_error_msg[0])))
4901 /* Only error codes returned by the rest of the code should be passed
4902 to this routine. If we are given anything else, or if other regex
4903 code generates an invalid error code, then the program has a bug.
4904 Dump core so we can fix it. */
4905 abort ();
4907 msg = re_error_msg[errcode];
4909 /* POSIX doesn't require that we do anything in this case, but why
4910 not be nice. */
4911 if (! msg)
4912 msg = "Success";
4914 msg_size = strlen (msg) + 1; /* Includes the null. */
4916 if (errbuf_size != 0)
4918 if (msg_size > errbuf_size)
4920 strncpy (errbuf, msg, errbuf_size - 1);
4921 errbuf[errbuf_size - 1] = 0;
4923 else
4924 strcpy (errbuf, msg);
4927 return msg_size;
4931 /* Free dynamically allocated space used by PREG. */
4933 void
4934 regfree (preg)
4935 regex_t *preg;
4937 if (preg->buffer != NULL)
4938 free (preg->buffer);
4939 preg->buffer = NULL;
4941 preg->allocated = 0;
4942 preg->used = 0;
4944 if (preg->fastmap != NULL)
4945 free (preg->fastmap);
4946 preg->fastmap = NULL;
4947 preg->fastmap_accurate = 0;
4949 if (preg->translate != NULL)
4950 free (preg->translate);
4951 preg->translate = NULL;
4954 #endif /* not emacs */
4957 Local variables:
4958 make-backup-files: t
4959 version-control: t
4960 trim-versions-without-asking: nil
4961 End:
4963 #endif