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