4908bd925c57db6cebdd94e72c3a027392109b4b
[gnulib.git] / lib / regex.c
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-1999, 2000-2002 Free Software Foundation, Inc.
6    This file is part of the GNU C Library.
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2, or (at your option)
11    any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License along
19    with this program; if not, write to the Free Software Foundation,
20    Inc., 59 Temple Place - Suite 330, 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
26
27 #undef  _GNU_SOURCE
28 #define _GNU_SOURCE
29
30 #ifdef HAVE_CONFIG_H
31 # include <config.h>
32 #endif
33
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.  */
41
42 #ifndef INSIDE_RECURSION
43
44 # if defined STDC_HEADERS && !defined emacs
45 #  include <stddef.h>
46 # else
47 /* We need this for `regex.h', and perhaps for the Emacs include files.  */
48 #  include <sys/types.h>
49 # endif
50
51 # define WIDE_CHAR_SUPPORT (HAVE_WCTYPE_H && HAVE_WCHAR_H && HAVE_BTOWC)
52
53 /* For platform which support the ISO C amendement 1 functionality we
54    support user defined character classes.  */
55 # if defined _LIBC || WIDE_CHAR_SUPPORT
56 /* Solaris 2.5 has a bug: <wchar.h> must be included before <wctype.h>.  */
57 #  include <wchar.h>
58 #  include <wctype.h>
59 # endif
60
61 # ifdef _LIBC
62 /* We have to keep the namespace clean.  */
63 #  define regfree(preg) __regfree (preg)
64 #  define regexec(pr, st, nm, pm, ef) __regexec (pr, st, nm, pm, ef)
65 #  define regcomp(preg, pattern, cflags) __regcomp (preg, pattern, cflags)
66 #  define regerror(errcode, preg, errbuf, errbuf_size) \
67         __regerror(errcode, preg, errbuf, errbuf_size)
68 #  define re_set_registers(bu, re, nu, st, en) \
69         __re_set_registers (bu, re, nu, st, en)
70 #  define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \
71         __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
72 #  define re_match(bufp, string, size, pos, regs) \
73         __re_match (bufp, string, size, pos, regs)
74 #  define re_search(bufp, string, size, startpos, range, regs) \
75         __re_search (bufp, string, size, startpos, range, regs)
76 #  define re_compile_pattern(pattern, length, bufp) \
77         __re_compile_pattern (pattern, length, bufp)
78 #  define re_set_syntax(syntax) __re_set_syntax (syntax)
79 #  define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \
80         __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
81 #  define re_compile_fastmap(bufp) __re_compile_fastmap (bufp)
82
83 #  define btowc __btowc
84 #  define iswctype __iswctype
85 #  define mbrtowc __mbrtowc
86 #  define wcslen __wcslen
87 #  define wcscoll __wcscoll
88 #  define wcrtomb __wcrtomb
89
90 /* We are also using some library internals.  */
91 #  include <locale/localeinfo.h>
92 #  include <locale/elem-hash.h>
93 #  include <langinfo.h>
94 #  include <locale/coll-lookup.h>
95 # endif
96
97 # ifdef _LIBC
98 #  include <libintl.h>
99 #  undef gettext
100 #  define gettext(msgid) __dcgettext ("libc", msgid, LC_MESSAGES)
101    /* This define is so xgettext can find the internationalizable strings.  */
102 #  define gettext_noop(msgid) msgid
103 # else
104 /* This is for other GNU distributions with internationalized messages.  */
105 #  include "gettext.h"
106 # endif
107
108 /* Support for bounded pointers.  */
109 # if !defined _LIBC && !defined __BOUNDED_POINTERS__
110 #  define __bounded     /* nothing */
111 #  define __unbounded   /* nothing */
112 #  define __ptrvalue    /* nothing */
113 # endif
114
115 /* The `emacs' switch turns on certain matching commands
116    that make sense only in Emacs. */
117 # ifdef emacs
118
119 #  include "lisp.h"
120 #  include "buffer.h"
121 #  include "syntax.h"
122
123 # else  /* not emacs */
124
125 /* If we are not linking with Emacs proper,
126    we can't use the relocating allocator
127    even if config.h says that we can.  */
128 #  undef REL_ALLOC
129
130 #  if defined STDC_HEADERS || defined _LIBC
131 #   include <stdlib.h>
132 #  else
133 char *malloc ();
134 char *realloc ();
135 #  endif
136
137 /* When used in Emacs's lib-src, we need to get bzero and bcopy somehow.
138    If nothing else has been done, use the method below.  */
139 #  ifdef INHIBIT_STRING_HEADER
140 #   if !(defined HAVE_BZERO && defined HAVE_BCOPY)
141 #    if !defined bzero && !defined bcopy
142 #     undef INHIBIT_STRING_HEADER
143 #    endif
144 #   endif
145 #  endif
146
147 /* This is the normal way of making sure we have a bcopy and a bzero.
148    This is used in most programs--a few other programs avoid this
149    by defining INHIBIT_STRING_HEADER.  */
150 #  ifndef INHIBIT_STRING_HEADER
151 #   if defined HAVE_STRING_H || defined STDC_HEADERS || defined _LIBC
152 #    include <string.h>
153 #    ifndef bzero
154 #     ifndef _LIBC
155 #      define bzero(s, n)       (memset (s, '\0', n), (s))
156 #     else
157 #      define bzero(s, n)       __bzero (s, n)
158 #     endif
159 #    endif
160 #   else
161 #    include <strings.h>
162 #    ifndef memcmp
163 #     define memcmp(s1, s2, n)  bcmp (s1, s2, n)
164 #    endif
165 #    ifndef memcpy
166 #     define memcpy(d, s, n)    (bcopy (s, d, n), (d))
167 #    endif
168 #   endif
169 #  endif
170
171 /* Define the syntax stuff for \<, \>, etc.  */
172
173 /* This must be nonzero for the wordchar and notwordchar pattern
174    commands in re_match_2.  */
175 #  ifndef Sword
176 #   define Sword 1
177 #  endif
178
179 #  ifdef SWITCH_ENUM_BUG
180 #   define SWITCH_ENUM_CAST(x) ((int)(x))
181 #  else
182 #   define SWITCH_ENUM_CAST(x) (x)
183 #  endif
184
185 # endif /* not emacs */
186
187 # if defined _LIBC || HAVE_LIMITS_H
188 #  include <limits.h>
189 # endif
190
191 # ifndef MB_LEN_MAX
192 #  define MB_LEN_MAX 1
193 # endif
194 \f
195 /* Get the interface, including the syntax bits.  */
196 # include <regex.h>
197
198 /* isalpha etc. are used for the character classes.  */
199 # include <ctype.h>
200
201 /* Jim Meyering writes:
202
203    "... Some ctype macros are valid only for character codes that
204    isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
205    using /bin/cc or gcc but without giving an ansi option).  So, all
206    ctype uses should be through macros like ISPRINT...  If
207    STDC_HEADERS is defined, then autoconf has verified that the ctype
208    macros don't need to be guarded with references to isascii. ...
209    Defining isascii to 1 should let any compiler worth its salt
210    eliminate the && through constant folding."
211    Solaris defines some of these symbols so we must undefine them first.  */
212
213 # if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII)
214 #  define IN_CTYPE_DOMAIN(c) 1
215 # else
216 #  define IN_CTYPE_DOMAIN(c) isascii(c)
217 # endif
218
219 # ifdef isblank
220 #  define ISBLANK(c) (IN_CTYPE_DOMAIN (c) && isblank (c))
221 # else
222 #  define ISBLANK(c) ((c) == ' ' || (c) == '\t')
223 # endif
224 # ifdef isgraph
225 #  define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isgraph (c))
226 # else
227 #  define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isprint (c) && !isspace (c))
228 # endif
229
230 # undef ISPRINT
231 # define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint (c))
232 # define ISDIGIT(c) (IN_CTYPE_DOMAIN (c) && isdigit (c))
233 # define ISALNUM(c) (IN_CTYPE_DOMAIN (c) && isalnum (c))
234 # define ISALPHA(c) (IN_CTYPE_DOMAIN (c) && isalpha (c))
235 # define ISCNTRL(c) (IN_CTYPE_DOMAIN (c) && iscntrl (c))
236 # define ISLOWER(c) (IN_CTYPE_DOMAIN (c) && islower (c))
237 # define ISPUNCT(c) (IN_CTYPE_DOMAIN (c) && ispunct (c))
238 # define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
239 # define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c))
240 # define ISXDIGIT(c) (IN_CTYPE_DOMAIN (c) && isxdigit (c))
241
242 # ifdef _tolower
243 #  define TOLOWER(c) _tolower(c)
244 # else
245 #  define TOLOWER(c) tolower(c)
246 # endif
247
248 # ifndef NULL
249 #  define NULL (void *)0
250 # endif
251
252 /* We remove any previous definition of `SIGN_EXTEND_CHAR',
253    since ours (we hope) works properly with all combinations of
254    machines, compilers, `char' and `unsigned char' argument types.
255    (Per Bothner suggested the basic approach.)  */
256 # undef SIGN_EXTEND_CHAR
257 # if __STDC__
258 #  define SIGN_EXTEND_CHAR(c) ((signed char) (c))
259 # else  /* not __STDC__ */
260 /* As in Harbison and Steele.  */
261 #  define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128)
262 # endif
263 \f
264 # ifndef emacs
265 /* How many characters in the character set.  */
266 #  define CHAR_SET_SIZE 256
267
268 #  ifdef SYNTAX_TABLE
269
270 extern char *re_syntax_table;
271
272 #  else /* not SYNTAX_TABLE */
273
274 static char re_syntax_table[CHAR_SET_SIZE];
275
276 static void init_syntax_once PARAMS ((void));
277
278 static void
279 init_syntax_once ()
280 {
281    register int c;
282    static int done = 0;
283
284    if (done)
285      return;
286    bzero (re_syntax_table, sizeof re_syntax_table);
287
288    for (c = 0; c < CHAR_SET_SIZE; ++c)
289      if (ISALNUM (c))
290         re_syntax_table[c] = Sword;
291
292    re_syntax_table['_'] = Sword;
293
294    done = 1;
295 }
296
297 #  endif /* not SYNTAX_TABLE */
298
299 #  define SYNTAX(c) re_syntax_table[(unsigned char) (c)]
300
301 # endif /* emacs */
302 \f
303 /* Should we use malloc or alloca?  If REGEX_MALLOC is not defined, we
304    use `alloca' instead of `malloc'.  This is because using malloc in
305    re_search* or re_match* could cause memory leaks when C-g is used in
306    Emacs; also, malloc is slower and causes storage fragmentation.  On
307    the other hand, malloc is more portable, and easier to debug.
308
309    Because we sometimes use alloca, some routines have to be macros,
310    not functions -- `alloca'-allocated space disappears at the end of the
311    function it is called in.  */
312
313 # ifdef REGEX_MALLOC
314
315 #  define REGEX_ALLOCATE malloc
316 #  define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize)
317 #  define REGEX_FREE free
318
319 # else /* not REGEX_MALLOC  */
320
321 /* Emacs already defines alloca, sometimes.  */
322 #  ifndef alloca
323
324 /* Make alloca work the best possible way.  */
325 #   ifdef __GNUC__
326 #    define alloca __builtin_alloca
327 #   else /* not __GNUC__ */
328 #    if HAVE_ALLOCA_H
329 #     include <alloca.h>
330 #    endif /* HAVE_ALLOCA_H */
331 #   endif /* not __GNUC__ */
332
333 #  endif /* not alloca */
334
335 #  define REGEX_ALLOCATE alloca
336
337 /* Assumes a `char *destination' variable.  */
338 #  define REGEX_REALLOCATE(source, osize, nsize)                        \
339   (destination = (char *) alloca (nsize),                               \
340    memcpy (destination, source, osize))
341
342 /* No need to do anything to free, after alloca.  */
343 #  define REGEX_FREE(arg) ((void)0) /* Do nothing!  But inhibit gcc warning.  */
344
345 # endif /* not REGEX_MALLOC */
346
347 /* Define how to allocate the failure stack.  */
348
349 # if defined REL_ALLOC && defined REGEX_MALLOC
350
351 #  define REGEX_ALLOCATE_STACK(size)                            \
352   r_alloc (&failure_stack_ptr, (size))
353 #  define REGEX_REALLOCATE_STACK(source, osize, nsize)          \
354   r_re_alloc (&failure_stack_ptr, (nsize))
355 #  define REGEX_FREE_STACK(ptr)                                 \
356   r_alloc_free (&failure_stack_ptr)
357
358 # else /* not using relocating allocator */
359
360 #  ifdef REGEX_MALLOC
361
362 #   define REGEX_ALLOCATE_STACK malloc
363 #   define REGEX_REALLOCATE_STACK(source, osize, nsize) realloc (source, nsize)
364 #   define REGEX_FREE_STACK free
365
366 #  else /* not REGEX_MALLOC */
367
368 #   define REGEX_ALLOCATE_STACK alloca
369
370 #   define REGEX_REALLOCATE_STACK(source, osize, nsize)                 \
371    REGEX_REALLOCATE (source, osize, nsize)
372 /* No need to explicitly free anything.  */
373 #   define REGEX_FREE_STACK(arg)
374
375 #  endif /* not REGEX_MALLOC */
376 # endif /* not using relocating allocator */
377
378
379 /* True if `size1' is non-NULL and PTR is pointing anywhere inside
380    `string1' or just past its end.  This works if PTR is NULL, which is
381    a good thing.  */
382 # define FIRST_STRING_P(ptr)                                    \
383   (size1 && string1 <= (ptr) && (ptr) <= string1 + size1)
384
385 /* (Re)Allocate N items of type T using malloc, or fail.  */
386 # define TALLOC(n, t) ((t *) malloc ((n) * sizeof (t)))
387 # define RETALLOC(addr, n, t) ((addr) = (t *) realloc (addr, (n) * sizeof (t)))
388 # define RETALLOC_IF(addr, n, t) \
389   if (addr) RETALLOC((addr), (n), t); else (addr) = TALLOC ((n), t)
390 # define REGEX_TALLOC(n, t) ((t *) REGEX_ALLOCATE ((n) * sizeof (t)))
391
392 # define BYTEWIDTH 8 /* In bits.  */
393
394 # define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
395
396 # undef MAX
397 # undef MIN
398 # define MAX(a, b) ((a) > (b) ? (a) : (b))
399 # define MIN(a, b) ((a) < (b) ? (a) : (b))
400
401 typedef char boolean;
402 # define false 0
403 # define true 1
404
405 static reg_errcode_t byte_regex_compile _RE_ARGS ((const char *pattern, size_t size,
406                                                    reg_syntax_t syntax,
407                                                    struct re_pattern_buffer *bufp));
408
409 static int byte_re_match_2_internal PARAMS ((struct re_pattern_buffer *bufp,
410                                              const char *string1, int size1,
411                                              const char *string2, int size2,
412                                              int pos,
413                                              struct re_registers *regs,
414                                              int stop));
415 static int byte_re_search_2 PARAMS ((struct re_pattern_buffer *bufp,
416                                      const char *string1, int size1,
417                                      const char *string2, int size2,
418                                      int startpos, int range,
419                                      struct re_registers *regs, int stop));
420 static int byte_re_compile_fastmap PARAMS ((struct re_pattern_buffer *bufp));
421
422 #ifdef MBS_SUPPORT
423 static reg_errcode_t wcs_regex_compile _RE_ARGS ((const char *pattern, size_t size,
424                                                    reg_syntax_t syntax,
425                                                    struct re_pattern_buffer *bufp));
426
427
428 static int wcs_re_match_2_internal PARAMS ((struct re_pattern_buffer *bufp,
429                                             const char *cstring1, int csize1,
430                                             const char *cstring2, int csize2,
431                                             int pos,
432                                             struct re_registers *regs,
433                                             int stop,
434                                             wchar_t *string1, int size1,
435                                             wchar_t *string2, int size2,
436                                             int *mbs_offset1, int *mbs_offset2));
437 static int wcs_re_search_2 PARAMS ((struct re_pattern_buffer *bufp,
438                                     const char *string1, int size1,
439                                     const char *string2, int size2,
440                                     int startpos, int range,
441                                     struct re_registers *regs, int stop));
442 static int wcs_re_compile_fastmap PARAMS ((struct re_pattern_buffer *bufp));
443 #endif
444 \f
445 /* These are the command codes that appear in compiled regular
446    expressions.  Some opcodes are followed by argument bytes.  A
447    command code can specify any interpretation whatsoever for its
448    arguments.  Zero bytes may appear in the compiled regular expression.  */
449
450 typedef enum
451 {
452   no_op = 0,
453
454   /* Succeed right away--no more backtracking.  */
455   succeed,
456
457         /* Followed by one byte giving n, then by n literal bytes.  */
458   exactn,
459
460 # ifdef MBS_SUPPORT
461         /* Same as exactn, but contains binary data.  */
462   exactn_bin,
463 # endif
464
465         /* Matches any (more or less) character.  */
466   anychar,
467
468         /* Matches any one char belonging to specified set.  First
469            following byte is number of bitmap bytes.  Then come bytes
470            for a bitmap saying which chars are in.  Bits in each byte
471            are ordered low-bit-first.  A character is in the set if its
472            bit is 1.  A character too large to have a bit in the map is
473            automatically not in the set.  */
474         /* ifdef MBS_SUPPORT, following element is length of character
475            classes, length of collating symbols, length of equivalence
476            classes, length of character ranges, and length of characters.
477            Next, character class element, collating symbols elements,
478            equivalence class elements, range elements, and character
479            elements follow.
480            See regex_compile function.  */
481   charset,
482
483         /* Same parameters as charset, but match any character that is
484            not one of those specified.  */
485   charset_not,
486
487         /* Start remembering the text that is matched, for storing in a
488            register.  Followed by one byte with the register number, in
489            the range 0 to one less than the pattern buffer's re_nsub
490            field.  Then followed by one byte with the number of groups
491            inner to this one.  (This last has to be part of the
492            start_memory only because we need it in the on_failure_jump
493            of re_match_2.)  */
494   start_memory,
495
496         /* Stop remembering the text that is matched and store it in a
497            memory register.  Followed by one byte with the register
498            number, in the range 0 to one less than `re_nsub' in the
499            pattern buffer, and one byte with the number of inner groups,
500            just like `start_memory'.  (We need the number of inner
501            groups here because we don't have any easy way of finding the
502            corresponding start_memory when we're at a stop_memory.)  */
503   stop_memory,
504
505         /* Match a duplicate of something remembered. Followed by one
506            byte containing the register number.  */
507   duplicate,
508
509         /* Fail unless at beginning of line.  */
510   begline,
511
512         /* Fail unless at end of line.  */
513   endline,
514
515         /* Succeeds if at beginning of buffer (if emacs) or at beginning
516            of string to be matched (if not).  */
517   begbuf,
518
519         /* Analogously, for end of buffer/string.  */
520   endbuf,
521
522         /* Followed by two byte relative address to which to jump.  */
523   jump,
524
525         /* Same as jump, but marks the end of an alternative.  */
526   jump_past_alt,
527
528         /* Followed by two-byte relative address of place to resume at
529            in case of failure.  */
530         /* ifdef MBS_SUPPORT, the size of address is 1.  */
531   on_failure_jump,
532
533         /* Like on_failure_jump, but pushes a placeholder instead of the
534            current string position when executed.  */
535   on_failure_keep_string_jump,
536
537         /* Throw away latest failure point and then jump to following
538            two-byte relative address.  */
539         /* ifdef MBS_SUPPORT, the size of address is 1.  */
540   pop_failure_jump,
541
542         /* Change to pop_failure_jump if know won't have to backtrack to
543            match; otherwise change to jump.  This is used to jump
544            back to the beginning of a repeat.  If what follows this jump
545            clearly won't match what the repeat does, such that we can be
546            sure that there is no use backtracking out of repetitions
547            already matched, then we change it to a pop_failure_jump.
548            Followed by two-byte address.  */
549         /* ifdef MBS_SUPPORT, the size of address is 1.  */
550   maybe_pop_jump,
551
552         /* Jump to following two-byte address, and push a dummy failure
553            point. This failure point will be thrown away if an attempt
554            is made to use it for a failure.  A `+' construct makes this
555            before the first repeat.  Also used as an intermediary kind
556            of jump when compiling an alternative.  */
557         /* ifdef MBS_SUPPORT, the size of address is 1.  */
558   dummy_failure_jump,
559
560         /* Push a dummy failure point and continue.  Used at the end of
561            alternatives.  */
562   push_dummy_failure,
563
564         /* Followed by two-byte relative address and two-byte number n.
565            After matching N times, jump to the address upon failure.  */
566         /* ifdef MBS_SUPPORT, the size of address is 1.  */
567   succeed_n,
568
569         /* Followed by two-byte relative address, and two-byte number n.
570            Jump to the address N times, then fail.  */
571         /* ifdef MBS_SUPPORT, the size of address is 1.  */
572   jump_n,
573
574         /* Set the following two-byte relative address to the
575            subsequent two-byte number.  The address *includes* the two
576            bytes of number.  */
577         /* ifdef MBS_SUPPORT, the size of address is 1.  */
578   set_number_at,
579
580   wordchar,     /* Matches any word-constituent character.  */
581   notwordchar,  /* Matches any char that is not a word-constituent.  */
582
583   wordbeg,      /* Succeeds if at word beginning.  */
584   wordend,      /* Succeeds if at word end.  */
585
586   wordbound,    /* Succeeds if at a word boundary.  */
587   notwordbound  /* Succeeds if not at a word boundary.  */
588
589 # ifdef emacs
590   ,before_dot,  /* Succeeds if before point.  */
591   at_dot,       /* Succeeds if at point.  */
592   after_dot,    /* Succeeds if after point.  */
593
594         /* Matches any character whose syntax is specified.  Followed by
595            a byte which contains a syntax code, e.g., Sword.  */
596   syntaxspec,
597
598         /* Matches any character whose syntax is not that specified.  */
599   notsyntaxspec
600 # endif /* emacs */
601 } re_opcode_t;
602 #endif /* not INSIDE_RECURSION */
603 \f
604
605 #ifdef BYTE
606 # define CHAR_T char
607 # define UCHAR_T unsigned char
608 # define COMPILED_BUFFER_VAR bufp->buffer
609 # define OFFSET_ADDRESS_SIZE 2
610 # define PREFIX(name) byte_##name
611 # define ARG_PREFIX(name) name
612 # define PUT_CHAR(c) putchar (c)
613 #else
614 # ifdef WCHAR
615 #  define CHAR_T wchar_t
616 #  define UCHAR_T wchar_t
617 #  define COMPILED_BUFFER_VAR wc_buffer
618 #  define OFFSET_ADDRESS_SIZE 1 /* the size which STORE_NUMBER macro use */
619 #  define CHAR_CLASS_SIZE ((__alignof__(wctype_t)+sizeof(wctype_t))/sizeof(CHAR_T)+1)
620 #  define PREFIX(name) wcs_##name
621 #  define ARG_PREFIX(name) c##name
622 /* Should we use wide stream??  */
623 #  define PUT_CHAR(c) printf ("%C", c);
624 #  define TRUE 1
625 #  define FALSE 0
626 # else
627 #  ifdef MBS_SUPPORT
628 #   define WCHAR
629 #   define INSIDE_RECURSION
630 #   include "regex.c"
631 #   undef INSIDE_RECURSION
632 #  endif
633 #  define BYTE
634 #  define INSIDE_RECURSION
635 #  include "regex.c"
636 #  undef INSIDE_RECURSION
637 # endif
638 #endif
639 #include "unlocked-io.h"
640
641 #ifdef INSIDE_RECURSION
642 /* Common operations on the compiled pattern.  */
643
644 /* Store NUMBER in two contiguous bytes starting at DESTINATION.  */
645 /* ifdef MBS_SUPPORT, we store NUMBER in 1 element.  */
646
647 # ifdef WCHAR
648 #  define STORE_NUMBER(destination, number)                             \
649   do {                                                                  \
650     *(destination) = (UCHAR_T)(number);                         \
651   } while (0)
652 # else /* BYTE */
653 #  define STORE_NUMBER(destination, number)                             \
654   do {                                                                  \
655     (destination)[0] = (number) & 0377;                                 \
656     (destination)[1] = (number) >> 8;                                   \
657   } while (0)
658 # endif /* WCHAR */
659
660 /* Same as STORE_NUMBER, except increment DESTINATION to
661    the byte after where the number is stored.  Therefore, DESTINATION
662    must be an lvalue.  */
663 /* ifdef MBS_SUPPORT, we store NUMBER in 1 element.  */
664
665 # define STORE_NUMBER_AND_INCR(destination, number)                     \
666   do {                                                                  \
667     STORE_NUMBER (destination, number);                                 \
668     (destination) += OFFSET_ADDRESS_SIZE;                               \
669   } while (0)
670
671 /* Put into DESTINATION a number stored in two contiguous bytes starting
672    at SOURCE.  */
673 /* ifdef MBS_SUPPORT, we store NUMBER in 1 element.  */
674
675 # ifdef WCHAR
676 #  define EXTRACT_NUMBER(destination, source)                           \
677   do {                                                                  \
678     (destination) = *(source);                                          \
679   } while (0)
680 # else /* BYTE */
681 #  define EXTRACT_NUMBER(destination, source)                           \
682   do {                                                                  \
683     (destination) = *(source) & 0377;                                   \
684     (destination) += SIGN_EXTEND_CHAR (*((source) + 1)) << 8;           \
685   } while (0)
686 # endif
687
688 # ifdef DEBUG
689 static void PREFIX(extract_number) _RE_ARGS ((int *dest, UCHAR_T *source));
690 static void
691 PREFIX(extract_number) (dest, source)
692     int *dest;
693     UCHAR_T *source;
694 {
695 #  ifdef WCHAR
696   *dest = *source;
697 #  else /* BYTE */
698   int temp = SIGN_EXTEND_CHAR (*(source + 1));
699   *dest = *source & 0377;
700   *dest += temp << 8;
701 #  endif
702 }
703
704 #  ifndef EXTRACT_MACROS /* To debug the macros.  */
705 #   undef EXTRACT_NUMBER
706 #   define EXTRACT_NUMBER(dest, src) PREFIX(extract_number) (&dest, src)
707 #  endif /* not EXTRACT_MACROS */
708
709 # endif /* DEBUG */
710
711 /* Same as EXTRACT_NUMBER, except increment SOURCE to after the number.
712    SOURCE must be an lvalue.  */
713
714 # define EXTRACT_NUMBER_AND_INCR(destination, source)                   \
715   do {                                                                  \
716     EXTRACT_NUMBER (destination, source);                               \
717     (source) += OFFSET_ADDRESS_SIZE;                                    \
718   } while (0)
719
720 # ifdef DEBUG
721 static void PREFIX(extract_number_and_incr) _RE_ARGS ((int *destination,
722                                                        UCHAR_T **source));
723 static void
724 PREFIX(extract_number_and_incr) (destination, source)
725     int *destination;
726     UCHAR_T **source;
727 {
728   PREFIX(extract_number) (destination, *source);
729   *source += OFFSET_ADDRESS_SIZE;
730 }
731
732 #  ifndef EXTRACT_MACROS
733 #   undef EXTRACT_NUMBER_AND_INCR
734 #   define EXTRACT_NUMBER_AND_INCR(dest, src) \
735   PREFIX(extract_number_and_incr) (&dest, &src)
736 #  endif /* not EXTRACT_MACROS */
737
738 # endif /* DEBUG */
739
740 \f
741
742 /* If DEBUG is defined, Regex prints many voluminous messages about what
743    it is doing (if the variable `debug' is nonzero).  If linked with the
744    main program in `iregex.c', you can enter patterns and strings
745    interactively.  And if linked with the main program in `main.c' and
746    the other test files, you can run the already-written tests.  */
747
748 # ifdef DEBUG
749
750 #  ifndef DEFINED_ONCE
751
752 /* We use standard I/O for debugging.  */
753 #   include <stdio.h>
754
755 /* It is useful to test things that ``must'' be true when debugging.  */
756 #   include <assert.h>
757
758 static int debug;
759
760 #   define DEBUG_STATEMENT(e) e
761 #   define DEBUG_PRINT1(x) if (debug) printf (x)
762 #   define DEBUG_PRINT2(x1, x2) if (debug) printf (x1, x2)
763 #   define DEBUG_PRINT3(x1, x2, x3) if (debug) printf (x1, x2, x3)
764 #   define DEBUG_PRINT4(x1, x2, x3, x4) if (debug) printf (x1, x2, x3, x4)
765 #  endif /* not DEFINED_ONCE */
766
767 #  define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)                         \
768   if (debug) PREFIX(print_partial_compiled_pattern) (s, e)
769 #  define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)                \
770   if (debug) PREFIX(print_double_string) (w, s1, sz1, s2, sz2)
771
772
773 /* Print the fastmap in human-readable form.  */
774
775 #  ifndef DEFINED_ONCE
776 void
777 print_fastmap (fastmap)
778     char *fastmap;
779 {
780   unsigned was_a_range = 0;
781   unsigned i = 0;
782
783   while (i < (1 << BYTEWIDTH))
784     {
785       if (fastmap[i++])
786         {
787           was_a_range = 0;
788           putchar (i - 1);
789           while (i < (1 << BYTEWIDTH)  &&  fastmap[i])
790             {
791               was_a_range = 1;
792               i++;
793             }
794           if (was_a_range)
795             {
796               printf ("-");
797               putchar (i - 1);
798             }
799         }
800     }
801   putchar ('\n');
802 }
803 #  endif /* not DEFINED_ONCE */
804
805
806 /* Print a compiled pattern string in human-readable form, starting at
807    the START pointer into it and ending just before the pointer END.  */
808
809 void
810 PREFIX(print_partial_compiled_pattern) (start, end)
811     UCHAR_T *start;
812     UCHAR_T *end;
813 {
814   int mcnt, mcnt2;
815   UCHAR_T *p1;
816   UCHAR_T *p = start;
817   UCHAR_T *pend = end;
818
819   if (start == NULL)
820     {
821       printf ("(null)\n");
822       return;
823     }
824
825   /* Loop over pattern commands.  */
826   while (p < pend)
827     {
828 #  ifdef _LIBC
829       printf ("%td:\t", p - start);
830 #  else
831       printf ("%ld:\t", (long int) (p - start));
832 #  endif
833
834       switch ((re_opcode_t) *p++)
835         {
836         case no_op:
837           printf ("/no_op");
838           break;
839
840         case exactn:
841           mcnt = *p++;
842           printf ("/exactn/%d", mcnt);
843           do
844             {
845               putchar ('/');
846               PUT_CHAR (*p++);
847             }
848           while (--mcnt);
849           break;
850
851 #  ifdef MBS_SUPPORT
852         case exactn_bin:
853           mcnt = *p++;
854           printf ("/exactn_bin/%d", mcnt);
855           do
856             {
857               printf("/%lx", (long int) *p++);
858             }
859           while (--mcnt);
860           break;
861 #  endif /* MBS_SUPPORT */
862
863         case start_memory:
864           mcnt = *p++;
865           printf ("/start_memory/%d/%ld", mcnt, (long int) *p++);
866           break;
867
868         case stop_memory:
869           mcnt = *p++;
870           printf ("/stop_memory/%d/%ld", mcnt, (long int) *p++);
871           break;
872
873         case duplicate:
874           printf ("/duplicate/%ld", (long int) *p++);
875           break;
876
877         case anychar:
878           printf ("/anychar");
879           break;
880
881         case charset:
882         case charset_not:
883           {
884 #  ifdef WCHAR
885             int i, length;
886             wchar_t *workp = p;
887             printf ("/charset [%s",
888                     (re_opcode_t) *(workp - 1) == charset_not ? "^" : "");
889             p += 5;
890             length = *workp++; /* the length of char_classes */
891             for (i=0 ; i<length ; i++)
892               printf("[:%lx:]", (long int) *p++);
893             length = *workp++; /* the length of collating_symbol */
894             for (i=0 ; i<length ;)
895               {
896                 printf("[.");
897                 while(*p != 0)
898                   PUT_CHAR((i++,*p++));
899                 i++,p++;
900                 printf(".]");
901               }
902             length = *workp++; /* the length of equivalence_class */
903             for (i=0 ; i<length ;)
904               {
905                 printf("[=");
906                 while(*p != 0)
907                   PUT_CHAR((i++,*p++));
908                 i++,p++;
909                 printf("=]");
910               }
911             length = *workp++; /* the length of char_range */
912             for (i=0 ; i<length ; i++)
913               {
914                 wchar_t range_start = *p++;
915                 wchar_t range_end = *p++;
916                 printf("%C-%C", range_start, range_end);
917               }
918             length = *workp++; /* the length of char */
919             for (i=0 ; i<length ; i++)
920               printf("%C", *p++);
921             putchar (']');
922 #  else
923             register int c, last = -100;
924             register int in_range = 0;
925
926             printf ("/charset [%s",
927                     (re_opcode_t) *(p - 1) == charset_not ? "^" : "");
928
929             assert (p + *p < pend);
930
931             for (c = 0; c < 256; c++)
932               if (c / 8 < *p
933                   && (p[1 + (c/8)] & (1 << (c % 8))))
934                 {
935                   /* Are we starting a range?  */
936                   if (last + 1 == c && ! in_range)
937                     {
938                       putchar ('-');
939                       in_range = 1;
940                     }
941                   /* Have we broken a range?  */
942                   else if (last + 1 != c && in_range)
943               {
944                       putchar (last);
945                       in_range = 0;
946                     }
947
948                   if (! in_range)
949                     putchar (c);
950
951                   last = c;
952               }
953
954             if (in_range)
955               putchar (last);
956
957             putchar (']');
958
959             p += 1 + *p;
960 #  endif /* WCHAR */
961           }
962           break;
963
964         case begline:
965           printf ("/begline");
966           break;
967
968         case endline:
969           printf ("/endline");
970           break;
971
972         case on_failure_jump:
973           PREFIX(extract_number_and_incr) (&mcnt, &p);
974 #  ifdef _LIBC
975           printf ("/on_failure_jump to %td", p + mcnt - start);
976 #  else
977           printf ("/on_failure_jump to %ld", (long int) (p + mcnt - start));
978 #  endif
979           break;
980
981         case on_failure_keep_string_jump:
982           PREFIX(extract_number_and_incr) (&mcnt, &p);
983 #  ifdef _LIBC
984           printf ("/on_failure_keep_string_jump to %td", p + mcnt - start);
985 #  else
986           printf ("/on_failure_keep_string_jump to %ld",
987                   (long int) (p + mcnt - start));
988 #  endif
989           break;
990
991         case dummy_failure_jump:
992           PREFIX(extract_number_and_incr) (&mcnt, &p);
993 #  ifdef _LIBC
994           printf ("/dummy_failure_jump to %td", p + mcnt - start);
995 #  else
996           printf ("/dummy_failure_jump to %ld", (long int) (p + mcnt - start));
997 #  endif
998           break;
999
1000         case push_dummy_failure:
1001           printf ("/push_dummy_failure");
1002           break;
1003
1004         case maybe_pop_jump:
1005           PREFIX(extract_number_and_incr) (&mcnt, &p);
1006 #  ifdef _LIBC
1007           printf ("/maybe_pop_jump to %td", p + mcnt - start);
1008 #  else
1009           printf ("/maybe_pop_jump to %ld", (long int) (p + mcnt - start));
1010 #  endif
1011           break;
1012
1013         case pop_failure_jump:
1014           PREFIX(extract_number_and_incr) (&mcnt, &p);
1015 #  ifdef _LIBC
1016           printf ("/pop_failure_jump to %td", p + mcnt - start);
1017 #  else
1018           printf ("/pop_failure_jump to %ld", (long int) (p + mcnt - start));
1019 #  endif
1020           break;
1021
1022         case jump_past_alt:
1023           PREFIX(extract_number_and_incr) (&mcnt, &p);
1024 #  ifdef _LIBC
1025           printf ("/jump_past_alt to %td", p + mcnt - start);
1026 #  else
1027           printf ("/jump_past_alt to %ld", (long int) (p + mcnt - start));
1028 #  endif
1029           break;
1030
1031         case jump:
1032           PREFIX(extract_number_and_incr) (&mcnt, &p);
1033 #  ifdef _LIBC
1034           printf ("/jump to %td", p + mcnt - start);
1035 #  else
1036           printf ("/jump to %ld", (long int) (p + mcnt - start));
1037 #  endif
1038           break;
1039
1040         case succeed_n:
1041           PREFIX(extract_number_and_incr) (&mcnt, &p);
1042           p1 = p + mcnt;
1043           PREFIX(extract_number_and_incr) (&mcnt2, &p);
1044 #  ifdef _LIBC
1045           printf ("/succeed_n to %td, %d times", p1 - start, mcnt2);
1046 #  else
1047           printf ("/succeed_n to %ld, %d times",
1048                   (long int) (p1 - start), mcnt2);
1049 #  endif
1050           break;
1051
1052         case jump_n:
1053           PREFIX(extract_number_and_incr) (&mcnt, &p);
1054           p1 = p + mcnt;
1055           PREFIX(extract_number_and_incr) (&mcnt2, &p);
1056           printf ("/jump_n to %d, %d times", p1 - start, mcnt2);
1057           break;
1058
1059         case set_number_at:
1060           PREFIX(extract_number_and_incr) (&mcnt, &p);
1061           p1 = p + mcnt;
1062           PREFIX(extract_number_and_incr) (&mcnt2, &p);
1063 #  ifdef _LIBC
1064           printf ("/set_number_at location %td to %d", p1 - start, mcnt2);
1065 #  else
1066           printf ("/set_number_at location %ld to %d",
1067                   (long int) (p1 - start), mcnt2);
1068 #  endif
1069           break;
1070
1071         case wordbound:
1072           printf ("/wordbound");
1073           break;
1074
1075         case notwordbound:
1076           printf ("/notwordbound");
1077           break;
1078
1079         case wordbeg:
1080           printf ("/wordbeg");
1081           break;
1082
1083         case wordend:
1084           printf ("/wordend");
1085           break;
1086
1087 #  ifdef emacs
1088         case before_dot:
1089           printf ("/before_dot");
1090           break;
1091
1092         case at_dot:
1093           printf ("/at_dot");
1094           break;
1095
1096         case after_dot:
1097           printf ("/after_dot");
1098           break;
1099
1100         case syntaxspec:
1101           printf ("/syntaxspec");
1102           mcnt = *p++;
1103           printf ("/%d", mcnt);
1104           break;
1105
1106         case notsyntaxspec:
1107           printf ("/notsyntaxspec");
1108           mcnt = *p++;
1109           printf ("/%d", mcnt);
1110           break;
1111 #  endif /* emacs */
1112
1113         case wordchar:
1114           printf ("/wordchar");
1115           break;
1116
1117         case notwordchar:
1118           printf ("/notwordchar");
1119           break;
1120
1121         case begbuf:
1122           printf ("/begbuf");
1123           break;
1124
1125         case endbuf:
1126           printf ("/endbuf");
1127           break;
1128
1129         default:
1130           printf ("?%ld", (long int) *(p-1));
1131         }
1132
1133       putchar ('\n');
1134     }
1135
1136 #  ifdef _LIBC
1137   printf ("%td:\tend of pattern.\n", p - start);
1138 #  else
1139   printf ("%ld:\tend of pattern.\n", (long int) (p - start));
1140 #  endif
1141 }
1142
1143
1144 void
1145 PREFIX(print_compiled_pattern) (bufp)
1146     struct re_pattern_buffer *bufp;
1147 {
1148   UCHAR_T *buffer = (UCHAR_T*) bufp->buffer;
1149
1150   PREFIX(print_partial_compiled_pattern) (buffer, buffer
1151                                   + bufp->used / sizeof(UCHAR_T));
1152   printf ("%ld bytes used/%ld bytes allocated.\n",
1153           bufp->used, bufp->allocated);
1154
1155   if (bufp->fastmap_accurate && bufp->fastmap)
1156     {
1157       printf ("fastmap: ");
1158       print_fastmap (bufp->fastmap);
1159     }
1160
1161 #  ifdef _LIBC
1162   printf ("re_nsub: %Zd\t", bufp->re_nsub);
1163 #  else
1164   printf ("re_nsub: %ld\t", (long int) bufp->re_nsub);
1165 #  endif
1166   printf ("regs_alloc: %d\t", bufp->regs_allocated);
1167   printf ("can_be_null: %d\t", bufp->can_be_null);
1168   printf ("newline_anchor: %d\n", bufp->newline_anchor);
1169   printf ("no_sub: %d\t", bufp->no_sub);
1170   printf ("not_bol: %d\t", bufp->not_bol);
1171   printf ("not_eol: %d\t", bufp->not_eol);
1172   printf ("syntax: %lx\n", bufp->syntax);
1173   /* Perhaps we should print the translate table?  */
1174 }
1175
1176
1177 void
1178 PREFIX(print_double_string) (where, string1, size1, string2, size2)
1179     const CHAR_T *where;
1180     const CHAR_T *string1;
1181     const CHAR_T *string2;
1182     int size1;
1183     int size2;
1184 {
1185   int this_char;
1186
1187   if (where == NULL)
1188     printf ("(null)");
1189   else
1190     {
1191       int cnt;
1192
1193       if (FIRST_STRING_P (where))
1194         {
1195           for (this_char = where - string1; this_char < size1; this_char++)
1196             PUT_CHAR (string1[this_char]);
1197
1198           where = string2;
1199         }
1200
1201       cnt = 0;
1202       for (this_char = where - string2; this_char < size2; this_char++)
1203         {
1204           PUT_CHAR (string2[this_char]);
1205           if (++cnt > 100)
1206             {
1207               fputs ("...", stdout);
1208               break;
1209             }
1210         }
1211     }
1212 }
1213
1214 #  ifndef DEFINED_ONCE
1215 void
1216 printchar (c)
1217      int c;
1218 {
1219   putc (c, stderr);
1220 }
1221 #  endif
1222
1223 # else /* not DEBUG */
1224
1225 #  ifndef DEFINED_ONCE
1226 #   undef assert
1227 #   define assert(e)
1228
1229 #   define DEBUG_STATEMENT(e)
1230 #   define DEBUG_PRINT1(x)
1231 #   define DEBUG_PRINT2(x1, x2)
1232 #   define DEBUG_PRINT3(x1, x2, x3)
1233 #   define DEBUG_PRINT4(x1, x2, x3, x4)
1234 #  endif /* not DEFINED_ONCE */
1235 #  define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)
1236 #  define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)
1237
1238 # endif /* not DEBUG */
1239
1240 \f
1241
1242 # ifdef WCHAR
1243 /* This  convert a multibyte string to a wide character string.
1244    And write their correspondances to offset_buffer(see below)
1245    and write whether each wchar_t is binary data to is_binary.
1246    This assume invalid multibyte sequences as binary data.
1247    We assume offset_buffer and is_binary is already allocated
1248    enough space.  */
1249
1250 static size_t convert_mbs_to_wcs (CHAR_T *dest, const unsigned char* src,
1251                                   size_t len, int *offset_buffer,
1252                                   char *is_binary);
1253 static size_t
1254 convert_mbs_to_wcs (dest, src, len, offset_buffer, is_binary)
1255      CHAR_T *dest;
1256      const unsigned char* src;
1257      size_t len; /* the length of multibyte string.  */
1258
1259      /* It hold correspondances between src(char string) and
1260         dest(wchar_t string) for optimization.
1261         e.g. src  = "xxxyzz"
1262              dest = {'X', 'Y', 'Z'}
1263               (each "xxx", "y" and "zz" represent one multibyte character
1264                corresponding to 'X', 'Y' and 'Z'.)
1265           offset_buffer = {0, 0+3("xxx"), 0+3+1("y"), 0+3+1+2("zz")}
1266                         = {0, 3, 4, 6}
1267      */
1268      int *offset_buffer;
1269      char *is_binary;
1270 {
1271   wchar_t *pdest = dest;
1272   const unsigned char *psrc = src;
1273   size_t wc_count = 0;
1274
1275   mbstate_t mbs;
1276   int i, consumed;
1277   size_t mb_remain = len;
1278   size_t mb_count = 0;
1279
1280   /* Initialize the conversion state.  */
1281   memset (&mbs, 0, sizeof (mbstate_t));
1282
1283   offset_buffer[0] = 0;
1284   for( ; mb_remain > 0 ; ++wc_count, ++pdest, mb_remain -= consumed,
1285          psrc += consumed)
1286     {
1287       consumed = mbrtowc (pdest, psrc, mb_remain, &mbs);
1288
1289       if (consumed <= 0)
1290         /* failed to convert. maybe src contains binary data.
1291            So we consume 1 byte manualy.  */
1292         {
1293           *pdest = *psrc;
1294           consumed = 1;
1295           is_binary[wc_count] = TRUE;
1296         }
1297       else
1298         is_binary[wc_count] = FALSE;
1299       /* In sjis encoding, we use yen sign as escape character in
1300          place of reverse solidus. So we convert 0x5c(yen sign in
1301          sjis) to not 0xa5(yen sign in UCS2) but 0x5c(reverse
1302          solidus in UCS2).  */
1303       if (consumed == 1 && (int) *psrc == 0x5c && (int) *pdest == 0xa5)
1304         *pdest = (wchar_t) *psrc;
1305
1306       offset_buffer[wc_count + 1] = mb_count += consumed;
1307     }
1308
1309   /* Fill remain of the buffer with sentinel.  */
1310   for (i = wc_count + 1 ; i <= len ; i++)
1311     offset_buffer[i] = mb_count + 1;
1312
1313   return wc_count;
1314 }
1315
1316 # endif /* WCHAR */
1317
1318 #else /* not INSIDE_RECURSION */
1319
1320 /* Set by `re_set_syntax' to the current regexp syntax to recognize.  Can
1321    also be assigned to arbitrarily: each pattern buffer stores its own
1322    syntax, so it can be changed between regex compilations.  */
1323 /* This has no initializer because initialized variables in Emacs
1324    become read-only after dumping.  */
1325 reg_syntax_t re_syntax_options;
1326
1327
1328 /* Specify the precise syntax of regexps for compilation.  This provides
1329    for compatibility for various utilities which historically have
1330    different, incompatible syntaxes.
1331
1332    The argument SYNTAX is a bit mask comprised of the various bits
1333    defined in regex.h.  We return the old syntax.  */
1334
1335 reg_syntax_t
1336 re_set_syntax (syntax)
1337     reg_syntax_t syntax;
1338 {
1339   reg_syntax_t ret = re_syntax_options;
1340
1341   re_syntax_options = syntax;
1342 # ifdef DEBUG
1343   if (syntax & RE_DEBUG)
1344     debug = 1;
1345   else if (debug) /* was on but now is not */
1346     debug = 0;
1347 # endif /* DEBUG */
1348   return ret;
1349 }
1350 # ifdef _LIBC
1351 weak_alias (__re_set_syntax, re_set_syntax)
1352 # endif
1353 \f
1354 /* This table gives an error message for each of the error codes listed
1355    in regex.h.  Obviously the order here has to be same as there.
1356    POSIX doesn't require that we do anything for REG_NOERROR,
1357    but why not be nice?  */
1358
1359 static const char re_error_msgid[] =
1360   {
1361 # define REG_NOERROR_IDX        0
1362     gettext_noop ("Success")    /* REG_NOERROR */
1363     "\0"
1364 # define REG_NOMATCH_IDX (REG_NOERROR_IDX + sizeof "Success")
1365     gettext_noop ("No match")   /* REG_NOMATCH */
1366     "\0"
1367 # define REG_BADPAT_IDX (REG_NOMATCH_IDX + sizeof "No match")
1368     gettext_noop ("Invalid regular expression") /* REG_BADPAT */
1369     "\0"
1370 # define REG_ECOLLATE_IDX (REG_BADPAT_IDX + sizeof "Invalid regular expression")
1371     gettext_noop ("Invalid collation character") /* REG_ECOLLATE */
1372     "\0"
1373 # define REG_ECTYPE_IDX (REG_ECOLLATE_IDX + sizeof "Invalid collation character")
1374     gettext_noop ("Invalid character class name") /* REG_ECTYPE */
1375     "\0"
1376 # define REG_EESCAPE_IDX        (REG_ECTYPE_IDX + sizeof "Invalid character class name")
1377     gettext_noop ("Trailing backslash") /* REG_EESCAPE */
1378     "\0"
1379 # define REG_ESUBREG_IDX        (REG_EESCAPE_IDX + sizeof "Trailing backslash")
1380     gettext_noop ("Invalid back reference") /* REG_ESUBREG */
1381     "\0"
1382 # define REG_EBRACK_IDX (REG_ESUBREG_IDX + sizeof "Invalid back reference")
1383     gettext_noop ("Unmatched [ or [^")  /* REG_EBRACK */
1384     "\0"
1385 # define REG_EPAREN_IDX (REG_EBRACK_IDX + sizeof "Unmatched [ or [^")
1386     gettext_noop ("Unmatched ( or \\(") /* REG_EPAREN */
1387     "\0"
1388 # define REG_EBRACE_IDX (REG_EPAREN_IDX + sizeof "Unmatched ( or \\(")
1389     gettext_noop ("Unmatched \\{") /* REG_EBRACE */
1390     "\0"
1391 # define REG_BADBR_IDX  (REG_EBRACE_IDX + sizeof "Unmatched \\{")
1392     gettext_noop ("Invalid content of \\{\\}") /* REG_BADBR */
1393     "\0"
1394 # define REG_ERANGE_IDX (REG_BADBR_IDX + sizeof "Invalid content of \\{\\}")
1395     gettext_noop ("Invalid range end")  /* REG_ERANGE */
1396     "\0"
1397 # define REG_ESPACE_IDX (REG_ERANGE_IDX + sizeof "Invalid range end")
1398     gettext_noop ("Memory exhausted") /* REG_ESPACE */
1399     "\0"
1400 # define REG_BADRPT_IDX (REG_ESPACE_IDX + sizeof "Memory exhausted")
1401     gettext_noop ("Invalid preceding regular expression") /* REG_BADRPT */
1402     "\0"
1403 # define REG_EEND_IDX   (REG_BADRPT_IDX + sizeof "Invalid preceding regular expression")
1404     gettext_noop ("Premature end of regular expression") /* REG_EEND */
1405     "\0"
1406 # define REG_ESIZE_IDX  (REG_EEND_IDX + sizeof "Premature end of regular expression")
1407     gettext_noop ("Regular expression too big") /* REG_ESIZE */
1408     "\0"
1409 # define REG_ERPAREN_IDX        (REG_ESIZE_IDX + sizeof "Regular expression too big")
1410     gettext_noop ("Unmatched ) or \\)") /* REG_ERPAREN */
1411   };
1412
1413 static const size_t re_error_msgid_idx[] =
1414   {
1415     REG_NOERROR_IDX,
1416     REG_NOMATCH_IDX,
1417     REG_BADPAT_IDX,
1418     REG_ECOLLATE_IDX,
1419     REG_ECTYPE_IDX,
1420     REG_EESCAPE_IDX,
1421     REG_ESUBREG_IDX,
1422     REG_EBRACK_IDX,
1423     REG_EPAREN_IDX,
1424     REG_EBRACE_IDX,
1425     REG_BADBR_IDX,
1426     REG_ERANGE_IDX,
1427     REG_ESPACE_IDX,
1428     REG_BADRPT_IDX,
1429     REG_EEND_IDX,
1430     REG_ESIZE_IDX,
1431     REG_ERPAREN_IDX
1432   };
1433 \f
1434 #endif /* INSIDE_RECURSION */
1435
1436 #ifndef DEFINED_ONCE
1437 /* Avoiding alloca during matching, to placate r_alloc.  */
1438
1439 /* Define MATCH_MAY_ALLOCATE unless we need to make sure that the
1440    searching and matching functions should not call alloca.  On some
1441    systems, alloca is implemented in terms of malloc, and if we're
1442    using the relocating allocator routines, then malloc could cause a
1443    relocation, which might (if the strings being searched are in the
1444    ralloc heap) shift the data out from underneath the regexp
1445    routines.
1446
1447    Here's another reason to avoid allocation: Emacs
1448    processes input from X in a signal handler; processing X input may
1449    call malloc; if input arrives while a matching routine is calling
1450    malloc, then we're scrod.  But Emacs can't just block input while
1451    calling matching routines; then we don't notice interrupts when
1452    they come in.  So, Emacs blocks input around all regexp calls
1453    except the matching calls, which it leaves unprotected, in the
1454    faith that they will not malloc.  */
1455
1456 /* Normally, this is fine.  */
1457 # define MATCH_MAY_ALLOCATE
1458
1459 /* When using GNU C, we are not REALLY using the C alloca, no matter
1460    what config.h may say.  So don't take precautions for it.  */
1461 # ifdef __GNUC__
1462 #  undef C_ALLOCA
1463 # endif
1464
1465 /* The match routines may not allocate if (1) they would do it with malloc
1466    and (2) it's not safe for them to use malloc.
1467    Note that if REL_ALLOC is defined, matching would not use malloc for the
1468    failure stack, but we would still use it for the register vectors;
1469    so REL_ALLOC should not affect this.  */
1470 # if (defined C_ALLOCA || defined REGEX_MALLOC) && defined emacs
1471 #  undef MATCH_MAY_ALLOCATE
1472 # endif
1473 #endif /* not DEFINED_ONCE */
1474 \f
1475 #ifdef INSIDE_RECURSION
1476 /* Failure stack declarations and macros; both re_compile_fastmap and
1477    re_match_2 use a failure stack.  These have to be macros because of
1478    REGEX_ALLOCATE_STACK.  */
1479
1480
1481 /* Number of failure points for which to initially allocate space
1482    when matching.  If this number is exceeded, we allocate more
1483    space, so it is not a hard limit.  */
1484 # ifndef INIT_FAILURE_ALLOC
1485 #  define INIT_FAILURE_ALLOC 5
1486 # endif
1487
1488 /* Roughly the maximum number of failure points on the stack.  Would be
1489    exactly that if always used MAX_FAILURE_ITEMS items each time we failed.
1490    This is a variable only so users of regex can assign to it; we never
1491    change it ourselves.  */
1492
1493 # ifdef INT_IS_16BIT
1494
1495 #  ifndef DEFINED_ONCE
1496 #   if defined MATCH_MAY_ALLOCATE
1497 /* 4400 was enough to cause a crash on Alpha OSF/1,
1498    whose default stack limit is 2mb.  */
1499 long int re_max_failures = 4000;
1500 #   else
1501 long int re_max_failures = 2000;
1502 #   endif
1503 #  endif
1504
1505 union PREFIX(fail_stack_elt)
1506 {
1507   UCHAR_T *pointer;
1508   long int integer;
1509 };
1510
1511 typedef union PREFIX(fail_stack_elt) PREFIX(fail_stack_elt_t);
1512
1513 typedef struct
1514 {
1515   PREFIX(fail_stack_elt_t) *stack;
1516   unsigned long int size;
1517   unsigned long int avail;              /* Offset of next open position.  */
1518 } PREFIX(fail_stack_type);
1519
1520 # else /* not INT_IS_16BIT */
1521
1522 #  ifndef DEFINED_ONCE
1523 #   if defined MATCH_MAY_ALLOCATE
1524 /* 4400 was enough to cause a crash on Alpha OSF/1,
1525    whose default stack limit is 2mb.  */
1526 int re_max_failures = 4000;
1527 #   else
1528 int re_max_failures = 2000;
1529 #   endif
1530 #  endif
1531
1532 union PREFIX(fail_stack_elt)
1533 {
1534   UCHAR_T *pointer;
1535   int integer;
1536 };
1537
1538 typedef union PREFIX(fail_stack_elt) PREFIX(fail_stack_elt_t);
1539
1540 typedef struct
1541 {
1542   PREFIX(fail_stack_elt_t) *stack;
1543   unsigned size;
1544   unsigned avail;                       /* Offset of next open position.  */
1545 } PREFIX(fail_stack_type);
1546
1547 # endif /* INT_IS_16BIT */
1548
1549 # ifndef DEFINED_ONCE
1550 #  define FAIL_STACK_EMPTY()     (fail_stack.avail == 0)
1551 #  define FAIL_STACK_PTR_EMPTY() (fail_stack_ptr->avail == 0)
1552 #  define FAIL_STACK_FULL()      (fail_stack.avail == fail_stack.size)
1553 # endif
1554
1555
1556 /* Define macros to initialize and free the failure stack.
1557    Do `return -2' if the alloc fails.  */
1558
1559 # ifdef MATCH_MAY_ALLOCATE
1560 #  define INIT_FAIL_STACK()                                             \
1561   do {                                                                  \
1562     fail_stack.stack = (PREFIX(fail_stack_elt_t) *)             \
1563       REGEX_ALLOCATE_STACK (INIT_FAILURE_ALLOC * sizeof (PREFIX(fail_stack_elt_t))); \
1564                                                                         \
1565     if (fail_stack.stack == NULL)                               \
1566       return -2;                                                        \
1567                                                                         \
1568     fail_stack.size = INIT_FAILURE_ALLOC;                       \
1569     fail_stack.avail = 0;                                       \
1570   } while (0)
1571
1572 #  define RESET_FAIL_STACK()  REGEX_FREE_STACK (fail_stack.stack)
1573 # else
1574 #  define INIT_FAIL_STACK()                                             \
1575   do {                                                                  \
1576     fail_stack.avail = 0;                                       \
1577   } while (0)
1578
1579 #  define RESET_FAIL_STACK()
1580 # endif
1581
1582
1583 /* Double the size of FAIL_STACK, up to approximately `re_max_failures' items.
1584
1585    Return 1 if succeeds, and 0 if either ran out of memory
1586    allocating space for it or it was already too large.
1587
1588    REGEX_REALLOCATE_STACK requires `destination' be declared.   */
1589
1590 # define DOUBLE_FAIL_STACK(fail_stack)                                  \
1591   ((fail_stack).size > (unsigned) (re_max_failures * MAX_FAILURE_ITEMS) \
1592    ? 0                                                                  \
1593    : ((fail_stack).stack = (PREFIX(fail_stack_elt_t) *)                 \
1594         REGEX_REALLOCATE_STACK ((fail_stack).stack,                     \
1595           (fail_stack).size * sizeof (PREFIX(fail_stack_elt_t)),        \
1596           ((fail_stack).size << 1) * sizeof (PREFIX(fail_stack_elt_t))),\
1597                                                                         \
1598       (fail_stack).stack == NULL                                        \
1599       ? 0                                                               \
1600       : ((fail_stack).size <<= 1,                                       \
1601          1)))
1602
1603
1604 /* Push pointer POINTER on FAIL_STACK.
1605    Return 1 if was able to do so and 0 if ran out of memory allocating
1606    space to do so.  */
1607 # define PUSH_PATTERN_OP(POINTER, FAIL_STACK)                           \
1608   ((FAIL_STACK_FULL ()                                                  \
1609     && !DOUBLE_FAIL_STACK (FAIL_STACK))                                 \
1610    ? 0                                                                  \
1611    : ((FAIL_STACK).stack[(FAIL_STACK).avail++].pointer = POINTER,       \
1612       1))
1613
1614 /* Push a pointer value onto the failure stack.
1615    Assumes the variable `fail_stack'.  Probably should only
1616    be called from within `PUSH_FAILURE_POINT'.  */
1617 # define PUSH_FAILURE_POINTER(item)                                     \
1618   fail_stack.stack[fail_stack.avail++].pointer = (UCHAR_T *) (item)
1619
1620 /* This pushes an integer-valued item onto the failure stack.
1621    Assumes the variable `fail_stack'.  Probably should only
1622    be called from within `PUSH_FAILURE_POINT'.  */
1623 # define PUSH_FAILURE_INT(item)                                 \
1624   fail_stack.stack[fail_stack.avail++].integer = (item)
1625
1626 /* Push a fail_stack_elt_t value onto the failure stack.
1627    Assumes the variable `fail_stack'.  Probably should only
1628    be called from within `PUSH_FAILURE_POINT'.  */
1629 # define PUSH_FAILURE_ELT(item)                                 \
1630   fail_stack.stack[fail_stack.avail++] =  (item)
1631
1632 /* These three POP... operations complement the three PUSH... operations.
1633    All assume that `fail_stack' is nonempty.  */
1634 # define POP_FAILURE_POINTER() fail_stack.stack[--fail_stack.avail].pointer
1635 # define POP_FAILURE_INT() fail_stack.stack[--fail_stack.avail].integer
1636 # define POP_FAILURE_ELT() fail_stack.stack[--fail_stack.avail]
1637
1638 /* Used to omit pushing failure point id's when we're not debugging.  */
1639 # ifdef DEBUG
1640 #  define DEBUG_PUSH PUSH_FAILURE_INT
1641 #  define DEBUG_POP(item_addr) *(item_addr) = POP_FAILURE_INT ()
1642 # else
1643 #  define DEBUG_PUSH(item)
1644 #  define DEBUG_POP(item_addr)
1645 # endif
1646
1647
1648 /* Push the information about the state we will need
1649    if we ever fail back to it.
1650
1651    Requires variables fail_stack, regstart, regend, reg_info, and
1652    num_regs_pushed be declared.  DOUBLE_FAIL_STACK requires `destination'
1653    be declared.
1654
1655    Does `return FAILURE_CODE' if runs out of memory.  */
1656
1657 # define PUSH_FAILURE_POINT(pattern_place, string_place, failure_code)  \
1658   do {                                                                  \
1659     char *destination;                                                  \
1660     /* Must be int, so when we don't save any registers, the arithmetic \
1661        of 0 + -1 isn't done as unsigned.  */                            \
1662     /* Can't be int, since there is not a shred of a guarantee that int \
1663        is wide enough to hold a value of something to which pointer can \
1664        be assigned */                                                   \
1665     active_reg_t this_reg;                                              \
1666                                                                         \
1667     DEBUG_STATEMENT (failure_id++);                                     \
1668     DEBUG_STATEMENT (nfailure_points_pushed++);                         \
1669     DEBUG_PRINT2 ("\nPUSH_FAILURE_POINT #%u:\n", failure_id);           \
1670     DEBUG_PRINT2 ("  Before push, next avail: %d\n", (fail_stack).avail);\
1671     DEBUG_PRINT2 ("                     size: %d\n", (fail_stack).size);\
1672                                                                         \
1673     DEBUG_PRINT2 ("  slots needed: %ld\n", NUM_FAILURE_ITEMS);          \
1674     DEBUG_PRINT2 ("     available: %d\n", REMAINING_AVAIL_SLOTS);       \
1675                                                                         \
1676     /* Ensure we have enough space allocated for what we will push.  */ \
1677     while (REMAINING_AVAIL_SLOTS < NUM_FAILURE_ITEMS)                   \
1678       {                                                                 \
1679         if (!DOUBLE_FAIL_STACK (fail_stack))                            \
1680           return failure_code;                                          \
1681                                                                         \
1682         DEBUG_PRINT2 ("\n  Doubled stack; size now: %d\n",              \
1683                        (fail_stack).size);                              \
1684         DEBUG_PRINT2 ("  slots available: %d\n", REMAINING_AVAIL_SLOTS);\
1685       }                                                                 \
1686                                                                         \
1687     /* Push the info, starting with the registers.  */                  \
1688     DEBUG_PRINT1 ("\n");                                                \
1689                                                                         \
1690     if (1)                                                              \
1691       for (this_reg = lowest_active_reg; this_reg <= highest_active_reg; \
1692            this_reg++)                                                  \
1693         {                                                               \
1694           DEBUG_PRINT2 ("  Pushing reg: %lu\n", this_reg);              \
1695           DEBUG_STATEMENT (num_regs_pushed++);                          \
1696                                                                         \
1697           DEBUG_PRINT2 ("    start: %p\n", regstart[this_reg]);         \
1698           PUSH_FAILURE_POINTER (regstart[this_reg]);                    \
1699                                                                         \
1700           DEBUG_PRINT2 ("    end: %p\n", regend[this_reg]);             \
1701           PUSH_FAILURE_POINTER (regend[this_reg]);                      \
1702                                                                         \
1703           DEBUG_PRINT2 ("    info: %p\n      ",                         \
1704                         reg_info[this_reg].word.pointer);               \
1705           DEBUG_PRINT2 (" match_null=%d",                               \
1706                         REG_MATCH_NULL_STRING_P (reg_info[this_reg]));  \
1707           DEBUG_PRINT2 (" active=%d", IS_ACTIVE (reg_info[this_reg]));  \
1708           DEBUG_PRINT2 (" matched_something=%d",                        \
1709                         MATCHED_SOMETHING (reg_info[this_reg]));        \
1710           DEBUG_PRINT2 (" ever_matched=%d",                             \
1711                         EVER_MATCHED_SOMETHING (reg_info[this_reg]));   \
1712           DEBUG_PRINT1 ("\n");                                          \
1713           PUSH_FAILURE_ELT (reg_info[this_reg].word);                   \
1714         }                                                               \
1715                                                                         \
1716     DEBUG_PRINT2 ("  Pushing  low active reg: %ld\n", lowest_active_reg);\
1717     PUSH_FAILURE_INT (lowest_active_reg);                               \
1718                                                                         \
1719     DEBUG_PRINT2 ("  Pushing high active reg: %ld\n", highest_active_reg);\
1720     PUSH_FAILURE_INT (highest_active_reg);                              \
1721                                                                         \
1722     DEBUG_PRINT2 ("  Pushing pattern %p:\n", pattern_place);            \
1723     DEBUG_PRINT_COMPILED_PATTERN (bufp, pattern_place, pend);           \
1724     PUSH_FAILURE_POINTER (pattern_place);                               \
1725                                                                         \
1726     DEBUG_PRINT2 ("  Pushing string %p: `", string_place);              \
1727     DEBUG_PRINT_DOUBLE_STRING (string_place, string1, size1, string2,   \
1728                                  size2);                                \
1729     DEBUG_PRINT1 ("'\n");                                               \
1730     PUSH_FAILURE_POINTER (string_place);                                \
1731                                                                         \
1732     DEBUG_PRINT2 ("  Pushing failure id: %u\n", failure_id);            \
1733     DEBUG_PUSH (failure_id);                                            \
1734   } while (0)
1735
1736 # ifndef DEFINED_ONCE
1737 /* This is the number of items that are pushed and popped on the stack
1738    for each register.  */
1739 #  define NUM_REG_ITEMS  3
1740
1741 /* Individual items aside from the registers.  */
1742 #  ifdef DEBUG
1743 #   define NUM_NONREG_ITEMS 5 /* Includes failure point id.  */
1744 #  else
1745 #   define NUM_NONREG_ITEMS 4
1746 #  endif
1747
1748 /* We push at most this many items on the stack.  */
1749 /* We used to use (num_regs - 1), which is the number of registers
1750    this regexp will save; but that was changed to 5
1751    to avoid stack overflow for a regexp with lots of parens.  */
1752 #  define MAX_FAILURE_ITEMS (5 * NUM_REG_ITEMS + NUM_NONREG_ITEMS)
1753
1754 /* We actually push this many items.  */
1755 #  define NUM_FAILURE_ITEMS                             \
1756   (((0                                                  \
1757      ? 0 : highest_active_reg - lowest_active_reg + 1)  \
1758     * NUM_REG_ITEMS)                                    \
1759    + NUM_NONREG_ITEMS)
1760
1761 /* How many items can still be added to the stack without overflowing it.  */
1762 #  define REMAINING_AVAIL_SLOTS ((fail_stack).size - (fail_stack).avail)
1763 # endif /* not DEFINED_ONCE */
1764
1765
1766 /* Pops what PUSH_FAIL_STACK pushes.
1767
1768    We restore into the parameters, all of which should be lvalues:
1769      STR -- the saved data position.
1770      PAT -- the saved pattern position.
1771      LOW_REG, HIGH_REG -- the highest and lowest active registers.
1772      REGSTART, REGEND -- arrays of string positions.
1773      REG_INFO -- array of information about each subexpression.
1774
1775    Also assumes the variables `fail_stack' and (if debugging), `bufp',
1776    `pend', `string1', `size1', `string2', and `size2'.  */
1777 # define POP_FAILURE_POINT(str, pat, low_reg, high_reg, regstart, regend, reg_info)\
1778 {                                                                       \
1779   DEBUG_STATEMENT (unsigned failure_id;)                                \
1780   active_reg_t this_reg;                                                \
1781   const UCHAR_T *string_temp;                                           \
1782                                                                         \
1783   assert (!FAIL_STACK_EMPTY ());                                        \
1784                                                                         \
1785   /* Remove failure points and point to how many regs pushed.  */       \
1786   DEBUG_PRINT1 ("POP_FAILURE_POINT:\n");                                \
1787   DEBUG_PRINT2 ("  Before pop, next avail: %d\n", fail_stack.avail);    \
1788   DEBUG_PRINT2 ("                    size: %d\n", fail_stack.size);     \
1789                                                                         \
1790   assert (fail_stack.avail >= NUM_NONREG_ITEMS);                        \
1791                                                                         \
1792   DEBUG_POP (&failure_id);                                              \
1793   DEBUG_PRINT2 ("  Popping failure id: %u\n", failure_id);              \
1794                                                                         \
1795   /* If the saved string location is NULL, it came from an              \
1796      on_failure_keep_string_jump opcode, and we want to throw away the  \
1797      saved NULL, thus retaining our current position in the string.  */ \
1798   string_temp = POP_FAILURE_POINTER ();                                 \
1799   if (string_temp != NULL)                                              \
1800     str = (const CHAR_T *) string_temp;                                 \
1801                                                                         \
1802   DEBUG_PRINT2 ("  Popping string %p: `", str);                         \
1803   DEBUG_PRINT_DOUBLE_STRING (str, string1, size1, string2, size2);      \
1804   DEBUG_PRINT1 ("'\n");                                                 \
1805                                                                         \
1806   pat = (UCHAR_T *) POP_FAILURE_POINTER ();                             \
1807   DEBUG_PRINT2 ("  Popping pattern %p:\n", pat);                        \
1808   DEBUG_PRINT_COMPILED_PATTERN (bufp, pat, pend);                       \
1809                                                                         \
1810   /* Restore register info.  */                                         \
1811   high_reg = (active_reg_t) POP_FAILURE_INT ();                         \
1812   DEBUG_PRINT2 ("  Popping high active reg: %ld\n", high_reg);          \
1813                                                                         \
1814   low_reg = (active_reg_t) POP_FAILURE_INT ();                          \
1815   DEBUG_PRINT2 ("  Popping  low active reg: %ld\n", low_reg);           \
1816                                                                         \
1817   if (1)                                                                \
1818     for (this_reg = high_reg; this_reg >= low_reg; this_reg--)          \
1819       {                                                                 \
1820         DEBUG_PRINT2 ("    Popping reg: %ld\n", this_reg);              \
1821                                                                         \
1822         reg_info[this_reg].word = POP_FAILURE_ELT ();                   \
1823         DEBUG_PRINT2 ("      info: %p\n",                               \
1824                       reg_info[this_reg].word.pointer);                 \
1825                                                                         \
1826         regend[this_reg] = (const CHAR_T *) POP_FAILURE_POINTER ();     \
1827         DEBUG_PRINT2 ("      end: %p\n", regend[this_reg]);             \
1828                                                                         \
1829         regstart[this_reg] = (const CHAR_T *) POP_FAILURE_POINTER ();   \
1830         DEBUG_PRINT2 ("      start: %p\n", regstart[this_reg]);         \
1831       }                                                                 \
1832   else                                                                  \
1833     {                                                                   \
1834       for (this_reg = highest_active_reg; this_reg > high_reg; this_reg--) \
1835         {                                                               \
1836           reg_info[this_reg].word.integer = 0;                          \
1837           regend[this_reg] = 0;                                         \
1838           regstart[this_reg] = 0;                                       \
1839         }                                                               \
1840       highest_active_reg = high_reg;                                    \
1841     }                                                                   \
1842                                                                         \
1843   set_regs_matched_done = 0;                                            \
1844   DEBUG_STATEMENT (nfailure_points_popped++);                           \
1845 } /* POP_FAILURE_POINT */
1846 \f
1847 /* Structure for per-register (a.k.a. per-group) information.
1848    Other register information, such as the
1849    starting and ending positions (which are addresses), and the list of
1850    inner groups (which is a bits list) are maintained in separate
1851    variables.
1852
1853    We are making a (strictly speaking) nonportable assumption here: that
1854    the compiler will pack our bit fields into something that fits into
1855    the type of `word', i.e., is something that fits into one item on the
1856    failure stack.  */
1857
1858
1859 /* Declarations and macros for re_match_2.  */
1860
1861 typedef union
1862 {
1863   PREFIX(fail_stack_elt_t) word;
1864   struct
1865   {
1866       /* This field is one if this group can match the empty string,
1867          zero if not.  If not yet determined,  `MATCH_NULL_UNSET_VALUE'.  */
1868 # define MATCH_NULL_UNSET_VALUE 3
1869     unsigned match_null_string_p : 2;
1870     unsigned is_active : 1;
1871     unsigned matched_something : 1;
1872     unsigned ever_matched_something : 1;
1873   } bits;
1874 } PREFIX(register_info_type);
1875
1876 # ifndef DEFINED_ONCE
1877 #  define REG_MATCH_NULL_STRING_P(R)  ((R).bits.match_null_string_p)
1878 #  define IS_ACTIVE(R)  ((R).bits.is_active)
1879 #  define MATCHED_SOMETHING(R)  ((R).bits.matched_something)
1880 #  define EVER_MATCHED_SOMETHING(R)  ((R).bits.ever_matched_something)
1881
1882
1883 /* Call this when have matched a real character; it sets `matched' flags
1884    for the subexpressions which we are currently inside.  Also records
1885    that those subexprs have matched.  */
1886 #  define SET_REGS_MATCHED()                                            \
1887   do                                                                    \
1888     {                                                                   \
1889       if (!set_regs_matched_done)                                       \
1890         {                                                               \
1891           active_reg_t r;                                               \
1892           set_regs_matched_done = 1;                                    \
1893           for (r = lowest_active_reg; r <= highest_active_reg; r++)     \
1894             {                                                           \
1895               MATCHED_SOMETHING (reg_info[r])                           \
1896                 = EVER_MATCHED_SOMETHING (reg_info[r])                  \
1897                 = 1;                                                    \
1898             }                                                           \
1899         }                                                               \
1900     }                                                                   \
1901   while (0)
1902 # endif /* not DEFINED_ONCE */
1903
1904 /* Registers are set to a sentinel when they haven't yet matched.  */
1905 static CHAR_T PREFIX(reg_unset_dummy);
1906 # define REG_UNSET_VALUE (&PREFIX(reg_unset_dummy))
1907 # define REG_UNSET(e) ((e) == REG_UNSET_VALUE)
1908
1909 /* Subroutine declarations and macros for regex_compile.  */
1910 static void PREFIX(store_op1) _RE_ARGS ((re_opcode_t op, UCHAR_T *loc, int arg));
1911 static void PREFIX(store_op2) _RE_ARGS ((re_opcode_t op, UCHAR_T *loc,
1912                                  int arg1, int arg2));
1913 static void PREFIX(insert_op1) _RE_ARGS ((re_opcode_t op, UCHAR_T *loc,
1914                                   int arg, UCHAR_T *end));
1915 static void PREFIX(insert_op2) _RE_ARGS ((re_opcode_t op, UCHAR_T *loc,
1916                                   int arg1, int arg2, UCHAR_T *end));
1917 static boolean PREFIX(at_begline_loc_p) _RE_ARGS ((const CHAR_T *pattern,
1918                                            const CHAR_T *p,
1919                                            reg_syntax_t syntax));
1920 static boolean PREFIX(at_endline_loc_p) _RE_ARGS ((const CHAR_T *p,
1921                                            const CHAR_T *pend,
1922                                            reg_syntax_t syntax));
1923 # ifdef WCHAR
1924 static reg_errcode_t wcs_compile_range _RE_ARGS ((CHAR_T range_start,
1925                                                   const CHAR_T **p_ptr,
1926                                                   const CHAR_T *pend,
1927                                                   char *translate,
1928                                                   reg_syntax_t syntax,
1929                                                   UCHAR_T *b,
1930                                                   CHAR_T *char_set));
1931 static void insert_space _RE_ARGS ((int num, CHAR_T *loc, CHAR_T *end));
1932 # else /* BYTE */
1933 static reg_errcode_t byte_compile_range _RE_ARGS ((unsigned int range_start,
1934                                                    const char **p_ptr,
1935                                                    const char *pend,
1936                                                    char *translate,
1937                                                    reg_syntax_t syntax,
1938                                                    unsigned char *b));
1939 # endif /* WCHAR */
1940
1941 /* Fetch the next character in the uncompiled pattern---translating it
1942    if necessary.  Also cast from a signed character in the constant
1943    string passed to us by the user to an unsigned char that we can use
1944    as an array index (in, e.g., `translate').  */
1945 /* ifdef MBS_SUPPORT, we translate only if character <= 0xff,
1946    because it is impossible to allocate 4GB array for some encodings
1947    which have 4 byte character_set like UCS4.  */
1948 # ifndef PATFETCH
1949 #  ifdef WCHAR
1950 #   define PATFETCH(c)                                                  \
1951   do {if (p == pend) return REG_EEND;                                   \
1952     c = (UCHAR_T) *p++;                                                 \
1953     if (translate && (c <= 0xff)) c = (UCHAR_T) translate[c];           \
1954   } while (0)
1955 #  else /* BYTE */
1956 #   define PATFETCH(c)                                                  \
1957   do {if (p == pend) return REG_EEND;                                   \
1958     c = (unsigned char) *p++;                                           \
1959     if (translate) c = (unsigned char) translate[c];                    \
1960   } while (0)
1961 #  endif /* WCHAR */
1962 # endif
1963
1964 /* Fetch the next character in the uncompiled pattern, with no
1965    translation.  */
1966 # define PATFETCH_RAW(c)                                                \
1967   do {if (p == pend) return REG_EEND;                                   \
1968     c = (UCHAR_T) *p++;                                                 \
1969   } while (0)
1970
1971 /* Go backwards one character in the pattern.  */
1972 # define PATUNFETCH p--
1973
1974
1975 /* If `translate' is non-null, return translate[D], else just D.  We
1976    cast the subscript to translate because some data is declared as
1977    `char *', to avoid warnings when a string constant is passed.  But
1978    when we use a character as a subscript we must make it unsigned.  */
1979 /* ifdef MBS_SUPPORT, we translate only if character <= 0xff,
1980    because it is impossible to allocate 4GB array for some encodings
1981    which have 4 byte character_set like UCS4.  */
1982
1983 # ifndef TRANSLATE
1984 #  ifdef WCHAR
1985 #   define TRANSLATE(d) \
1986   ((translate && ((UCHAR_T) (d)) <= 0xff) \
1987    ? (char) translate[(unsigned char) (d)] : (d))
1988 # else /* BYTE */
1989 #   define TRANSLATE(d) \
1990   (translate ? (char) translate[(unsigned char) (d)] : (d))
1991 #  endif /* WCHAR */
1992 # endif
1993
1994
1995 /* Macros for outputting the compiled pattern into `buffer'.  */
1996
1997 /* If the buffer isn't allocated when it comes in, use this.  */
1998 # define INIT_BUF_SIZE  (32 * sizeof(UCHAR_T))
1999
2000 /* Make sure we have at least N more bytes of space in buffer.  */
2001 # ifdef WCHAR
2002 #  define GET_BUFFER_SPACE(n)                                           \
2003     while (((unsigned long)b - (unsigned long)COMPILED_BUFFER_VAR       \
2004             + (n)*sizeof(CHAR_T)) > bufp->allocated)                    \
2005       EXTEND_BUFFER ()
2006 # else /* BYTE */
2007 #  define GET_BUFFER_SPACE(n)                                           \
2008     while ((unsigned long) (b - bufp->buffer + (n)) > bufp->allocated)  \
2009       EXTEND_BUFFER ()
2010 # endif /* WCHAR */
2011
2012 /* Make sure we have one more byte of buffer space and then add C to it.  */
2013 # define BUF_PUSH(c)                                                    \
2014   do {                                                                  \
2015     GET_BUFFER_SPACE (1);                                               \
2016     *b++ = (UCHAR_T) (c);                                               \
2017   } while (0)
2018
2019
2020 /* Ensure we have two more bytes of buffer space and then append C1 and C2.  */
2021 # define BUF_PUSH_2(c1, c2)                                             \
2022   do {                                                                  \
2023     GET_BUFFER_SPACE (2);                                               \
2024     *b++ = (UCHAR_T) (c1);                                              \
2025     *b++ = (UCHAR_T) (c2);                                              \
2026   } while (0)
2027
2028
2029 /* As with BUF_PUSH_2, except for three bytes.  */
2030 # define BUF_PUSH_3(c1, c2, c3)                                         \
2031   do {                                                                  \
2032     GET_BUFFER_SPACE (3);                                               \
2033     *b++ = (UCHAR_T) (c1);                                              \
2034     *b++ = (UCHAR_T) (c2);                                              \
2035     *b++ = (UCHAR_T) (c3);                                              \
2036   } while (0)
2037
2038 /* Store a jump with opcode OP at LOC to location TO.  We store a
2039    relative address offset by the three bytes the jump itself occupies.  */
2040 # define STORE_JUMP(op, loc, to) \
2041  PREFIX(store_op1) (op, loc, (int) ((to) - (loc) - (1 + OFFSET_ADDRESS_SIZE)))
2042
2043 /* Likewise, for a two-argument jump.  */
2044 # define STORE_JUMP2(op, loc, to, arg) \
2045   PREFIX(store_op2) (op, loc, (int) ((to) - (loc) - (1 + OFFSET_ADDRESS_SIZE)), arg)
2046
2047 /* Like `STORE_JUMP', but for inserting.  Assume `b' is the buffer end.  */
2048 # define INSERT_JUMP(op, loc, to) \
2049   PREFIX(insert_op1) (op, loc, (int) ((to) - (loc) - (1 + OFFSET_ADDRESS_SIZE)), b)
2050
2051 /* Like `STORE_JUMP2', but for inserting.  Assume `b' is the buffer end.  */
2052 # define INSERT_JUMP2(op, loc, to, arg) \
2053   PREFIX(insert_op2) (op, loc, (int) ((to) - (loc) - (1 + OFFSET_ADDRESS_SIZE)),\
2054               arg, b)
2055
2056 /* This is not an arbitrary limit: the arguments which represent offsets
2057    into the pattern are two bytes long.  So if 2^16 bytes turns out to
2058    be too small, many things would have to change.  */
2059 /* Any other compiler which, like MSC, has allocation limit below 2^16
2060    bytes will have to use approach similar to what was done below for
2061    MSC and drop MAX_BUF_SIZE a bit.  Otherwise you may end up
2062    reallocating to 0 bytes.  Such thing is not going to work too well.
2063    You have been warned!!  */
2064 # ifndef DEFINED_ONCE
2065 #  if defined _MSC_VER  && !defined WIN32
2066 /* Microsoft C 16-bit versions limit malloc to approx 65512 bytes.
2067    The REALLOC define eliminates a flurry of conversion warnings,
2068    but is not required. */
2069 #   define MAX_BUF_SIZE  65500L
2070 #   define REALLOC(p,s) realloc ((p), (size_t) (s))
2071 #  else
2072 #   define MAX_BUF_SIZE (1L << 16)
2073 #   define REALLOC(p,s) realloc ((p), (s))
2074 #  endif
2075
2076 /* Extend the buffer by twice its current size via realloc and
2077    reset the pointers that pointed into the old block to point to the
2078    correct places in the new one.  If extending the buffer results in it
2079    being larger than MAX_BUF_SIZE, then flag memory exhausted.  */
2080 #  if __BOUNDED_POINTERS__
2081 #   define SET_HIGH_BOUND(P) (__ptrhigh (P) = __ptrlow (P) + bufp->allocated)
2082 #   define MOVE_BUFFER_POINTER(P) \
2083   (__ptrlow (P) += incr, SET_HIGH_BOUND (P), __ptrvalue (P) += incr)
2084 #   define ELSE_EXTEND_BUFFER_HIGH_BOUND        \
2085   else                                          \
2086     {                                           \
2087       SET_HIGH_BOUND (b);                       \
2088       SET_HIGH_BOUND (begalt);                  \
2089       if (fixup_alt_jump)                       \
2090         SET_HIGH_BOUND (fixup_alt_jump);        \
2091       if (laststart)                            \
2092         SET_HIGH_BOUND (laststart);             \
2093       if (pending_exact)                        \
2094         SET_HIGH_BOUND (pending_exact);         \
2095     }
2096 #  else
2097 #   define MOVE_BUFFER_POINTER(P) (P) += incr
2098 #   define ELSE_EXTEND_BUFFER_HIGH_BOUND
2099 #  endif
2100 # endif /* not DEFINED_ONCE */
2101
2102 # ifdef WCHAR
2103 #  define EXTEND_BUFFER()                                               \
2104   do {                                                                  \
2105     UCHAR_T *old_buffer = COMPILED_BUFFER_VAR;                          \
2106     int wchar_count;                                                    \
2107     if (bufp->allocated + sizeof(UCHAR_T) > MAX_BUF_SIZE)               \
2108       return REG_ESIZE;                                                 \
2109     bufp->allocated <<= 1;                                              \
2110     if (bufp->allocated > MAX_BUF_SIZE)                                 \
2111       bufp->allocated = MAX_BUF_SIZE;                                   \
2112     /* How many characters the new buffer can have?  */                 \
2113     wchar_count = bufp->allocated / sizeof(UCHAR_T);                    \
2114     if (wchar_count == 0) wchar_count = 1;                              \
2115     /* Truncate the buffer to CHAR_T align.  */                 \
2116     bufp->allocated = wchar_count * sizeof(UCHAR_T);                    \
2117     RETALLOC (COMPILED_BUFFER_VAR, wchar_count, UCHAR_T);               \
2118     bufp->buffer = (char*)COMPILED_BUFFER_VAR;                          \
2119     if (COMPILED_BUFFER_VAR == NULL)                                    \
2120       return REG_ESPACE;                                                \
2121     /* If the buffer moved, move all the pointers into it.  */          \
2122     if (old_buffer != COMPILED_BUFFER_VAR)                              \
2123       {                                                                 \
2124         int incr = COMPILED_BUFFER_VAR - old_buffer;                    \
2125         MOVE_BUFFER_POINTER (b);                                        \
2126         MOVE_BUFFER_POINTER (begalt);                                   \
2127         if (fixup_alt_jump)                                             \
2128           MOVE_BUFFER_POINTER (fixup_alt_jump);                         \
2129         if (laststart)                                                  \
2130           MOVE_BUFFER_POINTER (laststart);                              \
2131         if (pending_exact)                                              \
2132           MOVE_BUFFER_POINTER (pending_exact);                          \
2133       }                                                                 \
2134     ELSE_EXTEND_BUFFER_HIGH_BOUND                                       \
2135   } while (0)
2136 # else /* BYTE */
2137 #  define EXTEND_BUFFER()                                               \
2138   do {                                                                  \
2139     UCHAR_T *old_buffer = COMPILED_BUFFER_VAR;                          \
2140     if (bufp->allocated == MAX_BUF_SIZE)                                \
2141       return REG_ESIZE;                                                 \
2142     bufp->allocated <<= 1;                                              \
2143     if (bufp->allocated > MAX_BUF_SIZE)                                 \
2144       bufp->allocated = MAX_BUF_SIZE;                                   \
2145     bufp->buffer = (UCHAR_T *) REALLOC (COMPILED_BUFFER_VAR,            \
2146                                                 bufp->allocated);       \
2147     if (COMPILED_BUFFER_VAR == NULL)                                    \
2148       return REG_ESPACE;                                                \
2149     /* If the buffer moved, move all the pointers into it.  */          \
2150     if (old_buffer != COMPILED_BUFFER_VAR)                              \
2151       {                                                                 \
2152         int incr = COMPILED_BUFFER_VAR - old_buffer;                    \
2153         MOVE_BUFFER_POINTER (b);                                        \
2154         MOVE_BUFFER_POINTER (begalt);                                   \
2155         if (fixup_alt_jump)                                             \
2156           MOVE_BUFFER_POINTER (fixup_alt_jump);                         \
2157         if (laststart)                                                  \
2158           MOVE_BUFFER_POINTER (laststart);                              \
2159         if (pending_exact)                                              \
2160           MOVE_BUFFER_POINTER (pending_exact);                          \
2161       }                                                                 \
2162     ELSE_EXTEND_BUFFER_HIGH_BOUND                                       \
2163   } while (0)
2164 # endif /* WCHAR */
2165
2166 # ifndef DEFINED_ONCE
2167 /* Since we have one byte reserved for the register number argument to
2168    {start,stop}_memory, the maximum number of groups we can report
2169    things about is what fits in that byte.  */
2170 #  define MAX_REGNUM 255
2171
2172 /* But patterns can have more than `MAX_REGNUM' registers.  We just
2173    ignore the excess.  */
2174 typedef unsigned regnum_t;
2175
2176
2177 /* Macros for the compile stack.  */
2178
2179 /* Since offsets can go either forwards or backwards, this type needs to
2180    be able to hold values from -(MAX_BUF_SIZE - 1) to MAX_BUF_SIZE - 1.  */
2181 /* int may be not enough when sizeof(int) == 2.  */
2182 typedef long pattern_offset_t;
2183
2184 typedef struct
2185 {
2186   pattern_offset_t begalt_offset;
2187   pattern_offset_t fixup_alt_jump;
2188   pattern_offset_t inner_group_offset;
2189   pattern_offset_t laststart_offset;
2190   regnum_t regnum;
2191 } compile_stack_elt_t;
2192
2193
2194 typedef struct
2195 {
2196   compile_stack_elt_t *stack;
2197   unsigned size;
2198   unsigned avail;                       /* Offset of next open position.  */
2199 } compile_stack_type;
2200
2201
2202 #  define INIT_COMPILE_STACK_SIZE 32
2203
2204 #  define COMPILE_STACK_EMPTY  (compile_stack.avail == 0)
2205 #  define COMPILE_STACK_FULL  (compile_stack.avail == compile_stack.size)
2206
2207 /* The next available element.  */
2208 #  define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
2209
2210 # endif /* not DEFINED_ONCE */
2211
2212 /* Set the bit for character C in a list.  */
2213 # ifndef DEFINED_ONCE
2214 #  define SET_LIST_BIT(c)                               \
2215   (b[((unsigned char) (c)) / BYTEWIDTH]               \
2216    |= 1 << (((unsigned char) c) % BYTEWIDTH))
2217 # endif /* DEFINED_ONCE */
2218
2219 /* Get the next unsigned number in the uncompiled pattern.  */
2220 # define GET_UNSIGNED_NUMBER(num) \
2221   {                                                                     \
2222     while (p != pend)                                                   \
2223       {                                                                 \
2224         PATFETCH (c);                                                   \
2225         if (c < '0' || c > '9')                                         \
2226           break;                                                        \
2227         if (num <= RE_DUP_MAX)                                          \
2228           {                                                             \
2229             if (num < 0)                                                \
2230               num = 0;                                                  \
2231             num = num * 10 + c - '0';                                   \
2232           }                                                             \
2233       }                                                                 \
2234   }
2235
2236 # ifndef DEFINED_ONCE
2237 #  if defined _LIBC || WIDE_CHAR_SUPPORT
2238 /* The GNU C library provides support for user-defined character classes
2239    and the functions from ISO C amendement 1.  */
2240 #   ifdef CHARCLASS_NAME_MAX
2241 #    define CHAR_CLASS_MAX_LENGTH CHARCLASS_NAME_MAX
2242 #   else
2243 /* This shouldn't happen but some implementation might still have this
2244    problem.  Use a reasonable default value.  */
2245 #    define CHAR_CLASS_MAX_LENGTH 256
2246 #   endif
2247
2248 #   ifdef _LIBC
2249 #    define IS_CHAR_CLASS(string) __wctype (string)
2250 #   else
2251 #    define IS_CHAR_CLASS(string) wctype (string)
2252 #   endif
2253 #  else
2254 #   define CHAR_CLASS_MAX_LENGTH  6 /* Namely, `xdigit'.  */
2255
2256 #   define IS_CHAR_CLASS(string)                                        \
2257    (STREQ (string, "alpha") || STREQ (string, "upper")                  \
2258     || STREQ (string, "lower") || STREQ (string, "digit")               \
2259     || STREQ (string, "alnum") || STREQ (string, "xdigit")              \
2260     || STREQ (string, "space") || STREQ (string, "print")               \
2261     || STREQ (string, "punct") || STREQ (string, "graph")               \
2262     || STREQ (string, "cntrl") || STREQ (string, "blank"))
2263 #  endif
2264 # endif /* DEFINED_ONCE */
2265 \f
2266 # ifndef MATCH_MAY_ALLOCATE
2267
2268 /* If we cannot allocate large objects within re_match_2_internal,
2269    we make the fail stack and register vectors global.
2270    The fail stack, we grow to the maximum size when a regexp
2271    is compiled.
2272    The register vectors, we adjust in size each time we
2273    compile a regexp, according to the number of registers it needs.  */
2274
2275 static PREFIX(fail_stack_type) fail_stack;
2276
2277 /* Size with which the following vectors are currently allocated.
2278    That is so we can make them bigger as needed,
2279    but never make them smaller.  */
2280 #  ifdef DEFINED_ONCE
2281 static int regs_allocated_size;
2282
2283 static const char **     regstart, **     regend;
2284 static const char ** old_regstart, ** old_regend;
2285 static const char **best_regstart, **best_regend;
2286 static const char **reg_dummy;
2287 #  endif /* DEFINED_ONCE */
2288
2289 static PREFIX(register_info_type) *PREFIX(reg_info);
2290 static PREFIX(register_info_type) *PREFIX(reg_info_dummy);
2291
2292 /* Make the register vectors big enough for NUM_REGS registers,
2293    but don't make them smaller.  */
2294
2295 static void
2296 PREFIX(regex_grow_registers) (num_regs)
2297      int num_regs;
2298 {
2299   if (num_regs > regs_allocated_size)
2300     {
2301       RETALLOC_IF (regstart,     num_regs, const char *);
2302       RETALLOC_IF (regend,       num_regs, const char *);
2303       RETALLOC_IF (old_regstart, num_regs, const char *);
2304       RETALLOC_IF (old_regend,   num_regs, const char *);
2305       RETALLOC_IF (best_regstart, num_regs, const char *);
2306       RETALLOC_IF (best_regend,  num_regs, const char *);
2307       RETALLOC_IF (PREFIX(reg_info), num_regs, PREFIX(register_info_type));
2308       RETALLOC_IF (reg_dummy,    num_regs, const char *);
2309       RETALLOC_IF (PREFIX(reg_info_dummy), num_regs, PREFIX(register_info_type));
2310
2311       regs_allocated_size = num_regs;
2312     }
2313 }
2314
2315 # endif /* not MATCH_MAY_ALLOCATE */
2316 \f
2317 # ifndef DEFINED_ONCE
2318 static boolean group_in_compile_stack _RE_ARGS ((compile_stack_type
2319                                                  compile_stack,
2320                                                  regnum_t regnum));
2321 # endif /* not DEFINED_ONCE */
2322
2323 /* `regex_compile' compiles PATTERN (of length SIZE) according to SYNTAX.
2324    Returns one of error codes defined in `regex.h', or zero for success.
2325
2326    Assumes the `allocated' (and perhaps `buffer') and `translate'
2327    fields are set in BUFP on entry.
2328
2329    If it succeeds, results are put in BUFP (if it returns an error, the
2330    contents of BUFP are undefined):
2331      `buffer' is the compiled pattern;
2332      `syntax' is set to SYNTAX;
2333      `used' is set to the length of the compiled pattern;
2334      `fastmap_accurate' is zero;
2335      `re_nsub' is the number of subexpressions in PATTERN;
2336      `not_bol' and `not_eol' are zero;
2337
2338    The `fastmap' and `newline_anchor' fields are neither
2339    examined nor set.  */
2340
2341 /* Return, freeing storage we allocated.  */
2342 # ifdef WCHAR
2343 #  define FREE_STACK_RETURN(value)              \
2344   return (free(pattern), free(mbs_offset), free(is_binary), free (compile_stack.stack), value)
2345 # else
2346 #  define FREE_STACK_RETURN(value)              \
2347   return (free (compile_stack.stack), value)
2348 # endif /* WCHAR */
2349
2350 static reg_errcode_t
2351 PREFIX(regex_compile) (ARG_PREFIX(pattern), ARG_PREFIX(size), syntax, bufp)
2352      const char *ARG_PREFIX(pattern);
2353      size_t ARG_PREFIX(size);
2354      reg_syntax_t syntax;
2355      struct re_pattern_buffer *bufp;
2356 {
2357   /* We fetch characters from PATTERN here.  Even though PATTERN is
2358      `char *' (i.e., signed), we declare these variables as unsigned, so
2359      they can be reliably used as array indices.  */
2360   register UCHAR_T c, c1;
2361
2362 #ifdef WCHAR
2363   /* A temporary space to keep wchar_t pattern and compiled pattern.  */
2364   CHAR_T *pattern, *COMPILED_BUFFER_VAR;
2365   size_t size;
2366   /* offset buffer for optimization. See convert_mbs_to_wc.  */
2367   int *mbs_offset = NULL;
2368   /* It hold whether each wchar_t is binary data or not.  */
2369   char *is_binary = NULL;
2370   /* A flag whether exactn is handling binary data or not.  */
2371   char is_exactn_bin = FALSE;
2372 #endif /* WCHAR */
2373
2374   /* A random temporary spot in PATTERN.  */
2375   const CHAR_T *p1;
2376
2377   /* Points to the end of the buffer, where we should append.  */
2378   register UCHAR_T *b;
2379
2380   /* Keeps track of unclosed groups.  */
2381   compile_stack_type compile_stack;
2382
2383   /* Points to the current (ending) position in the pattern.  */
2384 #ifdef WCHAR
2385   const CHAR_T *p;
2386   const CHAR_T *pend;
2387 #else /* BYTE */
2388   const CHAR_T *p = pattern;
2389   const CHAR_T *pend = pattern + size;
2390 #endif /* WCHAR */
2391
2392   /* How to translate the characters in the pattern.  */
2393   RE_TRANSLATE_TYPE translate = bufp->translate;
2394
2395   /* Address of the count-byte of the most recently inserted `exactn'
2396      command.  This makes it possible to tell if a new exact-match
2397      character can be added to that command or if the character requires
2398      a new `exactn' command.  */
2399   UCHAR_T *pending_exact = 0;
2400
2401   /* Address of start of the most recently finished expression.
2402      This tells, e.g., postfix * where to find the start of its
2403      operand.  Reset at the beginning of groups and alternatives.  */
2404   UCHAR_T *laststart = 0;
2405
2406   /* Address of beginning of regexp, or inside of last group.  */
2407   UCHAR_T *begalt;
2408
2409   /* Address of the place where a forward jump should go to the end of
2410      the containing expression.  Each alternative of an `or' -- except the
2411      last -- ends with a forward jump of this sort.  */
2412   UCHAR_T *fixup_alt_jump = 0;
2413
2414   /* Counts open-groups as they are encountered.  Remembered for the
2415      matching close-group on the compile stack, so the same register
2416      number is put in the stop_memory as the start_memory.  */
2417   regnum_t regnum = 0;
2418
2419 #ifdef WCHAR
2420   /* Initialize the wchar_t PATTERN and offset_buffer.  */
2421   p = pend = pattern = TALLOC(csize + 1, CHAR_T);
2422   mbs_offset = TALLOC(csize + 1, int);
2423   is_binary = TALLOC(csize + 1, char);
2424   if (pattern == NULL || mbs_offset == NULL || is_binary == NULL)
2425     {
2426       free(pattern);
2427       free(mbs_offset);
2428       free(is_binary);
2429       return REG_ESPACE;
2430     }
2431   pattern[csize] = L'\0';       /* sentinel */
2432   size = convert_mbs_to_wcs(pattern, cpattern, csize, mbs_offset, is_binary);
2433   pend = p + size;
2434   if (size < 0)
2435     {
2436       free(pattern);
2437       free(mbs_offset);
2438       free(is_binary);
2439       return REG_BADPAT;
2440     }
2441 #endif
2442
2443 #ifdef DEBUG
2444   DEBUG_PRINT1 ("\nCompiling pattern: ");
2445   if (debug)
2446     {
2447       unsigned debug_count;
2448
2449       for (debug_count = 0; debug_count < size; debug_count++)
2450         PUT_CHAR (pattern[debug_count]);
2451       putchar ('\n');
2452     }
2453 #endif /* DEBUG */
2454
2455   /* Initialize the compile stack.  */
2456   compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t);
2457   if (compile_stack.stack == NULL)
2458     {
2459 #ifdef WCHAR
2460       free(pattern);
2461       free(mbs_offset);
2462       free(is_binary);
2463 #endif
2464       return REG_ESPACE;
2465     }
2466
2467   compile_stack.size = INIT_COMPILE_STACK_SIZE;
2468   compile_stack.avail = 0;
2469
2470   /* Initialize the pattern buffer.  */
2471   bufp->syntax = syntax;
2472   bufp->fastmap_accurate = 0;
2473   bufp->not_bol = bufp->not_eol = 0;
2474
2475   /* Set `used' to zero, so that if we return an error, the pattern
2476      printer (for debugging) will think there's no pattern.  We reset it
2477      at the end.  */
2478   bufp->used = 0;
2479
2480   /* Always count groups, whether or not bufp->no_sub is set.  */
2481   bufp->re_nsub = 0;
2482
2483 #if !defined emacs && !defined SYNTAX_TABLE
2484   /* Initialize the syntax table.  */
2485    init_syntax_once ();
2486 #endif
2487
2488   if (bufp->allocated == 0)
2489     {
2490       if (bufp->buffer)
2491         { /* If zero allocated, but buffer is non-null, try to realloc
2492              enough space.  This loses if buffer's address is bogus, but
2493              that is the user's responsibility.  */
2494 #ifdef WCHAR
2495           /* Free bufp->buffer and allocate an array for wchar_t pattern
2496              buffer.  */
2497           free(bufp->buffer);
2498           COMPILED_BUFFER_VAR = TALLOC (INIT_BUF_SIZE/sizeof(UCHAR_T),
2499                                         UCHAR_T);
2500 #else
2501           RETALLOC (COMPILED_BUFFER_VAR, INIT_BUF_SIZE, UCHAR_T);
2502 #endif /* WCHAR */
2503         }
2504       else
2505         { /* Caller did not allocate a buffer.  Do it for them.  */
2506           COMPILED_BUFFER_VAR = TALLOC (INIT_BUF_SIZE / sizeof(UCHAR_T),
2507                                         UCHAR_T);
2508         }
2509
2510       if (!COMPILED_BUFFER_VAR) FREE_STACK_RETURN (REG_ESPACE);
2511 #ifdef WCHAR
2512       bufp->buffer = (char*)COMPILED_BUFFER_VAR;
2513 #endif /* WCHAR */
2514       bufp->allocated = INIT_BUF_SIZE;
2515     }
2516 #ifdef WCHAR
2517   else
2518     COMPILED_BUFFER_VAR = (UCHAR_T*) bufp->buffer;
2519 #endif
2520
2521   begalt = b = COMPILED_BUFFER_VAR;
2522
2523   /* Loop through the uncompiled pattern until we're at the end.  */
2524   while (p != pend)
2525     {
2526       PATFETCH (c);
2527
2528       switch (c)
2529         {
2530         case '^':
2531           {
2532             if (   /* If at start of pattern, it's an operator.  */
2533                    p == pattern + 1
2534                    /* If context independent, it's an operator.  */
2535                 || syntax & RE_CONTEXT_INDEP_ANCHORS
2536                    /* Otherwise, depends on what's come before.  */
2537                 || PREFIX(at_begline_loc_p) (pattern, p, syntax))
2538               BUF_PUSH (begline);
2539             else
2540               goto normal_char;
2541           }
2542           break;
2543
2544
2545         case '$':
2546           {
2547             if (   /* If at end of pattern, it's an operator.  */
2548                    p == pend
2549                    /* If context independent, it's an operator.  */
2550                 || syntax & RE_CONTEXT_INDEP_ANCHORS
2551                    /* Otherwise, depends on what's next.  */
2552                 || PREFIX(at_endline_loc_p) (p, pend, syntax))
2553                BUF_PUSH (endline);
2554              else
2555                goto normal_char;
2556            }
2557            break;
2558
2559
2560         case '+':
2561         case '?':
2562           if ((syntax & RE_BK_PLUS_QM)
2563               || (syntax & RE_LIMITED_OPS))
2564             goto normal_char;
2565         handle_plus:
2566         case '*':
2567           /* If there is no previous pattern... */
2568           if (!laststart)
2569             {
2570               if (syntax & RE_CONTEXT_INVALID_OPS)
2571                 FREE_STACK_RETURN (REG_BADRPT);
2572               else if (!(syntax & RE_CONTEXT_INDEP_OPS))
2573                 goto normal_char;
2574             }
2575
2576           {
2577             /* Are we optimizing this jump?  */
2578             boolean keep_string_p = false;
2579
2580             /* 1 means zero (many) matches is allowed.  */
2581             char zero_times_ok = 0, many_times_ok = 0;
2582
2583             /* If there is a sequence of repetition chars, collapse it
2584                down to just one (the right one).  We can't combine
2585                interval operators with these because of, e.g., `a{2}*',
2586                which should only match an even number of `a's.  */
2587
2588             for (;;)
2589               {
2590                 zero_times_ok |= c != '+';
2591                 many_times_ok |= c != '?';
2592
2593                 if (p == pend)
2594                   break;
2595
2596                 PATFETCH (c);
2597
2598                 if (c == '*'
2599                     || (!(syntax & RE_BK_PLUS_QM) && (c == '+' || c == '?')))
2600                   ;
2601
2602                 else if (syntax & RE_BK_PLUS_QM  &&  c == '\\')
2603                   {
2604                     if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
2605
2606                     PATFETCH (c1);
2607                     if (!(c1 == '+' || c1 == '?'))
2608                       {
2609                         PATUNFETCH;
2610                         PATUNFETCH;
2611                         break;
2612                       }
2613
2614                     c = c1;
2615                   }
2616                 else
2617                   {
2618                     PATUNFETCH;
2619                     break;
2620                   }
2621
2622                 /* If we get here, we found another repeat character.  */
2623                }
2624
2625             /* Star, etc. applied to an empty pattern is equivalent
2626                to an empty pattern.  */
2627             if (!laststart)
2628               break;
2629
2630             /* Now we know whether or not zero matches is allowed
2631                and also whether or not two or more matches is allowed.  */
2632             if (many_times_ok)
2633               { /* More than one repetition is allowed, so put in at the
2634                    end a backward relative jump from `b' to before the next
2635                    jump we're going to put in below (which jumps from
2636                    laststart to after this jump).
2637
2638                    But if we are at the `*' in the exact sequence `.*\n',
2639                    insert an unconditional jump backwards to the .,
2640                    instead of the beginning of the loop.  This way we only
2641                    push a failure point once, instead of every time
2642                    through the loop.  */
2643                 assert (p - 1 > pattern);
2644
2645                 /* Allocate the space for the jump.  */
2646                 GET_BUFFER_SPACE (1 + OFFSET_ADDRESS_SIZE);
2647
2648                 /* We know we are not at the first character of the pattern,
2649                    because laststart was nonzero.  And we've already
2650                    incremented `p', by the way, to be the character after
2651                    the `*'.  Do we have to do something analogous here
2652                    for null bytes, because of RE_DOT_NOT_NULL?  */
2653                 if (TRANSLATE (*(p - 2)) == TRANSLATE ('.')
2654                     && zero_times_ok
2655                     && p < pend && TRANSLATE (*p) == TRANSLATE ('\n')
2656                     && !(syntax & RE_DOT_NEWLINE))
2657                   { /* We have .*\n.  */
2658                     STORE_JUMP (jump, b, laststart);
2659                     keep_string_p = true;
2660                   }
2661                 else
2662                   /* Anything else.  */
2663                   STORE_JUMP (maybe_pop_jump, b, laststart -
2664                               (1 + OFFSET_ADDRESS_SIZE));
2665
2666                 /* We've added more stuff to the buffer.  */
2667                 b += 1 + OFFSET_ADDRESS_SIZE;
2668               }
2669
2670             /* On failure, jump from laststart to b + 3, which will be the
2671                end of the buffer after this jump is inserted.  */
2672             /* ifdef WCHAR, 'b + 1 + OFFSET_ADDRESS_SIZE' instead of
2673                'b + 3'.  */
2674             GET_BUFFER_SPACE (1 + OFFSET_ADDRESS_SIZE);
2675             INSERT_JUMP (keep_string_p ? on_failure_keep_string_jump
2676                                        : on_failure_jump,
2677                          laststart, b + 1 + OFFSET_ADDRESS_SIZE);
2678             pending_exact = 0;
2679             b += 1 + OFFSET_ADDRESS_SIZE;
2680
2681             if (!zero_times_ok)
2682               {
2683                 /* At least one repetition is required, so insert a
2684                    `dummy_failure_jump' before the initial
2685                    `on_failure_jump' instruction of the loop. This
2686                    effects a skip over that instruction the first time
2687                    we hit that loop.  */
2688                 GET_BUFFER_SPACE (1 + OFFSET_ADDRESS_SIZE);
2689                 INSERT_JUMP (dummy_failure_jump, laststart, laststart +
2690                              2 + 2 * OFFSET_ADDRESS_SIZE);
2691                 b += 1 + OFFSET_ADDRESS_SIZE;
2692               }
2693             }
2694           break;
2695
2696
2697         case '.':
2698           laststart = b;
2699           BUF_PUSH (anychar);
2700           break;
2701
2702
2703         case '[':
2704           {
2705             boolean had_char_class = false;
2706 #ifdef WCHAR
2707             CHAR_T range_start = 0xffffffff;
2708 #else
2709             unsigned int range_start = 0xffffffff;
2710 #endif
2711             if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
2712
2713 #ifdef WCHAR
2714             /* We assume a charset(_not) structure as a wchar_t array.
2715                charset[0] = (re_opcode_t) charset(_not)
2716                charset[1] = l (= length of char_classes)
2717                charset[2] = m (= length of collating_symbols)
2718                charset[3] = n (= length of equivalence_classes)
2719                charset[4] = o (= length of char_ranges)
2720                charset[5] = p (= length of chars)
2721
2722                charset[6] = char_class (wctype_t)
2723                charset[6+CHAR_CLASS_SIZE] = char_class (wctype_t)
2724                          ...
2725                charset[l+5]  = char_class (wctype_t)
2726
2727                charset[l+6]  = collating_symbol (wchar_t)
2728                             ...
2729                charset[l+m+5]  = collating_symbol (wchar_t)
2730                                         ifdef _LIBC we use the index if
2731                                         _NL_COLLATE_SYMB_EXTRAMB instead of
2732                                         wchar_t string.
2733
2734                charset[l+m+6]  = equivalence_classes (wchar_t)
2735                               ...
2736                charset[l+m+n+5]  = equivalence_classes (wchar_t)
2737                                         ifdef _LIBC we use the index in
2738                                         _NL_COLLATE_WEIGHT instead of
2739                                         wchar_t string.
2740
2741                charset[l+m+n+6] = range_start
2742                charset[l+m+n+7] = range_end
2743                                ...
2744                charset[l+m+n+2o+4] = range_start
2745                charset[l+m+n+2o+5] = range_end
2746                                         ifdef _LIBC we use the value looked up
2747                                         in _NL_COLLATE_COLLSEQ instead of
2748                                         wchar_t character.
2749
2750                charset[l+m+n+2o+6] = char
2751                                   ...
2752                charset[l+m+n+2o+p+5] = char
2753
2754              */
2755
2756             /* We need at least 6 spaces: the opcode, the length of
2757                char_classes, the length of collating_symbols, the length of
2758                equivalence_classes, the length of char_ranges, the length of
2759                chars.  */
2760             GET_BUFFER_SPACE (6);
2761
2762             /* Save b as laststart. And We use laststart as the pointer
2763                to the first element of the charset here.
2764                In other words, laststart[i] indicates charset[i].  */
2765             laststart = b;
2766
2767             /* We test `*p == '^' twice, instead of using an if
2768                statement, so we only need one BUF_PUSH.  */
2769             BUF_PUSH (*p == '^' ? charset_not : charset);
2770             if (*p == '^')
2771               p++;
2772
2773             /* Push the length of char_classes, the length of
2774                collating_symbols, the length of equivalence_classes, the
2775                length of char_ranges and the length of chars.  */
2776             BUF_PUSH_3 (0, 0, 0);
2777             BUF_PUSH_2 (0, 0);
2778
2779             /* Remember the first position in the bracket expression.  */
2780             p1 = p;
2781
2782             /* charset_not matches newline according to a syntax bit.  */
2783             if ((re_opcode_t) b[-6] == charset_not
2784                 && (syntax & RE_HAT_LISTS_NOT_NEWLINE))
2785               {
2786                 BUF_PUSH('\n');
2787                 laststart[5]++; /* Update the length of characters  */
2788               }
2789
2790             /* Read in characters and ranges, setting map bits.  */
2791             for (;;)
2792               {
2793                 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
2794
2795                 PATFETCH (c);
2796
2797                 /* \ might escape characters inside [...] and [^...].  */
2798                 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\\')
2799                   {
2800                     if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
2801
2802                     PATFETCH (c1);
2803                     BUF_PUSH(c1);
2804                     laststart[5]++; /* Update the length of chars  */
2805                     range_start = c1;
2806                     continue;
2807                   }
2808
2809                 /* Could be the end of the bracket expression.  If it's
2810                    not (i.e., when the bracket expression is `[]' so
2811                    far), the ']' character bit gets set way below.  */
2812                 if (c == ']' && p != p1 + 1)
2813                   break;
2814
2815                 /* Look ahead to see if it's a range when the last thing
2816                    was a character class.  */
2817                 if (had_char_class && c == '-' && *p != ']')
2818                   FREE_STACK_RETURN (REG_ERANGE);
2819
2820                 /* Look ahead to see if it's a range when the last thing
2821                    was a character: if this is a hyphen not at the
2822                    beginning or the end of a list, then it's the range
2823                    operator.  */
2824                 if (c == '-'
2825                     && !(p - 2 >= pattern && p[-2] == '[')
2826                     && !(p - 3 >= pattern && p[-3] == '[' && p[-2] == '^')
2827                     && *p != ']')
2828                   {
2829                     reg_errcode_t ret;
2830                     /* Allocate the space for range_start and range_end.  */
2831                     GET_BUFFER_SPACE (2);
2832                     /* Update the pointer to indicate end of buffer.  */
2833                     b += 2;
2834                     ret = wcs_compile_range (range_start, &p, pend, translate,
2835                                          syntax, b, laststart);
2836                     if (ret != REG_NOERROR) FREE_STACK_RETURN (ret);
2837                     range_start = 0xffffffff;
2838                   }
2839                 else if (p[0] == '-' && p[1] != ']')
2840                   { /* This handles ranges made up of characters only.  */
2841                     reg_errcode_t ret;
2842
2843                     /* Move past the `-'.  */
2844                     PATFETCH (c1);
2845                     /* Allocate the space for range_start and range_end.  */
2846                     GET_BUFFER_SPACE (2);
2847                     /* Update the pointer to indicate end of buffer.  */
2848                     b += 2;
2849                     ret = wcs_compile_range (c, &p, pend, translate, syntax, b,
2850                                          laststart);
2851                     if (ret != REG_NOERROR) FREE_STACK_RETURN (ret);
2852                     range_start = 0xffffffff;
2853                   }
2854
2855                 /* See if we're at the beginning of a possible character
2856                    class.  */
2857                 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == ':')
2858                   { /* Leave room for the null.  */
2859                     char str[CHAR_CLASS_MAX_LENGTH + 1];
2860
2861                     PATFETCH (c);
2862                     c1 = 0;
2863
2864                     /* If pattern is `[[:'.  */
2865                     if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
2866
2867                     for (;;)
2868                       {
2869                         PATFETCH (c);
2870                         if ((c == ':' && *p == ']') || p == pend)
2871                           break;
2872                         if (c1 < CHAR_CLASS_MAX_LENGTH)
2873                           str[c1++] = c;
2874                         else
2875                           /* This is in any case an invalid class name.  */
2876                           str[0] = '\0';
2877                       }
2878                     str[c1] = '\0';
2879
2880                     /* If isn't a word bracketed by `[:' and `:]':
2881                        undo the ending character, the letters, and leave
2882                        the leading `:' and `[' (but store them as character).  */
2883                     if (c == ':' && *p == ']')
2884                       {
2885                         wctype_t wt;
2886                         uintptr_t alignedp;
2887
2888                         /* Query the character class as wctype_t.  */
2889                         wt = IS_CHAR_CLASS (str);
2890                         if (wt == 0)
2891                           FREE_STACK_RETURN (REG_ECTYPE);
2892
2893                         /* Throw away the ] at the end of the character
2894                            class.  */
2895                         PATFETCH (c);
2896
2897                         if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
2898
2899                         /* Allocate the space for character class.  */
2900                         GET_BUFFER_SPACE(CHAR_CLASS_SIZE);
2901                         /* Update the pointer to indicate end of buffer.  */
2902                         b += CHAR_CLASS_SIZE;
2903                         /* Move data which follow character classes
2904                             not to violate the data.  */
2905                         insert_space(CHAR_CLASS_SIZE,
2906                                      laststart + 6 + laststart[1],
2907                                      b - 1);
2908                         alignedp = ((uintptr_t)(laststart + 6 + laststart[1])
2909                                     + __alignof__(wctype_t) - 1)
2910                                     & ~(uintptr_t)(__alignof__(wctype_t) - 1);
2911                         /* Store the character class.  */
2912                         *((wctype_t*)alignedp) = wt;
2913                         /* Update length of char_classes */
2914                         laststart[1] += CHAR_CLASS_SIZE;
2915
2916                         had_char_class = true;
2917                       }
2918                     else
2919                       {
2920                         c1++;
2921                         while (c1--)
2922                           PATUNFETCH;
2923                         BUF_PUSH ('[');
2924                         BUF_PUSH (':');
2925                         laststart[5] += 2; /* Update the length of characters  */
2926                         range_start = ':';
2927                         had_char_class = false;
2928                       }
2929                   }
2930                 else if (syntax & RE_CHAR_CLASSES && c == '[' && (*p == '='
2931                                                           || *p == '.'))
2932                   {
2933                     CHAR_T str[128];    /* Should be large enough.  */
2934                     CHAR_T delim = *p; /* '=' or '.'  */
2935 # ifdef _LIBC
2936                     uint32_t nrules =
2937                       _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
2938 # endif
2939                     PATFETCH (c);
2940                     c1 = 0;
2941
2942                     /* If pattern is `[[=' or '[[.'.  */
2943                     if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
2944
2945                     for (;;)
2946                       {
2947                         PATFETCH (c);
2948                         if ((c == delim && *p == ']') || p == pend)
2949                           break;
2950                         if (c1 < sizeof (str) - 1)
2951                           str[c1++] = c;
2952                         else
2953                           /* This is in any case an invalid class name.  */
2954                           str[0] = '\0';
2955                       }
2956                     str[c1] = '\0';
2957
2958                     if (c == delim && *p == ']' && str[0] != '\0')
2959                       {
2960                         unsigned int i, offset;
2961                         /* If we have no collation data we use the default
2962                            collation in which each character is in a class
2963                            by itself.  It also means that ASCII is the
2964                            character set and therefore we cannot have character
2965                            with more than one byte in the multibyte
2966                            representation.  */
2967
2968                         /* If not defined _LIBC, we push the name and
2969                            `\0' for the sake of matching performance.  */
2970                         int datasize = c1 + 1;
2971
2972 # ifdef _LIBC
2973                         int32_t idx = 0;
2974                         if (nrules == 0)
2975 # endif
2976                           {
2977                             if (c1 != 1)
2978                               FREE_STACK_RETURN (REG_ECOLLATE);
2979                           }
2980 # ifdef _LIBC
2981                         else
2982                           {
2983                             const int32_t *table;
2984                             const int32_t *weights;
2985                             const int32_t *extra;
2986                             const int32_t *indirect;
2987                             wint_t *cp;
2988
2989                             /* This #include defines a local function!  */
2990 #  include <locale/weightwc.h>
2991
2992                             if(delim == '=')
2993                               {
2994                                 /* We push the index for equivalence class.  */
2995                                 cp = (wint_t*)str;
2996
2997                                 table = (const int32_t *)
2998                                   _NL_CURRENT (LC_COLLATE,
2999                                                _NL_COLLATE_TABLEWC);
3000                                 weights = (const int32_t *)
3001                                   _NL_CURRENT (LC_COLLATE,
3002                                                _NL_COLLATE_WEIGHTWC);
3003                                 extra = (const int32_t *)
3004                                   _NL_CURRENT (LC_COLLATE,
3005                                                _NL_COLLATE_EXTRAWC);
3006                                 indirect = (const int32_t *)
3007                                   _NL_CURRENT (LC_COLLATE,
3008                                                _NL_COLLATE_INDIRECTWC);
3009
3010                                 idx = findidx ((const wint_t**)&cp);
3011                                 if (idx == 0 || cp < (wint_t*) str + c1)
3012                                   /* This is no valid character.  */
3013                                   FREE_STACK_RETURN (REG_ECOLLATE);
3014
3015                                 str[0] = (wchar_t)idx;
3016                               }
3017                             else /* delim == '.' */
3018                               {
3019                                 /* We push collation sequence value
3020                                    for collating symbol.  */
3021                                 int32_t table_size;
3022                                 const int32_t *symb_table;
3023                                 const unsigned char *extra;
3024                                 int32_t idx;
3025                                 int32_t elem;
3026                                 int32_t second;
3027                                 int32_t hash;
3028                                 char char_str[c1];
3029
3030                                 /* We have to convert the name to a single-byte
3031                                    string.  This is possible since the names
3032                                    consist of ASCII characters and the internal
3033                                    representation is UCS4.  */
3034                                 for (i = 0; i < c1; ++i)
3035                                   char_str[i] = str[i];
3036
3037                                 table_size =
3038                                   _NL_CURRENT_WORD (LC_COLLATE,
3039                                                     _NL_COLLATE_SYMB_HASH_SIZEMB);
3040                                 symb_table = (const int32_t *)
3041                                   _NL_CURRENT (LC_COLLATE,
3042                                                _NL_COLLATE_SYMB_TABLEMB);
3043                                 extra = (const unsigned char *)
3044                                   _NL_CURRENT (LC_COLLATE,
3045                                                _NL_COLLATE_SYMB_EXTRAMB);
3046
3047                                 /* Locate the character in the hashing table.  */
3048                                 hash = elem_hash (char_str, c1);
3049
3050                                 idx = 0;
3051                                 elem = hash % table_size;
3052                                 second = hash % (table_size - 2);
3053                                 while (symb_table[2 * elem] != 0)
3054                                   {
3055                                     /* First compare the hashing value.  */
3056                                     if (symb_table[2 * elem] == hash
3057                                         && c1 == extra[symb_table[2 * elem + 1]]
3058                                         && memcmp (char_str,
3059                                                    &extra[symb_table[2 * elem + 1]
3060                                                          + 1], c1) == 0)
3061                                       {
3062                                         /* Yep, this is the entry.  */
3063                                         idx = symb_table[2 * elem + 1];
3064                                         idx += 1 + extra[idx];
3065                                         break;
3066                                       }
3067
3068                                     /* Next entry.  */
3069                                     elem += second;
3070                                   }
3071
3072                                 if (symb_table[2 * elem] != 0)
3073                                   {
3074                                     /* Compute the index of the byte sequence
3075                                        in the table.  */
3076                                     idx += 1 + extra[idx];
3077                                     /* Adjust for the alignment.  */
3078                                     idx = (idx + 3) & ~3;
3079
3080                                     str[0] = (wchar_t) idx + 4;
3081                                   }
3082                                 else if (symb_table[2 * elem] == 0 && c1 == 1)
3083                                   {
3084                                     /* No valid character.  Match it as a
3085                                        single byte character.  */
3086                                     had_char_class = false;
3087                                     BUF_PUSH(str[0]);
3088                                     /* Update the length of characters  */
3089                                     laststart[5]++;
3090                                     range_start = str[0];
3091
3092                                     /* Throw away the ] at the end of the
3093                                        collating symbol.  */
3094                                     PATFETCH (c);
3095                                     /* exit from the switch block.  */
3096                                     continue;
3097                                   }
3098                                 else
3099                                   FREE_STACK_RETURN (REG_ECOLLATE);
3100                               }
3101                             datasize = 1;
3102                           }
3103 # endif
3104                         /* Throw away the ] at the end of the equivalence
3105                            class (or collating symbol).  */
3106                         PATFETCH (c);
3107
3108                         /* Allocate the space for the equivalence class
3109                            (or collating symbol) (and '\0' if needed).  */
3110                         GET_BUFFER_SPACE(datasize);
3111                         /* Update the pointer to indicate end of buffer.  */
3112                         b += datasize;
3113
3114                         if (delim == '=')
3115                           { /* equivalence class  */
3116                             /* Calculate the offset of char_ranges,
3117                                which is next to equivalence_classes.  */
3118                             offset = laststart[1] + laststart[2]
3119                               + laststart[3] +6;
3120                             /* Insert space.  */
3121                             insert_space(datasize, laststart + offset, b - 1);
3122
3123                             /* Write the equivalence_class and \0.  */
3124                             for (i = 0 ; i < datasize ; i++)
3125                               laststart[offset + i] = str[i];
3126
3127                             /* Update the length of equivalence_classes.  */
3128                             laststart[3] += datasize;
3129                             had_char_class = true;
3130                           }
3131                         else /* delim == '.' */
3132                           { /* collating symbol  */
3133                             /* Calculate the offset of the equivalence_classes,
3134                                which is next to collating_symbols.  */
3135                             offset = laststart[1] + laststart[2] + 6;
3136                             /* Insert space and write the collationg_symbol
3137                                and \0.  */
3138                             insert_space(datasize, laststart + offset, b-1);
3139                             for (i = 0 ; i < datasize ; i++)
3140                               laststart[offset + i] = str[i];
3141
3142                             /* In re_match_2_internal if range_start < -1, we
3143                                assume -range_start is the offset of the
3144                                collating symbol which is specified as
3145                                the character of the range start.  So we assign
3146                                -(laststart[1] + laststart[2] + 6) to
3147                                range_start.  */
3148                             range_start = -(laststart[1] + laststart[2] + 6);
3149                             /* Update the length of collating_symbol.  */
3150                             laststart[2] += datasize;
3151                             had_char_class = false;
3152                           }
3153                       }
3154                     else
3155                       {
3156                         c1++;
3157                         while (c1--)
3158                           PATUNFETCH;
3159                         BUF_PUSH ('[');
3160                         BUF_PUSH (delim);
3161                         laststart[5] += 2; /* Update the length of characters  */
3162                         range_start = delim;
3163                         had_char_class = false;
3164                       }
3165                   }
3166                 else
3167                   {
3168                     had_char_class = false;
3169                     BUF_PUSH(c);
3170                     laststart[5]++;  /* Update the length of characters  */
3171                     range_start = c;
3172                   }
3173               }
3174
3175 #else /* BYTE */
3176             /* Ensure that we have enough space to push a charset: the
3177                opcode, the length count, and the bitset; 34 bytes in all.  */
3178             GET_BUFFER_SPACE (34);
3179
3180             laststart = b;
3181
3182             /* We test `*p == '^' twice, instead of using an if
3183                statement, so we only need one BUF_PUSH.  */
3184             BUF_PUSH (*p == '^' ? charset_not : charset);
3185             if (*p == '^')
3186               p++;
3187
3188             /* Remember the first position in the bracket expression.  */
3189             p1 = p;
3190
3191             /* Push the number of bytes in the bitmap.  */
3192             BUF_PUSH ((1 << BYTEWIDTH) / BYTEWIDTH);
3193
3194             /* Clear the whole map.  */
3195             bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH);
3196
3197             /* charset_not matches newline according to a syntax bit.  */
3198             if ((re_opcode_t) b[-2] == charset_not
3199                 && (syntax & RE_HAT_LISTS_NOT_NEWLINE))
3200               SET_LIST_BIT ('\n');
3201
3202             /* Read in characters and ranges, setting map bits.  */
3203             for (;;)
3204               {
3205                 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
3206
3207                 PATFETCH (c);
3208
3209                 /* \ might escape characters inside [...] and [^...].  */
3210                 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\\')
3211                   {
3212                     if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
3213
3214                     PATFETCH (c1);
3215                     SET_LIST_BIT (c1);
3216                     range_start = c1;
3217                     continue;
3218                   }
3219
3220                 /* Could be the end of the bracket expression.  If it's
3221                    not (i.e., when the bracket expression is `[]' so
3222                    far), the ']' character bit gets set way below.  */
3223                 if (c == ']' && p != p1 + 1)
3224                   break;
3225
3226                 /* Look ahead to see if it's a range when the last thing
3227                    was a character class.  */
3228                 if (had_char_class && c == '-' && *p != ']')
3229                   FREE_STACK_RETURN (REG_ERANGE);
3230
3231                 /* Look ahead to see if it's a range when the last thing
3232                    was a character: if this is a hyphen not at the
3233                    beginning or the end of a list, then it's the range
3234                    operator.  */
3235                 if (c == '-'
3236                     && !(p - 2 >= pattern && p[-2] == '[')
3237                     && !(p - 3 >= pattern && p[-3] == '[' && p[-2] == '^')
3238                     && *p != ']')
3239                   {
3240                     reg_errcode_t ret
3241                       = byte_compile_range (range_start, &p, pend, translate,
3242                                             syntax, b);
3243                     if (ret != REG_NOERROR) FREE_STACK_RETURN (ret);
3244                     range_start = 0xffffffff;
3245                   }
3246
3247                 else if (p[0] == '-' && p[1] != ']')
3248                   { /* This handles ranges made up of characters only.  */
3249                     reg_errcode_t ret;
3250
3251                     /* Move past the `-'.  */
3252                     PATFETCH (c1);
3253
3254                     ret = byte_compile_range (c, &p, pend, translate, syntax, b);
3255                     if (ret != REG_NOERROR) FREE_STACK_RETURN (ret);
3256                     range_start = 0xffffffff;
3257                   }
3258
3259                 /* See if we're at the beginning of a possible character
3260                    class.  */
3261
3262                 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == ':')
3263                   { /* Leave room for the null.  */
3264                     char str[CHAR_CLASS_MAX_LENGTH + 1];
3265
3266                     PATFETCH (c);
3267                     c1 = 0;
3268
3269                     /* If pattern is `[[:'.  */
3270                     if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
3271
3272                     for (;;)
3273                       {
3274                         PATFETCH (c);
3275                         if ((c == ':' && *p == ']') || p == pend)
3276                           break;
3277                         if (c1 < CHAR_CLASS_MAX_LENGTH)
3278                           str[c1++] = c;
3279                         else
3280                           /* This is in any case an invalid class name.  */
3281                           str[0] = '\0';
3282                       }
3283                     str[c1] = '\0';
3284
3285                     /* If isn't a word bracketed by `[:' and `:]':
3286                        undo the ending character, the letters, and leave
3287                        the leading `:' and `[' (but set bits for them).  */
3288                     if (c == ':' && *p == ']')
3289                       {
3290 # if defined _LIBC || WIDE_CHAR_SUPPORT
3291                         boolean is_lower = STREQ (str, "lower");
3292                         boolean is_upper = STREQ (str, "upper");
3293                         wctype_t wt;
3294                         int ch;
3295
3296                         wt = IS_CHAR_CLASS (str);
3297                         if (wt == 0)
3298                           FREE_STACK_RETURN (REG_ECTYPE);
3299
3300                         /* Throw away the ] at the end of the character
3301                            class.  */
3302                         PATFETCH (c);
3303
3304                         if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
3305
3306                         for (ch = 0; ch < 1 << BYTEWIDTH; ++ch)
3307                           {
3308                             if (iswctype (btowc (ch), wt))
3309                               SET_LIST_BIT (ch);
3310
3311                             if (translate && (is_upper || is_lower)
3312                                 && (ISUPPER (ch) || ISLOWER (ch)))
3313                               SET_LIST_BIT (ch);
3314                           }
3315
3316                         had_char_class = true;
3317 # else
3318                         int ch;
3319                         boolean is_alnum = STREQ (str, "alnum");
3320                         boolean is_alpha = STREQ (str, "alpha");
3321                         boolean is_blank = STREQ (str, "blank");
3322                         boolean is_cntrl = STREQ (str, "cntrl");
3323                         boolean is_digit = STREQ (str, "digit");
3324                         boolean is_graph = STREQ (str, "graph");
3325                         boolean is_lower = STREQ (str, "lower");
3326                         boolean is_print = STREQ (str, "print");
3327                         boolean is_punct = STREQ (str, "punct");
3328                         boolean is_space = STREQ (str, "space");
3329                         boolean is_upper = STREQ (str, "upper");
3330                         boolean is_xdigit = STREQ (str, "xdigit");
3331
3332                         if (!IS_CHAR_CLASS (str))
3333                           FREE_STACK_RETURN (REG_ECTYPE);
3334
3335                         /* Throw away the ] at the end of the character
3336                            class.  */
3337                         PATFETCH (c);
3338
3339                         if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
3340
3341                         for (ch = 0; ch < 1 << BYTEWIDTH; ch++)
3342                           {
3343                             /* This was split into 3 if's to
3344                                avoid an arbitrary limit in some compiler.  */
3345                             if (   (is_alnum  && ISALNUM (ch))
3346                                 || (is_alpha  && ISALPHA (ch))
3347                                 || (is_blank  && ISBLANK (ch))
3348                                 || (is_cntrl  && ISCNTRL (ch)))
3349                               SET_LIST_BIT (ch);
3350                             if (   (is_digit  && ISDIGIT (ch))
3351                                 || (is_graph  && ISGRAPH (ch))
3352                                 || (is_lower  && ISLOWER (ch))
3353                                 || (is_print  && ISPRINT (ch)))
3354                               SET_LIST_BIT (ch);
3355                             if (   (is_punct  && ISPUNCT (ch))
3356                                 || (is_space  && ISSPACE (ch))
3357                                 || (is_upper  && ISUPPER (ch))
3358                                 || (is_xdigit && ISXDIGIT (ch)))
3359                               SET_LIST_BIT (ch);
3360                             if (   translate && (is_upper || is_lower)
3361                                 && (ISUPPER (ch) || ISLOWER (ch)))
3362                               SET_LIST_BIT (ch);
3363                           }
3364                         had_char_class = true;
3365 # endif /* libc || wctype.h */
3366                       }
3367                     else
3368                       {
3369                         c1++;
3370                         while (c1--)
3371                           PATUNFETCH;
3372                         SET_LIST_BIT ('[');
3373                         SET_LIST_BIT (':');
3374                         range_start = ':';
3375                         had_char_class = false;
3376                       }
3377                   }
3378                 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == '=')
3379                   {
3380                     unsigned char str[MB_LEN_MAX + 1];
3381 # ifdef _LIBC
3382                     uint32_t nrules =
3383                       _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
3384 # endif
3385
3386                     PATFETCH (c);
3387                     c1 = 0;
3388
3389                     /* If pattern is `[[='.  */
3390                     if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
3391
3392                     for (;;)
3393                       {
3394                         PATFETCH (c);
3395                         if ((c == '=' && *p == ']') || p == pend)
3396                           break;
3397                         if (c1 < MB_LEN_MAX)
3398                           str[c1++] = c;
3399                         else
3400                           /* This is in any case an invalid class name.  */
3401                           str[0] = '\0';
3402                       }
3403                     str[c1] = '\0';
3404
3405                     if (c == '=' && *p == ']' && str[0] != '\0')
3406                       {
3407                         /* If we have no collation data we use the default
3408                            collation in which each character is in a class
3409                            by itself.  It also means that ASCII is the
3410                            character set and therefore we cannot have character
3411                            with more than one byte in the multibyte
3412                            representation.  */
3413 # ifdef _LIBC
3414                         if (nrules == 0)
3415 # endif
3416                           {
3417                             if (c1 != 1)
3418                               FREE_STACK_RETURN (REG_ECOLLATE);
3419
3420                             /* Throw away the ] at the end of the equivalence
3421                                class.  */
3422                             PATFETCH (c);
3423
3424                             /* Set the bit for the character.  */
3425                             SET_LIST_BIT (str[0]);
3426                           }
3427 # ifdef _LIBC
3428                         else
3429                           {
3430                             /* Try to match the byte sequence in `str' against
3431                                those known to the collate implementation.
3432                                First find out whether the bytes in `str' are
3433                                actually from exactly one character.  */
3434                             const int32_t *table;
3435                             const unsigned char *weights;
3436                             const unsigned char *extra;
3437                             const int32_t *indirect;
3438                             int32_t idx;
3439                             const unsigned char *cp = str;
3440                             int ch;
3441
3442                             /* This #include defines a local function!  */
3443 #  include <locale/weight.h>
3444
3445                             table = (const int32_t *)
3446                               _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEMB);
3447                             weights = (const unsigned char *)
3448                               _NL_CURRENT (LC_COLLATE, _NL_COLLATE_WEIGHTMB);
3449                             extra = (const unsigned char *)
3450                               _NL_CURRENT (LC_COLLATE, _NL_COLLATE_EXTRAMB);
3451                             indirect = (const int32_t *)
3452                               _NL_CURRENT (LC_COLLATE, _NL_COLLATE_INDIRECTMB);
3453
3454                             idx = findidx (&cp);
3455                             if (idx == 0 || cp < str + c1)
3456                               /* This is no valid character.  */
3457                               FREE_STACK_RETURN (REG_ECOLLATE);
3458
3459                             /* Throw away the ] at the end of the equivalence
3460                                class.  */
3461                             PATFETCH (c);
3462
3463                             /* Now we have to go throught the whole table
3464                                and find all characters which have the same
3465                                first level weight.
3466
3467                                XXX Note that this is not entirely correct.
3468                                we would have to match multibyte sequences
3469                                but this is not possible with the current
3470                                implementation.  */
3471                             for (ch = 1; ch < 256; ++ch)
3472                               /* XXX This test would have to be changed if we
3473                                  would allow matching multibyte sequences.  */
3474                               if (table[ch] > 0)
3475                                 {
3476                                   int32_t idx2 = table[ch];
3477                                   size_t len = weights[idx2];
3478
3479                                   /* Test whether the lenghts match.  */
3480                                   if (weights[idx] == len)
3481                                     {
3482                                       /* They do.  New compare the bytes of
3483                                          the weight.  */
3484                                       size_t cnt = 0;
3485
3486                                       while (cnt < len
3487                                              && (weights[idx + 1 + cnt]
3488                                                  == weights[idx2 + 1 + cnt]))
3489                                         ++cnt;
3490
3491                                       if (cnt == len)
3492                                         /* They match.  Mark the character as
3493                                            acceptable.  */
3494                                         SET_LIST_BIT (ch);
3495                                     }
3496                                 }
3497                           }
3498 # endif
3499                         had_char_class = true;
3500                       }
3501                     else
3502                       {
3503                         c1++;
3504                         while (c1--)
3505                           PATUNFETCH;
3506                         SET_LIST_BIT ('[');
3507                         SET_LIST_BIT ('=');
3508                         range_start = '=';
3509                         had_char_class = false;
3510                       }
3511                   }
3512                 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == '.')
3513                   {
3514                     unsigned char str[128];     /* Should be large enough.  */
3515 # ifdef _LIBC
3516                     uint32_t nrules =
3517                       _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
3518 # endif
3519
3520                     PATFETCH (c);
3521                     c1 = 0;
3522
3523                     /* If pattern is `[[.'.  */
3524                     if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
3525
3526                     for (;;)
3527                       {
3528                         PATFETCH (c);
3529                         if ((c == '.' && *p == ']') || p == pend)
3530                           break;
3531                         if (c1 < sizeof (str))
3532                           str[c1++] = c;
3533                         else
3534                           /* This is in any case an invalid class name.  */
3535                           str[0] = '\0';
3536                       }
3537                     str[c1] = '\0';
3538
3539                     if (c == '.' && *p == ']' && str[0] != '\0')
3540                       {
3541                         /* If we have no collation data we use the default
3542                            collation in which each character is the name
3543                            for its own class which contains only the one
3544                            character.  It also means that ASCII is the
3545                            character set and therefore we cannot have character
3546                            with more than one byte in the multibyte
3547                            representation.  */
3548 # ifdef _LIBC
3549                         if (nrules == 0)
3550 # endif
3551                           {
3552                             if (c1 != 1)
3553                               FREE_STACK_RETURN (REG_ECOLLATE);
3554
3555                             /* Throw away the ] at the end of the equivalence
3556                                class.  */
3557                             PATFETCH (c);
3558
3559                             /* Set the bit for the character.  */
3560                             SET_LIST_BIT (str[0]);
3561                             range_start = ((const unsigned char *) str)[0];
3562                           }
3563 # ifdef _LIBC
3564                         else
3565                           {
3566                             /* Try to match the byte sequence in `str' against
3567                                those known to the collate implementation.
3568                                First find out whether the bytes in `str' are
3569                                actually from exactly one character.  */
3570                             int32_t table_size;
3571                             const int32_t *symb_table;
3572                             const unsigned char *extra;
3573                             int32_t idx;
3574                             int32_t elem;
3575                             int32_t second;
3576                             int32_t hash;
3577
3578                             table_size =
3579                               _NL_CURRENT_WORD (LC_COLLATE,
3580                                                 _NL_COLLATE_SYMB_HASH_SIZEMB);
3581                             symb_table = (const int32_t *)
3582                               _NL_CURRENT (LC_COLLATE,
3583                                            _NL_COLLATE_SYMB_TABLEMB);
3584                             extra = (const unsigned char *)
3585                               _NL_CURRENT (LC_COLLATE,
3586                                            _NL_COLLATE_SYMB_EXTRAMB);
3587
3588                             /* Locate the character in the hashing table.  */
3589                             hash = elem_hash (str, c1);
3590
3591                             idx = 0;
3592                             elem = hash % table_size;
3593                             second = hash % (table_size - 2);
3594                             while (symb_table[2 * elem] != 0)
3595                               {
3596                                 /* First compare the hashing value.  */
3597                                 if (symb_table[2 * elem] == hash
3598                                     && c1 == extra[symb_table[2 * elem + 1]]
3599                                     && memcmp (str,
3600                                                &extra[symb_table[2 * elem + 1]
3601                                                      + 1],
3602                                                c1) == 0)
3603                                   {
3604                                     /* Yep, this is the entry.  */
3605                                     idx = symb_table[2 * elem + 1];
3606                                     idx += 1 + extra[idx];
3607                                     break;
3608                                   }
3609
3610                                 /* Next entry.  */
3611                                 elem += second;
3612                               }
3613
3614                             if (symb_table[2 * elem] == 0)
3615                               /* This is no valid character.  */
3616                               FREE_STACK_RETURN (REG_ECOLLATE);
3617
3618                             /* Throw away the ] at the end of the equivalence
3619                                class.  */
3620                             PATFETCH (c);
3621
3622                             /* Now add the multibyte character(s) we found
3623                                to the accept list.
3624
3625                                XXX Note that this is not entirely correct.
3626                                we would have to match multibyte sequences
3627                                but this is not possible with the current
3628                                implementation.  Also, we have to match
3629                                collating symbols, which expand to more than
3630                                one file, as a whole and not allow the
3631                                individual bytes.  */
3632                             c1 = extra[idx++];
3633                             if (c1 == 1)
3634                               range_start = extra[idx];
3635                             while (c1-- > 0)
3636                               {
3637                                 SET_LIST_BIT (extra[idx]);
3638                                 ++idx;
3639                               }
3640                           }
3641 # endif
3642                         had_char_class = false;
3643                       }
3644                     else
3645                       {
3646                         c1++;
3647                         while (c1--)
3648                           PATUNFETCH;
3649                         SET_LIST_BIT ('[');
3650                         SET_LIST_BIT ('.');
3651                         range_start = '.';
3652                         had_char_class = false;
3653                       }
3654                   }
3655                 else
3656                   {
3657                     had_char_class = false;
3658                     SET_LIST_BIT (c);
3659                     range_start = c;
3660                   }
3661               }
3662
3663             /* Discard any (non)matching list bytes that are all 0 at the
3664                end of the map.  Decrease the map-length byte too.  */
3665             while ((int) b[-1] > 0 && b[b[-1] - 1] == 0)
3666               b[-1]--;
3667             b += b[-1];
3668 #endif /* WCHAR */
3669           }
3670           break;
3671
3672
3673         case '(':
3674           if (syntax & RE_NO_BK_PARENS)
3675             goto handle_open;
3676           else
3677             goto normal_char;
3678
3679
3680         case ')':
3681           if (syntax & RE_NO_BK_PARENS)
3682             goto handle_close;
3683           else
3684             goto normal_char;
3685
3686
3687         case '\n':
3688           if (syntax & RE_NEWLINE_ALT)
3689             goto handle_alt;
3690           else
3691             goto normal_char;
3692
3693
3694         case '|':
3695           if (syntax & RE_NO_BK_VBAR)
3696             goto handle_alt;
3697           else
3698             goto normal_char;
3699
3700
3701         case '{':
3702            if (syntax & RE_INTERVALS && syntax & RE_NO_BK_BRACES)
3703              goto handle_interval;
3704            else
3705              goto normal_char;
3706
3707
3708         case '\\':
3709           if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
3710
3711           /* Do not translate the character after the \, so that we can
3712              distinguish, e.g., \B from \b, even if we normally would
3713              translate, e.g., B to b.  */
3714           PATFETCH_RAW (c);
3715
3716           switch (c)
3717             {
3718             case '(':
3719               if (syntax & RE_NO_BK_PARENS)
3720                 goto normal_backslash;
3721
3722             handle_open:
3723               bufp->re_nsub++;
3724               regnum++;
3725
3726               if (COMPILE_STACK_FULL)
3727                 {
3728                   RETALLOC (compile_stack.stack, compile_stack.size << 1,
3729                             compile_stack_elt_t);
3730                   if (compile_stack.stack == NULL) return REG_ESPACE;
3731
3732                   compile_stack.size <<= 1;
3733                 }
3734
3735               /* These are the values to restore when we hit end of this
3736                  group.  They are all relative offsets, so that if the
3737                  whole pattern moves because of realloc, they will still
3738                  be valid.  */
3739               COMPILE_STACK_TOP.begalt_offset = begalt - COMPILED_BUFFER_VAR;
3740               COMPILE_STACK_TOP.fixup_alt_jump
3741                 = fixup_alt_jump ? fixup_alt_jump - COMPILED_BUFFER_VAR + 1 : 0;
3742               COMPILE_STACK_TOP.laststart_offset = b - COMPILED_BUFFER_VAR;
3743               COMPILE_STACK_TOP.regnum = regnum;
3744
3745               /* We will eventually replace the 0 with the number of
3746                  groups inner to this one.  But do not push a
3747                  start_memory for groups beyond the last one we can
3748                  represent in the compiled pattern.  */
3749               if (regnum <= MAX_REGNUM)
3750                 {
3751                   COMPILE_STACK_TOP.inner_group_offset = b
3752                     - COMPILED_BUFFER_VAR + 2;
3753                   BUF_PUSH_3 (start_memory, regnum, 0);
3754                 }
3755
3756               compile_stack.avail++;
3757
3758               fixup_alt_jump = 0;
3759               laststart = 0;
3760               begalt = b;
3761               /* If we've reached MAX_REGNUM groups, then this open
3762                  won't actually generate any code, so we'll have to
3763                  clear pending_exact explicitly.  */
3764               pending_exact = 0;
3765               break;
3766
3767
3768             case ')':
3769               if (syntax & RE_NO_BK_PARENS) goto normal_backslash;
3770
3771               if (COMPILE_STACK_EMPTY)
3772                 {
3773                   if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
3774                     goto normal_backslash;
3775                   else
3776                     FREE_STACK_RETURN (REG_ERPAREN);
3777                 }
3778
3779             handle_close:
3780               if (fixup_alt_jump)
3781                 { /* Push a dummy failure point at the end of the
3782                      alternative for a possible future
3783                      `pop_failure_jump' to pop.  See comments at
3784                      `push_dummy_failure' in `re_match_2'.  */
3785                   BUF_PUSH (push_dummy_failure);
3786
3787                   /* We allocated space for this jump when we assigned
3788                      to `fixup_alt_jump', in the `handle_alt' case below.  */
3789                   STORE_JUMP (jump_past_alt, fixup_alt_jump, b - 1);
3790                 }
3791
3792               /* See similar code for backslashed left paren above.  */
3793               if (COMPILE_STACK_EMPTY)
3794                 {
3795                   if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
3796                     goto normal_char;
3797                   else
3798                     FREE_STACK_RETURN (REG_ERPAREN);
3799                 }
3800
3801               /* Since we just checked for an empty stack above, this
3802                  ``can't happen''.  */
3803               assert (compile_stack.avail != 0);
3804               {
3805                 /* We don't just want to restore into `regnum', because
3806                    later groups should continue to be numbered higher,
3807                    as in `(ab)c(de)' -- the second group is #2.  */
3808                 regnum_t this_group_regnum;
3809
3810                 compile_stack.avail--;
3811                 begalt = COMPILED_BUFFER_VAR + COMPILE_STACK_TOP.begalt_offset;
3812                 fixup_alt_jump
3813                   = COMPILE_STACK_TOP.fixup_alt_jump
3814                     ? COMPILED_BUFFER_VAR + COMPILE_STACK_TOP.fixup_alt_jump - 1
3815                     : 0;
3816                 laststart = COMPILED_BUFFER_VAR + COMPILE_STACK_TOP.laststart_offset;
3817                 this_group_regnum = COMPILE_STACK_TOP.regnum;
3818                 /* If we've reached MAX_REGNUM groups, then this open
3819                    won't actually generate any code, so we'll have to
3820                    clear pending_exact explicitly.  */
3821                 pending_exact = 0;
3822
3823                 /* We're at the end of the group, so now we know how many
3824                    groups were inside this one.  */
3825                 if (this_group_regnum <= MAX_REGNUM)
3826                   {
3827                     UCHAR_T *inner_group_loc
3828                       = COMPILED_BUFFER_VAR + COMPILE_STACK_TOP.inner_group_offset;
3829
3830                     *inner_group_loc = regnum - this_group_regnum;
3831                     BUF_PUSH_3 (stop_memory, this_group_regnum,
3832                                 regnum - this_group_regnum);
3833                   }
3834               }
3835               break;
3836
3837
3838             case '|':                                   /* `\|'.  */
3839               if (syntax & RE_LIMITED_OPS || syntax & RE_NO_BK_VBAR)
3840                 goto normal_backslash;
3841             handle_alt:
3842               if (syntax & RE_LIMITED_OPS)
3843                 goto normal_char;
3844
3845               /* Insert before the previous alternative a jump which
3846                  jumps to this alternative if the former fails.  */
3847               GET_BUFFER_SPACE (1 + OFFSET_ADDRESS_SIZE);
3848               INSERT_JUMP (on_failure_jump, begalt,
3849                            b + 2 + 2 * OFFSET_ADDRESS_SIZE);
3850               pending_exact = 0;
3851               b += 1 + OFFSET_ADDRESS_SIZE;
3852
3853               /* The alternative before this one has a jump after it
3854                  which gets executed if it gets matched.  Adjust that
3855                  jump so it will jump to this alternative's analogous
3856                  jump (put in below, which in turn will jump to the next
3857                  (if any) alternative's such jump, etc.).  The last such
3858                  jump jumps to the correct final destination.  A picture:
3859                           _____ _____
3860                           |   | |   |
3861                           |   v |   v
3862                          a | b   | c
3863
3864                  If we are at `b', then fixup_alt_jump right now points to a
3865                  three-byte space after `a'.  We'll put in the jump, set
3866                  fixup_alt_jump to right after `b', and leave behind three
3867                  bytes which we'll fill in when we get to after `c'.  */
3868
3869               if (fixup_alt_jump)
3870                 STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
3871
3872               /* Mark and leave space for a jump after this alternative,
3873                  to be filled in later either by next alternative or
3874                  when know we're at the end of a series of alternatives.  */
3875               fixup_alt_jump = b;
3876               GET_BUFFER_SPACE (1 + OFFSET_ADDRESS_SIZE);
3877               b += 1 + OFFSET_ADDRESS_SIZE;
3878
3879               laststart = 0;
3880               begalt = b;
3881               break;
3882
3883
3884             case '{':
3885               /* If \{ is a literal.  */
3886               if (!(syntax & RE_INTERVALS)
3887                      /* If we're at `\{' and it's not the open-interval
3888                         operator.  */
3889                   || (syntax & RE_NO_BK_BRACES))
3890                 goto normal_backslash;
3891
3892             handle_interval:
3893               {
3894                 /* If got here, then the syntax allows intervals.  */
3895
3896                 /* At least (most) this many matches must be made.  */
3897                 int lower_bound = -1, upper_bound = -1;
3898
3899                 /* Place in the uncompiled pattern (i.e., just after
3900                    the '{') to go back to if the interval is invalid.  */
3901                 const CHAR_T *beg_interval = p;
3902
3903                 if (p == pend)
3904                   goto invalid_interval;
3905
3906                 GET_UNSIGNED_NUMBER (lower_bound);
3907
3908                 if (c == ',')
3909                   {
3910                     GET_UNSIGNED_NUMBER (upper_bound);
3911                     if (upper_bound < 0)
3912                       upper_bound = RE_DUP_MAX;
3913                   }
3914                 else
3915                   /* Interval such as `{1}' => match exactly once. */
3916                   upper_bound = lower_bound;
3917
3918                 if (! (0 <= lower_bound && lower_bound <= upper_bound))
3919                   goto invalid_interval;
3920
3921                 if (!(syntax & RE_NO_BK_BRACES))
3922                   {
3923                     if (c != '\\' || p == pend)
3924                       goto invalid_interval;
3925                     PATFETCH (c);
3926                   }
3927
3928                 if (c != '}')
3929                   goto invalid_interval;
3930
3931                 /* If it's invalid to have no preceding re.  */
3932                 if (!laststart)
3933                   {
3934                     if (syntax & RE_CONTEXT_INVALID_OPS
3935                         && !(syntax & RE_INVALID_INTERVAL_ORD))
3936                       FREE_STACK_RETURN (REG_BADRPT);
3937                     else if (syntax & RE_CONTEXT_INDEP_OPS)
3938                       laststart = b;
3939                     else
3940                       goto unfetch_interval;
3941                   }
3942
3943                 /* We just parsed a valid interval.  */
3944
3945                 if (RE_DUP_MAX < upper_bound)
3946                   FREE_STACK_RETURN (REG_BADBR);
3947
3948                 /* If the upper bound is zero, don't want to succeed at
3949                    all; jump from `laststart' to `b + 3', which will be
3950                    the end of the buffer after we insert the jump.  */
3951                 /* ifdef WCHAR, 'b + 1 + OFFSET_ADDRESS_SIZE'
3952                    instead of 'b + 3'.  */
3953                  if (upper_bound == 0)
3954                    {
3955                      GET_BUFFER_SPACE (1 + OFFSET_ADDRESS_SIZE);
3956                      INSERT_JUMP (jump, laststart, b + 1
3957                                   + OFFSET_ADDRESS_SIZE);
3958                      b += 1 + OFFSET_ADDRESS_SIZE;
3959                    }
3960
3961                  /* Otherwise, we have a nontrivial interval.  When
3962                     we're all done, the pattern will look like:
3963                       set_number_at <jump count> <upper bound>
3964                       set_number_at <succeed_n count> <lower bound>
3965                       succeed_n <after jump addr> <succeed_n count>
3966                       <body of loop>
3967                       jump_n <succeed_n addr> <jump count>
3968                     (The upper bound and `jump_n' are omitted if
3969                     `upper_bound' is 1, though.)  */
3970                  else
3971                    { /* If the upper bound is > 1, we need to insert
3972                         more at the end of the loop.  */
3973                      unsigned nbytes = 2 + 4 * OFFSET_ADDRESS_SIZE +
3974                        (upper_bound > 1) * (2 + 4 * OFFSET_ADDRESS_SIZE);
3975
3976                      GET_BUFFER_SPACE (nbytes);
3977
3978                      /* Initialize lower bound of the `succeed_n', even
3979                         though it will be set during matching by its
3980                         attendant `set_number_at' (inserted next),
3981                         because `re_compile_fastmap' needs to know.
3982                         Jump to the `jump_n' we might insert below.  */
3983                      INSERT_JUMP2 (succeed_n, laststart,
3984                                    b + 1 + 2 * OFFSET_ADDRESS_SIZE
3985                                    + (upper_bound > 1) * (1 + 2 * OFFSET_ADDRESS_SIZE)
3986                                    , lower_bound);
3987                      b += 1 + 2 * OFFSET_ADDRESS_SIZE;
3988
3989                      /* Code to initialize the lower bound.  Insert
3990                         before the `succeed_n'.  The `5' is the last two
3991                         bytes of this `set_number_at', plus 3 bytes of
3992                         the following `succeed_n'.  */
3993                      /* ifdef WCHAR, The '1+2*OFFSET_ADDRESS_SIZE'
3994                         is the 'set_number_at', plus '1+OFFSET_ADDRESS_SIZE'
3995                         of the following `succeed_n'.  */
3996                      PREFIX(insert_op2) (set_number_at, laststart, 1
3997                                  + 2 * OFFSET_ADDRESS_SIZE, lower_bound, b);
3998                      b += 1 + 2 * OFFSET_ADDRESS_SIZE;
3999
4000                      if (upper_bound > 1)
4001                        { /* More than one repetition is allowed, so
4002                             append a backward jump to the `succeed_n'
4003                             that starts this interval.
4004
4005                             When we've reached this during matching,
4006                             we'll have matched the interval once, so
4007                             jump back only `upper_bound - 1' times.  */
4008                          STORE_JUMP2 (jump_n, b, laststart
4009                                       + 2 * OFFSET_ADDRESS_SIZE + 1,
4010                                       upper_bound - 1);
4011                          b += 1 + 2 * OFFSET_ADDRESS_SIZE;
4012
4013                          /* The location we want to set is the second
4014                             parameter of the `jump_n'; that is `b-2' as
4015                             an absolute address.  `laststart' will be
4016                             the `set_number_at' we're about to insert;
4017                             `laststart+3' the number to set, the source
4018                             for the relative address.  But we are
4019                             inserting into the middle of the pattern --
4020                             so everything is getting moved up by 5.
4021                             Conclusion: (b - 2) - (laststart + 3) + 5,
4022                             i.e., b - laststart.
4023
4024                             We insert this at the beginning of the loop
4025                             so that if we fail during matching, we'll
4026                             reinitialize the bounds.  */
4027                          PREFIX(insert_op2) (set_number_at, laststart,
4028                                              b - laststart,
4029                                              upper_bound - 1, b);
4030                          b += 1 + 2 * OFFSET_ADDRESS_SIZE;
4031                        }
4032                    }
4033                 pending_exact = 0;
4034                 break;
4035
4036               invalid_interval:
4037                 if (!(syntax & RE_INVALID_INTERVAL_ORD))
4038                   FREE_STACK_RETURN (p == pend ? REG_EBRACE : REG_BADBR);
4039               unfetch_interval:
4040                 /* Match the characters as literals.  */
4041                 p = beg_interval;
4042                 c = '{';
4043                 if (syntax & RE_NO_BK_BRACES)
4044                   goto normal_char;
4045                 else
4046                   goto normal_backslash;
4047               }
4048
4049 #ifdef emacs
4050             /* There is no way to specify the before_dot and after_dot
4051                operators.  rms says this is ok.  --karl  */
4052             case '=':
4053               BUF_PUSH (at_dot);
4054               break;
4055
4056             case 's':
4057               laststart = b;
4058               PATFETCH (c);
4059               BUF_PUSH_2 (syntaxspec, syntax_spec_code[c]);
4060               break;
4061
4062             case 'S':
4063               laststart = b;
4064               PATFETCH (c);
4065               BUF_PUSH_2 (notsyntaxspec, syntax_spec_code[c]);
4066               break;
4067 #endif /* emacs */
4068
4069
4070             case 'w':
4071               if (syntax & RE_NO_GNU_OPS)
4072                 goto normal_char;
4073               laststart = b;
4074               BUF_PUSH (wordchar);
4075               break;
4076
4077
4078             case 'W':
4079               if (syntax & RE_NO_GNU_OPS)
4080                 goto normal_char;
4081               laststart = b;
4082               BUF_PUSH (notwordchar);
4083               break;
4084
4085
4086             case '<':
4087               if (syntax & RE_NO_GNU_OPS)
4088                 goto normal_char;
4089               BUF_PUSH (wordbeg);
4090               break;
4091
4092             case '>':
4093               if (syntax & RE_NO_GNU_OPS)
4094                 goto normal_char;
4095               BUF_PUSH (wordend);
4096               break;
4097
4098             case 'b':
4099               if (syntax & RE_NO_GNU_OPS)
4100                 goto normal_char;
4101               BUF_PUSH (wordbound);
4102               break;
4103
4104             case 'B':
4105               if (syntax & RE_NO_GNU_OPS)
4106                 goto normal_char;
4107               BUF_PUSH (notwordbound);
4108               break;
4109
4110             case '`':
4111               if (syntax & RE_NO_GNU_OPS)
4112                 goto normal_char;
4113               BUF_PUSH (begbuf);
4114               break;
4115
4116             case '\'':
4117               if (syntax & RE_NO_GNU_OPS)
4118                 goto normal_char;
4119               BUF_PUSH (endbuf);
4120               break;
4121
4122             case '1': case '2': case '3': case '4': case '5':
4123             case '6': case '7': case '8': case '9':
4124               if (syntax & RE_NO_BK_REFS)
4125                 goto normal_char;
4126
4127               c1 = c - '0';
4128
4129               if (c1 > regnum)
4130                 FREE_STACK_RETURN (REG_ESUBREG);
4131
4132               /* Can't back reference to a subexpression if inside of it.  */
4133               if (group_in_compile_stack (compile_stack, (regnum_t) c1))
4134                 goto normal_char;
4135
4136               laststart = b;
4137               BUF_PUSH_2 (duplicate, c1);
4138               break;
4139
4140
4141             case '+':
4142             case '?':
4143               if (syntax & RE_BK_PLUS_QM)
4144                 goto handle_plus;
4145               else
4146                 goto normal_backslash;
4147
4148             default:
4149             normal_backslash:
4150               /* You might think it would be useful for \ to mean
4151                  not to translate; but if we don't translate it
4152                  it will never match anything.  */
4153               c = TRANSLATE (c);
4154               goto normal_char;
4155             }
4156           break;
4157
4158
4159         default:
4160         /* Expects the character in `c'.  */
4161         normal_char:
4162               /* If no exactn currently being built.  */
4163           if (!pending_exact
4164 #ifdef WCHAR
4165               /* If last exactn handle binary(or character) and
4166                  new exactn handle character(or binary).  */
4167               || is_exactn_bin != is_binary[p - 1 - pattern]
4168 #endif /* WCHAR */
4169
4170               /* If last exactn not at current position.  */
4171               || pending_exact + *pending_exact + 1 != b
4172
4173               /* We have only one byte following the exactn for the count.  */
4174               || *pending_exact == (1 << BYTEWIDTH) - 1
4175
4176               /* If followed by a repetition operator.  */
4177               || *p == '*' || *p == '^'
4178               || ((syntax & RE_BK_PLUS_QM)
4179                   ? *p == '\\' && (p[1] == '+' || p[1] == '?')
4180                   : (*p == '+' || *p == '?'))
4181               || ((syntax & RE_INTERVALS)
4182                   && ((syntax & RE_NO_BK_BRACES)
4183                       ? *p == '{'
4184                       : (p[0] == '\\' && p[1] == '{'))))
4185             {
4186               /* Start building a new exactn.  */
4187
4188               laststart = b;
4189
4190 #ifdef WCHAR
4191               /* Is this exactn binary data or character? */
4192               is_exactn_bin = is_binary[p - 1 - pattern];
4193               if (is_exactn_bin)
4194                   BUF_PUSH_2 (exactn_bin, 0);
4195               else
4196                   BUF_PUSH_2 (exactn, 0);
4197 #else
4198               BUF_PUSH_2 (exactn, 0);
4199 #endif /* WCHAR */
4200               pending_exact = b - 1;
4201             }
4202
4203           BUF_PUSH (c);
4204           (*pending_exact)++;
4205           break;
4206         } /* switch (c) */
4207     } /* while p != pend */
4208
4209
4210   /* Through the pattern now.  */
4211
4212   if (fixup_alt_jump)
4213     STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
4214
4215   if (!COMPILE_STACK_EMPTY)
4216     FREE_STACK_RETURN (REG_EPAREN);
4217
4218   /* If we don't want backtracking, force success
4219      the first time we reach the end of the compiled pattern.  */
4220   if (syntax & RE_NO_POSIX_BACKTRACKING)
4221     BUF_PUSH (succeed);
4222
4223 #ifdef WCHAR
4224   free (pattern);
4225   free (mbs_offset);
4226   free (is_binary);
4227 #endif
4228   free (compile_stack.stack);
4229
4230   /* We have succeeded; set the length of the buffer.  */
4231 #ifdef WCHAR
4232   bufp->used = (uintptr_t) b - (uintptr_t) COMPILED_BUFFER_VAR;
4233 #else
4234   bufp->used = b - bufp->buffer;
4235 #endif
4236
4237 #ifdef DEBUG
4238   if (debug)
4239     {
4240       DEBUG_PRINT1 ("\nCompiled pattern: \n");
4241       PREFIX(print_compiled_pattern) (bufp);
4242     }
4243 #endif /* DEBUG */
4244
4245 #ifndef MATCH_MAY_ALLOCATE
4246   /* Initialize the failure stack to the largest possible stack.  This
4247      isn't necessary unless we're trying to avoid calling alloca in
4248      the search and match routines.  */
4249   {
4250     int num_regs = bufp->re_nsub + 1;
4251
4252     /* Since DOUBLE_FAIL_STACK refuses to double only if the current size
4253        is strictly greater than re_max_failures, the largest possible stack
4254        is 2 * re_max_failures failure points.  */
4255     if (fail_stack.size < (2 * re_max_failures * MAX_FAILURE_ITEMS))
4256       {
4257         fail_stack.size = (2 * re_max_failures * MAX_FAILURE_ITEMS);
4258
4259 # ifdef emacs
4260         if (! fail_stack.stack)
4261           fail_stack.stack
4262             = (PREFIX(fail_stack_elt_t) *) xmalloc (fail_stack.size
4263                                     * sizeof (PREFIX(fail_stack_elt_t)));
4264         else
4265           fail_stack.stack
4266             = (PREFIX(fail_stack_elt_t) *) xrealloc (fail_stack.stack,
4267                                      (fail_stack.size
4268                                       * sizeof (PREFIX(fail_stack_elt_t))));
4269 # else /* not emacs */
4270         if (! fail_stack.stack)
4271           fail_stack.stack
4272             = (PREFIX(fail_stack_elt_t) *) malloc (fail_stack.size
4273                                    * sizeof (PREFIX(fail_stack_elt_t)));
4274         else
4275           fail_stack.stack
4276             = (PREFIX(fail_stack_elt_t) *) realloc (fail_stack.stack,
4277                                             (fail_stack.size
4278                                      * sizeof (PREFIX(fail_stack_elt_t))));
4279 # endif /* not emacs */
4280       }
4281
4282    PREFIX(regex_grow_registers) (num_regs);
4283   }
4284 #endif /* not MATCH_MAY_ALLOCATE */
4285
4286   return REG_NOERROR;
4287 } /* regex_compile */
4288
4289 /* Subroutines for `regex_compile'.  */
4290
4291 /* Store OP at LOC followed by two-byte integer parameter ARG.  */
4292 /* ifdef WCHAR, integer parameter is 1 wchar_t.  */
4293
4294 static void
4295 PREFIX(store_op1) (op, loc, arg)
4296     re_opcode_t op;
4297     UCHAR_T *loc;
4298     int arg;
4299 {
4300   *loc = (UCHAR_T) op;
4301   STORE_NUMBER (loc + 1, arg);
4302 }
4303
4304
4305 /* Like `store_op1', but for two two-byte parameters ARG1 and ARG2.  */
4306 /* ifdef WCHAR, integer parameter is 1 wchar_t.  */
4307
4308 static void
4309 PREFIX(store_op2) (op, loc, arg1, arg2)
4310     re_opcode_t op;
4311     UCHAR_T *loc;
4312     int arg1, arg2;
4313 {
4314   *loc = (UCHAR_T) op;
4315   STORE_NUMBER (loc + 1, arg1);
4316   STORE_NUMBER (loc + 1 + OFFSET_ADDRESS_SIZE, arg2);
4317 }
4318
4319
4320 /* Copy the bytes from LOC to END to open up three bytes of space at LOC
4321    for OP followed by two-byte integer parameter ARG.  */
4322 /* ifdef WCHAR, integer parameter is 1 wchar_t.  */
4323
4324 static void
4325 PREFIX(insert_op1) (op, loc, arg, end)
4326     re_opcode_t op;
4327     UCHAR_T *loc;
4328     int arg;
4329     UCHAR_T *end;
4330 {
4331   register UCHAR_T *pfrom = end;
4332   register UCHAR_T *pto = end + 1 + OFFSET_ADDRESS_SIZE;
4333
4334   while (pfrom != loc)
4335     *--pto = *--pfrom;
4336
4337   PREFIX(store_op1) (op, loc, arg);
4338 }
4339
4340
4341 /* Like `insert_op1', but for two two-byte parameters ARG1 and ARG2.  */
4342 /* ifdef WCHAR, integer parameter is 1 wchar_t.  */
4343
4344 static void
4345 PREFIX(insert_op2) (op, loc, arg1, arg2, end)
4346     re_opcode_t op;
4347     UCHAR_T *loc;
4348     int arg1, arg2;
4349     UCHAR_T *end;
4350 {
4351   register UCHAR_T *pfrom = end;
4352   register UCHAR_T *pto = end + 1 + 2 * OFFSET_ADDRESS_SIZE;
4353
4354   while (pfrom != loc)
4355     *--pto = *--pfrom;
4356
4357   PREFIX(store_op2) (op, loc, arg1, arg2);
4358 }
4359
4360
4361 /* P points to just after a ^ in PATTERN.  Return true if that ^ comes
4362    after an alternative or a begin-subexpression.  We assume there is at
4363    least one character before the ^.  */
4364
4365 static boolean
4366 PREFIX(at_begline_loc_p) (pattern, p, syntax)
4367     const CHAR_T *pattern, *p;
4368     reg_syntax_t syntax;
4369 {
4370   const CHAR_T *prev = p - 2;
4371   boolean prev_prev_backslash = prev > pattern && prev[-1] == '\\';
4372
4373   return
4374        /* After a subexpression?  */
4375        (*prev == '(' && (syntax & RE_NO_BK_PARENS || prev_prev_backslash))
4376        /* After an alternative?  */
4377     || (*prev == '|' && (syntax & RE_NO_BK_VBAR || prev_prev_backslash));
4378 }
4379
4380
4381 /* The dual of at_begline_loc_p.  This one is for $.  We assume there is
4382    at least one character after the $, i.e., `P < PEND'.  */
4383
4384 static boolean
4385 PREFIX(at_endline_loc_p) (p, pend, syntax)
4386     const CHAR_T *p, *pend;
4387     reg_syntax_t syntax;
4388 {
4389   const CHAR_T *next = p;
4390   boolean next_backslash = *next == '\\';
4391   const CHAR_T *next_next = p + 1 < pend ? p + 1 : 0;
4392
4393   return
4394        /* Before a subexpression?  */
4395        (syntax & RE_NO_BK_PARENS ? *next == ')'
4396         : next_backslash && next_next && *next_next == ')')
4397        /* Before an alternative?  */
4398     || (syntax & RE_NO_BK_VBAR ? *next == '|'
4399         : next_backslash && next_next && *next_next == '|');
4400 }
4401
4402 #else /* not INSIDE_RECURSION */
4403
4404 /* Returns true if REGNUM is in one of COMPILE_STACK's elements and
4405    false if it's not.  */
4406
4407 static boolean
4408 group_in_compile_stack (compile_stack, regnum)
4409     compile_stack_type compile_stack;
4410     regnum_t regnum;
4411 {
4412   int this_element;
4413
4414   for (this_element = compile_stack.avail - 1;
4415        this_element >= 0;
4416        this_element--)
4417     if (compile_stack.stack[this_element].regnum == regnum)
4418       return true;
4419
4420   return false;
4421 }
4422 #endif /* not INSIDE_RECURSION */
4423
4424 #ifdef INSIDE_RECURSION
4425
4426 #ifdef WCHAR
4427 /* This insert space, which size is "num", into the pattern at "loc".
4428    "end" must point the end of the allocated buffer.  */
4429 static void
4430 insert_space (num, loc, end)
4431      int num;
4432      CHAR_T *loc;
4433      CHAR_T *end;
4434 {
4435   register CHAR_T *pto = end;
4436   register CHAR_T *pfrom = end - num;
4437
4438   while (pfrom >= loc)
4439     *pto-- = *pfrom--;
4440 }
4441 #endif /* WCHAR */
4442
4443 #ifdef WCHAR
4444 static reg_errcode_t
4445 wcs_compile_range (range_start_char, p_ptr, pend, translate, syntax, b,
4446                    char_set)
4447      CHAR_T range_start_char;
4448      const CHAR_T **p_ptr, *pend;
4449      CHAR_T *char_set, *b;
4450      RE_TRANSLATE_TYPE translate;
4451      reg_syntax_t syntax;
4452 {
4453   const CHAR_T *p = *p_ptr;
4454   CHAR_T range_start, range_end;
4455   reg_errcode_t ret;
4456 # ifdef _LIBC
4457   uint32_t nrules;
4458   uint32_t start_val, end_val;
4459 # endif
4460   if (p == pend)
4461     return REG_ERANGE;
4462
4463 # ifdef _LIBC
4464   nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
4465   if (nrules != 0)
4466     {
4467       const char *collseq = (const char *) _NL_CURRENT(LC_COLLATE,
4468                                                        _NL_COLLATE_COLLSEQWC);
4469       const unsigned char *extra = (const unsigned char *)
4470         _NL_CURRENT (LC_COLLATE, _NL_COLLATE_SYMB_EXTRAMB);
4471
4472       if (range_start_char < -1)
4473         {
4474           /* range_start is a collating symbol.  */
4475           int32_t *wextra;
4476           /* Retreive the index and get collation sequence value.  */
4477           wextra = (int32_t*)(extra + char_set[-range_start_char]);
4478           start_val = wextra[1 + *wextra];
4479         }
4480       else
4481         start_val = collseq_table_lookup(collseq, TRANSLATE(range_start_char));
4482
4483       end_val = collseq_table_lookup (collseq, TRANSLATE (p[0]));
4484
4485       /* Report an error if the range is empty and the syntax prohibits
4486          this.  */
4487       ret = ((syntax & RE_NO_EMPTY_RANGES)
4488              && (start_val > end_val))? REG_ERANGE : REG_NOERROR;
4489
4490       /* Insert space to the end of the char_ranges.  */
4491       insert_space(2, b - char_set[5] - 2, b - 1);
4492       *(b - char_set[5] - 2) = (wchar_t)start_val;
4493       *(b - char_set[5] - 1) = (wchar_t)end_val;
4494       char_set[4]++; /* ranges_index */
4495     }
4496   else
4497 # endif
4498     {
4499       range_start = (range_start_char >= 0)? TRANSLATE (range_start_char):
4500         range_start_char;
4501       range_end = TRANSLATE (p[0]);
4502       /* Report an error if the range is empty and the syntax prohibits
4503          this.  */
4504       ret = ((syntax & RE_NO_EMPTY_RANGES)
4505              && (range_start > range_end))? REG_ERANGE : REG_NOERROR;
4506
4507       /* Insert space to the end of the char_ranges.  */
4508       insert_space(2, b - char_set[5] - 2, b - 1);
4509       *(b - char_set[5] - 2) = range_start;
4510       *(b - char_set[5] - 1) = range_end;
4511       char_set[4]++; /* ranges_index */
4512     }
4513   /* Have to increment the pointer into the pattern string, so the
4514      caller isn't still at the ending character.  */
4515   (*p_ptr)++;
4516
4517   return ret;
4518 }
4519 #else /* BYTE */
4520 /* Read the ending character of a range (in a bracket expression) from the
4521    uncompiled pattern *P_PTR (which ends at PEND).  We assume the
4522    starting character is in `P[-2]'.  (`P[-1]' is the character `-'.)
4523    Then we set the translation of all bits between the starting and
4524    ending characters (inclusive) in the compiled pattern B.
4525
4526    Return an error code.
4527
4528    We use these short variable names so we can use the same macros as
4529    `regex_compile' itself.  */
4530
4531 static reg_errcode_t
4532 byte_compile_range (range_start_char, p_ptr, pend, translate, syntax, b)
4533      unsigned int range_start_char;
4534      const char **p_ptr, *pend;
4535      RE_TRANSLATE_TYPE translate;
4536      reg_syntax_t syntax;
4537      unsigned char *b;
4538 {
4539   unsigned this_char;
4540   const char *p = *p_ptr;
4541   reg_errcode_t ret;
4542 # if _LIBC
4543   const unsigned char *collseq;
4544   unsigned int start_colseq;
4545   unsigned int end_colseq;
4546 # else
4547   unsigned end_char;
4548 # endif
4549
4550   if (p == pend)
4551     return REG_ERANGE;
4552
4553   /* Have to increment the pointer into the pattern string, so the
4554      caller isn't still at the ending character.  */
4555   (*p_ptr)++;
4556
4557   /* Report an error if the range is empty and the syntax prohibits this.  */
4558   ret = syntax & RE_NO_EMPTY_RANGES ? REG_ERANGE : REG_NOERROR;
4559
4560 # if _LIBC
4561   collseq = (const unsigned char *) _NL_CURRENT (LC_COLLATE,
4562                                                  _NL_COLLATE_COLLSEQMB);
4563
4564   start_colseq = collseq[(unsigned char) TRANSLATE (range_start_char)];
4565   end_colseq = collseq[(unsigned char) TRANSLATE (p[0])];
4566   for (this_char = 0; this_char <= (unsigned char) -1; ++this_char)
4567     {
4568       unsigned int this_colseq = collseq[(unsigned char) TRANSLATE (this_char)];
4569
4570       if (start_colseq <= this_colseq && this_colseq <= end_colseq)
4571         {
4572           SET_LIST_BIT (TRANSLATE (this_char));
4573           ret = REG_NOERROR;
4574         }
4575     }
4576 # else
4577   /* Here we see why `this_char' has to be larger than an `unsigned
4578      char' -- we would otherwise go into an infinite loop, since all
4579      characters <= 0xff.  */
4580   range_start_char = TRANSLATE (range_start_char);
4581   /* TRANSLATE(p[0]) is casted to char (not unsigned char) in TRANSLATE,
4582      and some compilers cast it to int implicitly, so following for_loop
4583      may fall to (almost) infinite loop.
4584      e.g. If translate[p[0]] = 0xff, end_char may equals to 0xffffffff.
4585      To avoid this, we cast p[0] to unsigned int and truncate it.  */
4586   end_char = ((unsigned)TRANSLATE(p[0]) & ((1 << BYTEWIDTH) - 1));
4587
4588   for (this_char = range_start_char; this_char <= end_char; ++this_char)
4589     {
4590       SET_LIST_BIT (TRANSLATE (this_char));
4591       ret = REG_NOERROR;
4592     }
4593 # endif
4594
4595   return ret;
4596 }
4597 #endif /* WCHAR */
4598 \f
4599 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
4600    BUFP.  A fastmap records which of the (1 << BYTEWIDTH) possible
4601    characters can start a string that matches the pattern.  This fastmap
4602    is used by re_search to skip quickly over impossible starting points.
4603
4604    The caller must supply the address of a (1 << BYTEWIDTH)-byte data
4605    area as BUFP->fastmap.
4606
4607    We set the `fastmap', `fastmap_accurate', and `can_be_null' fields in
4608    the pattern buffer.
4609
4610    Returns 0 if we succeed, -2 if an internal error.   */
4611
4612 #ifdef WCHAR
4613 /* local function for re_compile_fastmap.
4614    truncate wchar_t character to char.  */
4615 static unsigned char truncate_wchar (CHAR_T c);
4616
4617 static unsigned char
4618 truncate_wchar (c)
4619      CHAR_T c;
4620 {
4621   unsigned char buf[MB_CUR_MAX];
4622   mbstate_t state;
4623   int retval;
4624   memset (&state, '\0', sizeof (state));
4625   retval = wcrtomb (buf, c, &state);
4626   return retval > 0 ? buf[0] : (unsigned char) c;
4627 }
4628 #endif /* WCHAR */
4629
4630 static int
4631 PREFIX(re_compile_fastmap) (bufp)
4632      struct re_pattern_buffer *bufp;
4633 {
4634   int j, k;
4635 #ifdef MATCH_MAY_ALLOCATE
4636   PREFIX(fail_stack_type) fail_stack;
4637 #endif
4638 #ifndef REGEX_MALLOC
4639   char *destination;
4640 #endif
4641
4642   register char *fastmap = bufp->fastmap;
4643
4644 #ifdef WCHAR
4645   /* We need to cast pattern to (wchar_t*), because we casted this compiled
4646      pattern to (char*) in regex_compile.  */
4647   UCHAR_T *pattern = (UCHAR_T*)bufp->buffer;
4648   register UCHAR_T *pend = (UCHAR_T*) (bufp->buffer + bufp->used);
4649 #else /* BYTE */
4650   UCHAR_T *pattern = bufp->buffer;
4651   register UCHAR_T *pend = pattern + bufp->used;
4652 #endif /* WCHAR */
4653   UCHAR_T *p = pattern;
4654
4655 #ifdef REL_ALLOC
4656   /* This holds the pointer to the failure stack, when
4657      it is allocated relocatably.  */
4658   fail_stack_elt_t *failure_stack_ptr;
4659 #endif
4660
4661   /* Assume that each path through the pattern can be null until
4662      proven otherwise.  We set this false at the bottom of switch
4663      statement, to which we get only if a particular path doesn't
4664      match the empty string.  */
4665   boolean path_can_be_null = true;
4666
4667   /* We aren't doing a `succeed_n' to begin with.  */
4668   boolean succeed_n_p = false;
4669
4670   assert (fastmap != NULL && p != NULL);
4671
4672   INIT_FAIL_STACK ();
4673   bzero (fastmap, 1 << BYTEWIDTH);  /* Assume nothing's valid.  */
4674   bufp->fastmap_accurate = 1;       /* It will be when we're done.  */
4675   bufp->can_be_null = 0;
4676
4677   while (1)
4678     {
4679       if (p == pend || *p == succeed)
4680         {
4681           /* We have reached the (effective) end of pattern.  */
4682           if (!FAIL_STACK_EMPTY ())
4683             {
4684               bufp->can_be_null |= path_can_be_null;
4685
4686               /* Reset for next path.  */
4687               path_can_be_null = true;
4688
4689               p = fail_stack.stack[--fail_stack.avail].pointer;
4690
4691               continue;
4692             }
4693           else
4694             break;
4695         }
4696
4697       /* We should never be about to go beyond the end of the pattern.  */
4698       assert (p < pend);
4699
4700       switch (SWITCH_ENUM_CAST ((re_opcode_t) *p++))
4701         {
4702
4703         /* I guess the idea here is to simply not bother with a fastmap
4704            if a backreference is used, since it's too hard to figure out
4705            the fastmap for the corresponding group.  Setting
4706            `can_be_null' stops `re_search_2' from using the fastmap, so
4707            that is all we do.  */
4708         case duplicate:
4709           bufp->can_be_null = 1;
4710           goto done;
4711
4712
4713       /* Following are the cases which match a character.  These end
4714          with `break'.  */
4715
4716 #ifdef WCHAR
4717         case exactn:
4718           fastmap[truncate_wchar(p[1])] = 1;
4719           break;
4720 #else /* BYTE */
4721         case exactn:
4722           fastmap[p[1]] = 1;
4723           break;
4724 #endif /* WCHAR */
4725 #ifdef MBS_SUPPORT
4726         case exactn_bin:
4727           fastmap[p[1]] = 1;
4728           break;
4729 #endif
4730
4731 #ifdef WCHAR
4732         /* It is hard to distinguish fastmap from (multi byte) characters
4733            which depends on current locale.  */
4734         case charset:
4735         case charset_not:
4736         case wordchar:
4737         case notwordchar:
4738           bufp->can_be_null = 1;
4739           goto done;
4740 #else /* BYTE */
4741         case charset:
4742           for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
4743             if (p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH)))
4744               fastmap[j] = 1;
4745           break;
4746
4747
4748         case charset_not:
4749           /* Chars beyond end of map must be allowed.  */
4750           for (j = *p * BYTEWIDTH; j < (1 << BYTEWIDTH); j++)
4751             fastmap[j] = 1;
4752
4753           for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
4754             if (!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))))
4755               fastmap[j] = 1;
4756           break;
4757
4758
4759         case wordchar:
4760           for (j = 0; j < (1 << BYTEWIDTH); j++)
4761             if (SYNTAX (j) == Sword)
4762               fastmap[j] = 1;
4763           break;
4764
4765
4766         case notwordchar:
4767           for (j = 0; j < (1 << BYTEWIDTH); j++)
4768             if (SYNTAX (j) != Sword)
4769               fastmap[j] = 1;
4770           break;
4771 #endif /* WCHAR */
4772
4773         case anychar:
4774           {
4775             int fastmap_newline = fastmap['\n'];
4776
4777             /* `.' matches anything ...  */
4778             for (j = 0; j < (1 << BYTEWIDTH); j++)
4779               fastmap[j] = 1;
4780
4781             /* ... except perhaps newline.  */
4782             if (!(bufp->syntax & RE_DOT_NEWLINE))
4783               fastmap['\n'] = fastmap_newline;
4784
4785             /* Return if we have already set `can_be_null'; if we have,
4786                then the fastmap is irrelevant.  Something's wrong here.  */
4787             else if (bufp->can_be_null)
4788               goto done;
4789
4790             /* Otherwise, have to check alternative paths.  */
4791             break;
4792           }
4793
4794 #ifdef emacs
4795         case syntaxspec:
4796           k = *p++;
4797           for (j = 0; j < (1 << BYTEWIDTH); j++)
4798             if (SYNTAX (j) == (enum syntaxcode) k)
4799               fastmap[j] = 1;
4800           break;
4801
4802
4803         case notsyntaxspec:
4804           k = *p++;
4805           for (j = 0; j < (1 << BYTEWIDTH); j++)
4806             if (SYNTAX (j) != (enum syntaxcode) k)
4807               fastmap[j] = 1;
4808           break;
4809
4810
4811       /* All cases after this match the empty string.  These end with
4812          `continue'.  */
4813
4814
4815         case before_dot:
4816         case at_dot:
4817         case after_dot:
4818           continue;
4819 #endif /* emacs */
4820
4821
4822         case no_op:
4823         case begline:
4824         case endline:
4825         case begbuf:
4826         case endbuf:
4827         case wordbound:
4828         case notwordbound:
4829         case wordbeg:
4830         case wordend:
4831         case push_dummy_failure:
4832           continue;
4833
4834
4835         case jump_n:
4836         case pop_failure_jump:
4837         case maybe_pop_jump:
4838         case jump:
4839         case jump_past_alt:
4840         case dummy_failure_jump:
4841           EXTRACT_NUMBER_AND_INCR (j, p);
4842           p += j;
4843           if (j > 0)
4844             continue;
4845
4846           /* Jump backward implies we just went through the body of a
4847              loop and matched nothing.  Opcode jumped to should be
4848              `on_failure_jump' or `succeed_n'.  Just treat it like an
4849              ordinary jump.  For a * loop, it has pushed its failure
4850              point already; if so, discard that as redundant.  */
4851           if ((re_opcode_t) *p != on_failure_jump
4852               && (re_opcode_t) *p != succeed_n)
4853             continue;
4854
4855           p++;
4856           EXTRACT_NUMBER_AND_INCR (j, p);
4857           p += j;
4858
4859           /* If what's on the stack is where we are now, pop it.  */
4860           if (!FAIL_STACK_EMPTY ()
4861               && fail_stack.stack[fail_stack.avail - 1].pointer == p)
4862             fail_stack.avail--;
4863
4864           continue;
4865
4866
4867         case on_failure_jump:
4868         case on_failure_keep_string_jump:
4869         handle_on_failure_jump:
4870           EXTRACT_NUMBER_AND_INCR (j, p);
4871
4872           /* For some patterns, e.g., `(a?)?', `p+j' here points to the
4873              end of the pattern.  We don't want to push such a point,
4874              since when we restore it above, entering the switch will
4875              increment `p' past the end of the pattern.  We don't need
4876              to push such a point since we obviously won't find any more
4877              fastmap entries beyond `pend'.  Such a pattern can match
4878              the null string, though.  */
4879           if (p + j < pend)
4880             {
4881               if (!PUSH_PATTERN_OP (p + j, fail_stack))
4882                 {
4883                   RESET_FAIL_STACK ();
4884                   return -2;
4885                 }
4886             }
4887           else
4888             bufp->can_be_null = 1;
4889
4890           if (succeed_n_p)
4891             {
4892               EXTRACT_NUMBER_AND_INCR (k, p);   /* Skip the n.  */
4893               succeed_n_p = false;
4894             }
4895
4896           continue;
4897
4898
4899         case succeed_n:
4900           /* Get to the number of times to succeed.  */
4901           p += OFFSET_ADDRESS_SIZE;
4902
4903           /* Increment p past the n for when k != 0.  */
4904           EXTRACT_NUMBER_AND_INCR (k, p);
4905           if (k == 0)
4906             {
4907               p -= 2 * OFFSET_ADDRESS_SIZE;
4908               succeed_n_p = true;  /* Spaghetti code alert.  */
4909               goto handle_on_failure_jump;
4910             }
4911           continue;
4912
4913
4914         case set_number_at:
4915           p += 2 * OFFSET_ADDRESS_SIZE;
4916           continue;
4917
4918
4919         case start_memory:
4920         case stop_memory:
4921           p += 2;
4922           continue;
4923
4924
4925         default:
4926           abort (); /* We have listed all the cases.  */
4927         } /* switch *p++ */
4928
4929       /* Getting here means we have found the possible starting
4930          characters for one path of the pattern -- and that the empty
4931          string does not match.  We need not follow this path further.
4932          Instead, look at the next alternative (remembered on the
4933          stack), or quit if no more.  The test at the top of the loop
4934          does these things.  */
4935       path_can_be_null = false;
4936       p = pend;
4937     } /* while p */
4938
4939   /* Set `can_be_null' for the last path (also the first path, if the
4940      pattern is empty).  */
4941   bufp->can_be_null |= path_can_be_null;
4942
4943  done:
4944   RESET_FAIL_STACK ();
4945   return 0;
4946 }
4947
4948 #else /* not INSIDE_RECURSION */
4949
4950 int
4951 re_compile_fastmap (bufp)
4952      struct re_pattern_buffer *bufp;
4953 {
4954 # ifdef MBS_SUPPORT
4955   if (MB_CUR_MAX != 1)
4956     return wcs_re_compile_fastmap(bufp);
4957   else
4958 # endif
4959     return byte_re_compile_fastmap(bufp);
4960 } /* re_compile_fastmap */
4961 #ifdef _LIBC
4962 weak_alias (__re_compile_fastmap, re_compile_fastmap)
4963 #endif
4964 \f
4965
4966 /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
4967    ENDS.  Subsequent matches using PATTERN_BUFFER and REGS will use
4968    this memory for recording register information.  STARTS and ENDS
4969    must be allocated using the malloc library routine, and must each
4970    be at least NUM_REGS * sizeof (regoff_t) bytes long.
4971
4972    If NUM_REGS == 0, then subsequent matches should allocate their own
4973    register data.
4974
4975    Unless this function is called, the first search or match using
4976    PATTERN_BUFFER will allocate its own register data, without
4977    freeing the old data.  */
4978
4979 void
4980 re_set_registers (bufp, regs, num_regs, starts, ends)
4981     struct re_pattern_buffer *bufp;
4982     struct re_registers *regs;
4983     unsigned num_regs;
4984     regoff_t *starts, *ends;
4985 {
4986   if (num_regs)
4987     {
4988       bufp->regs_allocated = REGS_REALLOCATE;
4989       regs->num_regs = num_regs;
4990       regs->start = starts;
4991       regs->end = ends;
4992     }
4993   else
4994     {
4995       bufp->regs_allocated = REGS_UNALLOCATED;
4996       regs->num_regs = 0;
4997       regs->start = regs->end = (regoff_t *) 0;
4998     }
4999 }
5000 #ifdef _LIBC
5001 weak_alias (__re_set_registers, re_set_registers)
5002 #endif
5003 \f
5004 /* Searching routines.  */
5005
5006 /* Like re_search_2, below, but only one string is specified, and
5007    doesn't let you say where to stop matching.  */
5008
5009 int
5010 re_search (bufp, string, size, startpos, range, regs)
5011      struct re_pattern_buffer *bufp;
5012      const char *string;
5013      int size, startpos, range;
5014      struct re_registers *regs;
5015 {
5016   return re_search_2 (bufp, NULL, 0, string, size, startpos, range,
5017                       regs, size);
5018 }
5019 #ifdef _LIBC
5020 weak_alias (__re_search, re_search)
5021 #endif
5022
5023
5024 /* Using the compiled pattern in BUFP->buffer, first tries to match the
5025    virtual concatenation of STRING1 and STRING2, starting first at index
5026    STARTPOS, then at STARTPOS + 1, and so on.
5027
5028    STRING1 and STRING2 have length SIZE1 and SIZE2, respectively.
5029
5030    RANGE is how far to scan while trying to match.  RANGE = 0 means try
5031    only at STARTPOS; in general, the last start tried is STARTPOS +
5032    RANGE.
5033
5034    In REGS, return the indices of the virtual concatenation of STRING1
5035    and STRING2 that matched the entire BUFP->buffer and its contained
5036    subexpressions.
5037
5038    Do not consider matching one past the index STOP in the virtual
5039    concatenation of STRING1 and STRING2.
5040
5041    We return either the position in the strings at which the match was
5042    found, -1 if no match, or -2 if error (such as failure
5043    stack overflow).  */
5044
5045 int
5046 re_search_2 (bufp, string1, size1, string2, size2, startpos, range, regs, stop)
5047      struct re_pattern_buffer *bufp;
5048      const char *string1, *string2;
5049      int size1, size2;
5050      int startpos;
5051      int range;
5052      struct re_registers *regs;
5053      int stop;
5054 {
5055 # ifdef MBS_SUPPORT
5056   if (MB_CUR_MAX != 1)
5057     return wcs_re_search_2 (bufp, string1, size1, string2, size2, startpos,
5058                             range, regs, stop);
5059   else
5060 # endif
5061     return byte_re_search_2 (bufp, string1, size1, string2, size2, startpos,
5062                              range, regs, stop);
5063 } /* re_search_2 */
5064 #ifdef _LIBC
5065 weak_alias (__re_search_2, re_search_2)
5066 #endif
5067
5068 #endif /* not INSIDE_RECURSION */
5069
5070 #ifdef INSIDE_RECURSION
5071
5072 #ifdef MATCH_MAY_ALLOCATE
5073 # define FREE_VAR(var) if (var) REGEX_FREE (var); var = NULL
5074 #else
5075 # define FREE_VAR(var) if (var) free (var); var = NULL
5076 #endif
5077
5078 #ifdef WCHAR
5079 # define MAX_ALLOCA_SIZE        2000
5080
5081 # define FREE_WCS_BUFFERS() \
5082   do {                                                                        \
5083     if (size1 > MAX_ALLOCA_SIZE)                                              \
5084       {                                                                       \
5085         free (wcs_string1);                                                   \
5086         free (mbs_offset1);                                                   \
5087       }                                                                       \
5088     else                                                                      \
5089       {                                                                       \
5090         FREE_VAR (wcs_string1);                                               \
5091         FREE_VAR (mbs_offset1);                                               \
5092       }                                                                       \
5093     if (size2 > MAX_ALLOCA_SIZE)                                              \
5094       {                                                                       \
5095         free (wcs_string2);                                                   \
5096         free (mbs_offset2);                                                   \
5097       }                                                                       \
5098     else                                                                      \
5099       {                                                                       \
5100         FREE_VAR (wcs_string2);                                               \
5101         FREE_VAR (mbs_offset2);                                               \
5102       }                                                                       \
5103   } while (0)
5104
5105 #endif
5106
5107
5108 static int
5109 PREFIX(re_search_2) (bufp, string1, size1, string2, size2, startpos, range,
5110                      regs, stop)
5111      struct re_pattern_buffer *bufp;
5112      const char *string1, *string2;
5113      int size1, size2;
5114      int startpos;
5115      int range;
5116      struct re_registers *regs;
5117      int stop;
5118 {
5119   int val;
5120   register char *fastmap = bufp->fastmap;
5121   register RE_TRANSLATE_TYPE translate = bufp->translate;
5122   int total_size = size1 + size2;
5123   int endpos = startpos + range;
5124 #ifdef WCHAR
5125   /* We need wchar_t* buffers correspond to cstring1, cstring2.  */
5126   wchar_t *wcs_string1 = NULL, *wcs_string2 = NULL;
5127   /* We need the size of wchar_t buffers correspond to csize1, csize2.  */
5128   int wcs_size1 = 0, wcs_size2 = 0;
5129   /* offset buffer for optimizatoin. See convert_mbs_to_wc.  */
5130   int *mbs_offset1 = NULL, *mbs_offset2 = NULL;
5131   /* They hold whether each wchar_t is binary data or not.  */
5132   char *is_binary = NULL;
5133 #endif /* WCHAR */
5134
5135   /* Check for out-of-range STARTPOS.  */
5136   if (startpos < 0 || startpos > total_size)
5137     return -1;
5138
5139   /* Fix up RANGE if it might eventually take us outside
5140      the virtual concatenation of STRING1 and STRING2.
5141      Make sure we won't move STARTPOS below 0 or above TOTAL_SIZE.  */
5142   if (endpos < 0)
5143     range = 0 - startpos;
5144   else if (endpos > total_size)
5145     range = total_size - startpos;
5146
5147   /* If the search isn't to be a backwards one, don't waste time in a
5148      search for a pattern that must be anchored.  */
5149   if (bufp->used > 0 && range > 0
5150       && ((re_opcode_t) bufp->buffer[0] == begbuf
5151           /* `begline' is like `begbuf' if it cannot match at newlines.  */
5152           || ((re_opcode_t) bufp->buffer[0] == begline
5153               && !bufp->newline_anchor)))
5154     {
5155       if (startpos > 0)
5156         return -1;
5157       else
5158         range = 1;
5159     }
5160
5161 #ifdef emacs
5162   /* In a forward search for something that starts with \=.
5163      don't keep searching past point.  */
5164   if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == at_dot && range > 0)
5165     {
5166       range = PT - startpos;
5167       if (range <= 0)
5168         return -1;
5169     }
5170 #endif /* emacs */
5171
5172   /* Update the fastmap now if not correct already.  */
5173   if (fastmap && !bufp->fastmap_accurate)
5174     if (re_compile_fastmap (bufp) == -2)
5175       return -2;
5176
5177 #ifdef WCHAR
5178   /* Allocate wchar_t array for wcs_string1 and wcs_string2 and
5179      fill them with converted string.  */
5180   if (size1 != 0)
5181     {
5182       if (size1 > MAX_ALLOCA_SIZE)
5183         {
5184           wcs_string1 = TALLOC (size1 + 1, CHAR_T);
5185           mbs_offset1 = TALLOC (size1 + 1, int);
5186           is_binary = TALLOC (size1 + 1, char);
5187         }
5188       else
5189         {
5190           wcs_string1 = REGEX_TALLOC (size1 + 1, CHAR_T);
5191           mbs_offset1 = REGEX_TALLOC (size1 + 1, int);
5192           is_binary = REGEX_TALLOC (size1 + 1, char);
5193         }
5194       if (!wcs_string1 || !mbs_offset1 || !is_binary)
5195         {
5196           if (size1 > MAX_ALLOCA_SIZE)
5197             {
5198               free (wcs_string1);
5199               free (mbs_offset1);
5200               free (is_binary);
5201             }
5202           else
5203             {
5204               FREE_VAR (wcs_string1);
5205               FREE_VAR (mbs_offset1);
5206               FREE_VAR (is_binary);
5207             }
5208           return -2;
5209         }
5210       wcs_size1 = convert_mbs_to_wcs(wcs_string1, string1, size1,
5211                                      mbs_offset1, is_binary);
5212       wcs_string1[wcs_size1] = L'\0'; /* for a sentinel  */
5213       if (size1 > MAX_ALLOCA_SIZE)
5214         free (is_binary);
5215       else
5216         FREE_VAR (is_binary);
5217     }
5218   if (size2 != 0)
5219     {
5220       if (size2 > MAX_ALLOCA_SIZE)
5221         {
5222           wcs_string2 = TALLOC (size2 + 1, CHAR_T);
5223           mbs_offset2 = TALLOC (size2 + 1, int);
5224           is_binary = TALLOC (size2 + 1, char);
5225         }
5226       else
5227         {
5228           wcs_string2 = REGEX_TALLOC (size2 + 1, CHAR_T);
5229           mbs_offset2 = REGEX_TALLOC (size2 + 1, int);
5230           is_binary = REGEX_TALLOC (size2 + 1, char);
5231         }
5232       if (!wcs_string2 || !mbs_offset2 || !is_binary)
5233         {
5234           FREE_WCS_BUFFERS ();
5235           if (size2 > MAX_ALLOCA_SIZE)
5236             free (is_binary);
5237           else
5238             FREE_VAR (is_binary);
5239           return -2;
5240         }
5241       wcs_size2 = convert_mbs_to_wcs(wcs_string2, string2, size2,
5242                                      mbs_offset2, is_binary);
5243       wcs_string2[wcs_size2] = L'\0'; /* for a sentinel  */
5244       if (size2 > MAX_ALLOCA_SIZE)
5245         free (is_binary);
5246       else
5247         FREE_VAR (is_binary);
5248     }
5249 #endif /* WCHAR */
5250
5251
5252   /* Loop through the string, looking for a place to start matching.  */
5253   for (;;)
5254     {
5255       /* If a fastmap is supplied, skip quickly over characters that
5256          cannot be the start of a match.  If the pattern can match the
5257          null string, however, we don't need to skip characters; we want
5258          the first null string.  */
5259       if (fastmap && startpos < total_size && !bufp->can_be_null)
5260         {
5261           if (range > 0)        /* Searching forwards.  */
5262             {
5263               register const char *d;
5264               register int lim = 0;
5265               int irange = range;
5266
5267               if (startpos < size1 && startpos + range >= size1)
5268                 lim = range - (size1 - startpos);
5269
5270               d = (startpos >= size1 ? string2 - size1 : string1) + startpos;
5271
5272               /* Written out as an if-else to avoid testing `translate'
5273                  inside the loop.  */
5274               if (translate)
5275                 while (range > lim
5276                        && !fastmap[(unsigned char)
5277                                    translate[(unsigned char) *d++]])
5278                   range--;
5279               else
5280                 while (range > lim && !fastmap[(unsigned char) *d++])
5281                   range--;
5282
5283               startpos += irange - range;
5284             }
5285           else                          /* Searching backwards.  */
5286             {
5287               register CHAR_T c = (size1 == 0 || startpos >= size1
5288                                       ? string2[startpos - size1]
5289                                       : string1[startpos]);
5290
5291               if (!fastmap[(unsigned char) TRANSLATE (c)])
5292                 goto advance;
5293             }
5294         }
5295
5296       /* If can't match the null string, and that's all we have left, fail.  */
5297       if (range >= 0 && startpos == total_size && fastmap
5298           && !bufp->can_be_null)
5299        {
5300 #ifdef WCHAR
5301          FREE_WCS_BUFFERS ();
5302 #endif
5303          return -1;
5304        }
5305
5306 #ifdef WCHAR
5307       val = wcs_re_match_2_internal (bufp, string1, size1, string2,
5308                                      size2, startpos, regs, stop,
5309                                      wcs_string1, wcs_size1,
5310                                      wcs_string2, wcs_size2,
5311                                      mbs_offset1, mbs_offset2);
5312 #else /* BYTE */
5313       val = byte_re_match_2_internal (bufp, string1, size1, string2,
5314                                       size2, startpos, regs, stop);
5315 #endif /* BYTE */
5316
5317 #ifndef REGEX_MALLOC
5318 # ifdef C_ALLOCA
5319       alloca (0);
5320 # endif
5321 #endif
5322
5323       if (val >= 0)
5324         {
5325 #ifdef WCHAR
5326           FREE_WCS_BUFFERS ();
5327 #endif
5328           return startpos;
5329         }
5330
5331       if (val == -2)
5332         {
5333 #ifdef WCHAR
5334           FREE_WCS_BUFFERS ();
5335 #endif
5336           return -2;
5337         }
5338
5339     advance:
5340       if (!range)
5341         break;
5342       else if (range > 0)
5343         {
5344           range--;
5345           startpos++;
5346         }
5347       else
5348         {
5349           range++;
5350           startpos--;
5351         }
5352     }
5353 #ifdef WCHAR
5354   FREE_WCS_BUFFERS ();
5355 #endif
5356   return -1;
5357 }
5358
5359 #ifdef WCHAR
5360 /* This converts PTR, a pointer into one of the search wchar_t strings
5361    `string1' and `string2' into an multibyte string offset from the
5362    beginning of that string. We use mbs_offset to optimize.
5363    See convert_mbs_to_wcs.  */
5364 # define POINTER_TO_OFFSET(ptr)                                         \
5365   (FIRST_STRING_P (ptr)                                                 \
5366    ? ((regoff_t)(mbs_offset1 != NULL? mbs_offset1[(ptr)-string1] : 0))  \
5367    : ((regoff_t)((mbs_offset2 != NULL? mbs_offset2[(ptr)-string2] : 0)  \
5368                  + csize1)))
5369 #else /* BYTE */
5370 /* This converts PTR, a pointer into one of the search strings `string1'
5371    and `string2' into an offset from the beginning of that string.  */
5372 # define POINTER_TO_OFFSET(ptr)                 \
5373   (FIRST_STRING_P (ptr)                         \
5374    ? ((regoff_t) ((ptr) - string1))             \
5375    : ((regoff_t) ((ptr) - string2 + size1)))
5376 #endif /* WCHAR */
5377
5378 /* Macros for dealing with the split strings in re_match_2.  */
5379
5380 #define MATCHING_IN_FIRST_STRING  (dend == end_match_1)
5381
5382 /* Call before fetching a character with *d.  This switches over to
5383    string2 if necessary.  */
5384 #define PREFETCH()                                                      \
5385   while (d == dend)                                                     \
5386     {                                                                   \
5387       /* End of string2 => fail.  */                                    \
5388       if (dend == end_match_2)                                          \
5389         goto fail;                                                      \
5390       /* End of string1 => advance to string2.  */                      \
5391       d = string2;                                                      \
5392       dend = end_match_2;                                               \
5393     }
5394
5395 /* Test if at very beginning or at very end of the virtual concatenation
5396    of `string1' and `string2'.  If only one string, it's `string2'.  */
5397 #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2)
5398 #define AT_STRINGS_END(d) ((d) == end2)
5399
5400
5401 /* Test if D points to a character which is word-constituent.  We have
5402    two special cases to check for: if past the end of string1, look at
5403    the first character in string2; and if before the beginning of
5404    string2, look at the last character in string1.  */
5405 #ifdef WCHAR
5406 /* Use internationalized API instead of SYNTAX.  */
5407 # define WORDCHAR_P(d)                                                  \
5408   (iswalnum ((wint_t)((d) == end1 ? *string2                            \
5409            : (d) == string2 - 1 ? *(end1 - 1) : *(d))) != 0             \
5410    || ((d) == end1 ? *string2                                           \
5411        : (d) == string2 - 1 ? *(end1 - 1) : *(d)) == L'_')
5412 #else /* BYTE */
5413 # define WORDCHAR_P(d)                                                  \
5414   (SYNTAX ((d) == end1 ? *string2                                       \
5415            : (d) == string2 - 1 ? *(end1 - 1) : *(d))                   \
5416    == Sword)
5417 #endif /* WCHAR */
5418
5419 /* Disabled due to a compiler bug -- see comment at case wordbound */
5420 #if 0
5421 /* Test if the character before D and the one at D differ with respect
5422    to being word-constituent.  */
5423 #define AT_WORD_BOUNDARY(d)                                             \
5424   (AT_STRINGS_BEG (d) || AT_STRINGS_END (d)                             \
5425    || WORDCHAR_P (d - 1) != WORDCHAR_P (d))
5426 #endif
5427
5428 /* Free everything we malloc.  */
5429 #ifdef MATCH_MAY_ALLOCATE
5430 # ifdef WCHAR
5431 #  define FREE_VARIABLES()                                              \
5432   do {                                                                  \
5433     REGEX_FREE_STACK (fail_stack.stack);                                \
5434     FREE_VAR (regstart);                                                \
5435     FREE_VAR (regend);                                                  \
5436     FREE_VAR (old_regstart);                                            \
5437     FREE_VAR (old_regend);                                              \
5438     FREE_VAR (best_regstart);                                           \
5439     FREE_VAR (best_regend);                                             \
5440     FREE_VAR (reg_info);                                                \
5441     FREE_VAR (reg_dummy);                                               \
5442     FREE_VAR (reg_info_dummy);                                          \
5443     if (!cant_free_wcs_buf)                                             \
5444       {                                                                 \
5445         FREE_VAR (string1);                                             \
5446         FREE_VAR (string2);                                             \
5447         FREE_VAR (mbs_offset1);                                         \
5448         FREE_VAR (mbs_offset2);                                         \
5449       }                                                                 \
5450   } while (0)
5451 # else /* BYTE */
5452 #  define FREE_VARIABLES()                                              \
5453   do {                                                                  \
5454     REGEX_FREE_STACK (fail_stack.stack);                                \
5455     FREE_VAR (regstart);                                                \
5456     FREE_VAR (regend);                                                  \
5457     FREE_VAR (old_regstart);                                            \
5458     FREE_VAR (old_regend);                                              \
5459     FREE_VAR (best_regstart);                                           \
5460     FREE_VAR (best_regend);                                             \
5461     FREE_VAR (reg_info);                                                \
5462     FREE_VAR (reg_dummy);                                               \
5463     FREE_VAR (reg_info_dummy);                                          \
5464   } while (0)
5465 # endif /* WCHAR */
5466 #else
5467 # ifdef WCHAR
5468 #  define FREE_VARIABLES()                                              \
5469   do {                                                                  \
5470     if (!cant_free_wcs_buf)                                             \
5471       {                                                                 \
5472         FREE_VAR (string1);                                             \
5473         FREE_VAR (string2);                                             \
5474         FREE_VAR (mbs_offset1);                                         \
5475         FREE_VAR (mbs_offset2);                                         \
5476       }                                                                 \
5477   } while (0)
5478 # else /* BYTE */
5479 #  define FREE_VARIABLES() ((void)0) /* Do nothing!  But inhibit gcc warning. */
5480 # endif /* WCHAR */
5481 #endif /* not MATCH_MAY_ALLOCATE */
5482
5483 /* These values must meet several constraints.  They must not be valid
5484    register values; since we have a limit of 255 registers (because
5485    we use only one byte in the pattern for the register number), we can
5486    use numbers larger than 255.  They must differ by 1, because of
5487    NUM_FAILURE_ITEMS above.  And the value for the lowest register must
5488    be larger than the value for the highest register, so we do not try
5489    to actually save any registers when none are active.  */
5490 #define NO_HIGHEST_ACTIVE_REG (1 << BYTEWIDTH)
5491 #define NO_LOWEST_ACTIVE_REG (NO_HIGHEST_ACTIVE_REG + 1)
5492 \f
5493 #else /* not INSIDE_RECURSION */
5494 /* Matching routines.  */
5495
5496 #ifndef emacs   /* Emacs never uses this.  */
5497 /* re_match is like re_match_2 except it takes only a single string.  */
5498
5499 int
5500 re_match (bufp, string, size, pos, regs)
5501      struct re_pattern_buffer *bufp;
5502      const char *string;
5503      int size, pos;
5504      struct re_registers *regs;
5505 {
5506   int result;
5507 # ifdef MBS_SUPPORT
5508   if (MB_CUR_MAX != 1)
5509     result = wcs_re_match_2_internal (bufp, NULL, 0, string, size,
5510                                       pos, regs, size,
5511                                       NULL, 0, NULL, 0, NULL, NULL);
5512   else
5513 # endif
5514     result = byte_re_match_2_internal (bufp, NULL, 0, string, size,
5515                                   pos, regs, size);
5516 # ifndef REGEX_MALLOC
5517 #  ifdef C_ALLOCA
5518   alloca (0);
5519 #  endif
5520 # endif
5521   return result;
5522 }
5523 # ifdef _LIBC
5524 weak_alias (__re_match, re_match)
5525 # endif
5526 #endif /* not emacs */
5527
5528 #endif /* not INSIDE_RECURSION */
5529
5530 #ifdef INSIDE_RECURSION
5531 static boolean PREFIX(group_match_null_string_p) _RE_ARGS ((UCHAR_T **p,
5532                                                     UCHAR_T *end,
5533                                         PREFIX(register_info_type) *reg_info));
5534 static boolean PREFIX(alt_match_null_string_p) _RE_ARGS ((UCHAR_T *p,
5535                                                   UCHAR_T *end,
5536                                         PREFIX(register_info_type) *reg_info));
5537 static boolean PREFIX(common_op_match_null_string_p) _RE_ARGS ((UCHAR_T **p,
5538                                                         UCHAR_T *end,
5539                                         PREFIX(register_info_type) *reg_info));
5540 static int PREFIX(bcmp_translate) _RE_ARGS ((const CHAR_T *s1, const CHAR_T *s2,
5541                                      int len, char *translate));
5542 #else /* not INSIDE_RECURSION */
5543
5544 /* re_match_2 matches the compiled pattern in BUFP against the
5545    the (virtual) concatenation of STRING1 and STRING2 (of length SIZE1
5546    and SIZE2, respectively).  We start matching at POS, and stop
5547    matching at STOP.
5548
5549    If REGS is non-null and the `no_sub' field of BUFP is nonzero, we
5550    store offsets for the substring each group matched in REGS.  See the
5551    documentation for exactly how many groups we fill.
5552
5553    We return -1 if no match, -2 if an internal error (such as the
5554    failure stack overflowing).  Otherwise, we return the length of the
5555    matched substring.  */
5556
5557 int
5558 re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
5559      struct re_pattern_buffer *bufp;
5560      const char *string1, *string2;
5561      int size1, size2;
5562      int pos;
5563      struct re_registers *regs;
5564      int stop;
5565 {
5566   int result;
5567 # ifdef MBS_SUPPORT
5568   if (MB_CUR_MAX != 1)
5569     result = wcs_re_match_2_internal (bufp, string1, size1, string2, size2,
5570                                       pos, regs, stop,
5571                                       NULL, 0, NULL, 0, NULL, NULL);
5572   else
5573 # endif
5574     result = byte_re_match_2_internal (bufp, string1, size1, string2, size2,
5575                                   pos, regs, stop);
5576
5577 #ifndef REGEX_MALLOC
5578 # ifdef C_ALLOCA
5579   alloca (0);
5580 # endif
5581 #endif
5582   return result;
5583 }
5584 #ifdef _LIBC
5585 weak_alias (__re_match_2, re_match_2)
5586 #endif
5587
5588 #endif /* not INSIDE_RECURSION */
5589
5590 #ifdef INSIDE_RECURSION
5591
5592 #ifdef WCHAR
5593 static int count_mbs_length PARAMS ((int *, int));
5594
5595 /* This check the substring (from 0, to length) of the multibyte string,
5596    to which offset_buffer correspond. And count how many wchar_t_characters
5597    the substring occupy. We use offset_buffer to optimization.
5598    See convert_mbs_to_wcs.  */
5599
5600 static int
5601 count_mbs_length(offset_buffer, length)
5602      int *offset_buffer;
5603      int length;
5604 {
5605   int upper, lower;
5606
5607   /* Check whether the size is valid.  */
5608   if (length < 0)
5609     return -1;
5610
5611   if (offset_buffer == NULL)
5612     return 0;
5613
5614   /* If there are no multibyte character, offset_buffer[i] == i.
5615    Optmize for this case.  */
5616   if (offset_buffer[length] == length)
5617     return length;
5618
5619   /* Set up upper with length. (because for all i, offset_buffer[i] >= i)  */
5620   upper = length;
5621   lower = 0;
5622
5623   while (true)
5624     {
5625       int middle = (lower + upper) / 2;
5626       if (middle == lower || middle == upper)
5627         break;
5628       if (offset_buffer[middle] > length)
5629         upper = middle;
5630       else if (offset_buffer[middle] < length)
5631         lower = middle;
5632       else
5633         return middle;
5634     }
5635
5636   return -1;
5637 }
5638 #endif /* WCHAR */
5639
5640 /* This is a separate function so that we can force an alloca cleanup
5641    afterwards.  */
5642 #ifdef WCHAR
5643 static int
5644 wcs_re_match_2_internal (bufp, cstring1, csize1, cstring2, csize2, pos,
5645                          regs, stop, string1, size1, string2, size2,
5646                          mbs_offset1, mbs_offset2)
5647      struct re_pattern_buffer *bufp;
5648      const char *cstring1, *cstring2;
5649      int csize1, csize2;
5650      int pos;
5651      struct re_registers *regs;
5652      int stop;
5653      /* string1 == string2 == NULL means string1/2, size1/2 and
5654         mbs_offset1/2 need seting up in this function.  */
5655      /* We need wchar_t* buffers correspond to cstring1, cstring2.  */
5656      wchar_t *string1, *string2;
5657      /* We need the size of wchar_t buffers correspond to csize1, csize2.  */
5658      int size1, size2;
5659      /* offset buffer for optimizatoin. See convert_mbs_to_wc.  */
5660      int *mbs_offset1, *mbs_offset2;
5661 #else /* BYTE */
5662 static int
5663 byte_re_match_2_internal (bufp, string1, size1,string2, size2, pos,
5664                           regs, stop)
5665      struct re_pattern_buffer *bufp;
5666      const char *string1, *string2;
5667      int size1, size2;
5668      int pos;
5669      struct re_registers *regs;
5670      int stop;
5671 #endif /* BYTE */
5672 {
5673   /* General temporaries.  */
5674   int mcnt;
5675   UCHAR_T *p1;
5676 #ifdef WCHAR
5677   /* They hold whether each wchar_t is binary data or not.  */
5678   char *is_binary = NULL;
5679   /* If true, we can't free string1/2, mbs_offset1/2.  */
5680   int cant_free_wcs_buf = 1;
5681 #endif /* WCHAR */
5682
5683   /* Just past the end of the corresponding string.  */
5684   const CHAR_T *end1, *end2;
5685
5686   /* Pointers into string1 and string2, just past the last characters in
5687      each to consider matching.  */
5688   const CHAR_T *end_match_1, *end_match_2;
5689
5690   /* Where we are in the data, and the end of the current string.  */
5691   const CHAR_T *d, *dend;
5692
5693   /* Where we are in the pattern, and the end of the pattern.  */
5694 #ifdef WCHAR
5695   UCHAR_T *pattern, *p;
5696   register UCHAR_T *pend;
5697 #else /* BYTE */
5698   UCHAR_T *p = bufp->buffer;
5699   register UCHAR_T *pend = p + bufp->used;
5700 #endif /* WCHAR */
5701
5702   /* Mark the opcode just after a start_memory, so we can test for an
5703      empty subpattern when we get to the stop_memory.  */
5704   UCHAR_T *just_past_start_mem = 0;
5705
5706   /* We use this to map every character in the string.  */
5707   RE_TRANSLATE_TYPE translate = bufp->translate;
5708
5709   /* Failure point stack.  Each place that can handle a failure further
5710      down the line pushes a failure point on this stack.  It consists of
5711      restart, regend, and reg_info for all registers corresponding to
5712      the subexpressions we're currently inside, plus the number of such
5713      registers, and, finally, two char *'s.  The first char * is where
5714      to resume scanning the pattern; the second one is where to resume
5715      scanning the strings.  If the latter is zero, the failure point is
5716      a ``dummy''; if a failure happens and the failure point is a dummy,
5717      it gets discarded and the next next one is tried.  */
5718 #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global.  */
5719   PREFIX(fail_stack_type) fail_stack;
5720 #endif
5721 #ifdef DEBUG
5722   static unsigned failure_id;
5723   unsigned nfailure_points_pushed = 0, nfailure_points_popped = 0;
5724 #endif
5725
5726 #ifdef REL_ALLOC
5727   /* This holds the pointer to the failure stack, when
5728      it is allocated relocatably.  */
5729   fail_stack_elt_t *failure_stack_ptr;
5730 #endif
5731
5732   /* We fill all the registers internally, independent of what we
5733      return, for use in backreferences.  The number here includes
5734      an element for register zero.  */
5735   size_t num_regs = bufp->re_nsub + 1;
5736
5737   /* The currently active registers.  */
5738   active_reg_t lowest_active_reg = NO_LOWEST_ACTIVE_REG;
5739   active_reg_t highest_active_reg = NO_HIGHEST_ACTIVE_REG;
5740
5741   /* Information on the contents of registers. These are pointers into
5742      the input strings; they record just what was matched (on this
5743      attempt) by a subexpression part of the pattern, that is, the
5744      regnum-th regstart pointer points to where in the pattern we began
5745      matching and the regnum-th regend points to right after where we
5746      stopped matching the regnum-th subexpression.  (The zeroth register
5747      keeps track of what the whole pattern matches.)  */
5748 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
5749   const CHAR_T **regstart, **regend;
5750 #endif
5751
5752   /* If a group that's operated upon by a repetition operator fails to
5753      match anything, then the register for its start will need to be
5754      restored because it will have been set to wherever in the string we
5755      are when we last see its open-group operator.  Similarly for a
5756      register's end.  */
5757 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
5758   const CHAR_T **old_regstart, **old_regend;
5759 #endif
5760
5761   /* The is_active field of reg_info helps us keep track of which (possibly
5762      nested) subexpressions we are currently in. The matched_something
5763      field of reg_info[reg_num] helps us tell whether or not we have
5764      matched any of the pattern so far this time through the reg_num-th
5765      subexpression.  These two fields get reset each time through any
5766      loop their register is in.  */
5767 #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global.  */
5768   PREFIX(register_info_type) *reg_info;
5769 #endif
5770
5771   /* The following record the register info as found in the above
5772      variables when we find a match better than any we've seen before.
5773      This happens as we backtrack through the failure points, which in
5774      turn happens only if we have not yet matched the entire string. */
5775   unsigned best_regs_set = false;
5776 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
5777   const CHAR_T **best_regstart, **best_regend;
5778 #endif
5779
5780   /* Logically, this is `best_regend[0]'.  But we don't want to have to
5781      allocate space for that if we're not allocating space for anything
5782      else (see below).  Also, we never need info about register 0 for
5783      any of the other register vectors, and it seems rather a kludge to
5784      treat `best_regend' differently than the rest.  So we keep track of
5785      the end of the best match so far in a separate variable.  We
5786      initialize this to NULL so that when we backtrack the first time
5787      and need to test it, it's not garbage.  */
5788   const CHAR_T *match_end = NULL;
5789
5790   /* This helps SET_REGS_MATCHED avoid doing redundant work.  */
5791   int set_regs_matched_done = 0;
5792
5793   /* Used when we pop values we don't care about.  */
5794 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
5795   const CHAR_T **reg_dummy;
5796   PREFIX(register_info_type) *reg_info_dummy;
5797 #endif
5798
5799 #ifdef DEBUG
5800   /* Counts the total number of registers pushed.  */
5801   unsigned num_regs_pushed = 0;
5802 #endif
5803
5804   /* Definitions for state transitions.  More efficiently for gcc.  */
5805 #ifdef __GNUC__
5806 # if defined HAVE_SUBTRACT_LOCAL_LABELS && defined SHARED
5807 #  define NEXT \
5808       do                                                                      \
5809         {                                                                     \
5810           int offset;                                                         \
5811           const void *__unbounded ptr;                                        \
5812           offset = (p == pend                                                 \
5813                     ? 0 : jmptable[SWITCH_ENUM_CAST ((re_opcode_t) *p++)]);   \
5814           ptr = &&end_of_pattern + offset;                                    \
5815           goto *ptr;                                                          \
5816         }                                                                     \
5817       while (0)
5818 #  define REF(x) \
5819   &&label_##x - &&end_of_pattern
5820 #  define JUMP_TABLE_TYPE const int
5821 # else
5822 #  define NEXT \
5823       do                                                                      \
5824         {                                                                     \
5825           const void *__unbounded ptr;                                        \
5826           ptr = (p == pend ? &&end_of_pattern                                 \
5827                  : jmptable[SWITCH_ENUM_CAST ((re_opcode_t) *p++)]);          \
5828           goto *ptr;                                                          \
5829         }                                                                     \
5830       while (0)
5831 #  define REF(x) \
5832   &&label_##x
5833 #  define JUMP_TABLE_TYPE const void *const
5834 # endif
5835 # define CASE(x) label_##x
5836   static JUMP_TABLE_TYPE jmptable[] =
5837     {
5838     REF (no_op),
5839     REF (succeed),
5840     REF (exactn),
5841 # ifdef MBS_SUPPORT
5842     REF (exactn_bin),
5843 # endif
5844     REF (anychar),
5845     REF (charset),
5846     REF (charset_not),
5847     REF (start_memory),
5848     REF (stop_memory),
5849     REF (duplicate),
5850     REF (begline),
5851     REF (endline),
5852     REF (begbuf),
5853     REF (endbuf),
5854     REF (jump),
5855     REF (jump_past_alt),
5856     REF (on_failure_jump),
5857     REF (on_failure_keep_string_jump),
5858     REF (pop_failure_jump),
5859     REF (maybe_pop_jump),
5860     REF (dummy_failure_jump),
5861     REF (push_dummy_failure),
5862     REF (succeed_n),
5863     REF (jump_n),
5864     REF (set_number_at),
5865     REF (wordchar),
5866     REF (notwordchar),
5867     REF (wordbeg),
5868     REF (wordend),
5869     REF (wordbound),
5870     REF (notwordbound)
5871 # ifdef emacs
5872     ,REF (before_dot),
5873     REF (at_dot),
5874     REF (after_dot),
5875     REF (syntaxspec),
5876     REF (notsyntaxspec)
5877 # endif
5878     };
5879 #else
5880 # define NEXT \
5881   break
5882 # define CASE(x) \
5883   case x
5884 #endif
5885
5886   DEBUG_PRINT1 ("\n\nEntering re_match_2.\n");
5887
5888   INIT_FAIL_STACK ();
5889
5890 #ifdef MATCH_MAY_ALLOCATE
5891   /* Do not bother to initialize all the register variables if there are
5892      no groups in the pattern, as it takes a fair amount of time.  If
5893      there are groups, we include space for register 0 (the whole
5894      pattern), even though we never use it, since it simplifies the
5895      array indexing.  We should fix this.  */
5896   if (bufp->re_nsub)
5897     {
5898       regstart = REGEX_TALLOC (num_regs, const CHAR_T *);
5899       regend = REGEX_TALLOC (num_regs, const CHAR_T *);
5900       old_regstart = REGEX_TALLOC (num_regs, const CHAR_T *);
5901       old_regend = REGEX_TALLOC (num_regs, const CHAR_T *);
5902       best_regstart = REGEX_TALLOC (num_regs, const CHAR_T *);
5903       best_regend = REGEX_TALLOC (num_regs, const CHAR_T *);
5904       reg_info = REGEX_TALLOC (num_regs, PREFIX(register_info_type));
5905       reg_dummy = REGEX_TALLOC (num_regs, const CHAR_T *);
5906       reg_info_dummy = REGEX_TALLOC (num_regs, PREFIX(register_info_type));
5907
5908       if (!(regstart && regend && old_regstart && old_regend && reg_info
5909             && best_regstart && best_regend && reg_dummy && reg_info_dummy))
5910         {
5911           FREE_VARIABLES ();
5912           return -2;
5913         }
5914     }
5915   else
5916     {
5917       /* We must initialize all our variables to NULL, so that
5918          `FREE_VARIABLES' doesn't try to free them.  */
5919       regstart = regend = old_regstart = old_regend = best_regstart
5920         = best_regend = reg_dummy = NULL;
5921       reg_info = reg_info_dummy = (PREFIX(register_info_type) *) NULL;
5922     }
5923 #endif /* MATCH_MAY_ALLOCATE */
5924
5925   /* The starting position is bogus.  */
5926 #ifdef WCHAR
5927   if (pos < 0 || pos > csize1 + csize2)
5928 #else /* BYTE */
5929   if (pos < 0 || pos > size1 + size2)
5930 #endif
5931     {
5932       FREE_VARIABLES ();
5933       return -1;
5934     }
5935
5936 #ifdef WCHAR
5937   /* Allocate wchar_t array for string1 and string2 and
5938      fill them with converted string.  */
5939   if (string1 == NULL && string2 == NULL)
5940     {
5941       /* We need seting up buffers here.  */
5942
5943       /* We must free wcs buffers in this function.  */
5944       cant_free_wcs_buf = 0;
5945
5946       if (csize1 != 0)
5947         {
5948           string1 = REGEX_TALLOC (csize1 + 1, CHAR_T);
5949           mbs_offset1 = REGEX_TALLOC (csize1 + 1, int);
5950           is_binary = REGEX_TALLOC (csize1 + 1, char);
5951           if (!string1 || !mbs_offset1 || !is_binary)
5952             {
5953               FREE_VAR (string1);
5954               FREE_VAR (mbs_offset1);
5955               FREE_VAR (is_binary);
5956               return -2;
5957             }
5958         }
5959       if (csize2 != 0)
5960         {
5961           string2 = REGEX_TALLOC (csize2 + 1, CHAR_T);
5962           mbs_offset2 = REGEX_TALLOC (csize2 + 1, int);
5963           is_binary = REGEX_TALLOC (csize2 + 1, char);
5964           if (!string2 || !mbs_offset2 || !is_binary)
5965             {
5966               FREE_VAR (string1);
5967               FREE_VAR (mbs_offset1);
5968               FREE_VAR (string2);
5969               FREE_VAR (mbs_offset2);
5970               FREE_VAR (is_binary);
5971               return -2;
5972             }
5973           size2 = convert_mbs_to_wcs(string2, cstring2, csize2,
5974                                      mbs_offset2, is_binary);
5975           string2[size2] = L'\0'; /* for a sentinel  */
5976           FREE_VAR (is_binary);
5977         }
5978     }
5979
5980   /* We need to cast pattern to (wchar_t*), because we casted this compiled
5981      pattern to (char*) in regex_compile.  */
5982   p = pattern = (CHAR_T*)bufp->buffer;
5983   pend = (CHAR_T*)(bufp->buffer + bufp->used);
5984
5985 #endif /* WCHAR */
5986
5987   /* Initialize subexpression text positions to -1 to mark ones that no
5988      start_memory/stop_memory has been seen for. Also initialize the
5989      register information struct.  */
5990   for (mcnt = 1; (unsigned) mcnt < num_regs; mcnt++)
5991     {
5992       regstart[mcnt] = regend[mcnt]
5993         = old_regstart[mcnt] = old_regend[mcnt] = REG_UNSET_VALUE;
5994
5995       REG_MATCH_NULL_STRING_P (reg_info[mcnt]) = MATCH_NULL_UNSET_VALUE;
5996       IS_ACTIVE (reg_info[mcnt]) = 0;
5997       MATCHED_SOMETHING (reg_info[mcnt]) = 0;
5998       EVER_MATCHED_SOMETHING (reg_info[mcnt]) = 0;
5999     }
6000
6001   /* We move `string1' into `string2' if the latter's empty -- but not if
6002      `string1' is null.  */
6003   if (size2 == 0 && string1 != NULL)
6004     {
6005       string2 = string1;
6006       size2 = size1;
6007       string1 = 0;
6008       size1 = 0;
6009 #ifdef WCHAR
6010       mbs_offset2 = mbs_offset1;
6011       csize2 = csize1;
6012       mbs_offset1 = NULL;
6013       csize1 = 0;
6014 #endif
6015     }
6016   end1 = string1 + size1;
6017   end2 = string2 + size2;
6018
6019   /* Compute where to stop matching, within the two strings.  */
6020 #ifdef WCHAR
6021   if (stop <= csize1)
6022     {
6023       mcnt = count_mbs_length(mbs_offset1, stop);
6024       end_match_1 = string1 + mcnt;
6025       end_match_2 = string2;
6026     }
6027   else
6028     {
6029       if (stop > csize1 + csize2)
6030         stop = csize1 + csize2;
6031       end_match_1 = end1;
6032       mcnt = count_mbs_length(mbs_offset2, stop-csize1);
6033       end_match_2 = string2 + mcnt;
6034     }
6035   if (mcnt < 0)
6036     { /* count_mbs_length return error.  */
6037       FREE_VARIABLES ();
6038       return -1;
6039     }
6040 #else
6041   if (stop <= size1)
6042     {
6043       end_match_1 = string1 + stop;
6044       end_match_2 = string2;
6045     }
6046   else
6047     {
6048       end_match_1 = end1;
6049       end_match_2 = string2 + stop - size1;
6050     }
6051 #endif /* WCHAR */
6052
6053   /* `p' scans through the pattern as `d' scans through the data.
6054      `dend' is the end of the input string that `d' points within.  `d'
6055      is advanced into the following input string whenever necessary, but
6056      this happens before fetching; therefore, at the beginning of the
6057      loop, `d' can be pointing at the end of a string, but it cannot
6058      equal `string2'.  */
6059 #ifdef WCHAR
6060   if (size1 > 0 && pos <= csize1)
6061     {
6062       mcnt = count_mbs_length(mbs_offset1, pos);
6063       d = string1 + mcnt;
6064       dend = end_match_1;
6065     }
6066   else
6067     {
6068       mcnt = count_mbs_length(mbs_offset2, pos-csize1);
6069       d = string2 + mcnt;
6070       dend = end_match_2;
6071     }
6072
6073   if (mcnt < 0)
6074     { /* count_mbs_length return error.  */
6075       FREE_VARIABLES ();
6076       return -1;
6077     }
6078 #else
6079   if (size1 > 0 && pos <= size1)
6080     {
6081       d = string1 + pos;
6082       dend = end_match_1;
6083     }
6084   else
6085     {
6086       d = string2 + pos - size1;
6087       dend = end_match_2;
6088     }
6089 #endif /* WCHAR */
6090
6091   DEBUG_PRINT1 ("The compiled pattern is:\n");
6092   DEBUG_PRINT_COMPILED_PATTERN (bufp, p, pend);
6093   DEBUG_PRINT1 ("The string to match is: `");
6094   DEBUG_PRINT_DOUBLE_STRING (d, string1, size1, string2, size2);
6095   DEBUG_PRINT1 ("'\n");
6096
6097   /* This loops over pattern commands.  It exits by returning from the
6098      function if the match is complete, or it drops through if the match
6099      fails at this starting point in the input data.  */
6100   for (;;)
6101     {
6102 #ifdef _LIBC
6103       DEBUG_PRINT2 ("\n%p: ", p);
6104 #else
6105       DEBUG_PRINT2 ("\n0x%x: ", p);
6106 #endif
6107
6108 #ifdef __GNUC__
6109       NEXT;
6110 #else
6111       if (p == pend)
6112 #endif
6113         {
6114 #ifdef __GNUC__
6115         end_of_pattern:
6116 #endif
6117           /* End of pattern means we might have succeeded.  */
6118           DEBUG_PRINT1 ("end of pattern ... ");
6119
6120           /* If we haven't matched the entire string, and we want the
6121              longest match, try backtracking.  */
6122           if (d != end_match_2)
6123             {
6124               /* 1 if this match ends in the same string (string1 or string2)
6125                  as the best previous match.  */
6126               boolean same_str_p = (FIRST_STRING_P (match_end)
6127                                     == MATCHING_IN_FIRST_STRING);
6128               /* 1 if this match is the best seen so far.  */
6129               boolean best_match_p;
6130
6131               /* AIX compiler got confused when this was combined
6132                  with the previous declaration.  */
6133               if (same_str_p)
6134                 best_match_p = d > match_end;
6135               else
6136                 best_match_p = !MATCHING_IN_FIRST_STRING;
6137
6138               DEBUG_PRINT1 ("backtracking.\n");
6139
6140               if (!FAIL_STACK_EMPTY ())
6141                 { /* More failure points to try.  */
6142
6143                   /* If exceeds best match so far, save it.  */
6144                   if (!best_regs_set || best_match_p)
6145                     {
6146                       best_regs_set = true;
6147                       match_end = d;
6148
6149                       DEBUG_PRINT1 ("\nSAVING match as best so far.\n");
6150
6151                       for (mcnt = 1; (unsigned) mcnt < num_regs; mcnt++)
6152                         {
6153                           best_regstart[mcnt] = regstart[mcnt];
6154                           best_regend[mcnt] = regend[mcnt];
6155                         }
6156                     }
6157                   goto fail;
6158                 }
6159
6160               /* If no failure points, don't restore garbage.  And if
6161                  last match is real best match, don't restore second
6162                  best one. */
6163               else if (best_regs_set && !best_match_p)
6164                 {
6165                 restore_best_regs:
6166                   /* Restore best match.  It may happen that `dend ==
6167                      end_match_1' while the restored d is in string2.
6168                      For example, the pattern `x.*y.*z' against the
6169                      strings `x-' and `y-z-', if the two strings are
6170                      not consecutive in memory.  */
6171                   DEBUG_PRINT1 ("Restoring best registers.\n");
6172
6173                   d = match_end;
6174                   dend = ((d >= string1 && d <= end1)
6175                           ? end_match_1 : end_match_2);
6176
6177                   for (mcnt = 1; (unsigned) mcnt < num_regs; mcnt++)
6178                     {
6179                       regstart[mcnt] = best_regstart[mcnt];
6180                       regend[mcnt] = best_regend[mcnt];
6181                     }
6182                 }
6183             } /* d != end_match_2 */
6184
6185         succeed_label:
6186           DEBUG_PRINT1 ("Accepting match.\n");
6187           /* If caller wants register contents data back, do it.  */
6188           if (regs && !bufp->no_sub)
6189             {
6190               /* Have the register data arrays been allocated?  */
6191               if (bufp->regs_allocated == REGS_UNALLOCATED)
6192                 { /* No.  So allocate them with malloc.  We need one
6193                      extra element beyond `num_regs' for the `-1' marker
6194                      GNU code uses.  */
6195                   regs->num_regs = MAX (RE_NREGS, num_regs + 1);
6196                   regs->start = TALLOC (regs->num_regs, regoff_t);
6197                   regs->end = TALLOC (regs->num_regs, regoff_t);
6198                   if (regs->start == NULL || regs->end == NULL)
6199                     {
6200                       FREE_VARIABLES ();
6201                       return -2;
6202                     }
6203                   bufp->regs_allocated = REGS_REALLOCATE;
6204                 }
6205               else if (bufp->regs_allocated == REGS_REALLOCATE)
6206                 { /* Yes.  If we need more elements than were already
6207                      allocated, reallocate them.  If we need fewer, just
6208                      leave it alone.  */
6209                   if (regs->num_regs < num_regs + 1)
6210                     {
6211                       regs->num_regs = num_regs + 1;
6212                       RETALLOC (regs->start, regs->num_regs, regoff_t);
6213                       RETALLOC (regs->end, regs->num_regs, regoff_t);
6214                       if (regs->start == NULL || regs->end == NULL)
6215                         {
6216                           FREE_VARIABLES ();
6217                           return -2;
6218                         }
6219                     }
6220                 }
6221               else
6222                 {
6223                   /* These braces fend off a "empty body in an else-statement"
6224                      warning under GCC when assert expands to nothing.  */
6225                   assert (bufp->regs_allocated == REGS_FIXED);
6226                 }
6227
6228               /* Convert the pointer data in `regstart' and `regend' to
6229                  indices.  Register zero has to be set differently,
6230                  since we haven't kept track of any info for it.  */
6231               if (regs->num_regs > 0)
6232                 {
6233                   regs->start[0] = pos;
6234 #ifdef WCHAR
6235                   if (MATCHING_IN_FIRST_STRING)
6236                     regs->end[0] = (mbs_offset1 != NULL ?
6237                                     mbs_offset1[d-string1] : 0);
6238                   else
6239                     regs->end[0] = csize1 + (mbs_offset2 != NULL
6240                                              ? mbs_offset2[d-string2] : 0);
6241 #else
6242                   regs->end[0] = (MATCHING_IN_FIRST_STRING
6243                                   ? ((regoff_t) (d - string1))
6244                                   : ((regoff_t) (d - string2 + size1)));
6245 #endif /* WCHAR */
6246                 }
6247
6248               /* Go through the first `min (num_regs, regs->num_regs)'
6249                  registers, since that is all we initialized.  */
6250               for (mcnt = 1; (unsigned) mcnt < MIN (num_regs, regs->num_regs);
6251                    mcnt++)
6252                 {
6253                   if (REG_UNSET (regstart[mcnt]) || REG_UNSET (regend[mcnt]))
6254                     regs->start[mcnt] = regs->end[mcnt] = -1;
6255                   else
6256                     {
6257                       regs->start[mcnt]
6258                         = (regoff_t) POINTER_TO_OFFSET (regstart[mcnt]);
6259                       regs->end[mcnt]
6260                         = (regoff_t) POINTER_TO_OFFSET (regend[mcnt]);
6261                     }
6262                 }
6263
6264               /* If the regs structure we return has more elements than
6265                  were in the pattern, set the extra elements to -1.  If
6266                  we (re)allocated the registers, this is the case,
6267                  because we always allocate enough to have at least one
6268                  -1 at the end.  */
6269               for (mcnt = num_regs; (unsigned) mcnt < regs->num_regs; mcnt++)
6270                 regs->start[mcnt] = regs->end[mcnt] = -1;
6271             } /* regs && !bufp->no_sub */
6272
6273           DEBUG_PRINT4 ("%u failure points pushed, %u popped (%u remain).\n",
6274                         nfailure_points_pushed, nfailure_points_popped,
6275                         nfailure_points_pushed - nfailure_points_popped);
6276           DEBUG_PRINT2 ("%u registers pushed.\n", num_regs_pushed);
6277
6278 #ifdef WCHAR
6279           if (MATCHING_IN_FIRST_STRING)
6280             mcnt = mbs_offset1 != NULL ? mbs_offset1[d-string1] : 0;
6281           else
6282             mcnt = (mbs_offset2 != NULL ? mbs_offset2[d-string2] : 0) +
6283               csize1;
6284           mcnt -= pos;
6285 #else
6286           mcnt = d - pos - (MATCHING_IN_FIRST_STRING
6287                             ? string1 : string2 - size1);
6288 #endif /* WCHAR */
6289
6290           DEBUG_PRINT2 ("Returning %d from re_match_2.\n", mcnt);
6291
6292           FREE_VARIABLES ();
6293           return mcnt;
6294         }
6295
6296 #ifndef __GNUC__
6297       /* Otherwise match next pattern command.  */
6298       switch (SWITCH_ENUM_CAST ((re_opcode_t) *p++))
6299         {
6300 #endif
6301         /* Ignore these.  Used to ignore the n of succeed_n's which
6302            currently have n == 0.  */
6303         CASE (no_op):
6304           DEBUG_PRINT1 ("EXECUTING no_op.\n");
6305           NEXT;
6306
6307         CASE (succeed):
6308           DEBUG_PRINT1 ("EXECUTING succeed.\n");
6309           goto succeed_label;
6310
6311         /* Match the next n pattern characters exactly.  The following
6312            byte in the pattern defines n, and the n bytes after that
6313            are the characters to match.  */
6314         CASE (exactn):
6315 #ifdef MBS_SUPPORT
6316         CASE (exactn_bin):
6317 #endif
6318           mcnt = *p++;
6319           DEBUG_PRINT2 ("EXECUTING exactn %d.\n", mcnt);
6320
6321           /* This is written out as an if-else so we don't waste time
6322              testing `translate' inside the loop.  */
6323           if (translate)
6324             {
6325               do
6326                 {
6327                   PREFETCH ();
6328 #ifdef WCHAR
6329                   if (*d <= 0xff)
6330                     {
6331                       if ((UCHAR_T) translate[(unsigned char) *d++]
6332                           != (UCHAR_T) *p++)
6333                         goto fail;
6334                     }
6335                   else
6336                     {
6337                       if (*d++ != (CHAR_T) *p++)
6338                         goto fail;
6339                     }
6340 #else
6341                   if ((UCHAR_T) translate[(unsigned char) *d++]
6342                       != (UCHAR_T) *p++)
6343                     goto fail;
6344 #endif /* WCHAR */
6345                 }
6346               while (--mcnt);
6347             }
6348           else
6349             {
6350               do
6351                 {
6352                   PREFETCH ();
6353                   if (*d++ != (CHAR_T) *p++) goto fail;
6354                 }
6355               while (--mcnt);
6356             }
6357           SET_REGS_MATCHED ();
6358           NEXT;
6359
6360
6361         /* Match any character except possibly a newline or a null.  */
6362         CASE (anychar):
6363           DEBUG_PRINT1 ("EXECUTING anychar.\n");
6364
6365           PREFETCH ();
6366
6367           if ((!(bufp->syntax & RE_DOT_NEWLINE) && TRANSLATE (*d) == '\n')
6368               || (bufp->syntax & RE_DOT_NOT_NULL && TRANSLATE (*d) == '\000'))
6369             goto fail;
6370
6371           SET_REGS_MATCHED ();
6372           DEBUG_PRINT2 ("  Matched `%ld'.\n", (long int) *d);
6373           d++;
6374           NEXT;
6375
6376
6377         CASE (charset):
6378         CASE (charset_not):
6379           {
6380             register UCHAR_T c;
6381 #ifdef WCHAR
6382             unsigned int i, char_class_length, coll_symbol_length,
6383               equiv_class_length, ranges_length, chars_length, length;
6384             CHAR_T *workp, *workp2, *charset_top;
6385 #define WORK_BUFFER_SIZE 128
6386             CHAR_T str_buf[WORK_BUFFER_SIZE];
6387 # ifdef _LIBC
6388             uint32_t nrules;
6389 # endif /* _LIBC */
6390 #endif /* WCHAR */
6391             boolean not = (re_opcode_t) *(p - 1) == charset_not;
6392
6393             DEBUG_PRINT2 ("EXECUTING charset%s.\n", not ? "_not" : "");
6394             PREFETCH ();
6395             c = TRANSLATE (*d); /* The character to match.  */
6396 #ifdef WCHAR
6397 # ifdef _LIBC
6398             nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
6399 # endif /* _LIBC */
6400             charset_top = p - 1;
6401             char_class_length = *p++;
6402             coll_symbol_length = *p++;
6403             equiv_class_length = *p++;
6404             ranges_length = *p++;
6405             chars_length = *p++;
6406             /* p points charset[6], so the address of the next instruction
6407                (charset[l+m+n+2o+k+p']) equals p[l+m+n+2*o+p'],
6408                where l=length of char_classes, m=length of collating_symbol,
6409                n=equivalence_class, o=length of char_range,
6410                p'=length of character.  */
6411             workp = p;
6412             /* Update p to indicate the next instruction.  */
6413             p += char_class_length + coll_symbol_length+ equiv_class_length +
6414               2*ranges_length + chars_length;
6415
6416             /* match with char_class?  */
6417             for (i = 0; i < char_class_length ; i += CHAR_CLASS_SIZE)
6418               {
6419                 wctype_t wctype;
6420                 uintptr_t alignedp = ((uintptr_t)workp
6421                                       + __alignof__(wctype_t) - 1)
6422                                       & ~(uintptr_t)(__alignof__(wctype_t) - 1);
6423                 wctype = *((wctype_t*)alignedp);
6424                 workp += CHAR_CLASS_SIZE;
6425                 if (iswctype((wint_t)c, wctype))
6426                   goto char_set_matched;
6427               }
6428
6429             /* match with collating_symbol?  */
6430 # ifdef _LIBC
6431             if (nrules != 0)
6432               {
6433                 const unsigned char *extra = (const unsigned char *)
6434                   _NL_CURRENT (LC_COLLATE, _NL_COLLATE_SYMB_EXTRAMB);
6435
6436                 for (workp2 = workp + coll_symbol_length ; workp < workp2 ;
6437                      workp++)
6438                   {
6439                     int32_t *wextra;
6440                     wextra = (int32_t*)(extra + *workp++);
6441                     for (i = 0; i < *wextra; ++i)
6442                       if (TRANSLATE(d[i]) != wextra[1 + i])
6443                         break;
6444
6445                     if (i == *wextra)
6446                       {
6447                         /* Update d, however d will be incremented at
6448                            char_set_matched:, we decrement d here.  */
6449                         d += i - 1;
6450                         goto char_set_matched;
6451                       }
6452                   }
6453               }
6454             else /* (nrules == 0) */
6455 # endif
6456               /* If we can't look up collation data, we use wcscoll
6457                  instead.  */
6458               {
6459                 for (workp2 = workp + coll_symbol_length ; workp < workp2 ;)
6460                   {
6461                     const CHAR_T *backup_d = d, *backup_dend = dend;
6462                     length = wcslen (workp);
6463
6464                     /* If wcscoll(the collating symbol, whole string) > 0,
6465                        any substring of the string never match with the
6466                        collating symbol.  */
6467                     if (wcscoll (workp, d) > 0)
6468                       {
6469                         workp += length + 1;
6470                         continue;
6471                       }
6472
6473                     /* First, we compare the collating symbol with
6474                        the first character of the string.
6475                        If it don't match, we add the next character to
6476                        the compare buffer in turn.  */
6477                     for (i = 0 ; i < WORK_BUFFER_SIZE-1 ; i++, d++)
6478                       {
6479                         int match;
6480                         if (d == dend)
6481                           {
6482                             if (dend == end_match_2)
6483                               break;
6484                             d = string2;
6485                             dend = end_match_2;
6486                           }
6487
6488                         /* add next character to the compare buffer.  */
6489                         str_buf[i] = TRANSLATE(*d);
6490                         str_buf[i+1] = '\0';
6491
6492                         match = wcscoll (workp, str_buf);
6493                         if (match == 0)
6494                           goto char_set_matched;
6495
6496                         if (match < 0)
6497                           /* (str_buf > workp) indicate (str_buf + X > workp),
6498                              because for all X (str_buf + X > str_buf).
6499                              So we don't need continue this loop.  */
6500                           break;
6501
6502                         /* Otherwise(str_buf < workp),
6503                            (str_buf+next_character) may equals (workp).
6504                            So we continue this loop.  */
6505                       }
6506                     /* not matched */
6507                     d = backup_d;
6508                     dend = backup_dend;
6509                     workp += length + 1;
6510                   }
6511               }
6512             /* match with equivalence_class?  */
6513 # ifdef _LIBC
6514             if (nrules != 0)
6515               {
6516                 const CHAR_T *backup_d = d, *backup_dend = dend;
6517                 /* Try to match the equivalence class against
6518                    those known to the collate implementation.  */
6519                 const int32_t *table;
6520                 const int32_t *weights;
6521                 const int32_t *extra;
6522                 const int32_t *indirect;
6523                 int32_t idx, idx2;
6524                 wint_t *cp;
6525                 size_t len;
6526
6527                 /* This #include defines a local function!  */
6528 #  include <locale/weightwc.h>
6529
6530                 table = (const int32_t *)
6531                   _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEWC);
6532                 weights = (const wint_t *)
6533                   _NL_CURRENT (LC_COLLATE, _NL_COLLATE_WEIGHTWC);
6534                 extra = (const wint_t *)
6535                   _NL_CURRENT (LC_COLLATE, _NL_COLLATE_EXTRAWC);
6536                 indirect = (const int32_t *)
6537                   _NL_CURRENT (LC_COLLATE, _NL_COLLATE_INDIRECTWC);
6538
6539                 /* Write 1 collating element to str_buf, and
6540                    get its index.  */
6541                 idx2 = 0;
6542
6543                 for (i = 0 ; idx2 == 0 && i < WORK_BUFFER_SIZE - 1; i++)
6544                   {
6545                     cp = (wint_t*)str_buf;
6546                     if (d == dend)
6547                       {
6548                         if (dend == end_match_2)
6549                           break;
6550                         d = string2;
6551                         dend = end_match_2;
6552                       }
6553                     str_buf[i] = TRANSLATE(*(d+i));
6554                     str_buf[i+1] = '\0'; /* sentinel */
6555                     idx2 = findidx ((const wint_t**)&cp);
6556                   }
6557
6558                 /* Update d, however d will be incremented at
6559                    char_set_matched:, we decrement d here.  */
6560                 d = backup_d + ((wchar_t*)cp - (wchar_t*)str_buf - 1);
6561                 if (d >= dend)
6562                   {
6563                     if (dend == end_match_2)
6564                         d = dend;
6565                     else
6566                       {
6567                         d = string2;
6568                         dend = end_match_2;
6569                       }
6570                   }
6571
6572                 len = weights[idx2];
6573
6574                 for (workp2 = workp + equiv_class_length ; workp < workp2 ;
6575                      workp++)
6576                   {
6577                     idx = (int32_t)*workp;
6578                     /* We already checked idx != 0 in regex_compile. */
6579
6580                     if (idx2 != 0 && len == weights[idx])
6581                       {
6582                         int cnt = 0;
6583                         while (cnt < len && (weights[idx + 1 + cnt]
6584                                              == weights[idx2 + 1 + cnt]))
6585                           ++cnt;
6586
6587                         if (cnt == len)
6588                           goto char_set_matched;
6589                       }
6590                   }
6591                 /* not matched */
6592                 d = backup_d;
6593                 dend = backup_dend;
6594               }
6595             else /* (nrules == 0) */
6596 # endif
6597               /* If we can't look up collation data, we use wcscoll
6598                  instead.  */
6599               {
6600                 for (workp2 = workp + equiv_class_length ; workp < workp2 ;)
6601                   {
6602                     const CHAR_T *backup_d = d, *backup_dend = dend;
6603                     length = wcslen (workp);
6604
6605                     /* If wcscoll(the collating symbol, whole string) > 0,
6606                        any substring of the string never match with the
6607                        collating symbol.  */
6608                     if (wcscoll (workp, d) > 0)
6609                       {
6610                         workp += length + 1;
6611                         break;
6612                       }
6613
6614                     /* First, we compare the equivalence class with
6615                        the first character of the string.
6616                        If it don't match, we add the next character to
6617                        the compare buffer in turn.  */
6618                     for (i = 0 ; i < WORK_BUFFER_SIZE - 1 ; i++, d++)
6619                       {
6620                         int match;
6621                         if (d == dend)
6622                           {
6623                             if (dend == end_match_2)
6624                               break;
6625                             d = string2;
6626                             dend = end_match_2;
6627                           }
6628
6629                         /* add next character to the compare buffer.  */
6630                         str_buf[i] = TRANSLATE(*d);
6631                         str_buf[i+1] = '\0';
6632
6633                         match = wcscoll (workp, str_buf);
6634
6635                         if (match == 0)
6636                           goto char_set_matched;
6637
6638                         if (match < 0)
6639                         /* (str_buf > workp) indicate (str_buf + X > workp),
6640                            because for all X (str_buf + X > str_buf).
6641                            So we don't need continue this loop.  */
6642                           break;
6643
6644                         /* Otherwise(str_buf < workp),
6645                            (str_buf+next_character) may equals (workp).
6646                            So we continue this loop.  */
6647                       }
6648                     /* not matched */
6649                     d = backup_d;
6650                     dend = backup_dend;
6651                     workp += length + 1;
6652                   }
6653               }
6654
6655             /* match with char_range?  */
6656 # ifdef _LIBC
6657             if (nrules != 0)
6658               {
6659                 uint32_t collseqval;
6660                 const char *collseq = (const char *)
6661                   _NL_CURRENT(LC_COLLATE, _NL_COLLATE_COLLSEQWC);
6662
6663                 collseqval = collseq_table_lookup (collseq, c);
6664
6665                 for (; workp < p - chars_length ;)
6666                   {
6667                     uint32_t start_val, end_val;
6668
6669                     /* We already compute the collation sequence value
6670                        of the characters (or collating symbols).  */
6671                     start_val = (uint32_t) *workp++; /* range_start */
6672                     end_val = (uint32_t) *workp++; /* range_end */
6673
6674                     if (start_val <= collseqval && collseqval <= end_val)
6675                       goto char_set_matched;
6676                   }
6677               }
6678             else
6679 # endif
6680               {
6681                 /* We set range_start_char at str_buf[0], range_end_char
6682                    at str_buf[4], and compared char at str_buf[2].  */
6683                 str_buf[1] = 0;
6684                 str_buf[2] = c;
6685                 str_buf[3] = 0;
6686                 str_buf[5] = 0;
6687                 for (; workp < p - chars_length ;)
6688                   {
6689                     wchar_t *range_start_char, *range_end_char;
6690
6691                     /* match if (range_start_char <= c <= range_end_char).  */
6692
6693                     /* If range_start(or end) < 0, we assume -range_start(end)
6694                        is the offset of the collating symbol which is specified
6695                        as the character of the range start(end).  */
6696
6697                     /* range_start */
6698                     if (*workp < 0)
6699                       range_start_char = charset_top - (*workp++);
6700                     else
6701                       {
6702                         str_buf[0] = *workp++;
6703                         range_start_char = str_buf;
6704                       }
6705
6706                     /* range_end */
6707                     if (*workp < 0)
6708                       range_end_char = charset_top - (*workp++);
6709                     else
6710                       {
6711                         str_buf[4] = *workp++;
6712                         range_end_char = str_buf + 4;
6713                       }
6714
6715                     if (wcscoll (range_start_char, str_buf+2) <= 0
6716                         && wcscoll (str_buf+2, range_end_char) <= 0)
6717                       goto char_set_matched;
6718                   }
6719               }
6720
6721             /* match with char?  */
6722             for (; workp < p ; workp++)
6723               if (c == *workp)
6724                 goto char_set_matched;
6725
6726             not = !not;
6727
6728           char_set_matched:
6729             if (not) goto fail;
6730 #else
6731             /* Cast to `unsigned' instead of `unsigned char' in case the
6732                bit list is a full 32 bytes long.  */
6733             if (c < (unsigned) (*p * BYTEWIDTH)
6734                 && p[1 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
6735               not = !not;
6736
6737             p += 1 + *p;
6738
6739             if (!not) goto fail;
6740 #undef WORK_BUFFER_SIZE
6741 #endif /* WCHAR */
6742             SET_REGS_MATCHED ();
6743             d++;
6744             NEXT;
6745           }
6746
6747
6748         /* The beginning of a group is represented by start_memory.
6749            The arguments are the register number in the next byte, and the
6750            number of groups inner to this one in the next.  The text
6751            matched within the group is recorded (in the internal
6752            registers data structure) under the register number.  */
6753         CASE (start_memory):
6754           DEBUG_PRINT3 ("EXECUTING start_memory %ld (%ld):\n",
6755                         (long int) *p, (long int) p[1]);
6756
6757           /* Find out if this group can match the empty string.  */
6758           p1 = p;               /* To send to group_match_null_string_p.  */
6759
6760           if (REG_MATCH_NULL_STRING_P (reg_info[*p]) == MATCH_NULL_UNSET_VALUE)
6761             REG_MATCH_NULL_STRING_P (reg_info[*p])
6762               = PREFIX(group_match_null_string_p) (&p1, pend, reg_info);
6763
6764           /* Save the position in the string where we were the last time
6765              we were at this open-group operator in case the group is
6766              operated upon by a repetition operator, e.g., with `(a*)*b'
6767              against `ab'; then we want to ignore where we are now in
6768              the string in case this attempt to match fails.  */
6769           old_regstart[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
6770                              ? REG_UNSET (regstart[*p]) ? d : regstart[*p]
6771                              : regstart[*p];
6772           DEBUG_PRINT2 ("  old_regstart: %d\n",
6773                          POINTER_TO_OFFSET (old_regstart[*p]));
6774
6775           regstart[*p] = d;
6776           DEBUG_PRINT2 ("  regstart: %d\n", POINTER_TO_OFFSET (regstart[*p]));
6777
6778           IS_ACTIVE (reg_info[*p]) = 1;
6779           MATCHED_SOMETHING (reg_info[*p]) = 0;
6780
6781           /* Clear this whenever we change the register activity status.  */
6782           set_regs_matched_done = 0;
6783
6784           /* This is the new highest active register.  */
6785           highest_active_reg = *p;
6786
6787           /* If nothing was active before, this is the new lowest active
6788              register.  */
6789           if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
6790             lowest_active_reg = *p;
6791
6792           /* Move past the register number and inner group count.  */
6793           p += 2;
6794           just_past_start_mem = p;
6795
6796           NEXT;
6797
6798
6799         /* The stop_memory opcode represents the end of a group.  Its
6800            arguments are the same as start_memory's: the register
6801            number, and the number of inner groups.  */
6802         CASE (stop_memory):
6803           DEBUG_PRINT3 ("EXECUTING stop_memory %ld (%ld):\n",
6804                         (long int) *p, (long int) p[1]);
6805
6806           /* We need to save the string position the last time we were at
6807              this close-group operator in case the group is operated
6808              upon by a repetition operator, e.g., with `((a*)*(b*)*)*'
6809              against `aba'; then we want to ignore where we are now in
6810              the string in case this attempt to match fails.  */
6811           old_regend[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
6812                            ? REG_UNSET (regend[*p]) ? d : regend[*p]
6813                            : regend[*p];
6814           DEBUG_PRINT2 ("      old_regend: %d\n",
6815                          POINTER_TO_OFFSET (old_regend[*p]));
6816
6817           regend[*p] = d;
6818           DEBUG_PRINT2 ("      regend: %d\n", POINTER_TO_OFFSET (regend[*p]));
6819
6820           /* This register isn't active anymore.  */
6821           IS_ACTIVE (reg_info[*p]) = 0;
6822
6823           /* Clear this whenever we change the register activity status.  */
6824           set_regs_matched_done = 0;
6825
6826           /* If this was the only register active, nothing is active
6827              anymore.  */
6828           if (lowest_active_reg == highest_active_reg)
6829             {
6830               lowest_active_reg = NO_LOWEST_ACTIVE_REG;
6831               highest_active_reg = NO_HIGHEST_ACTIVE_REG;
6832             }
6833           else
6834             { /* We must scan for the new highest active register, since
6835                  it isn't necessarily one less than now: consider
6836                  (a(b)c(d(e)f)g).  When group 3 ends, after the f), the
6837                  new highest active register is 1.  */
6838               UCHAR_T r = *p - 1;
6839               while (r > 0 && !IS_ACTIVE (reg_info[r]))
6840                 r--;
6841
6842               /* If we end up at register zero, that means that we saved
6843                  the registers as the result of an `on_failure_jump', not
6844                  a `start_memory', and we jumped to past the innermost
6845                  `stop_memory'.  For example, in ((.)*) we save
6846                  registers 1 and 2 as a result of the *, but when we pop
6847                  back to the second ), we are at the stop_memory 1.
6848                  Thus, nothing is active.  */
6849               if (r == 0)
6850                 {
6851                   lowest_active_reg = NO_LOWEST_ACTIVE_REG;
6852                   highest_active_reg = NO_HIGHEST_ACTIVE_REG;
6853                 }
6854               else
6855                 highest_active_reg = r;
6856             }
6857
6858           /* If just failed to match something this time around with a
6859              group that's operated on by a repetition operator, try to
6860              force exit from the ``loop'', and restore the register
6861              information for this group that we had before trying this
6862              last match.  */
6863           if ((!MATCHED_SOMETHING (reg_info[*p])
6864                || just_past_start_mem == p - 1)
6865               && (p + 2) < pend)
6866             {
6867               boolean is_a_jump_n = false;
6868
6869               p1 = p + 2;
6870               mcnt = 0;
6871               switch ((re_opcode_t) *p1++)
6872                 {
6873                   case jump_n:
6874                     is_a_jump_n = true;
6875                   case pop_failure_jump:
6876                   case maybe_pop_jump:
6877                   case jump:
6878                   case dummy_failure_jump:
6879                     EXTRACT_NUMBER_AND_INCR (mcnt, p1);
6880                     if (is_a_jump_n)
6881                       p1 += OFFSET_ADDRESS_SIZE;
6882                     break;
6883
6884                   default:
6885                     /* do nothing */ ;
6886                 }
6887               p1 += mcnt;
6888
6889               /* If the next operation is a jump backwards in the pattern
6890                  to an on_failure_jump right before the start_memory
6891                  corresponding to this stop_memory, exit from the loop
6892                  by forcing a failure after pushing on the stack the
6893                  on_failure_jump's jump in the pattern, and d.  */
6894               if (mcnt < 0 && (re_opcode_t) *p1 == on_failure_jump
6895                   && (re_opcode_t) p1[1+OFFSET_ADDRESS_SIZE] == start_memory
6896                   && p1[2+OFFSET_ADDRESS_SIZE] == *p)
6897                 {
6898                   /* If this group ever matched anything, then restore
6899                      what its registers were before trying this last
6900                      failed match, e.g., with `(a*)*b' against `ab' for
6901                      regstart[1], and, e.g., with `((a*)*(b*)*)*'
6902                      against `aba' for regend[3].
6903
6904                      Also restore the registers for inner groups for,
6905                      e.g., `((a*)(b*))*' against `aba' (register 3 would
6906                      otherwise get trashed).  */
6907
6908                   if (EVER_MATCHED_SOMETHING (reg_info[*p]))
6909                     {
6910                       unsigned r;
6911
6912                       EVER_MATCHED_SOMETHING (reg_info[*p]) = 0;
6913
6914                       /* Restore this and inner groups' (if any) registers.  */
6915                       for (r = *p; r < (unsigned) *p + (unsigned) *(p + 1);
6916                            r++)
6917                         {
6918                           regstart[r] = old_regstart[r];
6919
6920                           /* xx why this test?  */
6921                           if (old_regend[r] >= regstart[r])
6922                             regend[r] = old_regend[r];
6923                         }
6924                     }
6925                   p1++;
6926                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
6927                   PUSH_FAILURE_POINT (p1 + mcnt, d, -2);
6928
6929                   goto fail;
6930                 }
6931             }
6932
6933           /* Move past the register number and the inner group count.  */
6934           p += 2;
6935           NEXT;
6936
6937
6938         /* \<digit> has been turned into a `duplicate' command which is
6939            followed by the numeric value of <digit> as the register number.  */
6940         CASE (duplicate):
6941           {
6942             register const CHAR_T *d2, *dend2;
6943             int regno = *p++;   /* Get which register to match against.  */
6944             DEBUG_PRINT2 ("EXECUTING duplicate %d.\n", regno);
6945
6946             /* Can't back reference a group which we've never matched.  */
6947             if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
6948               goto fail;
6949
6950             /* Where in input to try to start matching.  */
6951             d2 = regstart[regno];
6952
6953             /* Where to stop matching; if both the place to start and
6954                the place to stop matching are in the same string, then
6955                set to the place to stop, otherwise, for now have to use
6956                the end of the first string.  */
6957
6958             dend2 = ((FIRST_STRING_P (regstart[regno])
6959                       == FIRST_STRING_P (regend[regno]))
6960                      ? regend[regno] : end_match_1);
6961             for (;;)
6962               {
6963                 /* If necessary, advance to next segment in register
6964                    contents.  */
6965                 while (d2 == dend2)
6966                   {
6967                     if (dend2 == end_match_2) break;
6968                     if (dend2 == regend[regno]) break;
6969
6970                     /* End of string1 => advance to string2. */
6971                     d2 = string2;
6972                     dend2 = regend[regno];
6973                   }
6974                 /* At end of register contents => success */
6975                 if (d2 == dend2) break;
6976
6977                 /* If necessary, advance to next segment in data.  */
6978                 PREFETCH ();
6979
6980                 /* How many characters left in this segment to match.  */
6981                 mcnt = dend - d;
6982
6983                 /* Want how many consecutive characters we can match in
6984                    one shot, so, if necessary, adjust the count.  */
6985                 if (mcnt > dend2 - d2)
6986                   mcnt = dend2 - d2;
6987
6988                 /* Compare that many; failure if mismatch, else move
6989                    past them.  */
6990                 if (translate
6991                     ? PREFIX(bcmp_translate) (d, d2, mcnt, translate)
6992                     : memcmp (d, d2, mcnt*sizeof(UCHAR_T)))
6993                   goto fail;
6994                 d += mcnt, d2 += mcnt;
6995
6996                 /* Do this because we've match some characters.  */
6997                 SET_REGS_MATCHED ();
6998               }
6999           }
7000           NEXT;
7001
7002
7003         /* begline matches the empty string at the beginning of the string
7004            (unless `not_bol' is set in `bufp'), and, if
7005            `newline_anchor' is set, after newlines.  */
7006         CASE (begline):
7007           DEBUG_PRINT1 ("EXECUTING begline.\n");
7008
7009           if (AT_STRINGS_BEG (d))
7010             {
7011               if (!bufp->not_bol)
7012                 {
7013                   NEXT;
7014                 }
7015             }
7016           else if (d[-1] == '\n' && bufp->newline_anchor)
7017             {
7018               NEXT;
7019             }
7020           /* In all other cases, we fail.  */
7021           goto fail;
7022
7023
7024         /* endline is the dual of begline.  */
7025         CASE (endline):
7026           DEBUG_PRINT1 ("EXECUTING endline.\n");
7027
7028           if (AT_STRINGS_END (d))
7029             {
7030               if (!bufp->not_eol)
7031                 {
7032                   NEXT;
7033                 }
7034             }
7035
7036           /* We have to ``prefetch'' the next character.  */
7037           else if ((d == end1 ? *string2 : *d) == '\n'
7038                    && bufp->newline_anchor)
7039             {
7040               NEXT;
7041             }
7042           goto fail;
7043
7044
7045         /* Match at the very beginning of the data.  */
7046         CASE (begbuf):
7047           DEBUG_PRINT1 ("EXECUTING begbuf.\n");
7048           if (AT_STRINGS_BEG (d))
7049             {
7050               NEXT;
7051             }
7052           goto fail;
7053
7054
7055         /* Match at the very end of the data.  */
7056         CASE (endbuf):
7057           DEBUG_PRINT1 ("EXECUTING endbuf.\n");
7058           if (AT_STRINGS_END (d))
7059             {
7060               NEXT;
7061             }
7062           goto fail;
7063
7064
7065         /* on_failure_keep_string_jump is used to optimize `.*\n'.  It
7066            pushes NULL as the value for the string on the stack.  Then
7067            `pop_failure_point' will keep the current value for the
7068            string, instead of restoring it.  To see why, consider
7069            matching `foo\nbar' against `.*\n'.  The .* matches the foo;
7070            then the . fails against the \n.  But the next thing we want
7071            to do is match the \n against the \n; if we restored the
7072            string value, we would be back at the foo.
7073
7074            Because this is used only in specific cases, we don't need to
7075            check all the things that `on_failure_jump' does, to make
7076            sure the right things get saved on the stack.  Hence we don't
7077            share its code.  The only reason to push anything on the
7078            stack at all is that otherwise we would have to change
7079            `anychar's code to do something besides goto fail in this
7080            case; that seems worse than this.  */
7081         CASE (on_failure_keep_string_jump):
7082           DEBUG_PRINT1 ("EXECUTING on_failure_keep_string_jump");
7083
7084           EXTRACT_NUMBER_AND_INCR (mcnt, p);
7085 #ifdef _LIBC
7086           DEBUG_PRINT3 (" %d (to %p):\n", mcnt, p + mcnt);
7087 #else
7088           DEBUG_PRINT3 (" %d (to 0x%x):\n", mcnt, p + mcnt);
7089 #endif
7090
7091           PUSH_FAILURE_POINT (p + mcnt, NULL, -2);
7092           NEXT;
7093
7094
7095         /* Uses of on_failure_jump:
7096
7097            Each alternative starts with an on_failure_jump that points
7098            to the beginning of the next alternative.  Each alternative
7099            except the last ends with a jump that in effect jumps past
7100            the rest of the alternatives.  (They really jump to the
7101            ending jump of the following alternative, because tensioning
7102            these jumps is a hassle.)
7103
7104            Repeats start with an on_failure_jump that points past both
7105            the repetition text and either the following jump or
7106            pop_failure_jump back to this on_failure_jump.  */
7107         CASE (on_failure_jump):
7108         on_failure:
7109           DEBUG_PRINT1 ("EXECUTING on_failure_jump");
7110
7111           EXTRACT_NUMBER_AND_INCR (mcnt, p);
7112 #ifdef _LIBC
7113           DEBUG_PRINT3 (" %d (to %p)", mcnt, p + mcnt);
7114 #else
7115           DEBUG_PRINT3 (" %d (to 0x%x)", mcnt, p + mcnt);
7116 #endif
7117
7118           /* If this on_failure_jump comes right before a group (i.e.,
7119              the original * applied to a group), save the information
7120              for that group and all inner ones, so that if we fail back
7121              to this point, the group's information will be correct.
7122              For example, in \(a*\)*\1, we need the preceding group,
7123              and in \(zz\(a*\)b*\)\2, we need the inner group.  */
7124
7125           /* We can't use `p' to check ahead because we push
7126              a failure point to `p + mcnt' after we do this.  */
7127           p1 = p;
7128
7129           /* We need to skip no_op's before we look for the
7130              start_memory in case this on_failure_jump is happening as
7131              the result of a completed succeed_n, as in \(a\)\{1,3\}b\1
7132              against aba.  */
7133           while (p1 < pend && (re_opcode_t) *p1 == no_op)
7134             p1++;
7135
7136           if (p1 < pend && (re_opcode_t) *p1 == start_memory)
7137             {
7138               /* We have a new highest active register now.  This will
7139                  get reset at the start_memory we are about to get to,
7140                  but we will have saved all the registers relevant to
7141                  this repetition op, as described above.  */
7142               highest_active_reg = *(p1 + 1) + *(p1 + 2);
7143               if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
7144                 lowest_active_reg = *(p1 + 1);
7145             }
7146
7147           DEBUG_PRINT1 (":\n");
7148           PUSH_FAILURE_POINT (p + mcnt, d, -2);
7149           NEXT;
7150
7151
7152         /* A smart repeat ends with `maybe_pop_jump'.
7153            We change it to either `pop_failure_jump' or `jump'.  */
7154         CASE (maybe_pop_jump):
7155           EXTRACT_NUMBER_AND_INCR (mcnt, p);
7156           DEBUG_PRINT2 ("EXECUTING maybe_pop_jump %d.\n", mcnt);
7157           {
7158             register UCHAR_T *p2 = p;
7159
7160             /* Compare the beginning of the repeat with what in the
7161                pattern follows its end. If we can establish that there
7162                is nothing that they would both match, i.e., that we
7163                would have to backtrack because of (as in, e.g., `a*a')
7164                then we can change to pop_failure_jump, because we'll
7165                never have to backtrack.
7166
7167                This is not true in the case of alternatives: in
7168                `(a|ab)*' we do need to backtrack to the `ab' alternative
7169                (e.g., if the string was `ab').  But instead of trying to
7170                detect that here, the alternative has put on a dummy
7171                failure point which is what we will end up popping.  */
7172
7173             /* Skip over open/close-group commands.
7174                If what follows this loop is a ...+ construct,
7175                look at what begins its body, since we will have to
7176                match at least one of that.  */
7177             while (1)
7178               {
7179                 if (p2 + 2 < pend
7180                     && ((re_opcode_t) *p2 == stop_memory
7181                         || (re_opcode_t) *p2 == start_memory))
7182                   p2 += 3;
7183                 else if (p2 + 2 + 2 * OFFSET_ADDRESS_SIZE < pend
7184                          && (re_opcode_t) *p2 == dummy_failure_jump)
7185                   p2 += 2 + 2 * OFFSET_ADDRESS_SIZE;
7186                 else
7187                   break;
7188               }
7189
7190             p1 = p + mcnt;
7191             /* p1[0] ... p1[2] are the `on_failure_jump' corresponding
7192                to the `maybe_finalize_jump' of this case.  Examine what
7193                follows.  */
7194
7195             /* If we're at the end of the pattern, we can change.  */
7196             if (p2 == pend)
7197               {
7198                 /* Consider what happens when matching ":\(.*\)"
7199                    against ":/".  I don't really understand this code
7200                    yet.  */
7201                 p[-(1+OFFSET_ADDRESS_SIZE)] = (UCHAR_T)
7202                   pop_failure_jump;
7203                 DEBUG_PRINT1
7204                   ("  End of pattern: change to `pop_failure_jump'.\n");
7205               }
7206
7207             else if ((re_opcode_t) *p2 == exactn
7208 #ifdef MBS_SUPPORT
7209                      || (re_opcode_t) *p2 == exactn_bin
7210 #endif
7211                      || (bufp->newline_anchor && (re_opcode_t) *p2 == endline))
7212               {
7213                 register UCHAR_T c
7214                   = *p2 == (UCHAR_T) endline ? '\n' : p2[2];
7215
7216                 if (((re_opcode_t) p1[1+OFFSET_ADDRESS_SIZE] == exactn
7217 #ifdef MBS_SUPPORT
7218                      || (re_opcode_t) p1[1+OFFSET_ADDRESS_SIZE] == exactn_bin
7219 #endif
7220                     ) && p1[3+OFFSET_ADDRESS_SIZE] != c)
7221                   {
7222                     p[-(1+OFFSET_ADDRESS_SIZE)] = (UCHAR_T)
7223                       pop_failure_jump;
7224 #ifdef WCHAR
7225                       DEBUG_PRINT3 ("  %C != %C => pop_failure_jump.\n",
7226                                     (wint_t) c,
7227                                     (wint_t) p1[3+OFFSET_ADDRESS_SIZE]);
7228 #else
7229                       DEBUG_PRINT3 ("  %c != %c => pop_failure_jump.\n",
7230                                     (char) c,
7231                                     (char) p1[3+OFFSET_ADDRESS_SIZE]);
7232 #endif
7233                   }
7234
7235 #ifndef WCHAR
7236                 else if ((re_opcode_t) p1[3] == charset
7237                          || (re_opcode_t) p1[3] == charset_not)
7238                   {
7239                     int not = (re_opcode_t) p1[3] == charset_not;
7240
7241                     if (c < (unsigned) (p1[4] * BYTEWIDTH)
7242                         && p1[5 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
7243                       not = !not;
7244
7245                     /* `not' is equal to 1 if c would match, which means
7246                         that we can't change to pop_failure_jump.  */
7247                     if (!not)
7248                       {
7249                         p[-3] = (unsigned char) pop_failure_jump;
7250                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
7251                       }
7252                   }
7253 #endif /* not WCHAR */
7254               }
7255 #ifndef WCHAR
7256             else if ((re_opcode_t) *p2 == charset)
7257               {
7258                 /* We win if the first character of the loop is not part
7259                    of the charset.  */
7260                 if ((re_opcode_t) p1[3] == exactn
7261                     && ! ((int) p2[1] * BYTEWIDTH > (int) p1[5]
7262                           && (p2[2 + p1[5] / BYTEWIDTH]
7263                               & (1 << (p1[5] % BYTEWIDTH)))))
7264                   {
7265                     p[-3] = (unsigned char) pop_failure_jump;
7266                     DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
7267                   }
7268
7269                 else if ((re_opcode_t) p1[3] == charset_not)
7270                   {
7271                     int idx;
7272                     /* We win if the charset_not inside the loop
7273                        lists every character listed in the charset after.  */
7274                     for (idx = 0; idx < (int) p2[1]; idx++)
7275                       if (! (p2[2 + idx] == 0
7276                              || (idx < (int) p1[4]
7277                                  && ((p2[2 + idx] & ~ p1[5 + idx]) == 0))))
7278                         break;
7279
7280                     if (idx == p2[1])
7281                       {
7282                         p[-3] = (unsigned char) pop_failure_jump;
7283                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
7284                       }
7285                   }
7286                 else if ((re_opcode_t) p1[3] == charset)
7287                   {
7288                     int idx;
7289                     /* We win if the charset inside the loop
7290                        has no overlap with the one after the loop.  */
7291                     for (idx = 0;
7292                          idx < (int) p2[1] && idx < (int) p1[4];
7293                          idx++)
7294                       if ((p2[2 + idx] & p1[5 + idx]) != 0)
7295                         break;
7296
7297                     if (idx == p2[1] || idx == p1[4])
7298                       {
7299                         p[-3] = (unsigned char) pop_failure_jump;
7300                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
7301                       }
7302                   }
7303               }
7304 #endif /* not WCHAR */
7305           }
7306           p -= OFFSET_ADDRESS_SIZE;     /* Point at relative address again.  */
7307           if ((re_opcode_t) p[-1] != pop_failure_jump)
7308             {
7309               p[-1] = (UCHAR_T) jump;
7310               DEBUG_PRINT1 ("  Match => jump.\n");
7311               goto unconditional_jump;
7312             }
7313         /* Note fall through.  */
7314
7315
7316         /* The end of a simple repeat has a pop_failure_jump back to
7317            its matching on_failure_jump, where the latter will push a
7318            failure point.  The pop_failure_jump takes off failure
7319            points put on by this pop_failure_jump's matching
7320            on_failure_jump; we got through the pattern to here from the
7321            matching on_failure_jump, so didn't fail.  */
7322         CASE (pop_failure_jump):
7323           {
7324             /* We need to pass separate storage for the lowest and
7325                highest registers, even though we don't care about the
7326                actual values.  Otherwise, we will restore only one
7327                register from the stack, since lowest will == highest in
7328                `pop_failure_point'.  */
7329             active_reg_t dummy_low_reg, dummy_high_reg;
7330             UCHAR_T *pdummy = NULL;
7331             const CHAR_T *sdummy = NULL;
7332
7333             DEBUG_PRINT1 ("EXECUTING pop_failure_jump.\n");
7334             POP_FAILURE_POINT (sdummy, pdummy,
7335                                dummy_low_reg, dummy_high_reg,
7336                                reg_dummy, reg_dummy, reg_info_dummy);
7337           }
7338           /* Note fall through.  */
7339
7340         unconditional_jump:
7341 #ifdef _LIBC
7342           DEBUG_PRINT2 ("\n%p: ", p);
7343 #else
7344           DEBUG_PRINT2 ("\n0x%x: ", p);
7345 #endif
7346           /* Note fall through.  */
7347
7348         /* Unconditionally jump (without popping any failure points).  */
7349         CASE (jump):
7350           EXTRACT_NUMBER_AND_INCR (mcnt, p);    /* Get the amount to jump.  */
7351           DEBUG_PRINT2 ("EXECUTING jump %d ", mcnt);
7352           p += mcnt;                            /* Do the jump.  */
7353 #ifdef _LIBC
7354           DEBUG_PRINT2 ("(to %p).\n", p);
7355 #else
7356           DEBUG_PRINT2 ("(to 0x%x).\n", p);
7357 #endif
7358           NEXT;
7359
7360
7361         /* We need this opcode so we can detect where alternatives end
7362            in `group_match_null_string_p' et al.  */
7363         CASE (jump_past_alt):
7364           DEBUG_PRINT1 ("EXECUTING jump_past_alt.\n");
7365           goto unconditional_jump;
7366
7367
7368         /* Normally, the on_failure_jump pushes a failure point, which
7369            then gets popped at pop_failure_jump.  We will end up at
7370            pop_failure_jump, also, and with a pattern of, say, `a+', we
7371            are skipping over the on_failure_jump, so we have to push
7372            something meaningless for pop_failure_jump to pop.  */
7373         CASE (dummy_failure_jump):
7374           DEBUG_PRINT1 ("EXECUTING dummy_failure_jump.\n");
7375           /* It doesn't matter what we push for the string here.  What
7376              the code at `fail' tests is the value for the pattern.  */
7377           PUSH_FAILURE_POINT (NULL, NULL, -2);
7378           goto unconditional_jump;
7379
7380
7381         /* At the end of an alternative, we need to push a dummy failure
7382            point in case we are followed by a `pop_failure_jump', because
7383            we don't want the failure point for the alternative to be
7384            popped.  For example, matching `(a|ab)*' against `aab'
7385            requires that we match the `ab' alternative.  */
7386         CASE (push_dummy_failure):
7387           DEBUG_PRINT1 ("EXECUTING push_dummy_failure.\n");
7388           /* See comments just above at `dummy_failure_jump' about the
7389              two zeroes.  */
7390           PUSH_FAILURE_POINT (NULL, NULL, -2);
7391           NEXT;
7392
7393         /* Have to succeed matching what follows at least n times.
7394            After that, handle like `on_failure_jump'.  */
7395         CASE (succeed_n):
7396           EXTRACT_NUMBER (mcnt, p + OFFSET_ADDRESS_SIZE);
7397           DEBUG_PRINT2 ("EXECUTING succeed_n %d.\n", mcnt);
7398
7399           assert (mcnt >= 0);
7400           /* Originally, this is how many times we HAVE to succeed.  */
7401           if (mcnt > 0)
7402             {
7403                mcnt--;
7404                p += OFFSET_ADDRESS_SIZE;
7405                STORE_NUMBER_AND_INCR (p, mcnt);
7406 #ifdef _LIBC
7407                DEBUG_PRINT3 ("  Setting %p to %d.\n", p - OFFSET_ADDRESS_SIZE
7408                              , mcnt);
7409 #else
7410                DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p - OFFSET_ADDRESS_SIZE
7411                              , mcnt);
7412 #endif
7413             }
7414           else if (mcnt == 0)
7415             {
7416 #ifdef _LIBC
7417               DEBUG_PRINT2 ("  Setting two bytes from %p to no_op.\n",
7418                             p + OFFSET_ADDRESS_SIZE);
7419 #else
7420               DEBUG_PRINT2 ("  Setting two bytes from 0x%x to no_op.\n",
7421                             p + OFFSET_ADDRESS_SIZE);
7422 #endif /* _LIBC */
7423
7424 #ifdef WCHAR
7425               p[1] = (UCHAR_T) no_op;
7426 #else
7427               p[2] = (UCHAR_T) no_op;
7428               p[3] = (UCHAR_T) no_op;
7429 #endif /* WCHAR */
7430               goto on_failure;
7431             }
7432           NEXT;
7433
7434         CASE (jump_n):
7435           EXTRACT_NUMBER (mcnt, p + OFFSET_ADDRESS_SIZE);
7436           DEBUG_PRINT2 ("EXECUTING jump_n %d.\n", mcnt);
7437
7438           /* Originally, this is how many times we CAN jump.  */
7439           if (mcnt)
7440             {
7441                mcnt--;
7442                STORE_NUMBER (p + OFFSET_ADDRESS_SIZE, mcnt);
7443
7444 #ifdef _LIBC
7445                DEBUG_PRINT3 ("  Setting %p to %d.\n", p + OFFSET_ADDRESS_SIZE,
7446                              mcnt);
7447 #else
7448                DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p + OFFSET_ADDRESS_SIZE,
7449                              mcnt);
7450 #endif /* _LIBC */
7451                goto unconditional_jump;
7452             }
7453           /* If don't have to jump any more, skip over the rest of command.  */
7454           else
7455             p += 2 * OFFSET_ADDRESS_SIZE;
7456           NEXT;
7457
7458         CASE (set_number_at):
7459           {
7460             DEBUG_PRINT1 ("EXECUTING set_number_at.\n");
7461
7462             EXTRACT_NUMBER_AND_INCR (mcnt, p);
7463             p1 = p + mcnt;
7464             EXTRACT_NUMBER_AND_INCR (mcnt, p);
7465 #ifdef _LIBC
7466             DEBUG_PRINT3 ("  Setting %p to %d.\n", p1, mcnt);
7467 #else
7468             DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p1, mcnt);
7469 #endif
7470             STORE_NUMBER (p1, mcnt);
7471             NEXT;
7472           }
7473
7474 #if 0
7475         /* The DEC Alpha C compiler 3.x generates incorrect code for the
7476            test  WORDCHAR_P (d - 1) != WORDCHAR_P (d)  in the expansion of
7477            AT_WORD_BOUNDARY, so this code is disabled.  Expanding the
7478            macro and introducing temporary variables works around the bug.  */
7479
7480         CASE (wordbound):
7481           DEBUG_PRINT1 ("EXECUTING wordbound.\n");
7482           if (AT_WORD_BOUNDARY (d))
7483             {
7484               NEXT;
7485             }
7486           goto fail;
7487
7488         CASE (notwordbound):
7489           DEBUG_PRINT1 ("EXECUTING notwordbound.\n");
7490           if (AT_WORD_BOUNDARY (d))
7491             goto fail;
7492           NEXT;
7493 #else
7494         CASE (wordbound):
7495         {
7496           boolean prevchar, thischar;
7497
7498           DEBUG_PRINT1 ("EXECUTING wordbound.\n");
7499           if (AT_STRINGS_BEG (d) || AT_STRINGS_END (d))
7500             {
7501               NEXT;
7502             }
7503
7504           prevchar = WORDCHAR_P (d - 1);
7505           thischar = WORDCHAR_P (d);
7506           if (prevchar != thischar)
7507             {
7508               NEXT;
7509             }
7510           goto fail;
7511         }
7512
7513       CASE (notwordbound):
7514         {
7515           boolean prevchar, thischar;
7516
7517           DEBUG_PRINT1 ("EXECUTING notwordbound.\n");
7518           if (AT_STRINGS_BEG (d) || AT_STRINGS_END (d))
7519             goto fail;
7520
7521           prevchar = WORDCHAR_P (d - 1);
7522           thischar = WORDCHAR_P (d);
7523           if (prevchar != thischar)
7524             goto fail;
7525           NEXT;
7526         }
7527 #endif
7528
7529         CASE (wordbeg):
7530           DEBUG_PRINT1 ("EXECUTING wordbeg.\n");
7531           if (!AT_STRINGS_END (d) && WORDCHAR_P (d)
7532               && (AT_STRINGS_BEG (d) || !WORDCHAR_P (d - 1)))
7533             {
7534               NEXT;
7535             }
7536           goto fail;
7537
7538         CASE (wordend):
7539           DEBUG_PRINT1 ("EXECUTING wordend.\n");
7540           if (!AT_STRINGS_BEG (d) && WORDCHAR_P (d - 1)
7541               && (AT_STRINGS_END (d) || !WORDCHAR_P (d)))
7542             {
7543               NEXT;
7544             }
7545           goto fail;
7546
7547 #ifdef emacs
7548         CASE (before_dot):
7549           DEBUG_PRINT1 ("EXECUTING before_dot.\n");
7550           if (PTR_CHAR_POS ((unsigned char *) d) >= point)
7551             goto fail;
7552           NEXT;
7553
7554         CASE (at_dot):
7555           DEBUG_PRINT1 ("EXECUTING at_dot.\n");
7556           if (PTR_CHAR_POS ((unsigned char *) d) != point)
7557             goto fail;
7558           NEXT;
7559
7560         CASE (after_dot):
7561           DEBUG_PRINT1 ("EXECUTING after_dot.\n");
7562           if (PTR_CHAR_POS ((unsigned char *) d) <= point)
7563             goto fail;
7564           NEXT;
7565
7566         CASE (syntaxspec):
7567           DEBUG_PRINT2 ("EXECUTING syntaxspec %d.\n", mcnt);
7568           mcnt = *p++;
7569           goto matchsyntax;
7570
7571         CASE (wordchar):
7572           DEBUG_PRINT1 ("EXECUTING Emacs wordchar.\n");
7573           mcnt = (int) Sword;
7574         matchsyntax:
7575           PREFETCH ();
7576           /* Can't use *d++ here; SYNTAX may be an unsafe macro.  */
7577           d++;
7578           if (SYNTAX (d[-1]) != (enum syntaxcode) mcnt)
7579             goto fail;
7580           SET_REGS_MATCHED ();
7581           NEXT;
7582
7583         CASE (notsyntaxspec):
7584           DEBUG_PRINT2 ("EXECUTING notsyntaxspec %d.\n", mcnt);
7585           mcnt = *p++;
7586           goto matchnotsyntax;
7587
7588         CASE (notwordchar):
7589           DEBUG_PRINT1 ("EXECUTING Emacs notwordchar.\n");
7590           mcnt = (int) Sword;
7591         matchnotsyntax:
7592           PREFETCH ();
7593           /* Can't use *d++ here; SYNTAX may be an unsafe macro.  */
7594           d++;
7595           if (SYNTAX (d[-1]) == (enum syntaxcode) mcnt)
7596             goto fail;
7597           SET_REGS_MATCHED ();
7598           NEXT;
7599
7600 #else /* not emacs */
7601         CASE (wordchar):
7602           DEBUG_PRINT1 ("EXECUTING non-Emacs wordchar.\n");
7603           PREFETCH ();
7604           if (!WORDCHAR_P (d))
7605             goto fail;
7606           SET_REGS_MATCHED ();
7607           d++;
7608           NEXT;
7609
7610         CASE (notwordchar):
7611           DEBUG_PRINT1 ("EXECUTING non-Emacs notwordchar.\n");
7612           PREFETCH ();
7613           if (WORDCHAR_P (d))
7614             goto fail;
7615           SET_REGS_MATCHED ();
7616           d++;
7617           NEXT;
7618 #endif /* not emacs */
7619
7620 #ifndef __GNUC__
7621         default:
7622           abort ();
7623         }
7624       continue;  /* Successfully executed one pattern command; keep going.  */
7625 #endif
7626
7627
7628     /* We goto here if a matching operation fails. */
7629     fail:
7630       if (!FAIL_STACK_EMPTY ())
7631         { /* A restart point is known.  Restore to that state.  */
7632           DEBUG_PRINT1 ("\nFAIL:\n");
7633           POP_FAILURE_POINT (d, p,
7634                              lowest_active_reg, highest_active_reg,
7635                              regstart, regend, reg_info);
7636
7637           /* If this failure point is a dummy, try the next one.  */
7638           if (!p)
7639             goto fail;
7640
7641           /* If we failed to the end of the pattern, don't examine *p.  */
7642           assert (p <= pend);
7643           if (p < pend)
7644             {
7645               boolean is_a_jump_n = false;
7646
7647               /* If failed to a backwards jump that's part of a repetition
7648                  loop, need to pop this failure point and use the next one.  */
7649               switch ((re_opcode_t) *p)
7650                 {
7651                 case jump_n:
7652                   is_a_jump_n = true;
7653                 case maybe_pop_jump:
7654                 case pop_failure_jump:
7655                 case jump:
7656                   p1 = p + 1;
7657                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7658                   p1 += mcnt;
7659
7660                   if ((is_a_jump_n && (re_opcode_t) *p1 == succeed_n)
7661                       || (!is_a_jump_n
7662                           && (re_opcode_t) *p1 == on_failure_jump))
7663                     goto fail;
7664                   break;
7665                 default:
7666                   /* do nothing */ ;
7667                 }
7668             }
7669
7670           if (d >= string1 && d <= end1)
7671             dend = end_match_1;
7672         }
7673       else
7674         break;   /* Matching at this starting point really fails.  */
7675     } /* for (;;) */
7676
7677   if (best_regs_set)
7678     goto restore_best_regs;
7679
7680   FREE_VARIABLES ();
7681
7682   return -1;                            /* Failure to match.  */
7683 } /* re_match_2 */
7684 \f
7685 /* Subroutine definitions for re_match_2.  */
7686
7687
7688 /* We are passed P pointing to a register number after a start_memory.
7689
7690    Return true if the pattern up to the corresponding stop_memory can
7691    match the empty string, and false otherwise.
7692
7693    If we find the matching stop_memory, sets P to point to one past its number.
7694    Otherwise, sets P to an undefined byte less than or equal to END.
7695
7696    We don't handle duplicates properly (yet).  */
7697
7698 static boolean
7699 PREFIX(group_match_null_string_p) (p, end, reg_info)
7700     UCHAR_T **p, *end;
7701     PREFIX(register_info_type) *reg_info;
7702 {
7703   int mcnt;
7704   /* Point to after the args to the start_memory.  */
7705   UCHAR_T *p1 = *p + 2;
7706
7707   while (p1 < end)
7708     {
7709       /* Skip over opcodes that can match nothing, and return true or
7710          false, as appropriate, when we get to one that can't, or to the
7711          matching stop_memory.  */
7712
7713       switch ((re_opcode_t) *p1)
7714         {
7715         /* Could be either a loop or a series of alternatives.  */
7716         case on_failure_jump:
7717           p1++;
7718           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7719
7720           /* If the next operation is not a jump backwards in the
7721              pattern.  */
7722
7723           if (mcnt >= 0)
7724             {
7725               /* Go through the on_failure_jumps of the alternatives,
7726                  seeing if any of the alternatives cannot match nothing.
7727                  The last alternative starts with only a jump,
7728                  whereas the rest start with on_failure_jump and end
7729                  with a jump, e.g., here is the pattern for `a|b|c':
7730
7731                  /on_failure_jump/0/6/exactn/1/a/jump_past_alt/0/6
7732                  /on_failure_jump/0/6/exactn/1/b/jump_past_alt/0/3
7733                  /exactn/1/c
7734
7735                  So, we have to first go through the first (n-1)
7736                  alternatives and then deal with the last one separately.  */
7737
7738
7739               /* Deal with the first (n-1) alternatives, which start
7740                  with an on_failure_jump (see above) that jumps to right
7741                  past a jump_past_alt.  */
7742
7743               while ((re_opcode_t) p1[mcnt-(1+OFFSET_ADDRESS_SIZE)] ==
7744                      jump_past_alt)
7745                 {
7746                   /* `mcnt' holds how many bytes long the alternative
7747                      is, including the ending `jump_past_alt' and
7748                      its number.  */
7749
7750                   if (!PREFIX(alt_match_null_string_p) (p1, p1 + mcnt -
7751                                                 (1 + OFFSET_ADDRESS_SIZE),
7752                                                 reg_info))
7753                     return false;
7754
7755                   /* Move to right after this alternative, including the
7756                      jump_past_alt.  */
7757                   p1 += mcnt;
7758
7759                   /* Break if it's the beginning of an n-th alternative
7760                      that doesn't begin with an on_failure_jump.  */
7761                   if ((re_opcode_t) *p1 != on_failure_jump)
7762                     break;
7763
7764                   /* Still have to check that it's not an n-th
7765                      alternative that starts with an on_failure_jump.  */
7766                   p1++;
7767                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7768                   if ((re_opcode_t) p1[mcnt-(1+OFFSET_ADDRESS_SIZE)] !=
7769                       jump_past_alt)
7770                     {
7771                       /* Get to the beginning of the n-th alternative.  */
7772                       p1 -= 1 + OFFSET_ADDRESS_SIZE;
7773                       break;
7774                     }
7775                 }
7776
7777               /* Deal with the last alternative: go back and get number
7778                  of the `jump_past_alt' just before it.  `mcnt' contains
7779                  the length of the alternative.  */
7780               EXTRACT_NUMBER (mcnt, p1 - OFFSET_ADDRESS_SIZE);
7781
7782               if (!PREFIX(alt_match_null_string_p) (p1, p1 + mcnt, reg_info))
7783                 return false;
7784
7785               p1 += mcnt;       /* Get past the n-th alternative.  */
7786             } /* if mcnt > 0 */
7787           break;
7788
7789
7790         case stop_memory:
7791           assert (p1[1] == **p);
7792           *p = p1 + 2;
7793           return true;
7794
7795
7796         default:
7797           if (!PREFIX(common_op_match_null_string_p) (&p1, end, reg_info))
7798             return false;
7799         }
7800     } /* while p1 < end */
7801
7802   return false;
7803 } /* group_match_null_string_p */
7804
7805
7806 /* Similar to group_match_null_string_p, but doesn't deal with alternatives:
7807    It expects P to be the first byte of a single alternative and END one
7808    byte past the last. The alternative can contain groups.  */
7809
7810 static boolean
7811 PREFIX(alt_match_null_string_p) (p, end, reg_info)
7812     UCHAR_T *p, *end;
7813     PREFIX(register_info_type) *reg_info;
7814 {
7815   int mcnt;
7816   UCHAR_T *p1 = p;
7817
7818   while (p1 < end)
7819     {
7820       /* Skip over opcodes that can match nothing, and break when we get
7821          to one that can't.  */
7822
7823       switch ((re_opcode_t) *p1)
7824         {
7825         /* It's a loop.  */
7826         case on_failure_jump:
7827           p1++;
7828           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7829           p1 += mcnt;
7830           break;
7831
7832         default:
7833           if (!PREFIX(common_op_match_null_string_p) (&p1, end, reg_info))
7834             return false;
7835         }
7836     }  /* while p1 < end */
7837
7838   return true;
7839 } /* alt_match_null_string_p */
7840
7841
7842 /* Deals with the ops common to group_match_null_string_p and
7843    alt_match_null_string_p.
7844
7845    Sets P to one after the op and its arguments, if any.  */
7846
7847 static boolean
7848 PREFIX(common_op_match_null_string_p) (p, end, reg_info)
7849     UCHAR_T **p, *end;
7850     PREFIX(register_info_type) *reg_info;
7851 {
7852   int mcnt;
7853   boolean ret;
7854   int reg_no;
7855   UCHAR_T *p1 = *p;
7856
7857   switch ((re_opcode_t) *p1++)
7858     {
7859     case no_op:
7860     case begline:
7861     case endline:
7862     case begbuf:
7863     case endbuf:
7864     case wordbeg:
7865     case wordend:
7866     case wordbound:
7867     case notwordbound:
7868 #ifdef emacs
7869     case before_dot:
7870     case at_dot:
7871     case after_dot:
7872 #endif
7873       break;
7874
7875     case start_memory:
7876       reg_no = *p1;
7877       assert (reg_no > 0 && reg_no <= MAX_REGNUM);
7878       ret = PREFIX(group_match_null_string_p) (&p1, end, reg_info);
7879
7880       /* Have to set this here in case we're checking a group which
7881          contains a group and a back reference to it.  */
7882
7883       if (REG_MATCH_NULL_STRING_P (reg_info[reg_no]) == MATCH_NULL_UNSET_VALUE)
7884         REG_MATCH_NULL_STRING_P (reg_info[reg_no]) = ret;
7885
7886       if (!ret)
7887         return false;
7888       break;
7889
7890     /* If this is an optimized succeed_n for zero times, make the jump.  */
7891     case jump:
7892       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7893       if (mcnt >= 0)
7894         p1 += mcnt;
7895       else
7896         return false;
7897       break;
7898
7899     case succeed_n:
7900       /* Get to the number of times to succeed.  */
7901       p1 += OFFSET_ADDRESS_SIZE;
7902       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7903
7904       if (mcnt == 0)
7905         {
7906           p1 -= 2 * OFFSET_ADDRESS_SIZE;
7907           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7908           p1 += mcnt;
7909         }
7910       else
7911         return false;
7912       break;
7913
7914     case duplicate:
7915       if (!REG_MATCH_NULL_STRING_P (reg_info[*p1]))
7916         return false;
7917       break;
7918
7919     case set_number_at:
7920       p1 += 2 * OFFSET_ADDRESS_SIZE;
7921
7922     default:
7923       /* All other opcodes mean we cannot match the empty string.  */
7924       return false;
7925   }
7926
7927   *p = p1;
7928   return true;
7929 } /* common_op_match_null_string_p */
7930
7931
7932 /* Return zero if TRANSLATE[S1] and TRANSLATE[S2] are identical for LEN
7933    bytes; nonzero otherwise.  */
7934
7935 static int
7936 PREFIX(bcmp_translate) (s1, s2, len, translate)
7937      const CHAR_T *s1, *s2;
7938      register int len;
7939      RE_TRANSLATE_TYPE translate;
7940 {
7941   register const UCHAR_T *p1 = (const UCHAR_T *) s1;
7942   register const UCHAR_T *p2 = (const UCHAR_T *) s2;
7943   while (len)
7944     {
7945 #ifdef WCHAR
7946       if (((*p1<=0xff)?translate[*p1++]:*p1++)
7947           != ((*p2<=0xff)?translate[*p2++]:*p2++))
7948         return 1;
7949 #else /* BYTE */
7950       if (translate[*p1++] != translate[*p2++]) return 1;
7951 #endif /* WCHAR */
7952       len--;
7953     }
7954   return 0;
7955 }
7956 \f
7957
7958 #else /* not INSIDE_RECURSION */
7959
7960 /* Entry points for GNU code.  */
7961
7962 /* re_compile_pattern is the GNU regular expression compiler: it
7963    compiles PATTERN (of length SIZE) and puts the result in BUFP.
7964    Returns 0 if the pattern was valid, otherwise an error string.
7965
7966    Assumes the `allocated' (and perhaps `buffer') and `translate' fields
7967    are set in BUFP on entry.
7968
7969    We call regex_compile to do the actual compilation.  */
7970
7971 const char *
7972 re_compile_pattern (pattern, length, bufp)
7973      const char *pattern;
7974      size_t length;
7975      struct re_pattern_buffer *bufp;
7976 {
7977   reg_errcode_t ret;
7978
7979   /* GNU code is written to assume at least RE_NREGS registers will be set
7980      (and at least one extra will be -1).  */
7981   bufp->regs_allocated = REGS_UNALLOCATED;
7982
7983   /* And GNU code determines whether or not to get register information
7984      by passing null for the REGS argument to re_match, etc., not by
7985      setting no_sub.  */
7986   bufp->no_sub = 0;
7987
7988   /* Match anchors at newline.  */
7989   bufp->newline_anchor = 1;
7990
7991 # ifdef MBS_SUPPORT
7992   if (MB_CUR_MAX != 1)
7993     ret = wcs_regex_compile (pattern, length, re_syntax_options, bufp);
7994   else
7995 # endif
7996     ret = byte_regex_compile (pattern, length, re_syntax_options, bufp);
7997
7998   if (!ret)
7999     return NULL;
8000   return gettext (re_error_msgid + re_error_msgid_idx[(int) ret]);
8001 }
8002 #ifdef _LIBC
8003 weak_alias (__re_compile_pattern, re_compile_pattern)
8004 #endif
8005 \f
8006 /* Entry points compatible with 4.2 BSD regex library.  We don't define
8007    them unless specifically requested.  */
8008
8009 #if defined _REGEX_RE_COMP || defined _LIBC
8010
8011 /* BSD has one and only one pattern buffer.  */
8012 static struct re_pattern_buffer re_comp_buf;
8013
8014 char *
8015 #ifdef _LIBC
8016 /* Make these definitions weak in libc, so POSIX programs can redefine
8017    these names if they don't use our functions, and still use
8018    regcomp/regexec below without link errors.  */
8019 weak_function
8020 #endif
8021 re_comp (s)
8022     const char *s;
8023 {
8024   reg_errcode_t ret;
8025
8026   if (!s)
8027     {
8028       if (!re_comp_buf.buffer)
8029         return gettext ("No previous regular expression");
8030       return 0;
8031     }
8032
8033   if (!re_comp_buf.buffer)
8034     {
8035       re_comp_buf.buffer = (unsigned char *) malloc (200);
8036       if (re_comp_buf.buffer == NULL)
8037         return (char *) gettext (re_error_msgid
8038                                  + re_error_msgid_idx[(int) REG_ESPACE]);
8039       re_comp_buf.allocated = 200;
8040
8041       re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH);
8042       if (re_comp_buf.fastmap == NULL)
8043         return (char *) gettext (re_error_msgid
8044                                  + re_error_msgid_idx[(int) REG_ESPACE]);
8045     }
8046
8047   /* Since `re_exec' always passes NULL for the `regs' argument, we
8048      don't need to initialize the pattern buffer fields which affect it.  */
8049
8050   /* Match anchors at newlines.  */
8051   re_comp_buf.newline_anchor = 1;
8052
8053 # ifdef MBS_SUPPORT
8054   if (MB_CUR_MAX != 1)
8055     ret = wcs_regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
8056   else
8057 # endif
8058     ret = byte_regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
8059
8060   if (!ret)
8061     return NULL;
8062
8063   /* Yes, we're discarding `const' here if !HAVE_LIBINTL.  */
8064   return (char *) gettext (re_error_msgid + re_error_msgid_idx[(int) ret]);
8065 }
8066
8067
8068 int
8069 #ifdef _LIBC
8070 weak_function
8071 #endif
8072 re_exec (s)
8073     const char *s;
8074 {
8075   const int len = strlen (s);
8076   return
8077     0 <= re_search (&re_comp_buf, s, len, 0, len, (struct re_registers *) 0);
8078 }
8079
8080 #endif /* _REGEX_RE_COMP */
8081 \f
8082 /* POSIX.2 functions.  Don't define these for Emacs.  */
8083
8084 #ifndef emacs
8085
8086 /* regcomp takes a regular expression as a string and compiles it.
8087
8088    PREG is a regex_t *.  We do not expect any fields to be initialized,
8089    since POSIX says we shouldn't.  Thus, we set
8090
8091      `buffer' to the compiled pattern;
8092      `used' to the length of the compiled pattern;
8093      `syntax' to RE_SYNTAX_POSIX_EXTENDED if the
8094        REG_EXTENDED bit in CFLAGS is set; otherwise, to
8095        RE_SYNTAX_POSIX_BASIC;
8096      `newline_anchor' to REG_NEWLINE being set in CFLAGS;
8097      `fastmap' to an allocated space for the fastmap;
8098      `fastmap_accurate' to zero;
8099      `re_nsub' to the number of subexpressions in PATTERN.
8100
8101    PATTERN is the address of the pattern string.
8102
8103    CFLAGS is a series of bits which affect compilation.
8104
8105      If REG_EXTENDED is set, we use POSIX extended syntax; otherwise, we
8106      use POSIX basic syntax.
8107
8108      If REG_NEWLINE is set, then . and [^...] don't match newline.
8109      Also, regexec will try a match beginning after every newline.
8110
8111      If REG_ICASE is set, then we considers upper- and lowercase
8112      versions of letters to be equivalent when matching.
8113
8114      If REG_NOSUB is set, then when PREG is passed to regexec, that
8115      routine will report only success or failure, and nothing about the
8116      registers.
8117
8118    It returns 0 if it succeeds, nonzero if it doesn't.  (See regex.h for
8119    the return codes and their meanings.)  */
8120
8121 int
8122 regcomp (preg, pattern, cflags)
8123     regex_t *preg;
8124     const char *pattern;
8125     int cflags;
8126 {
8127   reg_errcode_t ret;
8128   reg_syntax_t syntax
8129     = (cflags & REG_EXTENDED) ?
8130       RE_SYNTAX_POSIX_EXTENDED : RE_SYNTAX_POSIX_BASIC;
8131
8132   /* regex_compile will allocate the space for the compiled pattern.  */
8133   preg->buffer = 0;
8134   preg->allocated = 0;
8135   preg->used = 0;
8136
8137   /* Try to allocate space for the fastmap.  */
8138   preg->fastmap = (char *) malloc (1 << BYTEWIDTH);
8139
8140   if (cflags & REG_ICASE)
8141     {
8142       unsigned i;
8143
8144       preg->translate
8145         = (RE_TRANSLATE_TYPE) malloc (CHAR_SET_SIZE
8146                                       * sizeof (*(RE_TRANSLATE_TYPE)0));
8147       if (preg->translate == NULL)
8148         return (int) REG_ESPACE;
8149
8150       /* Map uppercase characters to corresponding lowercase ones.  */
8151       for (i = 0; i < CHAR_SET_SIZE; i++)
8152         preg->translate[i] = ISUPPER (i) ? TOLOWER (i) : i;
8153     }
8154   else
8155     preg->translate = NULL;
8156
8157   /* If REG_NEWLINE is set, newlines are treated differently.  */
8158   if (cflags & REG_NEWLINE)
8159     { /* REG_NEWLINE implies neither . nor [^...] match newline.  */
8160       syntax &= ~RE_DOT_NEWLINE;
8161       syntax |= RE_HAT_LISTS_NOT_NEWLINE;
8162       /* It also changes the matching behavior.  */
8163       preg->newline_anchor = 1;
8164     }
8165   else
8166     preg->newline_anchor = 0;
8167
8168   preg->no_sub = !!(cflags & REG_NOSUB);
8169
8170   /* POSIX says a null character in the pattern terminates it, so we
8171      can use strlen here in compiling the pattern.  */
8172 # ifdef MBS_SUPPORT
8173   if (MB_CUR_MAX != 1)
8174     ret = wcs_regex_compile (pattern, strlen (pattern), syntax, preg);
8175   else
8176 # endif
8177     ret = byte_regex_compile (pattern, strlen (pattern), syntax, preg);
8178
8179   /* POSIX doesn't distinguish between an unmatched open-group and an
8180      unmatched close-group: both are REG_EPAREN.  */
8181   if (ret == REG_ERPAREN) ret = REG_EPAREN;
8182
8183   if (ret == REG_NOERROR && preg->fastmap)
8184     {
8185       /* Compute the fastmap now, since regexec cannot modify the pattern
8186          buffer.  */
8187       if (re_compile_fastmap (preg) == -2)
8188         {
8189           /* Some error occurred while computing the fastmap, just forget
8190              about it.  */
8191           free (preg->fastmap);
8192           preg->fastmap = NULL;
8193         }
8194     }
8195
8196   return (int) ret;
8197 }
8198 #ifdef _LIBC
8199 weak_alias (__regcomp, regcomp)
8200 #endif
8201
8202
8203 /* regexec searches for a given pattern, specified by PREG, in the
8204    string STRING.
8205
8206    If NMATCH is zero or REG_NOSUB was set in the cflags argument to
8207    `regcomp', we ignore PMATCH.  Otherwise, we assume PMATCH has at
8208    least NMATCH elements, and we set them to the offsets of the
8209    corresponding matched substrings.
8210
8211    EFLAGS specifies `execution flags' which affect matching: if
8212    REG_NOTBOL is set, then ^ does not match at the beginning of the
8213    string; if REG_NOTEOL is set, then $ does not match at the end.
8214
8215    We return 0 if we find a match and REG_NOMATCH if not.  */
8216
8217 int
8218 regexec (preg, string, nmatch, pmatch, eflags)
8219     const regex_t *preg;
8220     const char *string;
8221     size_t nmatch;
8222     regmatch_t pmatch[];
8223     int eflags;
8224 {
8225   int ret;
8226   struct re_registers regs;
8227   regex_t private_preg;
8228   int len = strlen (string);
8229   boolean want_reg_info = !preg->no_sub && nmatch > 0;
8230
8231   private_preg = *preg;
8232
8233   private_preg.not_bol = !!(eflags & REG_NOTBOL);
8234   private_preg.not_eol = !!(eflags & REG_NOTEOL);
8235
8236   /* The user has told us exactly how many registers to return
8237      information about, via `nmatch'.  We have to pass that on to the
8238      matching routines.  */
8239   private_preg.regs_allocated = REGS_FIXED;
8240
8241   if (want_reg_info)
8242     {
8243       regs.num_regs = nmatch;
8244       regs.start = TALLOC (nmatch * 2, regoff_t);
8245       if (regs.start == NULL)
8246         return (int) REG_NOMATCH;
8247       regs.end = regs.start + nmatch;
8248     }
8249
8250   /* Perform the searching operation.  */
8251   ret = re_search (&private_preg, string, len,
8252                    /* start: */ 0, /* range: */ len,
8253                    want_reg_info ? &regs : (struct re_registers *) 0);
8254
8255   /* Copy the register information to the POSIX structure.  */
8256   if (want_reg_info)
8257     {
8258       if (ret >= 0)
8259         {
8260           unsigned r;
8261
8262           for (r = 0; r < nmatch; r++)
8263             {
8264               pmatch[r].rm_so = regs.start[r];
8265               pmatch[r].rm_eo = regs.end[r];
8266             }
8267         }
8268
8269       /* If we needed the temporary register info, free the space now.  */
8270       free (regs.start);
8271     }
8272
8273   /* We want zero return to mean success, unlike `re_search'.  */
8274   return ret >= 0 ? (int) REG_NOERROR : (int) REG_NOMATCH;
8275 }
8276 #ifdef _LIBC
8277 weak_alias (__regexec, regexec)
8278 #endif
8279
8280
8281 /* Returns a message corresponding to an error code, ERRCODE, returned
8282    from either regcomp or regexec.   We don't use PREG here.  */
8283
8284 size_t
8285 regerror (errcode, preg, errbuf, errbuf_size)
8286     int errcode;
8287     const regex_t *preg;
8288     char *errbuf;
8289     size_t errbuf_size;
8290 {
8291   const char *msg;
8292   size_t msg_size;
8293
8294   if (errcode < 0
8295       || errcode >= (int) (sizeof (re_error_msgid_idx)
8296                            / sizeof (re_error_msgid_idx[0])))
8297     /* Only error codes returned by the rest of the code should be passed
8298        to this routine.  If we are given anything else, or if other regex
8299        code generates an invalid error code, then the program has a bug.
8300        Dump core so we can fix it.  */
8301     abort ();
8302
8303   msg = gettext (re_error_msgid + re_error_msgid_idx[errcode]);
8304
8305   msg_size = strlen (msg) + 1; /* Includes the null.  */
8306
8307   if (errbuf_size != 0)
8308     {
8309       if (msg_size > errbuf_size)
8310         {
8311 #if defined HAVE_MEMPCPY || defined _LIBC
8312           *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
8313 #else
8314           memcpy (errbuf, msg, errbuf_size - 1);
8315           errbuf[errbuf_size - 1] = 0;
8316 #endif
8317         }
8318       else
8319         memcpy (errbuf, msg, msg_size);
8320     }
8321
8322   return msg_size;
8323 }
8324 #ifdef _LIBC
8325 weak_alias (__regerror, regerror)
8326 #endif
8327
8328
8329 /* Free dynamically allocated space used by PREG.  */
8330
8331 void
8332 regfree (preg)
8333     regex_t *preg;
8334 {
8335   if (preg->buffer != NULL)
8336     free (preg->buffer);
8337   preg->buffer = NULL;
8338
8339   preg->allocated = 0;
8340   preg->used = 0;
8341
8342   if (preg->fastmap != NULL)
8343     free (preg->fastmap);
8344   preg->fastmap = NULL;
8345   preg->fastmap_accurate = 0;
8346
8347   if (preg->translate != NULL)
8348     free (preg->translate);
8349   preg->translate = NULL;
8350 }
8351 #ifdef _LIBC
8352 weak_alias (__regfree, regfree)
8353 #endif
8354
8355 #endif /* not emacs  */
8356
8357 #endif /* not INSIDE_RECURSION */
8358
8359 \f
8360 #undef STORE_NUMBER
8361 #undef STORE_NUMBER_AND_INCR
8362 #undef EXTRACT_NUMBER
8363 #undef EXTRACT_NUMBER_AND_INCR
8364
8365 #undef DEBUG_PRINT_COMPILED_PATTERN
8366 #undef DEBUG_PRINT_DOUBLE_STRING
8367
8368 #undef INIT_FAIL_STACK
8369 #undef RESET_FAIL_STACK
8370 #undef DOUBLE_FAIL_STACK
8371 #undef PUSH_PATTERN_OP
8372 #undef PUSH_FAILURE_POINTER
8373 #undef PUSH_FAILURE_INT
8374 #undef PUSH_FAILURE_ELT
8375 #undef POP_FAILURE_POINTER
8376 #undef POP_FAILURE_INT
8377 #undef POP_FAILURE_ELT
8378 #undef DEBUG_PUSH
8379 #undef DEBUG_POP
8380 #undef PUSH_FAILURE_POINT
8381 #undef POP_FAILURE_POINT
8382
8383 #undef REG_UNSET_VALUE
8384 #undef REG_UNSET
8385
8386 #undef PATFETCH
8387 #undef PATFETCH_RAW
8388 #undef PATUNFETCH
8389 #undef TRANSLATE
8390
8391 #undef INIT_BUF_SIZE
8392 #undef GET_BUFFER_SPACE
8393 #undef BUF_PUSH
8394 #undef BUF_PUSH_2
8395 #undef BUF_PUSH_3
8396 #undef STORE_JUMP
8397 #undef STORE_JUMP2
8398 #undef INSERT_JUMP
8399 #undef INSERT_JUMP2
8400 #undef EXTEND_BUFFER
8401 #undef GET_UNSIGNED_NUMBER
8402 #undef FREE_STACK_RETURN
8403
8404 # undef POINTER_TO_OFFSET
8405 # undef MATCHING_IN_FRST_STRING
8406 # undef PREFETCH
8407 # undef AT_STRINGS_BEG
8408 # undef AT_STRINGS_END
8409 # undef WORDCHAR_P
8410 # undef FREE_VAR
8411 # undef FREE_VARIABLES
8412 # undef NO_HIGHEST_ACTIVE_REG
8413 # undef NO_LOWEST_ACTIVE_REG
8414
8415 # undef CHAR_T
8416 # undef UCHAR_T
8417 # undef COMPILED_BUFFER_VAR
8418 # undef OFFSET_ADDRESS_SIZE
8419 # undef CHAR_CLASS_SIZE
8420 # undef PREFIX
8421 # undef ARG_PREFIX
8422 # undef PUT_CHAR
8423 # undef BYTE
8424 # undef WCHAR
8425
8426 # define DEFINED_ONCE