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