Improve of file-local-name use in vc-git-checkin
[emacs.git] / src / regex.c
blob240a91f2ba83e69a2a9ff184e14f9d8bbd233a7e
1 /* Extended regular expression matching and search library, version
2 0.12. (Implements POSIX draft P1003.2/D11.2, except for some of the
3 internationalization features.)
5 Copyright (C) 1993-2017 Free Software Foundation, Inc.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 /* TODO:
21 - structure the opcode space into opcode+flag.
22 - merge with glibc's regex.[ch].
23 - replace (succeed_n + jump_n + set_number_at) with something that doesn't
24 need to modify the compiled regexp so that re_match can be reentrant.
25 - get rid of on_failure_jump_smart by doing the optimization in re_comp
26 rather than at run-time, so that re_match can be reentrant.
29 /* AIX requires this to be the first thing in the file. */
30 #if defined _AIX && !defined REGEX_MALLOC
31 #pragma alloca
32 #endif
34 /* Ignore some GCC warnings for now. This section should go away
35 once the Emacs and Gnulib regex code is merged. */
36 #if 4 < __GNUC__ + (5 <= __GNUC_MINOR__) || defined __clang__
37 # pragma GCC diagnostic ignored "-Wstrict-overflow"
38 # ifndef emacs
39 # pragma GCC diagnostic ignored "-Wunused-function"
40 # pragma GCC diagnostic ignored "-Wunused-macros"
41 # pragma GCC diagnostic ignored "-Wunused-result"
42 # pragma GCC diagnostic ignored "-Wunused-variable"
43 # endif
44 #endif
46 #if 4 < __GNUC__ + (6 <= __GNUC_MINOR__) && ! defined __clang__
47 # pragma GCC diagnostic ignored "-Wunused-but-set-variable"
48 #endif
50 #include <config.h>
52 #include <stddef.h>
53 #include <stdlib.h>
55 #ifdef emacs
56 /* We need this for `regex.h', and perhaps for the Emacs include files. */
57 # include <sys/types.h>
58 #endif
60 /* Whether to use ISO C Amendment 1 wide char functions.
61 Those should not be used for Emacs since it uses its own. */
62 #if defined _LIBC
63 #define WIDE_CHAR_SUPPORT 1
64 #else
65 #define WIDE_CHAR_SUPPORT \
66 (HAVE_WCTYPE_H && HAVE_WCHAR_H && HAVE_BTOWC && !emacs)
67 #endif
69 /* For platform which support the ISO C amendment 1 functionality we
70 support user defined character classes. */
71 #if WIDE_CHAR_SUPPORT
72 /* Solaris 2.5 has a bug: <wchar.h> must be included before <wctype.h>. */
73 # include <wchar.h>
74 # include <wctype.h>
75 #endif
77 #ifdef _LIBC
78 /* We have to keep the namespace clean. */
79 # define regfree(preg) __regfree (preg)
80 # define regexec(pr, st, nm, pm, ef) __regexec (pr, st, nm, pm, ef)
81 # define regcomp(preg, pattern, cflags) __regcomp (preg, pattern, cflags)
82 # define regerror(err_code, preg, errbuf, errbuf_size) \
83 __regerror (err_code, preg, errbuf, errbuf_size)
84 # define re_set_registers(bu, re, nu, st, en) \
85 __re_set_registers (bu, re, nu, st, en)
86 # define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \
87 __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
88 # define re_match(bufp, string, size, pos, regs) \
89 __re_match (bufp, string, size, pos, regs)
90 # define re_search(bufp, string, size, startpos, range, regs) \
91 __re_search (bufp, string, size, startpos, range, regs)
92 # define re_compile_pattern(pattern, length, bufp) \
93 __re_compile_pattern (pattern, length, bufp)
94 # define re_set_syntax(syntax) __re_set_syntax (syntax)
95 # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \
96 __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
97 # define re_compile_fastmap(bufp) __re_compile_fastmap (bufp)
99 /* Make sure we call libc's function even if the user overrides them. */
100 # define btowc __btowc
101 # define iswctype __iswctype
102 # define wctype __wctype
104 # define WEAK_ALIAS(a,b) weak_alias (a, b)
106 /* We are also using some library internals. */
107 # include <locale/localeinfo.h>
108 # include <locale/elem-hash.h>
109 # include <langinfo.h>
110 #else
111 # define WEAK_ALIAS(a,b)
112 #endif
114 /* This is for other GNU distributions with internationalized messages. */
115 #if HAVE_LIBINTL_H || defined _LIBC
116 # include <libintl.h>
117 #else
118 # define gettext(msgid) (msgid)
119 #endif
121 #ifndef gettext_noop
122 /* This define is so xgettext can find the internationalizable
123 strings. */
124 # define gettext_noop(String) String
125 #endif
127 /* The `emacs' switch turns on certain matching commands
128 that make sense only in Emacs. */
129 #ifdef emacs
131 # include "lisp.h"
132 # include "character.h"
133 # include "buffer.h"
135 # include "syntax.h"
136 # include "category.h"
138 /* Make syntax table lookup grant data in gl_state. */
139 # define SYNTAX(c) syntax_property (c, 1)
141 # ifdef malloc
142 # undef malloc
143 # endif
144 # define malloc xmalloc
145 # ifdef realloc
146 # undef realloc
147 # endif
148 # define realloc xrealloc
149 # ifdef free
150 # undef free
151 # endif
152 # define free xfree
154 /* Converts the pointer to the char to BEG-based offset from the start. */
155 # define PTR_TO_OFFSET(d) POS_AS_IN_BUFFER (POINTER_TO_OFFSET (d))
156 /* Strings are 0-indexed, buffers are 1-indexed; we pun on the boolean
157 result to get the right base index. */
158 # define POS_AS_IN_BUFFER(p) ((p) + (NILP (re_match_object) || BUFFERP (re_match_object)))
160 # define RE_MULTIBYTE_P(bufp) ((bufp)->multibyte)
161 # define RE_TARGET_MULTIBYTE_P(bufp) ((bufp)->target_multibyte)
162 # define RE_STRING_CHAR(p, multibyte) \
163 (multibyte ? (STRING_CHAR (p)) : (*(p)))
164 # define RE_STRING_CHAR_AND_LENGTH(p, len, multibyte) \
165 (multibyte ? (STRING_CHAR_AND_LENGTH (p, len)) : ((len) = 1, *(p)))
167 # define RE_CHAR_TO_MULTIBYTE(c) UNIBYTE_TO_CHAR (c)
169 # define RE_CHAR_TO_UNIBYTE(c) CHAR_TO_BYTE_SAFE (c)
171 /* Set C a (possibly converted to multibyte) character before P. P
172 points into a string which is the virtual concatenation of STR1
173 (which ends at END1) or STR2 (which ends at END2). */
174 # define GET_CHAR_BEFORE_2(c, p, str1, end1, str2, end2) \
175 do { \
176 if (target_multibyte) \
178 re_char *dtemp = (p) == (str2) ? (end1) : (p); \
179 re_char *dlimit = ((p) > (str2) && (p) <= (end2)) ? (str2) : (str1); \
180 while (dtemp-- > dlimit && !CHAR_HEAD_P (*dtemp)); \
181 c = STRING_CHAR (dtemp); \
183 else \
185 (c = ((p) == (str2) ? (end1) : (p))[-1]); \
186 (c) = RE_CHAR_TO_MULTIBYTE (c); \
188 } while (0)
190 /* Set C a (possibly converted to multibyte) character at P, and set
191 LEN to the byte length of that character. */
192 # define GET_CHAR_AFTER(c, p, len) \
193 do { \
194 if (target_multibyte) \
195 (c) = STRING_CHAR_AND_LENGTH (p, len); \
196 else \
198 (c) = *p; \
199 len = 1; \
200 (c) = RE_CHAR_TO_MULTIBYTE (c); \
202 } while (0)
204 #else /* not emacs */
206 /* If we are not linking with Emacs proper,
207 we can't use the relocating allocator
208 even if config.h says that we can. */
209 # undef REL_ALLOC
211 # include <unistd.h>
213 /* When used in Emacs's lib-src, we need xmalloc and xrealloc. */
215 static void *
216 xmalloc (size_t size)
218 void *val = malloc (size);
219 if (!val && size)
221 write (STDERR_FILENO, "virtual memory exhausted\n", 25);
222 exit (1);
224 return val;
227 static void *
228 xrealloc (void *block, size_t size)
230 void *val;
231 /* We must call malloc explicitly when BLOCK is 0, since some
232 reallocs don't do this. */
233 if (! block)
234 val = malloc (size);
235 else
236 val = realloc (block, size);
237 if (!val && size)
239 write (STDERR_FILENO, "virtual memory exhausted\n", 25);
240 exit (1);
242 return val;
245 # ifdef malloc
246 # undef malloc
247 # endif
248 # define malloc xmalloc
249 # ifdef realloc
250 # undef realloc
251 # endif
252 # define realloc xrealloc
254 # include <stdbool.h>
255 # include <string.h>
257 /* Define the syntax stuff for \<, \>, etc. */
259 /* Sword must be nonzero for the wordchar pattern commands in re_match_2. */
260 enum syntaxcode { Swhitespace = 0, Sword = 1, Ssymbol = 2 };
262 /* Dummy macros for non-Emacs environments. */
263 # define MAX_MULTIBYTE_LENGTH 1
264 # define RE_MULTIBYTE_P(x) 0
265 # define RE_TARGET_MULTIBYTE_P(x) 0
266 # define WORD_BOUNDARY_P(c1, c2) (0)
267 # define BYTES_BY_CHAR_HEAD(p) (1)
268 # define PREV_CHAR_BOUNDARY(p, limit) ((p)--)
269 # define STRING_CHAR(p) (*(p))
270 # define RE_STRING_CHAR(p, multibyte) STRING_CHAR (p)
271 # define CHAR_STRING(c, s) (*(s) = (c), 1)
272 # define STRING_CHAR_AND_LENGTH(p, actual_len) ((actual_len) = 1, *(p))
273 # define RE_STRING_CHAR_AND_LENGTH(p, len, multibyte) STRING_CHAR_AND_LENGTH (p, len)
274 # define RE_CHAR_TO_MULTIBYTE(c) (c)
275 # define RE_CHAR_TO_UNIBYTE(c) (c)
276 # define GET_CHAR_BEFORE_2(c, p, str1, end1, str2, end2) \
277 (c = ((p) == (str2) ? *((end1) - 1) : *((p) - 1)))
278 # define GET_CHAR_AFTER(c, p, len) \
279 (c = *p, len = 1)
280 # define CHAR_BYTE8_P(c) (0)
281 # define CHAR_LEADING_CODE(c) (c)
283 #endif /* not emacs */
285 #ifndef RE_TRANSLATE
286 # define RE_TRANSLATE(TBL, C) ((unsigned char)(TBL)[C])
287 # define RE_TRANSLATE_P(TBL) (TBL)
288 #endif
290 /* Get the interface, including the syntax bits. */
291 #include "regex.h"
293 /* isalpha etc. are used for the character classes. */
294 #include <ctype.h>
296 #ifdef emacs
298 /* 1 if C is an ASCII character. */
299 # define IS_REAL_ASCII(c) ((c) < 0200)
301 /* 1 if C is a unibyte character. */
302 # define ISUNIBYTE(c) (SINGLE_BYTE_CHAR_P ((c)))
304 /* The Emacs definitions should not be directly affected by locales. */
306 /* In Emacs, these are only used for single-byte characters. */
307 # define ISDIGIT(c) ((c) >= '0' && (c) <= '9')
308 # define ISCNTRL(c) ((c) < ' ')
309 # define ISXDIGIT(c) (((c) >= '0' && (c) <= '9') \
310 || ((c) >= 'a' && (c) <= 'f') \
311 || ((c) >= 'A' && (c) <= 'F'))
313 /* The rest must handle multibyte characters. */
315 # define ISBLANK(c) (IS_REAL_ASCII (c) \
316 ? ((c) == ' ' || (c) == '\t') \
317 : blankp (c))
319 # define ISGRAPH(c) (SINGLE_BYTE_CHAR_P (c) \
320 ? (c) > ' ' && !((c) >= 0177 && (c) <= 0240) \
321 : graphicp (c))
323 # define ISPRINT(c) (SINGLE_BYTE_CHAR_P (c) \
324 ? (c) >= ' ' && !((c) >= 0177 && (c) <= 0237) \
325 : printablep (c))
327 # define ISALNUM(c) (IS_REAL_ASCII (c) \
328 ? (((c) >= 'a' && (c) <= 'z') \
329 || ((c) >= 'A' && (c) <= 'Z') \
330 || ((c) >= '0' && (c) <= '9')) \
331 : alphanumericp (c))
333 # define ISALPHA(c) (IS_REAL_ASCII (c) \
334 ? (((c) >= 'a' && (c) <= 'z') \
335 || ((c) >= 'A' && (c) <= 'Z')) \
336 : alphabeticp (c))
338 # define ISLOWER(c) lowercasep (c)
340 # define ISPUNCT(c) (IS_REAL_ASCII (c) \
341 ? ((c) > ' ' && (c) < 0177 \
342 && !(((c) >= 'a' && (c) <= 'z') \
343 || ((c) >= 'A' && (c) <= 'Z') \
344 || ((c) >= '0' && (c) <= '9'))) \
345 : SYNTAX (c) != Sword)
347 # define ISSPACE(c) (SYNTAX (c) == Swhitespace)
349 # define ISUPPER(c) uppercasep (c)
351 # define ISWORD(c) (SYNTAX (c) == Sword)
353 #else /* not emacs */
355 /* 1 if C is an ASCII character. */
356 # define IS_REAL_ASCII(c) ((c) < 0200)
358 /* This distinction is not meaningful, except in Emacs. */
359 # define ISUNIBYTE(c) 1
361 # ifdef isblank
362 # define ISBLANK(c) isblank (c)
363 # else
364 # define ISBLANK(c) ((c) == ' ' || (c) == '\t')
365 # endif
366 # ifdef isgraph
367 # define ISGRAPH(c) isgraph (c)
368 # else
369 # define ISGRAPH(c) (isprint (c) && !isspace (c))
370 # endif
372 /* Solaris defines ISPRINT so we must undefine it first. */
373 # undef ISPRINT
374 # define ISPRINT(c) isprint (c)
375 # define ISDIGIT(c) isdigit (c)
376 # define ISALNUM(c) isalnum (c)
377 # define ISALPHA(c) isalpha (c)
378 # define ISCNTRL(c) iscntrl (c)
379 # define ISLOWER(c) islower (c)
380 # define ISPUNCT(c) ispunct (c)
381 # define ISSPACE(c) isspace (c)
382 # define ISUPPER(c) isupper (c)
383 # define ISXDIGIT(c) isxdigit (c)
385 # define ISWORD(c) ISALPHA (c)
387 # ifdef _tolower
388 # define TOLOWER(c) _tolower (c)
389 # else
390 # define TOLOWER(c) tolower (c)
391 # endif
393 /* How many characters in the character set. */
394 # define CHAR_SET_SIZE 256
396 # ifdef SYNTAX_TABLE
398 extern char *re_syntax_table;
400 # else /* not SYNTAX_TABLE */
402 static char re_syntax_table[CHAR_SET_SIZE];
404 static void
405 init_syntax_once (void)
407 register int c;
408 static int done = 0;
410 if (done)
411 return;
413 memset (re_syntax_table, 0, sizeof re_syntax_table);
415 for (c = 0; c < CHAR_SET_SIZE; ++c)
416 if (ISALNUM (c))
417 re_syntax_table[c] = Sword;
419 re_syntax_table['_'] = Ssymbol;
421 done = 1;
424 # endif /* not SYNTAX_TABLE */
426 # define SYNTAX(c) re_syntax_table[(c)]
428 #endif /* not emacs */
430 #define SIGN_EXTEND_CHAR(c) ((signed char) (c))
432 /* Should we use malloc or alloca? If REGEX_MALLOC is not defined, we
433 use `alloca' instead of `malloc'. This is because using malloc in
434 re_search* or re_match* could cause memory leaks when C-g is used
435 in Emacs (note that SAFE_ALLOCA could also call malloc, but does so
436 via `record_xmalloc' which uses `unwind_protect' to ensure the
437 memory is freed even in case of non-local exits); also, malloc is
438 slower and causes storage fragmentation. On the other hand, malloc
439 is more portable, and easier to debug.
441 Because we sometimes use alloca, some routines have to be macros,
442 not functions -- `alloca'-allocated space disappears at the end of the
443 function it is called in. */
445 #ifdef REGEX_MALLOC
447 # define REGEX_ALLOCATE malloc
448 # define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize)
449 # define REGEX_FREE free
451 #else /* not REGEX_MALLOC */
453 # ifdef emacs
454 /* This may be adjusted in main(), if the stack is successfully grown. */
455 ptrdiff_t emacs_re_safe_alloca = MAX_ALLOCA;
456 /* Like USE_SAFE_ALLOCA, but use emacs_re_safe_alloca. */
457 # define REGEX_USE_SAFE_ALLOCA \
458 ptrdiff_t sa_avail = emacs_re_safe_alloca; \
459 ptrdiff_t sa_count = SPECPDL_INDEX (); bool sa_must_free = false
461 # define REGEX_SAFE_FREE() SAFE_FREE ()
462 # define REGEX_ALLOCATE SAFE_ALLOCA
463 # else
464 # include <alloca.h>
465 # define REGEX_ALLOCATE alloca
466 # endif
468 /* Assumes a `char *destination' variable. */
469 # define REGEX_REALLOCATE(source, osize, nsize) \
470 (destination = REGEX_ALLOCATE (nsize), \
471 memcpy (destination, source, osize))
473 /* No need to do anything to free, after alloca. */
474 # define REGEX_FREE(arg) ((void)0) /* Do nothing! But inhibit gcc warning. */
476 #endif /* not REGEX_MALLOC */
478 #ifndef REGEX_USE_SAFE_ALLOCA
479 # define REGEX_USE_SAFE_ALLOCA ((void) 0)
480 # define REGEX_SAFE_FREE() ((void) 0)
481 #endif
483 /* Define how to allocate the failure stack. */
485 #if defined REL_ALLOC && defined REGEX_MALLOC
487 # define REGEX_ALLOCATE_STACK(size) \
488 r_alloc (&failure_stack_ptr, (size))
489 # define REGEX_REALLOCATE_STACK(source, osize, nsize) \
490 r_re_alloc (&failure_stack_ptr, (nsize))
491 # define REGEX_FREE_STACK(ptr) \
492 r_alloc_free (&failure_stack_ptr)
494 #else /* not using relocating allocator */
496 # define REGEX_ALLOCATE_STACK(size) REGEX_ALLOCATE (size)
497 # define REGEX_REALLOCATE_STACK(source, o, n) REGEX_REALLOCATE (source, o, n)
498 # define REGEX_FREE_STACK(ptr) REGEX_FREE (ptr)
500 #endif /* not using relocating allocator */
503 /* True if `size1' is non-NULL and PTR is pointing anywhere inside
504 `string1' or just past its end. This works if PTR is NULL, which is
505 a good thing. */
506 #define FIRST_STRING_P(ptr) \
507 (size1 && string1 <= (ptr) && (ptr) <= string1 + size1)
509 /* (Re)Allocate N items of type T using malloc, or fail. */
510 #define TALLOC(n, t) ((t *) malloc ((n) * sizeof (t)))
511 #define RETALLOC(addr, n, t) ((addr) = (t *) realloc (addr, (n) * sizeof (t)))
512 #define REGEX_TALLOC(n, t) ((t *) REGEX_ALLOCATE ((n) * sizeof (t)))
514 #define BYTEWIDTH 8 /* In bits. */
516 #ifndef emacs
517 # undef max
518 # undef min
519 # define max(a, b) ((a) > (b) ? (a) : (b))
520 # define min(a, b) ((a) < (b) ? (a) : (b))
521 #endif
523 /* Type of source-pattern and string chars. */
524 #ifdef _MSC_VER
525 typedef unsigned char re_char;
526 typedef const re_char const_re_char;
527 #else
528 typedef const unsigned char re_char;
529 typedef re_char const_re_char;
530 #endif
532 typedef char boolean;
534 static regoff_t re_match_2_internal (struct re_pattern_buffer *bufp,
535 re_char *string1, size_t size1,
536 re_char *string2, size_t size2,
537 ssize_t pos,
538 struct re_registers *regs,
539 ssize_t stop);
541 /* These are the command codes that appear in compiled regular
542 expressions. Some opcodes are followed by argument bytes. A
543 command code can specify any interpretation whatsoever for its
544 arguments. Zero bytes may appear in the compiled regular expression. */
546 typedef enum
548 no_op = 0,
550 /* Succeed right away--no more backtracking. */
551 succeed,
553 /* Followed by one byte giving n, then by n literal bytes. */
554 exactn,
556 /* Matches any (more or less) character. */
557 anychar,
559 /* Matches any one char belonging to specified set. First
560 following byte is number of bitmap bytes. Then come bytes
561 for a bitmap saying which chars are in. Bits in each byte
562 are ordered low-bit-first. A character is in the set if its
563 bit is 1. A character too large to have a bit in the map is
564 automatically not in the set.
566 If the length byte has the 0x80 bit set, then that stuff
567 is followed by a range table:
568 2 bytes of flags for character sets (low 8 bits, high 8 bits)
569 See RANGE_TABLE_WORK_BITS below.
570 2 bytes, the number of pairs that follow (upto 32767)
571 pairs, each 2 multibyte characters,
572 each multibyte character represented as 3 bytes. */
573 charset,
575 /* Same parameters as charset, but match any character that is
576 not one of those specified. */
577 charset_not,
579 /* Start remembering the text that is matched, for storing in a
580 register. Followed by one byte with the register number, in
581 the range 0 to one less than the pattern buffer's re_nsub
582 field. */
583 start_memory,
585 /* Stop remembering the text that is matched and store it in a
586 memory register. Followed by one byte with the register
587 number, in the range 0 to one less than `re_nsub' in the
588 pattern buffer. */
589 stop_memory,
591 /* Match a duplicate of something remembered. Followed by one
592 byte containing the register number. */
593 duplicate,
595 /* Fail unless at beginning of line. */
596 begline,
598 /* Fail unless at end of line. */
599 endline,
601 /* Succeeds if at beginning of buffer (if emacs) or at beginning
602 of string to be matched (if not). */
603 begbuf,
605 /* Analogously, for end of buffer/string. */
606 endbuf,
608 /* Followed by two byte relative address to which to jump. */
609 jump,
611 /* Followed by two-byte relative address of place to resume at
612 in case of failure. */
613 on_failure_jump,
615 /* Like on_failure_jump, but pushes a placeholder instead of the
616 current string position when executed. */
617 on_failure_keep_string_jump,
619 /* Just like `on_failure_jump', except that it checks that we
620 don't get stuck in an infinite loop (matching an empty string
621 indefinitely). */
622 on_failure_jump_loop,
624 /* Just like `on_failure_jump_loop', except that it checks for
625 a different kind of loop (the kind that shows up with non-greedy
626 operators). This operation has to be immediately preceded
627 by a `no_op'. */
628 on_failure_jump_nastyloop,
630 /* A smart `on_failure_jump' used for greedy * and + operators.
631 It analyzes the loop before which it is put and if the
632 loop does not require backtracking, it changes itself to
633 `on_failure_keep_string_jump' and short-circuits the loop,
634 else it just defaults to changing itself into `on_failure_jump'.
635 It assumes that it is pointing to just past a `jump'. */
636 on_failure_jump_smart,
638 /* Followed by two-byte relative address and two-byte number n.
639 After matching N times, jump to the address upon failure.
640 Does not work if N starts at 0: use on_failure_jump_loop
641 instead. */
642 succeed_n,
644 /* Followed by two-byte relative address, and two-byte number n.
645 Jump to the address N times, then fail. */
646 jump_n,
648 /* Set the following two-byte relative address to the
649 subsequent two-byte number. The address *includes* the two
650 bytes of number. */
651 set_number_at,
653 wordbeg, /* Succeeds if at word beginning. */
654 wordend, /* Succeeds if at word end. */
656 wordbound, /* Succeeds if at a word boundary. */
657 notwordbound, /* Succeeds if not at a word boundary. */
659 symbeg, /* Succeeds if at symbol beginning. */
660 symend, /* Succeeds if at symbol end. */
662 /* Matches any character whose syntax is specified. Followed by
663 a byte which contains a syntax code, e.g., Sword. */
664 syntaxspec,
666 /* Matches any character whose syntax is not that specified. */
667 notsyntaxspec
669 #ifdef emacs
670 , at_dot, /* Succeeds if at point. */
672 /* Matches any character whose category-set contains the specified
673 category. The operator is followed by a byte which contains a
674 category code (mnemonic ASCII character). */
675 categoryspec,
677 /* Matches any character whose category-set does not contain the
678 specified category. The operator is followed by a byte which
679 contains the category code (mnemonic ASCII character). */
680 notcategoryspec
681 #endif /* emacs */
682 } re_opcode_t;
684 /* Common operations on the compiled pattern. */
686 /* Store NUMBER in two contiguous bytes starting at DESTINATION. */
688 #define STORE_NUMBER(destination, number) \
689 do { \
690 (destination)[0] = (number) & 0377; \
691 (destination)[1] = (number) >> 8; \
692 } while (0)
694 /* Same as STORE_NUMBER, except increment DESTINATION to
695 the byte after where the number is stored. Therefore, DESTINATION
696 must be an lvalue. */
698 #define STORE_NUMBER_AND_INCR(destination, number) \
699 do { \
700 STORE_NUMBER (destination, number); \
701 (destination) += 2; \
702 } while (0)
704 /* Put into DESTINATION a number stored in two contiguous bytes starting
705 at SOURCE. */
707 #define EXTRACT_NUMBER(destination, source) \
708 ((destination) = extract_number (source))
710 static int
711 extract_number (re_char *source)
713 unsigned leading_byte = SIGN_EXTEND_CHAR (source[1]);
714 return (leading_byte << 8) + source[0];
717 /* Same as EXTRACT_NUMBER, except increment SOURCE to after the number.
718 SOURCE must be an lvalue. */
720 #define EXTRACT_NUMBER_AND_INCR(destination, source) \
721 ((destination) = extract_number_and_incr (&source))
723 static int
724 extract_number_and_incr (re_char **source)
726 int num = extract_number (*source);
727 *source += 2;
728 return num;
731 /* Store a multibyte character in three contiguous bytes starting
732 DESTINATION, and increment DESTINATION to the byte after where the
733 character is stored. Therefore, DESTINATION must be an lvalue. */
735 #define STORE_CHARACTER_AND_INCR(destination, character) \
736 do { \
737 (destination)[0] = (character) & 0377; \
738 (destination)[1] = ((character) >> 8) & 0377; \
739 (destination)[2] = (character) >> 16; \
740 (destination) += 3; \
741 } while (0)
743 /* Put into DESTINATION a character stored in three contiguous bytes
744 starting at SOURCE. */
746 #define EXTRACT_CHARACTER(destination, source) \
747 do { \
748 (destination) = ((source)[0] \
749 | ((source)[1] << 8) \
750 | ((source)[2] << 16)); \
751 } while (0)
754 /* Macros for charset. */
756 /* Size of bitmap of charset P in bytes. P is a start of charset,
757 i.e. *P is (re_opcode_t) charset or (re_opcode_t) charset_not. */
758 #define CHARSET_BITMAP_SIZE(p) ((p)[1] & 0x7F)
760 /* Nonzero if charset P has range table. */
761 #define CHARSET_RANGE_TABLE_EXISTS_P(p) ((p)[1] & 0x80)
763 /* Return the address of range table of charset P. But not the start
764 of table itself, but the before where the number of ranges is
765 stored. `2 +' means to skip re_opcode_t and size of bitmap,
766 and the 2 bytes of flags at the start of the range table. */
767 #define CHARSET_RANGE_TABLE(p) (&(p)[4 + CHARSET_BITMAP_SIZE (p)])
769 #ifdef emacs
770 /* Extract the bit flags that start a range table. */
771 #define CHARSET_RANGE_TABLE_BITS(p) \
772 ((p)[2 + CHARSET_BITMAP_SIZE (p)] \
773 + (p)[3 + CHARSET_BITMAP_SIZE (p)] * 0x100)
774 #endif
776 /* Return the address of end of RANGE_TABLE. COUNT is number of
777 ranges (which is a pair of (start, end)) in the RANGE_TABLE. `* 2'
778 is start of range and end of range. `* 3' is size of each start
779 and end. */
780 #define CHARSET_RANGE_TABLE_END(range_table, count) \
781 ((range_table) + (count) * 2 * 3)
783 /* If DEBUG is defined, Regex prints many voluminous messages about what
784 it is doing (if the variable `debug' is nonzero). If linked with the
785 main program in `iregex.c', you can enter patterns and strings
786 interactively. And if linked with the main program in `main.c' and
787 the other test files, you can run the already-written tests. */
789 #ifdef DEBUG
791 /* We use standard I/O for debugging. */
792 # include <stdio.h>
794 /* It is useful to test things that ``must'' be true when debugging. */
795 # include <assert.h>
797 static int debug = -100000;
799 # define DEBUG_STATEMENT(e) e
800 # define DEBUG_PRINT(...) if (debug > 0) printf (__VA_ARGS__)
801 # define DEBUG_COMPILES_ARGUMENTS
802 # define DEBUG_PRINT_COMPILED_PATTERN(p, s, e) \
803 if (debug > 0) print_partial_compiled_pattern (s, e)
804 # define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2) \
805 if (debug > 0) print_double_string (w, s1, sz1, s2, sz2)
808 /* Print the fastmap in human-readable form. */
810 static void
811 print_fastmap (char *fastmap)
813 unsigned was_a_range = 0;
814 unsigned i = 0;
816 while (i < (1 << BYTEWIDTH))
818 if (fastmap[i++])
820 was_a_range = 0;
821 putchar (i - 1);
822 while (i < (1 << BYTEWIDTH) && fastmap[i])
824 was_a_range = 1;
825 i++;
827 if (was_a_range)
829 printf ("-");
830 putchar (i - 1);
834 putchar ('\n');
838 /* Print a compiled pattern string in human-readable form, starting at
839 the START pointer into it and ending just before the pointer END. */
841 static void
842 print_partial_compiled_pattern (re_char *start, re_char *end)
844 int mcnt, mcnt2;
845 re_char *p = start;
846 re_char *pend = end;
848 if (start == NULL)
850 fprintf (stderr, "(null)\n");
851 return;
854 /* Loop over pattern commands. */
855 while (p < pend)
857 fprintf (stderr, "%td:\t", p - start);
859 switch ((re_opcode_t) *p++)
861 case no_op:
862 fprintf (stderr, "/no_op");
863 break;
865 case succeed:
866 fprintf (stderr, "/succeed");
867 break;
869 case exactn:
870 mcnt = *p++;
871 fprintf (stderr, "/exactn/%d", mcnt);
874 fprintf (stderr, "/%c", *p++);
876 while (--mcnt);
877 break;
879 case start_memory:
880 fprintf (stderr, "/start_memory/%d", *p++);
881 break;
883 case stop_memory:
884 fprintf (stderr, "/stop_memory/%d", *p++);
885 break;
887 case duplicate:
888 fprintf (stderr, "/duplicate/%d", *p++);
889 break;
891 case anychar:
892 fprintf (stderr, "/anychar");
893 break;
895 case charset:
896 case charset_not:
898 register int c, last = -100;
899 register int in_range = 0;
900 int length = CHARSET_BITMAP_SIZE (p - 1);
901 int has_range_table = CHARSET_RANGE_TABLE_EXISTS_P (p - 1);
903 fprintf (stderr, "/charset [%s",
904 (re_opcode_t) *(p - 1) == charset_not ? "^" : "");
906 if (p + *p >= pend)
907 fprintf (stderr, " !extends past end of pattern! ");
909 for (c = 0; c < 256; c++)
910 if (c / 8 < length
911 && (p[1 + (c/8)] & (1 << (c % 8))))
913 /* Are we starting a range? */
914 if (last + 1 == c && ! in_range)
916 fprintf (stderr, "-");
917 in_range = 1;
919 /* Have we broken a range? */
920 else if (last + 1 != c && in_range)
922 fprintf (stderr, "%c", last);
923 in_range = 0;
926 if (! in_range)
927 fprintf (stderr, "%c", c);
929 last = c;
932 if (in_range)
933 fprintf (stderr, "%c", last);
935 fprintf (stderr, "]");
937 p += 1 + length;
939 if (has_range_table)
941 int count;
942 fprintf (stderr, "has-range-table");
944 /* ??? Should print the range table; for now, just skip it. */
945 p += 2; /* skip range table bits */
946 EXTRACT_NUMBER_AND_INCR (count, p);
947 p = CHARSET_RANGE_TABLE_END (p, count);
950 break;
952 case begline:
953 fprintf (stderr, "/begline");
954 break;
956 case endline:
957 fprintf (stderr, "/endline");
958 break;
960 case on_failure_jump:
961 EXTRACT_NUMBER_AND_INCR (mcnt, p);
962 fprintf (stderr, "/on_failure_jump to %td", p + mcnt - start);
963 break;
965 case on_failure_keep_string_jump:
966 EXTRACT_NUMBER_AND_INCR (mcnt, p);
967 fprintf (stderr, "/on_failure_keep_string_jump to %td",
968 p + mcnt - start);
969 break;
971 case on_failure_jump_nastyloop:
972 EXTRACT_NUMBER_AND_INCR (mcnt, p);
973 fprintf (stderr, "/on_failure_jump_nastyloop to %td",
974 p + mcnt - start);
975 break;
977 case on_failure_jump_loop:
978 EXTRACT_NUMBER_AND_INCR (mcnt, p);
979 fprintf (stderr, "/on_failure_jump_loop to %td",
980 p + mcnt - start);
981 break;
983 case on_failure_jump_smart:
984 EXTRACT_NUMBER_AND_INCR (mcnt, p);
985 fprintf (stderr, "/on_failure_jump_smart to %td",
986 p + mcnt - start);
987 break;
989 case jump:
990 EXTRACT_NUMBER_AND_INCR (mcnt, p);
991 fprintf (stderr, "/jump to %td", p + mcnt - start);
992 break;
994 case succeed_n:
995 EXTRACT_NUMBER_AND_INCR (mcnt, p);
996 EXTRACT_NUMBER_AND_INCR (mcnt2, p);
997 fprintf (stderr, "/succeed_n to %td, %d times",
998 p - 2 + mcnt - start, mcnt2);
999 break;
1001 case jump_n:
1002 EXTRACT_NUMBER_AND_INCR (mcnt, p);
1003 EXTRACT_NUMBER_AND_INCR (mcnt2, p);
1004 fprintf (stderr, "/jump_n to %td, %d times",
1005 p - 2 + mcnt - start, mcnt2);
1006 break;
1008 case set_number_at:
1009 EXTRACT_NUMBER_AND_INCR (mcnt, p);
1010 EXTRACT_NUMBER_AND_INCR (mcnt2, p);
1011 fprintf (stderr, "/set_number_at location %td to %d",
1012 p - 2 + mcnt - start, mcnt2);
1013 break;
1015 case wordbound:
1016 fprintf (stderr, "/wordbound");
1017 break;
1019 case notwordbound:
1020 fprintf (stderr, "/notwordbound");
1021 break;
1023 case wordbeg:
1024 fprintf (stderr, "/wordbeg");
1025 break;
1027 case wordend:
1028 fprintf (stderr, "/wordend");
1029 break;
1031 case symbeg:
1032 fprintf (stderr, "/symbeg");
1033 break;
1035 case symend:
1036 fprintf (stderr, "/symend");
1037 break;
1039 case syntaxspec:
1040 fprintf (stderr, "/syntaxspec");
1041 mcnt = *p++;
1042 fprintf (stderr, "/%d", mcnt);
1043 break;
1045 case notsyntaxspec:
1046 fprintf (stderr, "/notsyntaxspec");
1047 mcnt = *p++;
1048 fprintf (stderr, "/%d", mcnt);
1049 break;
1051 # ifdef emacs
1052 case at_dot:
1053 fprintf (stderr, "/at_dot");
1054 break;
1056 case categoryspec:
1057 fprintf (stderr, "/categoryspec");
1058 mcnt = *p++;
1059 fprintf (stderr, "/%d", mcnt);
1060 break;
1062 case notcategoryspec:
1063 fprintf (stderr, "/notcategoryspec");
1064 mcnt = *p++;
1065 fprintf (stderr, "/%d", mcnt);
1066 break;
1067 # endif /* emacs */
1069 case begbuf:
1070 fprintf (stderr, "/begbuf");
1071 break;
1073 case endbuf:
1074 fprintf (stderr, "/endbuf");
1075 break;
1077 default:
1078 fprintf (stderr, "?%d", *(p-1));
1081 fprintf (stderr, "\n");
1084 fprintf (stderr, "%td:\tend of pattern.\n", p - start);
1088 static void
1089 print_compiled_pattern (struct re_pattern_buffer *bufp)
1091 re_char *buffer = bufp->buffer;
1093 print_partial_compiled_pattern (buffer, buffer + bufp->used);
1094 printf ("%ld bytes used/%ld bytes allocated.\n",
1095 bufp->used, bufp->allocated);
1097 if (bufp->fastmap_accurate && bufp->fastmap)
1099 printf ("fastmap: ");
1100 print_fastmap (bufp->fastmap);
1103 printf ("re_nsub: %zu\t", bufp->re_nsub);
1104 printf ("regs_alloc: %d\t", bufp->regs_allocated);
1105 printf ("can_be_null: %d\t", bufp->can_be_null);
1106 printf ("no_sub: %d\t", bufp->no_sub);
1107 printf ("not_bol: %d\t", bufp->not_bol);
1108 printf ("not_eol: %d\t", bufp->not_eol);
1109 #ifndef emacs
1110 printf ("syntax: %lx\n", bufp->syntax);
1111 #endif
1112 fflush (stdout);
1113 /* Perhaps we should print the translate table? */
1117 static void
1118 print_double_string (re_char *where, re_char *string1, ssize_t size1,
1119 re_char *string2, ssize_t size2)
1121 ssize_t this_char;
1123 if (where == NULL)
1124 printf ("(null)");
1125 else
1127 if (FIRST_STRING_P (where))
1129 for (this_char = where - string1; this_char < size1; this_char++)
1130 putchar (string1[this_char]);
1132 where = string2;
1135 for (this_char = where - string2; this_char < size2; this_char++)
1136 putchar (string2[this_char]);
1140 #else /* not DEBUG */
1142 # undef assert
1143 # define assert(e)
1145 # define DEBUG_STATEMENT(e)
1146 # define DEBUG_PRINT(...)
1147 # define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)
1148 # define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)
1150 #endif /* not DEBUG */
1152 #ifndef emacs
1154 /* Set by `re_set_syntax' to the current regexp syntax to recognize. Can
1155 also be assigned to arbitrarily: each pattern buffer stores its own
1156 syntax, so it can be changed between regex compilations. */
1157 /* This has no initializer because initialized variables in Emacs
1158 become read-only after dumping. */
1159 reg_syntax_t re_syntax_options;
1162 /* Specify the precise syntax of regexps for compilation. This provides
1163 for compatibility for various utilities which historically have
1164 different, incompatible syntaxes.
1166 The argument SYNTAX is a bit mask comprised of the various bits
1167 defined in regex.h. We return the old syntax. */
1169 reg_syntax_t
1170 re_set_syntax (reg_syntax_t syntax)
1172 reg_syntax_t ret = re_syntax_options;
1174 re_syntax_options = syntax;
1175 return ret;
1177 WEAK_ALIAS (__re_set_syntax, re_set_syntax)
1179 #endif
1181 /* This table gives an error message for each of the error codes listed
1182 in regex.h. Obviously the order here has to be same as there.
1183 POSIX doesn't require that we do anything for REG_NOERROR,
1184 but why not be nice? */
1186 static const char *re_error_msgid[] =
1188 gettext_noop ("Success"), /* REG_NOERROR */
1189 gettext_noop ("No match"), /* REG_NOMATCH */
1190 gettext_noop ("Invalid regular expression"), /* REG_BADPAT */
1191 gettext_noop ("Invalid collation character"), /* REG_ECOLLATE */
1192 gettext_noop ("Invalid character class name"), /* REG_ECTYPE */
1193 gettext_noop ("Trailing backslash"), /* REG_EESCAPE */
1194 gettext_noop ("Invalid back reference"), /* REG_ESUBREG */
1195 gettext_noop ("Unmatched [ or [^"), /* REG_EBRACK */
1196 gettext_noop ("Unmatched ( or \\("), /* REG_EPAREN */
1197 gettext_noop ("Unmatched \\{"), /* REG_EBRACE */
1198 gettext_noop ("Invalid content of \\{\\}"), /* REG_BADBR */
1199 gettext_noop ("Invalid range end"), /* REG_ERANGE */
1200 gettext_noop ("Memory exhausted"), /* REG_ESPACE */
1201 gettext_noop ("Invalid preceding regular expression"), /* REG_BADRPT */
1202 gettext_noop ("Premature end of regular expression"), /* REG_EEND */
1203 gettext_noop ("Regular expression too big"), /* REG_ESIZE */
1204 gettext_noop ("Unmatched ) or \\)"), /* REG_ERPAREN */
1205 gettext_noop ("Range striding over charsets") /* REG_ERANGEX */
1208 /* Whether to allocate memory during matching. */
1210 /* Define MATCH_MAY_ALLOCATE to allow the searching and matching
1211 functions allocate memory for the failure stack and registers.
1212 Normally should be defined, because otherwise searching and
1213 matching routines will have much smaller memory resources at their
1214 disposal, and therefore might fail to handle complex regexps.
1215 Therefore undefine MATCH_MAY_ALLOCATE only in the following
1216 exceptional situations:
1218 . When running on a system where memory is at premium.
1219 . When alloca cannot be used at all, perhaps due to bugs in
1220 its implementation, or its being unavailable, or due to a
1221 very small stack size. This requires to define REGEX_MALLOC
1222 to use malloc instead, which in turn could lead to memory
1223 leaks if search is interrupted by a signal. (For these
1224 reasons, defining REGEX_MALLOC when building Emacs
1225 automatically undefines MATCH_MAY_ALLOCATE, but outside
1226 Emacs you may not care about memory leaks.) If you want to
1227 prevent the memory leaks, undefine MATCH_MAY_ALLOCATE.
1228 . When code that calls the searching and matching functions
1229 cannot allow memory allocation, for whatever reasons. */
1231 /* Normally, this is fine. */
1232 #define MATCH_MAY_ALLOCATE
1234 /* The match routines may not allocate if (1) they would do it with malloc
1235 and (2) it's not safe for them to use malloc.
1236 Note that if REL_ALLOC is defined, matching would not use malloc for the
1237 failure stack, but we would still use it for the register vectors;
1238 so REL_ALLOC should not affect this. */
1239 #if defined REGEX_MALLOC && defined emacs
1240 # undef MATCH_MAY_ALLOCATE
1241 #endif
1244 /* Failure stack declarations and macros; both re_compile_fastmap and
1245 re_match_2 use a failure stack. These have to be macros because of
1246 REGEX_ALLOCATE_STACK. */
1249 /* Approximate number of failure points for which to initially allocate space
1250 when matching. If this number is exceeded, we allocate more
1251 space, so it is not a hard limit. */
1252 #ifndef INIT_FAILURE_ALLOC
1253 # define INIT_FAILURE_ALLOC 20
1254 #endif
1256 /* Roughly the maximum number of failure points on the stack. Would be
1257 exactly that if always used TYPICAL_FAILURE_SIZE items each time we failed.
1258 This is a variable only so users of regex can assign to it; we never
1259 change it ourselves. We always multiply it by TYPICAL_FAILURE_SIZE
1260 before using it, so it should probably be a byte-count instead. */
1261 # if defined MATCH_MAY_ALLOCATE
1262 /* Note that 4400 was enough to cause a crash on Alpha OSF/1,
1263 whose default stack limit is 2mb. In order for a larger
1264 value to work reliably, you have to try to make it accord
1265 with the process stack limit. */
1266 size_t emacs_re_max_failures = 40000;
1267 # else
1268 size_t emacs_re_max_failures = 4000;
1269 # endif
1271 union fail_stack_elt
1273 re_char *pointer;
1274 /* This should be the biggest `int' that's no bigger than a pointer. */
1275 long integer;
1278 typedef union fail_stack_elt fail_stack_elt_t;
1280 typedef struct
1282 fail_stack_elt_t *stack;
1283 size_t size;
1284 size_t avail; /* Offset of next open position. */
1285 size_t frame; /* Offset of the cur constructed frame. */
1286 } fail_stack_type;
1288 #define FAIL_STACK_EMPTY() (fail_stack.frame == 0)
1291 /* Define macros to initialize and free the failure stack.
1292 Do `return -2' if the alloc fails. */
1294 #ifdef MATCH_MAY_ALLOCATE
1295 # define INIT_FAIL_STACK() \
1296 do { \
1297 fail_stack.stack = \
1298 REGEX_ALLOCATE_STACK (INIT_FAILURE_ALLOC * TYPICAL_FAILURE_SIZE \
1299 * sizeof (fail_stack_elt_t)); \
1301 if (fail_stack.stack == NULL) \
1302 return -2; \
1304 fail_stack.size = INIT_FAILURE_ALLOC; \
1305 fail_stack.avail = 0; \
1306 fail_stack.frame = 0; \
1307 } while (0)
1308 #else
1309 # define INIT_FAIL_STACK() \
1310 do { \
1311 fail_stack.avail = 0; \
1312 fail_stack.frame = 0; \
1313 } while (0)
1315 # define RETALLOC_IF(addr, n, t) \
1316 if (addr) RETALLOC((addr), (n), t); else (addr) = TALLOC ((n), t)
1317 #endif
1320 /* Double the size of FAIL_STACK, up to a limit
1321 which allows approximately `emacs_re_max_failures' items.
1323 Return 1 if succeeds, and 0 if either ran out of memory
1324 allocating space for it or it was already too large.
1326 REGEX_REALLOCATE_STACK requires `destination' be declared. */
1328 /* Factor to increase the failure stack size by
1329 when we increase it.
1330 This used to be 2, but 2 was too wasteful
1331 because the old discarded stacks added up to as much space
1332 were as ultimate, maximum-size stack. */
1333 #define FAIL_STACK_GROWTH_FACTOR 4
1335 #define GROW_FAIL_STACK(fail_stack) \
1336 (((fail_stack).size >= emacs_re_max_failures * TYPICAL_FAILURE_SIZE) \
1337 ? 0 \
1338 : ((fail_stack).stack \
1339 = REGEX_REALLOCATE_STACK ((fail_stack).stack, \
1340 (fail_stack).size * sizeof (fail_stack_elt_t), \
1341 min (emacs_re_max_failures * TYPICAL_FAILURE_SIZE, \
1342 ((fail_stack).size * FAIL_STACK_GROWTH_FACTOR)) \
1343 * sizeof (fail_stack_elt_t)), \
1345 (fail_stack).stack == NULL \
1346 ? 0 \
1347 : ((fail_stack).size \
1348 = (min (emacs_re_max_failures * TYPICAL_FAILURE_SIZE, \
1349 ((fail_stack).size * FAIL_STACK_GROWTH_FACTOR))), \
1350 1)))
1353 /* Push a pointer value onto the failure stack.
1354 Assumes the variable `fail_stack'. Probably should only
1355 be called from within `PUSH_FAILURE_POINT'. */
1356 #define PUSH_FAILURE_POINTER(item) \
1357 fail_stack.stack[fail_stack.avail++].pointer = (item)
1359 /* This pushes an integer-valued item onto the failure stack.
1360 Assumes the variable `fail_stack'. Probably should only
1361 be called from within `PUSH_FAILURE_POINT'. */
1362 #define PUSH_FAILURE_INT(item) \
1363 fail_stack.stack[fail_stack.avail++].integer = (item)
1365 /* These POP... operations complement the PUSH... operations.
1366 All assume that `fail_stack' is nonempty. */
1367 #define POP_FAILURE_POINTER() fail_stack.stack[--fail_stack.avail].pointer
1368 #define POP_FAILURE_INT() fail_stack.stack[--fail_stack.avail].integer
1370 /* Individual items aside from the registers. */
1371 #define NUM_NONREG_ITEMS 3
1373 /* Used to examine the stack (to detect infinite loops). */
1374 #define FAILURE_PAT(h) fail_stack.stack[(h) - 1].pointer
1375 #define FAILURE_STR(h) (fail_stack.stack[(h) - 2].pointer)
1376 #define NEXT_FAILURE_HANDLE(h) fail_stack.stack[(h) - 3].integer
1377 #define TOP_FAILURE_HANDLE() fail_stack.frame
1380 #define ENSURE_FAIL_STACK(space) \
1381 while (REMAINING_AVAIL_SLOTS <= space) { \
1382 if (!GROW_FAIL_STACK (fail_stack)) \
1383 return -2; \
1384 DEBUG_PRINT ("\n Doubled stack; size now: %zd\n", (fail_stack).size);\
1385 DEBUG_PRINT (" slots available: %zd\n", REMAINING_AVAIL_SLOTS);\
1388 /* Push register NUM onto the stack. */
1389 #define PUSH_FAILURE_REG(num) \
1390 do { \
1391 char *destination; \
1392 long n = num; \
1393 ENSURE_FAIL_STACK(3); \
1394 DEBUG_PRINT (" Push reg %ld (spanning %p -> %p)\n", \
1395 n, regstart[n], regend[n]); \
1396 PUSH_FAILURE_POINTER (regstart[n]); \
1397 PUSH_FAILURE_POINTER (regend[n]); \
1398 PUSH_FAILURE_INT (n); \
1399 } while (0)
1401 /* Change the counter's value to VAL, but make sure that it will
1402 be reset when backtracking. */
1403 #define PUSH_NUMBER(ptr,val) \
1404 do { \
1405 char *destination; \
1406 int c; \
1407 ENSURE_FAIL_STACK(3); \
1408 EXTRACT_NUMBER (c, ptr); \
1409 DEBUG_PRINT (" Push number %p = %d -> %d\n", ptr, c, val); \
1410 PUSH_FAILURE_INT (c); \
1411 PUSH_FAILURE_POINTER (ptr); \
1412 PUSH_FAILURE_INT (-1); \
1413 STORE_NUMBER (ptr, val); \
1414 } while (0)
1416 /* Pop a saved register off the stack. */
1417 #define POP_FAILURE_REG_OR_COUNT() \
1418 do { \
1419 long pfreg = POP_FAILURE_INT (); \
1420 if (pfreg == -1) \
1422 /* It's a counter. */ \
1423 /* Here, we discard `const', making re_match non-reentrant. */ \
1424 unsigned char *ptr = (unsigned char *) POP_FAILURE_POINTER (); \
1425 pfreg = POP_FAILURE_INT (); \
1426 STORE_NUMBER (ptr, pfreg); \
1427 DEBUG_PRINT (" Pop counter %p = %ld\n", ptr, pfreg); \
1429 else \
1431 regend[pfreg] = POP_FAILURE_POINTER (); \
1432 regstart[pfreg] = POP_FAILURE_POINTER (); \
1433 DEBUG_PRINT (" Pop reg %ld (spanning %p -> %p)\n", \
1434 pfreg, regstart[pfreg], regend[pfreg]); \
1436 } while (0)
1438 /* Check that we are not stuck in an infinite loop. */
1439 #define CHECK_INFINITE_LOOP(pat_cur, string_place) \
1440 do { \
1441 ssize_t failure = TOP_FAILURE_HANDLE (); \
1442 /* Check for infinite matching loops */ \
1443 while (failure > 0 \
1444 && (FAILURE_STR (failure) == string_place \
1445 || FAILURE_STR (failure) == NULL)) \
1447 assert (FAILURE_PAT (failure) >= bufp->buffer \
1448 && FAILURE_PAT (failure) <= bufp->buffer + bufp->used); \
1449 if (FAILURE_PAT (failure) == pat_cur) \
1451 cycle = 1; \
1452 break; \
1454 DEBUG_PRINT (" Other pattern: %p\n", FAILURE_PAT (failure)); \
1455 failure = NEXT_FAILURE_HANDLE(failure); \
1457 DEBUG_PRINT (" Other string: %p\n", FAILURE_STR (failure)); \
1458 } while (0)
1460 /* Push the information about the state we will need
1461 if we ever fail back to it.
1463 Requires variables fail_stack, regstart, regend and
1464 num_regs be declared. GROW_FAIL_STACK requires `destination' be
1465 declared.
1467 Does `return FAILURE_CODE' if runs out of memory. */
1469 #define PUSH_FAILURE_POINT(pattern, string_place) \
1470 do { \
1471 char *destination; \
1472 /* Must be int, so when we don't save any registers, the arithmetic \
1473 of 0 + -1 isn't done as unsigned. */ \
1475 DEBUG_STATEMENT (nfailure_points_pushed++); \
1476 DEBUG_PRINT ("\nPUSH_FAILURE_POINT:\n"); \
1477 DEBUG_PRINT (" Before push, next avail: %zd\n", (fail_stack).avail); \
1478 DEBUG_PRINT (" size: %zd\n", (fail_stack).size);\
1480 ENSURE_FAIL_STACK (NUM_NONREG_ITEMS); \
1482 DEBUG_PRINT ("\n"); \
1484 DEBUG_PRINT (" Push frame index: %zd\n", fail_stack.frame); \
1485 PUSH_FAILURE_INT (fail_stack.frame); \
1487 DEBUG_PRINT (" Push string %p: \"", string_place); \
1488 DEBUG_PRINT_DOUBLE_STRING (string_place, string1, size1, string2, size2);\
1489 DEBUG_PRINT ("\"\n"); \
1490 PUSH_FAILURE_POINTER (string_place); \
1492 DEBUG_PRINT (" Push pattern %p: ", pattern); \
1493 DEBUG_PRINT_COMPILED_PATTERN (bufp, pattern, pend); \
1494 PUSH_FAILURE_POINTER (pattern); \
1496 /* Close the frame by moving the frame pointer past it. */ \
1497 fail_stack.frame = fail_stack.avail; \
1498 } while (0)
1500 /* Estimate the size of data pushed by a typical failure stack entry.
1501 An estimate is all we need, because all we use this for
1502 is to choose a limit for how big to make the failure stack. */
1503 /* BEWARE, the value `20' is hard-coded in emacs.c:main(). */
1504 #define TYPICAL_FAILURE_SIZE 20
1506 /* How many items can still be added to the stack without overflowing it. */
1507 #define REMAINING_AVAIL_SLOTS ((fail_stack).size - (fail_stack).avail)
1510 /* Pops what PUSH_FAIL_STACK pushes.
1512 We restore into the parameters, all of which should be lvalues:
1513 STR -- the saved data position.
1514 PAT -- the saved pattern position.
1515 REGSTART, REGEND -- arrays of string positions.
1517 Also assumes the variables `fail_stack' and (if debugging), `bufp',
1518 `pend', `string1', `size1', `string2', and `size2'. */
1520 #define POP_FAILURE_POINT(str, pat) \
1521 do { \
1522 assert (!FAIL_STACK_EMPTY ()); \
1524 /* Remove failure points and point to how many regs pushed. */ \
1525 DEBUG_PRINT ("POP_FAILURE_POINT:\n"); \
1526 DEBUG_PRINT (" Before pop, next avail: %zd\n", fail_stack.avail); \
1527 DEBUG_PRINT (" size: %zd\n", fail_stack.size); \
1529 /* Pop the saved registers. */ \
1530 while (fail_stack.frame < fail_stack.avail) \
1531 POP_FAILURE_REG_OR_COUNT (); \
1533 pat = POP_FAILURE_POINTER (); \
1534 DEBUG_PRINT (" Popping pattern %p: ", pat); \
1535 DEBUG_PRINT_COMPILED_PATTERN (bufp, pat, pend); \
1537 /* If the saved string location is NULL, it came from an \
1538 on_failure_keep_string_jump opcode, and we want to throw away the \
1539 saved NULL, thus retaining our current position in the string. */ \
1540 str = POP_FAILURE_POINTER (); \
1541 DEBUG_PRINT (" Popping string %p: \"", str); \
1542 DEBUG_PRINT_DOUBLE_STRING (str, string1, size1, string2, size2); \
1543 DEBUG_PRINT ("\"\n"); \
1545 fail_stack.frame = POP_FAILURE_INT (); \
1546 DEBUG_PRINT (" Popping frame index: %zd\n", fail_stack.frame); \
1548 assert (fail_stack.avail >= 0); \
1549 assert (fail_stack.frame <= fail_stack.avail); \
1551 DEBUG_STATEMENT (nfailure_points_popped++); \
1552 } while (0) /* POP_FAILURE_POINT */
1556 /* Registers are set to a sentinel when they haven't yet matched. */
1557 #define REG_UNSET(e) ((e) == NULL)
1559 /* Subroutine declarations and macros for regex_compile. */
1561 static reg_errcode_t regex_compile (re_char *pattern, size_t size,
1562 #ifdef emacs
1563 bool posix_backtracking,
1564 const char *whitespace_regexp,
1565 #else
1566 reg_syntax_t syntax,
1567 #endif
1568 struct re_pattern_buffer *bufp);
1569 static void store_op1 (re_opcode_t op, unsigned char *loc, int arg);
1570 static void store_op2 (re_opcode_t op, unsigned char *loc, int arg1, int arg2);
1571 static void insert_op1 (re_opcode_t op, unsigned char *loc,
1572 int arg, unsigned char *end);
1573 static void insert_op2 (re_opcode_t op, unsigned char *loc,
1574 int arg1, int arg2, unsigned char *end);
1575 static boolean at_begline_loc_p (re_char *pattern, re_char *p,
1576 reg_syntax_t syntax);
1577 static boolean at_endline_loc_p (re_char *p, re_char *pend,
1578 reg_syntax_t syntax);
1579 static re_char *skip_one_char (re_char *p);
1580 static int analyze_first (re_char *p, re_char *pend,
1581 char *fastmap, const int multibyte);
1583 /* Fetch the next character in the uncompiled pattern, with no
1584 translation. */
1585 #define PATFETCH(c) \
1586 do { \
1587 int len; \
1588 if (p == pend) return REG_EEND; \
1589 c = RE_STRING_CHAR_AND_LENGTH (p, len, multibyte); \
1590 p += len; \
1591 } while (0)
1594 /* If `translate' is non-null, return translate[D], else just D. We
1595 cast the subscript to translate because some data is declared as
1596 `char *', to avoid warnings when a string constant is passed. But
1597 when we use a character as a subscript we must make it unsigned. */
1598 #ifndef TRANSLATE
1599 # define TRANSLATE(d) \
1600 (RE_TRANSLATE_P (translate) ? RE_TRANSLATE (translate, (d)) : (d))
1601 #endif
1604 /* Macros for outputting the compiled pattern into `buffer'. */
1606 /* If the buffer isn't allocated when it comes in, use this. */
1607 #define INIT_BUF_SIZE 32
1609 /* Make sure we have at least N more bytes of space in buffer. */
1610 #define GET_BUFFER_SPACE(n) \
1611 while ((size_t) (b - bufp->buffer + (n)) > bufp->allocated) \
1612 EXTEND_BUFFER ()
1614 /* Make sure we have one more byte of buffer space and then add C to it. */
1615 #define BUF_PUSH(c) \
1616 do { \
1617 GET_BUFFER_SPACE (1); \
1618 *b++ = (unsigned char) (c); \
1619 } while (0)
1622 /* Ensure we have two more bytes of buffer space and then append C1 and C2. */
1623 #define BUF_PUSH_2(c1, c2) \
1624 do { \
1625 GET_BUFFER_SPACE (2); \
1626 *b++ = (unsigned char) (c1); \
1627 *b++ = (unsigned char) (c2); \
1628 } while (0)
1631 /* Store a jump with opcode OP at LOC to location TO. We store a
1632 relative address offset by the three bytes the jump itself occupies. */
1633 #define STORE_JUMP(op, loc, to) \
1634 store_op1 (op, loc, (to) - (loc) - 3)
1636 /* Likewise, for a two-argument jump. */
1637 #define STORE_JUMP2(op, loc, to, arg) \
1638 store_op2 (op, loc, (to) - (loc) - 3, arg)
1640 /* Like `STORE_JUMP', but for inserting. Assume `b' is the buffer end. */
1641 #define INSERT_JUMP(op, loc, to) \
1642 insert_op1 (op, loc, (to) - (loc) - 3, b)
1644 /* Like `STORE_JUMP2', but for inserting. Assume `b' is the buffer end. */
1645 #define INSERT_JUMP2(op, loc, to, arg) \
1646 insert_op2 (op, loc, (to) - (loc) - 3, arg, b)
1649 /* This is not an arbitrary limit: the arguments which represent offsets
1650 into the pattern are two bytes long. So if 2^15 bytes turns out to
1651 be too small, many things would have to change. */
1652 # define MAX_BUF_SIZE (1L << 15)
1654 /* Extend the buffer by twice its current size via realloc and
1655 reset the pointers that pointed into the old block to point to the
1656 correct places in the new one. If extending the buffer results in it
1657 being larger than MAX_BUF_SIZE, then flag memory exhausted. */
1658 #define EXTEND_BUFFER() \
1659 do { \
1660 unsigned char *old_buffer = bufp->buffer; \
1661 if (bufp->allocated == MAX_BUF_SIZE) \
1662 return REG_ESIZE; \
1663 bufp->allocated <<= 1; \
1664 if (bufp->allocated > MAX_BUF_SIZE) \
1665 bufp->allocated = MAX_BUF_SIZE; \
1666 ptrdiff_t b_off = b - old_buffer; \
1667 ptrdiff_t begalt_off = begalt - old_buffer; \
1668 bool fixup_alt_jump_set = !!fixup_alt_jump; \
1669 bool laststart_set = !!laststart; \
1670 bool pending_exact_set = !!pending_exact; \
1671 ptrdiff_t fixup_alt_jump_off, laststart_off, pending_exact_off; \
1672 if (fixup_alt_jump_set) fixup_alt_jump_off = fixup_alt_jump - old_buffer; \
1673 if (laststart_set) laststart_off = laststart - old_buffer; \
1674 if (pending_exact_set) pending_exact_off = pending_exact - old_buffer; \
1675 RETALLOC (bufp->buffer, bufp->allocated, unsigned char); \
1676 if (bufp->buffer == NULL) \
1677 return REG_ESPACE; \
1678 unsigned char *new_buffer = bufp->buffer; \
1679 b = new_buffer + b_off; \
1680 begalt = new_buffer + begalt_off; \
1681 if (fixup_alt_jump_set) fixup_alt_jump = new_buffer + fixup_alt_jump_off; \
1682 if (laststart_set) laststart = new_buffer + laststart_off; \
1683 if (pending_exact_set) pending_exact = new_buffer + pending_exact_off; \
1684 } while (0)
1687 /* Since we have one byte reserved for the register number argument to
1688 {start,stop}_memory, the maximum number of groups we can report
1689 things about is what fits in that byte. */
1690 #define MAX_REGNUM 255
1692 /* But patterns can have more than `MAX_REGNUM' registers. We just
1693 ignore the excess. */
1694 typedef int regnum_t;
1697 /* Macros for the compile stack. */
1699 /* Since offsets can go either forwards or backwards, this type needs to
1700 be able to hold values from -(MAX_BUF_SIZE - 1) to MAX_BUF_SIZE - 1. */
1701 /* int may be not enough when sizeof(int) == 2. */
1702 typedef long pattern_offset_t;
1704 typedef struct
1706 pattern_offset_t begalt_offset;
1707 pattern_offset_t fixup_alt_jump;
1708 pattern_offset_t laststart_offset;
1709 regnum_t regnum;
1710 } compile_stack_elt_t;
1713 typedef struct
1715 compile_stack_elt_t *stack;
1716 size_t size;
1717 size_t avail; /* Offset of next open position. */
1718 } compile_stack_type;
1721 #define INIT_COMPILE_STACK_SIZE 32
1723 #define COMPILE_STACK_EMPTY (compile_stack.avail == 0)
1724 #define COMPILE_STACK_FULL (compile_stack.avail == compile_stack.size)
1726 /* The next available element. */
1727 #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
1729 /* Explicit quit checking is needed for Emacs, which uses polling to
1730 process input events. */
1731 #ifndef emacs
1732 static void maybe_quit (void) {}
1733 #endif
1735 /* Structure to manage work area for range table. */
1736 struct range_table_work_area
1738 int *table; /* actual work area. */
1739 int allocated; /* allocated size for work area in bytes. */
1740 int used; /* actually used size in words. */
1741 int bits; /* flag to record character classes */
1744 #ifdef emacs
1746 /* Make sure that WORK_AREA can hold more N multibyte characters.
1747 This is used only in set_image_of_range and set_image_of_range_1.
1748 It expects WORK_AREA to be a pointer.
1749 If it can't get the space, it returns from the surrounding function. */
1751 #define EXTEND_RANGE_TABLE(work_area, n) \
1752 do { \
1753 if (((work_area).used + (n)) * sizeof (int) > (work_area).allocated) \
1755 extend_range_table_work_area (&work_area); \
1756 if ((work_area).table == 0) \
1757 return (REG_ESPACE); \
1759 } while (0)
1761 #define SET_RANGE_TABLE_WORK_AREA_BIT(work_area, bit) \
1762 (work_area).bits |= (bit)
1764 /* Set a range (RANGE_START, RANGE_END) to WORK_AREA. */
1765 #define SET_RANGE_TABLE_WORK_AREA(work_area, range_start, range_end) \
1766 do { \
1767 EXTEND_RANGE_TABLE ((work_area), 2); \
1768 (work_area).table[(work_area).used++] = (range_start); \
1769 (work_area).table[(work_area).used++] = (range_end); \
1770 } while (0)
1772 #endif /* emacs */
1774 /* Free allocated memory for WORK_AREA. */
1775 #define FREE_RANGE_TABLE_WORK_AREA(work_area) \
1776 do { \
1777 if ((work_area).table) \
1778 free ((work_area).table); \
1779 } while (0)
1781 #define CLEAR_RANGE_TABLE_WORK_USED(work_area) ((work_area).used = 0, (work_area).bits = 0)
1782 #define RANGE_TABLE_WORK_USED(work_area) ((work_area).used)
1783 #define RANGE_TABLE_WORK_BITS(work_area) ((work_area).bits)
1784 #define RANGE_TABLE_WORK_ELT(work_area, i) ((work_area).table[i])
1786 /* Bits used to implement the multibyte-part of the various character classes
1787 such as [:alnum:] in a charset's range table. The code currently assumes
1788 that only the low 16 bits are used. */
1789 #define BIT_WORD 0x1
1790 #define BIT_LOWER 0x2
1791 #define BIT_PUNCT 0x4
1792 #define BIT_SPACE 0x8
1793 #define BIT_UPPER 0x10
1794 #define BIT_MULTIBYTE 0x20
1795 #define BIT_ALPHA 0x40
1796 #define BIT_ALNUM 0x80
1797 #define BIT_GRAPH 0x100
1798 #define BIT_PRINT 0x200
1799 #define BIT_BLANK 0x400
1802 /* Set the bit for character C in a list. */
1803 #define SET_LIST_BIT(c) (b[((c)) / BYTEWIDTH] |= 1 << ((c) % BYTEWIDTH))
1806 #ifdef emacs
1808 /* Store characters in the range FROM to TO in the bitmap at B (for
1809 ASCII and unibyte characters) and WORK_AREA (for multibyte
1810 characters) while translating them and paying attention to the
1811 continuity of translated characters.
1813 Implementation note: It is better to implement these fairly big
1814 macros by a function, but it's not that easy because macros called
1815 in this macro assume various local variables already declared. */
1817 /* Both FROM and TO are ASCII characters. */
1819 #define SETUP_ASCII_RANGE(work_area, FROM, TO) \
1820 do { \
1821 int C0, C1; \
1823 for (C0 = (FROM); C0 <= (TO); C0++) \
1825 C1 = TRANSLATE (C0); \
1826 if (! ASCII_CHAR_P (C1)) \
1828 SET_RANGE_TABLE_WORK_AREA ((work_area), C1, C1); \
1829 if ((C1 = RE_CHAR_TO_UNIBYTE (C1)) < 0) \
1830 C1 = C0; \
1832 SET_LIST_BIT (C1); \
1834 } while (0)
1837 /* Both FROM and TO are unibyte characters (0x80..0xFF). */
1839 #define SETUP_UNIBYTE_RANGE(work_area, FROM, TO) \
1840 do { \
1841 int C0, C1, C2, I; \
1842 int USED = RANGE_TABLE_WORK_USED (work_area); \
1844 for (C0 = (FROM); C0 <= (TO); C0++) \
1846 C1 = RE_CHAR_TO_MULTIBYTE (C0); \
1847 if (CHAR_BYTE8_P (C1)) \
1848 SET_LIST_BIT (C0); \
1849 else \
1851 C2 = TRANSLATE (C1); \
1852 if (C2 == C1 \
1853 || (C1 = RE_CHAR_TO_UNIBYTE (C2)) < 0) \
1854 C1 = C0; \
1855 SET_LIST_BIT (C1); \
1856 for (I = RANGE_TABLE_WORK_USED (work_area) - 2; I >= USED; I -= 2) \
1858 int from = RANGE_TABLE_WORK_ELT (work_area, I); \
1859 int to = RANGE_TABLE_WORK_ELT (work_area, I + 1); \
1861 if (C2 >= from - 1 && C2 <= to + 1) \
1863 if (C2 == from - 1) \
1864 RANGE_TABLE_WORK_ELT (work_area, I)--; \
1865 else if (C2 == to + 1) \
1866 RANGE_TABLE_WORK_ELT (work_area, I + 1)++; \
1867 break; \
1870 if (I < USED) \
1871 SET_RANGE_TABLE_WORK_AREA ((work_area), C2, C2); \
1874 } while (0)
1877 /* Both FROM and TO are multibyte characters. */
1879 #define SETUP_MULTIBYTE_RANGE(work_area, FROM, TO) \
1880 do { \
1881 int C0, C1, C2, I, USED = RANGE_TABLE_WORK_USED (work_area); \
1883 SET_RANGE_TABLE_WORK_AREA ((work_area), (FROM), (TO)); \
1884 for (C0 = (FROM); C0 <= (TO); C0++) \
1886 C1 = TRANSLATE (C0); \
1887 if ((C2 = RE_CHAR_TO_UNIBYTE (C1)) >= 0 \
1888 || (C1 != C0 && (C2 = RE_CHAR_TO_UNIBYTE (C0)) >= 0)) \
1889 SET_LIST_BIT (C2); \
1890 if (C1 >= (FROM) && C1 <= (TO)) \
1891 continue; \
1892 for (I = RANGE_TABLE_WORK_USED (work_area) - 2; I >= USED; I -= 2) \
1894 int from = RANGE_TABLE_WORK_ELT (work_area, I); \
1895 int to = RANGE_TABLE_WORK_ELT (work_area, I + 1); \
1897 if (C1 >= from - 1 && C1 <= to + 1) \
1899 if (C1 == from - 1) \
1900 RANGE_TABLE_WORK_ELT (work_area, I)--; \
1901 else if (C1 == to + 1) \
1902 RANGE_TABLE_WORK_ELT (work_area, I + 1)++; \
1903 break; \
1906 if (I < USED) \
1907 SET_RANGE_TABLE_WORK_AREA ((work_area), C1, C1); \
1909 } while (0)
1911 #endif /* emacs */
1913 /* Get the next unsigned number in the uncompiled pattern. */
1914 #define GET_INTERVAL_COUNT(num) \
1915 do { \
1916 if (p == pend) \
1917 FREE_STACK_RETURN (REG_EBRACE); \
1918 else \
1920 PATFETCH (c); \
1921 while ('0' <= c && c <= '9') \
1923 if (num < 0) \
1924 num = 0; \
1925 if (RE_DUP_MAX / 10 - (RE_DUP_MAX % 10 < c - '0') < num) \
1926 FREE_STACK_RETURN (REG_BADBR); \
1927 num = num * 10 + c - '0'; \
1928 if (p == pend) \
1929 FREE_STACK_RETURN (REG_EBRACE); \
1930 PATFETCH (c); \
1933 } while (0)
1935 #if ! WIDE_CHAR_SUPPORT
1937 /* Parse a character class, i.e. string such as "[:name:]". *strp
1938 points to the string to be parsed and limit is length, in bytes, of
1939 that string.
1941 If *strp point to a string that begins with "[:name:]", where name is
1942 a non-empty sequence of lower case letters, *strp will be advanced past the
1943 closing square bracket and RECC_* constant which maps to the name will be
1944 returned. If name is not a valid character class name zero, or RECC_ERROR,
1945 is returned.
1947 Otherwise, if *strp doesn’t begin with "[:name:]", -1 is returned.
1949 The function can be used on ASCII and multibyte (UTF-8-encoded) strings.
1951 re_wctype_t
1952 re_wctype_parse (const unsigned char **strp, unsigned limit)
1954 const char *beg = (const char *)*strp, *it;
1956 if (limit < 4 || beg[0] != '[' || beg[1] != ':')
1957 return -1;
1959 beg += 2; /* skip opening ‘[:’ */
1960 limit -= 3; /* opening ‘[:’ and half of closing ‘:]’; --limit handles rest */
1961 for (it = beg; it[0] != ':' || it[1] != ']'; ++it)
1962 if (!--limit)
1963 return -1;
1965 *strp = (const unsigned char *)(it + 2);
1967 /* Sort tests in the length=five case by frequency the classes to minimize
1968 number of times we fail the comparison. The frequencies of character class
1969 names used in Emacs sources as of 2016-07-27:
1971 $ find \( -name \*.c -o -name \*.el \) -exec grep -h '\[:[a-z]*:]' {} + |
1972 sed 's/]/]\n/g' |grep -o '\[:[a-z]*:]' |sort |uniq -c |sort -nr
1973 213 [:alnum:]
1974 104 [:alpha:]
1975 62 [:space:]
1976 39 [:digit:]
1977 36 [:blank:]
1978 26 [:word:]
1979 26 [:upper:]
1980 21 [:lower:]
1981 10 [:xdigit:]
1982 10 [:punct:]
1983 10 [:ascii:]
1984 4 [:nonascii:]
1985 4 [:graph:]
1986 2 [:print:]
1987 2 [:cntrl:]
1988 1 [:ff:]
1990 If you update this list, consider also updating chain of or’ed conditions
1991 in execute_charset function.
1994 switch (it - beg) {
1995 case 4:
1996 if (!memcmp (beg, "word", 4)) return RECC_WORD;
1997 break;
1998 case 5:
1999 if (!memcmp (beg, "alnum", 5)) return RECC_ALNUM;
2000 if (!memcmp (beg, "alpha", 5)) return RECC_ALPHA;
2001 if (!memcmp (beg, "space", 5)) return RECC_SPACE;
2002 if (!memcmp (beg, "digit", 5)) return RECC_DIGIT;
2003 if (!memcmp (beg, "blank", 5)) return RECC_BLANK;
2004 if (!memcmp (beg, "upper", 5)) return RECC_UPPER;
2005 if (!memcmp (beg, "lower", 5)) return RECC_LOWER;
2006 if (!memcmp (beg, "punct", 5)) return RECC_PUNCT;
2007 if (!memcmp (beg, "ascii", 5)) return RECC_ASCII;
2008 if (!memcmp (beg, "graph", 5)) return RECC_GRAPH;
2009 if (!memcmp (beg, "print", 5)) return RECC_PRINT;
2010 if (!memcmp (beg, "cntrl", 5)) return RECC_CNTRL;
2011 break;
2012 case 6:
2013 if (!memcmp (beg, "xdigit", 6)) return RECC_XDIGIT;
2014 break;
2015 case 7:
2016 if (!memcmp (beg, "unibyte", 7)) return RECC_UNIBYTE;
2017 break;
2018 case 8:
2019 if (!memcmp (beg, "nonascii", 8)) return RECC_NONASCII;
2020 break;
2021 case 9:
2022 if (!memcmp (beg, "multibyte", 9)) return RECC_MULTIBYTE;
2023 break;
2026 return RECC_ERROR;
2029 /* True if CH is in the char class CC. */
2030 boolean
2031 re_iswctype (int ch, re_wctype_t cc)
2033 switch (cc)
2035 case RECC_ALNUM: return ISALNUM (ch) != 0;
2036 case RECC_ALPHA: return ISALPHA (ch) != 0;
2037 case RECC_BLANK: return ISBLANK (ch) != 0;
2038 case RECC_CNTRL: return ISCNTRL (ch) != 0;
2039 case RECC_DIGIT: return ISDIGIT (ch) != 0;
2040 case RECC_GRAPH: return ISGRAPH (ch) != 0;
2041 case RECC_LOWER: return ISLOWER (ch) != 0;
2042 case RECC_PRINT: return ISPRINT (ch) != 0;
2043 case RECC_PUNCT: return ISPUNCT (ch) != 0;
2044 case RECC_SPACE: return ISSPACE (ch) != 0;
2045 case RECC_UPPER: return ISUPPER (ch) != 0;
2046 case RECC_XDIGIT: return ISXDIGIT (ch) != 0;
2047 case RECC_ASCII: return IS_REAL_ASCII (ch) != 0;
2048 case RECC_NONASCII: return !IS_REAL_ASCII (ch);
2049 case RECC_UNIBYTE: return ISUNIBYTE (ch) != 0;
2050 case RECC_MULTIBYTE: return !ISUNIBYTE (ch);
2051 case RECC_WORD: return ISWORD (ch) != 0;
2052 case RECC_ERROR: return false;
2053 default:
2054 abort ();
2058 /* Return a bit-pattern to use in the range-table bits to match multibyte
2059 chars of class CC. */
2060 static int
2061 re_wctype_to_bit (re_wctype_t cc)
2063 switch (cc)
2065 case RECC_NONASCII:
2066 case RECC_MULTIBYTE: return BIT_MULTIBYTE;
2067 case RECC_ALPHA: return BIT_ALPHA;
2068 case RECC_ALNUM: return BIT_ALNUM;
2069 case RECC_WORD: return BIT_WORD;
2070 case RECC_LOWER: return BIT_LOWER;
2071 case RECC_UPPER: return BIT_UPPER;
2072 case RECC_PUNCT: return BIT_PUNCT;
2073 case RECC_SPACE: return BIT_SPACE;
2074 case RECC_GRAPH: return BIT_GRAPH;
2075 case RECC_PRINT: return BIT_PRINT;
2076 case RECC_BLANK: return BIT_BLANK;
2077 case RECC_ASCII: case RECC_DIGIT: case RECC_XDIGIT: case RECC_CNTRL:
2078 case RECC_UNIBYTE: case RECC_ERROR: return 0;
2079 default:
2080 abort ();
2083 #endif
2085 /* Filling in the work area of a range. */
2087 /* Actually extend the space in WORK_AREA. */
2089 static void
2090 extend_range_table_work_area (struct range_table_work_area *work_area)
2092 work_area->allocated += 16 * sizeof (int);
2093 work_area->table = realloc (work_area->table, work_area->allocated);
2096 #if 0
2097 #ifdef emacs
2099 /* Carefully find the ranges of codes that are equivalent
2100 under case conversion to the range start..end when passed through
2101 TRANSLATE. Handle the case where non-letters can come in between
2102 two upper-case letters (which happens in Latin-1).
2103 Also handle the case of groups of more than 2 case-equivalent chars.
2105 The basic method is to look at consecutive characters and see
2106 if they can form a run that can be handled as one.
2108 Returns -1 if successful, REG_ESPACE if ran out of space. */
2110 static int
2111 set_image_of_range_1 (struct range_table_work_area *work_area,
2112 re_wchar_t start, re_wchar_t end,
2113 RE_TRANSLATE_TYPE translate)
2115 /* `one_case' indicates a character, or a run of characters,
2116 each of which is an isolate (no case-equivalents).
2117 This includes all ASCII non-letters.
2119 `two_case' indicates a character, or a run of characters,
2120 each of which has two case-equivalent forms.
2121 This includes all ASCII letters.
2123 `strange' indicates a character that has more than one
2124 case-equivalent. */
2126 enum case_type {one_case, two_case, strange};
2128 /* Describe the run that is in progress,
2129 which the next character can try to extend.
2130 If run_type is strange, that means there really is no run.
2131 If run_type is one_case, then run_start...run_end is the run.
2132 If run_type is two_case, then the run is run_start...run_end,
2133 and the case-equivalents end at run_eqv_end. */
2135 enum case_type run_type = strange;
2136 int run_start, run_end, run_eqv_end;
2138 Lisp_Object eqv_table;
2140 if (!RE_TRANSLATE_P (translate))
2142 EXTEND_RANGE_TABLE (work_area, 2);
2143 work_area->table[work_area->used++] = (start);
2144 work_area->table[work_area->used++] = (end);
2145 return -1;
2148 eqv_table = XCHAR_TABLE (translate)->extras[2];
2150 for (; start <= end; start++)
2152 enum case_type this_type;
2153 int eqv = RE_TRANSLATE (eqv_table, start);
2154 int minchar, maxchar;
2156 /* Classify this character */
2157 if (eqv == start)
2158 this_type = one_case;
2159 else if (RE_TRANSLATE (eqv_table, eqv) == start)
2160 this_type = two_case;
2161 else
2162 this_type = strange;
2164 if (start < eqv)
2165 minchar = start, maxchar = eqv;
2166 else
2167 minchar = eqv, maxchar = start;
2169 /* Can this character extend the run in progress? */
2170 if (this_type == strange || this_type != run_type
2171 || !(minchar == run_end + 1
2172 && (run_type == two_case
2173 ? maxchar == run_eqv_end + 1 : 1)))
2175 /* No, end the run.
2176 Record each of its equivalent ranges. */
2177 if (run_type == one_case)
2179 EXTEND_RANGE_TABLE (work_area, 2);
2180 work_area->table[work_area->used++] = run_start;
2181 work_area->table[work_area->used++] = run_end;
2183 else if (run_type == two_case)
2185 EXTEND_RANGE_TABLE (work_area, 4);
2186 work_area->table[work_area->used++] = run_start;
2187 work_area->table[work_area->used++] = run_end;
2188 work_area->table[work_area->used++]
2189 = RE_TRANSLATE (eqv_table, run_start);
2190 work_area->table[work_area->used++]
2191 = RE_TRANSLATE (eqv_table, run_end);
2193 run_type = strange;
2196 if (this_type == strange)
2198 /* For a strange character, add each of its equivalents, one
2199 by one. Don't start a range. */
2202 EXTEND_RANGE_TABLE (work_area, 2);
2203 work_area->table[work_area->used++] = eqv;
2204 work_area->table[work_area->used++] = eqv;
2205 eqv = RE_TRANSLATE (eqv_table, eqv);
2207 while (eqv != start);
2210 /* Add this char to the run, or start a new run. */
2211 else if (run_type == strange)
2213 /* Initialize a new range. */
2214 run_type = this_type;
2215 run_start = start;
2216 run_end = start;
2217 run_eqv_end = RE_TRANSLATE (eqv_table, run_end);
2219 else
2221 /* Extend a running range. */
2222 run_end = minchar;
2223 run_eqv_end = RE_TRANSLATE (eqv_table, run_end);
2227 /* If a run is still in progress at the end, finish it now
2228 by recording its equivalent ranges. */
2229 if (run_type == one_case)
2231 EXTEND_RANGE_TABLE (work_area, 2);
2232 work_area->table[work_area->used++] = run_start;
2233 work_area->table[work_area->used++] = run_end;
2235 else if (run_type == two_case)
2237 EXTEND_RANGE_TABLE (work_area, 4);
2238 work_area->table[work_area->used++] = run_start;
2239 work_area->table[work_area->used++] = run_end;
2240 work_area->table[work_area->used++]
2241 = RE_TRANSLATE (eqv_table, run_start);
2242 work_area->table[work_area->used++]
2243 = RE_TRANSLATE (eqv_table, run_end);
2246 return -1;
2249 #endif /* emacs */
2251 /* Record the image of the range start..end when passed through
2252 TRANSLATE. This is not necessarily TRANSLATE(start)..TRANSLATE(end)
2253 and is not even necessarily contiguous.
2254 Normally we approximate it with the smallest contiguous range that contains
2255 all the chars we need. However, for Latin-1 we go to extra effort
2256 to do a better job.
2258 This function is not called for ASCII ranges.
2260 Returns -1 if successful, REG_ESPACE if ran out of space. */
2262 static int
2263 set_image_of_range (struct range_table_work_area *work_area,
2264 re_wchar_t start, re_wchar_t end,
2265 RE_TRANSLATE_TYPE translate)
2267 re_wchar_t cmin, cmax;
2269 #ifdef emacs
2270 /* For Latin-1 ranges, use set_image_of_range_1
2271 to get proper handling of ranges that include letters and nonletters.
2272 For a range that includes the whole of Latin-1, this is not necessary.
2273 For other character sets, we don't bother to get this right. */
2274 if (RE_TRANSLATE_P (translate) && start < 04400
2275 && !(start < 04200 && end >= 04377))
2277 int newend;
2278 int tem;
2279 newend = end;
2280 if (newend > 04377)
2281 newend = 04377;
2282 tem = set_image_of_range_1 (work_area, start, newend, translate);
2283 if (tem > 0)
2284 return tem;
2286 start = 04400;
2287 if (end < 04400)
2288 return -1;
2290 #endif
2292 EXTEND_RANGE_TABLE (work_area, 2);
2293 work_area->table[work_area->used++] = (start);
2294 work_area->table[work_area->used++] = (end);
2296 cmin = -1, cmax = -1;
2298 if (RE_TRANSLATE_P (translate))
2300 int ch;
2302 for (ch = start; ch <= end; ch++)
2304 re_wchar_t c = TRANSLATE (ch);
2305 if (! (start <= c && c <= end))
2307 if (cmin == -1)
2308 cmin = c, cmax = c;
2309 else
2311 cmin = min (cmin, c);
2312 cmax = max (cmax, c);
2317 if (cmin != -1)
2319 EXTEND_RANGE_TABLE (work_area, 2);
2320 work_area->table[work_area->used++] = (cmin);
2321 work_area->table[work_area->used++] = (cmax);
2325 return -1;
2327 #endif /* 0 */
2329 #ifndef MATCH_MAY_ALLOCATE
2331 /* If we cannot allocate large objects within re_match_2_internal,
2332 we make the fail stack and register vectors global.
2333 The fail stack, we grow to the maximum size when a regexp
2334 is compiled.
2335 The register vectors, we adjust in size each time we
2336 compile a regexp, according to the number of registers it needs. */
2338 static fail_stack_type fail_stack;
2340 /* Size with which the following vectors are currently allocated.
2341 That is so we can make them bigger as needed,
2342 but never make them smaller. */
2343 static int regs_allocated_size;
2345 static re_char ** regstart, ** regend;
2346 static re_char **best_regstart, **best_regend;
2348 /* Make the register vectors big enough for NUM_REGS registers,
2349 but don't make them smaller. */
2351 static
2352 regex_grow_registers (int num_regs)
2354 if (num_regs > regs_allocated_size)
2356 RETALLOC_IF (regstart, num_regs, re_char *);
2357 RETALLOC_IF (regend, num_regs, re_char *);
2358 RETALLOC_IF (best_regstart, num_regs, re_char *);
2359 RETALLOC_IF (best_regend, num_regs, re_char *);
2361 regs_allocated_size = num_regs;
2365 #endif /* not MATCH_MAY_ALLOCATE */
2367 static boolean group_in_compile_stack (compile_stack_type compile_stack,
2368 regnum_t regnum);
2370 /* `regex_compile' compiles PATTERN (of length SIZE) according to SYNTAX.
2371 Returns one of error codes defined in `regex.h', or zero for success.
2373 If WHITESPACE_REGEXP is given (only #ifdef emacs), it is used instead of
2374 a space character in PATTERN.
2376 Assumes the `allocated' (and perhaps `buffer') and `translate'
2377 fields are set in BUFP on entry.
2379 If it succeeds, results are put in BUFP (if it returns an error, the
2380 contents of BUFP are undefined):
2381 `buffer' is the compiled pattern;
2382 `syntax' is set to SYNTAX;
2383 `used' is set to the length of the compiled pattern;
2384 `fastmap_accurate' is zero;
2385 `re_nsub' is the number of subexpressions in PATTERN;
2386 `not_bol' and `not_eol' are zero;
2388 The `fastmap' field is neither examined nor set. */
2390 /* Insert the `jump' from the end of last alternative to "here".
2391 The space for the jump has already been allocated. */
2392 #define FIXUP_ALT_JUMP() \
2393 do { \
2394 if (fixup_alt_jump) \
2395 STORE_JUMP (jump, fixup_alt_jump, b); \
2396 } while (0)
2399 /* Return, freeing storage we allocated. */
2400 #define FREE_STACK_RETURN(value) \
2401 do { \
2402 FREE_RANGE_TABLE_WORK_AREA (range_table_work); \
2403 free (compile_stack.stack); \
2404 return value; \
2405 } while (0)
2407 static reg_errcode_t
2408 regex_compile (const_re_char *pattern, size_t size,
2409 #ifdef emacs
2410 # define syntax RE_SYNTAX_EMACS
2411 bool posix_backtracking,
2412 const char *whitespace_regexp,
2413 #else
2414 reg_syntax_t syntax,
2415 # define posix_backtracking (!(syntax & RE_NO_POSIX_BACKTRACKING))
2416 #endif
2417 struct re_pattern_buffer *bufp)
2419 /* We fetch characters from PATTERN here. */
2420 register re_wchar_t c, c1;
2422 /* Points to the end of the buffer, where we should append. */
2423 register unsigned char *b;
2425 /* Keeps track of unclosed groups. */
2426 compile_stack_type compile_stack;
2428 /* Points to the current (ending) position in the pattern. */
2429 #ifdef AIX
2430 /* `const' makes AIX compiler fail. */
2431 unsigned char *p = pattern;
2432 #else
2433 re_char *p = pattern;
2434 #endif
2435 re_char *pend = pattern + size;
2437 /* How to translate the characters in the pattern. */
2438 RE_TRANSLATE_TYPE translate = bufp->translate;
2440 /* Address of the count-byte of the most recently inserted `exactn'
2441 command. This makes it possible to tell if a new exact-match
2442 character can be added to that command or if the character requires
2443 a new `exactn' command. */
2444 unsigned char *pending_exact = 0;
2446 /* Address of start of the most recently finished expression.
2447 This tells, e.g., postfix * where to find the start of its
2448 operand. Reset at the beginning of groups and alternatives. */
2449 unsigned char *laststart = 0;
2451 /* Address of beginning of regexp, or inside of last group. */
2452 unsigned char *begalt;
2454 /* Place in the uncompiled pattern (i.e., the {) to
2455 which to go back if the interval is invalid. */
2456 re_char *beg_interval;
2458 /* Address of the place where a forward jump should go to the end of
2459 the containing expression. Each alternative of an `or' -- except the
2460 last -- ends with a forward jump of this sort. */
2461 unsigned char *fixup_alt_jump = 0;
2463 /* Work area for range table of charset. */
2464 struct range_table_work_area range_table_work;
2466 /* If the object matched can contain multibyte characters. */
2467 const boolean multibyte = RE_MULTIBYTE_P (bufp);
2469 #ifdef emacs
2470 /* Nonzero if we have pushed down into a subpattern. */
2471 int in_subpattern = 0;
2473 /* These hold the values of p, pattern, and pend from the main
2474 pattern when we have pushed into a subpattern. */
2475 re_char *main_p;
2476 re_char *main_pattern;
2477 re_char *main_pend;
2478 #endif
2480 #ifdef DEBUG
2481 debug++;
2482 DEBUG_PRINT ("\nCompiling pattern: ");
2483 if (debug > 0)
2485 unsigned debug_count;
2487 for (debug_count = 0; debug_count < size; debug_count++)
2488 putchar (pattern[debug_count]);
2489 putchar ('\n');
2491 #endif /* DEBUG */
2493 /* Initialize the compile stack. */
2494 compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t);
2495 if (compile_stack.stack == NULL)
2496 return REG_ESPACE;
2498 compile_stack.size = INIT_COMPILE_STACK_SIZE;
2499 compile_stack.avail = 0;
2501 range_table_work.table = 0;
2502 range_table_work.allocated = 0;
2504 /* Initialize the pattern buffer. */
2505 #ifndef emacs
2506 bufp->syntax = syntax;
2507 #endif
2508 bufp->fastmap_accurate = 0;
2509 bufp->not_bol = bufp->not_eol = 0;
2510 bufp->used_syntax = 0;
2512 /* Set `used' to zero, so that if we return an error, the pattern
2513 printer (for debugging) will think there's no pattern. We reset it
2514 at the end. */
2515 bufp->used = 0;
2517 /* Always count groups, whether or not bufp->no_sub is set. */
2518 bufp->re_nsub = 0;
2520 #if !defined emacs && !defined SYNTAX_TABLE
2521 /* Initialize the syntax table. */
2522 init_syntax_once ();
2523 #endif
2525 if (bufp->allocated == 0)
2527 if (bufp->buffer)
2528 { /* If zero allocated, but buffer is non-null, try to realloc
2529 enough space. This loses if buffer's address is bogus, but
2530 that is the user's responsibility. */
2531 RETALLOC (bufp->buffer, INIT_BUF_SIZE, unsigned char);
2533 else
2534 { /* Caller did not allocate a buffer. Do it for them. */
2535 bufp->buffer = TALLOC (INIT_BUF_SIZE, unsigned char);
2537 if (!bufp->buffer) FREE_STACK_RETURN (REG_ESPACE);
2539 bufp->allocated = INIT_BUF_SIZE;
2542 begalt = b = bufp->buffer;
2544 /* Loop through the uncompiled pattern until we're at the end. */
2545 while (1)
2547 if (p == pend)
2549 #ifdef emacs
2550 /* If this is the end of an included regexp,
2551 pop back to the main regexp and try again. */
2552 if (in_subpattern)
2554 in_subpattern = 0;
2555 pattern = main_pattern;
2556 p = main_p;
2557 pend = main_pend;
2558 continue;
2560 #endif
2561 /* If this is the end of the main regexp, we are done. */
2562 break;
2565 PATFETCH (c);
2567 switch (c)
2569 #ifdef emacs
2570 case ' ':
2572 re_char *p1 = p;
2574 /* If there's no special whitespace regexp, treat
2575 spaces normally. And don't try to do this recursively. */
2576 if (!whitespace_regexp || in_subpattern)
2577 goto normal_char;
2579 /* Peek past following spaces. */
2580 while (p1 != pend)
2582 if (*p1 != ' ')
2583 break;
2584 p1++;
2586 /* If the spaces are followed by a repetition op,
2587 treat them normally. */
2588 if (p1 != pend
2589 && (*p1 == '*' || *p1 == '+' || *p1 == '?'
2590 || (*p1 == '\\' && p1 + 1 != pend && p1[1] == '{')))
2591 goto normal_char;
2593 /* Replace the spaces with the whitespace regexp. */
2594 in_subpattern = 1;
2595 main_p = p1;
2596 main_pend = pend;
2597 main_pattern = pattern;
2598 p = pattern = (re_char *) whitespace_regexp;
2599 pend = p + strlen (whitespace_regexp);
2600 break;
2602 #endif
2604 case '^':
2606 if ( /* If at start of pattern, it's an operator. */
2607 p == pattern + 1
2608 /* If context independent, it's an operator. */
2609 || syntax & RE_CONTEXT_INDEP_ANCHORS
2610 /* Otherwise, depends on what's come before. */
2611 || at_begline_loc_p (pattern, p, syntax))
2612 BUF_PUSH ((syntax & RE_NO_NEWLINE_ANCHOR) ? begbuf : begline);
2613 else
2614 goto normal_char;
2616 break;
2619 case '$':
2621 if ( /* If at end of pattern, it's an operator. */
2622 p == pend
2623 /* If context independent, it's an operator. */
2624 || syntax & RE_CONTEXT_INDEP_ANCHORS
2625 /* Otherwise, depends on what's next. */
2626 || at_endline_loc_p (p, pend, syntax))
2627 BUF_PUSH ((syntax & RE_NO_NEWLINE_ANCHOR) ? endbuf : endline);
2628 else
2629 goto normal_char;
2631 break;
2634 case '+':
2635 case '?':
2636 if ((syntax & RE_BK_PLUS_QM)
2637 || (syntax & RE_LIMITED_OPS))
2638 goto normal_char;
2639 FALLTHROUGH;
2640 case '*':
2641 handle_plus:
2642 /* If there is no previous pattern... */
2643 if (!laststart)
2645 if (syntax & RE_CONTEXT_INVALID_OPS)
2646 FREE_STACK_RETURN (REG_BADRPT);
2647 else if (!(syntax & RE_CONTEXT_INDEP_OPS))
2648 goto normal_char;
2652 /* 1 means zero (many) matches is allowed. */
2653 boolean zero_times_ok = 0, many_times_ok = 0;
2654 boolean greedy = 1;
2656 /* If there is a sequence of repetition chars, collapse it
2657 down to just one (the right one). We can't combine
2658 interval operators with these because of, e.g., `a{2}*',
2659 which should only match an even number of `a's. */
2661 for (;;)
2663 if ((syntax & RE_FRUGAL)
2664 && c == '?' && (zero_times_ok || many_times_ok))
2665 greedy = 0;
2666 else
2668 zero_times_ok |= c != '+';
2669 many_times_ok |= c != '?';
2672 if (p == pend)
2673 break;
2674 else if (*p == '*'
2675 || (!(syntax & RE_BK_PLUS_QM)
2676 && (*p == '+' || *p == '?')))
2678 else if (syntax & RE_BK_PLUS_QM && *p == '\\')
2680 if (p+1 == pend)
2681 FREE_STACK_RETURN (REG_EESCAPE);
2682 if (p[1] == '+' || p[1] == '?')
2683 PATFETCH (c); /* Gobble up the backslash. */
2684 else
2685 break;
2687 else
2688 break;
2689 /* If we get here, we found another repeat character. */
2690 PATFETCH (c);
2693 /* Star, etc. applied to an empty pattern is equivalent
2694 to an empty pattern. */
2695 if (!laststart || laststart == b)
2696 break;
2698 /* Now we know whether or not zero matches is allowed
2699 and also whether or not two or more matches is allowed. */
2700 if (greedy)
2702 if (many_times_ok)
2704 boolean simple = skip_one_char (laststart) == b;
2705 size_t startoffset = 0;
2706 re_opcode_t ofj =
2707 /* Check if the loop can match the empty string. */
2708 (simple || !analyze_first (laststart, b, NULL, 0))
2709 ? on_failure_jump : on_failure_jump_loop;
2710 assert (skip_one_char (laststart) <= b);
2712 if (!zero_times_ok && simple)
2713 { /* Since simple * loops can be made faster by using
2714 on_failure_keep_string_jump, we turn simple P+
2715 into PP* if P is simple. */
2716 unsigned char *p1, *p2;
2717 startoffset = b - laststart;
2718 GET_BUFFER_SPACE (startoffset);
2719 p1 = b; p2 = laststart;
2720 while (p2 < p1)
2721 *b++ = *p2++;
2722 zero_times_ok = 1;
2725 GET_BUFFER_SPACE (6);
2726 if (!zero_times_ok)
2727 /* A + loop. */
2728 STORE_JUMP (ofj, b, b + 6);
2729 else
2730 /* Simple * loops can use on_failure_keep_string_jump
2731 depending on what follows. But since we don't know
2732 that yet, we leave the decision up to
2733 on_failure_jump_smart. */
2734 INSERT_JUMP (simple ? on_failure_jump_smart : ofj,
2735 laststart + startoffset, b + 6);
2736 b += 3;
2737 STORE_JUMP (jump, b, laststart + startoffset);
2738 b += 3;
2740 else
2742 /* A simple ? pattern. */
2743 assert (zero_times_ok);
2744 GET_BUFFER_SPACE (3);
2745 INSERT_JUMP (on_failure_jump, laststart, b + 3);
2746 b += 3;
2749 else /* not greedy */
2750 { /* I wish the greedy and non-greedy cases could be merged. */
2752 GET_BUFFER_SPACE (7); /* We might use less. */
2753 if (many_times_ok)
2755 boolean emptyp = analyze_first (laststart, b, NULL, 0);
2757 /* The non-greedy multiple match looks like
2758 a repeat..until: we only need a conditional jump
2759 at the end of the loop. */
2760 if (emptyp) BUF_PUSH (no_op);
2761 STORE_JUMP (emptyp ? on_failure_jump_nastyloop
2762 : on_failure_jump, b, laststart);
2763 b += 3;
2764 if (zero_times_ok)
2766 /* The repeat...until naturally matches one or more.
2767 To also match zero times, we need to first jump to
2768 the end of the loop (its conditional jump). */
2769 INSERT_JUMP (jump, laststart, b);
2770 b += 3;
2773 else
2775 /* non-greedy a?? */
2776 INSERT_JUMP (jump, laststart, b + 3);
2777 b += 3;
2778 INSERT_JUMP (on_failure_jump, laststart, laststart + 6);
2779 b += 3;
2783 pending_exact = 0;
2784 break;
2787 case '.':
2788 laststart = b;
2789 BUF_PUSH (anychar);
2790 break;
2793 case '[':
2795 re_char *p1;
2797 CLEAR_RANGE_TABLE_WORK_USED (range_table_work);
2799 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
2801 /* Ensure that we have enough space to push a charset: the
2802 opcode, the length count, and the bitset; 34 bytes in all. */
2803 GET_BUFFER_SPACE (34);
2805 laststart = b;
2807 /* We test `*p == '^' twice, instead of using an if
2808 statement, so we only need one BUF_PUSH. */
2809 BUF_PUSH (*p == '^' ? charset_not : charset);
2810 if (*p == '^')
2811 p++;
2813 /* Remember the first position in the bracket expression. */
2814 p1 = p;
2816 /* Push the number of bytes in the bitmap. */
2817 BUF_PUSH ((1 << BYTEWIDTH) / BYTEWIDTH);
2819 /* Clear the whole map. */
2820 memset (b, 0, (1 << BYTEWIDTH) / BYTEWIDTH);
2822 /* charset_not matches newline according to a syntax bit. */
2823 if ((re_opcode_t) b[-2] == charset_not
2824 && (syntax & RE_HAT_LISTS_NOT_NEWLINE))
2825 SET_LIST_BIT ('\n');
2827 /* Read in characters and ranges, setting map bits. */
2828 for (;;)
2830 boolean escaped_char = false;
2831 const unsigned char *p2 = p;
2832 re_wctype_t cc;
2833 re_wchar_t ch;
2835 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
2837 /* See if we're at the beginning of a possible character
2838 class. */
2839 if (syntax & RE_CHAR_CLASSES &&
2840 (cc = re_wctype_parse(&p, pend - p)) != -1)
2842 if (cc == 0)
2843 FREE_STACK_RETURN (REG_ECTYPE);
2845 if (p == pend)
2846 FREE_STACK_RETURN (REG_EBRACK);
2848 #ifndef emacs
2849 for (ch = 0; ch < (1 << BYTEWIDTH); ++ch)
2850 if (re_iswctype (btowc (ch), cc))
2852 c = TRANSLATE (ch);
2853 if (c < (1 << BYTEWIDTH))
2854 SET_LIST_BIT (c);
2856 #else /* emacs */
2857 /* Most character classes in a multibyte match just set
2858 a flag. Exceptions are is_blank, is_digit, is_cntrl, and
2859 is_xdigit, since they can only match ASCII characters.
2860 We don't need to handle them for multibyte. */
2862 /* Setup the gl_state object to its buffer-defined value.
2863 This hardcodes the buffer-global syntax-table for ASCII
2864 chars, while the other chars will obey syntax-table
2865 properties. It's not ideal, but it's the way it's been
2866 done until now. */
2867 SETUP_BUFFER_SYNTAX_TABLE ();
2869 for (c = 0; c < 0x80; ++c)
2870 if (re_iswctype (c, cc))
2872 SET_LIST_BIT (c);
2873 c1 = TRANSLATE (c);
2874 if (c1 == c)
2875 continue;
2876 if (ASCII_CHAR_P (c1))
2877 SET_LIST_BIT (c1);
2878 else if ((c1 = RE_CHAR_TO_UNIBYTE (c1)) >= 0)
2879 SET_LIST_BIT (c1);
2881 SET_RANGE_TABLE_WORK_AREA_BIT
2882 (range_table_work, re_wctype_to_bit (cc));
2883 #endif /* emacs */
2884 /* In most cases the matching rule for char classes only
2885 uses the syntax table for multibyte chars, so that the
2886 content of the syntax-table is not hardcoded in the
2887 range_table. SPACE and WORD are the two exceptions. */
2888 if ((1 << cc) & ((1 << RECC_SPACE) | (1 << RECC_WORD)))
2889 bufp->used_syntax = 1;
2891 /* Repeat the loop. */
2892 continue;
2895 /* Don't translate yet. The range TRANSLATE(X..Y) cannot
2896 always be determined from TRANSLATE(X) and TRANSLATE(Y)
2897 So the translation is done later in a loop. Example:
2898 (let ((case-fold-search t)) (string-match "[A-_]" "A")) */
2899 PATFETCH (c);
2901 /* \ might escape characters inside [...] and [^...]. */
2902 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\\')
2904 if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
2906 PATFETCH (c);
2907 escaped_char = true;
2909 else
2911 /* Could be the end of the bracket expression. If it's
2912 not (i.e., when the bracket expression is `[]' so
2913 far), the ']' character bit gets set way below. */
2914 if (c == ']' && p2 != p1)
2915 break;
2918 if (p < pend && p[0] == '-' && p[1] != ']')
2921 /* Discard the `-'. */
2922 PATFETCH (c1);
2924 /* Fetch the character which ends the range. */
2925 PATFETCH (c1);
2926 #ifdef emacs
2927 if (CHAR_BYTE8_P (c1)
2928 && ! ASCII_CHAR_P (c) && ! CHAR_BYTE8_P (c))
2929 /* Treat the range from a multibyte character to
2930 raw-byte character as empty. */
2931 c = c1 + 1;
2932 #endif /* emacs */
2934 else
2935 /* Range from C to C. */
2936 c1 = c;
2938 if (c > c1)
2940 if (syntax & RE_NO_EMPTY_RANGES)
2941 FREE_STACK_RETURN (REG_ERANGEX);
2942 /* Else, repeat the loop. */
2944 else
2946 #ifndef emacs
2947 /* Set the range into bitmap */
2948 for (; c <= c1; c++)
2950 ch = TRANSLATE (c);
2951 if (ch < (1 << BYTEWIDTH))
2952 SET_LIST_BIT (ch);
2954 #else /* emacs */
2955 if (c < 128)
2957 ch = min (127, c1);
2958 SETUP_ASCII_RANGE (range_table_work, c, ch);
2959 c = ch + 1;
2960 if (CHAR_BYTE8_P (c1))
2961 c = BYTE8_TO_CHAR (128);
2963 if (c <= c1)
2965 if (CHAR_BYTE8_P (c))
2967 c = CHAR_TO_BYTE8 (c);
2968 c1 = CHAR_TO_BYTE8 (c1);
2969 for (; c <= c1; c++)
2970 SET_LIST_BIT (c);
2972 else if (multibyte)
2974 SETUP_MULTIBYTE_RANGE (range_table_work, c, c1);
2976 else
2978 SETUP_UNIBYTE_RANGE (range_table_work, c, c1);
2981 #endif /* emacs */
2985 /* Discard any (non)matching list bytes that are all 0 at the
2986 end of the map. Decrease the map-length byte too. */
2987 while ((int) b[-1] > 0 && b[b[-1] - 1] == 0)
2988 b[-1]--;
2989 b += b[-1];
2991 /* Build real range table from work area. */
2992 if (RANGE_TABLE_WORK_USED (range_table_work)
2993 || RANGE_TABLE_WORK_BITS (range_table_work))
2995 int i;
2996 int used = RANGE_TABLE_WORK_USED (range_table_work);
2998 /* Allocate space for COUNT + RANGE_TABLE. Needs two
2999 bytes for flags, two for COUNT, and three bytes for
3000 each character. */
3001 GET_BUFFER_SPACE (4 + used * 3);
3003 /* Indicate the existence of range table. */
3004 laststart[1] |= 0x80;
3006 /* Store the character class flag bits into the range table.
3007 If not in emacs, these flag bits are always 0. */
3008 *b++ = RANGE_TABLE_WORK_BITS (range_table_work) & 0xff;
3009 *b++ = RANGE_TABLE_WORK_BITS (range_table_work) >> 8;
3011 STORE_NUMBER_AND_INCR (b, used / 2);
3012 for (i = 0; i < used; i++)
3013 STORE_CHARACTER_AND_INCR
3014 (b, RANGE_TABLE_WORK_ELT (range_table_work, i));
3017 break;
3020 case '(':
3021 if (syntax & RE_NO_BK_PARENS)
3022 goto handle_open;
3023 else
3024 goto normal_char;
3027 case ')':
3028 if (syntax & RE_NO_BK_PARENS)
3029 goto handle_close;
3030 else
3031 goto normal_char;
3034 case '\n':
3035 if (syntax & RE_NEWLINE_ALT)
3036 goto handle_alt;
3037 else
3038 goto normal_char;
3041 case '|':
3042 if (syntax & RE_NO_BK_VBAR)
3043 goto handle_alt;
3044 else
3045 goto normal_char;
3048 case '{':
3049 if (syntax & RE_INTERVALS && syntax & RE_NO_BK_BRACES)
3050 goto handle_interval;
3051 else
3052 goto normal_char;
3055 case '\\':
3056 if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
3058 /* Do not translate the character after the \, so that we can
3059 distinguish, e.g., \B from \b, even if we normally would
3060 translate, e.g., B to b. */
3061 PATFETCH (c);
3063 switch (c)
3065 case '(':
3066 if (syntax & RE_NO_BK_PARENS)
3067 goto normal_backslash;
3069 handle_open:
3071 int shy = 0;
3072 regnum_t regnum = 0;
3073 if (p+1 < pend)
3075 /* Look for a special (?...) construct */
3076 if ((syntax & RE_SHY_GROUPS) && *p == '?')
3078 PATFETCH (c); /* Gobble up the '?'. */
3079 while (!shy)
3081 PATFETCH (c);
3082 switch (c)
3084 case ':': shy = 1; break;
3085 case '0':
3086 /* An explicitly specified regnum must start
3087 with non-0. */
3088 if (regnum == 0)
3089 FREE_STACK_RETURN (REG_BADPAT);
3090 FALLTHROUGH;
3091 case '1': case '2': case '3': case '4':
3092 case '5': case '6': case '7': case '8': case '9':
3093 regnum = 10*regnum + (c - '0'); break;
3094 default:
3095 /* Only (?:...) is supported right now. */
3096 FREE_STACK_RETURN (REG_BADPAT);
3102 if (!shy)
3103 regnum = ++bufp->re_nsub;
3104 else if (regnum)
3105 { /* It's actually not shy, but explicitly numbered. */
3106 shy = 0;
3107 if (regnum > bufp->re_nsub)
3108 bufp->re_nsub = regnum;
3109 else if (regnum > bufp->re_nsub
3110 /* Ideally, we'd want to check that the specified
3111 group can't have matched (i.e. all subgroups
3112 using the same regnum are in other branches of
3113 OR patterns), but we don't currently keep track
3114 of enough info to do that easily. */
3115 || group_in_compile_stack (compile_stack, regnum))
3116 FREE_STACK_RETURN (REG_BADPAT);
3118 else
3119 /* It's really shy. */
3120 regnum = - bufp->re_nsub;
3122 if (COMPILE_STACK_FULL)
3124 RETALLOC (compile_stack.stack, compile_stack.size << 1,
3125 compile_stack_elt_t);
3126 if (compile_stack.stack == NULL) return REG_ESPACE;
3128 compile_stack.size <<= 1;
3131 /* These are the values to restore when we hit end of this
3132 group. They are all relative offsets, so that if the
3133 whole pattern moves because of realloc, they will still
3134 be valid. */
3135 COMPILE_STACK_TOP.begalt_offset = begalt - bufp->buffer;
3136 COMPILE_STACK_TOP.fixup_alt_jump
3137 = fixup_alt_jump ? fixup_alt_jump - bufp->buffer + 1 : 0;
3138 COMPILE_STACK_TOP.laststart_offset = b - bufp->buffer;
3139 COMPILE_STACK_TOP.regnum = regnum;
3141 /* Do not push a start_memory for groups beyond the last one
3142 we can represent in the compiled pattern. */
3143 if (regnum <= MAX_REGNUM && regnum > 0)
3144 BUF_PUSH_2 (start_memory, regnum);
3146 compile_stack.avail++;
3148 fixup_alt_jump = 0;
3149 laststart = 0;
3150 begalt = b;
3151 /* If we've reached MAX_REGNUM groups, then this open
3152 won't actually generate any code, so we'll have to
3153 clear pending_exact explicitly. */
3154 pending_exact = 0;
3155 break;
3158 case ')':
3159 if (syntax & RE_NO_BK_PARENS) goto normal_backslash;
3161 if (COMPILE_STACK_EMPTY)
3163 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
3164 goto normal_backslash;
3165 else
3166 FREE_STACK_RETURN (REG_ERPAREN);
3169 handle_close:
3170 FIXUP_ALT_JUMP ();
3172 /* See similar code for backslashed left paren above. */
3173 if (COMPILE_STACK_EMPTY)
3175 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
3176 goto normal_char;
3177 else
3178 FREE_STACK_RETURN (REG_ERPAREN);
3181 /* Since we just checked for an empty stack above, this
3182 ``can't happen''. */
3183 assert (compile_stack.avail != 0);
3185 /* We don't just want to restore into `regnum', because
3186 later groups should continue to be numbered higher,
3187 as in `(ab)c(de)' -- the second group is #2. */
3188 regnum_t regnum;
3190 compile_stack.avail--;
3191 begalt = bufp->buffer + COMPILE_STACK_TOP.begalt_offset;
3192 fixup_alt_jump
3193 = COMPILE_STACK_TOP.fixup_alt_jump
3194 ? bufp->buffer + COMPILE_STACK_TOP.fixup_alt_jump - 1
3195 : 0;
3196 laststart = bufp->buffer + COMPILE_STACK_TOP.laststart_offset;
3197 regnum = COMPILE_STACK_TOP.regnum;
3198 /* If we've reached MAX_REGNUM groups, then this open
3199 won't actually generate any code, so we'll have to
3200 clear pending_exact explicitly. */
3201 pending_exact = 0;
3203 /* We're at the end of the group, so now we know how many
3204 groups were inside this one. */
3205 if (regnum <= MAX_REGNUM && regnum > 0)
3206 BUF_PUSH_2 (stop_memory, regnum);
3208 break;
3211 case '|': /* `\|'. */
3212 if (syntax & RE_LIMITED_OPS || syntax & RE_NO_BK_VBAR)
3213 goto normal_backslash;
3214 handle_alt:
3215 if (syntax & RE_LIMITED_OPS)
3216 goto normal_char;
3218 /* Insert before the previous alternative a jump which
3219 jumps to this alternative if the former fails. */
3220 GET_BUFFER_SPACE (3);
3221 INSERT_JUMP (on_failure_jump, begalt, b + 6);
3222 pending_exact = 0;
3223 b += 3;
3225 /* The alternative before this one has a jump after it
3226 which gets executed if it gets matched. Adjust that
3227 jump so it will jump to this alternative's analogous
3228 jump (put in below, which in turn will jump to the next
3229 (if any) alternative's such jump, etc.). The last such
3230 jump jumps to the correct final destination. A picture:
3231 _____ _____
3232 | | | |
3233 | v | v
3234 a | b | c
3236 If we are at `b', then fixup_alt_jump right now points to a
3237 three-byte space after `a'. We'll put in the jump, set
3238 fixup_alt_jump to right after `b', and leave behind three
3239 bytes which we'll fill in when we get to after `c'. */
3241 FIXUP_ALT_JUMP ();
3243 /* Mark and leave space for a jump after this alternative,
3244 to be filled in later either by next alternative or
3245 when know we're at the end of a series of alternatives. */
3246 fixup_alt_jump = b;
3247 GET_BUFFER_SPACE (3);
3248 b += 3;
3250 laststart = 0;
3251 begalt = b;
3252 break;
3255 case '{':
3256 /* If \{ is a literal. */
3257 if (!(syntax & RE_INTERVALS)
3258 /* If we're at `\{' and it's not the open-interval
3259 operator. */
3260 || (syntax & RE_NO_BK_BRACES))
3261 goto normal_backslash;
3263 handle_interval:
3265 /* If got here, then the syntax allows intervals. */
3267 /* At least (most) this many matches must be made. */
3268 int lower_bound = 0, upper_bound = -1;
3270 beg_interval = p;
3272 GET_INTERVAL_COUNT (lower_bound);
3274 if (c == ',')
3275 GET_INTERVAL_COUNT (upper_bound);
3276 else
3277 /* Interval such as `{1}' => match exactly once. */
3278 upper_bound = lower_bound;
3280 if (lower_bound < 0
3281 || (0 <= upper_bound && upper_bound < lower_bound))
3282 FREE_STACK_RETURN (REG_BADBR);
3284 if (!(syntax & RE_NO_BK_BRACES))
3286 if (c != '\\')
3287 FREE_STACK_RETURN (REG_BADBR);
3288 if (p == pend)
3289 FREE_STACK_RETURN (REG_EESCAPE);
3290 PATFETCH (c);
3293 if (c != '}')
3294 FREE_STACK_RETURN (REG_BADBR);
3296 /* We just parsed a valid interval. */
3298 /* If it's invalid to have no preceding re. */
3299 if (!laststart)
3301 if (syntax & RE_CONTEXT_INVALID_OPS)
3302 FREE_STACK_RETURN (REG_BADRPT);
3303 else if (syntax & RE_CONTEXT_INDEP_OPS)
3304 laststart = b;
3305 else
3306 goto unfetch_interval;
3309 if (upper_bound == 0)
3310 /* If the upper bound is zero, just drop the sub pattern
3311 altogether. */
3312 b = laststart;
3313 else if (lower_bound == 1 && upper_bound == 1)
3314 /* Just match it once: nothing to do here. */
3317 /* Otherwise, we have a nontrivial interval. When
3318 we're all done, the pattern will look like:
3319 set_number_at <jump count> <upper bound>
3320 set_number_at <succeed_n count> <lower bound>
3321 succeed_n <after jump addr> <succeed_n count>
3322 <body of loop>
3323 jump_n <succeed_n addr> <jump count>
3324 (The upper bound and `jump_n' are omitted if
3325 `upper_bound' is 1, though.) */
3326 else
3327 { /* If the upper bound is > 1, we need to insert
3328 more at the end of the loop. */
3329 unsigned int nbytes = (upper_bound < 0 ? 3
3330 : upper_bound > 1 ? 5 : 0);
3331 unsigned int startoffset = 0;
3333 GET_BUFFER_SPACE (20); /* We might use less. */
3335 if (lower_bound == 0)
3337 /* A succeed_n that starts with 0 is really a
3338 a simple on_failure_jump_loop. */
3339 INSERT_JUMP (on_failure_jump_loop, laststart,
3340 b + 3 + nbytes);
3341 b += 3;
3343 else
3345 /* Initialize lower bound of the `succeed_n', even
3346 though it will be set during matching by its
3347 attendant `set_number_at' (inserted next),
3348 because `re_compile_fastmap' needs to know.
3349 Jump to the `jump_n' we might insert below. */
3350 INSERT_JUMP2 (succeed_n, laststart,
3351 b + 5 + nbytes,
3352 lower_bound);
3353 b += 5;
3355 /* Code to initialize the lower bound. Insert
3356 before the `succeed_n'. The `5' is the last two
3357 bytes of this `set_number_at', plus 3 bytes of
3358 the following `succeed_n'. */
3359 insert_op2 (set_number_at, laststart, 5, lower_bound, b);
3360 b += 5;
3361 startoffset += 5;
3364 if (upper_bound < 0)
3366 /* A negative upper bound stands for infinity,
3367 in which case it degenerates to a plain jump. */
3368 STORE_JUMP (jump, b, laststart + startoffset);
3369 b += 3;
3371 else if (upper_bound > 1)
3372 { /* More than one repetition is allowed, so
3373 append a backward jump to the `succeed_n'
3374 that starts this interval.
3376 When we've reached this during matching,
3377 we'll have matched the interval once, so
3378 jump back only `upper_bound - 1' times. */
3379 STORE_JUMP2 (jump_n, b, laststart + startoffset,
3380 upper_bound - 1);
3381 b += 5;
3383 /* The location we want to set is the second
3384 parameter of the `jump_n'; that is `b-2' as
3385 an absolute address. `laststart' will be
3386 the `set_number_at' we're about to insert;
3387 `laststart+3' the number to set, the source
3388 for the relative address. But we are
3389 inserting into the middle of the pattern --
3390 so everything is getting moved up by 5.
3391 Conclusion: (b - 2) - (laststart + 3) + 5,
3392 i.e., b - laststart.
3394 We insert this at the beginning of the loop
3395 so that if we fail during matching, we'll
3396 reinitialize the bounds. */
3397 insert_op2 (set_number_at, laststart, b - laststart,
3398 upper_bound - 1, b);
3399 b += 5;
3402 pending_exact = 0;
3403 beg_interval = NULL;
3405 break;
3407 unfetch_interval:
3408 /* If an invalid interval, match the characters as literals. */
3409 assert (beg_interval);
3410 p = beg_interval;
3411 beg_interval = NULL;
3413 /* normal_char and normal_backslash need `c'. */
3414 c = '{';
3416 if (!(syntax & RE_NO_BK_BRACES))
3418 assert (p > pattern && p[-1] == '\\');
3419 goto normal_backslash;
3421 else
3422 goto normal_char;
3424 #ifdef emacs
3425 case '=':
3426 laststart = b;
3427 BUF_PUSH (at_dot);
3428 break;
3430 case 's':
3431 laststart = b;
3432 PATFETCH (c);
3433 BUF_PUSH_2 (syntaxspec, syntax_spec_code[c]);
3434 break;
3436 case 'S':
3437 laststart = b;
3438 PATFETCH (c);
3439 BUF_PUSH_2 (notsyntaxspec, syntax_spec_code[c]);
3440 break;
3442 case 'c':
3443 laststart = b;
3444 PATFETCH (c);
3445 BUF_PUSH_2 (categoryspec, c);
3446 break;
3448 case 'C':
3449 laststart = b;
3450 PATFETCH (c);
3451 BUF_PUSH_2 (notcategoryspec, c);
3452 break;
3453 #endif /* emacs */
3456 case 'w':
3457 if (syntax & RE_NO_GNU_OPS)
3458 goto normal_char;
3459 laststart = b;
3460 BUF_PUSH_2 (syntaxspec, Sword);
3461 break;
3464 case 'W':
3465 if (syntax & RE_NO_GNU_OPS)
3466 goto normal_char;
3467 laststart = b;
3468 BUF_PUSH_2 (notsyntaxspec, Sword);
3469 break;
3472 case '<':
3473 if (syntax & RE_NO_GNU_OPS)
3474 goto normal_char;
3475 laststart = b;
3476 BUF_PUSH (wordbeg);
3477 break;
3479 case '>':
3480 if (syntax & RE_NO_GNU_OPS)
3481 goto normal_char;
3482 laststart = b;
3483 BUF_PUSH (wordend);
3484 break;
3486 case '_':
3487 if (syntax & RE_NO_GNU_OPS)
3488 goto normal_char;
3489 laststart = b;
3490 PATFETCH (c);
3491 if (c == '<')
3492 BUF_PUSH (symbeg);
3493 else if (c == '>')
3494 BUF_PUSH (symend);
3495 else
3496 FREE_STACK_RETURN (REG_BADPAT);
3497 break;
3499 case 'b':
3500 if (syntax & RE_NO_GNU_OPS)
3501 goto normal_char;
3502 BUF_PUSH (wordbound);
3503 break;
3505 case 'B':
3506 if (syntax & RE_NO_GNU_OPS)
3507 goto normal_char;
3508 BUF_PUSH (notwordbound);
3509 break;
3511 case '`':
3512 if (syntax & RE_NO_GNU_OPS)
3513 goto normal_char;
3514 BUF_PUSH (begbuf);
3515 break;
3517 case '\'':
3518 if (syntax & RE_NO_GNU_OPS)
3519 goto normal_char;
3520 BUF_PUSH (endbuf);
3521 break;
3523 case '1': case '2': case '3': case '4': case '5':
3524 case '6': case '7': case '8': case '9':
3526 regnum_t reg;
3528 if (syntax & RE_NO_BK_REFS)
3529 goto normal_backslash;
3531 reg = c - '0';
3533 if (reg > bufp->re_nsub || reg < 1
3534 /* Can't back reference to a subexp before its end. */
3535 || group_in_compile_stack (compile_stack, reg))
3536 FREE_STACK_RETURN (REG_ESUBREG);
3538 laststart = b;
3539 BUF_PUSH_2 (duplicate, reg);
3541 break;
3544 case '+':
3545 case '?':
3546 if (syntax & RE_BK_PLUS_QM)
3547 goto handle_plus;
3548 else
3549 goto normal_backslash;
3551 default:
3552 normal_backslash:
3553 /* You might think it would be useful for \ to mean
3554 not to translate; but if we don't translate it
3555 it will never match anything. */
3556 goto normal_char;
3558 break;
3561 default:
3562 /* Expects the character in `c'. */
3563 normal_char:
3564 /* If no exactn currently being built. */
3565 if (!pending_exact
3567 /* If last exactn not at current position. */
3568 || pending_exact + *pending_exact + 1 != b
3570 /* We have only one byte following the exactn for the count. */
3571 || *pending_exact >= (1 << BYTEWIDTH) - MAX_MULTIBYTE_LENGTH
3573 /* If followed by a repetition operator. */
3574 || (p != pend && (*p == '*' || *p == '^'))
3575 || ((syntax & RE_BK_PLUS_QM)
3576 ? p + 1 < pend && *p == '\\' && (p[1] == '+' || p[1] == '?')
3577 : p != pend && (*p == '+' || *p == '?'))
3578 || ((syntax & RE_INTERVALS)
3579 && ((syntax & RE_NO_BK_BRACES)
3580 ? p != pend && *p == '{'
3581 : p + 1 < pend && p[0] == '\\' && p[1] == '{')))
3583 /* Start building a new exactn. */
3585 laststart = b;
3587 BUF_PUSH_2 (exactn, 0);
3588 pending_exact = b - 1;
3591 GET_BUFFER_SPACE (MAX_MULTIBYTE_LENGTH);
3593 int len;
3595 if (multibyte)
3597 c = TRANSLATE (c);
3598 len = CHAR_STRING (c, b);
3599 b += len;
3601 else
3603 c1 = RE_CHAR_TO_MULTIBYTE (c);
3604 if (! CHAR_BYTE8_P (c1))
3606 re_wchar_t c2 = TRANSLATE (c1);
3608 if (c1 != c2 && (c1 = RE_CHAR_TO_UNIBYTE (c2)) >= 0)
3609 c = c1;
3611 *b++ = c;
3612 len = 1;
3614 (*pending_exact) += len;
3617 break;
3618 } /* switch (c) */
3619 } /* while p != pend */
3622 /* Through the pattern now. */
3624 FIXUP_ALT_JUMP ();
3626 if (!COMPILE_STACK_EMPTY)
3627 FREE_STACK_RETURN (REG_EPAREN);
3629 /* If we don't want backtracking, force success
3630 the first time we reach the end of the compiled pattern. */
3631 if (!posix_backtracking)
3632 BUF_PUSH (succeed);
3634 /* We have succeeded; set the length of the buffer. */
3635 bufp->used = b - bufp->buffer;
3637 #ifdef DEBUG
3638 if (debug > 0)
3640 re_compile_fastmap (bufp);
3641 DEBUG_PRINT ("\nCompiled pattern: \n");
3642 print_compiled_pattern (bufp);
3644 debug--;
3645 #endif /* DEBUG */
3647 #ifndef MATCH_MAY_ALLOCATE
3648 /* Initialize the failure stack to the largest possible stack. This
3649 isn't necessary unless we're trying to avoid calling alloca in
3650 the search and match routines. */
3652 int num_regs = bufp->re_nsub + 1;
3654 if (fail_stack.size < emacs_re_max_failures * TYPICAL_FAILURE_SIZE)
3656 fail_stack.size = emacs_re_max_failures * TYPICAL_FAILURE_SIZE;
3657 falk_stack.stack = realloc (fail_stack.stack,
3658 fail_stack.size * sizeof *falk_stack.stack);
3661 regex_grow_registers (num_regs);
3663 #endif /* not MATCH_MAY_ALLOCATE */
3665 FREE_STACK_RETURN (REG_NOERROR);
3667 #ifdef emacs
3668 # undef syntax
3669 #else
3670 # undef posix_backtracking
3671 #endif
3672 } /* regex_compile */
3674 /* Subroutines for `regex_compile'. */
3676 /* Store OP at LOC followed by two-byte integer parameter ARG. */
3678 static void
3679 store_op1 (re_opcode_t op, unsigned char *loc, int arg)
3681 *loc = (unsigned char) op;
3682 STORE_NUMBER (loc + 1, arg);
3686 /* Like `store_op1', but for two two-byte parameters ARG1 and ARG2. */
3688 static void
3689 store_op2 (re_opcode_t op, unsigned char *loc, int arg1, int arg2)
3691 *loc = (unsigned char) op;
3692 STORE_NUMBER (loc + 1, arg1);
3693 STORE_NUMBER (loc + 3, arg2);
3697 /* Copy the bytes from LOC to END to open up three bytes of space at LOC
3698 for OP followed by two-byte integer parameter ARG. */
3700 static void
3701 insert_op1 (re_opcode_t op, unsigned char *loc, int arg, unsigned char *end)
3703 register unsigned char *pfrom = end;
3704 register unsigned char *pto = end + 3;
3706 while (pfrom != loc)
3707 *--pto = *--pfrom;
3709 store_op1 (op, loc, arg);
3713 /* Like `insert_op1', but for two two-byte parameters ARG1 and ARG2. */
3715 static void
3716 insert_op2 (re_opcode_t op, unsigned char *loc, int arg1, int arg2, unsigned char *end)
3718 register unsigned char *pfrom = end;
3719 register unsigned char *pto = end + 5;
3721 while (pfrom != loc)
3722 *--pto = *--pfrom;
3724 store_op2 (op, loc, arg1, arg2);
3728 /* P points to just after a ^ in PATTERN. Return true if that ^ comes
3729 after an alternative or a begin-subexpression. We assume there is at
3730 least one character before the ^. */
3732 static boolean
3733 at_begline_loc_p (const_re_char *pattern, const_re_char *p, reg_syntax_t syntax)
3735 re_char *prev = p - 2;
3736 boolean odd_backslashes;
3738 /* After a subexpression? */
3739 if (*prev == '(')
3740 odd_backslashes = (syntax & RE_NO_BK_PARENS) == 0;
3742 /* After an alternative? */
3743 else if (*prev == '|')
3744 odd_backslashes = (syntax & RE_NO_BK_VBAR) == 0;
3746 /* After a shy subexpression? */
3747 else if (*prev == ':' && (syntax & RE_SHY_GROUPS))
3749 /* Skip over optional regnum. */
3750 while (prev - 1 >= pattern && prev[-1] >= '0' && prev[-1] <= '9')
3751 --prev;
3753 if (!(prev - 2 >= pattern
3754 && prev[-1] == '?' && prev[-2] == '('))
3755 return false;
3756 prev -= 2;
3757 odd_backslashes = (syntax & RE_NO_BK_PARENS) == 0;
3759 else
3760 return false;
3762 /* Count the number of preceding backslashes. */
3763 p = prev;
3764 while (prev - 1 >= pattern && prev[-1] == '\\')
3765 --prev;
3766 return (p - prev) & odd_backslashes;
3770 /* The dual of at_begline_loc_p. This one is for $. We assume there is
3771 at least one character after the $, i.e., `P < PEND'. */
3773 static boolean
3774 at_endline_loc_p (const_re_char *p, const_re_char *pend, reg_syntax_t syntax)
3776 re_char *next = p;
3777 boolean next_backslash = *next == '\\';
3778 re_char *next_next = p + 1 < pend ? p + 1 : 0;
3780 return
3781 /* Before a subexpression? */
3782 (syntax & RE_NO_BK_PARENS ? *next == ')'
3783 : next_backslash && next_next && *next_next == ')')
3784 /* Before an alternative? */
3785 || (syntax & RE_NO_BK_VBAR ? *next == '|'
3786 : next_backslash && next_next && *next_next == '|');
3790 /* Returns true if REGNUM is in one of COMPILE_STACK's elements and
3791 false if it's not. */
3793 static boolean
3794 group_in_compile_stack (compile_stack_type compile_stack, regnum_t regnum)
3796 ssize_t this_element;
3798 for (this_element = compile_stack.avail - 1;
3799 this_element >= 0;
3800 this_element--)
3801 if (compile_stack.stack[this_element].regnum == regnum)
3802 return true;
3804 return false;
3807 /* analyze_first.
3808 If fastmap is non-NULL, go through the pattern and fill fastmap
3809 with all the possible leading chars. If fastmap is NULL, don't
3810 bother filling it up (obviously) and only return whether the
3811 pattern could potentially match the empty string.
3813 Return 1 if p..pend might match the empty string.
3814 Return 0 if p..pend matches at least one char.
3815 Return -1 if fastmap was not updated accurately. */
3817 static int
3818 analyze_first (const_re_char *p, const_re_char *pend, char *fastmap,
3819 const int multibyte)
3821 int j, k;
3822 boolean not;
3824 /* If all elements for base leading-codes in fastmap is set, this
3825 flag is set true. */
3826 boolean match_any_multibyte_characters = false;
3828 assert (p);
3830 /* The loop below works as follows:
3831 - It has a working-list kept in the PATTERN_STACK and which basically
3832 starts by only containing a pointer to the first operation.
3833 - If the opcode we're looking at is a match against some set of
3834 chars, then we add those chars to the fastmap and go on to the
3835 next work element from the worklist (done via `break').
3836 - If the opcode is a control operator on the other hand, we either
3837 ignore it (if it's meaningless at this point, such as `start_memory')
3838 or execute it (if it's a jump). If the jump has several destinations
3839 (i.e. `on_failure_jump'), then we push the other destination onto the
3840 worklist.
3841 We guarantee termination by ignoring backward jumps (more or less),
3842 so that `p' is monotonically increasing. More to the point, we
3843 never set `p' (or push) anything `<= p1'. */
3845 while (p < pend)
3847 /* `p1' is used as a marker of how far back a `on_failure_jump'
3848 can go without being ignored. It is normally equal to `p'
3849 (which prevents any backward `on_failure_jump') except right
3850 after a plain `jump', to allow patterns such as:
3851 0: jump 10
3852 3..9: <body>
3853 10: on_failure_jump 3
3854 as used for the *? operator. */
3855 re_char *p1 = p;
3857 switch (*p++)
3859 case succeed:
3860 return 1;
3862 case duplicate:
3863 /* If the first character has to match a backreference, that means
3864 that the group was empty (since it already matched). Since this
3865 is the only case that interests us here, we can assume that the
3866 backreference must match the empty string. */
3867 p++;
3868 continue;
3871 /* Following are the cases which match a character. These end
3872 with `break'. */
3874 case exactn:
3875 if (fastmap)
3877 /* If multibyte is nonzero, the first byte of each
3878 character is an ASCII or a leading code. Otherwise,
3879 each byte is a character. Thus, this works in both
3880 cases. */
3881 fastmap[p[1]] = 1;
3882 if (! multibyte)
3884 /* For the case of matching this unibyte regex
3885 against multibyte, we must set a leading code of
3886 the corresponding multibyte character. */
3887 int c = RE_CHAR_TO_MULTIBYTE (p[1]);
3889 fastmap[CHAR_LEADING_CODE (c)] = 1;
3892 break;
3895 case anychar:
3896 /* We could put all the chars except for \n (and maybe \0)
3897 but we don't bother since it is generally not worth it. */
3898 if (!fastmap) break;
3899 return -1;
3902 case charset_not:
3903 if (!fastmap) break;
3905 /* Chars beyond end of bitmap are possible matches. */
3906 for (j = CHARSET_BITMAP_SIZE (&p[-1]) * BYTEWIDTH;
3907 j < (1 << BYTEWIDTH); j++)
3908 fastmap[j] = 1;
3910 FALLTHROUGH;
3911 case charset:
3912 if (!fastmap) break;
3913 not = (re_opcode_t) *(p - 1) == charset_not;
3914 for (j = CHARSET_BITMAP_SIZE (&p[-1]) * BYTEWIDTH - 1, p++;
3915 j >= 0; j--)
3916 if (!!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))) ^ not)
3917 fastmap[j] = 1;
3919 #ifdef emacs
3920 if (/* Any leading code can possibly start a character
3921 which doesn't match the specified set of characters. */
3924 /* If we can match a character class, we can match any
3925 multibyte characters. */
3926 (CHARSET_RANGE_TABLE_EXISTS_P (&p[-2])
3927 && CHARSET_RANGE_TABLE_BITS (&p[-2]) != 0))
3930 if (match_any_multibyte_characters == false)
3932 for (j = MIN_MULTIBYTE_LEADING_CODE;
3933 j <= MAX_MULTIBYTE_LEADING_CODE; j++)
3934 fastmap[j] = 1;
3935 match_any_multibyte_characters = true;
3939 else if (!not && CHARSET_RANGE_TABLE_EXISTS_P (&p[-2])
3940 && match_any_multibyte_characters == false)
3942 /* Set fastmap[I] to 1 where I is a leading code of each
3943 multibyte character in the range table. */
3944 int c, count;
3945 unsigned char lc1, lc2;
3947 /* Make P points the range table. `+ 2' is to skip flag
3948 bits for a character class. */
3949 p += CHARSET_BITMAP_SIZE (&p[-2]) + 2;
3951 /* Extract the number of ranges in range table into COUNT. */
3952 EXTRACT_NUMBER_AND_INCR (count, p);
3953 for (; count > 0; count--, p += 3)
3955 /* Extract the start and end of each range. */
3956 EXTRACT_CHARACTER (c, p);
3957 lc1 = CHAR_LEADING_CODE (c);
3958 p += 3;
3959 EXTRACT_CHARACTER (c, p);
3960 lc2 = CHAR_LEADING_CODE (c);
3961 for (j = lc1; j <= lc2; j++)
3962 fastmap[j] = 1;
3965 #endif
3966 break;
3968 case syntaxspec:
3969 case notsyntaxspec:
3970 if (!fastmap) break;
3971 #ifndef emacs
3972 not = (re_opcode_t)p[-1] == notsyntaxspec;
3973 k = *p++;
3974 for (j = 0; j < (1 << BYTEWIDTH); j++)
3975 if ((SYNTAX (j) == (enum syntaxcode) k) ^ not)
3976 fastmap[j] = 1;
3977 break;
3978 #else /* emacs */
3979 /* This match depends on text properties. These end with
3980 aborting optimizations. */
3981 return -1;
3983 case categoryspec:
3984 case notcategoryspec:
3985 if (!fastmap) break;
3986 not = (re_opcode_t)p[-1] == notcategoryspec;
3987 k = *p++;
3988 for (j = (1 << BYTEWIDTH); j >= 0; j--)
3989 if ((CHAR_HAS_CATEGORY (j, k)) ^ not)
3990 fastmap[j] = 1;
3992 /* Any leading code can possibly start a character which
3993 has or doesn't has the specified category. */
3994 if (match_any_multibyte_characters == false)
3996 for (j = MIN_MULTIBYTE_LEADING_CODE;
3997 j <= MAX_MULTIBYTE_LEADING_CODE; j++)
3998 fastmap[j] = 1;
3999 match_any_multibyte_characters = true;
4001 break;
4003 /* All cases after this match the empty string. These end with
4004 `continue'. */
4006 case at_dot:
4007 #endif /* !emacs */
4008 case no_op:
4009 case begline:
4010 case endline:
4011 case begbuf:
4012 case endbuf:
4013 case wordbound:
4014 case notwordbound:
4015 case wordbeg:
4016 case wordend:
4017 case symbeg:
4018 case symend:
4019 continue;
4022 case jump:
4023 EXTRACT_NUMBER_AND_INCR (j, p);
4024 if (j < 0)
4025 /* Backward jumps can only go back to code that we've already
4026 visited. `re_compile' should make sure this is true. */
4027 break;
4028 p += j;
4029 switch (*p)
4031 case on_failure_jump:
4032 case on_failure_keep_string_jump:
4033 case on_failure_jump_loop:
4034 case on_failure_jump_nastyloop:
4035 case on_failure_jump_smart:
4036 p++;
4037 break;
4038 default:
4039 continue;
4041 /* Keep `p1' to allow the `on_failure_jump' we are jumping to
4042 to jump back to "just after here". */
4043 /* Fallthrough */
4045 case on_failure_jump:
4046 case on_failure_keep_string_jump:
4047 case on_failure_jump_nastyloop:
4048 case on_failure_jump_loop:
4049 case on_failure_jump_smart:
4050 EXTRACT_NUMBER_AND_INCR (j, p);
4051 if (p + j <= p1)
4052 ; /* Backward jump to be ignored. */
4053 else
4054 { /* We have to look down both arms.
4055 We first go down the "straight" path so as to minimize
4056 stack usage when going through alternatives. */
4057 int r = analyze_first (p, pend, fastmap, multibyte);
4058 if (r) return r;
4059 p += j;
4061 continue;
4064 case jump_n:
4065 /* This code simply does not properly handle forward jump_n. */
4066 DEBUG_STATEMENT (EXTRACT_NUMBER (j, p); assert (j < 0));
4067 p += 4;
4068 /* jump_n can either jump or fall through. The (backward) jump
4069 case has already been handled, so we only need to look at the
4070 fallthrough case. */
4071 continue;
4073 case succeed_n:
4074 /* If N == 0, it should be an on_failure_jump_loop instead. */
4075 DEBUG_STATEMENT (EXTRACT_NUMBER (j, p + 2); assert (j > 0));
4076 p += 4;
4077 /* We only care about one iteration of the loop, so we don't
4078 need to consider the case where this behaves like an
4079 on_failure_jump. */
4080 continue;
4083 case set_number_at:
4084 p += 4;
4085 continue;
4088 case start_memory:
4089 case stop_memory:
4090 p += 1;
4091 continue;
4094 default:
4095 abort (); /* We have listed all the cases. */
4096 } /* switch *p++ */
4098 /* Getting here means we have found the possible starting
4099 characters for one path of the pattern -- and that the empty
4100 string does not match. We need not follow this path further. */
4101 return 0;
4102 } /* while p */
4104 /* We reached the end without matching anything. */
4105 return 1;
4107 } /* analyze_first */
4109 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
4110 BUFP. A fastmap records which of the (1 << BYTEWIDTH) possible
4111 characters can start a string that matches the pattern. This fastmap
4112 is used by re_search to skip quickly over impossible starting points.
4114 Character codes above (1 << BYTEWIDTH) are not represented in the
4115 fastmap, but the leading codes are represented. Thus, the fastmap
4116 indicates which character sets could start a match.
4118 The caller must supply the address of a (1 << BYTEWIDTH)-byte data
4119 area as BUFP->fastmap.
4121 We set the `fastmap', `fastmap_accurate', and `can_be_null' fields in
4122 the pattern buffer.
4124 Returns 0 if we succeed, -2 if an internal error. */
4127 re_compile_fastmap (struct re_pattern_buffer *bufp)
4129 char *fastmap = bufp->fastmap;
4130 int analysis;
4132 assert (fastmap && bufp->buffer);
4134 memset (fastmap, 0, 1 << BYTEWIDTH); /* Assume nothing's valid. */
4135 bufp->fastmap_accurate = 1; /* It will be when we're done. */
4137 analysis = analyze_first (bufp->buffer, bufp->buffer + bufp->used,
4138 fastmap, RE_MULTIBYTE_P (bufp));
4139 bufp->can_be_null = (analysis != 0);
4140 return 0;
4141 } /* re_compile_fastmap */
4143 /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
4144 ENDS. Subsequent matches using PATTERN_BUFFER and REGS will use
4145 this memory for recording register information. STARTS and ENDS
4146 must be allocated using the malloc library routine, and must each
4147 be at least NUM_REGS * sizeof (regoff_t) bytes long.
4149 If NUM_REGS == 0, then subsequent matches should allocate their own
4150 register data.
4152 Unless this function is called, the first search or match using
4153 PATTERN_BUFFER will allocate its own register data, without
4154 freeing the old data. */
4156 void
4157 re_set_registers (struct re_pattern_buffer *bufp, struct re_registers *regs, unsigned int num_regs, regoff_t *starts, regoff_t *ends)
4159 if (num_regs)
4161 bufp->regs_allocated = REGS_REALLOCATE;
4162 regs->num_regs = num_regs;
4163 regs->start = starts;
4164 regs->end = ends;
4166 else
4168 bufp->regs_allocated = REGS_UNALLOCATED;
4169 regs->num_regs = 0;
4170 regs->start = regs->end = 0;
4173 WEAK_ALIAS (__re_set_registers, re_set_registers)
4175 /* Searching routines. */
4177 /* Like re_search_2, below, but only one string is specified, and
4178 doesn't let you say where to stop matching. */
4180 regoff_t
4181 re_search (struct re_pattern_buffer *bufp, const char *string, size_t size,
4182 ssize_t startpos, ssize_t range, struct re_registers *regs)
4184 return re_search_2 (bufp, NULL, 0, string, size, startpos, range,
4185 regs, size);
4187 WEAK_ALIAS (__re_search, re_search)
4189 /* Head address of virtual concatenation of string. */
4190 #define HEAD_ADDR_VSTRING(P) \
4191 (((P) >= size1 ? string2 : string1))
4193 /* Address of POS in the concatenation of virtual string. */
4194 #define POS_ADDR_VSTRING(POS) \
4195 (((POS) >= size1 ? string2 - size1 : string1) + (POS))
4197 /* Using the compiled pattern in BUFP->buffer, first tries to match the
4198 virtual concatenation of STRING1 and STRING2, starting first at index
4199 STARTPOS, then at STARTPOS + 1, and so on.
4201 STRING1 and STRING2 have length SIZE1 and SIZE2, respectively.
4203 RANGE is how far to scan while trying to match. RANGE = 0 means try
4204 only at STARTPOS; in general, the last start tried is STARTPOS +
4205 RANGE.
4207 In REGS, return the indices of the virtual concatenation of STRING1
4208 and STRING2 that matched the entire BUFP->buffer and its contained
4209 subexpressions.
4211 Do not consider matching one past the index STOP in the virtual
4212 concatenation of STRING1 and STRING2.
4214 We return either the position in the strings at which the match was
4215 found, -1 if no match, or -2 if error (such as failure
4216 stack overflow). */
4218 regoff_t
4219 re_search_2 (struct re_pattern_buffer *bufp, const char *str1, size_t size1,
4220 const char *str2, size_t size2, ssize_t startpos, ssize_t range,
4221 struct re_registers *regs, ssize_t stop)
4223 regoff_t val;
4224 re_char *string1 = (re_char *) str1;
4225 re_char *string2 = (re_char *) str2;
4226 register char *fastmap = bufp->fastmap;
4227 register RE_TRANSLATE_TYPE translate = bufp->translate;
4228 size_t total_size = size1 + size2;
4229 ssize_t endpos = startpos + range;
4230 boolean anchored_start;
4231 /* Nonzero if we are searching multibyte string. */
4232 const boolean multibyte = RE_TARGET_MULTIBYTE_P (bufp);
4234 /* Check for out-of-range STARTPOS. */
4235 if (startpos < 0 || startpos > total_size)
4236 return -1;
4238 /* Fix up RANGE if it might eventually take us outside
4239 the virtual concatenation of STRING1 and STRING2.
4240 Make sure we won't move STARTPOS below 0 or above TOTAL_SIZE. */
4241 if (endpos < 0)
4242 range = 0 - startpos;
4243 else if (endpos > total_size)
4244 range = total_size - startpos;
4246 /* If the search isn't to be a backwards one, don't waste time in a
4247 search for a pattern anchored at beginning of buffer. */
4248 if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == begbuf && range > 0)
4250 if (startpos > 0)
4251 return -1;
4252 else
4253 range = 0;
4256 #ifdef emacs
4257 /* In a forward search for something that starts with \=.
4258 don't keep searching past point. */
4259 if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == at_dot && range > 0)
4261 range = PT_BYTE - BEGV_BYTE - startpos;
4262 if (range < 0)
4263 return -1;
4265 #endif /* emacs */
4267 /* Update the fastmap now if not correct already. */
4268 if (fastmap && !bufp->fastmap_accurate)
4269 re_compile_fastmap (bufp);
4271 /* See whether the pattern is anchored. */
4272 anchored_start = (bufp->buffer[0] == begline);
4274 #ifdef emacs
4275 gl_state.object = re_match_object; /* Used by SYNTAX_TABLE_BYTE_TO_CHAR. */
4277 ssize_t charpos = SYNTAX_TABLE_BYTE_TO_CHAR (POS_AS_IN_BUFFER (startpos));
4279 SETUP_SYNTAX_TABLE_FOR_OBJECT (re_match_object, charpos, 1);
4281 #endif
4283 /* Loop through the string, looking for a place to start matching. */
4284 for (;;)
4286 /* If the pattern is anchored,
4287 skip quickly past places we cannot match.
4288 We don't bother to treat startpos == 0 specially
4289 because that case doesn't repeat. */
4290 if (anchored_start && startpos > 0)
4292 if (! ((startpos <= size1 ? string1[startpos - 1]
4293 : string2[startpos - size1 - 1])
4294 == '\n'))
4295 goto advance;
4298 /* If a fastmap is supplied, skip quickly over characters that
4299 cannot be the start of a match. If the pattern can match the
4300 null string, however, we don't need to skip characters; we want
4301 the first null string. */
4302 if (fastmap && startpos < total_size && !bufp->can_be_null)
4304 register re_char *d;
4305 register re_wchar_t buf_ch;
4307 d = POS_ADDR_VSTRING (startpos);
4309 if (range > 0) /* Searching forwards. */
4311 ssize_t irange = range, lim = 0;
4313 if (startpos < size1 && startpos + range >= size1)
4314 lim = range - (size1 - startpos);
4316 /* Written out as an if-else to avoid testing `translate'
4317 inside the loop. */
4318 if (RE_TRANSLATE_P (translate))
4320 if (multibyte)
4321 while (range > lim)
4323 int buf_charlen;
4325 buf_ch = STRING_CHAR_AND_LENGTH (d, buf_charlen);
4326 buf_ch = RE_TRANSLATE (translate, buf_ch);
4327 if (fastmap[CHAR_LEADING_CODE (buf_ch)])
4328 break;
4330 range -= buf_charlen;
4331 d += buf_charlen;
4333 else
4334 while (range > lim)
4336 register re_wchar_t ch, translated;
4338 buf_ch = *d;
4339 ch = RE_CHAR_TO_MULTIBYTE (buf_ch);
4340 translated = RE_TRANSLATE (translate, ch);
4341 if (translated != ch
4342 && (ch = RE_CHAR_TO_UNIBYTE (translated)) >= 0)
4343 buf_ch = ch;
4344 if (fastmap[buf_ch])
4345 break;
4346 d++;
4347 range--;
4350 else
4352 if (multibyte)
4353 while (range > lim)
4355 int buf_charlen;
4357 buf_ch = STRING_CHAR_AND_LENGTH (d, buf_charlen);
4358 if (fastmap[CHAR_LEADING_CODE (buf_ch)])
4359 break;
4360 range -= buf_charlen;
4361 d += buf_charlen;
4363 else
4364 while (range > lim && !fastmap[*d])
4366 d++;
4367 range--;
4370 startpos += irange - range;
4372 else /* Searching backwards. */
4374 if (multibyte)
4376 buf_ch = STRING_CHAR (d);
4377 buf_ch = TRANSLATE (buf_ch);
4378 if (! fastmap[CHAR_LEADING_CODE (buf_ch)])
4379 goto advance;
4381 else
4383 register re_wchar_t ch, translated;
4385 buf_ch = *d;
4386 ch = RE_CHAR_TO_MULTIBYTE (buf_ch);
4387 translated = TRANSLATE (ch);
4388 if (translated != ch
4389 && (ch = RE_CHAR_TO_UNIBYTE (translated)) >= 0)
4390 buf_ch = ch;
4391 if (! fastmap[TRANSLATE (buf_ch)])
4392 goto advance;
4397 /* If can't match the null string, and that's all we have left, fail. */
4398 if (range >= 0 && startpos == total_size && fastmap
4399 && !bufp->can_be_null)
4400 return -1;
4402 val = re_match_2_internal (bufp, string1, size1, string2, size2,
4403 startpos, regs, stop);
4405 if (val >= 0)
4406 return startpos;
4408 if (val == -2)
4409 return -2;
4411 advance:
4412 if (!range)
4413 break;
4414 else if (range > 0)
4416 /* Update STARTPOS to the next character boundary. */
4417 if (multibyte)
4419 re_char *p = POS_ADDR_VSTRING (startpos);
4420 int len = BYTES_BY_CHAR_HEAD (*p);
4422 range -= len;
4423 if (range < 0)
4424 break;
4425 startpos += len;
4427 else
4429 range--;
4430 startpos++;
4433 else
4435 range++;
4436 startpos--;
4438 /* Update STARTPOS to the previous character boundary. */
4439 if (multibyte)
4441 re_char *p = POS_ADDR_VSTRING (startpos) + 1;
4442 re_char *p0 = p;
4443 re_char *phead = HEAD_ADDR_VSTRING (startpos);
4445 /* Find the head of multibyte form. */
4446 PREV_CHAR_BOUNDARY (p, phead);
4447 range += p0 - 1 - p;
4448 if (range > 0)
4449 break;
4451 startpos -= p0 - 1 - p;
4455 return -1;
4456 } /* re_search_2 */
4457 WEAK_ALIAS (__re_search_2, re_search_2)
4459 /* Declarations and macros for re_match_2. */
4461 static int bcmp_translate (re_char *s1, re_char *s2,
4462 register ssize_t len,
4463 RE_TRANSLATE_TYPE translate,
4464 const int multibyte);
4466 /* This converts PTR, a pointer into one of the search strings `string1'
4467 and `string2' into an offset from the beginning of that string. */
4468 #define POINTER_TO_OFFSET(ptr) \
4469 (FIRST_STRING_P (ptr) \
4470 ? (ptr) - string1 \
4471 : (ptr) - string2 + (ptrdiff_t) size1)
4473 /* Call before fetching a character with *d. This switches over to
4474 string2 if necessary.
4475 Check re_match_2_internal for a discussion of why end_match_2 might
4476 not be within string2 (but be equal to end_match_1 instead). */
4477 #define PREFETCH() \
4478 while (d == dend) \
4480 /* End of string2 => fail. */ \
4481 if (dend == end_match_2) \
4482 goto fail; \
4483 /* End of string1 => advance to string2. */ \
4484 d = string2; \
4485 dend = end_match_2; \
4488 /* Call before fetching a char with *d if you already checked other limits.
4489 This is meant for use in lookahead operations like wordend, etc..
4490 where we might need to look at parts of the string that might be
4491 outside of the LIMITs (i.e past `stop'). */
4492 #define PREFETCH_NOLIMIT() \
4493 if (d == end1) \
4495 d = string2; \
4496 dend = end_match_2; \
4499 /* Test if at very beginning or at very end of the virtual concatenation
4500 of `string1' and `string2'. If only one string, it's `string2'. */
4501 #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2)
4502 #define AT_STRINGS_END(d) ((d) == end2)
4504 /* Disabled due to a compiler bug -- see comment at case wordbound */
4506 /* The comment at case wordbound is following one, but we don't use
4507 AT_WORD_BOUNDARY anymore to support multibyte form.
4509 The DEC Alpha C compiler 3.x generates incorrect code for the
4510 test WORDCHAR_P (d - 1) != WORDCHAR_P (d) in the expansion of
4511 AT_WORD_BOUNDARY, so this code is disabled. Expanding the
4512 macro and introducing temporary variables works around the bug. */
4514 #if 0
4515 /* Test if D points to a character which is word-constituent. We have
4516 two special cases to check for: if past the end of string1, look at
4517 the first character in string2; and if before the beginning of
4518 string2, look at the last character in string1. */
4519 #define WORDCHAR_P(d) \
4520 (SYNTAX ((d) == end1 ? *string2 \
4521 : (d) == string2 - 1 ? *(end1 - 1) : *(d)) \
4522 == Sword)
4524 /* Test if the character before D and the one at D differ with respect
4525 to being word-constituent. */
4526 #define AT_WORD_BOUNDARY(d) \
4527 (AT_STRINGS_BEG (d) || AT_STRINGS_END (d) \
4528 || WORDCHAR_P (d - 1) != WORDCHAR_P (d))
4529 #endif
4531 /* Free everything we malloc. */
4532 #ifdef MATCH_MAY_ALLOCATE
4533 # define FREE_VAR(var) \
4534 do { \
4535 if (var) \
4537 REGEX_FREE (var); \
4538 var = NULL; \
4540 } while (0)
4541 # define FREE_VARIABLES() \
4542 do { \
4543 REGEX_FREE_STACK (fail_stack.stack); \
4544 FREE_VAR (regstart); \
4545 FREE_VAR (regend); \
4546 FREE_VAR (best_regstart); \
4547 FREE_VAR (best_regend); \
4548 REGEX_SAFE_FREE (); \
4549 } while (0)
4550 #else
4551 # define FREE_VARIABLES() ((void)0) /* Do nothing! But inhibit gcc warning. */
4552 #endif /* not MATCH_MAY_ALLOCATE */
4555 /* Optimization routines. */
4557 /* If the operation is a match against one or more chars,
4558 return a pointer to the next operation, else return NULL. */
4559 static re_char *
4560 skip_one_char (const_re_char *p)
4562 switch (*p++)
4564 case anychar:
4565 break;
4567 case exactn:
4568 p += *p + 1;
4569 break;
4571 case charset_not:
4572 case charset:
4573 if (CHARSET_RANGE_TABLE_EXISTS_P (p - 1))
4575 int mcnt;
4576 p = CHARSET_RANGE_TABLE (p - 1);
4577 EXTRACT_NUMBER_AND_INCR (mcnt, p);
4578 p = CHARSET_RANGE_TABLE_END (p, mcnt);
4580 else
4581 p += 1 + CHARSET_BITMAP_SIZE (p - 1);
4582 break;
4584 case syntaxspec:
4585 case notsyntaxspec:
4586 #ifdef emacs
4587 case categoryspec:
4588 case notcategoryspec:
4589 #endif /* emacs */
4590 p++;
4591 break;
4593 default:
4594 p = NULL;
4596 return p;
4600 /* Jump over non-matching operations. */
4601 static re_char *
4602 skip_noops (const_re_char *p, const_re_char *pend)
4604 int mcnt;
4605 while (p < pend)
4607 switch (*p)
4609 case start_memory:
4610 case stop_memory:
4611 p += 2; break;
4612 case no_op:
4613 p += 1; break;
4614 case jump:
4615 p += 1;
4616 EXTRACT_NUMBER_AND_INCR (mcnt, p);
4617 p += mcnt;
4618 break;
4619 default:
4620 return p;
4623 assert (p == pend);
4624 return p;
4627 /* Test if C matches charset op. *PP points to the charset or charset_not
4628 opcode. When the function finishes, *PP will be advanced past that opcode.
4629 C is character to test (possibly after translations) and CORIG is original
4630 character (i.e. without any translations). UNIBYTE denotes whether c is
4631 unibyte or multibyte character. */
4632 static bool
4633 execute_charset (const_re_char **pp, unsigned c, unsigned corig, bool unibyte)
4635 re_char *p = *pp, *rtp = NULL;
4636 bool not = (re_opcode_t) *p == charset_not;
4638 if (CHARSET_RANGE_TABLE_EXISTS_P (p))
4640 int count;
4641 rtp = CHARSET_RANGE_TABLE (p);
4642 EXTRACT_NUMBER_AND_INCR (count, rtp);
4643 *pp = CHARSET_RANGE_TABLE_END ((rtp), (count));
4645 else
4646 *pp += 2 + CHARSET_BITMAP_SIZE (p);
4648 if (unibyte && c < (1 << BYTEWIDTH))
4649 { /* Lookup bitmap. */
4650 /* Cast to `unsigned' instead of `unsigned char' in
4651 case the bit list is a full 32 bytes long. */
4652 if (c < (unsigned) (CHARSET_BITMAP_SIZE (p) * BYTEWIDTH)
4653 && p[2 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
4654 return !not;
4656 #ifdef emacs
4657 else if (rtp)
4659 int class_bits = CHARSET_RANGE_TABLE_BITS (p);
4660 re_wchar_t range_start, range_end;
4662 /* Sort tests by the most commonly used classes with some adjustment to which
4663 tests are easiest to perform. Take a look at comment in re_wctype_parse
4664 for table with frequencies of character class names. */
4666 if ((class_bits & BIT_MULTIBYTE) ||
4667 (class_bits & BIT_ALNUM && ISALNUM (c)) ||
4668 (class_bits & BIT_ALPHA && ISALPHA (c)) ||
4669 (class_bits & BIT_SPACE && ISSPACE (c)) ||
4670 (class_bits & BIT_BLANK && ISBLANK (c)) ||
4671 (class_bits & BIT_WORD && ISWORD (c)) ||
4672 ((class_bits & BIT_UPPER) &&
4673 (ISUPPER (c) || (corig != c &&
4674 c == downcase (corig) && ISLOWER (c)))) ||
4675 ((class_bits & BIT_LOWER) &&
4676 (ISLOWER (c) || (corig != c &&
4677 c == upcase (corig) && ISUPPER(c)))) ||
4678 (class_bits & BIT_PUNCT && ISPUNCT (c)) ||
4679 (class_bits & BIT_GRAPH && ISGRAPH (c)) ||
4680 (class_bits & BIT_PRINT && ISPRINT (c)))
4681 return !not;
4683 for (p = *pp; rtp < p; rtp += 2 * 3)
4685 EXTRACT_CHARACTER (range_start, rtp);
4686 EXTRACT_CHARACTER (range_end, rtp + 3);
4687 if (range_start <= c && c <= range_end)
4688 return !not;
4691 #endif /* emacs */
4692 return not;
4695 /* Non-zero if "p1 matches something" implies "p2 fails". */
4696 static int
4697 mutually_exclusive_p (struct re_pattern_buffer *bufp, const_re_char *p1,
4698 const_re_char *p2)
4700 re_opcode_t op2;
4701 const boolean multibyte = RE_MULTIBYTE_P (bufp);
4702 unsigned char *pend = bufp->buffer + bufp->used;
4704 assert (p1 >= bufp->buffer && p1 < pend
4705 && p2 >= bufp->buffer && p2 <= pend);
4707 /* Skip over open/close-group commands.
4708 If what follows this loop is a ...+ construct,
4709 look at what begins its body, since we will have to
4710 match at least one of that. */
4711 p2 = skip_noops (p2, pend);
4712 /* The same skip can be done for p1, except that this function
4713 is only used in the case where p1 is a simple match operator. */
4714 /* p1 = skip_noops (p1, pend); */
4716 assert (p1 >= bufp->buffer && p1 < pend
4717 && p2 >= bufp->buffer && p2 <= pend);
4719 op2 = p2 == pend ? succeed : *p2;
4721 switch (op2)
4723 case succeed:
4724 case endbuf:
4725 /* If we're at the end of the pattern, we can change. */
4726 if (skip_one_char (p1))
4728 DEBUG_PRINT (" End of pattern: fast loop.\n");
4729 return 1;
4731 break;
4733 case endline:
4734 case exactn:
4736 register re_wchar_t c
4737 = (re_opcode_t) *p2 == endline ? '\n'
4738 : RE_STRING_CHAR (p2 + 2, multibyte);
4740 if ((re_opcode_t) *p1 == exactn)
4742 if (c != RE_STRING_CHAR (p1 + 2, multibyte))
4744 DEBUG_PRINT (" '%c' != '%c' => fast loop.\n", c, p1[2]);
4745 return 1;
4749 else if ((re_opcode_t) *p1 == charset
4750 || (re_opcode_t) *p1 == charset_not)
4752 if (!execute_charset (&p1, c, c, !multibyte || IS_REAL_ASCII (c)))
4754 DEBUG_PRINT (" No match => fast loop.\n");
4755 return 1;
4758 else if ((re_opcode_t) *p1 == anychar
4759 && c == '\n')
4761 DEBUG_PRINT (" . != \\n => fast loop.\n");
4762 return 1;
4765 break;
4767 case charset:
4769 if ((re_opcode_t) *p1 == exactn)
4770 /* Reuse the code above. */
4771 return mutually_exclusive_p (bufp, p2, p1);
4773 /* It is hard to list up all the character in charset
4774 P2 if it includes multibyte character. Give up in
4775 such case. */
4776 else if (!multibyte || !CHARSET_RANGE_TABLE_EXISTS_P (p2))
4778 /* Now, we are sure that P2 has no range table.
4779 So, for the size of bitmap in P2, `p2[1]' is
4780 enough. But P1 may have range table, so the
4781 size of bitmap table of P1 is extracted by
4782 using macro `CHARSET_BITMAP_SIZE'.
4784 In a multibyte case, we know that all the character
4785 listed in P2 is ASCII. In a unibyte case, P1 has only a
4786 bitmap table. So, in both cases, it is enough to test
4787 only the bitmap table of P1. */
4789 if ((re_opcode_t) *p1 == charset)
4791 int idx;
4792 /* We win if the charset inside the loop
4793 has no overlap with the one after the loop. */
4794 for (idx = 0;
4795 (idx < (int) p2[1]
4796 && idx < CHARSET_BITMAP_SIZE (p1));
4797 idx++)
4798 if ((p2[2 + idx] & p1[2 + idx]) != 0)
4799 break;
4801 if (idx == p2[1]
4802 || idx == CHARSET_BITMAP_SIZE (p1))
4804 DEBUG_PRINT (" No match => fast loop.\n");
4805 return 1;
4808 else if ((re_opcode_t) *p1 == charset_not)
4810 int idx;
4811 /* We win if the charset_not inside the loop lists
4812 every character listed in the charset after. */
4813 for (idx = 0; idx < (int) p2[1]; idx++)
4814 if (! (p2[2 + idx] == 0
4815 || (idx < CHARSET_BITMAP_SIZE (p1)
4816 && ((p2[2 + idx] & ~ p1[2 + idx]) == 0))))
4817 break;
4819 if (idx == p2[1])
4821 DEBUG_PRINT (" No match => fast loop.\n");
4822 return 1;
4827 break;
4829 case charset_not:
4830 switch (*p1)
4832 case exactn:
4833 case charset:
4834 /* Reuse the code above. */
4835 return mutually_exclusive_p (bufp, p2, p1);
4836 case charset_not:
4837 /* When we have two charset_not, it's very unlikely that
4838 they don't overlap. The union of the two sets of excluded
4839 chars should cover all possible chars, which, as a matter of
4840 fact, is virtually impossible in multibyte buffers. */
4841 break;
4843 break;
4845 case wordend:
4846 return ((re_opcode_t) *p1 == syntaxspec && p1[1] == Sword);
4847 case symend:
4848 return ((re_opcode_t) *p1 == syntaxspec
4849 && (p1[1] == Ssymbol || p1[1] == Sword));
4850 case notsyntaxspec:
4851 return ((re_opcode_t) *p1 == syntaxspec && p1[1] == p2[1]);
4853 case wordbeg:
4854 return ((re_opcode_t) *p1 == notsyntaxspec && p1[1] == Sword);
4855 case symbeg:
4856 return ((re_opcode_t) *p1 == notsyntaxspec
4857 && (p1[1] == Ssymbol || p1[1] == Sword));
4858 case syntaxspec:
4859 return ((re_opcode_t) *p1 == notsyntaxspec && p1[1] == p2[1]);
4861 case wordbound:
4862 return (((re_opcode_t) *p1 == notsyntaxspec
4863 || (re_opcode_t) *p1 == syntaxspec)
4864 && p1[1] == Sword);
4866 #ifdef emacs
4867 case categoryspec:
4868 return ((re_opcode_t) *p1 == notcategoryspec && p1[1] == p2[1]);
4869 case notcategoryspec:
4870 return ((re_opcode_t) *p1 == categoryspec && p1[1] == p2[1]);
4871 #endif /* emacs */
4873 default:
4877 /* Safe default. */
4878 return 0;
4882 /* Matching routines. */
4884 #ifndef emacs /* Emacs never uses this. */
4885 /* re_match is like re_match_2 except it takes only a single string. */
4887 regoff_t
4888 re_match (struct re_pattern_buffer *bufp, const char *string,
4889 size_t size, ssize_t pos, struct re_registers *regs)
4891 regoff_t result = re_match_2_internal (bufp, NULL, 0, (re_char *) string,
4892 size, pos, regs, size);
4893 return result;
4895 WEAK_ALIAS (__re_match, re_match)
4896 #endif /* not emacs */
4898 /* re_match_2 matches the compiled pattern in BUFP against the
4899 the (virtual) concatenation of STRING1 and STRING2 (of length SIZE1
4900 and SIZE2, respectively). We start matching at POS, and stop
4901 matching at STOP.
4903 If REGS is non-null and the `no_sub' field of BUFP is nonzero, we
4904 store offsets for the substring each group matched in REGS. See the
4905 documentation for exactly how many groups we fill.
4907 We return -1 if no match, -2 if an internal error (such as the
4908 failure stack overflowing). Otherwise, we return the length of the
4909 matched substring. */
4911 regoff_t
4912 re_match_2 (struct re_pattern_buffer *bufp, const char *string1,
4913 size_t size1, const char *string2, size_t size2, ssize_t pos,
4914 struct re_registers *regs, ssize_t stop)
4916 regoff_t result;
4918 #ifdef emacs
4919 ssize_t charpos;
4920 gl_state.object = re_match_object; /* Used by SYNTAX_TABLE_BYTE_TO_CHAR. */
4921 charpos = SYNTAX_TABLE_BYTE_TO_CHAR (POS_AS_IN_BUFFER (pos));
4922 SETUP_SYNTAX_TABLE_FOR_OBJECT (re_match_object, charpos, 1);
4923 #endif
4925 result = re_match_2_internal (bufp, (re_char *) string1, size1,
4926 (re_char *) string2, size2,
4927 pos, regs, stop);
4928 return result;
4930 WEAK_ALIAS (__re_match_2, re_match_2)
4933 /* This is a separate function so that we can force an alloca cleanup
4934 afterwards. */
4935 static regoff_t
4936 re_match_2_internal (struct re_pattern_buffer *bufp, const_re_char *string1,
4937 size_t size1, const_re_char *string2, size_t size2,
4938 ssize_t pos, struct re_registers *regs, ssize_t stop)
4940 /* General temporaries. */
4941 int mcnt;
4942 size_t reg;
4944 /* Just past the end of the corresponding string. */
4945 re_char *end1, *end2;
4947 /* Pointers into string1 and string2, just past the last characters in
4948 each to consider matching. */
4949 re_char *end_match_1, *end_match_2;
4951 /* Where we are in the data, and the end of the current string. */
4952 re_char *d, *dend;
4954 /* Used sometimes to remember where we were before starting matching
4955 an operator so that we can go back in case of failure. This "atomic"
4956 behavior of matching opcodes is indispensable to the correctness
4957 of the on_failure_keep_string_jump optimization. */
4958 re_char *dfail;
4960 /* Where we are in the pattern, and the end of the pattern. */
4961 re_char *p = bufp->buffer;
4962 re_char *pend = p + bufp->used;
4964 /* We use this to map every character in the string. */
4965 RE_TRANSLATE_TYPE translate = bufp->translate;
4967 /* Nonzero if BUFP is setup from a multibyte regex. */
4968 const boolean multibyte = RE_MULTIBYTE_P (bufp);
4970 /* Nonzero if STRING1/STRING2 are multibyte. */
4971 const boolean target_multibyte = RE_TARGET_MULTIBYTE_P (bufp);
4973 /* Failure point stack. Each place that can handle a failure further
4974 down the line pushes a failure point on this stack. It consists of
4975 regstart, and regend for all registers corresponding to
4976 the subexpressions we're currently inside, plus the number of such
4977 registers, and, finally, two char *'s. The first char * is where
4978 to resume scanning the pattern; the second one is where to resume
4979 scanning the strings. */
4980 #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global. */
4981 fail_stack_type fail_stack;
4982 #endif
4983 #ifdef DEBUG_COMPILES_ARGUMENTS
4984 unsigned nfailure_points_pushed = 0, nfailure_points_popped = 0;
4985 #endif
4987 #if defined REL_ALLOC && defined REGEX_MALLOC
4988 /* This holds the pointer to the failure stack, when
4989 it is allocated relocatably. */
4990 fail_stack_elt_t *failure_stack_ptr;
4991 #endif
4993 /* We fill all the registers internally, independent of what we
4994 return, for use in backreferences. The number here includes
4995 an element for register zero. */
4996 size_t num_regs = bufp->re_nsub + 1;
4998 /* Information on the contents of registers. These are pointers into
4999 the input strings; they record just what was matched (on this
5000 attempt) by a subexpression part of the pattern, that is, the
5001 regnum-th regstart pointer points to where in the pattern we began
5002 matching and the regnum-th regend points to right after where we
5003 stopped matching the regnum-th subexpression. (The zeroth register
5004 keeps track of what the whole pattern matches.) */
5005 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global. */
5006 re_char **regstart, **regend;
5007 #endif
5009 /* The following record the register info as found in the above
5010 variables when we find a match better than any we've seen before.
5011 This happens as we backtrack through the failure points, which in
5012 turn happens only if we have not yet matched the entire string. */
5013 unsigned best_regs_set = false;
5014 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global. */
5015 re_char **best_regstart, **best_regend;
5016 #endif
5018 /* Logically, this is `best_regend[0]'. But we don't want to have to
5019 allocate space for that if we're not allocating space for anything
5020 else (see below). Also, we never need info about register 0 for
5021 any of the other register vectors, and it seems rather a kludge to
5022 treat `best_regend' differently than the rest. So we keep track of
5023 the end of the best match so far in a separate variable. We
5024 initialize this to NULL so that when we backtrack the first time
5025 and need to test it, it's not garbage. */
5026 re_char *match_end = NULL;
5028 #ifdef DEBUG_COMPILES_ARGUMENTS
5029 /* Counts the total number of registers pushed. */
5030 unsigned num_regs_pushed = 0;
5031 #endif
5033 DEBUG_PRINT ("\n\nEntering re_match_2.\n");
5035 REGEX_USE_SAFE_ALLOCA;
5037 INIT_FAIL_STACK ();
5039 #ifdef MATCH_MAY_ALLOCATE
5040 /* Do not bother to initialize all the register variables if there are
5041 no groups in the pattern, as it takes a fair amount of time. If
5042 there are groups, we include space for register 0 (the whole
5043 pattern), even though we never use it, since it simplifies the
5044 array indexing. We should fix this. */
5045 if (bufp->re_nsub)
5047 regstart = REGEX_TALLOC (num_regs, re_char *);
5048 regend = REGEX_TALLOC (num_regs, re_char *);
5049 best_regstart = REGEX_TALLOC (num_regs, re_char *);
5050 best_regend = REGEX_TALLOC (num_regs, re_char *);
5052 if (!(regstart && regend && best_regstart && best_regend))
5054 FREE_VARIABLES ();
5055 return -2;
5058 else
5060 /* We must initialize all our variables to NULL, so that
5061 `FREE_VARIABLES' doesn't try to free them. */
5062 regstart = regend = best_regstart = best_regend = NULL;
5064 #endif /* MATCH_MAY_ALLOCATE */
5066 /* The starting position is bogus. */
5067 if (pos < 0 || pos > size1 + size2)
5069 FREE_VARIABLES ();
5070 return -1;
5073 /* Initialize subexpression text positions to -1 to mark ones that no
5074 start_memory/stop_memory has been seen for. Also initialize the
5075 register information struct. */
5076 for (reg = 1; reg < num_regs; reg++)
5077 regstart[reg] = regend[reg] = NULL;
5079 /* We move `string1' into `string2' if the latter's empty -- but not if
5080 `string1' is null. */
5081 if (size2 == 0 && string1 != NULL)
5083 string2 = string1;
5084 size2 = size1;
5085 string1 = 0;
5086 size1 = 0;
5088 end1 = string1 + size1;
5089 end2 = string2 + size2;
5091 /* `p' scans through the pattern as `d' scans through the data.
5092 `dend' is the end of the input string that `d' points within. `d'
5093 is advanced into the following input string whenever necessary, but
5094 this happens before fetching; therefore, at the beginning of the
5095 loop, `d' can be pointing at the end of a string, but it cannot
5096 equal `string2'. */
5097 if (pos >= size1)
5099 /* Only match within string2. */
5100 d = string2 + pos - size1;
5101 dend = end_match_2 = string2 + stop - size1;
5102 end_match_1 = end1; /* Just to give it a value. */
5104 else
5106 if (stop < size1)
5108 /* Only match within string1. */
5109 end_match_1 = string1 + stop;
5110 /* BEWARE!
5111 When we reach end_match_1, PREFETCH normally switches to string2.
5112 But in the present case, this means that just doing a PREFETCH
5113 makes us jump from `stop' to `gap' within the string.
5114 What we really want here is for the search to stop as
5115 soon as we hit end_match_1. That's why we set end_match_2
5116 to end_match_1 (since PREFETCH fails as soon as we hit
5117 end_match_2). */
5118 end_match_2 = end_match_1;
5120 else
5121 { /* It's important to use this code when stop == size so that
5122 moving `d' from end1 to string2 will not prevent the d == dend
5123 check from catching the end of string. */
5124 end_match_1 = end1;
5125 end_match_2 = string2 + stop - size1;
5127 d = string1 + pos;
5128 dend = end_match_1;
5131 DEBUG_PRINT ("The compiled pattern is: ");
5132 DEBUG_PRINT_COMPILED_PATTERN (bufp, p, pend);
5133 DEBUG_PRINT ("The string to match is: \"");
5134 DEBUG_PRINT_DOUBLE_STRING (d, string1, size1, string2, size2);
5135 DEBUG_PRINT ("\"\n");
5137 /* This loops over pattern commands. It exits by returning from the
5138 function if the match is complete, or it drops through if the match
5139 fails at this starting point in the input data. */
5140 for (;;)
5142 DEBUG_PRINT ("\n%p: ", p);
5144 if (p == pend)
5146 /* End of pattern means we might have succeeded. */
5147 DEBUG_PRINT ("end of pattern ... ");
5149 /* If we haven't matched the entire string, and we want the
5150 longest match, try backtracking. */
5151 if (d != end_match_2)
5153 /* True if this match is the best seen so far. */
5154 bool best_match_p;
5157 /* True if this match ends in the same string (string1
5158 or string2) as the best previous match. */
5159 bool same_str_p = (FIRST_STRING_P (match_end)
5160 == FIRST_STRING_P (d));
5162 /* AIX compiler got confused when this was combined
5163 with the previous declaration. */
5164 if (same_str_p)
5165 best_match_p = d > match_end;
5166 else
5167 best_match_p = !FIRST_STRING_P (d);
5170 DEBUG_PRINT ("backtracking.\n");
5172 if (!FAIL_STACK_EMPTY ())
5173 { /* More failure points to try. */
5175 /* If exceeds best match so far, save it. */
5176 if (!best_regs_set || best_match_p)
5178 best_regs_set = true;
5179 match_end = d;
5181 DEBUG_PRINT ("\nSAVING match as best so far.\n");
5183 for (reg = 1; reg < num_regs; reg++)
5185 best_regstart[reg] = regstart[reg];
5186 best_regend[reg] = regend[reg];
5189 goto fail;
5192 /* If no failure points, don't restore garbage. And if
5193 last match is real best match, don't restore second
5194 best one. */
5195 else if (best_regs_set && !best_match_p)
5197 restore_best_regs:
5198 /* Restore best match. It may happen that `dend ==
5199 end_match_1' while the restored d is in string2.
5200 For example, the pattern `x.*y.*z' against the
5201 strings `x-' and `y-z-', if the two strings are
5202 not consecutive in memory. */
5203 DEBUG_PRINT ("Restoring best registers.\n");
5205 d = match_end;
5206 dend = ((d >= string1 && d <= end1)
5207 ? end_match_1 : end_match_2);
5209 for (reg = 1; reg < num_regs; reg++)
5211 regstart[reg] = best_regstart[reg];
5212 regend[reg] = best_regend[reg];
5215 } /* d != end_match_2 */
5217 succeed_label:
5218 DEBUG_PRINT ("Accepting match.\n");
5220 /* If caller wants register contents data back, do it. */
5221 if (regs && !bufp->no_sub)
5223 /* Have the register data arrays been allocated? */
5224 if (bufp->regs_allocated == REGS_UNALLOCATED)
5225 { /* No. So allocate them with malloc. We need one
5226 extra element beyond `num_regs' for the `-1' marker
5227 GNU code uses. */
5228 regs->num_regs = max (RE_NREGS, num_regs + 1);
5229 regs->start = TALLOC (regs->num_regs, regoff_t);
5230 regs->end = TALLOC (regs->num_regs, regoff_t);
5231 if (regs->start == NULL || regs->end == NULL)
5233 FREE_VARIABLES ();
5234 return -2;
5236 bufp->regs_allocated = REGS_REALLOCATE;
5238 else if (bufp->regs_allocated == REGS_REALLOCATE)
5239 { /* Yes. If we need more elements than were already
5240 allocated, reallocate them. If we need fewer, just
5241 leave it alone. */
5242 if (regs->num_regs < num_regs + 1)
5244 regs->num_regs = num_regs + 1;
5245 RETALLOC (regs->start, regs->num_regs, regoff_t);
5246 RETALLOC (regs->end, regs->num_regs, regoff_t);
5247 if (regs->start == NULL || regs->end == NULL)
5249 FREE_VARIABLES ();
5250 return -2;
5254 else
5256 /* These braces fend off a "empty body in an else-statement"
5257 warning under GCC when assert expands to nothing. */
5258 assert (bufp->regs_allocated == REGS_FIXED);
5261 /* Convert the pointer data in `regstart' and `regend' to
5262 indices. Register zero has to be set differently,
5263 since we haven't kept track of any info for it. */
5264 if (regs->num_regs > 0)
5266 regs->start[0] = pos;
5267 regs->end[0] = POINTER_TO_OFFSET (d);
5270 /* Go through the first `min (num_regs, regs->num_regs)'
5271 registers, since that is all we initialized. */
5272 for (reg = 1; reg < min (num_regs, regs->num_regs); reg++)
5274 if (REG_UNSET (regstart[reg]) || REG_UNSET (regend[reg]))
5275 regs->start[reg] = regs->end[reg] = -1;
5276 else
5278 regs->start[reg] = POINTER_TO_OFFSET (regstart[reg]);
5279 regs->end[reg] = POINTER_TO_OFFSET (regend[reg]);
5283 /* If the regs structure we return has more elements than
5284 were in the pattern, set the extra elements to -1. If
5285 we (re)allocated the registers, this is the case,
5286 because we always allocate enough to have at least one
5287 -1 at the end. */
5288 for (reg = num_regs; reg < regs->num_regs; reg++)
5289 regs->start[reg] = regs->end[reg] = -1;
5290 } /* regs && !bufp->no_sub */
5292 DEBUG_PRINT ("%u failure points pushed, %u popped (%u remain).\n",
5293 nfailure_points_pushed, nfailure_points_popped,
5294 nfailure_points_pushed - nfailure_points_popped);
5295 DEBUG_PRINT ("%u registers pushed.\n", num_regs_pushed);
5297 ptrdiff_t dcnt = POINTER_TO_OFFSET (d) - pos;
5299 DEBUG_PRINT ("Returning %td from re_match_2.\n", dcnt);
5301 FREE_VARIABLES ();
5302 return dcnt;
5305 /* Otherwise match next pattern command. */
5306 switch (*p++)
5308 /* Ignore these. Used to ignore the n of succeed_n's which
5309 currently have n == 0. */
5310 case no_op:
5311 DEBUG_PRINT ("EXECUTING no_op.\n");
5312 break;
5314 case succeed:
5315 DEBUG_PRINT ("EXECUTING succeed.\n");
5316 goto succeed_label;
5318 /* Match the next n pattern characters exactly. The following
5319 byte in the pattern defines n, and the n bytes after that
5320 are the characters to match. */
5321 case exactn:
5322 mcnt = *p++;
5323 DEBUG_PRINT ("EXECUTING exactn %d.\n", mcnt);
5325 /* Remember the start point to rollback upon failure. */
5326 dfail = d;
5328 #ifndef emacs
5329 /* This is written out as an if-else so we don't waste time
5330 testing `translate' inside the loop. */
5331 if (RE_TRANSLATE_P (translate))
5334 PREFETCH ();
5335 if (RE_TRANSLATE (translate, *d) != *p++)
5337 d = dfail;
5338 goto fail;
5340 d++;
5342 while (--mcnt);
5343 else
5346 PREFETCH ();
5347 if (*d++ != *p++)
5349 d = dfail;
5350 goto fail;
5353 while (--mcnt);
5354 #else /* emacs */
5355 /* The cost of testing `translate' is comparatively small. */
5356 if (target_multibyte)
5359 int pat_charlen, buf_charlen;
5360 int pat_ch, buf_ch;
5362 PREFETCH ();
5363 if (multibyte)
5364 pat_ch = STRING_CHAR_AND_LENGTH (p, pat_charlen);
5365 else
5367 pat_ch = RE_CHAR_TO_MULTIBYTE (*p);
5368 pat_charlen = 1;
5370 buf_ch = STRING_CHAR_AND_LENGTH (d, buf_charlen);
5372 if (TRANSLATE (buf_ch) != pat_ch)
5374 d = dfail;
5375 goto fail;
5378 p += pat_charlen;
5379 d += buf_charlen;
5380 mcnt -= pat_charlen;
5382 while (mcnt > 0);
5383 else
5386 int pat_charlen;
5387 int pat_ch, buf_ch;
5389 PREFETCH ();
5390 if (multibyte)
5392 pat_ch = STRING_CHAR_AND_LENGTH (p, pat_charlen);
5393 pat_ch = RE_CHAR_TO_UNIBYTE (pat_ch);
5395 else
5397 pat_ch = *p;
5398 pat_charlen = 1;
5400 buf_ch = RE_CHAR_TO_MULTIBYTE (*d);
5401 if (! CHAR_BYTE8_P (buf_ch))
5403 buf_ch = TRANSLATE (buf_ch);
5404 buf_ch = RE_CHAR_TO_UNIBYTE (buf_ch);
5405 if (buf_ch < 0)
5406 buf_ch = *d;
5408 else
5409 buf_ch = *d;
5410 if (buf_ch != pat_ch)
5412 d = dfail;
5413 goto fail;
5415 p += pat_charlen;
5416 d++;
5418 while (--mcnt);
5419 #endif
5420 break;
5423 /* Match any character except possibly a newline or a null. */
5424 case anychar:
5426 int buf_charlen;
5427 re_wchar_t buf_ch;
5428 reg_syntax_t syntax;
5430 DEBUG_PRINT ("EXECUTING anychar.\n");
5432 PREFETCH ();
5433 buf_ch = RE_STRING_CHAR_AND_LENGTH (d, buf_charlen,
5434 target_multibyte);
5435 buf_ch = TRANSLATE (buf_ch);
5437 #ifdef emacs
5438 syntax = RE_SYNTAX_EMACS;
5439 #else
5440 syntax = bufp->syntax;
5441 #endif
5443 if ((!(syntax & RE_DOT_NEWLINE) && buf_ch == '\n')
5444 || ((syntax & RE_DOT_NOT_NULL) && buf_ch == '\000'))
5445 goto fail;
5447 DEBUG_PRINT (" Matched \"%d\".\n", *d);
5448 d += buf_charlen;
5450 break;
5453 case charset:
5454 case charset_not:
5456 register unsigned int c, corig;
5457 int len;
5459 /* Whether matching against a unibyte character. */
5460 boolean unibyte_char = false;
5462 DEBUG_PRINT ("EXECUTING charset%s.\n",
5463 (re_opcode_t) *(p - 1) == charset_not ? "_not" : "");
5465 PREFETCH ();
5466 corig = c = RE_STRING_CHAR_AND_LENGTH (d, len, target_multibyte);
5467 if (target_multibyte)
5469 int c1;
5471 c = TRANSLATE (c);
5472 c1 = RE_CHAR_TO_UNIBYTE (c);
5473 if (c1 >= 0)
5475 unibyte_char = true;
5476 c = c1;
5479 else
5481 int c1 = RE_CHAR_TO_MULTIBYTE (c);
5483 if (! CHAR_BYTE8_P (c1))
5485 c1 = TRANSLATE (c1);
5486 c1 = RE_CHAR_TO_UNIBYTE (c1);
5487 if (c1 >= 0)
5489 unibyte_char = true;
5490 c = c1;
5493 else
5494 unibyte_char = true;
5497 p -= 1;
5498 if (!execute_charset (&p, c, corig, unibyte_char))
5499 goto fail;
5501 d += len;
5503 break;
5506 /* The beginning of a group is represented by start_memory.
5507 The argument is the register number. The text
5508 matched within the group is recorded (in the internal
5509 registers data structure) under the register number. */
5510 case start_memory:
5511 DEBUG_PRINT ("EXECUTING start_memory %d:\n", *p);
5513 /* In case we need to undo this operation (via backtracking). */
5514 PUSH_FAILURE_REG (*p);
5516 regstart[*p] = d;
5517 regend[*p] = NULL; /* probably unnecessary. -sm */
5518 DEBUG_PRINT (" regstart: %td\n", POINTER_TO_OFFSET (regstart[*p]));
5520 /* Move past the register number and inner group count. */
5521 p += 1;
5522 break;
5525 /* The stop_memory opcode represents the end of a group. Its
5526 argument is the same as start_memory's: the register number. */
5527 case stop_memory:
5528 DEBUG_PRINT ("EXECUTING stop_memory %d:\n", *p);
5530 assert (!REG_UNSET (regstart[*p]));
5531 /* Strictly speaking, there should be code such as:
5533 assert (REG_UNSET (regend[*p]));
5534 PUSH_FAILURE_REGSTOP ((unsigned int)*p);
5536 But the only info to be pushed is regend[*p] and it is known to
5537 be UNSET, so there really isn't anything to push.
5538 Not pushing anything, on the other hand deprives us from the
5539 guarantee that regend[*p] is UNSET since undoing this operation
5540 will not reset its value properly. This is not important since
5541 the value will only be read on the next start_memory or at
5542 the very end and both events can only happen if this stop_memory
5543 is *not* undone. */
5545 regend[*p] = d;
5546 DEBUG_PRINT (" regend: %td\n", POINTER_TO_OFFSET (regend[*p]));
5548 /* Move past the register number and the inner group count. */
5549 p += 1;
5550 break;
5553 /* \<digit> has been turned into a `duplicate' command which is
5554 followed by the numeric value of <digit> as the register number. */
5555 case duplicate:
5557 register re_char *d2, *dend2;
5558 int regno = *p++; /* Get which register to match against. */
5559 DEBUG_PRINT ("EXECUTING duplicate %d.\n", regno);
5561 /* Can't back reference a group which we've never matched. */
5562 if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
5563 goto fail;
5565 /* Where in input to try to start matching. */
5566 d2 = regstart[regno];
5568 /* Remember the start point to rollback upon failure. */
5569 dfail = d;
5571 /* Where to stop matching; if both the place to start and
5572 the place to stop matching are in the same string, then
5573 set to the place to stop, otherwise, for now have to use
5574 the end of the first string. */
5576 dend2 = ((FIRST_STRING_P (regstart[regno])
5577 == FIRST_STRING_P (regend[regno]))
5578 ? regend[regno] : end_match_1);
5579 for (;;)
5581 ptrdiff_t dcnt;
5583 /* If necessary, advance to next segment in register
5584 contents. */
5585 while (d2 == dend2)
5587 if (dend2 == end_match_2) break;
5588 if (dend2 == regend[regno]) break;
5590 /* End of string1 => advance to string2. */
5591 d2 = string2;
5592 dend2 = regend[regno];
5594 /* At end of register contents => success */
5595 if (d2 == dend2) break;
5597 /* If necessary, advance to next segment in data. */
5598 PREFETCH ();
5600 /* How many characters left in this segment to match. */
5601 dcnt = dend - d;
5603 /* Want how many consecutive characters we can match in
5604 one shot, so, if necessary, adjust the count. */
5605 if (dcnt > dend2 - d2)
5606 dcnt = dend2 - d2;
5608 /* Compare that many; failure if mismatch, else move
5609 past them. */
5610 if (RE_TRANSLATE_P (translate)
5611 ? bcmp_translate (d, d2, dcnt, translate, target_multibyte)
5612 : memcmp (d, d2, dcnt))
5614 d = dfail;
5615 goto fail;
5617 d += dcnt, d2 += dcnt;
5620 break;
5623 /* begline matches the empty string at the beginning of the string
5624 (unless `not_bol' is set in `bufp'), and after newlines. */
5625 case begline:
5626 DEBUG_PRINT ("EXECUTING begline.\n");
5628 if (AT_STRINGS_BEG (d))
5630 if (!bufp->not_bol) break;
5632 else
5634 unsigned c;
5635 GET_CHAR_BEFORE_2 (c, d, string1, end1, string2, end2);
5636 if (c == '\n')
5637 break;
5639 /* In all other cases, we fail. */
5640 goto fail;
5643 /* endline is the dual of begline. */
5644 case endline:
5645 DEBUG_PRINT ("EXECUTING endline.\n");
5647 if (AT_STRINGS_END (d))
5649 if (!bufp->not_eol) break;
5651 else
5653 PREFETCH_NOLIMIT ();
5654 if (*d == '\n')
5655 break;
5657 goto fail;
5660 /* Match at the very beginning of the data. */
5661 case begbuf:
5662 DEBUG_PRINT ("EXECUTING begbuf.\n");
5663 if (AT_STRINGS_BEG (d))
5664 break;
5665 goto fail;
5668 /* Match at the very end of the data. */
5669 case endbuf:
5670 DEBUG_PRINT ("EXECUTING endbuf.\n");
5671 if (AT_STRINGS_END (d))
5672 break;
5673 goto fail;
5676 /* on_failure_keep_string_jump is used to optimize `.*\n'. It
5677 pushes NULL as the value for the string on the stack. Then
5678 `POP_FAILURE_POINT' will keep the current value for the
5679 string, instead of restoring it. To see why, consider
5680 matching `foo\nbar' against `.*\n'. The .* matches the foo;
5681 then the . fails against the \n. But the next thing we want
5682 to do is match the \n against the \n; if we restored the
5683 string value, we would be back at the foo.
5685 Because this is used only in specific cases, we don't need to
5686 check all the things that `on_failure_jump' does, to make
5687 sure the right things get saved on the stack. Hence we don't
5688 share its code. The only reason to push anything on the
5689 stack at all is that otherwise we would have to change
5690 `anychar's code to do something besides goto fail in this
5691 case; that seems worse than this. */
5692 case on_failure_keep_string_jump:
5693 EXTRACT_NUMBER_AND_INCR (mcnt, p);
5694 DEBUG_PRINT ("EXECUTING on_failure_keep_string_jump %d (to %p):\n",
5695 mcnt, p + mcnt);
5697 PUSH_FAILURE_POINT (p - 3, NULL);
5698 break;
5700 /* A nasty loop is introduced by the non-greedy *? and +?.
5701 With such loops, the stack only ever contains one failure point
5702 at a time, so that a plain on_failure_jump_loop kind of
5703 cycle detection cannot work. Worse yet, such a detection
5704 can not only fail to detect a cycle, but it can also wrongly
5705 detect a cycle (between different instantiations of the same
5706 loop).
5707 So the method used for those nasty loops is a little different:
5708 We use a special cycle-detection-stack-frame which is pushed
5709 when the on_failure_jump_nastyloop failure-point is *popped*.
5710 This special frame thus marks the beginning of one iteration
5711 through the loop and we can hence easily check right here
5712 whether something matched between the beginning and the end of
5713 the loop. */
5714 case on_failure_jump_nastyloop:
5715 EXTRACT_NUMBER_AND_INCR (mcnt, p);
5716 DEBUG_PRINT ("EXECUTING on_failure_jump_nastyloop %d (to %p):\n",
5717 mcnt, p + mcnt);
5719 assert ((re_opcode_t)p[-4] == no_op);
5721 int cycle = 0;
5722 CHECK_INFINITE_LOOP (p - 4, d);
5723 if (!cycle)
5724 /* If there's a cycle, just continue without pushing
5725 this failure point. The failure point is the "try again"
5726 option, which shouldn't be tried.
5727 We want (x?)*?y\1z to match both xxyz and xxyxz. */
5728 PUSH_FAILURE_POINT (p - 3, d);
5730 break;
5732 /* Simple loop detecting on_failure_jump: just check on the
5733 failure stack if the same spot was already hit earlier. */
5734 case on_failure_jump_loop:
5735 on_failure:
5736 EXTRACT_NUMBER_AND_INCR (mcnt, p);
5737 DEBUG_PRINT ("EXECUTING on_failure_jump_loop %d (to %p):\n",
5738 mcnt, p + mcnt);
5740 int cycle = 0;
5741 CHECK_INFINITE_LOOP (p - 3, d);
5742 if (cycle)
5743 /* If there's a cycle, get out of the loop, as if the matching
5744 had failed. We used to just `goto fail' here, but that was
5745 aborting the search a bit too early: we want to keep the
5746 empty-loop-match and keep matching after the loop.
5747 We want (x?)*y\1z to match both xxyz and xxyxz. */
5748 p += mcnt;
5749 else
5750 PUSH_FAILURE_POINT (p - 3, d);
5752 break;
5755 /* Uses of on_failure_jump:
5757 Each alternative starts with an on_failure_jump that points
5758 to the beginning of the next alternative. Each alternative
5759 except the last ends with a jump that in effect jumps past
5760 the rest of the alternatives. (They really jump to the
5761 ending jump of the following alternative, because tensioning
5762 these jumps is a hassle.)
5764 Repeats start with an on_failure_jump that points past both
5765 the repetition text and either the following jump or
5766 pop_failure_jump back to this on_failure_jump. */
5767 case on_failure_jump:
5768 EXTRACT_NUMBER_AND_INCR (mcnt, p);
5769 DEBUG_PRINT ("EXECUTING on_failure_jump %d (to %p):\n",
5770 mcnt, p + mcnt);
5772 PUSH_FAILURE_POINT (p -3, d);
5773 break;
5775 /* This operation is used for greedy *.
5776 Compare the beginning of the repeat with what in the
5777 pattern follows its end. If we can establish that there
5778 is nothing that they would both match, i.e., that we
5779 would have to backtrack because of (as in, e.g., `a*a')
5780 then we can use a non-backtracking loop based on
5781 on_failure_keep_string_jump instead of on_failure_jump. */
5782 case on_failure_jump_smart:
5783 EXTRACT_NUMBER_AND_INCR (mcnt, p);
5784 DEBUG_PRINT ("EXECUTING on_failure_jump_smart %d (to %p).\n",
5785 mcnt, p + mcnt);
5787 re_char *p1 = p; /* Next operation. */
5788 /* Here, we discard `const', making re_match non-reentrant. */
5789 unsigned char *p2 = (unsigned char *) p + mcnt; /* Jump dest. */
5790 unsigned char *p3 = (unsigned char *) p - 3; /* opcode location. */
5792 p -= 3; /* Reset so that we will re-execute the
5793 instruction once it's been changed. */
5795 EXTRACT_NUMBER (mcnt, p2 - 2);
5797 /* Ensure this is a indeed the trivial kind of loop
5798 we are expecting. */
5799 assert (skip_one_char (p1) == p2 - 3);
5800 assert ((re_opcode_t) p2[-3] == jump && p2 + mcnt == p);
5801 DEBUG_STATEMENT (debug += 2);
5802 if (mutually_exclusive_p (bufp, p1, p2))
5804 /* Use a fast `on_failure_keep_string_jump' loop. */
5805 DEBUG_PRINT (" smart exclusive => fast loop.\n");
5806 *p3 = (unsigned char) on_failure_keep_string_jump;
5807 STORE_NUMBER (p2 - 2, mcnt + 3);
5809 else
5811 /* Default to a safe `on_failure_jump' loop. */
5812 DEBUG_PRINT (" smart default => slow loop.\n");
5813 *p3 = (unsigned char) on_failure_jump;
5815 DEBUG_STATEMENT (debug -= 2);
5817 break;
5819 /* Unconditionally jump (without popping any failure points). */
5820 case jump:
5821 unconditional_jump:
5822 maybe_quit ();
5823 EXTRACT_NUMBER_AND_INCR (mcnt, p); /* Get the amount to jump. */
5824 DEBUG_PRINT ("EXECUTING jump %d ", mcnt);
5825 p += mcnt; /* Do the jump. */
5826 DEBUG_PRINT ("(to %p).\n", p);
5827 break;
5830 /* Have to succeed matching what follows at least n times.
5831 After that, handle like `on_failure_jump'. */
5832 case succeed_n:
5833 /* Signedness doesn't matter since we only compare MCNT to 0. */
5834 EXTRACT_NUMBER (mcnt, p + 2);
5835 DEBUG_PRINT ("EXECUTING succeed_n %d.\n", mcnt);
5837 /* Originally, mcnt is how many times we HAVE to succeed. */
5838 if (mcnt != 0)
5840 /* Here, we discard `const', making re_match non-reentrant. */
5841 unsigned char *p2 = (unsigned char *) p + 2; /* counter loc. */
5842 mcnt--;
5843 p += 4;
5844 PUSH_NUMBER (p2, mcnt);
5846 else
5847 /* The two bytes encoding mcnt == 0 are two no_op opcodes. */
5848 goto on_failure;
5849 break;
5851 case jump_n:
5852 /* Signedness doesn't matter since we only compare MCNT to 0. */
5853 EXTRACT_NUMBER (mcnt, p + 2);
5854 DEBUG_PRINT ("EXECUTING jump_n %d.\n", mcnt);
5856 /* Originally, this is how many times we CAN jump. */
5857 if (mcnt != 0)
5859 /* Here, we discard `const', making re_match non-reentrant. */
5860 unsigned char *p2 = (unsigned char *) p + 2; /* counter loc. */
5861 mcnt--;
5862 PUSH_NUMBER (p2, mcnt);
5863 goto unconditional_jump;
5865 /* If don't have to jump any more, skip over the rest of command. */
5866 else
5867 p += 4;
5868 break;
5870 case set_number_at:
5872 unsigned char *p2; /* Location of the counter. */
5873 DEBUG_PRINT ("EXECUTING set_number_at.\n");
5875 EXTRACT_NUMBER_AND_INCR (mcnt, p);
5876 /* Here, we discard `const', making re_match non-reentrant. */
5877 p2 = (unsigned char *) p + mcnt;
5878 /* Signedness doesn't matter since we only copy MCNT's bits. */
5879 EXTRACT_NUMBER_AND_INCR (mcnt, p);
5880 DEBUG_PRINT (" Setting %p to %d.\n", p2, mcnt);
5881 PUSH_NUMBER (p2, mcnt);
5882 break;
5885 case wordbound:
5886 case notwordbound:
5888 boolean not = (re_opcode_t) *(p - 1) == notwordbound;
5889 DEBUG_PRINT ("EXECUTING %swordbound.\n", not ? "not" : "");
5891 /* We SUCCEED (or FAIL) in one of the following cases: */
5893 /* Case 1: D is at the beginning or the end of string. */
5894 if (AT_STRINGS_BEG (d) || AT_STRINGS_END (d))
5895 not = !not;
5896 else
5898 /* C1 is the character before D, S1 is the syntax of C1, C2
5899 is the character at D, and S2 is the syntax of C2. */
5900 re_wchar_t c1, c2;
5901 int s1, s2;
5902 int dummy;
5903 #ifdef emacs
5904 ssize_t offset = PTR_TO_OFFSET (d - 1);
5905 ssize_t charpos = SYNTAX_TABLE_BYTE_TO_CHAR (offset);
5906 UPDATE_SYNTAX_TABLE_FAST (charpos);
5907 #endif
5908 GET_CHAR_BEFORE_2 (c1, d, string1, end1, string2, end2);
5909 s1 = SYNTAX (c1);
5910 #ifdef emacs
5911 UPDATE_SYNTAX_TABLE_FORWARD_FAST (charpos + 1);
5912 #endif
5913 PREFETCH_NOLIMIT ();
5914 GET_CHAR_AFTER (c2, d, dummy);
5915 s2 = SYNTAX (c2);
5917 if (/* Case 2: Only one of S1 and S2 is Sword. */
5918 ((s1 == Sword) != (s2 == Sword))
5919 /* Case 3: Both of S1 and S2 are Sword, and macro
5920 WORD_BOUNDARY_P (C1, C2) returns nonzero. */
5921 || ((s1 == Sword) && WORD_BOUNDARY_P (c1, c2)))
5922 not = !not;
5924 if (not)
5925 break;
5926 else
5927 goto fail;
5930 case wordbeg:
5931 DEBUG_PRINT ("EXECUTING wordbeg.\n");
5933 /* We FAIL in one of the following cases: */
5935 /* Case 1: D is at the end of string. */
5936 if (AT_STRINGS_END (d))
5937 goto fail;
5938 else
5940 /* C1 is the character before D, S1 is the syntax of C1, C2
5941 is the character at D, and S2 is the syntax of C2. */
5942 re_wchar_t c1, c2;
5943 int s1, s2;
5944 int dummy;
5945 #ifdef emacs
5946 ssize_t offset = PTR_TO_OFFSET (d);
5947 ssize_t charpos = SYNTAX_TABLE_BYTE_TO_CHAR (offset);
5948 UPDATE_SYNTAX_TABLE_FAST (charpos);
5949 #endif
5950 PREFETCH ();
5951 GET_CHAR_AFTER (c2, d, dummy);
5952 s2 = SYNTAX (c2);
5954 /* Case 2: S2 is not Sword. */
5955 if (s2 != Sword)
5956 goto fail;
5958 /* Case 3: D is not at the beginning of string ... */
5959 if (!AT_STRINGS_BEG (d))
5961 GET_CHAR_BEFORE_2 (c1, d, string1, end1, string2, end2);
5962 #ifdef emacs
5963 UPDATE_SYNTAX_TABLE_BACKWARD (charpos - 1);
5964 #endif
5965 s1 = SYNTAX (c1);
5967 /* ... and S1 is Sword, and WORD_BOUNDARY_P (C1, C2)
5968 returns 0. */
5969 if ((s1 == Sword) && !WORD_BOUNDARY_P (c1, c2))
5970 goto fail;
5973 break;
5975 case wordend:
5976 DEBUG_PRINT ("EXECUTING wordend.\n");
5978 /* We FAIL in one of the following cases: */
5980 /* Case 1: D is at the beginning of string. */
5981 if (AT_STRINGS_BEG (d))
5982 goto fail;
5983 else
5985 /* C1 is the character before D, S1 is the syntax of C1, C2
5986 is the character at D, and S2 is the syntax of C2. */
5987 re_wchar_t c1, c2;
5988 int s1, s2;
5989 int dummy;
5990 #ifdef emacs
5991 ssize_t offset = PTR_TO_OFFSET (d) - 1;
5992 ssize_t charpos = SYNTAX_TABLE_BYTE_TO_CHAR (offset);
5993 UPDATE_SYNTAX_TABLE_FAST (charpos);
5994 #endif
5995 GET_CHAR_BEFORE_2 (c1, d, string1, end1, string2, end2);
5996 s1 = SYNTAX (c1);
5998 /* Case 2: S1 is not Sword. */
5999 if (s1 != Sword)
6000 goto fail;
6002 /* Case 3: D is not at the end of string ... */
6003 if (!AT_STRINGS_END (d))
6005 PREFETCH_NOLIMIT ();
6006 GET_CHAR_AFTER (c2, d, dummy);
6007 #ifdef emacs
6008 UPDATE_SYNTAX_TABLE_FORWARD_FAST (charpos);
6009 #endif
6010 s2 = SYNTAX (c2);
6012 /* ... and S2 is Sword, and WORD_BOUNDARY_P (C1, C2)
6013 returns 0. */
6014 if ((s2 == Sword) && !WORD_BOUNDARY_P (c1, c2))
6015 goto fail;
6018 break;
6020 case symbeg:
6021 DEBUG_PRINT ("EXECUTING symbeg.\n");
6023 /* We FAIL in one of the following cases: */
6025 /* Case 1: D is at the end of string. */
6026 if (AT_STRINGS_END (d))
6027 goto fail;
6028 else
6030 /* C1 is the character before D, S1 is the syntax of C1, C2
6031 is the character at D, and S2 is the syntax of C2. */
6032 re_wchar_t c1, c2;
6033 int s1, s2;
6034 #ifdef emacs
6035 ssize_t offset = PTR_TO_OFFSET (d);
6036 ssize_t charpos = SYNTAX_TABLE_BYTE_TO_CHAR (offset);
6037 UPDATE_SYNTAX_TABLE_FAST (charpos);
6038 #endif
6039 PREFETCH ();
6040 c2 = RE_STRING_CHAR (d, target_multibyte);
6041 s2 = SYNTAX (c2);
6043 /* Case 2: S2 is neither Sword nor Ssymbol. */
6044 if (s2 != Sword && s2 != Ssymbol)
6045 goto fail;
6047 /* Case 3: D is not at the beginning of string ... */
6048 if (!AT_STRINGS_BEG (d))
6050 GET_CHAR_BEFORE_2 (c1, d, string1, end1, string2, end2);
6051 #ifdef emacs
6052 UPDATE_SYNTAX_TABLE_BACKWARD (charpos - 1);
6053 #endif
6054 s1 = SYNTAX (c1);
6056 /* ... and S1 is Sword or Ssymbol. */
6057 if (s1 == Sword || s1 == Ssymbol)
6058 goto fail;
6061 break;
6063 case symend:
6064 DEBUG_PRINT ("EXECUTING symend.\n");
6066 /* We FAIL in one of the following cases: */
6068 /* Case 1: D is at the beginning of string. */
6069 if (AT_STRINGS_BEG (d))
6070 goto fail;
6071 else
6073 /* C1 is the character before D, S1 is the syntax of C1, C2
6074 is the character at D, and S2 is the syntax of C2. */
6075 re_wchar_t c1, c2;
6076 int s1, s2;
6077 #ifdef emacs
6078 ssize_t offset = PTR_TO_OFFSET (d) - 1;
6079 ssize_t charpos = SYNTAX_TABLE_BYTE_TO_CHAR (offset);
6080 UPDATE_SYNTAX_TABLE_FAST (charpos);
6081 #endif
6082 GET_CHAR_BEFORE_2 (c1, d, string1, end1, string2, end2);
6083 s1 = SYNTAX (c1);
6085 /* Case 2: S1 is neither Ssymbol nor Sword. */
6086 if (s1 != Sword && s1 != Ssymbol)
6087 goto fail;
6089 /* Case 3: D is not at the end of string ... */
6090 if (!AT_STRINGS_END (d))
6092 PREFETCH_NOLIMIT ();
6093 c2 = RE_STRING_CHAR (d, target_multibyte);
6094 #ifdef emacs
6095 UPDATE_SYNTAX_TABLE_FORWARD_FAST (charpos + 1);
6096 #endif
6097 s2 = SYNTAX (c2);
6099 /* ... and S2 is Sword or Ssymbol. */
6100 if (s2 == Sword || s2 == Ssymbol)
6101 goto fail;
6104 break;
6106 case syntaxspec:
6107 case notsyntaxspec:
6109 boolean not = (re_opcode_t) *(p - 1) == notsyntaxspec;
6110 mcnt = *p++;
6111 DEBUG_PRINT ("EXECUTING %ssyntaxspec %d.\n", not ? "not" : "",
6112 mcnt);
6113 PREFETCH ();
6114 #ifdef emacs
6116 ssize_t offset = PTR_TO_OFFSET (d);
6117 ssize_t pos1 = SYNTAX_TABLE_BYTE_TO_CHAR (offset);
6118 UPDATE_SYNTAX_TABLE_FAST (pos1);
6120 #endif
6122 int len;
6123 re_wchar_t c;
6125 GET_CHAR_AFTER (c, d, len);
6126 if ((SYNTAX (c) != (enum syntaxcode) mcnt) ^ not)
6127 goto fail;
6128 d += len;
6131 break;
6133 #ifdef emacs
6134 case at_dot:
6135 DEBUG_PRINT ("EXECUTING at_dot.\n");
6136 if (PTR_BYTE_POS (d) != PT_BYTE)
6137 goto fail;
6138 break;
6140 case categoryspec:
6141 case notcategoryspec:
6143 boolean not = (re_opcode_t) *(p - 1) == notcategoryspec;
6144 mcnt = *p++;
6145 DEBUG_PRINT ("EXECUTING %scategoryspec %d.\n",
6146 not ? "not" : "", mcnt);
6147 PREFETCH ();
6150 int len;
6151 re_wchar_t c;
6152 GET_CHAR_AFTER (c, d, len);
6153 if ((!CHAR_HAS_CATEGORY (c, mcnt)) ^ not)
6154 goto fail;
6155 d += len;
6158 break;
6160 #endif /* emacs */
6162 default:
6163 abort ();
6165 continue; /* Successfully executed one pattern command; keep going. */
6168 /* We goto here if a matching operation fails. */
6169 fail:
6170 maybe_quit ();
6171 if (!FAIL_STACK_EMPTY ())
6173 re_char *str, *pat;
6174 /* A restart point is known. Restore to that state. */
6175 DEBUG_PRINT ("\nFAIL:\n");
6176 POP_FAILURE_POINT (str, pat);
6177 switch (*pat++)
6179 case on_failure_keep_string_jump:
6180 assert (str == NULL);
6181 goto continue_failure_jump;
6183 case on_failure_jump_nastyloop:
6184 assert ((re_opcode_t)pat[-2] == no_op);
6185 PUSH_FAILURE_POINT (pat - 2, str);
6186 FALLTHROUGH;
6187 case on_failure_jump_loop:
6188 case on_failure_jump:
6189 case succeed_n:
6190 d = str;
6191 continue_failure_jump:
6192 EXTRACT_NUMBER_AND_INCR (mcnt, pat);
6193 p = pat + mcnt;
6194 break;
6196 case no_op:
6197 /* A special frame used for nastyloops. */
6198 goto fail;
6200 default:
6201 abort ();
6204 assert (p >= bufp->buffer && p <= pend);
6206 if (d >= string1 && d <= end1)
6207 dend = end_match_1;
6209 else
6210 break; /* Matching at this starting point really fails. */
6211 } /* for (;;) */
6213 if (best_regs_set)
6214 goto restore_best_regs;
6216 FREE_VARIABLES ();
6218 return -1; /* Failure to match. */
6221 /* Subroutine definitions for re_match_2. */
6223 /* Return zero if TRANSLATE[S1] and TRANSLATE[S2] are identical for LEN
6224 bytes; nonzero otherwise. */
6226 static int
6227 bcmp_translate (const_re_char *s1, const_re_char *s2, register ssize_t len,
6228 RE_TRANSLATE_TYPE translate, const int target_multibyte)
6230 register re_char *p1 = s1, *p2 = s2;
6231 re_char *p1_end = s1 + len;
6232 re_char *p2_end = s2 + len;
6234 /* FIXME: Checking both p1 and p2 presumes that the two strings might have
6235 different lengths, but relying on a single `len' would break this. -sm */
6236 while (p1 < p1_end && p2 < p2_end)
6238 int p1_charlen, p2_charlen;
6239 re_wchar_t p1_ch, p2_ch;
6241 GET_CHAR_AFTER (p1_ch, p1, p1_charlen);
6242 GET_CHAR_AFTER (p2_ch, p2, p2_charlen);
6244 if (RE_TRANSLATE (translate, p1_ch)
6245 != RE_TRANSLATE (translate, p2_ch))
6246 return 1;
6248 p1 += p1_charlen, p2 += p2_charlen;
6251 if (p1 != p1_end || p2 != p2_end)
6252 return 1;
6254 return 0;
6257 /* Entry points for GNU code. */
6259 /* re_compile_pattern is the GNU regular expression compiler: it
6260 compiles PATTERN (of length SIZE) and puts the result in BUFP.
6261 Returns 0 if the pattern was valid, otherwise an error string.
6263 Assumes the `allocated' (and perhaps `buffer') and `translate' fields
6264 are set in BUFP on entry.
6266 We call regex_compile to do the actual compilation. */
6268 const char *
6269 re_compile_pattern (const char *pattern, size_t length,
6270 #ifdef emacs
6271 bool posix_backtracking, const char *whitespace_regexp,
6272 #endif
6273 struct re_pattern_buffer *bufp)
6275 reg_errcode_t ret;
6277 /* GNU code is written to assume at least RE_NREGS registers will be set
6278 (and at least one extra will be -1). */
6279 bufp->regs_allocated = REGS_UNALLOCATED;
6281 /* And GNU code determines whether or not to get register information
6282 by passing null for the REGS argument to re_match, etc., not by
6283 setting no_sub. */
6284 bufp->no_sub = 0;
6286 ret = regex_compile ((re_char *) pattern, length,
6287 #ifdef emacs
6288 posix_backtracking,
6289 whitespace_regexp,
6290 #else
6291 re_syntax_options,
6292 #endif
6293 bufp);
6295 if (!ret)
6296 return NULL;
6297 return gettext (re_error_msgid[(int) ret]);
6299 WEAK_ALIAS (__re_compile_pattern, re_compile_pattern)
6301 /* Entry points compatible with 4.2 BSD regex library. We don't define
6302 them unless specifically requested. */
6304 #if defined _REGEX_RE_COMP || defined _LIBC
6306 /* BSD has one and only one pattern buffer. */
6307 static struct re_pattern_buffer re_comp_buf;
6309 char *
6310 # ifdef _LIBC
6311 /* Make these definitions weak in libc, so POSIX programs can redefine
6312 these names if they don't use our functions, and still use
6313 regcomp/regexec below without link errors. */
6314 weak_function
6315 # endif
6316 re_comp (const char *s)
6318 reg_errcode_t ret;
6320 if (!s)
6322 if (!re_comp_buf.buffer)
6323 /* Yes, we're discarding `const' here if !HAVE_LIBINTL. */
6324 return (char *) gettext ("No previous regular expression");
6325 return 0;
6328 if (!re_comp_buf.buffer)
6330 re_comp_buf.buffer = malloc (200);
6331 if (re_comp_buf.buffer == NULL)
6332 /* Yes, we're discarding `const' here if !HAVE_LIBINTL. */
6333 return (char *) gettext (re_error_msgid[(int) REG_ESPACE]);
6334 re_comp_buf.allocated = 200;
6336 re_comp_buf.fastmap = malloc (1 << BYTEWIDTH);
6337 if (re_comp_buf.fastmap == NULL)
6338 /* Yes, we're discarding `const' here if !HAVE_LIBINTL. */
6339 return (char *) gettext (re_error_msgid[(int) REG_ESPACE]);
6342 /* Since `re_exec' always passes NULL for the `regs' argument, we
6343 don't need to initialize the pattern buffer fields which affect it. */
6345 ret = regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
6347 if (!ret)
6348 return NULL;
6350 /* Yes, we're discarding `const' here if !HAVE_LIBINTL. */
6351 return (char *) gettext (re_error_msgid[(int) ret]);
6356 # ifdef _LIBC
6357 weak_function
6358 # endif
6359 re_exec (const char *s)
6361 const size_t len = strlen (s);
6362 return re_search (&re_comp_buf, s, len, 0, len, 0) >= 0;
6364 #endif /* _REGEX_RE_COMP */
6366 /* POSIX.2 functions. Don't define these for Emacs. */
6368 #ifndef emacs
6370 /* regcomp takes a regular expression as a string and compiles it.
6372 PREG is a regex_t *. We do not expect any fields to be initialized,
6373 since POSIX says we shouldn't. Thus, we set
6375 `buffer' to the compiled pattern;
6376 `used' to the length of the compiled pattern;
6377 `syntax' to RE_SYNTAX_POSIX_EXTENDED if the
6378 REG_EXTENDED bit in CFLAGS is set; otherwise, to
6379 RE_SYNTAX_POSIX_BASIC;
6380 `fastmap' to an allocated space for the fastmap;
6381 `fastmap_accurate' to zero;
6382 `re_nsub' to the number of subexpressions in PATTERN.
6384 PATTERN is the address of the pattern string.
6386 CFLAGS is a series of bits which affect compilation.
6388 If REG_EXTENDED is set, we use POSIX extended syntax; otherwise, we
6389 use POSIX basic syntax.
6391 If REG_NEWLINE is set, then . and [^...] don't match newline.
6392 Also, regexec will try a match beginning after every newline.
6394 If REG_ICASE is set, then we considers upper- and lowercase
6395 versions of letters to be equivalent when matching.
6397 If REG_NOSUB is set, then when PREG is passed to regexec, that
6398 routine will report only success or failure, and nothing about the
6399 registers.
6401 It returns 0 if it succeeds, nonzero if it doesn't. (See regex.h for
6402 the return codes and their meanings.) */
6404 reg_errcode_t
6405 regcomp (regex_t *_Restrict_ preg, const char *_Restrict_ pattern,
6406 int cflags)
6408 reg_errcode_t ret;
6409 reg_syntax_t syntax
6410 = (cflags & REG_EXTENDED) ?
6411 RE_SYNTAX_POSIX_EXTENDED : RE_SYNTAX_POSIX_BASIC;
6413 /* regex_compile will allocate the space for the compiled pattern. */
6414 preg->buffer = 0;
6415 preg->allocated = 0;
6416 preg->used = 0;
6418 /* Try to allocate space for the fastmap. */
6419 preg->fastmap = malloc (1 << BYTEWIDTH);
6421 if (cflags & REG_ICASE)
6423 unsigned i;
6425 preg->translate = malloc (CHAR_SET_SIZE * sizeof *preg->translate);
6426 if (preg->translate == NULL)
6427 return (int) REG_ESPACE;
6429 /* Map uppercase characters to corresponding lowercase ones. */
6430 for (i = 0; i < CHAR_SET_SIZE; i++)
6431 preg->translate[i] = ISUPPER (i) ? TOLOWER (i) : i;
6433 else
6434 preg->translate = NULL;
6436 /* If REG_NEWLINE is set, newlines are treated differently. */
6437 if (cflags & REG_NEWLINE)
6438 { /* REG_NEWLINE implies neither . nor [^...] match newline. */
6439 syntax &= ~RE_DOT_NEWLINE;
6440 syntax |= RE_HAT_LISTS_NOT_NEWLINE;
6442 else
6443 syntax |= RE_NO_NEWLINE_ANCHOR;
6445 preg->no_sub = !!(cflags & REG_NOSUB);
6447 /* POSIX says a null character in the pattern terminates it, so we
6448 can use strlen here in compiling the pattern. */
6449 ret = regex_compile ((re_char *) pattern, strlen (pattern), syntax, preg);
6451 /* POSIX doesn't distinguish between an unmatched open-group and an
6452 unmatched close-group: both are REG_EPAREN. */
6453 if (ret == REG_ERPAREN)
6454 ret = REG_EPAREN;
6456 if (ret == REG_NOERROR && preg->fastmap)
6457 { /* Compute the fastmap now, since regexec cannot modify the pattern
6458 buffer. */
6459 re_compile_fastmap (preg);
6460 if (preg->can_be_null)
6461 { /* The fastmap can't be used anyway. */
6462 free (preg->fastmap);
6463 preg->fastmap = NULL;
6466 return ret;
6468 WEAK_ALIAS (__regcomp, regcomp)
6471 /* regexec searches for a given pattern, specified by PREG, in the
6472 string STRING.
6474 If NMATCH is zero or REG_NOSUB was set in the cflags argument to
6475 `regcomp', we ignore PMATCH. Otherwise, we assume PMATCH has at
6476 least NMATCH elements, and we set them to the offsets of the
6477 corresponding matched substrings.
6479 EFLAGS specifies `execution flags' which affect matching: if
6480 REG_NOTBOL is set, then ^ does not match at the beginning of the
6481 string; if REG_NOTEOL is set, then $ does not match at the end.
6483 We return 0 if we find a match and REG_NOMATCH if not. */
6485 reg_errcode_t
6486 regexec (const regex_t *_Restrict_ preg, const char *_Restrict_ string,
6487 size_t nmatch, regmatch_t pmatch[_Restrict_arr_], int eflags)
6489 regoff_t ret;
6490 struct re_registers regs;
6491 regex_t private_preg;
6492 size_t len = strlen (string);
6493 boolean want_reg_info = !preg->no_sub && nmatch > 0 && pmatch;
6495 private_preg = *preg;
6497 private_preg.not_bol = !!(eflags & REG_NOTBOL);
6498 private_preg.not_eol = !!(eflags & REG_NOTEOL);
6500 /* The user has told us exactly how many registers to return
6501 information about, via `nmatch'. We have to pass that on to the
6502 matching routines. */
6503 private_preg.regs_allocated = REGS_FIXED;
6505 if (want_reg_info)
6507 regs.num_regs = nmatch;
6508 regs.start = TALLOC (nmatch * 2, regoff_t);
6509 if (regs.start == NULL)
6510 return REG_NOMATCH;
6511 regs.end = regs.start + nmatch;
6514 /* Instead of using not_eol to implement REG_NOTEOL, we could simply
6515 pass (&private_preg, string, len + 1, 0, len, ...) pretending the string
6516 was a little bit longer but still only matching the real part.
6517 This works because the `endline' will check for a '\n' and will find a
6518 '\0', correctly deciding that this is not the end of a line.
6519 But it doesn't work out so nicely for REG_NOTBOL, since we don't have
6520 a convenient '\0' there. For all we know, the string could be preceded
6521 by '\n' which would throw things off. */
6523 /* Perform the searching operation. */
6524 ret = re_search (&private_preg, string, len,
6525 /* start: */ 0, /* range: */ len,
6526 want_reg_info ? &regs : 0);
6528 /* Copy the register information to the POSIX structure. */
6529 if (want_reg_info)
6531 if (ret >= 0)
6533 unsigned r;
6535 for (r = 0; r < nmatch; r++)
6537 pmatch[r].rm_so = regs.start[r];
6538 pmatch[r].rm_eo = regs.end[r];
6542 /* If we needed the temporary register info, free the space now. */
6543 free (regs.start);
6546 /* We want zero return to mean success, unlike `re_search'. */
6547 return ret >= 0 ? REG_NOERROR : REG_NOMATCH;
6549 WEAK_ALIAS (__regexec, regexec)
6552 /* Returns a message corresponding to an error code, ERR_CODE, returned
6553 from either regcomp or regexec. We don't use PREG here.
6555 ERR_CODE was previously called ERRCODE, but that name causes an
6556 error with msvc8 compiler. */
6558 size_t
6559 regerror (int err_code, const regex_t *preg, char *errbuf, size_t errbuf_size)
6561 const char *msg;
6562 size_t msg_size;
6564 if (err_code < 0
6565 || err_code >= (sizeof (re_error_msgid) / sizeof (re_error_msgid[0])))
6566 /* Only error codes returned by the rest of the code should be passed
6567 to this routine. If we are given anything else, or if other regex
6568 code generates an invalid error code, then the program has a bug.
6569 Dump core so we can fix it. */
6570 abort ();
6572 msg = gettext (re_error_msgid[err_code]);
6574 msg_size = strlen (msg) + 1; /* Includes the null. */
6576 if (errbuf_size != 0)
6578 if (msg_size > errbuf_size)
6580 memcpy (errbuf, msg, errbuf_size - 1);
6581 errbuf[errbuf_size - 1] = 0;
6583 else
6584 strcpy (errbuf, msg);
6587 return msg_size;
6589 WEAK_ALIAS (__regerror, regerror)
6592 /* Free dynamically allocated space used by PREG. */
6594 void
6595 regfree (regex_t *preg)
6597 free (preg->buffer);
6598 preg->buffer = NULL;
6600 preg->allocated = 0;
6601 preg->used = 0;
6603 free (preg->fastmap);
6604 preg->fastmap = NULL;
6605 preg->fastmap_accurate = 0;
6607 free (preg->translate);
6608 preg->translate = NULL;
6610 WEAK_ALIAS (__regfree, regfree)
6612 #endif /* not emacs */