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