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