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