* MODULES.html.sh: New module wctype.
[gnulib.git] / lib / regex_internal.h
1 /* Extended regular expression matching and search library.
2    Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4    Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License along
17    with this program; if not, write to the Free Software Foundation,
18    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
19
20 #ifndef _REGEX_INTERNAL_H
21 #define _REGEX_INTERNAL_H 1
22
23 #include <assert.h>
24 #include <ctype.h>
25 #include <stdbool.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29
30 #ifndef _LIBC
31 # include "strcase.h"
32 #endif
33
34 #if defined HAVE_LANGINFO_H || defined HAVE_LANGINFO_CODESET || defined _LIBC
35 # include <langinfo.h>
36 #endif
37 #if defined HAVE_LOCALE_H || defined _LIBC
38 # include <locale.h>
39 #endif
40 #if defined HAVE_WCHAR_H || defined _LIBC
41 # include <wchar.h>
42 #endif /* HAVE_WCHAR_H || _LIBC */
43 #include <wctype.h>
44 #include <stdint.h>
45 #if defined _LIBC
46 # include <bits/libc-lock.h>
47 #else
48 # define __libc_lock_init(NAME) do { } while (0)
49 # define __libc_lock_lock(NAME) do { } while (0)
50 # define __libc_lock_unlock(NAME) do { } while (0)
51 #endif
52
53 /* In case that the system doesn't have isblank().  */
54 #if !defined _LIBC && !HAVE_DECL_ISBLANK && !defined isblank
55 # define isblank(ch) ((ch) == ' ' || (ch) == '\t')
56 #endif
57
58 #ifdef _LIBC
59 # ifndef _RE_DEFINE_LOCALE_FUNCTIONS
60 #  define _RE_DEFINE_LOCALE_FUNCTIONS 1
61 #   include <locale/localeinfo.h>
62 #   include <locale/elem-hash.h>
63 #   include <locale/coll-lookup.h>
64 # endif
65 #endif
66
67 /* This is for other GNU distributions with internationalized messages.  */
68 #if (HAVE_LIBINTL_H && ENABLE_NLS) || defined _LIBC
69 # include <libintl.h>
70 # ifdef _LIBC
71 #  undef gettext
72 #  define gettext(msgid) \
73   INTUSE(__dcgettext) (_libc_intl_domainname, msgid, LC_MESSAGES)
74 # endif
75 #else
76 # define gettext(msgid) (msgid)
77 #endif
78
79 #ifndef gettext_noop
80 /* This define is so xgettext can find the internationalizable
81    strings.  */
82 # define gettext_noop(String) String
83 #endif
84
85 /* For loser systems without the definition.  */
86 #ifndef SIZE_MAX
87 # define SIZE_MAX ((size_t) -1)
88 #endif
89
90 #if (defined MB_CUR_MAX && HAVE_LOCALE_H && HAVE_WCTYPE_H && HAVE_WCHAR_H && HAVE_ISWCTYPE && HAVE_WCRTOMB && HAVE_MBRTOWC && HAVE_WCSCOLL) || _LIBC
91 # define RE_ENABLE_I18N
92 #endif
93
94 #if __GNUC__ >= 3
95 # define BE(expr, val) __builtin_expect (expr, val)
96 #else
97 # define BE(expr, val) (expr)
98 # ifdef _LIBC
99 #  define inline
100 # endif
101 #endif
102
103 /* Number of ASCII characters.  */
104 #define ASCII_CHARS 0x80
105
106 /* Number of single byte characters.  */
107 #define SBC_MAX (UCHAR_MAX + 1)
108
109 #define COLL_ELEM_LEN_MAX 8
110
111 /* The character which represents newline.  */
112 #define NEWLINE_CHAR '\n'
113 #define WIDE_NEWLINE_CHAR L'\n'
114
115 /* Rename to standard API for using out of glibc.  */
116 #ifndef _LIBC
117 # define __wctype wctype
118 # define __iswctype iswctype
119 # define __btowc btowc
120 # ifndef __mempcpy
121 #  define __mempcpy mempcpy
122 # endif
123 # define __wcrtomb wcrtomb
124 # define __regfree regfree
125 # define attribute_hidden
126 #endif /* not _LIBC */
127
128 #if __GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)
129 # define __attribute(arg) __attribute__ (arg)
130 #else
131 # define __attribute(arg)
132 #endif
133
134 typedef __re_idx_t Idx;
135
136 /* Special return value for failure to match.  */
137 #define REG_MISSING ((Idx) -1)
138
139 /* Special return value for internal error.  */
140 #define REG_ERROR ((Idx) -2)
141
142 /* Test whether N is a valid index, and is not one of the above.  */
143 #ifdef _REGEX_LARGE_OFFSETS
144 # define REG_VALID_INDEX(n) ((Idx) (n) < REG_ERROR)
145 #else
146 # define REG_VALID_INDEX(n) (0 <= (n))
147 #endif
148
149 /* Test whether N is a valid nonzero index.  */
150 #ifdef _REGEX_LARGE_OFFSETS
151 # define REG_VALID_NONZERO_INDEX(n) ((Idx) ((n) - 1) < (Idx) (REG_ERROR - 1))
152 #else
153 # define REG_VALID_NONZERO_INDEX(n) (0 < (n))
154 #endif
155
156 /* A hash value, suitable for computing hash tables.  */
157 typedef __re_size_t re_hashval_t;
158
159 /* An integer used to represent a set of bits.  It must be unsigned,
160    and must be at least as wide as unsigned int.  */
161 typedef unsigned long int bitset_word_t;
162 /* All bits set in a bitset_word_t.  */
163 #define BITSET_WORD_MAX ULONG_MAX
164
165 /* Number of bits in a bitset_word_t.  For portability to hosts with
166    padding bits, do not use '(sizeof (bitset_word_t) * CHAR_BIT)';
167    instead, deduce it directly from BITSET_WORD_MAX.  Avoid
168    greater-than-32-bit integers and unconditional shifts by more than
169    31 bits, as they're not portable.  */
170 #if BITSET_WORD_MAX == 0xffffffff
171 # define BITSET_WORD_BITS 32
172 #elif BITSET_WORD_MAX >> 31 >> 5 == 1
173 # define BITSET_WORD_BITS 36
174 #elif BITSET_WORD_MAX >> 31 >> 16 == 1
175 # define BITSET_WORD_BITS 48
176 #elif BITSET_WORD_MAX >> 31 >> 28 == 1
177 # define BITSET_WORD_BITS 60
178 #elif BITSET_WORD_MAX >> 31 >> 31 >> 1 == 1
179 # define BITSET_WORD_BITS 64
180 #elif BITSET_WORD_MAX >> 31 >> 31 >> 9 == 1
181 # define BITSET_WORD_BITS 72
182 #elif BITSET_WORD_MAX >> 31 >> 31 >> 31 >> 31 >> 3 == 1
183 # define BITSET_WORD_BITS 128
184 #elif BITSET_WORD_MAX >> 31 >> 31 >> 31 >> 31 >> 31 >> 31 >> 31 >> 31 >> 7 == 1
185 # define BITSET_WORD_BITS 256
186 #elif BITSET_WORD_MAX >> 31 >> 31 >> 31 >> 31 >> 31 >> 31 >> 31 >> 31 >> 7 > 1
187 # define BITSET_WORD_BITS 257 /* any value > SBC_MAX will do here */
188 # if BITSET_WORD_BITS <= SBC_MAX
189 #  error "Invalid SBC_MAX"
190 # endif
191 #elif BITSET_WORD_MAX == (0xffffffff + 2) * 0xffffffff
192 /* Work around a bug in 64-bit PGC (before version 6.1-2), where the
193    preprocessor mishandles large unsigned values as if they were signed.  */
194 # define BITSET_WORD_BITS 64
195 #else
196 # error "Add case for new bitset_word_t size"
197 #endif
198
199 /* Number of bitset_word_t values in a bitset_t.  */
200 #define BITSET_WORDS ((SBC_MAX + BITSET_WORD_BITS - 1) / BITSET_WORD_BITS)
201
202 typedef bitset_word_t bitset_t[BITSET_WORDS];
203 typedef bitset_word_t *re_bitset_ptr_t;
204 typedef const bitset_word_t *re_const_bitset_ptr_t;
205
206 #define PREV_WORD_CONSTRAINT 0x0001
207 #define PREV_NOTWORD_CONSTRAINT 0x0002
208 #define NEXT_WORD_CONSTRAINT 0x0004
209 #define NEXT_NOTWORD_CONSTRAINT 0x0008
210 #define PREV_NEWLINE_CONSTRAINT 0x0010
211 #define NEXT_NEWLINE_CONSTRAINT 0x0020
212 #define PREV_BEGBUF_CONSTRAINT 0x0040
213 #define NEXT_ENDBUF_CONSTRAINT 0x0080
214 #define WORD_DELIM_CONSTRAINT 0x0100
215 #define NOT_WORD_DELIM_CONSTRAINT 0x0200
216
217 typedef enum
218 {
219   INSIDE_WORD = PREV_WORD_CONSTRAINT | NEXT_WORD_CONSTRAINT,
220   WORD_FIRST = PREV_NOTWORD_CONSTRAINT | NEXT_WORD_CONSTRAINT,
221   WORD_LAST = PREV_WORD_CONSTRAINT | NEXT_NOTWORD_CONSTRAINT,
222   INSIDE_NOTWORD = PREV_NOTWORD_CONSTRAINT | NEXT_NOTWORD_CONSTRAINT,
223   LINE_FIRST = PREV_NEWLINE_CONSTRAINT,
224   LINE_LAST = NEXT_NEWLINE_CONSTRAINT,
225   BUF_FIRST = PREV_BEGBUF_CONSTRAINT,
226   BUF_LAST = NEXT_ENDBUF_CONSTRAINT,
227   WORD_DELIM = WORD_DELIM_CONSTRAINT,
228   NOT_WORD_DELIM = NOT_WORD_DELIM_CONSTRAINT
229 } re_context_type;
230
231 typedef struct
232 {
233   Idx alloc;
234   Idx nelem;
235   Idx *elems;
236 } re_node_set;
237
238 typedef enum
239 {
240   NON_TYPE = 0,
241
242   /* Node type, These are used by token, node, tree.  */
243   CHARACTER = 1,
244   END_OF_RE = 2,
245   SIMPLE_BRACKET = 3,
246   OP_BACK_REF = 4,
247   OP_PERIOD = 5,
248 #ifdef RE_ENABLE_I18N
249   COMPLEX_BRACKET = 6,
250   OP_UTF8_PERIOD = 7,
251 #endif /* RE_ENABLE_I18N */
252
253   /* We define EPSILON_BIT as a macro so that OP_OPEN_SUBEXP is used
254      when the debugger shows values of this enum type.  */
255 #define EPSILON_BIT 8
256   OP_OPEN_SUBEXP = EPSILON_BIT | 0,
257   OP_CLOSE_SUBEXP = EPSILON_BIT | 1,
258   OP_ALT = EPSILON_BIT | 2,
259   OP_DUP_ASTERISK = EPSILON_BIT | 3,
260   ANCHOR = EPSILON_BIT | 4,
261
262   /* Tree type, these are used only by tree. */
263   CONCAT = 16,
264   SUBEXP = 17,
265
266   /* Token type, these are used only by token.  */
267   OP_DUP_PLUS = 18,
268   OP_DUP_QUESTION,
269   OP_OPEN_BRACKET,
270   OP_CLOSE_BRACKET,
271   OP_CHARSET_RANGE,
272   OP_OPEN_DUP_NUM,
273   OP_CLOSE_DUP_NUM,
274   OP_NON_MATCH_LIST,
275   OP_OPEN_COLL_ELEM,
276   OP_CLOSE_COLL_ELEM,
277   OP_OPEN_EQUIV_CLASS,
278   OP_CLOSE_EQUIV_CLASS,
279   OP_OPEN_CHAR_CLASS,
280   OP_CLOSE_CHAR_CLASS,
281   OP_WORD,
282   OP_NOTWORD,
283   OP_SPACE,
284   OP_NOTSPACE,
285   BACK_SLASH
286
287 } re_token_type_t;
288
289 #ifdef RE_ENABLE_I18N
290 typedef struct
291 {
292   /* Multibyte characters.  */
293   wchar_t *mbchars;
294
295   /* Collating symbols.  */
296 # ifdef _LIBC
297   int32_t *coll_syms;
298 # endif
299
300   /* Equivalence classes. */
301 # ifdef _LIBC
302   int32_t *equiv_classes;
303 # endif
304
305   /* Range expressions. */
306 # ifdef _LIBC
307   uint32_t *range_starts;
308   uint32_t *range_ends;
309 # else /* not _LIBC */
310   wchar_t *range_starts;
311   wchar_t *range_ends;
312 # endif /* not _LIBC */
313
314   /* Character classes. */
315   wctype_t *char_classes;
316
317   /* If this character set is the non-matching list.  */
318   unsigned int non_match : 1;
319
320   /* # of multibyte characters.  */
321   Idx nmbchars;
322
323   /* # of collating symbols.  */
324   Idx ncoll_syms;
325
326   /* # of equivalence classes. */
327   Idx nequiv_classes;
328
329   /* # of range expressions. */
330   Idx nranges;
331
332   /* # of character classes. */
333   Idx nchar_classes;
334 } re_charset_t;
335 #endif /* RE_ENABLE_I18N */
336
337 typedef struct
338 {
339   union
340   {
341     unsigned char c;            /* for CHARACTER */
342     re_bitset_ptr_t sbcset;     /* for SIMPLE_BRACKET */
343 #ifdef RE_ENABLE_I18N
344     re_charset_t *mbcset;       /* for COMPLEX_BRACKET */
345 #endif /* RE_ENABLE_I18N */
346     Idx idx;                    /* for BACK_REF */
347     re_context_type ctx_type;   /* for ANCHOR */
348   } opr;
349 #if __GNUC__ >= 2 && !__STRICT_ANSI__
350   re_token_type_t type : 8;
351 #else
352   re_token_type_t type;
353 #endif
354   unsigned int constraint : 10; /* context constraint */
355   unsigned int duplicated : 1;
356   unsigned int opt_subexp : 1;
357 #ifdef RE_ENABLE_I18N
358   unsigned int accept_mb : 1;
359   /* These 2 bits can be moved into the union if needed (e.g. if running out
360      of bits; move opr.c to opr.c.c and move the flags to opr.c.flags).  */
361   unsigned int mb_partial : 1;
362 #endif
363   unsigned int word_char : 1;
364 } re_token_t;
365
366 #define IS_EPSILON_NODE(type) ((type) & EPSILON_BIT)
367
368 struct re_string_t
369 {
370   /* Indicate the raw buffer which is the original string passed as an
371      argument of regexec(), re_search(), etc..  */
372   const unsigned char *raw_mbs;
373   /* Store the multibyte string.  In case of "case insensitive mode" like
374      REG_ICASE, upper cases of the string are stored, otherwise MBS points
375      the same address that RAW_MBS points.  */
376   unsigned char *mbs;
377 #ifdef RE_ENABLE_I18N
378   /* Store the wide character string which is corresponding to MBS.  */
379   wint_t *wcs;
380   Idx *offsets;
381   mbstate_t cur_state;
382 #endif
383   /* Index in RAW_MBS.  Each character mbs[i] corresponds to
384      raw_mbs[raw_mbs_idx + i].  */
385   Idx raw_mbs_idx;
386   /* The length of the valid characters in the buffers.  */
387   Idx valid_len;
388   /* The corresponding number of bytes in raw_mbs array.  */
389   Idx valid_raw_len;
390   /* The length of the buffers MBS and WCS.  */
391   Idx bufs_len;
392   /* The index in MBS, which is updated by re_string_fetch_byte.  */
393   Idx cur_idx;
394   /* length of RAW_MBS array.  */
395   Idx raw_len;
396   /* This is RAW_LEN - RAW_MBS_IDX + VALID_LEN - VALID_RAW_LEN.  */
397   Idx len;
398   /* End of the buffer may be shorter than its length in the cases such
399      as re_match_2, re_search_2.  Then, we use STOP for end of the buffer
400      instead of LEN.  */
401   Idx raw_stop;
402   /* This is RAW_STOP - RAW_MBS_IDX adjusted through OFFSETS.  */
403   Idx stop;
404
405   /* The context of mbs[0].  We store the context independently, since
406      the context of mbs[0] may be different from raw_mbs[0], which is
407      the beginning of the input string.  */
408   unsigned int tip_context;
409   /* The translation passed as a part of an argument of re_compile_pattern.  */
410   RE_TRANSLATE_TYPE trans;
411   /* Copy of re_dfa_t's word_char.  */
412   re_const_bitset_ptr_t word_char;
413   /* true if REG_ICASE.  */
414   unsigned char icase;
415   unsigned char is_utf8;
416   unsigned char map_notascii;
417   unsigned char mbs_allocated;
418   unsigned char offsets_needed;
419   unsigned char newline_anchor;
420   unsigned char word_ops_used;
421   int mb_cur_max;
422 };
423 typedef struct re_string_t re_string_t;
424
425
426 struct re_dfa_t;
427 typedef struct re_dfa_t re_dfa_t;
428
429 #ifndef _LIBC
430 # ifdef __i386__
431 #  define internal_function   __attribute ((regparm (3), stdcall))
432 # else
433 #  define internal_function
434 # endif
435 #endif
436
437 static reg_errcode_t re_string_realloc_buffers (re_string_t *pstr,
438                                                 Idx new_buf_len)
439      internal_function;
440 #ifdef RE_ENABLE_I18N
441 static void build_wcs_buffer (re_string_t *pstr) internal_function;
442 static reg_errcode_t build_wcs_upper_buffer (re_string_t *pstr)
443      internal_function;
444 #endif /* RE_ENABLE_I18N */
445 static void build_upper_buffer (re_string_t *pstr) internal_function;
446 static void re_string_translate_buffer (re_string_t *pstr) internal_function;
447 static unsigned int re_string_context_at (const re_string_t *input, Idx idx,
448                                           int eflags)
449      internal_function __attribute ((pure));
450 #define re_string_peek_byte(pstr, offset) \
451   ((pstr)->mbs[(pstr)->cur_idx + offset])
452 #define re_string_fetch_byte(pstr) \
453   ((pstr)->mbs[(pstr)->cur_idx++])
454 #define re_string_first_byte(pstr, idx) \
455   ((idx) == (pstr)->valid_len || (pstr)->wcs[idx] != WEOF)
456 #define re_string_is_single_byte_char(pstr, idx) \
457   ((pstr)->wcs[idx] != WEOF && ((pstr)->valid_len == (idx) + 1 \
458                                 || (pstr)->wcs[(idx) + 1] != WEOF))
459 #define re_string_eoi(pstr) ((pstr)->stop <= (pstr)->cur_idx)
460 #define re_string_cur_idx(pstr) ((pstr)->cur_idx)
461 #define re_string_get_buffer(pstr) ((pstr)->mbs)
462 #define re_string_length(pstr) ((pstr)->len)
463 #define re_string_byte_at(pstr,idx) ((pstr)->mbs[idx])
464 #define re_string_skip_bytes(pstr,idx) ((pstr)->cur_idx += (idx))
465 #define re_string_set_index(pstr,idx) ((pstr)->cur_idx = (idx))
466
467 #include <alloca.h>
468
469 #ifndef _LIBC
470 # if HAVE_ALLOCA
471 /* The OS usually guarantees only one guard page at the bottom of the stack,
472    and a page size can be as small as 4096 bytes.  So we cannot safely
473    allocate anything larger than 4096 bytes.  Also care for the possibility
474    of a few compiler-allocated temporary stack slots.  */
475 #  define __libc_use_alloca(n) ((n) < 4032)
476 # else
477 /* alloca is implemented with malloc, so just use malloc.  */
478 #  define __libc_use_alloca(n) 0
479 # endif
480 #endif
481
482 #ifndef MAX
483 # define MAX(a,b) ((a) < (b) ? (b) : (a))
484 #endif
485
486 #define re_malloc(t,n) ((t *) malloc ((n) * sizeof (t)))
487 #define re_realloc(p,t,n) ((t *) realloc (p, (n) * sizeof (t)))
488 #define re_free(p) free (p)
489
490 struct bin_tree_t
491 {
492   struct bin_tree_t *parent;
493   struct bin_tree_t *left;
494   struct bin_tree_t *right;
495   struct bin_tree_t *first;
496   struct bin_tree_t *next;
497
498   re_token_t token;
499
500   /* `node_idx' is the index in dfa->nodes, if `type' == 0.
501      Otherwise `type' indicate the type of this node.  */
502   Idx node_idx;
503 };
504 typedef struct bin_tree_t bin_tree_t;
505
506 #define BIN_TREE_STORAGE_SIZE \
507   ((1024 - sizeof (void *)) / sizeof (bin_tree_t))
508
509 struct bin_tree_storage_t
510 {
511   struct bin_tree_storage_t *next;
512   bin_tree_t data[BIN_TREE_STORAGE_SIZE];
513 };
514 typedef struct bin_tree_storage_t bin_tree_storage_t;
515
516 #define CONTEXT_WORD 1
517 #define CONTEXT_NEWLINE (CONTEXT_WORD << 1)
518 #define CONTEXT_BEGBUF (CONTEXT_NEWLINE << 1)
519 #define CONTEXT_ENDBUF (CONTEXT_BEGBUF << 1)
520
521 #define IS_WORD_CONTEXT(c) ((c) & CONTEXT_WORD)
522 #define IS_NEWLINE_CONTEXT(c) ((c) & CONTEXT_NEWLINE)
523 #define IS_BEGBUF_CONTEXT(c) ((c) & CONTEXT_BEGBUF)
524 #define IS_ENDBUF_CONTEXT(c) ((c) & CONTEXT_ENDBUF)
525 #define IS_ORDINARY_CONTEXT(c) ((c) == 0)
526
527 #define IS_WORD_CHAR(ch) (isalnum (ch) || (ch) == '_')
528 #define IS_NEWLINE(ch) ((ch) == NEWLINE_CHAR)
529 #define IS_WIDE_WORD_CHAR(ch) (iswalnum (ch) || (ch) == L'_')
530 #define IS_WIDE_NEWLINE(ch) ((ch) == WIDE_NEWLINE_CHAR)
531
532 #define NOT_SATISFY_PREV_CONSTRAINT(constraint,context) \
533  ((((constraint) & PREV_WORD_CONSTRAINT) && !IS_WORD_CONTEXT (context)) \
534   || ((constraint & PREV_NOTWORD_CONSTRAINT) && IS_WORD_CONTEXT (context)) \
535   || ((constraint & PREV_NEWLINE_CONSTRAINT) && !IS_NEWLINE_CONTEXT (context))\
536   || ((constraint & PREV_BEGBUF_CONSTRAINT) && !IS_BEGBUF_CONTEXT (context)))
537
538 #define NOT_SATISFY_NEXT_CONSTRAINT(constraint,context) \
539  ((((constraint) & NEXT_WORD_CONSTRAINT) && !IS_WORD_CONTEXT (context)) \
540   || (((constraint) & NEXT_NOTWORD_CONSTRAINT) && IS_WORD_CONTEXT (context)) \
541   || (((constraint) & NEXT_NEWLINE_CONSTRAINT) && !IS_NEWLINE_CONTEXT (context)) \
542   || (((constraint) & NEXT_ENDBUF_CONSTRAINT) && !IS_ENDBUF_CONTEXT (context)))
543
544 struct re_dfastate_t
545 {
546   re_hashval_t hash;
547   re_node_set nodes;
548   re_node_set non_eps_nodes;
549   re_node_set inveclosure;
550   re_node_set *entrance_nodes;
551   struct re_dfastate_t **trtable, **word_trtable;
552   unsigned int context : 4;
553   unsigned int halt : 1;
554   /* If this state can accept `multi byte'.
555      Note that we refer to multibyte characters, and multi character
556      collating elements as `multi byte'.  */
557   unsigned int accept_mb : 1;
558   /* If this state has backreference node(s).  */
559   unsigned int has_backref : 1;
560   unsigned int has_constraint : 1;
561 };
562 typedef struct re_dfastate_t re_dfastate_t;
563
564 struct re_state_table_entry
565 {
566   Idx num;
567   Idx alloc;
568   re_dfastate_t **array;
569 };
570
571 /* Array type used in re_sub_match_last_t and re_sub_match_top_t.  */
572
573 typedef struct
574 {
575   Idx next_idx;
576   Idx alloc;
577   re_dfastate_t **array;
578 } state_array_t;
579
580 /* Store information about the node NODE whose type is OP_CLOSE_SUBEXP.  */
581
582 typedef struct
583 {
584   Idx node;
585   Idx str_idx; /* The position NODE match at.  */
586   state_array_t path;
587 } re_sub_match_last_t;
588
589 /* Store information about the node NODE whose type is OP_OPEN_SUBEXP.
590    And information about the node, whose type is OP_CLOSE_SUBEXP,
591    corresponding to NODE is stored in LASTS.  */
592
593 typedef struct
594 {
595   Idx str_idx;
596   Idx node;
597   state_array_t *path;
598   Idx alasts; /* Allocation size of LASTS.  */
599   Idx nlasts; /* The number of LASTS.  */
600   re_sub_match_last_t **lasts;
601 } re_sub_match_top_t;
602
603 struct re_backref_cache_entry
604 {
605   Idx node;
606   Idx str_idx;
607   Idx subexp_from;
608   Idx subexp_to;
609   char more;
610   char unused;
611   unsigned short int eps_reachable_subexps_map;
612 };
613
614 typedef struct
615 {
616   /* The string object corresponding to the input string.  */
617   re_string_t input;
618 #if defined _LIBC || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L)
619   const re_dfa_t *const dfa;
620 #else
621   const re_dfa_t *dfa;
622 #endif
623   /* EFLAGS of the argument of regexec.  */
624   int eflags;
625   /* Where the matching ends.  */
626   Idx match_last;
627   Idx last_node;
628   /* The state log used by the matcher.  */
629   re_dfastate_t **state_log;
630   Idx state_log_top;
631   /* Back reference cache.  */
632   Idx nbkref_ents;
633   Idx abkref_ents;
634   struct re_backref_cache_entry *bkref_ents;
635   int max_mb_elem_len;
636   Idx nsub_tops;
637   Idx asub_tops;
638   re_sub_match_top_t **sub_tops;
639 } re_match_context_t;
640
641 typedef struct
642 {
643   re_dfastate_t **sifted_states;
644   re_dfastate_t **limited_states;
645   Idx last_node;
646   Idx last_str_idx;
647   re_node_set limits;
648 } re_sift_context_t;
649
650 struct re_fail_stack_ent_t
651 {
652   Idx idx;
653   Idx node;
654   regmatch_t *regs;
655   re_node_set eps_via_nodes;
656 };
657
658 struct re_fail_stack_t
659 {
660   Idx num;
661   Idx alloc;
662   struct re_fail_stack_ent_t *stack;
663 };
664
665 struct re_dfa_t
666 {
667   re_token_t *nodes;
668   size_t nodes_alloc;
669   size_t nodes_len;
670   Idx *nexts;
671   Idx *org_indices;
672   re_node_set *edests;
673   re_node_set *eclosures;
674   re_node_set *inveclosures;
675   struct re_state_table_entry *state_table;
676   re_dfastate_t *init_state;
677   re_dfastate_t *init_state_word;
678   re_dfastate_t *init_state_nl;
679   re_dfastate_t *init_state_begbuf;
680   bin_tree_t *str_tree;
681   bin_tree_storage_t *str_tree_storage;
682   re_bitset_ptr_t sb_char;
683   int str_tree_storage_idx;
684
685   /* number of subexpressions `re_nsub' is in regex_t.  */
686   re_hashval_t state_hash_mask;
687   Idx init_node;
688   Idx nbackref; /* The number of backreference in this dfa.  */
689
690   /* Bitmap expressing which backreference is used.  */
691   bitset_word_t used_bkref_map;
692   bitset_word_t completed_bkref_map;
693
694   unsigned int has_plural_match : 1;
695   /* If this dfa has "multibyte node", which is a backreference or
696      a node which can accept multibyte character or multi character
697      collating element.  */
698   unsigned int has_mb_node : 1;
699   unsigned int is_utf8 : 1;
700   unsigned int map_notascii : 1;
701   unsigned int word_ops_used : 1;
702   int mb_cur_max;
703   bitset_t word_char;
704   reg_syntax_t syntax;
705   Idx *subexp_map;
706 #ifdef DEBUG
707   char* re_str;
708 #endif
709 #ifdef _LIBC
710   __libc_lock_define (, lock)
711 #endif
712 };
713
714 #define re_node_set_init_empty(set) memset (set, '\0', sizeof (re_node_set))
715 #define re_node_set_remove(set,id) \
716   (re_node_set_remove_at (set, re_node_set_contains (set, id) - 1))
717 #define re_node_set_empty(p) ((p)->nelem = 0)
718 #define re_node_set_free(set) re_free ((set)->elems)
719 \f
720
721 typedef enum
722 {
723   SB_CHAR,
724   MB_CHAR,
725   EQUIV_CLASS,
726   COLL_SYM,
727   CHAR_CLASS
728 } bracket_elem_type;
729
730 typedef struct
731 {
732   bracket_elem_type type;
733   union
734   {
735     unsigned char ch;
736     unsigned char *name;
737     wchar_t wch;
738   } opr;
739 } bracket_elem_t;
740
741
742 /* Inline functions for bitset_t operation.  */
743
744 static inline void
745 bitset_set (bitset_t set, Idx i)
746 {
747   set[i / BITSET_WORD_BITS] |= (bitset_word_t) 1 << i % BITSET_WORD_BITS;
748 }
749
750 static inline void
751 bitset_clear (bitset_t set, Idx i)
752 {
753   set[i / BITSET_WORD_BITS] &= ~ ((bitset_word_t) 1 << i % BITSET_WORD_BITS);
754 }
755
756 static inline bool
757 bitset_contain (const bitset_t set, Idx i)
758 {
759   return (set[i / BITSET_WORD_BITS] >> i % BITSET_WORD_BITS) & 1;
760 }
761
762 static inline void
763 bitset_empty (bitset_t set)
764 {
765   memset (set, '\0', sizeof (bitset_t));
766 }
767
768 static inline void
769 bitset_set_all (bitset_t set)
770 {
771   memset (set, -1, sizeof (bitset_word_t) * (SBC_MAX / BITSET_WORD_BITS));
772   if (SBC_MAX % BITSET_WORD_BITS != 0)
773     set[BITSET_WORDS - 1] =
774       ((bitset_word_t) 1 << SBC_MAX % BITSET_WORD_BITS) - 1;
775 }
776
777 static inline void
778 bitset_copy (bitset_t dest, const bitset_t src)
779 {
780   memcpy (dest, src, sizeof (bitset_t));
781 }
782
783 static inline void
784 bitset_not (bitset_t set)
785 {
786   int bitset_i;
787   for (bitset_i = 0; bitset_i < SBC_MAX / BITSET_WORD_BITS; ++bitset_i)
788     set[bitset_i] = ~set[bitset_i];
789   if (SBC_MAX % BITSET_WORD_BITS != 0)
790     set[BITSET_WORDS - 1] =
791       ((((bitset_word_t) 1 << SBC_MAX % BITSET_WORD_BITS) - 1)
792        & ~set[BITSET_WORDS - 1]);
793 }
794
795 static inline void
796 bitset_merge (bitset_t dest, const bitset_t src)
797 {
798   int bitset_i;
799   for (bitset_i = 0; bitset_i < BITSET_WORDS; ++bitset_i)
800     dest[bitset_i] |= src[bitset_i];
801 }
802
803 static inline void
804 bitset_mask (bitset_t dest, const bitset_t src)
805 {
806   int bitset_i;
807   for (bitset_i = 0; bitset_i < BITSET_WORDS; ++bitset_i)
808     dest[bitset_i] &= src[bitset_i];
809 }
810
811 #ifdef RE_ENABLE_I18N
812 /* Inline functions for re_string.  */
813 static inline int
814 internal_function __attribute ((pure))
815 re_string_char_size_at (const re_string_t *pstr, Idx idx)
816 {
817   int byte_idx;
818   if (pstr->mb_cur_max == 1)
819     return 1;
820   for (byte_idx = 1; idx + byte_idx < pstr->valid_len; ++byte_idx)
821     if (pstr->wcs[idx + byte_idx] != WEOF)
822       break;
823   return byte_idx;
824 }
825
826 static inline wint_t
827 internal_function __attribute ((pure))
828 re_string_wchar_at (const re_string_t *pstr, Idx idx)
829 {
830   if (pstr->mb_cur_max == 1)
831     return (wint_t) pstr->mbs[idx];
832   return (wint_t) pstr->wcs[idx];
833 }
834
835 static int
836 internal_function __attribute ((pure))
837 re_string_elem_size_at (const re_string_t *pstr, Idx idx)
838 {
839 # ifdef _LIBC
840   const unsigned char *p, *extra;
841   const int32_t *table, *indirect;
842   int32_t tmp;
843 #  include <locale/weight.h>
844   uint_fast32_t nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
845
846   if (nrules != 0)
847     {
848       table = (const int32_t *) _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEMB);
849       extra = (const unsigned char *)
850         _NL_CURRENT (LC_COLLATE, _NL_COLLATE_EXTRAMB);
851       indirect = (const int32_t *) _NL_CURRENT (LC_COLLATE,
852                                                 _NL_COLLATE_INDIRECTMB);
853       p = pstr->mbs + idx;
854       tmp = findidx (&p);
855       return p - pstr->mbs - idx;
856     }
857   else
858 # endif /* _LIBC */
859     return 1;
860 }
861 #endif /* RE_ENABLE_I18N */
862
863 #endif /*  _REGEX_INTERNAL_H */