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