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