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