(_): Honor the setting of ENABLE_NLS. Otherwise,
[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, 2001 Free Software Foundation, Inc.
6    This file is part of the GNU C Library.
7
8    The GNU C Library is free software; you can redistribute it and/or
9    modify it under the terms of the GNU Lesser General Public
10    License as published by the Free Software Foundation; either
11    version 2.1 of the License, or (at your option) any later version.
12
13    The GNU C Library 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 GNU
16    Lesser General Public License for more details.
17
18    You should have received a copy of the GNU Lesser General Public
19    License along with the GNU C Library; if not, write to the Free
20    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21    02111-1307 USA.  */
22
23 /* AIX requires this to be the first thing in the file. */
24 #if defined _AIX && !defined REGEX_MALLOC
25   #pragma alloca
26 #endif
27
28 #undef  _GNU_SOURCE
29 #define _GNU_SOURCE
30
31 #ifdef HAVE_CONFIG_H
32 # include <config.h>
33 #endif
34
35 #ifndef PARAMS
36 # if defined __GNUC__ || (defined __STDC__ && __STDC__)
37 #  define PARAMS(args) args
38 # else
39 #  define PARAMS(args) ()
40 # endif  /* GCC.  */
41 #endif  /* Not PARAMS.  */
42
43 #ifndef INSIDE_RECURSION
44
45 # if defined STDC_HEADERS && !defined emacs
46 #  include <stddef.h>
47 # else
48 /* We need this for `regex.h', and perhaps for the Emacs include files.  */
49 #  include <sys/types.h>
50 # endif
51
52 # define WIDE_CHAR_SUPPORT (HAVE_WCTYPE_H && HAVE_WCHAR_H && HAVE_BTOWC)
53
54 /* For platform which support the ISO C amendement 1 functionality we
55    support user defined character classes.  */
56 # if defined _LIBC || WIDE_CHAR_SUPPORT
57 /* Solaris 2.5 has a bug: <wchar.h> must be included before <wctype.h>.  */
58 #  include <wchar.h>
59 #  include <wctype.h>
60 # endif
61
62 # ifdef _LIBC
63 /* We have to keep the namespace clean.  */
64 #  define regfree(preg) __regfree (preg)
65 #  define regexec(pr, st, nm, pm, ef) __regexec (pr, st, nm, pm, ef)
66 #  define regcomp(preg, pattern, cflags) __regcomp (preg, pattern, cflags)
67 #  define regerror(errcode, preg, errbuf, errbuf_size) \
68         __regerror(errcode, preg, errbuf, errbuf_size)
69 #  define re_set_registers(bu, re, nu, st, en) \
70         __re_set_registers (bu, re, nu, st, en)
71 #  define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \
72         __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
73 #  define re_match(bufp, string, size, pos, regs) \
74         __re_match (bufp, string, size, pos, regs)
75 #  define re_search(bufp, string, size, startpos, range, regs) \
76         __re_search (bufp, string, size, startpos, range, regs)
77 #  define re_compile_pattern(pattern, length, bufp) \
78         __re_compile_pattern (pattern, length, bufp)
79 #  define re_set_syntax(syntax) __re_set_syntax (syntax)
80 #  define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \
81         __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
82 #  define re_compile_fastmap(bufp) __re_compile_fastmap (bufp)
83
84 #  define btowc __btowc
85
86 /* We are also using some library internals.  */
87 #  include <locale/localeinfo.h>
88 #  include <locale/elem-hash.h>
89 #  include <langinfo.h>
90 #  include <locale/coll-lookup.h>
91 # endif
92
93 /* This is for other GNU distributions with internationalized messages.  */
94 # if (HAVE_LIBINTL_H && ENABLE_NLS) || defined _LIBC
95 #  include <libintl.h>
96 #  ifdef _LIBC
97 #   undef gettext
98 #   define gettext(msgid) __dcgettext ("libc", msgid, LC_MESSAGES)
99 #  endif
100 # else
101 #  define gettext(msgid) (msgid)
102 # endif
103
104 # ifndef gettext_noop
105 /* This define is so xgettext can find the internationalizable
106    strings.  */
107 #  define gettext_noop(String) String
108 # endif
109
110 /* The `emacs' switch turns on certain matching commands
111    that make sense only in Emacs. */
112 # ifdef emacs
113
114 #  include "lisp.h"
115 #  include "buffer.h"
116 #  include "syntax.h"
117
118 # else  /* not emacs */
119
120 /* If we are not linking with Emacs proper,
121    we can't use the relocating allocator
122    even if config.h says that we can.  */
123 #  undef REL_ALLOC
124
125 #  if defined STDC_HEADERS || defined _LIBC
126 #   include <stdlib.h>
127 #  else
128 char *malloc ();
129 char *realloc ();
130 #  endif
131
132 /* When used in Emacs's lib-src, we need to get bzero and bcopy somehow.
133    If nothing else has been done, use the method below.  */
134 #  ifdef INHIBIT_STRING_HEADER
135 #   if !(defined HAVE_BZERO && defined HAVE_BCOPY)
136 #    if !defined bzero && !defined bcopy
137 #     undef INHIBIT_STRING_HEADER
138 #    endif
139 #   endif
140 #  endif
141
142 /* This is the normal way of making sure we have a bcopy and a bzero.
143    This is used in most programs--a few other programs avoid this
144    by defining INHIBIT_STRING_HEADER.  */
145 #  ifndef INHIBIT_STRING_HEADER
146 #   if defined HAVE_STRING_H || defined STDC_HEADERS || defined _LIBC
147 #    include <string.h>
148 #    ifndef bzero
149 #     ifndef _LIBC
150 #      define bzero(s, n)       (memset (s, '\0', n), (s))
151 #     else
152 #      define bzero(s, n)       __bzero (s, n)
153 #     endif
154 #    endif
155 #   else
156 #    include <strings.h>
157 #    ifndef memcmp
158 #     define memcmp(s1, s2, n)  bcmp (s1, s2, n)
159 #    endif
160 #    ifndef memcpy
161 #     define memcpy(d, s, n)    (bcopy (s, d, n), (d))
162 #    endif
163 #   endif
164 #  endif
165
166 /* Define the syntax stuff for \<, \>, etc.  */
167
168 /* This must be nonzero for the wordchar and notwordchar pattern
169    commands in re_match_2.  */
170 #  ifndef Sword
171 #   define Sword 1
172 #  endif
173
174 #  ifdef SWITCH_ENUM_BUG
175 #   define SWITCH_ENUM_CAST(x) ((int)(x))
176 #  else
177 #   define SWITCH_ENUM_CAST(x) (x)
178 #  endif
179
180 # endif /* not emacs */
181
182 # if defined _LIBC || HAVE_LIMITS_H
183 #  include <limits.h>
184 # endif
185
186 # ifndef MB_LEN_MAX
187 #  define MB_LEN_MAX 1
188 # endif
189 \f
190 /* Get the interface, including the syntax bits.  */
191 # include <regex.h>
192
193 /* isalpha etc. are used for the character classes.  */
194 # include <ctype.h>
195
196 /* Jim Meyering writes:
197
198    "... Some ctype macros are valid only for character codes that
199    isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
200    using /bin/cc or gcc but without giving an ansi option).  So, all
201    ctype uses should be through macros like ISPRINT...  If
202    STDC_HEADERS is defined, then autoconf has verified that the ctype
203    macros don't need to be guarded with references to isascii. ...
204    Defining isascii to 1 should let any compiler worth its salt
205    eliminate the && through constant folding."
206    Solaris defines some of these symbols so we must undefine them first.  */
207
208 # if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII)
209 #  define IN_CTYPE_DOMAIN(c) 1
210 # else
211 #  define IN_CTYPE_DOMAIN(c) isascii(c)
212 # endif
213
214 # ifdef isblank
215 #  define ISBLANK(c) (IN_CTYPE_DOMAIN (c) && isblank (c))
216 # else
217 #  define ISBLANK(c) ((c) == ' ' || (c) == '\t')
218 # endif
219 # ifdef isgraph
220 #  define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isgraph (c))
221 # else
222 #  define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isprint (c) && !isspace (c))
223 # endif
224
225 # undef ISPRINT
226 # define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint (c))
227 # define ISDIGIT(c) (IN_CTYPE_DOMAIN (c) && isdigit (c))
228 # define ISALNUM(c) (IN_CTYPE_DOMAIN (c) && isalnum (c))
229 # define ISALPHA(c) (IN_CTYPE_DOMAIN (c) && isalpha (c))
230 # define ISCNTRL(c) (IN_CTYPE_DOMAIN (c) && iscntrl (c))
231 # define ISLOWER(c) (IN_CTYPE_DOMAIN (c) && islower (c))
232 # define ISPUNCT(c) (IN_CTYPE_DOMAIN (c) && ispunct (c))
233 # define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
234 # define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c))
235 # define ISXDIGIT(c) (IN_CTYPE_DOMAIN (c) && isxdigit (c))
236
237 # ifdef _tolower
238 #  define TOLOWER(c) _tolower(c)
239 # else
240 #  define TOLOWER(c) tolower(c)
241 # endif
242
243 # ifndef NULL
244 #  define NULL (void *)0
245 # endif
246
247 /* We remove any previous definition of `SIGN_EXTEND_CHAR',
248    since ours (we hope) works properly with all combinations of
249    machines, compilers, `char' and `unsigned char' argument types.
250    (Per Bothner suggested the basic approach.)  */
251 # undef SIGN_EXTEND_CHAR
252 # if __STDC__
253 #  define SIGN_EXTEND_CHAR(c) ((signed char) (c))
254 # else  /* not __STDC__ */
255 /* As in Harbison and Steele.  */
256 #  define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128)
257 # endif
258 \f
259 # ifndef emacs
260 /* How many characters in the character set.  */
261 #  define CHAR_SET_SIZE 256
262
263 #  ifdef SYNTAX_TABLE
264
265 extern char *re_syntax_table;
266
267 #  else /* not SYNTAX_TABLE */
268
269 static char re_syntax_table[CHAR_SET_SIZE];
270
271 static void init_syntax_once PARAMS ((void));
272
273 static void
274 init_syntax_once ()
275 {
276    register int c;
277    static int done = 0;
278
279    if (done)
280      return;
281    bzero (re_syntax_table, sizeof re_syntax_table);
282
283    for (c = 0; c < CHAR_SET_SIZE; ++c)
284      if (ISALNUM (c))
285         re_syntax_table[c] = Sword;
286
287    re_syntax_table['_'] = Sword;
288
289    done = 1;
290 }
291
292 #  endif /* not SYNTAX_TABLE */
293
294 #  define SYNTAX(c) re_syntax_table[(unsigned char) (c)]
295
296 # endif /* emacs */
297 \f
298 /* Integer type for pointers.  */
299 # if !defined _LIBC
300 #define uintptr_t private_uintptr_t
301 typedef unsigned long int uintptr_t;
302 # endif
303
304 /* Should we use malloc or alloca?  If REGEX_MALLOC is not defined, we
305    use `alloca' instead of `malloc'.  This is because using malloc in
306    re_search* or re_match* could cause memory leaks when C-g is used in
307    Emacs; also, malloc is slower and causes storage fragmentation.  On
308    the other hand, malloc is more portable, and easier to debug.
309
310    Because we sometimes use alloca, some routines have to be macros,
311    not functions -- `alloca'-allocated space disappears at the end of the
312    function it is called in.  */
313
314 # ifdef REGEX_MALLOC
315
316 #  define REGEX_ALLOCATE malloc
317 #  define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize)
318 #  define REGEX_FREE free
319
320 # else /* not REGEX_MALLOC  */
321
322 /* Emacs already defines alloca, sometimes.  */
323 #  ifndef alloca
324
325 /* Make alloca work the best possible way.  */
326 #   ifdef __GNUC__
327 #    define alloca __builtin_alloca
328 #   else /* not __GNUC__ */
329 #    if HAVE_ALLOCA_H
330 #     include <alloca.h>
331 #    endif /* HAVE_ALLOCA_H */
332 #   endif /* not __GNUC__ */
333
334 #  endif /* not alloca */
335
336 #  define REGEX_ALLOCATE alloca
337
338 /* Assumes a `char *destination' variable.  */
339 #  define REGEX_REALLOCATE(source, osize, nsize)                        \
340   (destination = (char *) alloca (nsize),                               \
341    memcpy (destination, source, osize))
342
343 /* No need to do anything to free, after alloca.  */
344 #  define REGEX_FREE(arg) ((void)0) /* Do nothing!  But inhibit gcc warning.  */
345
346 # endif /* not REGEX_MALLOC */
347
348 /* Define how to allocate the failure stack.  */
349
350 # if defined REL_ALLOC && defined REGEX_MALLOC
351
352 #  define REGEX_ALLOCATE_STACK(size)                            \
353   r_alloc (&failure_stack_ptr, (size))
354 #  define REGEX_REALLOCATE_STACK(source, osize, nsize)          \
355   r_re_alloc (&failure_stack_ptr, (nsize))
356 #  define REGEX_FREE_STACK(ptr)                                 \
357   r_alloc_free (&failure_stack_ptr)
358
359 # else /* not using relocating allocator */
360
361 #  ifdef REGEX_MALLOC
362
363 #   define REGEX_ALLOCATE_STACK malloc
364 #   define REGEX_REALLOCATE_STACK(source, osize, nsize) realloc (source, nsize)
365 #   define REGEX_FREE_STACK free
366
367 #  else /* not REGEX_MALLOC */
368
369 #   define REGEX_ALLOCATE_STACK alloca
370
371 #   define REGEX_REALLOCATE_STACK(source, osize, nsize)                 \
372    REGEX_REALLOCATE (source, osize, nsize)
373 /* No need to explicitly free anything.  */
374 #   define REGEX_FREE_STACK(arg)
375
376 #  endif /* not REGEX_MALLOC */
377 # endif /* not using relocating allocator */
378
379
380 /* True if `size1' is non-NULL and PTR is pointing anywhere inside
381    `string1' or just past its end.  This works if PTR is NULL, which is
382    a good thing.  */
383 # define FIRST_STRING_P(ptr)                                    \
384   (size1 && string1 <= (ptr) && (ptr) <= string1 + size1)
385
386 /* (Re)Allocate N items of type T using malloc, or fail.  */
387 # define TALLOC(n, t) ((t *) malloc ((n) * sizeof (t)))
388 # define RETALLOC(addr, n, t) ((addr) = (t *) realloc (addr, (n) * sizeof (t)))
389 # define RETALLOC_IF(addr, n, t) \
390   if (addr) RETALLOC((addr), (n), t); else (addr) = TALLOC ((n), t)
391 # define REGEX_TALLOC(n, t) ((t *) REGEX_ALLOCATE ((n) * sizeof (t)))
392
393 # define BYTEWIDTH 8 /* In bits.  */
394
395 # define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
396
397 # undef MAX
398 # undef MIN
399 # define MAX(a, b) ((a) > (b) ? (a) : (b))
400 # define MIN(a, b) ((a) < (b) ? (a) : (b))
401
402 typedef char boolean;
403 # define false 0
404 # define true 1
405
406 static reg_errcode_t byte_regex_compile _RE_ARGS ((const char *pattern, size_t size,
407                                                    reg_syntax_t syntax,
408                                                    struct re_pattern_buffer *bufp));
409
410 static int byte_re_match_2_internal PARAMS ((struct re_pattern_buffer *bufp,
411                                              const char *string1, int size1,
412                                              const char *string2, int size2,
413                                              int pos,
414                                              struct re_registers *regs,
415                                              int stop));
416 static int byte_re_search_2 PARAMS ((struct re_pattern_buffer *bufp,
417                                      const char *string1, int size1,
418                                      const char *string2, int size2,
419                                      int startpos, int range,
420                                      struct re_registers *regs, int stop));
421 static int byte_re_compile_fastmap PARAMS ((struct re_pattern_buffer *bufp));
422
423 #ifdef MBS_SUPPORT
424 static reg_errcode_t wcs_regex_compile _RE_ARGS ((const char *pattern, size_t size,
425                                                    reg_syntax_t syntax,
426                                                    struct re_pattern_buffer *bufp));
427
428
429 static int wcs_re_match_2_internal PARAMS ((struct re_pattern_buffer *bufp,
430                                             const char *cstring1, int csize1,
431                                             const char *cstring2, int csize2,
432                                             int pos,
433                                             struct re_registers *regs,
434                                             int stop,
435                                             wchar_t *string1, int size1,
436                                             wchar_t *string2, int size2,
437                                             int *mbs_offset1, int *mbs_offset2));
438 static int wcs_re_search_2 PARAMS ((struct re_pattern_buffer *bufp,
439                                     const char *string1, int size1,
440                                     const char *string2, int size2,
441                                     int startpos, int range,
442                                     struct re_registers *regs, int stop));
443 static int wcs_re_compile_fastmap PARAMS ((struct re_pattern_buffer *bufp));
444 #endif
445 \f
446 /* These are the command codes that appear in compiled regular
447    expressions.  Some opcodes are followed by argument bytes.  A
448    command code can specify any interpretation whatsoever for its
449    arguments.  Zero bytes may appear in the compiled regular expression.  */
450
451 typedef enum
452 {
453   no_op = 0,
454
455   /* Succeed right away--no more backtracking.  */
456   succeed,
457
458         /* Followed by one byte giving n, then by n literal bytes.  */
459   exactn,
460
461 # ifdef MBS_SUPPORT
462         /* Same as exactn, but contains binary data.  */
463   exactn_bin,
464 # endif
465
466         /* Matches any (more or less) character.  */
467   anychar,
468
469         /* Matches any one char belonging to specified set.  First
470            following byte is number of bitmap bytes.  Then come bytes
471            for a bitmap saying which chars are in.  Bits in each byte
472            are ordered low-bit-first.  A character is in the set if its
473            bit is 1.  A character too large to have a bit in the map is
474            automatically not in the set.  */
475         /* ifdef MBS_SUPPORT, following element is length of character
476            classes, length of collating symbols, length of equivalence
477            classes, length of character ranges, and length of characters.
478            Next, character class element, collating symbols elements,
479            equivalence class elements, range elements, and character
480            elements follow.
481            See regex_compile function.  */
482   charset,
483
484         /* Same parameters as charset, but match any character that is
485            not one of those specified.  */
486   charset_not,
487
488         /* Start remembering the text that is matched, for storing in a
489            register.  Followed by one byte with the register number, in
490            the range 0 to one less than the pattern buffer's re_nsub
491            field.  Then followed by one byte with the number of groups
492            inner to this one.  (This last has to be part of the
493            start_memory only because we need it in the on_failure_jump
494            of re_match_2.)  */
495   start_memory,
496
497         /* Stop remembering the text that is matched and store it in a
498            memory register.  Followed by one byte with the register
499            number, in the range 0 to one less than `re_nsub' in the
500            pattern buffer, and one byte with the number of inner groups,
501            just like `start_memory'.  (We need the number of inner
502            groups here because we don't have any easy way of finding the
503            corresponding start_memory when we're at a stop_memory.)  */
504   stop_memory,
505
506         /* Match a duplicate of something remembered. Followed by one
507            byte containing the register number.  */
508   duplicate,
509
510         /* Fail unless at beginning of line.  */
511   begline,
512
513         /* Fail unless at end of line.  */
514   endline,
515
516         /* Succeeds if at beginning of buffer (if emacs) or at beginning
517            of string to be matched (if not).  */
518   begbuf,
519
520         /* Analogously, for end of buffer/string.  */
521   endbuf,
522
523         /* Followed by two byte relative address to which to jump.  */
524   jump,
525
526         /* Same as jump, but marks the end of an alternative.  */
527   jump_past_alt,
528
529         /* Followed by two-byte relative address of place to resume at
530            in case of failure.  */
531         /* ifdef MBS_SUPPORT, the size of address is 1.  */
532   on_failure_jump,
533
534         /* Like on_failure_jump, but pushes a placeholder instead of the
535            current string position when executed.  */
536   on_failure_keep_string_jump,
537
538         /* Throw away latest failure point and then jump to following
539            two-byte relative address.  */
540         /* ifdef MBS_SUPPORT, the size of address is 1.  */
541   pop_failure_jump,
542
543         /* Change to pop_failure_jump if know won't have to backtrack to
544            match; otherwise change to jump.  This is used to jump
545            back to the beginning of a repeat.  If what follows this jump
546            clearly won't match what the repeat does, such that we can be
547            sure that there is no use backtracking out of repetitions
548            already matched, then we change it to a pop_failure_jump.
549            Followed by two-byte address.  */
550         /* ifdef MBS_SUPPORT, the size of address is 1.  */
551   maybe_pop_jump,
552
553         /* Jump to following two-byte address, and push a dummy failure
554            point. This failure point will be thrown away if an attempt
555            is made to use it for a failure.  A `+' construct makes this
556            before the first repeat.  Also used as an intermediary kind
557            of jump when compiling an alternative.  */
558         /* ifdef MBS_SUPPORT, the size of address is 1.  */
559   dummy_failure_jump,
560
561         /* Push a dummy failure point and continue.  Used at the end of
562            alternatives.  */
563   push_dummy_failure,
564
565         /* Followed by two-byte relative address and two-byte number n.
566            After matching N times, jump to the address upon failure.  */
567         /* ifdef MBS_SUPPORT, the size of address is 1.  */
568   succeed_n,
569
570         /* Followed by two-byte relative address, and two-byte number n.
571            Jump to the address N times, then fail.  */
572         /* ifdef MBS_SUPPORT, the size of address is 1.  */
573   jump_n,
574
575         /* Set the following two-byte relative address to the
576            subsequent two-byte number.  The address *includes* the two
577            bytes of number.  */
578         /* ifdef MBS_SUPPORT, the size of address is 1.  */
579   set_number_at,
580
581   wordchar,     /* Matches any word-constituent character.  */
582   notwordchar,  /* Matches any char that is not a word-constituent.  */
583
584   wordbeg,      /* Succeeds if at word beginning.  */
585   wordend,      /* Succeeds if at word end.  */
586
587   wordbound,    /* Succeeds if at a word boundary.  */
588   notwordbound  /* Succeeds if not at a word boundary.  */
589
590 # ifdef emacs
591   ,before_dot,  /* Succeeds if before point.  */
592   at_dot,       /* Succeeds if at point.  */
593   after_dot,    /* Succeeds if after point.  */
594
595         /* Matches any character whose syntax is specified.  Followed by
596            a byte which contains a syntax code, e.g., Sword.  */
597   syntaxspec,
598
599         /* Matches any character whose syntax is not that specified.  */
600   notsyntaxspec
601 # endif /* emacs */
602 } re_opcode_t;
603 #endif /* not INSIDE_RECURSION */
604 \f
605
606 #ifdef BYTE
607 # define CHAR_T char
608 # define UCHAR_T unsigned char
609 # define COMPILED_BUFFER_VAR bufp->buffer
610 # define OFFSET_ADDRESS_SIZE 2
611 # define PREFIX(name) byte_##name
612 # define ARG_PREFIX(name) name
613 # define PUT_CHAR(c) putchar (c)
614 #else
615 # ifdef WCHAR
616 #  define CHAR_T wchar_t
617 #  define UCHAR_T wchar_t
618 #  define COMPILED_BUFFER_VAR wc_buffer
619 #  define OFFSET_ADDRESS_SIZE 1 /* the size which STORE_NUMBER macro use */
620 #  define CHAR_CLASS_SIZE ((__alignof__(wctype_t)+sizeof(wctype_t))/sizeof(CHAR_T)+1)
621 #  define PREFIX(name) wcs_##name
622 #  define ARG_PREFIX(name) c##name
623 /* Should we use wide stream??  */
624 #  define PUT_CHAR(c) printf ("%C", c);
625 #  define TRUE 1
626 #  define FALSE 0
627 # else
628 #  ifdef MBS_SUPPORT
629 #   define WCHAR
630 #   define INSIDE_RECURSION
631 #   include "regex.c"
632 #   undef INSIDE_RECURSION
633 #  endif
634 #  define BYTE
635 #  define INSIDE_RECURSION
636 #  include "regex.c"
637 #  undef INSIDE_RECURSION
638 # endif
639 #endif
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 #  ifdef _LIBC
3309                             if (__iswctype (__btowc (ch), wt))
3310                               SET_LIST_BIT (ch);
3311 #  else
3312                             if (iswctype (btowc (ch), wt))
3313                               SET_LIST_BIT (ch);
3314 #  endif
3315
3316                             if (translate && (is_upper || is_lower)
3317                                 && (ISUPPER (ch) || ISLOWER (ch)))
3318                               SET_LIST_BIT (ch);
3319                           }
3320
3321                         had_char_class = true;
3322 # else
3323                         int ch;
3324                         boolean is_alnum = STREQ (str, "alnum");
3325                         boolean is_alpha = STREQ (str, "alpha");
3326                         boolean is_blank = STREQ (str, "blank");
3327                         boolean is_cntrl = STREQ (str, "cntrl");
3328                         boolean is_digit = STREQ (str, "digit");
3329                         boolean is_graph = STREQ (str, "graph");
3330                         boolean is_lower = STREQ (str, "lower");
3331                         boolean is_print = STREQ (str, "print");
3332                         boolean is_punct = STREQ (str, "punct");
3333                         boolean is_space = STREQ (str, "space");
3334                         boolean is_upper = STREQ (str, "upper");
3335                         boolean is_xdigit = STREQ (str, "xdigit");
3336
3337                         if (!IS_CHAR_CLASS (str))
3338                           FREE_STACK_RETURN (REG_ECTYPE);
3339
3340                         /* Throw away the ] at the end of the character
3341                            class.  */
3342                         PATFETCH (c);
3343
3344                         if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
3345
3346                         for (ch = 0; ch < 1 << BYTEWIDTH; ch++)
3347                           {
3348                             /* This was split into 3 if's to
3349                                avoid an arbitrary limit in some compiler.  */
3350                             if (   (is_alnum  && ISALNUM (ch))
3351                                 || (is_alpha  && ISALPHA (ch))
3352                                 || (is_blank  && ISBLANK (ch))
3353                                 || (is_cntrl  && ISCNTRL (ch)))
3354                               SET_LIST_BIT (ch);
3355                             if (   (is_digit  && ISDIGIT (ch))
3356                                 || (is_graph  && ISGRAPH (ch))
3357                                 || (is_lower  && ISLOWER (ch))
3358                                 || (is_print  && ISPRINT (ch)))
3359                               SET_LIST_BIT (ch);
3360                             if (   (is_punct  && ISPUNCT (ch))
3361                                 || (is_space  && ISSPACE (ch))
3362                                 || (is_upper  && ISUPPER (ch))
3363                                 || (is_xdigit && ISXDIGIT (ch)))
3364                               SET_LIST_BIT (ch);
3365                             if (   translate && (is_upper || is_lower)
3366                                 && (ISUPPER (ch) || ISLOWER (ch)))
3367                               SET_LIST_BIT (ch);
3368                           }
3369                         had_char_class = true;
3370 # endif /* libc || wctype.h */
3371                       }
3372                     else
3373                       {
3374                         c1++;
3375                         while (c1--)
3376                           PATUNFETCH;
3377                         SET_LIST_BIT ('[');
3378                         SET_LIST_BIT (':');
3379                         range_start = ':';
3380                         had_char_class = false;
3381                       }
3382                   }
3383                 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == '=')
3384                   {
3385                     unsigned char str[MB_LEN_MAX + 1];
3386 # ifdef _LIBC
3387                     uint32_t nrules =
3388                       _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
3389 # endif
3390
3391                     PATFETCH (c);
3392                     c1 = 0;
3393
3394                     /* If pattern is `[[='.  */
3395                     if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
3396
3397                     for (;;)
3398                       {
3399                         PATFETCH (c);
3400                         if ((c == '=' && *p == ']') || p == pend)
3401                           break;
3402                         if (c1 < MB_LEN_MAX)
3403                           str[c1++] = c;
3404                         else
3405                           /* This is in any case an invalid class name.  */
3406                           str[0] = '\0';
3407                       }
3408                     str[c1] = '\0';
3409
3410                     if (c == '=' && *p == ']' && str[0] != '\0')
3411                       {
3412                         /* If we have no collation data we use the default
3413                            collation in which each character is in a class
3414                            by itself.  It also means that ASCII is the
3415                            character set and therefore we cannot have character
3416                            with more than one byte in the multibyte
3417                            representation.  */
3418 # ifdef _LIBC
3419                         if (nrules == 0)
3420 # endif
3421                           {
3422                             if (c1 != 1)
3423                               FREE_STACK_RETURN (REG_ECOLLATE);
3424
3425                             /* Throw away the ] at the end of the equivalence
3426                                class.  */
3427                             PATFETCH (c);
3428
3429                             /* Set the bit for the character.  */
3430                             SET_LIST_BIT (str[0]);
3431                           }
3432 # ifdef _LIBC
3433                         else
3434                           {
3435                             /* Try to match the byte sequence in `str' against
3436                                those known to the collate implementation.
3437                                First find out whether the bytes in `str' are
3438                                actually from exactly one character.  */
3439                             const int32_t *table;
3440                             const unsigned char *weights;
3441                             const unsigned char *extra;
3442                             const int32_t *indirect;
3443                             int32_t idx;
3444                             const unsigned char *cp = str;
3445                             int ch;
3446
3447                             /* This #include defines a local function!  */
3448 #  include <locale/weight.h>
3449
3450                             table = (const int32_t *)
3451                               _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEMB);
3452                             weights = (const unsigned char *)
3453                               _NL_CURRENT (LC_COLLATE, _NL_COLLATE_WEIGHTMB);
3454                             extra = (const unsigned char *)
3455                               _NL_CURRENT (LC_COLLATE, _NL_COLLATE_EXTRAMB);
3456                             indirect = (const int32_t *)
3457                               _NL_CURRENT (LC_COLLATE, _NL_COLLATE_INDIRECTMB);
3458
3459                             idx = findidx (&cp);
3460                             if (idx == 0 || cp < str + c1)
3461                               /* This is no valid character.  */
3462                               FREE_STACK_RETURN (REG_ECOLLATE);
3463
3464                             /* Throw away the ] at the end of the equivalence
3465                                class.  */
3466                             PATFETCH (c);
3467
3468                             /* Now we have to go throught the whole table
3469                                and find all characters which have the same
3470                                first level weight.
3471
3472                                XXX Note that this is not entirely correct.
3473                                we would have to match multibyte sequences
3474                                but this is not possible with the current
3475                                implementation.  */
3476                             for (ch = 1; ch < 256; ++ch)
3477                               /* XXX This test would have to be changed if we
3478                                  would allow matching multibyte sequences.  */
3479                               if (table[ch] > 0)
3480                                 {
3481                                   int32_t idx2 = table[ch];
3482                                   size_t len = weights[idx2];
3483
3484                                   /* Test whether the lenghts match.  */
3485                                   if (weights[idx] == len)
3486                                     {
3487                                       /* They do.  New compare the bytes of
3488                                          the weight.  */
3489                                       size_t cnt = 0;
3490
3491                                       while (cnt < len
3492                                              && (weights[idx + 1 + cnt]
3493                                                  == weights[idx2 + 1 + cnt]))
3494                                         ++cnt;
3495
3496                                       if (cnt == len)
3497                                         /* They match.  Mark the character as
3498                                            acceptable.  */
3499                                         SET_LIST_BIT (ch);
3500                                     }
3501                                 }
3502                           }
3503 # endif
3504                         had_char_class = true;
3505                       }
3506                     else
3507                       {
3508                         c1++;
3509                         while (c1--)
3510                           PATUNFETCH;
3511                         SET_LIST_BIT ('[');
3512                         SET_LIST_BIT ('=');
3513                         range_start = '=';
3514                         had_char_class = false;
3515                       }
3516                   }
3517                 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == '.')
3518                   {
3519                     unsigned char str[128];     /* Should be large enough.  */
3520 # ifdef _LIBC
3521                     uint32_t nrules =
3522                       _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
3523 # endif
3524
3525                     PATFETCH (c);
3526                     c1 = 0;
3527
3528                     /* If pattern is `[[.'.  */
3529                     if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
3530
3531                     for (;;)
3532                       {
3533                         PATFETCH (c);
3534                         if ((c == '.' && *p == ']') || p == pend)
3535                           break;
3536                         if (c1 < sizeof (str))
3537                           str[c1++] = c;
3538                         else
3539                           /* This is in any case an invalid class name.  */
3540                           str[0] = '\0';
3541                       }
3542                     str[c1] = '\0';
3543
3544                     if (c == '.' && *p == ']' && str[0] != '\0')
3545                       {
3546                         /* If we have no collation data we use the default
3547                            collation in which each character is the name
3548                            for its own class which contains only the one
3549                            character.  It also means that ASCII is the
3550                            character set and therefore we cannot have character
3551                            with more than one byte in the multibyte
3552                            representation.  */
3553 # ifdef _LIBC
3554                         if (nrules == 0)
3555 # endif
3556                           {
3557                             if (c1 != 1)
3558                               FREE_STACK_RETURN (REG_ECOLLATE);
3559
3560                             /* Throw away the ] at the end of the equivalence
3561                                class.  */
3562                             PATFETCH (c);
3563
3564                             /* Set the bit for the character.  */
3565                             SET_LIST_BIT (str[0]);
3566                             range_start = ((const unsigned char *) str)[0];
3567                           }
3568 # ifdef _LIBC
3569                         else
3570                           {
3571                             /* Try to match the byte sequence in `str' against
3572                                those known to the collate implementation.
3573                                First find out whether the bytes in `str' are
3574                                actually from exactly one character.  */
3575                             int32_t table_size;
3576                             const int32_t *symb_table;
3577                             const unsigned char *extra;
3578                             int32_t idx;
3579                             int32_t elem;
3580                             int32_t second;
3581                             int32_t hash;
3582
3583                             table_size =
3584                               _NL_CURRENT_WORD (LC_COLLATE,
3585                                                 _NL_COLLATE_SYMB_HASH_SIZEMB);
3586                             symb_table = (const int32_t *)
3587                               _NL_CURRENT (LC_COLLATE,
3588                                            _NL_COLLATE_SYMB_TABLEMB);
3589                             extra = (const unsigned char *)
3590                               _NL_CURRENT (LC_COLLATE,
3591                                            _NL_COLLATE_SYMB_EXTRAMB);
3592
3593                             /* Locate the character in the hashing table.  */
3594                             hash = elem_hash (str, c1);
3595
3596                             idx = 0;
3597                             elem = hash % table_size;
3598                             second = hash % (table_size - 2);
3599                             while (symb_table[2 * elem] != 0)
3600                               {
3601                                 /* First compare the hashing value.  */
3602                                 if (symb_table[2 * elem] == hash
3603                                     && c1 == extra[symb_table[2 * elem + 1]]
3604                                     && memcmp (str,
3605                                                &extra[symb_table[2 * elem + 1]
3606                                                      + 1],
3607                                                c1) == 0)
3608                                   {
3609                                     /* Yep, this is the entry.  */
3610                                     idx = symb_table[2 * elem + 1];
3611                                     idx += 1 + extra[idx];
3612                                     break;
3613                                   }
3614
3615                                 /* Next entry.  */
3616                                 elem += second;
3617                               }
3618
3619                             if (symb_table[2 * elem] == 0)
3620                               /* This is no valid character.  */
3621                               FREE_STACK_RETURN (REG_ECOLLATE);
3622
3623                             /* Throw away the ] at the end of the equivalence
3624                                class.  */
3625                             PATFETCH (c);
3626
3627                             /* Now add the multibyte character(s) we found
3628                                to the accept list.
3629
3630                                XXX Note that this is not entirely correct.
3631                                we would have to match multibyte sequences
3632                                but this is not possible with the current
3633                                implementation.  Also, we have to match
3634                                collating symbols, which expand to more than
3635                                one file, as a whole and not allow the
3636                                individual bytes.  */
3637                             c1 = extra[idx++];
3638                             if (c1 == 1)
3639                               range_start = extra[idx];
3640                             while (c1-- > 0)
3641                               {
3642                                 SET_LIST_BIT (extra[idx]);
3643                                 ++idx;
3644                               }
3645                           }
3646 # endif
3647                         had_char_class = false;
3648                       }
3649                     else
3650                       {
3651                         c1++;
3652                         while (c1--)
3653                           PATUNFETCH;
3654                         SET_LIST_BIT ('[');
3655                         SET_LIST_BIT ('.');
3656                         range_start = '.';
3657                         had_char_class = false;
3658                       }
3659                   }
3660                 else
3661                   {
3662                     had_char_class = false;
3663                     SET_LIST_BIT (c);
3664                     range_start = c;
3665                   }
3666               }
3667
3668             /* Discard any (non)matching list bytes that are all 0 at the
3669                end of the map.  Decrease the map-length byte too.  */
3670             while ((int) b[-1] > 0 && b[b[-1] - 1] == 0)
3671               b[-1]--;
3672             b += b[-1];
3673 #endif /* WCHAR */
3674           }
3675           break;
3676
3677
3678         case '(':
3679           if (syntax & RE_NO_BK_PARENS)
3680             goto handle_open;
3681           else
3682             goto normal_char;
3683
3684
3685         case ')':
3686           if (syntax & RE_NO_BK_PARENS)
3687             goto handle_close;
3688           else
3689             goto normal_char;
3690
3691
3692         case '\n':
3693           if (syntax & RE_NEWLINE_ALT)
3694             goto handle_alt;
3695           else
3696             goto normal_char;
3697
3698
3699         case '|':
3700           if (syntax & RE_NO_BK_VBAR)
3701             goto handle_alt;
3702           else
3703             goto normal_char;
3704
3705
3706         case '{':
3707            if (syntax & RE_INTERVALS && syntax & RE_NO_BK_BRACES)
3708              goto handle_interval;
3709            else
3710              goto normal_char;
3711
3712
3713         case '\\':
3714           if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
3715
3716           /* Do not translate the character after the \, so that we can
3717              distinguish, e.g., \B from \b, even if we normally would
3718              translate, e.g., B to b.  */
3719           PATFETCH_RAW (c);
3720
3721           switch (c)
3722             {
3723             case '(':
3724               if (syntax & RE_NO_BK_PARENS)
3725                 goto normal_backslash;
3726
3727             handle_open:
3728               bufp->re_nsub++;
3729               regnum++;
3730
3731               if (COMPILE_STACK_FULL)
3732                 {
3733                   RETALLOC (compile_stack.stack, compile_stack.size << 1,
3734                             compile_stack_elt_t);
3735                   if (compile_stack.stack == NULL) return REG_ESPACE;
3736
3737                   compile_stack.size <<= 1;
3738                 }
3739
3740               /* These are the values to restore when we hit end of this
3741                  group.  They are all relative offsets, so that if the
3742                  whole pattern moves because of realloc, they will still
3743                  be valid.  */
3744               COMPILE_STACK_TOP.begalt_offset = begalt - COMPILED_BUFFER_VAR;
3745               COMPILE_STACK_TOP.fixup_alt_jump
3746                 = fixup_alt_jump ? fixup_alt_jump - COMPILED_BUFFER_VAR + 1 : 0;
3747               COMPILE_STACK_TOP.laststart_offset = b - COMPILED_BUFFER_VAR;
3748               COMPILE_STACK_TOP.regnum = regnum;
3749
3750               /* We will eventually replace the 0 with the number of
3751                  groups inner to this one.  But do not push a
3752                  start_memory for groups beyond the last one we can
3753                  represent in the compiled pattern.  */
3754               if (regnum <= MAX_REGNUM)
3755                 {
3756                   COMPILE_STACK_TOP.inner_group_offset = b
3757                     - COMPILED_BUFFER_VAR + 2;
3758                   BUF_PUSH_3 (start_memory, regnum, 0);
3759                 }
3760
3761               compile_stack.avail++;
3762
3763               fixup_alt_jump = 0;
3764               laststart = 0;
3765               begalt = b;
3766               /* If we've reached MAX_REGNUM groups, then this open
3767                  won't actually generate any code, so we'll have to
3768                  clear pending_exact explicitly.  */
3769               pending_exact = 0;
3770               break;
3771
3772
3773             case ')':
3774               if (syntax & RE_NO_BK_PARENS) goto normal_backslash;
3775
3776               if (COMPILE_STACK_EMPTY)
3777                 {
3778                   if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
3779                     goto normal_backslash;
3780                   else
3781                     FREE_STACK_RETURN (REG_ERPAREN);
3782                 }
3783
3784             handle_close:
3785               if (fixup_alt_jump)
3786                 { /* Push a dummy failure point at the end of the
3787                      alternative for a possible future
3788                      `pop_failure_jump' to pop.  See comments at
3789                      `push_dummy_failure' in `re_match_2'.  */
3790                   BUF_PUSH (push_dummy_failure);
3791
3792                   /* We allocated space for this jump when we assigned
3793                      to `fixup_alt_jump', in the `handle_alt' case below.  */
3794                   STORE_JUMP (jump_past_alt, fixup_alt_jump, b - 1);
3795                 }
3796
3797               /* See similar code for backslashed left paren above.  */
3798               if (COMPILE_STACK_EMPTY)
3799                 {
3800                   if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
3801                     goto normal_char;
3802                   else
3803                     FREE_STACK_RETURN (REG_ERPAREN);
3804                 }
3805
3806               /* Since we just checked for an empty stack above, this
3807                  ``can't happen''.  */
3808               assert (compile_stack.avail != 0);
3809               {
3810                 /* We don't just want to restore into `regnum', because
3811                    later groups should continue to be numbered higher,
3812                    as in `(ab)c(de)' -- the second group is #2.  */
3813                 regnum_t this_group_regnum;
3814
3815                 compile_stack.avail--;
3816                 begalt = COMPILED_BUFFER_VAR + COMPILE_STACK_TOP.begalt_offset;
3817                 fixup_alt_jump
3818                   = COMPILE_STACK_TOP.fixup_alt_jump
3819                     ? COMPILED_BUFFER_VAR + COMPILE_STACK_TOP.fixup_alt_jump - 1
3820                     : 0;
3821                 laststart = COMPILED_BUFFER_VAR + COMPILE_STACK_TOP.laststart_offset;
3822                 this_group_regnum = COMPILE_STACK_TOP.regnum;
3823                 /* If we've reached MAX_REGNUM groups, then this open
3824                    won't actually generate any code, so we'll have to
3825                    clear pending_exact explicitly.  */
3826                 pending_exact = 0;
3827
3828                 /* We're at the end of the group, so now we know how many
3829                    groups were inside this one.  */
3830                 if (this_group_regnum <= MAX_REGNUM)
3831                   {
3832                     UCHAR_T *inner_group_loc
3833                       = COMPILED_BUFFER_VAR + COMPILE_STACK_TOP.inner_group_offset;
3834
3835                     *inner_group_loc = regnum - this_group_regnum;
3836                     BUF_PUSH_3 (stop_memory, this_group_regnum,
3837                                 regnum - this_group_regnum);
3838                   }
3839               }
3840               break;
3841
3842
3843             case '|':                                   /* `\|'.  */
3844               if (syntax & RE_LIMITED_OPS || syntax & RE_NO_BK_VBAR)
3845                 goto normal_backslash;
3846             handle_alt:
3847               if (syntax & RE_LIMITED_OPS)
3848                 goto normal_char;
3849
3850               /* Insert before the previous alternative a jump which
3851                  jumps to this alternative if the former fails.  */
3852               GET_BUFFER_SPACE (1 + OFFSET_ADDRESS_SIZE);
3853               INSERT_JUMP (on_failure_jump, begalt,
3854                            b + 2 + 2 * OFFSET_ADDRESS_SIZE);
3855               pending_exact = 0;
3856               b += 1 + OFFSET_ADDRESS_SIZE;
3857
3858               /* The alternative before this one has a jump after it
3859                  which gets executed if it gets matched.  Adjust that
3860                  jump so it will jump to this alternative's analogous
3861                  jump (put in below, which in turn will jump to the next
3862                  (if any) alternative's such jump, etc.).  The last such
3863                  jump jumps to the correct final destination.  A picture:
3864                           _____ _____
3865                           |   | |   |
3866                           |   v |   v
3867                          a | b   | c
3868
3869                  If we are at `b', then fixup_alt_jump right now points to a
3870                  three-byte space after `a'.  We'll put in the jump, set
3871                  fixup_alt_jump to right after `b', and leave behind three
3872                  bytes which we'll fill in when we get to after `c'.  */
3873
3874               if (fixup_alt_jump)
3875                 STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
3876
3877               /* Mark and leave space for a jump after this alternative,
3878                  to be filled in later either by next alternative or
3879                  when know we're at the end of a series of alternatives.  */
3880               fixup_alt_jump = b;
3881               GET_BUFFER_SPACE (1 + OFFSET_ADDRESS_SIZE);
3882               b += 1 + OFFSET_ADDRESS_SIZE;
3883
3884               laststart = 0;
3885               begalt = b;
3886               break;
3887
3888
3889             case '{':
3890               /* If \{ is a literal.  */
3891               if (!(syntax & RE_INTERVALS)
3892                      /* If we're at `\{' and it's not the open-interval
3893                         operator.  */
3894                   || (syntax & RE_NO_BK_BRACES))
3895                 goto normal_backslash;
3896
3897             handle_interval:
3898               {
3899                 /* If got here, then the syntax allows intervals.  */
3900
3901                 /* At least (most) this many matches must be made.  */
3902                 int lower_bound = -1, upper_bound = -1;
3903
3904                 /* Place in the uncompiled pattern (i.e., just after
3905                    the '{') to go back to if the interval is invalid.  */
3906                 const CHAR_T *beg_interval = p;
3907
3908                 if (p == pend)
3909                   goto invalid_interval;
3910
3911                 GET_UNSIGNED_NUMBER (lower_bound);
3912
3913                 if (c == ',')
3914                   {
3915                     GET_UNSIGNED_NUMBER (upper_bound);
3916                     if (upper_bound < 0)
3917                       upper_bound = RE_DUP_MAX;
3918                   }
3919                 else
3920                   /* Interval such as `{1}' => match exactly once. */
3921                   upper_bound = lower_bound;
3922
3923                 if (! (0 <= lower_bound && lower_bound <= upper_bound))
3924                   goto invalid_interval;
3925
3926                 if (!(syntax & RE_NO_BK_BRACES))
3927                   {
3928                     if (c != '\\' || p == pend)
3929                       goto invalid_interval;
3930                     PATFETCH (c);
3931                   }
3932
3933                 if (c != '}')
3934                   goto invalid_interval;
3935
3936                 /* If it's invalid to have no preceding re.  */
3937                 if (!laststart)
3938                   {
3939                     if (syntax & RE_CONTEXT_INVALID_OPS
3940                         && !(syntax & RE_INVALID_INTERVAL_ORD))
3941                       FREE_STACK_RETURN (REG_BADRPT);
3942                     else if (syntax & RE_CONTEXT_INDEP_OPS)
3943                       laststart = b;
3944                     else
3945                       goto unfetch_interval;
3946                   }
3947
3948                 /* We just parsed a valid interval.  */
3949
3950                 if (RE_DUP_MAX < upper_bound)
3951                   FREE_STACK_RETURN (REG_BADBR);
3952
3953                 /* If the upper bound is zero, don't want to succeed at
3954                    all; jump from `laststart' to `b + 3', which will be
3955                    the end of the buffer after we insert the jump.  */
3956                 /* ifdef WCHAR, 'b + 1 + OFFSET_ADDRESS_SIZE'
3957                    instead of 'b + 3'.  */
3958                  if (upper_bound == 0)
3959                    {
3960                      GET_BUFFER_SPACE (1 + OFFSET_ADDRESS_SIZE);
3961                      INSERT_JUMP (jump, laststart, b + 1
3962                                   + OFFSET_ADDRESS_SIZE);
3963                      b += 1 + OFFSET_ADDRESS_SIZE;
3964                    }
3965
3966                  /* Otherwise, we have a nontrivial interval.  When
3967                     we're all done, the pattern will look like:
3968                       set_number_at <jump count> <upper bound>
3969                       set_number_at <succeed_n count> <lower bound>
3970                       succeed_n <after jump addr> <succeed_n count>
3971                       <body of loop>
3972                       jump_n <succeed_n addr> <jump count>
3973                     (The upper bound and `jump_n' are omitted if
3974                     `upper_bound' is 1, though.)  */
3975                  else
3976                    { /* If the upper bound is > 1, we need to insert
3977                         more at the end of the loop.  */
3978                      unsigned nbytes = 2 + 4 * OFFSET_ADDRESS_SIZE +
3979                        (upper_bound > 1) * (2 + 4 * OFFSET_ADDRESS_SIZE);
3980
3981                      GET_BUFFER_SPACE (nbytes);
3982
3983                      /* Initialize lower bound of the `succeed_n', even
3984                         though it will be set during matching by its
3985                         attendant `set_number_at' (inserted next),
3986                         because `re_compile_fastmap' needs to know.
3987                         Jump to the `jump_n' we might insert below.  */
3988                      INSERT_JUMP2 (succeed_n, laststart,
3989                                    b + 1 + 2 * OFFSET_ADDRESS_SIZE
3990                                    + (upper_bound > 1) * (1 + 2 * OFFSET_ADDRESS_SIZE)
3991                                    , lower_bound);
3992                      b += 1 + 2 * OFFSET_ADDRESS_SIZE;
3993
3994                      /* Code to initialize the lower bound.  Insert
3995                         before the `succeed_n'.  The `5' is the last two
3996                         bytes of this `set_number_at', plus 3 bytes of
3997                         the following `succeed_n'.  */
3998                      /* ifdef WCHAR, The '1+2*OFFSET_ADDRESS_SIZE'
3999                         is the 'set_number_at', plus '1+OFFSET_ADDRESS_SIZE'
4000                         of the following `succeed_n'.  */
4001                      PREFIX(insert_op2) (set_number_at, laststart, 1
4002                                  + 2 * OFFSET_ADDRESS_SIZE, lower_bound, b);
4003                      b += 1 + 2 * OFFSET_ADDRESS_SIZE;
4004
4005                      if (upper_bound > 1)
4006                        { /* More than one repetition is allowed, so
4007                             append a backward jump to the `succeed_n'
4008                             that starts this interval.
4009
4010                             When we've reached this during matching,
4011                             we'll have matched the interval once, so
4012                             jump back only `upper_bound - 1' times.  */
4013                          STORE_JUMP2 (jump_n, b, laststart
4014                                       + 2 * OFFSET_ADDRESS_SIZE + 1,
4015                                       upper_bound - 1);
4016                          b += 1 + 2 * OFFSET_ADDRESS_SIZE;
4017
4018                          /* The location we want to set is the second
4019                             parameter of the `jump_n'; that is `b-2' as
4020                             an absolute address.  `laststart' will be
4021                             the `set_number_at' we're about to insert;
4022                             `laststart+3' the number to set, the source
4023                             for the relative address.  But we are
4024                             inserting into the middle of the pattern --
4025                             so everything is getting moved up by 5.
4026                             Conclusion: (b - 2) - (laststart + 3) + 5,
4027                             i.e., b - laststart.
4028
4029                             We insert this at the beginning of the loop
4030                             so that if we fail during matching, we'll
4031                             reinitialize the bounds.  */
4032                          PREFIX(insert_op2) (set_number_at, laststart,
4033                                              b - laststart,
4034                                              upper_bound - 1, b);
4035                          b += 1 + 2 * OFFSET_ADDRESS_SIZE;
4036                        }
4037                    }
4038                 pending_exact = 0;
4039                 break;
4040
4041               invalid_interval:
4042                 if (!(syntax & RE_INVALID_INTERVAL_ORD))
4043                   FREE_STACK_RETURN (p == pend ? REG_EBRACE : REG_BADBR);
4044               unfetch_interval:
4045                 /* Match the characters as literals.  */
4046                 p = beg_interval;
4047                 c = '{';
4048                 if (syntax & RE_NO_BK_BRACES)
4049                   goto normal_char;
4050                 else
4051                   goto normal_backslash;
4052               }
4053
4054 #ifdef emacs
4055             /* There is no way to specify the before_dot and after_dot
4056                operators.  rms says this is ok.  --karl  */
4057             case '=':
4058               BUF_PUSH (at_dot);
4059               break;
4060
4061             case 's':
4062               laststart = b;
4063               PATFETCH (c);
4064               BUF_PUSH_2 (syntaxspec, syntax_spec_code[c]);
4065               break;
4066
4067             case 'S':
4068               laststart = b;
4069               PATFETCH (c);
4070               BUF_PUSH_2 (notsyntaxspec, syntax_spec_code[c]);
4071               break;
4072 #endif /* emacs */
4073
4074
4075             case 'w':
4076               if (syntax & RE_NO_GNU_OPS)
4077                 goto normal_char;
4078               laststart = b;
4079               BUF_PUSH (wordchar);
4080               break;
4081
4082
4083             case 'W':
4084               if (syntax & RE_NO_GNU_OPS)
4085                 goto normal_char;
4086               laststart = b;
4087               BUF_PUSH (notwordchar);
4088               break;
4089
4090
4091             case '<':
4092               if (syntax & RE_NO_GNU_OPS)
4093                 goto normal_char;
4094               BUF_PUSH (wordbeg);
4095               break;
4096
4097             case '>':
4098               if (syntax & RE_NO_GNU_OPS)
4099                 goto normal_char;
4100               BUF_PUSH (wordend);
4101               break;
4102
4103             case 'b':
4104               if (syntax & RE_NO_GNU_OPS)
4105                 goto normal_char;
4106               BUF_PUSH (wordbound);
4107               break;
4108
4109             case 'B':
4110               if (syntax & RE_NO_GNU_OPS)
4111                 goto normal_char;
4112               BUF_PUSH (notwordbound);
4113               break;
4114
4115             case '`':
4116               if (syntax & RE_NO_GNU_OPS)
4117                 goto normal_char;
4118               BUF_PUSH (begbuf);
4119               break;
4120
4121             case '\'':
4122               if (syntax & RE_NO_GNU_OPS)
4123                 goto normal_char;
4124               BUF_PUSH (endbuf);
4125               break;
4126
4127             case '1': case '2': case '3': case '4': case '5':
4128             case '6': case '7': case '8': case '9':
4129               if (syntax & RE_NO_BK_REFS)
4130                 goto normal_char;
4131
4132               c1 = c - '0';
4133
4134               if (c1 > regnum)
4135                 FREE_STACK_RETURN (REG_ESUBREG);
4136
4137               /* Can't back reference to a subexpression if inside of it.  */
4138               if (group_in_compile_stack (compile_stack, (regnum_t) c1))
4139                 goto normal_char;
4140
4141               laststart = b;
4142               BUF_PUSH_2 (duplicate, c1);
4143               break;
4144
4145
4146             case '+':
4147             case '?':
4148               if (syntax & RE_BK_PLUS_QM)
4149                 goto handle_plus;
4150               else
4151                 goto normal_backslash;
4152
4153             default:
4154             normal_backslash:
4155               /* You might think it would be useful for \ to mean
4156                  not to translate; but if we don't translate it
4157                  it will never match anything.  */
4158               c = TRANSLATE (c);
4159               goto normal_char;
4160             }
4161           break;
4162
4163
4164         default:
4165         /* Expects the character in `c'.  */
4166         normal_char:
4167               /* If no exactn currently being built.  */
4168           if (!pending_exact
4169 #ifdef WCHAR
4170               /* If last exactn handle binary(or character) and
4171                  new exactn handle character(or binary).  */
4172               || is_exactn_bin != is_binary[p - 1 - pattern]
4173 #endif /* WCHAR */
4174
4175               /* If last exactn not at current position.  */
4176               || pending_exact + *pending_exact + 1 != b
4177
4178               /* We have only one byte following the exactn for the count.  */
4179               || *pending_exact == (1 << BYTEWIDTH) - 1
4180
4181               /* If followed by a repetition operator.  */
4182               || *p == '*' || *p == '^'
4183               || ((syntax & RE_BK_PLUS_QM)
4184                   ? *p == '\\' && (p[1] == '+' || p[1] == '?')
4185                   : (*p == '+' || *p == '?'))
4186               || ((syntax & RE_INTERVALS)
4187                   && ((syntax & RE_NO_BK_BRACES)
4188                       ? *p == '{'
4189                       : (p[0] == '\\' && p[1] == '{'))))
4190             {
4191               /* Start building a new exactn.  */
4192
4193               laststart = b;
4194
4195 #ifdef WCHAR
4196               /* Is this exactn binary data or character? */
4197               is_exactn_bin = is_binary[p - 1 - pattern];
4198               if (is_exactn_bin)
4199                   BUF_PUSH_2 (exactn_bin, 0);
4200               else
4201                   BUF_PUSH_2 (exactn, 0);
4202 #else
4203               BUF_PUSH_2 (exactn, 0);
4204 #endif /* WCHAR */
4205               pending_exact = b - 1;
4206             }
4207
4208           BUF_PUSH (c);
4209           (*pending_exact)++;
4210           break;
4211         } /* switch (c) */
4212     } /* while p != pend */
4213
4214
4215   /* Through the pattern now.  */
4216
4217   if (fixup_alt_jump)
4218     STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
4219
4220   if (!COMPILE_STACK_EMPTY)
4221     FREE_STACK_RETURN (REG_EPAREN);
4222
4223   /* If we don't want backtracking, force success
4224      the first time we reach the end of the compiled pattern.  */
4225   if (syntax & RE_NO_POSIX_BACKTRACKING)
4226     BUF_PUSH (succeed);
4227
4228 #ifdef WCHAR
4229   free (pattern);
4230   free (mbs_offset);
4231   free (is_binary);
4232 #endif
4233   free (compile_stack.stack);
4234
4235   /* We have succeeded; set the length of the buffer.  */
4236 #ifdef WCHAR
4237   bufp->used = (uintptr_t) b - (uintptr_t) COMPILED_BUFFER_VAR;
4238 #else
4239   bufp->used = b - bufp->buffer;
4240 #endif
4241
4242 #ifdef DEBUG
4243   if (debug)
4244     {
4245       DEBUG_PRINT1 ("\nCompiled pattern: \n");
4246       PREFIX(print_compiled_pattern) (bufp);
4247     }
4248 #endif /* DEBUG */
4249
4250 #ifndef MATCH_MAY_ALLOCATE
4251   /* Initialize the failure stack to the largest possible stack.  This
4252      isn't necessary unless we're trying to avoid calling alloca in
4253      the search and match routines.  */
4254   {
4255     int num_regs = bufp->re_nsub + 1;
4256
4257     /* Since DOUBLE_FAIL_STACK refuses to double only if the current size
4258        is strictly greater than re_max_failures, the largest possible stack
4259        is 2 * re_max_failures failure points.  */
4260     if (fail_stack.size < (2 * re_max_failures * MAX_FAILURE_ITEMS))
4261       {
4262         fail_stack.size = (2 * re_max_failures * MAX_FAILURE_ITEMS);
4263
4264 # ifdef emacs
4265         if (! fail_stack.stack)
4266           fail_stack.stack
4267             = (PREFIX(fail_stack_elt_t) *) xmalloc (fail_stack.size
4268                                     * sizeof (PREFIX(fail_stack_elt_t)));
4269         else
4270           fail_stack.stack
4271             = (PREFIX(fail_stack_elt_t) *) xrealloc (fail_stack.stack,
4272                                      (fail_stack.size
4273                                       * sizeof (PREFIX(fail_stack_elt_t))));
4274 # else /* not emacs */
4275         if (! fail_stack.stack)
4276           fail_stack.stack
4277             = (PREFIX(fail_stack_elt_t) *) malloc (fail_stack.size
4278                                    * sizeof (PREFIX(fail_stack_elt_t)));
4279         else
4280           fail_stack.stack
4281             = (PREFIX(fail_stack_elt_t) *) realloc (fail_stack.stack,
4282                                             (fail_stack.size
4283                                      * sizeof (PREFIX(fail_stack_elt_t))));
4284 # endif /* not emacs */
4285       }
4286
4287    PREFIX(regex_grow_registers) (num_regs);
4288   }
4289 #endif /* not MATCH_MAY_ALLOCATE */
4290
4291   return REG_NOERROR;
4292 } /* regex_compile */
4293
4294 /* Subroutines for `regex_compile'.  */
4295
4296 /* Store OP at LOC followed by two-byte integer parameter ARG.  */
4297 /* ifdef WCHAR, integer parameter is 1 wchar_t.  */
4298
4299 static void
4300 PREFIX(store_op1) (op, loc, arg)
4301     re_opcode_t op;
4302     UCHAR_T *loc;
4303     int arg;
4304 {
4305   *loc = (UCHAR_T) op;
4306   STORE_NUMBER (loc + 1, arg);
4307 }
4308
4309
4310 /* Like `store_op1', but for two two-byte parameters ARG1 and ARG2.  */
4311 /* ifdef WCHAR, integer parameter is 1 wchar_t.  */
4312
4313 static void
4314 PREFIX(store_op2) (op, loc, arg1, arg2)
4315     re_opcode_t op;
4316     UCHAR_T *loc;
4317     int arg1, arg2;
4318 {
4319   *loc = (UCHAR_T) op;
4320   STORE_NUMBER (loc + 1, arg1);
4321   STORE_NUMBER (loc + 1 + OFFSET_ADDRESS_SIZE, arg2);
4322 }
4323
4324
4325 /* Copy the bytes from LOC to END to open up three bytes of space at LOC
4326    for OP followed by two-byte integer parameter ARG.  */
4327 /* ifdef WCHAR, integer parameter is 1 wchar_t.  */
4328
4329 static void
4330 PREFIX(insert_op1) (op, loc, arg, end)
4331     re_opcode_t op;
4332     UCHAR_T *loc;
4333     int arg;
4334     UCHAR_T *end;
4335 {
4336   register UCHAR_T *pfrom = end;
4337   register UCHAR_T *pto = end + 1 + OFFSET_ADDRESS_SIZE;
4338
4339   while (pfrom != loc)
4340     *--pto = *--pfrom;
4341
4342   PREFIX(store_op1) (op, loc, arg);
4343 }
4344
4345
4346 /* Like `insert_op1', but for two two-byte parameters ARG1 and ARG2.  */
4347 /* ifdef WCHAR, integer parameter is 1 wchar_t.  */
4348
4349 static void
4350 PREFIX(insert_op2) (op, loc, arg1, arg2, end)
4351     re_opcode_t op;
4352     UCHAR_T *loc;
4353     int arg1, arg2;
4354     UCHAR_T *end;
4355 {
4356   register UCHAR_T *pfrom = end;
4357   register UCHAR_T *pto = end + 1 + 2 * OFFSET_ADDRESS_SIZE;
4358
4359   while (pfrom != loc)
4360     *--pto = *--pfrom;
4361
4362   PREFIX(store_op2) (op, loc, arg1, arg2);
4363 }
4364
4365
4366 /* P points to just after a ^ in PATTERN.  Return true if that ^ comes
4367    after an alternative or a begin-subexpression.  We assume there is at
4368    least one character before the ^.  */
4369
4370 static boolean
4371 PREFIX(at_begline_loc_p) (pattern, p, syntax)
4372     const CHAR_T *pattern, *p;
4373     reg_syntax_t syntax;
4374 {
4375   const CHAR_T *prev = p - 2;
4376   boolean prev_prev_backslash = prev > pattern && prev[-1] == '\\';
4377
4378   return
4379        /* After a subexpression?  */
4380        (*prev == '(' && (syntax & RE_NO_BK_PARENS || prev_prev_backslash))
4381        /* After an alternative?  */
4382     || (*prev == '|' && (syntax & RE_NO_BK_VBAR || prev_prev_backslash));
4383 }
4384
4385
4386 /* The dual of at_begline_loc_p.  This one is for $.  We assume there is
4387    at least one character after the $, i.e., `P < PEND'.  */
4388
4389 static boolean
4390 PREFIX(at_endline_loc_p) (p, pend, syntax)
4391     const CHAR_T *p, *pend;
4392     reg_syntax_t syntax;
4393 {
4394   const CHAR_T *next = p;
4395   boolean next_backslash = *next == '\\';
4396   const CHAR_T *next_next = p + 1 < pend ? p + 1 : 0;
4397
4398   return
4399        /* Before a subexpression?  */
4400        (syntax & RE_NO_BK_PARENS ? *next == ')'
4401         : next_backslash && next_next && *next_next == ')')
4402        /* Before an alternative?  */
4403     || (syntax & RE_NO_BK_VBAR ? *next == '|'
4404         : next_backslash && next_next && *next_next == '|');
4405 }
4406
4407 #else /* not INSIDE_RECURSION */
4408
4409 /* Returns true if REGNUM is in one of COMPILE_STACK's elements and
4410    false if it's not.  */
4411
4412 static boolean
4413 group_in_compile_stack (compile_stack, regnum)
4414     compile_stack_type compile_stack;
4415     regnum_t regnum;
4416 {
4417   int this_element;
4418
4419   for (this_element = compile_stack.avail - 1;
4420        this_element >= 0;
4421        this_element--)
4422     if (compile_stack.stack[this_element].regnum == regnum)
4423       return true;
4424
4425   return false;
4426 }
4427 #endif /* not INSIDE_RECURSION */
4428
4429 #ifdef INSIDE_RECURSION
4430
4431 #ifdef WCHAR
4432 /* This insert space, which size is "num", into the pattern at "loc".
4433    "end" must point the end of the allocated buffer.  */
4434 static void
4435 insert_space (num, loc, end)
4436      int num;
4437      CHAR_T *loc;
4438      CHAR_T *end;
4439 {
4440   register CHAR_T *pto = end;
4441   register CHAR_T *pfrom = end - num;
4442
4443   while (pfrom >= loc)
4444     *pto-- = *pfrom--;
4445 }
4446 #endif /* WCHAR */
4447
4448 #ifdef WCHAR
4449 static reg_errcode_t
4450 wcs_compile_range (range_start_char, p_ptr, pend, translate, syntax, b,
4451                    char_set)
4452      CHAR_T range_start_char;
4453      const CHAR_T **p_ptr, *pend;
4454      CHAR_T *char_set, *b;
4455      RE_TRANSLATE_TYPE translate;
4456      reg_syntax_t syntax;
4457 {
4458   const CHAR_T *p = *p_ptr;
4459   CHAR_T range_start, range_end;
4460   reg_errcode_t ret;
4461 # ifdef _LIBC
4462   uint32_t nrules;
4463   uint32_t start_val, end_val;
4464 # endif
4465   if (p == pend)
4466     return REG_ERANGE;
4467
4468 # ifdef _LIBC
4469   nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
4470   if (nrules != 0)
4471     {
4472       const char *collseq = (const char *) _NL_CURRENT(LC_COLLATE,
4473                                                        _NL_COLLATE_COLLSEQWC);
4474       const unsigned char *extra = (const unsigned char *)
4475         _NL_CURRENT (LC_COLLATE, _NL_COLLATE_SYMB_EXTRAMB);
4476
4477       if (range_start_char < -1)
4478         {
4479           /* range_start is a collating symbol.  */
4480           int32_t *wextra;
4481           /* Retreive the index and get collation sequence value.  */
4482           wextra = (int32_t*)(extra + char_set[-range_start_char]);
4483           start_val = wextra[1 + *wextra];
4484         }
4485       else
4486         start_val = collseq_table_lookup(collseq, TRANSLATE(range_start_char));
4487
4488       end_val = collseq_table_lookup (collseq, TRANSLATE (p[0]));
4489
4490       /* Report an error if the range is empty and the syntax prohibits
4491          this.  */
4492       ret = ((syntax & RE_NO_EMPTY_RANGES)
4493              && (start_val > end_val))? REG_ERANGE : REG_NOERROR;
4494
4495       /* Insert space to the end of the char_ranges.  */
4496       insert_space(2, b - char_set[5] - 2, b - 1);
4497       *(b - char_set[5] - 2) = (wchar_t)start_val;
4498       *(b - char_set[5] - 1) = (wchar_t)end_val;
4499       char_set[4]++; /* ranges_index */
4500     }
4501   else
4502 # endif
4503     {
4504       range_start = (range_start_char >= 0)? TRANSLATE (range_start_char):
4505         range_start_char;
4506       range_end = TRANSLATE (p[0]);
4507       /* Report an error if the range is empty and the syntax prohibits
4508          this.  */
4509       ret = ((syntax & RE_NO_EMPTY_RANGES)
4510              && (range_start > range_end))? REG_ERANGE : REG_NOERROR;
4511
4512       /* Insert space to the end of the char_ranges.  */
4513       insert_space(2, b - char_set[5] - 2, b - 1);
4514       *(b - char_set[5] - 2) = range_start;
4515       *(b - char_set[5] - 1) = range_end;
4516       char_set[4]++; /* ranges_index */
4517     }
4518   /* Have to increment the pointer into the pattern string, so the
4519      caller isn't still at the ending character.  */
4520   (*p_ptr)++;
4521
4522   return ret;
4523 }
4524 #else /* BYTE */
4525 /* Read the ending character of a range (in a bracket expression) from the
4526    uncompiled pattern *P_PTR (which ends at PEND).  We assume the
4527    starting character is in `P[-2]'.  (`P[-1]' is the character `-'.)
4528    Then we set the translation of all bits between the starting and
4529    ending characters (inclusive) in the compiled pattern B.
4530
4531    Return an error code.
4532
4533    We use these short variable names so we can use the same macros as
4534    `regex_compile' itself.  */
4535
4536 static reg_errcode_t
4537 byte_compile_range (range_start_char, p_ptr, pend, translate, syntax, b)
4538      unsigned int range_start_char;
4539      const char **p_ptr, *pend;
4540      RE_TRANSLATE_TYPE translate;
4541      reg_syntax_t syntax;
4542      unsigned char *b;
4543 {
4544   unsigned this_char;
4545   const char *p = *p_ptr;
4546   reg_errcode_t ret;
4547 # if _LIBC
4548   const unsigned char *collseq;
4549   unsigned int start_colseq;
4550   unsigned int end_colseq;
4551 # else
4552   unsigned end_char;
4553 # endif
4554
4555   if (p == pend)
4556     return REG_ERANGE;
4557
4558   /* Have to increment the pointer into the pattern string, so the
4559      caller isn't still at the ending character.  */
4560   (*p_ptr)++;
4561
4562   /* Report an error if the range is empty and the syntax prohibits this.  */
4563   ret = syntax & RE_NO_EMPTY_RANGES ? REG_ERANGE : REG_NOERROR;
4564
4565 # if _LIBC
4566   collseq = (const unsigned char *) _NL_CURRENT (LC_COLLATE,
4567                                                  _NL_COLLATE_COLLSEQMB);
4568
4569   start_colseq = collseq[(unsigned char) TRANSLATE (range_start_char)];
4570   end_colseq = collseq[(unsigned char) TRANSLATE (p[0])];
4571   for (this_char = 0; this_char <= (unsigned char) -1; ++this_char)
4572     {
4573       unsigned int this_colseq = collseq[(unsigned char) TRANSLATE (this_char)];
4574
4575       if (start_colseq <= this_colseq && this_colseq <= end_colseq)
4576         {
4577           SET_LIST_BIT (TRANSLATE (this_char));
4578           ret = REG_NOERROR;
4579         }
4580     }
4581 # else
4582   /* Here we see why `this_char' has to be larger than an `unsigned
4583      char' -- we would otherwise go into an infinite loop, since all
4584      characters <= 0xff.  */
4585   range_start_char = TRANSLATE (range_start_char);
4586   /* TRANSLATE(p[0]) is casted to char (not unsigned char) in TRANSLATE,
4587      and some compilers cast it to int implicitly, so following for_loop
4588      may fall to (almost) infinite loop.
4589      e.g. If translate[p[0]] = 0xff, end_char may equals to 0xffffffff.
4590      To avoid this, we cast p[0] to unsigned int and truncate it.  */
4591   end_char = ((unsigned)TRANSLATE(p[0]) & ((1 << BYTEWIDTH) - 1));
4592
4593   for (this_char = range_start_char; this_char <= end_char; ++this_char)
4594     {
4595       SET_LIST_BIT (TRANSLATE (this_char));
4596       ret = REG_NOERROR;
4597     }
4598 # endif
4599
4600   return ret;
4601 }
4602 #endif /* WCHAR */
4603 \f
4604 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
4605    BUFP.  A fastmap records which of the (1 << BYTEWIDTH) possible
4606    characters can start a string that matches the pattern.  This fastmap
4607    is used by re_search to skip quickly over impossible starting points.
4608
4609    The caller must supply the address of a (1 << BYTEWIDTH)-byte data
4610    area as BUFP->fastmap.
4611
4612    We set the `fastmap', `fastmap_accurate', and `can_be_null' fields in
4613    the pattern buffer.
4614
4615    Returns 0 if we succeed, -2 if an internal error.   */
4616
4617 #ifdef WCHAR
4618 /* local function for re_compile_fastmap.
4619    truncate wchar_t character to char.  */
4620 static unsigned char truncate_wchar (CHAR_T c);
4621
4622 static unsigned char
4623 truncate_wchar (c)
4624      CHAR_T c;
4625 {
4626   unsigned char buf[MB_LEN_MAX];
4627   int retval = wctomb(buf, c);
4628   return retval > 0 ? buf[0] : (unsigned char)c;
4629 }
4630 #endif /* WCHAR */
4631
4632 static int
4633 PREFIX(re_compile_fastmap) (bufp)
4634      struct re_pattern_buffer *bufp;
4635 {
4636   int j, k;
4637 #ifdef MATCH_MAY_ALLOCATE
4638   PREFIX(fail_stack_type) fail_stack;
4639 #endif
4640 #ifndef REGEX_MALLOC
4641   char *destination;
4642 #endif
4643
4644   register char *fastmap = bufp->fastmap;
4645
4646 #ifdef WCHAR
4647   /* We need to cast pattern to (wchar_t*), because we casted this compiled
4648      pattern to (char*) in regex_compile.  */
4649   UCHAR_T *pattern = (UCHAR_T*)bufp->buffer;
4650   register UCHAR_T *pend = (UCHAR_T*) (bufp->buffer + bufp->used);
4651 #else /* BYTE */
4652   UCHAR_T *pattern = bufp->buffer;
4653   register UCHAR_T *pend = pattern + bufp->used;
4654 #endif /* WCHAR */
4655   UCHAR_T *p = pattern;
4656
4657 #ifdef REL_ALLOC
4658   /* This holds the pointer to the failure stack, when
4659      it is allocated relocatably.  */
4660   fail_stack_elt_t *failure_stack_ptr;
4661 #endif
4662
4663   /* Assume that each path through the pattern can be null until
4664      proven otherwise.  We set this false at the bottom of switch
4665      statement, to which we get only if a particular path doesn't
4666      match the empty string.  */
4667   boolean path_can_be_null = true;
4668
4669   /* We aren't doing a `succeed_n' to begin with.  */
4670   boolean succeed_n_p = false;
4671
4672   assert (fastmap != NULL && p != NULL);
4673
4674   INIT_FAIL_STACK ();
4675   bzero (fastmap, 1 << BYTEWIDTH);  /* Assume nothing's valid.  */
4676   bufp->fastmap_accurate = 1;       /* It will be when we're done.  */
4677   bufp->can_be_null = 0;
4678
4679   while (1)
4680     {
4681       if (p == pend || *p == succeed)
4682         {
4683           /* We have reached the (effective) end of pattern.  */
4684           if (!FAIL_STACK_EMPTY ())
4685             {
4686               bufp->can_be_null |= path_can_be_null;
4687
4688               /* Reset for next path.  */
4689               path_can_be_null = true;
4690
4691               p = fail_stack.stack[--fail_stack.avail].pointer;
4692
4693               continue;
4694             }
4695           else
4696             break;
4697         }
4698
4699       /* We should never be about to go beyond the end of the pattern.  */
4700       assert (p < pend);
4701
4702       switch (SWITCH_ENUM_CAST ((re_opcode_t) *p++))
4703         {
4704
4705         /* I guess the idea here is to simply not bother with a fastmap
4706            if a backreference is used, since it's too hard to figure out
4707            the fastmap for the corresponding group.  Setting
4708            `can_be_null' stops `re_search_2' from using the fastmap, so
4709            that is all we do.  */
4710         case duplicate:
4711           bufp->can_be_null = 1;
4712           goto done;
4713
4714
4715       /* Following are the cases which match a character.  These end
4716          with `break'.  */
4717
4718 #ifdef WCHAR
4719         case exactn:
4720           fastmap[truncate_wchar(p[1])] = 1;
4721           break;
4722 #else /* BYTE */
4723         case exactn:
4724           fastmap[p[1]] = 1;
4725           break;
4726 #endif /* WCHAR */
4727 #ifdef MBS_SUPPORT
4728         case exactn_bin:
4729           fastmap[p[1]] = 1;
4730           break;
4731 #endif
4732
4733 #ifdef WCHAR
4734         /* It is hard to distinguish fastmap from (multi byte) characters
4735            which depends on current locale.  */
4736         case charset:
4737         case charset_not:
4738         case wordchar:
4739         case notwordchar:
4740           bufp->can_be_null = 1;
4741           goto done;
4742 #else /* BYTE */
4743         case charset:
4744           for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
4745             if (p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH)))
4746               fastmap[j] = 1;
4747           break;
4748
4749
4750         case charset_not:
4751           /* Chars beyond end of map must be allowed.  */
4752           for (j = *p * BYTEWIDTH; j < (1 << BYTEWIDTH); j++)
4753             fastmap[j] = 1;
4754
4755           for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
4756             if (!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))))
4757               fastmap[j] = 1;
4758           break;
4759
4760
4761         case wordchar:
4762           for (j = 0; j < (1 << BYTEWIDTH); j++)
4763             if (SYNTAX (j) == Sword)
4764               fastmap[j] = 1;
4765           break;
4766
4767
4768         case notwordchar:
4769           for (j = 0; j < (1 << BYTEWIDTH); j++)
4770             if (SYNTAX (j) != Sword)
4771               fastmap[j] = 1;
4772           break;
4773 #endif /* WCHAR */
4774
4775         case anychar:
4776           {
4777             int fastmap_newline = fastmap['\n'];
4778
4779             /* `.' matches anything ...  */
4780             for (j = 0; j < (1 << BYTEWIDTH); j++)
4781               fastmap[j] = 1;
4782
4783             /* ... except perhaps newline.  */
4784             if (!(bufp->syntax & RE_DOT_NEWLINE))
4785               fastmap['\n'] = fastmap_newline;
4786
4787             /* Return if we have already set `can_be_null'; if we have,
4788                then the fastmap is irrelevant.  Something's wrong here.  */
4789             else if (bufp->can_be_null)
4790               goto done;
4791
4792             /* Otherwise, have to check alternative paths.  */
4793             break;
4794           }
4795
4796 #ifdef emacs
4797         case syntaxspec:
4798           k = *p++;
4799           for (j = 0; j < (1 << BYTEWIDTH); j++)
4800             if (SYNTAX (j) == (enum syntaxcode) k)
4801               fastmap[j] = 1;
4802           break;
4803
4804
4805         case notsyntaxspec:
4806           k = *p++;
4807           for (j = 0; j < (1 << BYTEWIDTH); j++)
4808             if (SYNTAX (j) != (enum syntaxcode) k)
4809               fastmap[j] = 1;
4810           break;
4811
4812
4813       /* All cases after this match the empty string.  These end with
4814          `continue'.  */
4815
4816
4817         case before_dot:
4818         case at_dot:
4819         case after_dot:
4820           continue;
4821 #endif /* emacs */
4822
4823
4824         case no_op:
4825         case begline:
4826         case endline:
4827         case begbuf:
4828         case endbuf:
4829         case wordbound:
4830         case notwordbound:
4831         case wordbeg:
4832         case wordend:
4833         case push_dummy_failure:
4834           continue;
4835
4836
4837         case jump_n:
4838         case pop_failure_jump:
4839         case maybe_pop_jump:
4840         case jump:
4841         case jump_past_alt:
4842         case dummy_failure_jump:
4843           EXTRACT_NUMBER_AND_INCR (j, p);
4844           p += j;
4845           if (j > 0)
4846             continue;
4847
4848           /* Jump backward implies we just went through the body of a
4849              loop and matched nothing.  Opcode jumped to should be
4850              `on_failure_jump' or `succeed_n'.  Just treat it like an
4851              ordinary jump.  For a * loop, it has pushed its failure
4852              point already; if so, discard that as redundant.  */
4853           if ((re_opcode_t) *p != on_failure_jump
4854               && (re_opcode_t) *p != succeed_n)
4855             continue;
4856
4857           p++;
4858           EXTRACT_NUMBER_AND_INCR (j, p);
4859           p += j;
4860
4861           /* If what's on the stack is where we are now, pop it.  */
4862           if (!FAIL_STACK_EMPTY ()
4863               && fail_stack.stack[fail_stack.avail - 1].pointer == p)
4864             fail_stack.avail--;
4865
4866           continue;
4867
4868
4869         case on_failure_jump:
4870         case on_failure_keep_string_jump:
4871         handle_on_failure_jump:
4872           EXTRACT_NUMBER_AND_INCR (j, p);
4873
4874           /* For some patterns, e.g., `(a?)?', `p+j' here points to the
4875              end of the pattern.  We don't want to push such a point,
4876              since when we restore it above, entering the switch will
4877              increment `p' past the end of the pattern.  We don't need
4878              to push such a point since we obviously won't find any more
4879              fastmap entries beyond `pend'.  Such a pattern can match
4880              the null string, though.  */
4881           if (p + j < pend)
4882             {
4883               if (!PUSH_PATTERN_OP (p + j, fail_stack))
4884                 {
4885                   RESET_FAIL_STACK ();
4886                   return -2;
4887                 }
4888             }
4889           else
4890             bufp->can_be_null = 1;
4891
4892           if (succeed_n_p)
4893             {
4894               EXTRACT_NUMBER_AND_INCR (k, p);   /* Skip the n.  */
4895               succeed_n_p = false;
4896             }
4897
4898           continue;
4899
4900
4901         case succeed_n:
4902           /* Get to the number of times to succeed.  */
4903           p += OFFSET_ADDRESS_SIZE;
4904
4905           /* Increment p past the n for when k != 0.  */
4906           EXTRACT_NUMBER_AND_INCR (k, p);
4907           if (k == 0)
4908             {
4909               p -= 2 * OFFSET_ADDRESS_SIZE;
4910               succeed_n_p = true;  /* Spaghetti code alert.  */
4911               goto handle_on_failure_jump;
4912             }
4913           continue;
4914
4915
4916         case set_number_at:
4917           p += 2 * OFFSET_ADDRESS_SIZE;
4918           continue;
4919
4920
4921         case start_memory:
4922         case stop_memory:
4923           p += 2;
4924           continue;
4925
4926
4927         default:
4928           abort (); /* We have listed all the cases.  */
4929         } /* switch *p++ */
4930
4931       /* Getting here means we have found the possible starting
4932          characters for one path of the pattern -- and that the empty
4933          string does not match.  We need not follow this path further.
4934          Instead, look at the next alternative (remembered on the
4935          stack), or quit if no more.  The test at the top of the loop
4936          does these things.  */
4937       path_can_be_null = false;
4938       p = pend;
4939     } /* while p */
4940
4941   /* Set `can_be_null' for the last path (also the first path, if the
4942      pattern is empty).  */
4943   bufp->can_be_null |= path_can_be_null;
4944
4945  done:
4946   RESET_FAIL_STACK ();
4947   return 0;
4948 }
4949
4950 #else /* not INSIDE_RECURSION */
4951
4952 int
4953 re_compile_fastmap (bufp)
4954      struct re_pattern_buffer *bufp;
4955 {
4956 # ifdef MBS_SUPPORT
4957   if (MB_CUR_MAX != 1)
4958     return wcs_re_compile_fastmap(bufp);
4959   else
4960 # endif
4961     return byte_re_compile_fastmap(bufp);
4962 } /* re_compile_fastmap */
4963 #ifdef _LIBC
4964 weak_alias (__re_compile_fastmap, re_compile_fastmap)
4965 #endif
4966 \f
4967
4968 /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
4969    ENDS.  Subsequent matches using PATTERN_BUFFER and REGS will use
4970    this memory for recording register information.  STARTS and ENDS
4971    must be allocated using the malloc library routine, and must each
4972    be at least NUM_REGS * sizeof (regoff_t) bytes long.
4973
4974    If NUM_REGS == 0, then subsequent matches should allocate their own
4975    register data.
4976
4977    Unless this function is called, the first search or match using
4978    PATTERN_BUFFER will allocate its own register data, without
4979    freeing the old data.  */
4980
4981 void
4982 re_set_registers (bufp, regs, num_regs, starts, ends)
4983     struct re_pattern_buffer *bufp;
4984     struct re_registers *regs;
4985     unsigned num_regs;
4986     regoff_t *starts, *ends;
4987 {
4988   if (num_regs)
4989     {
4990       bufp->regs_allocated = REGS_REALLOCATE;
4991       regs->num_regs = num_regs;
4992       regs->start = starts;
4993       regs->end = ends;
4994     }
4995   else
4996     {
4997       bufp->regs_allocated = REGS_UNALLOCATED;
4998       regs->num_regs = 0;
4999       regs->start = regs->end = (regoff_t *) 0;
5000     }
5001 }
5002 #ifdef _LIBC
5003 weak_alias (__re_set_registers, re_set_registers)
5004 #endif
5005 \f
5006 /* Searching routines.  */
5007
5008 /* Like re_search_2, below, but only one string is specified, and
5009    doesn't let you say where to stop matching.  */
5010
5011 int
5012 re_search (bufp, string, size, startpos, range, regs)
5013      struct re_pattern_buffer *bufp;
5014      const char *string;
5015      int size, startpos, range;
5016      struct re_registers *regs;
5017 {
5018   return re_search_2 (bufp, NULL, 0, string, size, startpos, range,
5019                       regs, size);
5020 }
5021 #ifdef _LIBC
5022 weak_alias (__re_search, re_search)
5023 #endif
5024
5025
5026 /* Using the compiled pattern in BUFP->buffer, first tries to match the
5027    virtual concatenation of STRING1 and STRING2, starting first at index
5028    STARTPOS, then at STARTPOS + 1, and so on.
5029
5030    STRING1 and STRING2 have length SIZE1 and SIZE2, respectively.
5031
5032    RANGE is how far to scan while trying to match.  RANGE = 0 means try
5033    only at STARTPOS; in general, the last start tried is STARTPOS +
5034    RANGE.
5035
5036    In REGS, return the indices of the virtual concatenation of STRING1
5037    and STRING2 that matched the entire BUFP->buffer and its contained
5038    subexpressions.
5039
5040    Do not consider matching one past the index STOP in the virtual
5041    concatenation of STRING1 and STRING2.
5042
5043    We return either the position in the strings at which the match was
5044    found, -1 if no match, or -2 if error (such as failure
5045    stack overflow).  */
5046
5047 int
5048 re_search_2 (bufp, string1, size1, string2, size2, startpos, range, regs, stop)
5049      struct re_pattern_buffer *bufp;
5050      const char *string1, *string2;
5051      int size1, size2;
5052      int startpos;
5053      int range;
5054      struct re_registers *regs;
5055      int stop;
5056 {
5057 # ifdef MBS_SUPPORT
5058   if (MB_CUR_MAX != 1)
5059     return wcs_re_search_2 (bufp, string1, size1, string2, size2, startpos,
5060                             range, regs, stop);
5061   else
5062 # endif
5063     return byte_re_search_2 (bufp, string1, size1, string2, size2, startpos,
5064                              range, regs, stop);
5065 } /* re_search_2 */
5066 #ifdef _LIBC
5067 weak_alias (__re_search_2, re_search_2)
5068 #endif
5069
5070 #endif /* not INSIDE_RECURSION */
5071
5072 #ifdef INSIDE_RECURSION
5073
5074 #ifdef MATCH_MAY_ALLOCATE
5075 # define FREE_VAR(var) if (var) REGEX_FREE (var); var = NULL
5076 #else
5077 # define FREE_VAR(var) if (var) free (var); var = NULL
5078 #endif
5079
5080 #ifdef WCHAR
5081 # define MAX_ALLOCA_SIZE        2000
5082
5083 # define FREE_WCS_BUFFERS() \
5084   do {                                                                        \
5085     if (size1 > MAX_ALLOCA_SIZE)                                              \
5086       {                                                                       \
5087         free (wcs_string1);                                                   \
5088         free (mbs_offset1);                                                   \
5089       }                                                                       \
5090     else                                                                      \
5091       {                                                                       \
5092         FREE_VAR (wcs_string1);                                               \
5093         FREE_VAR (mbs_offset1);                                               \
5094       }                                                                       \
5095     if (size2 > MAX_ALLOCA_SIZE)                                              \
5096       {                                                                       \
5097         free (wcs_string2);                                                   \
5098         free (mbs_offset2);                                                   \
5099       }                                                                       \
5100     else                                                                      \
5101       {                                                                       \
5102         FREE_VAR (wcs_string2);                                               \
5103         FREE_VAR (mbs_offset2);                                               \
5104       }                                                                       \
5105   } while (0)
5106
5107 #endif
5108
5109
5110 static int
5111 PREFIX(re_search_2) (bufp, string1, size1, string2, size2, startpos, range,
5112                      regs, stop)
5113      struct re_pattern_buffer *bufp;
5114      const char *string1, *string2;
5115      int size1, size2;
5116      int startpos;
5117      int range;
5118      struct re_registers *regs;
5119      int stop;
5120 {
5121   int val;
5122   register char *fastmap = bufp->fastmap;
5123   register RE_TRANSLATE_TYPE translate = bufp->translate;
5124   int total_size = size1 + size2;
5125   int endpos = startpos + range;
5126 #ifdef WCHAR
5127   /* We need wchar_t* buffers correspond to cstring1, cstring2.  */
5128   wchar_t *wcs_string1 = NULL, *wcs_string2 = NULL;
5129   /* We need the size of wchar_t buffers correspond to csize1, csize2.  */
5130   int wcs_size1 = 0, wcs_size2 = 0;
5131   /* offset buffer for optimizatoin. See convert_mbs_to_wc.  */
5132   int *mbs_offset1 = NULL, *mbs_offset2 = NULL;
5133   /* They hold whether each wchar_t is binary data or not.  */
5134   char *is_binary = NULL;
5135 #endif /* WCHAR */
5136
5137   /* Check for out-of-range STARTPOS.  */
5138   if (startpos < 0 || startpos > total_size)
5139     return -1;
5140
5141   /* Fix up RANGE if it might eventually take us outside
5142      the virtual concatenation of STRING1 and STRING2.
5143      Make sure we won't move STARTPOS below 0 or above TOTAL_SIZE.  */
5144   if (endpos < 0)
5145     range = 0 - startpos;
5146   else if (endpos > total_size)
5147     range = total_size - startpos;
5148
5149   /* If the search isn't to be a backwards one, don't waste time in a
5150      search for a pattern that must be anchored.  */
5151   if (bufp->used > 0 && range > 0
5152       && ((re_opcode_t) bufp->buffer[0] == begbuf
5153           /* `begline' is like `begbuf' if it cannot match at newlines.  */
5154           || ((re_opcode_t) bufp->buffer[0] == begline
5155               && !bufp->newline_anchor)))
5156     {
5157       if (startpos > 0)
5158         return -1;
5159       else
5160         range = 1;
5161     }
5162
5163 #ifdef emacs
5164   /* In a forward search for something that starts with \=.
5165      don't keep searching past point.  */
5166   if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == at_dot && range > 0)
5167     {
5168       range = PT - startpos;
5169       if (range <= 0)
5170         return -1;
5171     }
5172 #endif /* emacs */
5173
5174   /* Update the fastmap now if not correct already.  */
5175   if (fastmap && !bufp->fastmap_accurate)
5176     if (re_compile_fastmap (bufp) == -2)
5177       return -2;
5178
5179 #ifdef WCHAR
5180   /* Allocate wchar_t array for wcs_string1 and wcs_string2 and
5181      fill them with converted string.  */
5182   if (size1 != 0)
5183     {
5184       if (size1 > MAX_ALLOCA_SIZE)
5185         {
5186           wcs_string1 = TALLOC (size1 + 1, CHAR_T);
5187           mbs_offset1 = TALLOC (size1 + 1, int);
5188           is_binary = TALLOC (size1 + 1, char);
5189         }
5190       else
5191         {
5192           wcs_string1 = REGEX_TALLOC (size1 + 1, CHAR_T);
5193           mbs_offset1 = REGEX_TALLOC (size1 + 1, int);
5194           is_binary = REGEX_TALLOC (size1 + 1, char);
5195         }
5196       if (!wcs_string1 || !mbs_offset1 || !is_binary)
5197         {
5198           if (size1 > MAX_ALLOCA_SIZE)
5199             {
5200               free (wcs_string1);
5201               free (mbs_offset1);
5202               free (is_binary);
5203             }
5204           else
5205             {
5206               FREE_VAR (wcs_string1);
5207               FREE_VAR (mbs_offset1);
5208               FREE_VAR (is_binary);
5209             }
5210           return -2;
5211         }
5212       wcs_size1 = convert_mbs_to_wcs(wcs_string1, string1, size1,
5213                                      mbs_offset1, is_binary);
5214       wcs_string1[wcs_size1] = L'\0'; /* for a sentinel  */
5215       if (size1 > MAX_ALLOCA_SIZE)
5216         free (is_binary);
5217       else
5218         FREE_VAR (is_binary);
5219     }
5220   if (size2 != 0)
5221     {
5222       if (size2 > MAX_ALLOCA_SIZE)
5223         {
5224           wcs_string2 = TALLOC (size2 + 1, CHAR_T);
5225           mbs_offset2 = TALLOC (size2 + 1, int);
5226           is_binary = TALLOC (size2 + 1, char);
5227         }
5228       else
5229         {
5230           wcs_string2 = REGEX_TALLOC (size2 + 1, CHAR_T);
5231           mbs_offset2 = REGEX_TALLOC (size2 + 1, int);
5232           is_binary = REGEX_TALLOC (size2 + 1, char);
5233         }
5234       if (!wcs_string2 || !mbs_offset2 || !is_binary)
5235         {
5236           FREE_WCS_BUFFERS ();
5237           if (size2 > MAX_ALLOCA_SIZE)
5238             free (is_binary);
5239           else
5240             FREE_VAR (is_binary);
5241           return -2;
5242         }
5243       wcs_size2 = convert_mbs_to_wcs(wcs_string2, string2, size2,
5244                                      mbs_offset2, is_binary);
5245       wcs_string2[wcs_size2] = L'\0'; /* for a sentinel  */
5246       if (size2 > MAX_ALLOCA_SIZE)
5247         free (is_binary);
5248       else
5249         FREE_VAR (is_binary);
5250     }
5251 #endif /* WCHAR */
5252
5253
5254   /* Loop through the string, looking for a place to start matching.  */
5255   for (;;)
5256     {
5257       /* If a fastmap is supplied, skip quickly over characters that
5258          cannot be the start of a match.  If the pattern can match the
5259          null string, however, we don't need to skip characters; we want
5260          the first null string.  */
5261       if (fastmap && startpos < total_size && !bufp->can_be_null)
5262         {
5263           if (range > 0)        /* Searching forwards.  */
5264             {
5265               register const char *d;
5266               register int lim = 0;
5267               int irange = range;
5268
5269               if (startpos < size1 && startpos + range >= size1)
5270                 lim = range - (size1 - startpos);
5271
5272               d = (startpos >= size1 ? string2 - size1 : string1) + startpos;
5273
5274               /* Written out as an if-else to avoid testing `translate'
5275                  inside the loop.  */
5276               if (translate)
5277                 while (range > lim
5278                        && !fastmap[(unsigned char)
5279                                    translate[(unsigned char) *d++]])
5280                   range--;
5281               else
5282                 while (range > lim && !fastmap[(unsigned char) *d++])
5283                   range--;
5284
5285               startpos += irange - range;
5286             }
5287           else                          /* Searching backwards.  */
5288             {
5289               register CHAR_T c = (size1 == 0 || startpos >= size1
5290                                       ? string2[startpos - size1]
5291                                       : string1[startpos]);
5292
5293               if (!fastmap[(unsigned char) TRANSLATE (c)])
5294                 goto advance;
5295             }
5296         }
5297
5298       /* If can't match the null string, and that's all we have left, fail.  */
5299       if (range >= 0 && startpos == total_size && fastmap
5300           && !bufp->can_be_null)
5301        {
5302 #ifdef WCHAR
5303          FREE_WCS_BUFFERS ();
5304 #endif
5305          return -1;
5306        }
5307
5308 #ifdef WCHAR
5309       val = wcs_re_match_2_internal (bufp, string1, size1, string2,
5310                                      size2, startpos, regs, stop,
5311                                      wcs_string1, wcs_size1,
5312                                      wcs_string2, wcs_size2,
5313                                      mbs_offset1, mbs_offset2);
5314 #else /* BYTE */
5315       val = byte_re_match_2_internal (bufp, string1, size1, string2,
5316                                       size2, startpos, regs, stop);
5317 #endif /* BYTE */
5318
5319 #ifndef REGEX_MALLOC
5320 # ifdef C_ALLOCA
5321       alloca (0);
5322 # endif
5323 #endif
5324
5325       if (val >= 0)
5326         {
5327 #ifdef WCHAR
5328           FREE_WCS_BUFFERS ();
5329 #endif
5330           return startpos;
5331         }
5332
5333       if (val == -2)
5334         {
5335 #ifdef WCHAR
5336           FREE_WCS_BUFFERS ();
5337 #endif
5338           return -2;
5339         }
5340
5341     advance:
5342       if (!range)
5343         break;
5344       else if (range > 0)
5345         {
5346           range--;
5347           startpos++;
5348         }
5349       else
5350         {
5351           range++;
5352           startpos--;
5353         }
5354     }
5355 #ifdef WCHAR
5356   FREE_WCS_BUFFERS ();
5357 #endif
5358   return -1;
5359 }
5360
5361 #ifdef WCHAR
5362 /* This converts PTR, a pointer into one of the search wchar_t strings
5363    `string1' and `string2' into an multibyte string offset from the
5364    beginning of that string. We use mbs_offset to optimize.
5365    See convert_mbs_to_wcs.  */
5366 # define POINTER_TO_OFFSET(ptr)                                         \
5367   (FIRST_STRING_P (ptr)                                                 \
5368    ? ((regoff_t)(mbs_offset1 != NULL? mbs_offset1[(ptr)-string1] : 0))  \
5369    : ((regoff_t)((mbs_offset2 != NULL? mbs_offset2[(ptr)-string2] : 0)  \
5370                  + csize1)))
5371 #else /* BYTE */
5372 /* This converts PTR, a pointer into one of the search strings `string1'
5373    and `string2' into an offset from the beginning of that string.  */
5374 # define POINTER_TO_OFFSET(ptr)                 \
5375   (FIRST_STRING_P (ptr)                         \
5376    ? ((regoff_t) ((ptr) - string1))             \
5377    : ((regoff_t) ((ptr) - string2 + size1)))
5378 #endif /* WCHAR */
5379
5380 /* Macros for dealing with the split strings in re_match_2.  */
5381
5382 #define MATCHING_IN_FIRST_STRING  (dend == end_match_1)
5383
5384 /* Call before fetching a character with *d.  This switches over to
5385    string2 if necessary.  */
5386 #define PREFETCH()                                                      \
5387   while (d == dend)                                                     \
5388     {                                                                   \
5389       /* End of string2 => fail.  */                                    \
5390       if (dend == end_match_2)                                          \
5391         goto fail;                                                      \
5392       /* End of string1 => advance to string2.  */                      \
5393       d = string2;                                                      \
5394       dend = end_match_2;                                               \
5395     }
5396
5397 /* Test if at very beginning or at very end of the virtual concatenation
5398    of `string1' and `string2'.  If only one string, it's `string2'.  */
5399 #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2)
5400 #define AT_STRINGS_END(d) ((d) == end2)
5401
5402
5403 /* Test if D points to a character which is word-constituent.  We have
5404    two special cases to check for: if past the end of string1, look at
5405    the first character in string2; and if before the beginning of
5406    string2, look at the last character in string1.  */
5407 #ifdef WCHAR
5408 /* Use internationalized API instead of SYNTAX.  */
5409 # define WORDCHAR_P(d)                                                  \
5410   (iswalnum ((wint_t)((d) == end1 ? *string2                            \
5411            : (d) == string2 - 1 ? *(end1 - 1) : *(d))) != 0             \
5412    || ((d) == end1 ? *string2                                           \
5413        : (d) == string2 - 1 ? *(end1 - 1) : *(d)) == L'_')
5414 #else /* BYTE */
5415 # define WORDCHAR_P(d)                                                  \
5416   (SYNTAX ((d) == end1 ? *string2                                       \
5417            : (d) == string2 - 1 ? *(end1 - 1) : *(d))                   \
5418    == Sword)
5419 #endif /* WCHAR */
5420
5421 /* Disabled due to a compiler bug -- see comment at case wordbound */
5422 #if 0
5423 /* Test if the character before D and the one at D differ with respect
5424    to being word-constituent.  */
5425 #define AT_WORD_BOUNDARY(d)                                             \
5426   (AT_STRINGS_BEG (d) || AT_STRINGS_END (d)                             \
5427    || WORDCHAR_P (d - 1) != WORDCHAR_P (d))
5428 #endif
5429
5430 /* Free everything we malloc.  */
5431 #ifdef MATCH_MAY_ALLOCATE
5432 # ifdef WCHAR
5433 #  define FREE_VARIABLES()                                              \
5434   do {                                                                  \
5435     REGEX_FREE_STACK (fail_stack.stack);                                \
5436     FREE_VAR (regstart);                                                \
5437     FREE_VAR (regend);                                                  \
5438     FREE_VAR (old_regstart);                                            \
5439     FREE_VAR (old_regend);                                              \
5440     FREE_VAR (best_regstart);                                           \
5441     FREE_VAR (best_regend);                                             \
5442     FREE_VAR (reg_info);                                                \
5443     FREE_VAR (reg_dummy);                                               \
5444     FREE_VAR (reg_info_dummy);                                          \
5445     if (!cant_free_wcs_buf)                                             \
5446       {                                                                 \
5447         FREE_VAR (string1);                                             \
5448         FREE_VAR (string2);                                             \
5449         FREE_VAR (mbs_offset1);                                         \
5450         FREE_VAR (mbs_offset2);                                         \
5451       }                                                                 \
5452   } while (0)
5453 # else /* BYTE */
5454 #  define FREE_VARIABLES()                                              \
5455   do {                                                                  \
5456     REGEX_FREE_STACK (fail_stack.stack);                                \
5457     FREE_VAR (regstart);                                                \
5458     FREE_VAR (regend);                                                  \
5459     FREE_VAR (old_regstart);                                            \
5460     FREE_VAR (old_regend);                                              \
5461     FREE_VAR (best_regstart);                                           \
5462     FREE_VAR (best_regend);                                             \
5463     FREE_VAR (reg_info);                                                \
5464     FREE_VAR (reg_dummy);                                               \
5465     FREE_VAR (reg_info_dummy);                                          \
5466   } while (0)
5467 # endif /* WCHAR */
5468 #else
5469 # ifdef WCHAR
5470 #  define FREE_VARIABLES()                                              \
5471   do {                                                                  \
5472     if (!cant_free_wcs_buf)                                             \
5473       {                                                                 \
5474         FREE_VAR (string1);                                             \
5475         FREE_VAR (string2);                                             \
5476         FREE_VAR (mbs_offset1);                                         \
5477         FREE_VAR (mbs_offset2);                                         \
5478       }                                                                 \
5479   } while (0)
5480 # else /* BYTE */
5481 #  define FREE_VARIABLES() ((void)0) /* Do nothing!  But inhibit gcc warning. */
5482 # endif /* WCHAR */
5483 #endif /* not MATCH_MAY_ALLOCATE */
5484
5485 /* These values must meet several constraints.  They must not be valid
5486    register values; since we have a limit of 255 registers (because
5487    we use only one byte in the pattern for the register number), we can
5488    use numbers larger than 255.  They must differ by 1, because of
5489    NUM_FAILURE_ITEMS above.  And the value for the lowest register must
5490    be larger than the value for the highest register, so we do not try
5491    to actually save any registers when none are active.  */
5492 #define NO_HIGHEST_ACTIVE_REG (1 << BYTEWIDTH)
5493 #define NO_LOWEST_ACTIVE_REG (NO_HIGHEST_ACTIVE_REG + 1)
5494 \f
5495 #else /* not INSIDE_RECURSION */
5496 /* Matching routines.  */
5497
5498 #ifndef emacs   /* Emacs never uses this.  */
5499 /* re_match is like re_match_2 except it takes only a single string.  */
5500
5501 int
5502 re_match (bufp, string, size, pos, regs)
5503      struct re_pattern_buffer *bufp;
5504      const char *string;
5505      int size, pos;
5506      struct re_registers *regs;
5507 {
5508   int result;
5509 # ifdef MBS_SUPPORT
5510   if (MB_CUR_MAX != 1)
5511     result = wcs_re_match_2_internal (bufp, NULL, 0, string, size,
5512                                       pos, regs, size,
5513                                       NULL, 0, NULL, 0, NULL, NULL);
5514   else
5515 # endif
5516     result = byte_re_match_2_internal (bufp, NULL, 0, string, size,
5517                                   pos, regs, size);
5518 # ifndef REGEX_MALLOC
5519 #  ifdef C_ALLOCA
5520   alloca (0);
5521 #  endif
5522 # endif
5523   return result;
5524 }
5525 # ifdef _LIBC
5526 weak_alias (__re_match, re_match)
5527 # endif
5528 #endif /* not emacs */
5529
5530 #endif /* not INSIDE_RECURSION */
5531
5532 #ifdef INSIDE_RECURSION
5533 static boolean PREFIX(group_match_null_string_p) _RE_ARGS ((UCHAR_T **p,
5534                                                     UCHAR_T *end,
5535                                         PREFIX(register_info_type) *reg_info));
5536 static boolean PREFIX(alt_match_null_string_p) _RE_ARGS ((UCHAR_T *p,
5537                                                   UCHAR_T *end,
5538                                         PREFIX(register_info_type) *reg_info));
5539 static boolean PREFIX(common_op_match_null_string_p) _RE_ARGS ((UCHAR_T **p,
5540                                                         UCHAR_T *end,
5541                                         PREFIX(register_info_type) *reg_info));
5542 static int PREFIX(bcmp_translate) _RE_ARGS ((const CHAR_T *s1, const CHAR_T *s2,
5543                                      int len, char *translate));
5544 #else /* not INSIDE_RECURSION */
5545
5546 /* re_match_2 matches the compiled pattern in BUFP against the
5547    the (virtual) concatenation of STRING1 and STRING2 (of length SIZE1
5548    and SIZE2, respectively).  We start matching at POS, and stop
5549    matching at STOP.
5550
5551    If REGS is non-null and the `no_sub' field of BUFP is nonzero, we
5552    store offsets for the substring each group matched in REGS.  See the
5553    documentation for exactly how many groups we fill.
5554
5555    We return -1 if no match, -2 if an internal error (such as the
5556    failure stack overflowing).  Otherwise, we return the length of the
5557    matched substring.  */
5558
5559 int
5560 re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
5561      struct re_pattern_buffer *bufp;
5562      const char *string1, *string2;
5563      int size1, size2;
5564      int pos;
5565      struct re_registers *regs;
5566      int stop;
5567 {
5568   int result;
5569 # ifdef MBS_SUPPORT
5570   if (MB_CUR_MAX != 1)
5571     result = wcs_re_match_2_internal (bufp, string1, size1, string2, size2,
5572                                       pos, regs, stop,
5573                                       NULL, 0, NULL, 0, NULL, NULL);
5574   else
5575 # endif
5576     result = byte_re_match_2_internal (bufp, string1, size1, string2, size2,
5577                                   pos, regs, stop);
5578
5579 #ifndef REGEX_MALLOC
5580 # ifdef C_ALLOCA
5581   alloca (0);
5582 # endif
5583 #endif
5584   return result;
5585 }
5586 #ifdef _LIBC
5587 weak_alias (__re_match_2, re_match_2)
5588 #endif
5589
5590 #endif /* not INSIDE_RECURSION */
5591
5592 #ifdef INSIDE_RECURSION
5593
5594 #ifdef WCHAR
5595 static int count_mbs_length PARAMS ((int *, int));
5596
5597 /* This check the substring (from 0, to length) of the multibyte string,
5598    to which offset_buffer correspond. And count how many wchar_t_characters
5599    the substring occupy. We use offset_buffer to optimization.
5600    See convert_mbs_to_wcs.  */
5601
5602 static int
5603 count_mbs_length(offset_buffer, length)
5604      int *offset_buffer;
5605      int length;
5606 {
5607   int upper, lower;
5608
5609   /* Check whether the size is valid.  */
5610   if (length < 0)
5611     return -1;
5612
5613   if (offset_buffer == NULL)
5614     return 0;
5615
5616   /* If there are no multibyte character, offset_buffer[i] == i.
5617    Optmize for this case.  */
5618   if (offset_buffer[length] == length)
5619     return length;
5620
5621   /* Set up upper with length. (because for all i, offset_buffer[i] >= i)  */
5622   upper = length;
5623   lower = 0;
5624
5625   while (true)
5626     {
5627       int middle = (lower + upper) / 2;
5628       if (middle == lower || middle == upper)
5629         break;
5630       if (offset_buffer[middle] > length)
5631         upper = middle;
5632       else if (offset_buffer[middle] < length)
5633         lower = middle;
5634       else
5635         return middle;
5636     }
5637
5638   return -1;
5639 }
5640 #endif /* WCHAR */
5641
5642 /* This is a separate function so that we can force an alloca cleanup
5643    afterwards.  */
5644 #ifdef WCHAR
5645 static int
5646 wcs_re_match_2_internal (bufp, cstring1, csize1, cstring2, csize2, pos,
5647                          regs, stop, string1, size1, string2, size2,
5648                          mbs_offset1, mbs_offset2)
5649      struct re_pattern_buffer *bufp;
5650      const char *cstring1, *cstring2;
5651      int csize1, csize2;
5652      int pos;
5653      struct re_registers *regs;
5654      int stop;
5655      /* string1 == string2 == NULL means string1/2, size1/2 and
5656         mbs_offset1/2 need seting up in this function.  */
5657      /* We need wchar_t* buffers correspond to cstring1, cstring2.  */
5658      wchar_t *string1, *string2;
5659      /* We need the size of wchar_t buffers correspond to csize1, csize2.  */
5660      int size1, size2;
5661      /* offset buffer for optimizatoin. See convert_mbs_to_wc.  */
5662      int *mbs_offset1, *mbs_offset2;
5663 #else /* BYTE */
5664 static int
5665 byte_re_match_2_internal (bufp, string1, size1,string2, size2, pos,
5666                           regs, stop)
5667      struct re_pattern_buffer *bufp;
5668      const char *string1, *string2;
5669      int size1, size2;
5670      int pos;
5671      struct re_registers *regs;
5672      int stop;
5673 #endif /* BYTE */
5674 {
5675   /* General temporaries.  */
5676   int mcnt;
5677   UCHAR_T *p1;
5678 #ifdef WCHAR
5679   /* They hold whether each wchar_t is binary data or not.  */
5680   char *is_binary = NULL;
5681   /* If true, we can't free string1/2, mbs_offset1/2.  */
5682   int cant_free_wcs_buf = 1;
5683 #endif /* WCHAR */
5684
5685   /* Just past the end of the corresponding string.  */
5686   const CHAR_T *end1, *end2;
5687
5688   /* Pointers into string1 and string2, just past the last characters in
5689      each to consider matching.  */
5690   const CHAR_T *end_match_1, *end_match_2;
5691
5692   /* Where we are in the data, and the end of the current string.  */
5693   const CHAR_T *d, *dend;
5694
5695   /* Where we are in the pattern, and the end of the pattern.  */
5696 #ifdef WCHAR
5697   UCHAR_T *pattern, *p;
5698   register UCHAR_T *pend;
5699 #else /* BYTE */
5700   UCHAR_T *p = bufp->buffer;
5701   register UCHAR_T *pend = p + bufp->used;
5702 #endif /* WCHAR */
5703
5704   /* Mark the opcode just after a start_memory, so we can test for an
5705      empty subpattern when we get to the stop_memory.  */
5706   UCHAR_T *just_past_start_mem = 0;
5707
5708   /* We use this to map every character in the string.  */
5709   RE_TRANSLATE_TYPE translate = bufp->translate;
5710
5711   /* Failure point stack.  Each place that can handle a failure further
5712      down the line pushes a failure point on this stack.  It consists of
5713      restart, regend, and reg_info for all registers corresponding to
5714      the subexpressions we're currently inside, plus the number of such
5715      registers, and, finally, two char *'s.  The first char * is where
5716      to resume scanning the pattern; the second one is where to resume
5717      scanning the strings.  If the latter is zero, the failure point is
5718      a ``dummy''; if a failure happens and the failure point is a dummy,
5719      it gets discarded and the next next one is tried.  */
5720 #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global.  */
5721   PREFIX(fail_stack_type) fail_stack;
5722 #endif
5723 #ifdef DEBUG
5724   static unsigned failure_id;
5725   unsigned nfailure_points_pushed = 0, nfailure_points_popped = 0;
5726 #endif
5727
5728 #ifdef REL_ALLOC
5729   /* This holds the pointer to the failure stack, when
5730      it is allocated relocatably.  */
5731   fail_stack_elt_t *failure_stack_ptr;
5732 #endif
5733
5734   /* We fill all the registers internally, independent of what we
5735      return, for use in backreferences.  The number here includes
5736      an element for register zero.  */
5737   size_t num_regs = bufp->re_nsub + 1;
5738
5739   /* The currently active registers.  */
5740   active_reg_t lowest_active_reg = NO_LOWEST_ACTIVE_REG;
5741   active_reg_t highest_active_reg = NO_HIGHEST_ACTIVE_REG;
5742
5743   /* Information on the contents of registers. These are pointers into
5744      the input strings; they record just what was matched (on this
5745      attempt) by a subexpression part of the pattern, that is, the
5746      regnum-th regstart pointer points to where in the pattern we began
5747      matching and the regnum-th regend points to right after where we
5748      stopped matching the regnum-th subexpression.  (The zeroth register
5749      keeps track of what the whole pattern matches.)  */
5750 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
5751   const CHAR_T **regstart, **regend;
5752 #endif
5753
5754   /* If a group that's operated upon by a repetition operator fails to
5755      match anything, then the register for its start will need to be
5756      restored because it will have been set to wherever in the string we
5757      are when we last see its open-group operator.  Similarly for a
5758      register's end.  */
5759 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
5760   const CHAR_T **old_regstart, **old_regend;
5761 #endif
5762
5763   /* The is_active field of reg_info helps us keep track of which (possibly
5764      nested) subexpressions we are currently in. The matched_something
5765      field of reg_info[reg_num] helps us tell whether or not we have
5766      matched any of the pattern so far this time through the reg_num-th
5767      subexpression.  These two fields get reset each time through any
5768      loop their register is in.  */
5769 #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global.  */
5770   PREFIX(register_info_type) *reg_info;
5771 #endif
5772
5773   /* The following record the register info as found in the above
5774      variables when we find a match better than any we've seen before.
5775      This happens as we backtrack through the failure points, which in
5776      turn happens only if we have not yet matched the entire string. */
5777   unsigned best_regs_set = false;
5778 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
5779   const CHAR_T **best_regstart, **best_regend;
5780 #endif
5781
5782   /* Logically, this is `best_regend[0]'.  But we don't want to have to
5783      allocate space for that if we're not allocating space for anything
5784      else (see below).  Also, we never need info about register 0 for
5785      any of the other register vectors, and it seems rather a kludge to
5786      treat `best_regend' differently than the rest.  So we keep track of
5787      the end of the best match so far in a separate variable.  We
5788      initialize this to NULL so that when we backtrack the first time
5789      and need to test it, it's not garbage.  */
5790   const CHAR_T *match_end = NULL;
5791
5792   /* This helps SET_REGS_MATCHED avoid doing redundant work.  */
5793   int set_regs_matched_done = 0;
5794
5795   /* Used when we pop values we don't care about.  */
5796 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
5797   const CHAR_T **reg_dummy;
5798   PREFIX(register_info_type) *reg_info_dummy;
5799 #endif
5800
5801 #ifdef DEBUG
5802   /* Counts the total number of registers pushed.  */
5803   unsigned num_regs_pushed = 0;
5804 #endif
5805
5806   DEBUG_PRINT1 ("\n\nEntering re_match_2.\n");
5807
5808   INIT_FAIL_STACK ();
5809
5810 #ifdef MATCH_MAY_ALLOCATE
5811   /* Do not bother to initialize all the register variables if there are
5812      no groups in the pattern, as it takes a fair amount of time.  If
5813      there are groups, we include space for register 0 (the whole
5814      pattern), even though we never use it, since it simplifies the
5815      array indexing.  We should fix this.  */
5816   if (bufp->re_nsub)
5817     {
5818       regstart = REGEX_TALLOC (num_regs, const CHAR_T *);
5819       regend = REGEX_TALLOC (num_regs, const CHAR_T *);
5820       old_regstart = REGEX_TALLOC (num_regs, const CHAR_T *);
5821       old_regend = REGEX_TALLOC (num_regs, const CHAR_T *);
5822       best_regstart = REGEX_TALLOC (num_regs, const CHAR_T *);
5823       best_regend = REGEX_TALLOC (num_regs, const CHAR_T *);
5824       reg_info = REGEX_TALLOC (num_regs, PREFIX(register_info_type));
5825       reg_dummy = REGEX_TALLOC (num_regs, const CHAR_T *);
5826       reg_info_dummy = REGEX_TALLOC (num_regs, PREFIX(register_info_type));
5827
5828       if (!(regstart && regend && old_regstart && old_regend && reg_info
5829             && best_regstart && best_regend && reg_dummy && reg_info_dummy))
5830         {
5831           FREE_VARIABLES ();
5832           return -2;
5833         }
5834     }
5835   else
5836     {
5837       /* We must initialize all our variables to NULL, so that
5838          `FREE_VARIABLES' doesn't try to free them.  */
5839       regstart = regend = old_regstart = old_regend = best_regstart
5840         = best_regend = reg_dummy = NULL;
5841       reg_info = reg_info_dummy = (PREFIX(register_info_type) *) NULL;
5842     }
5843 #endif /* MATCH_MAY_ALLOCATE */
5844
5845   /* The starting position is bogus.  */
5846 #ifdef WCHAR
5847   if (pos < 0 || pos > csize1 + csize2)
5848 #else /* BYTE */
5849   if (pos < 0 || pos > size1 + size2)
5850 #endif
5851     {
5852       FREE_VARIABLES ();
5853       return -1;
5854     }
5855
5856 #ifdef WCHAR
5857   /* Allocate wchar_t array for string1 and string2 and
5858      fill them with converted string.  */
5859   if (string1 == NULL && string2 == NULL)
5860     {
5861       /* We need seting up buffers here.  */
5862
5863       /* We must free wcs buffers in this function.  */
5864       cant_free_wcs_buf = 0;
5865
5866       if (csize1 != 0)
5867         {
5868           string1 = REGEX_TALLOC (csize1 + 1, CHAR_T);
5869           mbs_offset1 = REGEX_TALLOC (csize1 + 1, int);
5870           is_binary = REGEX_TALLOC (csize1 + 1, char);
5871           if (!string1 || !mbs_offset1 || !is_binary)
5872             {
5873               FREE_VAR (string1);
5874               FREE_VAR (mbs_offset1);
5875               FREE_VAR (is_binary);
5876               return -2;
5877             }
5878         }
5879       if (csize2 != 0)
5880         {
5881           string2 = REGEX_TALLOC (csize2 + 1, CHAR_T);
5882           mbs_offset2 = REGEX_TALLOC (csize2 + 1, int);
5883           is_binary = REGEX_TALLOC (csize2 + 1, char);
5884           if (!string2 || !mbs_offset2 || !is_binary)
5885             {
5886               FREE_VAR (string1);
5887               FREE_VAR (mbs_offset1);
5888               FREE_VAR (string2);
5889               FREE_VAR (mbs_offset2);
5890               FREE_VAR (is_binary);
5891               return -2;
5892             }
5893           size2 = convert_mbs_to_wcs(string2, cstring2, csize2,
5894                                      mbs_offset2, is_binary);
5895           string2[size2] = L'\0'; /* for a sentinel  */
5896           FREE_VAR (is_binary);
5897         }
5898     }
5899
5900   /* We need to cast pattern to (wchar_t*), because we casted this compiled
5901      pattern to (char*) in regex_compile.  */
5902   p = pattern = (CHAR_T*)bufp->buffer;
5903   pend = (CHAR_T*)(bufp->buffer + bufp->used);
5904
5905 #endif /* WCHAR */
5906
5907   /* Initialize subexpression text positions to -1 to mark ones that no
5908      start_memory/stop_memory has been seen for. Also initialize the
5909      register information struct.  */
5910   for (mcnt = 1; (unsigned) mcnt < num_regs; mcnt++)
5911     {
5912       regstart[mcnt] = regend[mcnt]
5913         = old_regstart[mcnt] = old_regend[mcnt] = REG_UNSET_VALUE;
5914
5915       REG_MATCH_NULL_STRING_P (reg_info[mcnt]) = MATCH_NULL_UNSET_VALUE;
5916       IS_ACTIVE (reg_info[mcnt]) = 0;
5917       MATCHED_SOMETHING (reg_info[mcnt]) = 0;
5918       EVER_MATCHED_SOMETHING (reg_info[mcnt]) = 0;
5919     }
5920
5921   /* We move `string1' into `string2' if the latter's empty -- but not if
5922      `string1' is null.  */
5923   if (size2 == 0 && string1 != NULL)
5924     {
5925       string2 = string1;
5926       size2 = size1;
5927       string1 = 0;
5928       size1 = 0;
5929 #ifdef WCHAR
5930       mbs_offset2 = mbs_offset1;
5931       csize2 = csize1;
5932       mbs_offset1 = NULL;
5933       csize1 = 0;
5934 #endif
5935     }
5936   end1 = string1 + size1;
5937   end2 = string2 + size2;
5938
5939   /* Compute where to stop matching, within the two strings.  */
5940 #ifdef WCHAR
5941   if (stop <= csize1)
5942     {
5943       mcnt = count_mbs_length(mbs_offset1, stop);
5944       end_match_1 = string1 + mcnt;
5945       end_match_2 = string2;
5946     }
5947   else
5948     {
5949       if (stop > csize1 + csize2)
5950         stop = csize1 + csize2;
5951       end_match_1 = end1;
5952       mcnt = count_mbs_length(mbs_offset2, stop-csize1);
5953       end_match_2 = string2 + mcnt;
5954     }
5955   if (mcnt < 0)
5956     { /* count_mbs_length return error.  */
5957       FREE_VARIABLES ();
5958       return -1;
5959     }
5960 #else
5961   if (stop <= size1)
5962     {
5963       end_match_1 = string1 + stop;
5964       end_match_2 = string2;
5965     }
5966   else
5967     {
5968       end_match_1 = end1;
5969       end_match_2 = string2 + stop - size1;
5970     }
5971 #endif /* WCHAR */
5972
5973   /* `p' scans through the pattern as `d' scans through the data.
5974      `dend' is the end of the input string that `d' points within.  `d'
5975      is advanced into the following input string whenever necessary, but
5976      this happens before fetching; therefore, at the beginning of the
5977      loop, `d' can be pointing at the end of a string, but it cannot
5978      equal `string2'.  */
5979 #ifdef WCHAR
5980   if (size1 > 0 && pos <= csize1)
5981     {
5982       mcnt = count_mbs_length(mbs_offset1, pos);
5983       d = string1 + mcnt;
5984       dend = end_match_1;
5985     }
5986   else
5987     {
5988       mcnt = count_mbs_length(mbs_offset2, pos-csize1);
5989       d = string2 + mcnt;
5990       dend = end_match_2;
5991     }
5992
5993   if (mcnt < 0)
5994     { /* count_mbs_length return error.  */
5995       FREE_VARIABLES ();
5996       return -1;
5997     }
5998 #else
5999   if (size1 > 0 && pos <= size1)
6000     {
6001       d = string1 + pos;
6002       dend = end_match_1;
6003     }
6004   else
6005     {
6006       d = string2 + pos - size1;
6007       dend = end_match_2;
6008     }
6009 #endif /* WCHAR */
6010
6011   DEBUG_PRINT1 ("The compiled pattern is:\n");
6012   DEBUG_PRINT_COMPILED_PATTERN (bufp, p, pend);
6013   DEBUG_PRINT1 ("The string to match is: `");
6014   DEBUG_PRINT_DOUBLE_STRING (d, string1, size1, string2, size2);
6015   DEBUG_PRINT1 ("'\n");
6016
6017   /* This loops over pattern commands.  It exits by returning from the
6018      function if the match is complete, or it drops through if the match
6019      fails at this starting point in the input data.  */
6020   for (;;)
6021     {
6022 #ifdef _LIBC
6023       DEBUG_PRINT2 ("\n%p: ", p);
6024 #else
6025       DEBUG_PRINT2 ("\n0x%x: ", p);
6026 #endif
6027
6028       if (p == pend)
6029         { /* End of pattern means we might have succeeded.  */
6030           DEBUG_PRINT1 ("end of pattern ... ");
6031
6032           /* If we haven't matched the entire string, and we want the
6033              longest match, try backtracking.  */
6034           if (d != end_match_2)
6035             {
6036               /* 1 if this match ends in the same string (string1 or string2)
6037                  as the best previous match.  */
6038               boolean same_str_p = (FIRST_STRING_P (match_end)
6039                                     == MATCHING_IN_FIRST_STRING);
6040               /* 1 if this match is the best seen so far.  */
6041               boolean best_match_p;
6042
6043               /* AIX compiler got confused when this was combined
6044                  with the previous declaration.  */
6045               if (same_str_p)
6046                 best_match_p = d > match_end;
6047               else
6048                 best_match_p = !MATCHING_IN_FIRST_STRING;
6049
6050               DEBUG_PRINT1 ("backtracking.\n");
6051
6052               if (!FAIL_STACK_EMPTY ())
6053                 { /* More failure points to try.  */
6054
6055                   /* If exceeds best match so far, save it.  */
6056                   if (!best_regs_set || best_match_p)
6057                     {
6058                       best_regs_set = true;
6059                       match_end = d;
6060
6061                       DEBUG_PRINT1 ("\nSAVING match as best so far.\n");
6062
6063                       for (mcnt = 1; (unsigned) mcnt < num_regs; mcnt++)
6064                         {
6065                           best_regstart[mcnt] = regstart[mcnt];
6066                           best_regend[mcnt] = regend[mcnt];
6067                         }
6068                     }
6069                   goto fail;
6070                 }
6071
6072               /* If no failure points, don't restore garbage.  And if
6073                  last match is real best match, don't restore second
6074                  best one. */
6075               else if (best_regs_set && !best_match_p)
6076                 {
6077                 restore_best_regs:
6078                   /* Restore best match.  It may happen that `dend ==
6079                      end_match_1' while the restored d is in string2.
6080                      For example, the pattern `x.*y.*z' against the
6081                      strings `x-' and `y-z-', if the two strings are
6082                      not consecutive in memory.  */
6083                   DEBUG_PRINT1 ("Restoring best registers.\n");
6084
6085                   d = match_end;
6086                   dend = ((d >= string1 && d <= end1)
6087                            ? end_match_1 : end_match_2);
6088
6089                   for (mcnt = 1; (unsigned) mcnt < num_regs; mcnt++)
6090                     {
6091                       regstart[mcnt] = best_regstart[mcnt];
6092                       regend[mcnt] = best_regend[mcnt];
6093                     }
6094                 }
6095             } /* d != end_match_2 */
6096
6097         succeed_label:
6098           DEBUG_PRINT1 ("Accepting match.\n");
6099           /* If caller wants register contents data back, do it.  */
6100           if (regs && !bufp->no_sub)
6101             {
6102               /* Have the register data arrays been allocated?  */
6103               if (bufp->regs_allocated == REGS_UNALLOCATED)
6104                 { /* No.  So allocate them with malloc.  We need one
6105                      extra element beyond `num_regs' for the `-1' marker
6106                      GNU code uses.  */
6107                   regs->num_regs = MAX (RE_NREGS, num_regs + 1);
6108                   regs->start = TALLOC (regs->num_regs, regoff_t);
6109                   regs->end = TALLOC (regs->num_regs, regoff_t);
6110                   if (regs->start == NULL || regs->end == NULL)
6111                     {
6112                       FREE_VARIABLES ();
6113                       return -2;
6114                     }
6115                   bufp->regs_allocated = REGS_REALLOCATE;
6116                 }
6117               else if (bufp->regs_allocated == REGS_REALLOCATE)
6118                 { /* Yes.  If we need more elements than were already
6119                      allocated, reallocate them.  If we need fewer, just
6120                      leave it alone.  */
6121                   if (regs->num_regs < num_regs + 1)
6122                     {
6123                       regs->num_regs = num_regs + 1;
6124                       RETALLOC (regs->start, regs->num_regs, regoff_t);
6125                       RETALLOC (regs->end, regs->num_regs, regoff_t);
6126                       if (regs->start == NULL || regs->end == NULL)
6127                         {
6128                           FREE_VARIABLES ();
6129                           return -2;
6130                         }
6131                     }
6132                 }
6133               else
6134                 {
6135                   /* These braces fend off a "empty body in an else-statement"
6136                      warning under GCC when assert expands to nothing.  */
6137                   assert (bufp->regs_allocated == REGS_FIXED);
6138                 }
6139
6140               /* Convert the pointer data in `regstart' and `regend' to
6141                  indices.  Register zero has to be set differently,
6142                  since we haven't kept track of any info for it.  */
6143               if (regs->num_regs > 0)
6144                 {
6145                   regs->start[0] = pos;
6146 #ifdef WCHAR
6147                   if (MATCHING_IN_FIRST_STRING)
6148                     regs->end[0] = mbs_offset1 != NULL ?
6149                                         mbs_offset1[d-string1] : 0;
6150                   else
6151                     regs->end[0] = csize1 + (mbs_offset2 != NULL ?
6152                                              mbs_offset2[d-string2] : 0);
6153 #else
6154                   regs->end[0] = (MATCHING_IN_FIRST_STRING
6155                                   ? ((regoff_t) (d - string1))
6156                                   : ((regoff_t) (d - string2 + size1)));
6157 #endif /* WCHAR */
6158                 }
6159
6160               /* Go through the first `min (num_regs, regs->num_regs)'
6161                  registers, since that is all we initialized.  */
6162               for (mcnt = 1; (unsigned) mcnt < MIN (num_regs, regs->num_regs);
6163                    mcnt++)
6164                 {
6165                   if (REG_UNSET (regstart[mcnt]) || REG_UNSET (regend[mcnt]))
6166                     regs->start[mcnt] = regs->end[mcnt] = -1;
6167                   else
6168                     {
6169                       regs->start[mcnt]
6170                         = (regoff_t) POINTER_TO_OFFSET (regstart[mcnt]);
6171                       regs->end[mcnt]
6172                         = (regoff_t) POINTER_TO_OFFSET (regend[mcnt]);
6173                     }
6174                 }
6175
6176               /* If the regs structure we return has more elements than
6177                  were in the pattern, set the extra elements to -1.  If
6178                  we (re)allocated the registers, this is the case,
6179                  because we always allocate enough to have at least one
6180                  -1 at the end.  */
6181               for (mcnt = num_regs; (unsigned) mcnt < regs->num_regs; mcnt++)
6182                 regs->start[mcnt] = regs->end[mcnt] = -1;
6183             } /* regs && !bufp->no_sub */
6184
6185           DEBUG_PRINT4 ("%u failure points pushed, %u popped (%u remain).\n",
6186                         nfailure_points_pushed, nfailure_points_popped,
6187                         nfailure_points_pushed - nfailure_points_popped);
6188           DEBUG_PRINT2 ("%u registers pushed.\n", num_regs_pushed);
6189
6190 #ifdef WCHAR
6191           if (MATCHING_IN_FIRST_STRING)
6192             mcnt = mbs_offset1 != NULL ? mbs_offset1[d-string1] : 0;
6193           else
6194             mcnt = (mbs_offset2 != NULL ? mbs_offset2[d-string2] : 0) +
6195                         csize1;
6196           mcnt -= pos;
6197 #else
6198           mcnt = d - pos - (MATCHING_IN_FIRST_STRING
6199                             ? string1
6200                             : string2 - size1);
6201 #endif /* WCHAR */
6202
6203           DEBUG_PRINT2 ("Returning %d from re_match_2.\n", mcnt);
6204
6205           FREE_VARIABLES ();
6206           return mcnt;
6207         }
6208
6209       /* Otherwise match next pattern command.  */
6210       switch (SWITCH_ENUM_CAST ((re_opcode_t) *p++))
6211         {
6212         /* Ignore these.  Used to ignore the n of succeed_n's which
6213            currently have n == 0.  */
6214         case no_op:
6215           DEBUG_PRINT1 ("EXECUTING no_op.\n");
6216           break;
6217
6218         case succeed:
6219           DEBUG_PRINT1 ("EXECUTING succeed.\n");
6220           goto succeed_label;
6221
6222         /* Match the next n pattern characters exactly.  The following
6223            byte in the pattern defines n, and the n bytes after that
6224            are the characters to match.  */
6225         case exactn:
6226 #ifdef MBS_SUPPORT
6227         case exactn_bin:
6228 #endif
6229           mcnt = *p++;
6230           DEBUG_PRINT2 ("EXECUTING exactn %d.\n", mcnt);
6231
6232           /* This is written out as an if-else so we don't waste time
6233              testing `translate' inside the loop.  */
6234           if (translate)
6235             {
6236               do
6237                 {
6238                   PREFETCH ();
6239 #ifdef WCHAR
6240                   if (*d <= 0xff)
6241                     {
6242                       if ((UCHAR_T) translate[(unsigned char) *d++]
6243                           != (UCHAR_T) *p++)
6244                         goto fail;
6245                     }
6246                   else
6247                     {
6248                       if (*d++ != (CHAR_T) *p++)
6249                         goto fail;
6250                     }
6251 #else
6252                   if ((UCHAR_T) translate[(unsigned char) *d++]
6253                       != (UCHAR_T) *p++)
6254                     goto fail;
6255 #endif /* WCHAR */
6256                 }
6257               while (--mcnt);
6258             }
6259           else
6260             {
6261               do
6262                 {
6263                   PREFETCH ();
6264                   if (*d++ != (CHAR_T) *p++) goto fail;
6265                 }
6266               while (--mcnt);
6267             }
6268           SET_REGS_MATCHED ();
6269           break;
6270
6271
6272         /* Match any character except possibly a newline or a null.  */
6273         case anychar:
6274           DEBUG_PRINT1 ("EXECUTING anychar.\n");
6275
6276           PREFETCH ();
6277
6278           if ((!(bufp->syntax & RE_DOT_NEWLINE) && TRANSLATE (*d) == '\n')
6279               || (bufp->syntax & RE_DOT_NOT_NULL && TRANSLATE (*d) == '\000'))
6280             goto fail;
6281
6282           SET_REGS_MATCHED ();
6283           DEBUG_PRINT2 ("  Matched `%ld'.\n", (long int) *d);
6284           d++;
6285           break;
6286
6287
6288         case charset:
6289         case charset_not:
6290           {
6291             register UCHAR_T c;
6292 #ifdef WCHAR
6293             unsigned int i, char_class_length, coll_symbol_length,
6294               equiv_class_length, ranges_length, chars_length, length;
6295             CHAR_T *workp, *workp2, *charset_top;
6296 #define WORK_BUFFER_SIZE 128
6297             CHAR_T str_buf[WORK_BUFFER_SIZE];
6298 # ifdef _LIBC
6299             uint32_t nrules;
6300 # endif /* _LIBC */
6301 #endif /* WCHAR */
6302             boolean not = (re_opcode_t) *(p - 1) == charset_not;
6303
6304             DEBUG_PRINT2 ("EXECUTING charset%s.\n", not ? "_not" : "");
6305             PREFETCH ();
6306             c = TRANSLATE (*d); /* The character to match.  */
6307 #ifdef WCHAR
6308 # ifdef _LIBC
6309             nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
6310 # endif /* _LIBC */
6311             charset_top = p - 1;
6312             char_class_length = *p++;
6313             coll_symbol_length = *p++;
6314             equiv_class_length = *p++;
6315             ranges_length = *p++;
6316             chars_length = *p++;
6317             /* p points charset[6], so the address of the next instruction
6318                (charset[l+m+n+2o+k+p']) equals p[l+m+n+2*o+p'],
6319                where l=length of char_classes, m=length of collating_symbol,
6320                n=equivalence_class, o=length of char_range,
6321                p'=length of character.  */
6322             workp = p;
6323             /* Update p to indicate the next instruction.  */
6324             p += char_class_length + coll_symbol_length+ equiv_class_length +
6325               2*ranges_length + chars_length;
6326
6327             /* match with char_class?  */
6328             for (i = 0; i < char_class_length ; i += CHAR_CLASS_SIZE)
6329               {
6330                 wctype_t wctype;
6331                 uintptr_t alignedp = ((uintptr_t)workp
6332                                       + __alignof__(wctype_t) - 1)
6333                                       & ~(uintptr_t)(__alignof__(wctype_t) - 1);
6334                 wctype = *((wctype_t*)alignedp);
6335                 workp += CHAR_CLASS_SIZE;
6336                 if (iswctype((wint_t)c, wctype))
6337                   goto char_set_matched;
6338               }
6339
6340             /* match with collating_symbol?  */
6341 # ifdef _LIBC
6342             if (nrules != 0)
6343               {
6344                 const unsigned char *extra = (const unsigned char *)
6345                   _NL_CURRENT (LC_COLLATE, _NL_COLLATE_SYMB_EXTRAMB);
6346
6347                 for (workp2 = workp + coll_symbol_length ; workp < workp2 ;
6348                      workp++)
6349                   {
6350                     int32_t *wextra;
6351                     wextra = (int32_t*)(extra + *workp++);
6352                     for (i = 0; i < *wextra; ++i)
6353                       if (TRANSLATE(d[i]) != wextra[1 + i])
6354                         break;
6355
6356                     if (i == *wextra)
6357                       {
6358                         /* Update d, however d will be incremented at
6359                            char_set_matched:, we decrement d here.  */
6360                         d += i - 1;
6361                         goto char_set_matched;
6362                       }
6363                   }
6364               }
6365             else /* (nrules == 0) */
6366 # endif
6367               /* If we can't look up collation data, we use wcscoll
6368                  instead.  */
6369               {
6370                 for (workp2 = workp + coll_symbol_length ; workp < workp2 ;)
6371                   {
6372                     const CHAR_T *backup_d = d, *backup_dend = dend;
6373                     length = wcslen(workp);
6374
6375                     /* If wcscoll(the collating symbol, whole string) > 0,
6376                        any substring of the string never match with the
6377                        collating symbol.  */
6378                     if (wcscoll(workp, d) > 0)
6379                       {
6380                         workp += length + 1;
6381                         continue;
6382                       }
6383
6384                     /* First, we compare the collating symbol with
6385                        the first character of the string.
6386                        If it don't match, we add the next character to
6387                        the compare buffer in turn.  */
6388                     for (i = 0 ; i < WORK_BUFFER_SIZE-1 ; i++, d++)
6389                       {
6390                         int match;
6391                         if (d == dend)
6392                           {
6393                             if (dend == end_match_2)
6394                               break;
6395                             d = string2;
6396                             dend = end_match_2;
6397                           }
6398
6399                         /* add next character to the compare buffer.  */
6400                         str_buf[i] = TRANSLATE(*d);
6401                         str_buf[i+1] = '\0';
6402
6403                         match = wcscoll(workp, str_buf);
6404                         if (match == 0)
6405                           goto char_set_matched;
6406
6407                         if (match < 0)
6408                           /* (str_buf > workp) indicate (str_buf + X > workp),
6409                              because for all X (str_buf + X > str_buf).
6410                              So we don't need continue this loop.  */
6411                           break;
6412
6413                         /* Otherwise(str_buf < workp),
6414                            (str_buf+next_character) may equals (workp).
6415                            So we continue this loop.  */
6416                       }
6417                     /* not matched */
6418                     d = backup_d;
6419                     dend = backup_dend;
6420                     workp += length + 1;
6421                   }
6422               }
6423             /* match with equivalence_class?  */
6424 # ifdef _LIBC
6425             if (nrules != 0)
6426               {
6427                 const CHAR_T *backup_d = d, *backup_dend = dend;
6428                 /* Try to match the equivalence class against
6429                    those known to the collate implementation.  */
6430                 const int32_t *table;
6431                 const int32_t *weights;
6432                 const int32_t *extra;
6433                 const int32_t *indirect;
6434                 int32_t idx, idx2;
6435                 wint_t *cp;
6436                 size_t len;
6437
6438                 /* This #include defines a local function!  */
6439 #  include <locale/weightwc.h>
6440
6441                 table = (const int32_t *)
6442                   _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEWC);
6443                 weights = (const wint_t *)
6444                   _NL_CURRENT (LC_COLLATE, _NL_COLLATE_WEIGHTWC);
6445                 extra = (const wint_t *)
6446                   _NL_CURRENT (LC_COLLATE, _NL_COLLATE_EXTRAWC);
6447                 indirect = (const int32_t *)
6448                   _NL_CURRENT (LC_COLLATE, _NL_COLLATE_INDIRECTWC);
6449
6450                 /* Write 1 collating element to str_buf, and
6451                    get its index.  */
6452                 idx2 = 0;
6453
6454                 for (i = 0 ; idx2 == 0 && i < WORK_BUFFER_SIZE - 1; i++)
6455                   {
6456                     cp = (wint_t*)str_buf;
6457                     if (d == dend)
6458                       {
6459                         if (dend == end_match_2)
6460                           break;
6461                         d = string2;
6462                         dend = end_match_2;
6463                       }
6464                     str_buf[i] = TRANSLATE(*(d+i));
6465                     str_buf[i+1] = '\0'; /* sentinel */
6466                     idx2 = findidx ((const wint_t**)&cp);
6467                   }
6468
6469                 /* Update d, however d will be incremented at
6470                    char_set_matched:, we decrement d here.  */
6471                 d = backup_d + ((wchar_t*)cp - (wchar_t*)str_buf - 1);
6472                 if (d >= dend)
6473                   {
6474                     if (dend == end_match_2)
6475                         d = dend;
6476                     else
6477                       {
6478                         d = string2;
6479                         dend = end_match_2;
6480                       }
6481                   }
6482
6483                 len = weights[idx2];
6484
6485                 for (workp2 = workp + equiv_class_length ; workp < workp2 ;
6486                      workp++)
6487                   {
6488                     idx = (int32_t)*workp;
6489                     /* We already checked idx != 0 in regex_compile. */
6490
6491                     if (idx2 != 0 && len == weights[idx])
6492                       {
6493                         int cnt = 0;
6494                         while (cnt < len && (weights[idx + 1 + cnt]
6495                                              == weights[idx2 + 1 + cnt]))
6496                           ++cnt;
6497
6498                         if (cnt == len)
6499                           goto char_set_matched;
6500                       }
6501                   }
6502                 /* not matched */
6503                 d = backup_d;
6504                 dend = backup_dend;
6505               }
6506             else /* (nrules == 0) */
6507 # endif
6508               /* If we can't look up collation data, we use wcscoll
6509                  instead.  */
6510               {
6511                 for (workp2 = workp + equiv_class_length ; workp < workp2 ;)
6512                   {
6513                     const CHAR_T *backup_d = d, *backup_dend = dend;
6514                     length = wcslen(workp);
6515
6516                     /* If wcscoll(the collating symbol, whole string) > 0,
6517                        any substring of the string never match with the
6518                        collating symbol.  */
6519                     if (wcscoll(workp, d) > 0)
6520                       {
6521                         workp += length + 1;
6522                         break;
6523                       }
6524
6525                     /* First, we compare the equivalence class with
6526                        the first character of the string.
6527                        If it don't match, we add the next character to
6528                        the compare buffer in turn.  */
6529                     for (i = 0 ; i < WORK_BUFFER_SIZE - 1 ; i++, d++)
6530                       {
6531                         int match;
6532                         if (d == dend)
6533                           {
6534                             if (dend == end_match_2)
6535                               break;
6536                             d = string2;
6537                             dend = end_match_2;
6538                           }
6539
6540                         /* add next character to the compare buffer.  */
6541                         str_buf[i] = TRANSLATE(*d);
6542                         str_buf[i+1] = '\0';
6543
6544                         match = wcscoll(workp, str_buf);
6545
6546                         if (match == 0)
6547                           goto char_set_matched;
6548
6549                         if (match < 0)
6550                         /* (str_buf > workp) indicate (str_buf + X > workp),
6551                            because for all X (str_buf + X > str_buf).
6552                            So we don't need continue this loop.  */
6553                           break;
6554
6555                         /* Otherwise(str_buf < workp),
6556                            (str_buf+next_character) may equals (workp).
6557                            So we continue this loop.  */
6558                       }
6559                     /* not matched */
6560                     d = backup_d;
6561                     dend = backup_dend;
6562                     workp += length + 1;
6563                   }
6564               }
6565
6566             /* match with char_range?  */
6567 #ifdef _LIBC
6568             if (nrules != 0)
6569               {
6570                 uint32_t collseqval;
6571                 const char *collseq = (const char *)
6572                   _NL_CURRENT(LC_COLLATE, _NL_COLLATE_COLLSEQWC);
6573
6574                 collseqval = collseq_table_lookup (collseq, c);
6575
6576                 for (; workp < p - chars_length ;)
6577                   {
6578                     uint32_t start_val, end_val;
6579
6580                     /* We already compute the collation sequence value
6581                        of the characters (or collating symbols).  */
6582                     start_val = (uint32_t) *workp++; /* range_start */
6583                     end_val = (uint32_t) *workp++; /* range_end */
6584
6585                     if (start_val <= collseqval && collseqval <= end_val)
6586                       goto char_set_matched;
6587                   }
6588               }
6589             else
6590 #endif
6591               {
6592                 /* We set range_start_char at str_buf[0], range_end_char
6593                    at str_buf[4], and compared char at str_buf[2].  */
6594                 str_buf[1] = 0;
6595                 str_buf[2] = c;
6596                 str_buf[3] = 0;
6597                 str_buf[5] = 0;
6598                 for (; workp < p - chars_length ;)
6599                   {
6600                     wchar_t *range_start_char, *range_end_char;
6601
6602                     /* match if (range_start_char <= c <= range_end_char).  */
6603
6604                     /* If range_start(or end) < 0, we assume -range_start(end)
6605                        is the offset of the collating symbol which is specified
6606                        as the character of the range start(end).  */
6607
6608                     /* range_start */
6609                     if (*workp < 0)
6610                       range_start_char = charset_top - (*workp++);
6611                     else
6612                       {
6613                         str_buf[0] = *workp++;
6614                         range_start_char = str_buf;
6615                       }
6616
6617                     /* range_end */
6618                     if (*workp < 0)
6619                       range_end_char = charset_top - (*workp++);
6620                     else
6621                       {
6622                         str_buf[4] = *workp++;
6623                         range_end_char = str_buf + 4;
6624                       }
6625
6626                     if (wcscoll(range_start_char, str_buf+2) <= 0 &&
6627                         wcscoll(str_buf+2, range_end_char) <= 0)
6628
6629                       goto char_set_matched;
6630                   }
6631               }
6632
6633             /* match with char?  */
6634             for (; workp < p ; workp++)
6635               if (c == *workp)
6636                 goto char_set_matched;
6637
6638             not = !not;
6639
6640           char_set_matched:
6641             if (not) goto fail;
6642 #else
6643             /* Cast to `unsigned' instead of `unsigned char' in case the
6644                bit list is a full 32 bytes long.  */
6645             if (c < (unsigned) (*p * BYTEWIDTH)
6646                 && p[1 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
6647               not = !not;
6648
6649             p += 1 + *p;
6650
6651             if (!not) goto fail;
6652 #undef WORK_BUFFER_SIZE
6653 #endif /* WCHAR */
6654             SET_REGS_MATCHED ();
6655             d++;
6656             break;
6657           }
6658
6659
6660         /* The beginning of a group is represented by start_memory.
6661            The arguments are the register number in the next byte, and the
6662            number of groups inner to this one in the next.  The text
6663            matched within the group is recorded (in the internal
6664            registers data structure) under the register number.  */
6665         case start_memory:
6666           DEBUG_PRINT3 ("EXECUTING start_memory %ld (%ld):\n",
6667                         (long int) *p, (long int) p[1]);
6668
6669           /* Find out if this group can match the empty string.  */
6670           p1 = p;               /* To send to group_match_null_string_p.  */
6671
6672           if (REG_MATCH_NULL_STRING_P (reg_info[*p]) == MATCH_NULL_UNSET_VALUE)
6673             REG_MATCH_NULL_STRING_P (reg_info[*p])
6674               = PREFIX(group_match_null_string_p) (&p1, pend, reg_info);
6675
6676           /* Save the position in the string where we were the last time
6677              we were at this open-group operator in case the group is
6678              operated upon by a repetition operator, e.g., with `(a*)*b'
6679              against `ab'; then we want to ignore where we are now in
6680              the string in case this attempt to match fails.  */
6681           old_regstart[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
6682                              ? REG_UNSET (regstart[*p]) ? d : regstart[*p]
6683                              : regstart[*p];
6684           DEBUG_PRINT2 ("  old_regstart: %d\n",
6685                          POINTER_TO_OFFSET (old_regstart[*p]));
6686
6687           regstart[*p] = d;
6688           DEBUG_PRINT2 ("  regstart: %d\n", POINTER_TO_OFFSET (regstart[*p]));
6689
6690           IS_ACTIVE (reg_info[*p]) = 1;
6691           MATCHED_SOMETHING (reg_info[*p]) = 0;
6692
6693           /* Clear this whenever we change the register activity status.  */
6694           set_regs_matched_done = 0;
6695
6696           /* This is the new highest active register.  */
6697           highest_active_reg = *p;
6698
6699           /* If nothing was active before, this is the new lowest active
6700              register.  */
6701           if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
6702             lowest_active_reg = *p;
6703
6704           /* Move past the register number and inner group count.  */
6705           p += 2;
6706           just_past_start_mem = p;
6707
6708           break;
6709
6710
6711         /* The stop_memory opcode represents the end of a group.  Its
6712            arguments are the same as start_memory's: the register
6713            number, and the number of inner groups.  */
6714         case stop_memory:
6715           DEBUG_PRINT3 ("EXECUTING stop_memory %ld (%ld):\n",
6716                         (long int) *p, (long int) p[1]);
6717
6718           /* We need to save the string position the last time we were at
6719              this close-group operator in case the group is operated
6720              upon by a repetition operator, e.g., with `((a*)*(b*)*)*'
6721              against `aba'; then we want to ignore where we are now in
6722              the string in case this attempt to match fails.  */
6723           old_regend[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
6724                            ? REG_UNSET (regend[*p]) ? d : regend[*p]
6725                            : regend[*p];
6726           DEBUG_PRINT2 ("      old_regend: %d\n",
6727                          POINTER_TO_OFFSET (old_regend[*p]));
6728
6729           regend[*p] = d;
6730           DEBUG_PRINT2 ("      regend: %d\n", POINTER_TO_OFFSET (regend[*p]));
6731
6732           /* This register isn't active anymore.  */
6733           IS_ACTIVE (reg_info[*p]) = 0;
6734
6735           /* Clear this whenever we change the register activity status.  */
6736           set_regs_matched_done = 0;
6737
6738           /* If this was the only register active, nothing is active
6739              anymore.  */
6740           if (lowest_active_reg == highest_active_reg)
6741             {
6742               lowest_active_reg = NO_LOWEST_ACTIVE_REG;
6743               highest_active_reg = NO_HIGHEST_ACTIVE_REG;
6744             }
6745           else
6746             { /* We must scan for the new highest active register, since
6747                  it isn't necessarily one less than now: consider
6748                  (a(b)c(d(e)f)g).  When group 3 ends, after the f), the
6749                  new highest active register is 1.  */
6750               UCHAR_T r = *p - 1;
6751               while (r > 0 && !IS_ACTIVE (reg_info[r]))
6752                 r--;
6753
6754               /* If we end up at register zero, that means that we saved
6755                  the registers as the result of an `on_failure_jump', not
6756                  a `start_memory', and we jumped to past the innermost
6757                  `stop_memory'.  For example, in ((.)*) we save
6758                  registers 1 and 2 as a result of the *, but when we pop
6759                  back to the second ), we are at the stop_memory 1.
6760                  Thus, nothing is active.  */
6761               if (r == 0)
6762                 {
6763                   lowest_active_reg = NO_LOWEST_ACTIVE_REG;
6764                   highest_active_reg = NO_HIGHEST_ACTIVE_REG;
6765                 }
6766               else
6767                 highest_active_reg = r;
6768             }
6769
6770           /* If just failed to match something this time around with a
6771              group that's operated on by a repetition operator, try to
6772              force exit from the ``loop'', and restore the register
6773              information for this group that we had before trying this
6774              last match.  */
6775           if ((!MATCHED_SOMETHING (reg_info[*p])
6776                || just_past_start_mem == p - 1)
6777               && (p + 2) < pend)
6778             {
6779               boolean is_a_jump_n = false;
6780
6781               p1 = p + 2;
6782               mcnt = 0;
6783               switch ((re_opcode_t) *p1++)
6784                 {
6785                   case jump_n:
6786                     is_a_jump_n = true;
6787                   case pop_failure_jump:
6788                   case maybe_pop_jump:
6789                   case jump:
6790                   case dummy_failure_jump:
6791                     EXTRACT_NUMBER_AND_INCR (mcnt, p1);
6792                     if (is_a_jump_n)
6793                       p1 += OFFSET_ADDRESS_SIZE;
6794                     break;
6795
6796                   default:
6797                     /* do nothing */ ;
6798                 }
6799               p1 += mcnt;
6800
6801               /* If the next operation is a jump backwards in the pattern
6802                  to an on_failure_jump right before the start_memory
6803                  corresponding to this stop_memory, exit from the loop
6804                  by forcing a failure after pushing on the stack the
6805                  on_failure_jump's jump in the pattern, and d.  */
6806               if (mcnt < 0 && (re_opcode_t) *p1 == on_failure_jump
6807                   && (re_opcode_t) p1[1+OFFSET_ADDRESS_SIZE] == start_memory
6808                   && p1[2+OFFSET_ADDRESS_SIZE] == *p)
6809                 {
6810                   /* If this group ever matched anything, then restore
6811                      what its registers were before trying this last
6812                      failed match, e.g., with `(a*)*b' against `ab' for
6813                      regstart[1], and, e.g., with `((a*)*(b*)*)*'
6814                      against `aba' for regend[3].
6815
6816                      Also restore the registers for inner groups for,
6817                      e.g., `((a*)(b*))*' against `aba' (register 3 would
6818                      otherwise get trashed).  */
6819
6820                   if (EVER_MATCHED_SOMETHING (reg_info[*p]))
6821                     {
6822                       unsigned r;
6823
6824                       EVER_MATCHED_SOMETHING (reg_info[*p]) = 0;
6825
6826                       /* Restore this and inner groups' (if any) registers.  */
6827                       for (r = *p; r < (unsigned) *p + (unsigned) *(p + 1);
6828                            r++)
6829                         {
6830                           regstart[r] = old_regstart[r];
6831
6832                           /* xx why this test?  */
6833                           if (old_regend[r] >= regstart[r])
6834                             regend[r] = old_regend[r];
6835                         }
6836                     }
6837                   p1++;
6838                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
6839                   PUSH_FAILURE_POINT (p1 + mcnt, d, -2);
6840
6841                   goto fail;
6842                 }
6843             }
6844
6845           /* Move past the register number and the inner group count.  */
6846           p += 2;
6847           break;
6848
6849
6850         /* \<digit> has been turned into a `duplicate' command which is
6851            followed by the numeric value of <digit> as the register number.  */
6852         case duplicate:
6853           {
6854             register const CHAR_T *d2, *dend2;
6855             int regno = *p++;   /* Get which register to match against.  */
6856             DEBUG_PRINT2 ("EXECUTING duplicate %d.\n", regno);
6857
6858             /* Can't back reference a group which we've never matched.  */
6859             if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
6860               goto fail;
6861
6862             /* Where in input to try to start matching.  */
6863             d2 = regstart[regno];
6864
6865             /* Where to stop matching; if both the place to start and
6866                the place to stop matching are in the same string, then
6867                set to the place to stop, otherwise, for now have to use
6868                the end of the first string.  */
6869
6870             dend2 = ((FIRST_STRING_P (regstart[regno])
6871                       == FIRST_STRING_P (regend[regno]))
6872                      ? regend[regno] : end_match_1);
6873             for (;;)
6874               {
6875                 /* If necessary, advance to next segment in register
6876                    contents.  */
6877                 while (d2 == dend2)
6878                   {
6879                     if (dend2 == end_match_2) break;
6880                     if (dend2 == regend[regno]) break;
6881
6882                     /* End of string1 => advance to string2. */
6883                     d2 = string2;
6884                     dend2 = regend[regno];
6885                   }
6886                 /* At end of register contents => success */
6887                 if (d2 == dend2) break;
6888
6889                 /* If necessary, advance to next segment in data.  */
6890                 PREFETCH ();
6891
6892                 /* How many characters left in this segment to match.  */
6893                 mcnt = dend - d;
6894
6895                 /* Want how many consecutive characters we can match in
6896                    one shot, so, if necessary, adjust the count.  */
6897                 if (mcnt > dend2 - d2)
6898                   mcnt = dend2 - d2;
6899
6900                 /* Compare that many; failure if mismatch, else move
6901                    past them.  */
6902                 if (translate
6903                     ? PREFIX(bcmp_translate) (d, d2, mcnt, translate)
6904                     : memcmp (d, d2, mcnt*sizeof(UCHAR_T)))
6905                   goto fail;
6906                 d += mcnt, d2 += mcnt;
6907
6908                 /* Do this because we've match some characters.  */
6909                 SET_REGS_MATCHED ();
6910               }
6911           }
6912           break;
6913
6914
6915         /* begline matches the empty string at the beginning of the string
6916            (unless `not_bol' is set in `bufp'), and, if
6917            `newline_anchor' is set, after newlines.  */
6918         case begline:
6919           DEBUG_PRINT1 ("EXECUTING begline.\n");
6920
6921           if (AT_STRINGS_BEG (d))
6922             {
6923               if (!bufp->not_bol) break;
6924             }
6925           else if (d[-1] == '\n' && bufp->newline_anchor)
6926             {
6927               break;
6928             }
6929           /* In all other cases, we fail.  */
6930           goto fail;
6931
6932
6933         /* endline is the dual of begline.  */
6934         case endline:
6935           DEBUG_PRINT1 ("EXECUTING endline.\n");
6936
6937           if (AT_STRINGS_END (d))
6938             {
6939               if (!bufp->not_eol) break;
6940             }
6941
6942           /* We have to ``prefetch'' the next character.  */
6943           else if ((d == end1 ? *string2 : *d) == '\n'
6944                    && bufp->newline_anchor)
6945             {
6946               break;
6947             }
6948           goto fail;
6949
6950
6951         /* Match at the very beginning of the data.  */
6952         case begbuf:
6953           DEBUG_PRINT1 ("EXECUTING begbuf.\n");
6954           if (AT_STRINGS_BEG (d))
6955             break;
6956           goto fail;
6957
6958
6959         /* Match at the very end of the data.  */
6960         case endbuf:
6961           DEBUG_PRINT1 ("EXECUTING endbuf.\n");
6962           if (AT_STRINGS_END (d))
6963             break;
6964           goto fail;
6965
6966
6967         /* on_failure_keep_string_jump is used to optimize `.*\n'.  It
6968            pushes NULL as the value for the string on the stack.  Then
6969            `pop_failure_point' will keep the current value for the
6970            string, instead of restoring it.  To see why, consider
6971            matching `foo\nbar' against `.*\n'.  The .* matches the foo;
6972            then the . fails against the \n.  But the next thing we want
6973            to do is match the \n against the \n; if we restored the
6974            string value, we would be back at the foo.
6975
6976            Because this is used only in specific cases, we don't need to
6977            check all the things that `on_failure_jump' does, to make
6978            sure the right things get saved on the stack.  Hence we don't
6979            share its code.  The only reason to push anything on the
6980            stack at all is that otherwise we would have to change
6981            `anychar's code to do something besides goto fail in this
6982            case; that seems worse than this.  */
6983         case on_failure_keep_string_jump:
6984           DEBUG_PRINT1 ("EXECUTING on_failure_keep_string_jump");
6985
6986           EXTRACT_NUMBER_AND_INCR (mcnt, p);
6987 #ifdef _LIBC
6988           DEBUG_PRINT3 (" %d (to %p):\n", mcnt, p + mcnt);
6989 #else
6990           DEBUG_PRINT3 (" %d (to 0x%x):\n", mcnt, p + mcnt);
6991 #endif
6992
6993           PUSH_FAILURE_POINT (p + mcnt, NULL, -2);
6994           break;
6995
6996
6997         /* Uses of on_failure_jump:
6998
6999            Each alternative starts with an on_failure_jump that points
7000            to the beginning of the next alternative.  Each alternative
7001            except the last ends with a jump that in effect jumps past
7002            the rest of the alternatives.  (They really jump to the
7003            ending jump of the following alternative, because tensioning
7004            these jumps is a hassle.)
7005
7006            Repeats start with an on_failure_jump that points past both
7007            the repetition text and either the following jump or
7008            pop_failure_jump back to this on_failure_jump.  */
7009         case on_failure_jump:
7010         on_failure:
7011           DEBUG_PRINT1 ("EXECUTING on_failure_jump");
7012
7013           EXTRACT_NUMBER_AND_INCR (mcnt, p);
7014 #ifdef _LIBC
7015           DEBUG_PRINT3 (" %d (to %p)", mcnt, p + mcnt);
7016 #else
7017           DEBUG_PRINT3 (" %d (to 0x%x)", mcnt, p + mcnt);
7018 #endif
7019
7020           /* If this on_failure_jump comes right before a group (i.e.,
7021              the original * applied to a group), save the information
7022              for that group and all inner ones, so that if we fail back
7023              to this point, the group's information will be correct.
7024              For example, in \(a*\)*\1, we need the preceding group,
7025              and in \(zz\(a*\)b*\)\2, we need the inner group.  */
7026
7027           /* We can't use `p' to check ahead because we push
7028              a failure point to `p + mcnt' after we do this.  */
7029           p1 = p;
7030
7031           /* We need to skip no_op's before we look for the
7032              start_memory in case this on_failure_jump is happening as
7033              the result of a completed succeed_n, as in \(a\)\{1,3\}b\1
7034              against aba.  */
7035           while (p1 < pend && (re_opcode_t) *p1 == no_op)
7036             p1++;
7037
7038           if (p1 < pend && (re_opcode_t) *p1 == start_memory)
7039             {
7040               /* We have a new highest active register now.  This will
7041                  get reset at the start_memory we are about to get to,
7042                  but we will have saved all the registers relevant to
7043                  this repetition op, as described above.  */
7044               highest_active_reg = *(p1 + 1) + *(p1 + 2);
7045               if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
7046                 lowest_active_reg = *(p1 + 1);
7047             }
7048
7049           DEBUG_PRINT1 (":\n");
7050           PUSH_FAILURE_POINT (p + mcnt, d, -2);
7051           break;
7052
7053
7054         /* A smart repeat ends with `maybe_pop_jump'.
7055            We change it to either `pop_failure_jump' or `jump'.  */
7056         case maybe_pop_jump:
7057           EXTRACT_NUMBER_AND_INCR (mcnt, p);
7058           DEBUG_PRINT2 ("EXECUTING maybe_pop_jump %d.\n", mcnt);
7059           {
7060             register UCHAR_T *p2 = p;
7061
7062             /* Compare the beginning of the repeat with what in the
7063                pattern follows its end. If we can establish that there
7064                is nothing that they would both match, i.e., that we
7065                would have to backtrack because of (as in, e.g., `a*a')
7066                then we can change to pop_failure_jump, because we'll
7067                never have to backtrack.
7068
7069                This is not true in the case of alternatives: in
7070                `(a|ab)*' we do need to backtrack to the `ab' alternative
7071                (e.g., if the string was `ab').  But instead of trying to
7072                detect that here, the alternative has put on a dummy
7073                failure point which is what we will end up popping.  */
7074
7075             /* Skip over open/close-group commands.
7076                If what follows this loop is a ...+ construct,
7077                look at what begins its body, since we will have to
7078                match at least one of that.  */
7079             while (1)
7080               {
7081                 if (p2 + 2 < pend
7082                     && ((re_opcode_t) *p2 == stop_memory
7083                         || (re_opcode_t) *p2 == start_memory))
7084                   p2 += 3;
7085                 else if (p2 + 2 + 2 * OFFSET_ADDRESS_SIZE < pend
7086                          && (re_opcode_t) *p2 == dummy_failure_jump)
7087                   p2 += 2 + 2 * OFFSET_ADDRESS_SIZE;
7088                 else
7089                   break;
7090               }
7091
7092             p1 = p + mcnt;
7093             /* p1[0] ... p1[2] are the `on_failure_jump' corresponding
7094                to the `maybe_finalize_jump' of this case.  Examine what
7095                follows.  */
7096
7097             /* If we're at the end of the pattern, we can change.  */
7098             if (p2 == pend)
7099               {
7100                 /* Consider what happens when matching ":\(.*\)"
7101                    against ":/".  I don't really understand this code
7102                    yet.  */
7103                 p[-(1+OFFSET_ADDRESS_SIZE)] = (UCHAR_T)
7104                   pop_failure_jump;
7105                 DEBUG_PRINT1
7106                   ("  End of pattern: change to `pop_failure_jump'.\n");
7107               }
7108
7109             else if ((re_opcode_t) *p2 == exactn
7110 #ifdef MBS_SUPPORT
7111                      || (re_opcode_t) *p2 == exactn_bin
7112 #endif
7113                      || (bufp->newline_anchor && (re_opcode_t) *p2 == endline))
7114               {
7115                 register UCHAR_T c
7116                   = *p2 == (UCHAR_T) endline ? '\n' : p2[2];
7117
7118                 if (((re_opcode_t) p1[1+OFFSET_ADDRESS_SIZE] == exactn
7119 #ifdef MBS_SUPPORT
7120                      || (re_opcode_t) p1[1+OFFSET_ADDRESS_SIZE] == exactn_bin
7121 #endif
7122                     ) && p1[3+OFFSET_ADDRESS_SIZE] != c)
7123                   {
7124                     p[-(1+OFFSET_ADDRESS_SIZE)] = (UCHAR_T)
7125                       pop_failure_jump;
7126 #ifdef WCHAR
7127                       DEBUG_PRINT3 ("  %C != %C => pop_failure_jump.\n",
7128                                     (wint_t) c,
7129                                     (wint_t) p1[3+OFFSET_ADDRESS_SIZE]);
7130 #else
7131                       DEBUG_PRINT3 ("  %c != %c => pop_failure_jump.\n",
7132                                     (char) c,
7133                                     (char) p1[3+OFFSET_ADDRESS_SIZE]);
7134 #endif
7135                   }
7136
7137 #ifndef WCHAR
7138                 else if ((re_opcode_t) p1[3] == charset
7139                          || (re_opcode_t) p1[3] == charset_not)
7140                   {
7141                     int not = (re_opcode_t) p1[3] == charset_not;
7142
7143                     if (c < (unsigned) (p1[4] * BYTEWIDTH)
7144                         && p1[5 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
7145                       not = !not;
7146
7147                     /* `not' is equal to 1 if c would match, which means
7148                         that we can't change to pop_failure_jump.  */
7149                     if (!not)
7150                       {
7151                         p[-3] = (unsigned char) pop_failure_jump;
7152                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
7153                       }
7154                   }
7155 #endif /* not WCHAR */
7156               }
7157 #ifndef WCHAR
7158             else if ((re_opcode_t) *p2 == charset)
7159               {
7160                 /* We win if the first character of the loop is not part
7161                    of the charset.  */
7162                 if ((re_opcode_t) p1[3] == exactn
7163                     && ! ((int) p2[1] * BYTEWIDTH > (int) p1[5]
7164                           && (p2[2 + p1[5] / BYTEWIDTH]
7165                               & (1 << (p1[5] % BYTEWIDTH)))))
7166                   {
7167                     p[-3] = (unsigned char) pop_failure_jump;
7168                     DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
7169                   }
7170
7171                 else if ((re_opcode_t) p1[3] == charset_not)
7172                   {
7173                     int idx;
7174                     /* We win if the charset_not inside the loop
7175                        lists every character listed in the charset after.  */
7176                     for (idx = 0; idx < (int) p2[1]; idx++)
7177                       if (! (p2[2 + idx] == 0
7178                              || (idx < (int) p1[4]
7179                                  && ((p2[2 + idx] & ~ p1[5 + idx]) == 0))))
7180                         break;
7181
7182                     if (idx == p2[1])
7183                       {
7184                         p[-3] = (unsigned char) pop_failure_jump;
7185                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
7186                       }
7187                   }
7188                 else if ((re_opcode_t) p1[3] == charset)
7189                   {
7190                     int idx;
7191                     /* We win if the charset inside the loop
7192                        has no overlap with the one after the loop.  */
7193                     for (idx = 0;
7194                          idx < (int) p2[1] && idx < (int) p1[4];
7195                          idx++)
7196                       if ((p2[2 + idx] & p1[5 + idx]) != 0)
7197                         break;
7198
7199                     if (idx == p2[1] || idx == p1[4])
7200                       {
7201                         p[-3] = (unsigned char) pop_failure_jump;
7202                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
7203                       }
7204                   }
7205               }
7206 #endif /* not WCHAR */
7207           }
7208           p -= OFFSET_ADDRESS_SIZE;     /* Point at relative address again.  */
7209           if ((re_opcode_t) p[-1] != pop_failure_jump)
7210             {
7211               p[-1] = (UCHAR_T) jump;
7212               DEBUG_PRINT1 ("  Match => jump.\n");
7213               goto unconditional_jump;
7214             }
7215         /* Note fall through.  */
7216
7217
7218         /* The end of a simple repeat has a pop_failure_jump back to
7219            its matching on_failure_jump, where the latter will push a
7220            failure point.  The pop_failure_jump takes off failure
7221            points put on by this pop_failure_jump's matching
7222            on_failure_jump; we got through the pattern to here from the
7223            matching on_failure_jump, so didn't fail.  */
7224         case pop_failure_jump:
7225           {
7226             /* We need to pass separate storage for the lowest and
7227                highest registers, even though we don't care about the
7228                actual values.  Otherwise, we will restore only one
7229                register from the stack, since lowest will == highest in
7230                `pop_failure_point'.  */
7231             active_reg_t dummy_low_reg, dummy_high_reg;
7232             UCHAR_T *pdummy = NULL;
7233             const CHAR_T *sdummy = NULL;
7234
7235             DEBUG_PRINT1 ("EXECUTING pop_failure_jump.\n");
7236             POP_FAILURE_POINT (sdummy, pdummy,
7237                                dummy_low_reg, dummy_high_reg,
7238                                reg_dummy, reg_dummy, reg_info_dummy);
7239           }
7240           /* Note fall through.  */
7241
7242         unconditional_jump:
7243 #ifdef _LIBC
7244           DEBUG_PRINT2 ("\n%p: ", p);
7245 #else
7246           DEBUG_PRINT2 ("\n0x%x: ", p);
7247 #endif
7248           /* Note fall through.  */
7249
7250         /* Unconditionally jump (without popping any failure points).  */
7251         case jump:
7252           EXTRACT_NUMBER_AND_INCR (mcnt, p);    /* Get the amount to jump.  */
7253           DEBUG_PRINT2 ("EXECUTING jump %d ", mcnt);
7254           p += mcnt;                            /* Do the jump.  */
7255 #ifdef _LIBC
7256           DEBUG_PRINT2 ("(to %p).\n", p);
7257 #else
7258           DEBUG_PRINT2 ("(to 0x%x).\n", p);
7259 #endif
7260           break;
7261
7262
7263         /* We need this opcode so we can detect where alternatives end
7264            in `group_match_null_string_p' et al.  */
7265         case jump_past_alt:
7266           DEBUG_PRINT1 ("EXECUTING jump_past_alt.\n");
7267           goto unconditional_jump;
7268
7269
7270         /* Normally, the on_failure_jump pushes a failure point, which
7271            then gets popped at pop_failure_jump.  We will end up at
7272            pop_failure_jump, also, and with a pattern of, say, `a+', we
7273            are skipping over the on_failure_jump, so we have to push
7274            something meaningless for pop_failure_jump to pop.  */
7275         case dummy_failure_jump:
7276           DEBUG_PRINT1 ("EXECUTING dummy_failure_jump.\n");
7277           /* It doesn't matter what we push for the string here.  What
7278              the code at `fail' tests is the value for the pattern.  */
7279           PUSH_FAILURE_POINT (NULL, NULL, -2);
7280           goto unconditional_jump;
7281
7282
7283         /* At the end of an alternative, we need to push a dummy failure
7284            point in case we are followed by a `pop_failure_jump', because
7285            we don't want the failure point for the alternative to be
7286            popped.  For example, matching `(a|ab)*' against `aab'
7287            requires that we match the `ab' alternative.  */
7288         case push_dummy_failure:
7289           DEBUG_PRINT1 ("EXECUTING push_dummy_failure.\n");
7290           /* See comments just above at `dummy_failure_jump' about the
7291              two zeroes.  */
7292           PUSH_FAILURE_POINT (NULL, NULL, -2);
7293           break;
7294
7295         /* Have to succeed matching what follows at least n times.
7296            After that, handle like `on_failure_jump'.  */
7297         case succeed_n:
7298           EXTRACT_NUMBER (mcnt, p + OFFSET_ADDRESS_SIZE);
7299           DEBUG_PRINT2 ("EXECUTING succeed_n %d.\n", mcnt);
7300
7301           assert (mcnt >= 0);
7302           /* Originally, this is how many times we HAVE to succeed.  */
7303           if (mcnt > 0)
7304             {
7305                mcnt--;
7306                p += OFFSET_ADDRESS_SIZE;
7307                STORE_NUMBER_AND_INCR (p, mcnt);
7308 #ifdef _LIBC
7309                DEBUG_PRINT3 ("  Setting %p to %d.\n", p - OFFSET_ADDRESS_SIZE
7310                              , mcnt);
7311 #else
7312                DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p - OFFSET_ADDRESS_SIZE
7313                              , mcnt);
7314 #endif
7315             }
7316           else if (mcnt == 0)
7317             {
7318 #ifdef _LIBC
7319               DEBUG_PRINT2 ("  Setting two bytes from %p to no_op.\n",
7320                             p + OFFSET_ADDRESS_SIZE);
7321 #else
7322               DEBUG_PRINT2 ("  Setting two bytes from 0x%x to no_op.\n",
7323                             p + OFFSET_ADDRESS_SIZE);
7324 #endif /* _LIBC */
7325
7326 #ifdef WCHAR
7327               p[1] = (UCHAR_T) no_op;
7328 #else
7329               p[2] = (UCHAR_T) no_op;
7330               p[3] = (UCHAR_T) no_op;
7331 #endif /* WCHAR */
7332               goto on_failure;
7333             }
7334           break;
7335
7336         case jump_n:
7337           EXTRACT_NUMBER (mcnt, p + OFFSET_ADDRESS_SIZE);
7338           DEBUG_PRINT2 ("EXECUTING jump_n %d.\n", mcnt);
7339
7340           /* Originally, this is how many times we CAN jump.  */
7341           if (mcnt)
7342             {
7343                mcnt--;
7344                STORE_NUMBER (p + OFFSET_ADDRESS_SIZE, mcnt);
7345
7346 #ifdef _LIBC
7347                DEBUG_PRINT3 ("  Setting %p to %d.\n", p + OFFSET_ADDRESS_SIZE,
7348                              mcnt);
7349 #else
7350                DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p + OFFSET_ADDRESS_SIZE,
7351                              mcnt);
7352 #endif /* _LIBC */
7353                goto unconditional_jump;
7354             }
7355           /* If don't have to jump any more, skip over the rest of command.  */
7356           else
7357             p += 2 * OFFSET_ADDRESS_SIZE;
7358           break;
7359
7360         case set_number_at:
7361           {
7362             DEBUG_PRINT1 ("EXECUTING set_number_at.\n");
7363
7364             EXTRACT_NUMBER_AND_INCR (mcnt, p);
7365             p1 = p + mcnt;
7366             EXTRACT_NUMBER_AND_INCR (mcnt, p);
7367 #ifdef _LIBC
7368             DEBUG_PRINT3 ("  Setting %p to %d.\n", p1, mcnt);
7369 #else
7370             DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p1, mcnt);
7371 #endif
7372             STORE_NUMBER (p1, mcnt);
7373             break;
7374           }
7375
7376 #if 0
7377         /* The DEC Alpha C compiler 3.x generates incorrect code for the
7378            test  WORDCHAR_P (d - 1) != WORDCHAR_P (d)  in the expansion of
7379            AT_WORD_BOUNDARY, so this code is disabled.  Expanding the
7380            macro and introducing temporary variables works around the bug.  */
7381
7382         case wordbound:
7383           DEBUG_PRINT1 ("EXECUTING wordbound.\n");
7384           if (AT_WORD_BOUNDARY (d))
7385             break;
7386           goto fail;
7387
7388         case notwordbound:
7389           DEBUG_PRINT1 ("EXECUTING notwordbound.\n");
7390           if (AT_WORD_BOUNDARY (d))
7391             goto fail;
7392           break;
7393 #else
7394         case wordbound:
7395         {
7396           boolean prevchar, thischar;
7397
7398           DEBUG_PRINT1 ("EXECUTING wordbound.\n");
7399           if (AT_STRINGS_BEG (d) || AT_STRINGS_END (d))
7400             break;
7401
7402           prevchar = WORDCHAR_P (d - 1);
7403           thischar = WORDCHAR_P (d);
7404           if (prevchar != thischar)
7405             break;
7406           goto fail;
7407         }
7408
7409       case notwordbound:
7410         {
7411           boolean prevchar, thischar;
7412
7413           DEBUG_PRINT1 ("EXECUTING notwordbound.\n");
7414           if (AT_STRINGS_BEG (d) || AT_STRINGS_END (d))
7415             goto fail;
7416
7417           prevchar = WORDCHAR_P (d - 1);
7418           thischar = WORDCHAR_P (d);
7419           if (prevchar != thischar)
7420             goto fail;
7421           break;
7422         }
7423 #endif
7424
7425         case wordbeg:
7426           DEBUG_PRINT1 ("EXECUTING wordbeg.\n");
7427           if (!AT_STRINGS_END (d) && WORDCHAR_P (d)
7428               && (AT_STRINGS_BEG (d) || !WORDCHAR_P (d - 1)))
7429             break;
7430           goto fail;
7431
7432         case wordend:
7433           DEBUG_PRINT1 ("EXECUTING wordend.\n");
7434           if (!AT_STRINGS_BEG (d) && WORDCHAR_P (d - 1)
7435               && (AT_STRINGS_END (d) || !WORDCHAR_P (d)))
7436             break;
7437           goto fail;
7438
7439 #ifdef emacs
7440         case before_dot:
7441           DEBUG_PRINT1 ("EXECUTING before_dot.\n");
7442           if (PTR_CHAR_POS ((unsigned char *) d) >= point)
7443             goto fail;
7444           break;
7445
7446         case at_dot:
7447           DEBUG_PRINT1 ("EXECUTING at_dot.\n");
7448           if (PTR_CHAR_POS ((unsigned char *) d) != point)
7449             goto fail;
7450           break;
7451
7452         case after_dot:
7453           DEBUG_PRINT1 ("EXECUTING after_dot.\n");
7454           if (PTR_CHAR_POS ((unsigned char *) d) <= point)
7455             goto fail;
7456           break;
7457
7458         case syntaxspec:
7459           DEBUG_PRINT2 ("EXECUTING syntaxspec %d.\n", mcnt);
7460           mcnt = *p++;
7461           goto matchsyntax;
7462
7463         case wordchar:
7464           DEBUG_PRINT1 ("EXECUTING Emacs wordchar.\n");
7465           mcnt = (int) Sword;
7466         matchsyntax:
7467           PREFETCH ();
7468           /* Can't use *d++ here; SYNTAX may be an unsafe macro.  */
7469           d++;
7470           if (SYNTAX (d[-1]) != (enum syntaxcode) mcnt)
7471             goto fail;
7472           SET_REGS_MATCHED ();
7473           break;
7474
7475         case notsyntaxspec:
7476           DEBUG_PRINT2 ("EXECUTING notsyntaxspec %d.\n", mcnt);
7477           mcnt = *p++;
7478           goto matchnotsyntax;
7479
7480         case notwordchar:
7481           DEBUG_PRINT1 ("EXECUTING Emacs notwordchar.\n");
7482           mcnt = (int) Sword;
7483         matchnotsyntax:
7484           PREFETCH ();
7485           /* Can't use *d++ here; SYNTAX may be an unsafe macro.  */
7486           d++;
7487           if (SYNTAX (d[-1]) == (enum syntaxcode) mcnt)
7488             goto fail;
7489           SET_REGS_MATCHED ();
7490           break;
7491
7492 #else /* not emacs */
7493         case wordchar:
7494           DEBUG_PRINT1 ("EXECUTING non-Emacs wordchar.\n");
7495           PREFETCH ();
7496           if (!WORDCHAR_P (d))
7497             goto fail;
7498           SET_REGS_MATCHED ();
7499           d++;
7500           break;
7501
7502         case notwordchar:
7503           DEBUG_PRINT1 ("EXECUTING non-Emacs notwordchar.\n");
7504           PREFETCH ();
7505           if (WORDCHAR_P (d))
7506             goto fail;
7507           SET_REGS_MATCHED ();
7508           d++;
7509           break;
7510 #endif /* not emacs */
7511
7512         default:
7513           abort ();
7514         }
7515       continue;  /* Successfully executed one pattern command; keep going.  */
7516
7517
7518     /* We goto here if a matching operation fails. */
7519     fail:
7520       if (!FAIL_STACK_EMPTY ())
7521         { /* A restart point is known.  Restore to that state.  */
7522           DEBUG_PRINT1 ("\nFAIL:\n");
7523           POP_FAILURE_POINT (d, p,
7524                              lowest_active_reg, highest_active_reg,
7525                              regstart, regend, reg_info);
7526
7527           /* If this failure point is a dummy, try the next one.  */
7528           if (!p)
7529             goto fail;
7530
7531           /* If we failed to the end of the pattern, don't examine *p.  */
7532           assert (p <= pend);
7533           if (p < pend)
7534             {
7535               boolean is_a_jump_n = false;
7536
7537               /* If failed to a backwards jump that's part of a repetition
7538                  loop, need to pop this failure point and use the next one.  */
7539               switch ((re_opcode_t) *p)
7540                 {
7541                 case jump_n:
7542                   is_a_jump_n = true;
7543                 case maybe_pop_jump:
7544                 case pop_failure_jump:
7545                 case jump:
7546                   p1 = p + 1;
7547                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7548                   p1 += mcnt;
7549
7550                   if ((is_a_jump_n && (re_opcode_t) *p1 == succeed_n)
7551                       || (!is_a_jump_n
7552                           && (re_opcode_t) *p1 == on_failure_jump))
7553                     goto fail;
7554                   break;
7555                 default:
7556                   /* do nothing */ ;
7557                 }
7558             }
7559
7560           if (d >= string1 && d <= end1)
7561             dend = end_match_1;
7562         }
7563       else
7564         break;   /* Matching at this starting point really fails.  */
7565     } /* for (;;) */
7566
7567   if (best_regs_set)
7568     goto restore_best_regs;
7569
7570   FREE_VARIABLES ();
7571
7572   return -1;                            /* Failure to match.  */
7573 } /* re_match_2 */
7574 \f
7575 /* Subroutine definitions for re_match_2.  */
7576
7577
7578 /* We are passed P pointing to a register number after a start_memory.
7579
7580    Return true if the pattern up to the corresponding stop_memory can
7581    match the empty string, and false otherwise.
7582
7583    If we find the matching stop_memory, sets P to point to one past its number.
7584    Otherwise, sets P to an undefined byte less than or equal to END.
7585
7586    We don't handle duplicates properly (yet).  */
7587
7588 static boolean
7589 PREFIX(group_match_null_string_p) (p, end, reg_info)
7590     UCHAR_T **p, *end;
7591     PREFIX(register_info_type) *reg_info;
7592 {
7593   int mcnt;
7594   /* Point to after the args to the start_memory.  */
7595   UCHAR_T *p1 = *p + 2;
7596
7597   while (p1 < end)
7598     {
7599       /* Skip over opcodes that can match nothing, and return true or
7600          false, as appropriate, when we get to one that can't, or to the
7601          matching stop_memory.  */
7602
7603       switch ((re_opcode_t) *p1)
7604         {
7605         /* Could be either a loop or a series of alternatives.  */
7606         case on_failure_jump:
7607           p1++;
7608           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7609
7610           /* If the next operation is not a jump backwards in the
7611              pattern.  */
7612
7613           if (mcnt >= 0)
7614             {
7615               /* Go through the on_failure_jumps of the alternatives,
7616                  seeing if any of the alternatives cannot match nothing.
7617                  The last alternative starts with only a jump,
7618                  whereas the rest start with on_failure_jump and end
7619                  with a jump, e.g., here is the pattern for `a|b|c':
7620
7621                  /on_failure_jump/0/6/exactn/1/a/jump_past_alt/0/6
7622                  /on_failure_jump/0/6/exactn/1/b/jump_past_alt/0/3
7623                  /exactn/1/c
7624
7625                  So, we have to first go through the first (n-1)
7626                  alternatives and then deal with the last one separately.  */
7627
7628
7629               /* Deal with the first (n-1) alternatives, which start
7630                  with an on_failure_jump (see above) that jumps to right
7631                  past a jump_past_alt.  */
7632
7633               while ((re_opcode_t) p1[mcnt-(1+OFFSET_ADDRESS_SIZE)] ==
7634                      jump_past_alt)
7635                 {
7636                   /* `mcnt' holds how many bytes long the alternative
7637                      is, including the ending `jump_past_alt' and
7638                      its number.  */
7639
7640                   if (!PREFIX(alt_match_null_string_p) (p1, p1 + mcnt -
7641                                                 (1 + OFFSET_ADDRESS_SIZE),
7642                                                 reg_info))
7643                     return false;
7644
7645                   /* Move to right after this alternative, including the
7646                      jump_past_alt.  */
7647                   p1 += mcnt;
7648
7649                   /* Break if it's the beginning of an n-th alternative
7650                      that doesn't begin with an on_failure_jump.  */
7651                   if ((re_opcode_t) *p1 != on_failure_jump)
7652                     break;
7653
7654                   /* Still have to check that it's not an n-th
7655                      alternative that starts with an on_failure_jump.  */
7656                   p1++;
7657                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7658                   if ((re_opcode_t) p1[mcnt-(1+OFFSET_ADDRESS_SIZE)] !=
7659                       jump_past_alt)
7660                     {
7661                       /* Get to the beginning of the n-th alternative.  */
7662                       p1 -= 1 + OFFSET_ADDRESS_SIZE;
7663                       break;
7664                     }
7665                 }
7666
7667               /* Deal with the last alternative: go back and get number
7668                  of the `jump_past_alt' just before it.  `mcnt' contains
7669                  the length of the alternative.  */
7670               EXTRACT_NUMBER (mcnt, p1 - OFFSET_ADDRESS_SIZE);
7671
7672               if (!PREFIX(alt_match_null_string_p) (p1, p1 + mcnt, reg_info))
7673                 return false;
7674
7675               p1 += mcnt;       /* Get past the n-th alternative.  */
7676             } /* if mcnt > 0 */
7677           break;
7678
7679
7680         case stop_memory:
7681           assert (p1[1] == **p);
7682           *p = p1 + 2;
7683           return true;
7684
7685
7686         default:
7687           if (!PREFIX(common_op_match_null_string_p) (&p1, end, reg_info))
7688             return false;
7689         }
7690     } /* while p1 < end */
7691
7692   return false;
7693 } /* group_match_null_string_p */
7694
7695
7696 /* Similar to group_match_null_string_p, but doesn't deal with alternatives:
7697    It expects P to be the first byte of a single alternative and END one
7698    byte past the last. The alternative can contain groups.  */
7699
7700 static boolean
7701 PREFIX(alt_match_null_string_p) (p, end, reg_info)
7702     UCHAR_T *p, *end;
7703     PREFIX(register_info_type) *reg_info;
7704 {
7705   int mcnt;
7706   UCHAR_T *p1 = p;
7707
7708   while (p1 < end)
7709     {
7710       /* Skip over opcodes that can match nothing, and break when we get
7711          to one that can't.  */
7712
7713       switch ((re_opcode_t) *p1)
7714         {
7715         /* It's a loop.  */
7716         case on_failure_jump:
7717           p1++;
7718           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7719           p1 += mcnt;
7720           break;
7721
7722         default:
7723           if (!PREFIX(common_op_match_null_string_p) (&p1, end, reg_info))
7724             return false;
7725         }
7726     }  /* while p1 < end */
7727
7728   return true;
7729 } /* alt_match_null_string_p */
7730
7731
7732 /* Deals with the ops common to group_match_null_string_p and
7733    alt_match_null_string_p.
7734
7735    Sets P to one after the op and its arguments, if any.  */
7736
7737 static boolean
7738 PREFIX(common_op_match_null_string_p) (p, end, reg_info)
7739     UCHAR_T **p, *end;
7740     PREFIX(register_info_type) *reg_info;
7741 {
7742   int mcnt;
7743   boolean ret;
7744   int reg_no;
7745   UCHAR_T *p1 = *p;
7746
7747   switch ((re_opcode_t) *p1++)
7748     {
7749     case no_op:
7750     case begline:
7751     case endline:
7752     case begbuf:
7753     case endbuf:
7754     case wordbeg:
7755     case wordend:
7756     case wordbound:
7757     case notwordbound:
7758 #ifdef emacs
7759     case before_dot:
7760     case at_dot:
7761     case after_dot:
7762 #endif
7763       break;
7764
7765     case start_memory:
7766       reg_no = *p1;
7767       assert (reg_no > 0 && reg_no <= MAX_REGNUM);
7768       ret = PREFIX(group_match_null_string_p) (&p1, end, reg_info);
7769
7770       /* Have to set this here in case we're checking a group which
7771          contains a group and a back reference to it.  */
7772
7773       if (REG_MATCH_NULL_STRING_P (reg_info[reg_no]) == MATCH_NULL_UNSET_VALUE)
7774         REG_MATCH_NULL_STRING_P (reg_info[reg_no]) = ret;
7775
7776       if (!ret)
7777         return false;
7778       break;
7779
7780     /* If this is an optimized succeed_n for zero times, make the jump.  */
7781     case jump:
7782       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7783       if (mcnt >= 0)
7784         p1 += mcnt;
7785       else
7786         return false;
7787       break;
7788
7789     case succeed_n:
7790       /* Get to the number of times to succeed.  */
7791       p1 += OFFSET_ADDRESS_SIZE;
7792       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7793
7794       if (mcnt == 0)
7795         {
7796           p1 -= 2 * OFFSET_ADDRESS_SIZE;
7797           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
7798           p1 += mcnt;
7799         }
7800       else
7801         return false;
7802       break;
7803
7804     case duplicate:
7805       if (!REG_MATCH_NULL_STRING_P (reg_info[*p1]))
7806         return false;
7807       break;
7808
7809     case set_number_at:
7810       p1 += 2 * OFFSET_ADDRESS_SIZE;
7811
7812     default:
7813       /* All other opcodes mean we cannot match the empty string.  */
7814       return false;
7815   }
7816
7817   *p = p1;
7818   return true;
7819 } /* common_op_match_null_string_p */
7820
7821
7822 /* Return zero if TRANSLATE[S1] and TRANSLATE[S2] are identical for LEN
7823    bytes; nonzero otherwise.  */
7824
7825 static int
7826 PREFIX(bcmp_translate) (s1, s2, len, translate)
7827      const CHAR_T *s1, *s2;
7828      register int len;
7829      RE_TRANSLATE_TYPE translate;
7830 {
7831   register const UCHAR_T *p1 = (const UCHAR_T *) s1;
7832   register const UCHAR_T *p2 = (const UCHAR_T *) s2;
7833   while (len)
7834     {
7835 #ifdef WCHAR
7836       if (((*p1<=0xff)?translate[*p1++]:*p1++)
7837           != ((*p2<=0xff)?translate[*p2++]:*p2++))
7838         return 1;
7839 #else /* BYTE */
7840       if (translate[*p1++] != translate[*p2++]) return 1;
7841 #endif /* WCHAR */
7842       len--;
7843     }
7844   return 0;
7845 }
7846 \f
7847
7848 #else /* not INSIDE_RECURSION */
7849
7850 /* Entry points for GNU code.  */
7851
7852 /* re_compile_pattern is the GNU regular expression compiler: it
7853    compiles PATTERN (of length SIZE) and puts the result in BUFP.
7854    Returns 0 if the pattern was valid, otherwise an error string.
7855
7856    Assumes the `allocated' (and perhaps `buffer') and `translate' fields
7857    are set in BUFP on entry.
7858
7859    We call regex_compile to do the actual compilation.  */
7860
7861 const char *
7862 re_compile_pattern (pattern, length, bufp)
7863      const char *pattern;
7864      size_t length;
7865      struct re_pattern_buffer *bufp;
7866 {
7867   reg_errcode_t ret;
7868
7869   /* GNU code is written to assume at least RE_NREGS registers will be set
7870      (and at least one extra will be -1).  */
7871   bufp->regs_allocated = REGS_UNALLOCATED;
7872
7873   /* And GNU code determines whether or not to get register information
7874      by passing null for the REGS argument to re_match, etc., not by
7875      setting no_sub.  */
7876   bufp->no_sub = 0;
7877
7878   /* Match anchors at newline.  */
7879   bufp->newline_anchor = 1;
7880
7881 # ifdef MBS_SUPPORT
7882   if (MB_CUR_MAX != 1)
7883     ret = wcs_regex_compile (pattern, length, re_syntax_options, bufp);
7884   else
7885 # endif
7886     ret = byte_regex_compile (pattern, length, re_syntax_options, bufp);
7887
7888   if (!ret)
7889     return NULL;
7890   return gettext (re_error_msgid + re_error_msgid_idx[(int) ret]);
7891 }
7892 #ifdef _LIBC
7893 weak_alias (__re_compile_pattern, re_compile_pattern)
7894 #endif
7895 \f
7896 /* Entry points compatible with 4.2 BSD regex library.  We don't define
7897    them unless specifically requested.  */
7898
7899 #if defined _REGEX_RE_COMP || defined _LIBC
7900
7901 /* BSD has one and only one pattern buffer.  */
7902 static struct re_pattern_buffer re_comp_buf;
7903
7904 char *
7905 #ifdef _LIBC
7906 /* Make these definitions weak in libc, so POSIX programs can redefine
7907    these names if they don't use our functions, and still use
7908    regcomp/regexec below without link errors.  */
7909 weak_function
7910 #endif
7911 re_comp (s)
7912     const char *s;
7913 {
7914   reg_errcode_t ret;
7915
7916   if (!s)
7917     {
7918       if (!re_comp_buf.buffer)
7919         return gettext ("No previous regular expression");
7920       return 0;
7921     }
7922
7923   if (!re_comp_buf.buffer)
7924     {
7925       re_comp_buf.buffer = (unsigned char *) malloc (200);
7926       if (re_comp_buf.buffer == NULL)
7927         return (char *) gettext (re_error_msgid
7928                                  + re_error_msgid_idx[(int) REG_ESPACE]);
7929       re_comp_buf.allocated = 200;
7930
7931       re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH);
7932       if (re_comp_buf.fastmap == NULL)
7933         return (char *) gettext (re_error_msgid
7934                                  + re_error_msgid_idx[(int) REG_ESPACE]);
7935     }
7936
7937   /* Since `re_exec' always passes NULL for the `regs' argument, we
7938      don't need to initialize the pattern buffer fields which affect it.  */
7939
7940   /* Match anchors at newlines.  */
7941   re_comp_buf.newline_anchor = 1;
7942
7943 # ifdef MBS_SUPPORT
7944   if (MB_CUR_MAX != 1)
7945     ret = wcs_regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
7946   else
7947 # endif
7948     ret = byte_regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
7949
7950   if (!ret)
7951     return NULL;
7952
7953   /* Yes, we're discarding `const' here if !HAVE_LIBINTL.  */
7954   return (char *) gettext (re_error_msgid + re_error_msgid_idx[(int) ret]);
7955 }
7956
7957
7958 int
7959 #ifdef _LIBC
7960 weak_function
7961 #endif
7962 re_exec (s)
7963     const char *s;
7964 {
7965   const int len = strlen (s);
7966   return
7967     0 <= re_search (&re_comp_buf, s, len, 0, len, (struct re_registers *) 0);
7968 }
7969
7970 #endif /* _REGEX_RE_COMP */
7971 \f
7972 /* POSIX.2 functions.  Don't define these for Emacs.  */
7973
7974 #ifndef emacs
7975
7976 /* regcomp takes a regular expression as a string and compiles it.
7977
7978    PREG is a regex_t *.  We do not expect any fields to be initialized,
7979    since POSIX says we shouldn't.  Thus, we set
7980
7981      `buffer' to the compiled pattern;
7982      `used' to the length of the compiled pattern;
7983      `syntax' to RE_SYNTAX_POSIX_EXTENDED if the
7984        REG_EXTENDED bit in CFLAGS is set; otherwise, to
7985        RE_SYNTAX_POSIX_BASIC;
7986      `newline_anchor' to REG_NEWLINE being set in CFLAGS;
7987      `fastmap' to an allocated space for the fastmap;
7988      `fastmap_accurate' to zero;
7989      `re_nsub' to the number of subexpressions in PATTERN.
7990
7991    PATTERN is the address of the pattern string.
7992
7993    CFLAGS is a series of bits which affect compilation.
7994
7995      If REG_EXTENDED is set, we use POSIX extended syntax; otherwise, we
7996      use POSIX basic syntax.
7997
7998      If REG_NEWLINE is set, then . and [^...] don't match newline.
7999      Also, regexec will try a match beginning after every newline.
8000
8001      If REG_ICASE is set, then we considers upper- and lowercase
8002      versions of letters to be equivalent when matching.
8003
8004      If REG_NOSUB is set, then when PREG is passed to regexec, that
8005      routine will report only success or failure, and nothing about the
8006      registers.
8007
8008    It returns 0 if it succeeds, nonzero if it doesn't.  (See regex.h for
8009    the return codes and their meanings.)  */
8010
8011 int
8012 regcomp (preg, pattern, cflags)
8013     regex_t *preg;
8014     const char *pattern;
8015     int cflags;
8016 {
8017   reg_errcode_t ret;
8018   reg_syntax_t syntax
8019     = (cflags & REG_EXTENDED) ?
8020       RE_SYNTAX_POSIX_EXTENDED : RE_SYNTAX_POSIX_BASIC;
8021
8022   /* regex_compile will allocate the space for the compiled pattern.  */
8023   preg->buffer = 0;
8024   preg->allocated = 0;
8025   preg->used = 0;
8026
8027   /* Try to allocate space for the fastmap.  */
8028   preg->fastmap = (char *) malloc (1 << BYTEWIDTH);
8029
8030   if (cflags & REG_ICASE)
8031     {
8032       unsigned i;
8033
8034       preg->translate
8035         = (RE_TRANSLATE_TYPE) malloc (CHAR_SET_SIZE
8036                                       * sizeof (*(RE_TRANSLATE_TYPE)0));
8037       if (preg->translate == NULL)
8038         return (int) REG_ESPACE;
8039
8040       /* Map uppercase characters to corresponding lowercase ones.  */
8041       for (i = 0; i < CHAR_SET_SIZE; i++)
8042         preg->translate[i] = ISUPPER (i) ? TOLOWER (i) : i;
8043     }
8044   else
8045     preg->translate = NULL;
8046
8047   /* If REG_NEWLINE is set, newlines are treated differently.  */
8048   if (cflags & REG_NEWLINE)
8049     { /* REG_NEWLINE implies neither . nor [^...] match newline.  */
8050       syntax &= ~RE_DOT_NEWLINE;
8051       syntax |= RE_HAT_LISTS_NOT_NEWLINE;
8052       /* It also changes the matching behavior.  */
8053       preg->newline_anchor = 1;
8054     }
8055   else
8056     preg->newline_anchor = 0;
8057
8058   preg->no_sub = !!(cflags & REG_NOSUB);
8059
8060   /* POSIX says a null character in the pattern terminates it, so we
8061      can use strlen here in compiling the pattern.  */
8062 # ifdef MBS_SUPPORT
8063   if (MB_CUR_MAX != 1)
8064     ret = wcs_regex_compile (pattern, strlen (pattern), syntax, preg);
8065   else
8066 # endif
8067     ret = byte_regex_compile (pattern, strlen (pattern), syntax, preg);
8068
8069   /* POSIX doesn't distinguish between an unmatched open-group and an
8070      unmatched close-group: both are REG_EPAREN.  */
8071   if (ret == REG_ERPAREN) ret = REG_EPAREN;
8072
8073   if (ret == REG_NOERROR && preg->fastmap)
8074     {
8075       /* Compute the fastmap now, since regexec cannot modify the pattern
8076          buffer.  */
8077       if (re_compile_fastmap (preg) == -2)
8078         {
8079           /* Some error occurred while computing the fastmap, just forget
8080              about it.  */
8081           free (preg->fastmap);
8082           preg->fastmap = NULL;
8083         }
8084     }
8085
8086   return (int) ret;
8087 }
8088 #ifdef _LIBC
8089 weak_alias (__regcomp, regcomp)
8090 #endif
8091
8092
8093 /* regexec searches for a given pattern, specified by PREG, in the
8094    string STRING.
8095
8096    If NMATCH is zero or REG_NOSUB was set in the cflags argument to
8097    `regcomp', we ignore PMATCH.  Otherwise, we assume PMATCH has at
8098    least NMATCH elements, and we set them to the offsets of the
8099    corresponding matched substrings.
8100
8101    EFLAGS specifies `execution flags' which affect matching: if
8102    REG_NOTBOL is set, then ^ does not match at the beginning of the
8103    string; if REG_NOTEOL is set, then $ does not match at the end.
8104
8105    We return 0 if we find a match and REG_NOMATCH if not.  */
8106
8107 int
8108 regexec (preg, string, nmatch, pmatch, eflags)
8109     const regex_t *preg;
8110     const char *string;
8111     size_t nmatch;
8112     regmatch_t pmatch[];
8113     int eflags;
8114 {
8115   int ret;
8116   struct re_registers regs;
8117   regex_t private_preg;
8118   int len = strlen (string);
8119   boolean want_reg_info = !preg->no_sub && nmatch > 0;
8120
8121   private_preg = *preg;
8122
8123   private_preg.not_bol = !!(eflags & REG_NOTBOL);
8124   private_preg.not_eol = !!(eflags & REG_NOTEOL);
8125
8126   /* The user has told us exactly how many registers to return
8127      information about, via `nmatch'.  We have to pass that on to the
8128      matching routines.  */
8129   private_preg.regs_allocated = REGS_FIXED;
8130
8131   if (want_reg_info)
8132     {
8133       regs.num_regs = nmatch;
8134       regs.start = TALLOC (nmatch * 2, regoff_t);
8135       if (regs.start == NULL)
8136         return (int) REG_NOMATCH;
8137       regs.end = regs.start + nmatch;
8138     }
8139
8140   /* Perform the searching operation.  */
8141   ret = re_search (&private_preg, string, len,
8142                    /* start: */ 0, /* range: */ len,
8143                    want_reg_info ? &regs : (struct re_registers *) 0);
8144
8145   /* Copy the register information to the POSIX structure.  */
8146   if (want_reg_info)
8147     {
8148       if (ret >= 0)
8149         {
8150           unsigned r;
8151
8152           for (r = 0; r < nmatch; r++)
8153             {
8154               pmatch[r].rm_so = regs.start[r];
8155               pmatch[r].rm_eo = regs.end[r];
8156             }
8157         }
8158
8159       /* If we needed the temporary register info, free the space now.  */
8160       free (regs.start);
8161     }
8162
8163   /* We want zero return to mean success, unlike `re_search'.  */
8164   return ret >= 0 ? (int) REG_NOERROR : (int) REG_NOMATCH;
8165 }
8166 #ifdef _LIBC
8167 weak_alias (__regexec, regexec)
8168 #endif
8169
8170
8171 /* Returns a message corresponding to an error code, ERRCODE, returned
8172    from either regcomp or regexec.   We don't use PREG here.  */
8173
8174 size_t
8175 regerror (errcode, preg, errbuf, errbuf_size)
8176     int errcode;
8177     const regex_t *preg;
8178     char *errbuf;
8179     size_t errbuf_size;
8180 {
8181   const char *msg;
8182   size_t msg_size;
8183
8184   if (errcode < 0
8185       || errcode >= (int) (sizeof (re_error_msgid_idx)
8186                            / sizeof (re_error_msgid_idx[0])))
8187     /* Only error codes returned by the rest of the code should be passed
8188        to this routine.  If we are given anything else, or if other regex
8189        code generates an invalid error code, then the program has a bug.
8190        Dump core so we can fix it.  */
8191     abort ();
8192
8193   msg = gettext (re_error_msgid + re_error_msgid_idx[errcode]);
8194
8195   msg_size = strlen (msg) + 1; /* Includes the null.  */
8196
8197   if (errbuf_size != 0)
8198     {
8199       if (msg_size > errbuf_size)
8200         {
8201 #if defined HAVE_MEMPCPY || defined _LIBC
8202           *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
8203 #else
8204           memcpy (errbuf, msg, errbuf_size - 1);
8205           errbuf[errbuf_size - 1] = 0;
8206 #endif
8207         }
8208       else
8209         memcpy (errbuf, msg, msg_size);
8210     }
8211
8212   return msg_size;
8213 }
8214 #ifdef _LIBC
8215 weak_alias (__regerror, regerror)
8216 #endif
8217
8218
8219 /* Free dynamically allocated space used by PREG.  */
8220
8221 void
8222 regfree (preg)
8223     regex_t *preg;
8224 {
8225   if (preg->buffer != NULL)
8226     free (preg->buffer);
8227   preg->buffer = NULL;
8228
8229   preg->allocated = 0;
8230   preg->used = 0;
8231
8232   if (preg->fastmap != NULL)
8233     free (preg->fastmap);
8234   preg->fastmap = NULL;
8235   preg->fastmap_accurate = 0;
8236
8237   if (preg->translate != NULL)
8238     free (preg->translate);
8239   preg->translate = NULL;
8240 }
8241 #ifdef _LIBC
8242 weak_alias (__regfree, regfree)
8243 #endif
8244
8245 #endif /* not emacs  */
8246
8247 #endif /* not INSIDE_RECURSION */
8248
8249 \f
8250 #undef STORE_NUMBER
8251 #undef STORE_NUMBER_AND_INCR
8252 #undef EXTRACT_NUMBER
8253 #undef EXTRACT_NUMBER_AND_INCR
8254
8255 #undef DEBUG_PRINT_COMPILED_PATTERN
8256 #undef DEBUG_PRINT_DOUBLE_STRING
8257
8258 #undef INIT_FAIL_STACK
8259 #undef RESET_FAIL_STACK
8260 #undef DOUBLE_FAIL_STACK
8261 #undef PUSH_PATTERN_OP
8262 #undef PUSH_FAILURE_POINTER
8263 #undef PUSH_FAILURE_INT
8264 #undef PUSH_FAILURE_ELT
8265 #undef POP_FAILURE_POINTER
8266 #undef POP_FAILURE_INT
8267 #undef POP_FAILURE_ELT
8268 #undef DEBUG_PUSH
8269 #undef DEBUG_POP
8270 #undef PUSH_FAILURE_POINT
8271 #undef POP_FAILURE_POINT
8272
8273 #undef REG_UNSET_VALUE
8274 #undef REG_UNSET
8275
8276 #undef PATFETCH
8277 #undef PATFETCH_RAW
8278 #undef PATUNFETCH
8279 #undef TRANSLATE
8280
8281 #undef INIT_BUF_SIZE
8282 #undef GET_BUFFER_SPACE
8283 #undef BUF_PUSH
8284 #undef BUF_PUSH_2
8285 #undef BUF_PUSH_3
8286 #undef STORE_JUMP
8287 #undef STORE_JUMP2
8288 #undef INSERT_JUMP
8289 #undef INSERT_JUMP2
8290 #undef EXTEND_BUFFER
8291 #undef GET_UNSIGNED_NUMBER
8292 #undef FREE_STACK_RETURN
8293
8294 # undef POINTER_TO_OFFSET
8295 # undef MATCHING_IN_FRST_STRING
8296 # undef PREFETCH
8297 # undef AT_STRINGS_BEG
8298 # undef AT_STRINGS_END
8299 # undef WORDCHAR_P
8300 # undef FREE_VAR
8301 # undef FREE_VARIABLES
8302 # undef NO_HIGHEST_ACTIVE_REG
8303 # undef NO_LOWEST_ACTIVE_REG
8304
8305 # undef CHAR_T
8306 # undef UCHAR_T
8307 # undef COMPILED_BUFFER_VAR
8308 # undef OFFSET_ADDRESS_SIZE
8309 # undef CHAR_CLASS_SIZE
8310 # undef PREFIX
8311 # undef ARG_PREFIX
8312 # undef PUT_CHAR
8313 # undef BYTE
8314 # undef WCHAR
8315
8316 # define DEFINED_ONCE