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