This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl.h: Move #defining SETLOCALE_LOCK
[perl5.git] / regcomp.h
1 /*    regcomp.h
2  *
3  *    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4  *    2000, 2001, 2002, 2003, 2005, 2006, 2007, by Larry Wall and others
5  *
6  *    You may distribute under the terms of either the GNU General Public
7  *    License or the Artistic License, as specified in the README file.
8  *
9  */
10
11 #if ! defined(PERL_REGCOMP_H_) && (   defined(PERL_CORE)            \
12                                    || defined(PERL_EXT_RE_BUILD))
13
14 #define PERL_REGCOMP_H_
15
16 #include "regcharclass.h"
17
18 /* Convert branch sequences to more efficient trie ops? */
19 #define PERL_ENABLE_TRIE_OPTIMISATION 1
20
21 /* Be really aggressive about optimising patterns with trie sequences? */
22 #define PERL_ENABLE_EXTENDED_TRIE_OPTIMISATION 1
23
24 /* Should the optimiser take positive assertions into account? */
25 #define PERL_ENABLE_POSITIVE_ASSERTION_STUDY 0
26
27 /* Not for production use: */
28 #define PERL_ENABLE_EXPERIMENTAL_REGEX_OPTIMISATIONS 0
29
30 /*
31  * Structure for regexp "program".  This is essentially a linear encoding
32  * of a nondeterministic finite-state machine (aka syntax charts or
33  * "railroad normal form" in parsing technology).  Each node is an opcode
34  * plus a "next" pointer, possibly plus an operand.  "Next" pointers of
35  * all nodes except BRANCH implement concatenation; a "next" pointer with
36  * a BRANCH on both ends of it is connecting two alternatives.  (Here we
37  * have one of the subtle syntax dependencies:  an individual BRANCH (as
38  * opposed to a collection of them) is never concatenated with anything
39  * because of operator precedence.)  The operand of some types of node is
40  * a literal string; for others, it is a node leading into a sub-FSM.  In
41  * particular, the operand of a BRANCH node is the first node of the branch.
42  * (NB this is *not* a tree structure:  the tail of the branch connects
43  * to the thing following the set of BRANCHes.)  The opcodes are defined
44  * in regnodes.h which is generated from regcomp.sym by regcomp.pl.
45  */
46
47 /*
48  * A node is one char of opcode followed by two chars of "next" pointer.
49  * "Next" pointers are stored as two 8-bit pieces, high order first.  The
50  * value is a positive offset from the opcode of the node containing it.
51  * An operand, if any, simply follows the node.  (Note that much of the
52  * code generation knows about this implicit relationship.)
53  *
54  * Using two bytes for the "next" pointer is vast overkill for most things,
55  * but allows patterns to get big without disasters.
56  *
57  * [The "next" pointer is always aligned on an even
58  * boundary, and reads the offset directly as a short.]
59  */
60
61 /* This is the stuff that used to live in regexp.h that was truly
62    private to the engine itself. It now lives here. */
63
64 typedef struct regexp_internal {
65         regnode *regstclass;    /* Optional startclass as identified or constructed
66                                    by the optimiser */
67         struct reg_data *data;  /* Additional miscellaneous data used by the program.
68                                    Used to make it easier to clone and free arbitrary
69                                    data that the regops need. Often the ARG field of
70                                    a regop is an index into this structure. NOTE the
71                                    0th element of this structure is NEVER used and is
72                                    strictly reserved for internal purposes. */
73         struct reg_code_blocks *code_blocks;/* positions of literal (?{}) */
74         U32 proglen;            /* size of the compiled program in regnodes */
75         U32 name_list_idx;      /* Optional data index of an array of paren names,
76                                    only valid when RXp_PAREN_NAMES(prog) is true,
77                                    0 means "no value" like any other index into the
78                                    data array.*/
79         regnode program[1];     /* Unwarranted chumminess with compiler. */
80 } regexp_internal;
81
82 #define RXi_SET(x,y) (x)->pprivate = (void*)(y)   
83 #define RXi_GET(x)   ((regexp_internal *)((x)->pprivate))
84 #define RXi_GET_DECL(r,ri) regexp_internal *ri = RXi_GET(r)
85 #define RXi_GET_DECL_NULL(r,ri) regexp_internal *ri = (r) ? RXi_GET(r) : NULL
86 /*
87  * Flags stored in regexp->intflags
88  * These are used only internally to the regexp engine
89  *
90  * See regexp.h for flags used externally to the regexp engine
91  */
92 #define RXp_INTFLAGS(rx)        ((rx)->intflags)
93 #define RX_INTFLAGS(prog)        RXp_INTFLAGS(ReANY(prog))
94
95 #define PREGf_SKIP              0x00000001
96 #define PREGf_IMPLICIT          0x00000002 /* Converted .* to ^.* */
97 #define PREGf_NAUGHTY           0x00000004 /* how exponential is this pattern? */
98 #define PREGf_VERBARG_SEEN      0x00000008
99 #define PREGf_CUTGROUP_SEEN     0x00000010
100 #define PREGf_USE_RE_EVAL       0x00000020 /* compiled with "use re 'eval'" */
101 /* these used to be extflags, but are now intflags */
102 #define PREGf_NOSCAN            0x00000040
103                                 /* spare */
104 #define PREGf_GPOS_SEEN         0x00000100
105 #define PREGf_GPOS_FLOAT        0x00000200
106
107 #define PREGf_ANCH_MBOL         0x00000400
108 #define PREGf_ANCH_SBOL         0x00000800
109 #define PREGf_ANCH_GPOS         0x00001000
110 #define PREGf_RECURSE_SEEN      0x00002000
111
112 #define PREGf_ANCH              \
113     ( PREGf_ANCH_SBOL | PREGf_ANCH_GPOS | PREGf_ANCH_MBOL )
114
115 /* this is where the old regcomp.h started */
116
117
118 /* Define the various regnode structures. These all should be a multiple
119  * of 32 bits large, and they should by and large correspond with each other
120  * in terms of naming, etc. Things can and will break in subtle ways if you
121  * change things without care. If you look at regexp.h you will see it
122  * contains this:
123  *
124  * struct regnode {
125  *   U8  flags;
126  *   U8  type;
127  *   U16 next_off;
128  * };
129  *
130  * This structure is the base unit of elements in the regexp program. When
131  * we increment our way through the program we increment by the size of this
132  * structure, and in all cases where regnode sizing is considered it is in
133  * units of this structure.
134  *
135  * This implies that no regnode style structure should contain 64 bit
136  * aligned members. Since the base regnode is 32 bits any member might
137  * not be 64 bit aligned no matter how you might try to pad out the
138  * struct itself (the regnode_ssc is special in this regard as it is
139  * never used in a program directly). If you want to store 64 bit
140  * members you need to store them specially. The struct regnode_p and the
141  * ARGp() and ARGp_SET() macros and related inline functions provide an example
142  * solution. Note they deal with a slightly more complicated problem than simple
143  * alignment, as pointers may be 32 bits or 64 bits depending on platform,
144  * but they illustrate the pattern to follow if you want to put a 64 bit value
145  * into a regnode.
146
147  * NOTE: Ideally we do not put pointers into the regnodes in a program. Instead
148  * we put them in the "data" part of the regexp structure and store the index into
149  * the data in the pointers in the regnode. This allows the pointer to be handled
150  * properly during clone/free operations (eg refcount bookkeeping). See S_add_data(),
151  * Perl_regdupe_internal(), Perl_regfree_internal() in regcomp.c for how the data
152  * array can be used, the letters 'arsSu' all refer to different types of SV that
153  * we already have support for in the data array.
154  */
155
156 struct regnode_string {
157     U8  str_len;
158     U8  type;
159     U16 next_off;
160     char string[1];
161 };
162
163 struct regnode_lstring { /* Constructed this way to keep the string aligned. */
164     U8  flags;
165     U8  type;
166     U16 next_off;
167     U32 str_len;    /* Only 18 bits allowed before would overflow 'next_off' */
168     char string[1];
169 };
170
171 struct regnode_anyofhs { /* Constructed this way to keep the string aligned. */
172     U8  str_len;
173     U8  type;
174     U16 next_off;
175     U32 arg1;                           /* set by set_ANYOF_arg() */
176     char string[1];
177 };
178
179 /* Argument bearing node - workhorse, 
180    arg1 is often for the data field */
181 struct regnode_1 {
182     U8  flags;
183     U8  type;
184     U16 next_off;
185     U32 arg1;
186 };
187
188 /* Node whose argument is 'SV *'.  This needs to be used very carefully in
189  * situations where pointers won't become invalid because of, say re-mallocs.
190  *
191  * Note that this regnode type is problematic and should not be used or copied
192  * and will be removed in the future. Pointers should be stored in the data[]
193  * array and an index into the data array stored in the regnode, which allows the
194  * pointers to be handled properly during clone/free operations on the regexp
195  * data structure. As a byproduct it also saves space, often we use a 16 bit
196  * member to store indexes into the data[] array.
197  *
198  * Also note that the weird storage here is because regnodes are 32 bit aligned,
199  * which means we cannot have a 64 bit aligned member. To make things more annoying
200  * the size of a pointer may vary by platform. Thus we use a character array, and
201  * then use inline functions to copy the data in or out.
202  * */
203 struct regnode_p {
204     U8  flags;
205     U8  type;
206     U16 next_off;
207     char arg1_sv_ptr_bytes[sizeof(SV *)];
208 };
209
210 /* Similar to a regnode_1 but with an extra signed argument */
211 struct regnode_2L {
212     U8  flags;
213     U8  type;
214     U16 next_off;
215     U32 arg1;
216     I32 arg2;
217 };
218
219 /* 'Two field' -- Two 16 bit unsigned args */
220 struct regnode_2 {
221     U8  flags;
222     U8  type;
223     U16 next_off;
224     U16 arg1;
225     U16 arg2;
226 };
227
228 #define REGNODE_BBM_BITMAP_LEN                                                  \
229                       /* 6 info bits requires 64 bits; 5 => 32 */               \
230                     ((1 << (UTF_CONTINUATION_BYTE_INFO_BITS)) / CHARBITS)
231
232 /* Used for matching any two-byte UTF-8 character whose start byte is known.
233  * The array is a bitmap capable of representing any possible continuation
234  * byte. */
235 struct regnode_bbm {
236     U8  first_byte;
237     U8  type;
238     U16 next_off;
239     U8 bitmap[REGNODE_BBM_BITMAP_LEN];
240 };
241
242 #define ANYOF_BITMAP_SIZE       (NUM_ANYOF_CODE_POINTS / CHARBITS)
243
244 /* Note that these form structs which are supersets of the next smaller one, by
245  * appending fields.  Alignment problems can occur if one of those optional
246  * fields requires stricter alignment than the base struct.  And formal
247  * parameters that can really be two or more of the structs should be
248  * declared as the smallest one it could be.  See commit message for
249  * 7dcac5f6a5195002b55c935ee1d67f67e1df280b.  Regnode allocation is done
250  * without regard to alignment, and changing it to would also require changing
251  * the code that inserts and deletes regnodes.  The basic single-argument
252  * regnode has a U32, which is what reganode() allocates as a unit.  Therefore
253  * no field can require stricter alignment than U32. */
254
255 /* also used by trie */
256 struct regnode_charclass {
257     U8  flags;
258     U8  type;
259     U16 next_off;
260     U32 arg1;                           /* set by set_ANYOF_arg() */
261     char bitmap[ANYOF_BITMAP_SIZE];     /* only compile-time */
262 };
263
264 /* has runtime (locale) \d, \w, ..., [:posix:] classes */
265 struct regnode_charclass_posixl {
266     U8  flags;                      /* ANYOF_MATCHES_POSIXL bit must go here */
267     U8  type;
268     U16 next_off;
269     U32 arg1;
270     char bitmap[ANYOF_BITMAP_SIZE];             /* both compile-time ... */
271     U32 classflags;                             /* and run-time */
272 };
273
274 /* A synthetic start class (SSC); is a regnode_charclass_posixl_fold, plus an
275  * extra SV*, used only during regex construction and which is not used by the
276  * main machinery in regexec.c and which does not get embedded in the final compiled
277  * regex program.
278  *
279  * Because it does not get embedded it does not have to comply with the alignment
280  * and sizing constraints required for a normal regnode structure: it MAY contain
281  * pointers or members of whatever size needed and the compiler will do the right
282  * thing. (Every other regnode type is 32 bit aligned.)
283  *
284  * Note that the 'next_off' field is unused, as the SSC stands alone, so there is
285  * never a next node.
286  */
287 struct regnode_ssc {
288     U8  flags;                      /* ANYOF_MATCHES_POSIXL bit must go here */
289     U8  type;
290     U16 next_off;
291     U32 arg1;
292     char bitmap[ANYOF_BITMAP_SIZE];     /* both compile-time ... */
293     U32 classflags;                     /* ... and run-time */
294
295     /* Auxiliary, only used during construction; NULL afterwards: list of code
296      * points matched */
297     SV* invlist;
298 };
299
300 /*  We take advantage of 'next_off' not otherwise being used in the SSC by
301  *  actually using it: by setting it to 1.  This allows us to test and
302  *  distinguish between an SSC and other ANYOF node types, as 'next_off' cannot
303  *  otherwise be 1, because it is the offset to the next regnode expressed in
304  *  units of regnodes.  Since an ANYOF node contains extra fields, it adds up
305  *  to 12 regnode units on 32-bit systems, (hence the minimum this can be (if
306  *  not 0) is 11 there.  Even if things get tightly packed on a 64-bit system,
307  *  it still would be more than 1. */
308 #define set_ANYOF_SYNTHETIC(n)  \
309     STMT_START{                 \
310         OP(n) = ANYOF;          \
311         NEXT_OFF(n) = 1;        \
312     } STMT_END
313
314 #define is_ANYOF_SYNTHETIC(n) (REGNODE_TYPE(OP(n)) == ANYOF && NEXT_OFF(n) == 1)
315
316 /* XXX fix this description.
317    Impose a limit of REG_INFTY on various pattern matching operations
318    to limit stack growth and to avoid "infinite" recursions.
319 */
320 /* The default size for REG_INFTY is U16_MAX, which is the same as
321    USHORT_MAX (see perl.h).  Unfortunately U16 isn't necessarily 16 bits
322    (see handy.h).  On the Cray C90, sizeof(short)==4 and hence U16_MAX is
323    ((1<<32)-1), while on the Cray T90, sizeof(short)==8 and U16_MAX is
324    ((1<<64)-1).  To limit stack growth to reasonable sizes, supply a
325    smaller default.
326         --Andy Dougherty  11 June 1998
327 */
328 #if SHORTSIZE > 2
329 #  ifndef REG_INFTY
330 #    define REG_INFTY  nBIT_UMAX(16)
331 #  endif
332 #endif
333
334 #ifndef REG_INFTY
335 #  define REG_INFTY U16_MAX
336 #endif
337
338 #define ARG_VALUE(arg) (arg)
339 #define ARG__SET(arg,val) ((arg) = (val))
340
341 #undef ARG
342 #undef ARG1
343 #undef ARG2
344
345 #define ARG(p) ARG_VALUE(ARG_LOC(p))
346 #define ARGp(p) ARGp_VALUE_inline(p)
347 #define ARG1(p) ARG_VALUE(ARG1_LOC(p))
348 #define ARG2(p) ARG_VALUE(ARG2_LOC(p))
349 #define ARG2L(p) ARG_VALUE(ARG2L_LOC(p))
350
351 #define ARG_SET(p, val) ARG__SET(ARG_LOC(p), (val))
352 #define ARG1_SET(p, val) ARG__SET(ARG1_LOC(p), (val))
353 #define ARG2_SET(p, val) ARG__SET(ARG2_LOC(p), (val))
354 #define ARG2L_SET(p, val) ARG__SET(ARG2L_LOC(p), (val))
355 #define ARGp_SET(p, val) ARGp_SET_inline((p),(val))
356
357 #undef NEXT_OFF
358 #undef NODE_ALIGN
359
360 #define NEXT_OFF(p) ((p)->next_off)
361 #define NODE_ALIGN(node)
362 /* the following define was set to 0xde in 075abff3
363  * as part of some linting logic. I have set it to 0
364  * as otherwise in every place where we /might/ set flags
365  * we have to set it 0 explicitly, which duplicates
366  * assignments and IMO adds an unacceptable level of
367  * surprise to working in the regex engine. If this
368  * is changed from 0 then at the very least make sure
369  * that SBOL for /^/ sets the flags to 0 explicitly.
370  * -- Yves */
371 #define NODE_ALIGN_FILL(node) ((node)->flags = 0)
372
373 #define SIZE_ALIGN NODE_ALIGN
374
375 #undef OP
376 #undef OPERAND
377 #undef STRING
378
379 #define OP(p)           ((p)->type)
380 #define FLAGS(p)        ((p)->flags)    /* Caution: Doesn't apply to all      \
381                                            regnode types.  For some, it's the \
382                                            character set of the regnode */
383 #define STR_LENs(p)     (__ASSERT_(OP(p) != LEXACT && OP(p) != LEXACT_REQ8)  \
384                                     ((struct regnode_string *)p)->str_len)
385 #define STRINGs(p)      (__ASSERT_(OP(p) != LEXACT && OP(p) != LEXACT_REQ8)  \
386                                     ((struct regnode_string *)p)->string)
387 #define OPERANDs(p)     STRINGs(p)
388
389 /* Long strings.  Currently limited to length 18 bits, which handles a 262000
390  * byte string.  The limiting factor is the 16 bit 'next_off' field, which
391  * points to the next regnode, so the furthest away it can be is 2**16.  On
392  * most architectures, regnodes are 2**2 bytes long, so that yields 2**18
393  * bytes.  Should a longer string be desired, we could increase it to 26 bits
394  * fairly easily, by changing this node to have longj type which causes the ARG
395  * field to be used for the link to the next regnode (although code would have
396  * to be changed to account for this), and then use a combination of the flags
397  * and next_off fields for the length.  To get 34 bit length, also change the
398  * node to be an ARG2L, using the second 32 bit field for the length, and not
399  * using the flags nor next_off fields at all.  One could have an llstring node
400  * and even an lllstring type. */
401 #define STR_LENl(p)     (__ASSERT_(OP(p) == LEXACT || OP(p) == LEXACT_REQ8)  \
402                                     (((struct regnode_lstring *)p)->str_len))
403 #define STRINGl(p)      (__ASSERT_(OP(p) == LEXACT || OP(p) == LEXACT_REQ8)  \
404                                     (((struct regnode_lstring *)p)->string))
405 #define OPERANDl(p)     STRINGl(p)
406
407 #define STR_LEN(p)      ((OP(p) == LEXACT || OP(p) == LEXACT_REQ8)           \
408                                                ? STR_LENl(p) : STR_LENs(p))
409 #define STRING(p)       ((OP(p) == LEXACT || OP(p) == LEXACT_REQ8)           \
410                                                ? STRINGl(p)  : STRINGs(p))
411 #define OPERAND(p)      STRING(p)
412
413 /* The number of (smallest) regnode equivalents that a string of length l bytes
414  * occupies - Used by the REGNODE_AFTER() macros and functions. */
415 #define STR_SZ(l)       (((l) + sizeof(regnode) - 1) / sizeof(regnode))
416
417 #define setSTR_LEN(p,v)                                                     \
418     STMT_START{                                                             \
419         if (OP(p) == LEXACT || OP(p) == LEXACT_REQ8)                        \
420             ((struct regnode_lstring *)(p))->str_len = (v);                 \
421         else                                                                \
422             ((struct regnode_string *)(p))->str_len = (v);                  \
423     } STMT_END
424
425 #define ANYOFR_BASE_BITS    20
426 #define ANYOFRbase(p)   (ARG(p) & nBIT_MASK(ANYOFR_BASE_BITS))
427 #define ANYOFRdelta(p)  (ARG(p) >> ANYOFR_BASE_BITS)
428
429 #undef NODE_ALIGN
430 #undef ARG_LOC
431
432 #define NODE_ALIGN(node)
433 #define ARG_LOC(p)      (((struct regnode_1 *)p)->arg1)
434 #define ARGp_BYTES_LOC(p)  (((struct regnode_p *)p)->arg1_sv_ptr_bytes)
435 #define ARG1_LOC(p)     (((struct regnode_2 *)p)->arg1)
436 #define ARG2_LOC(p)     (((struct regnode_2 *)p)->arg2)
437 #define ARG2L_LOC(p)    (((struct regnode_2L *)p)->arg2)
438
439 /* These should no longer be used directly in most cases. Please use
440  * the REGNODE_AFTER() macros instead. */
441 #define NODE_STEP_REGNODE       1       /* sizeof(regnode)/sizeof(regnode) */
442 #define EXTRA_STEP_2ARGS        EXTRA_SIZE(struct regnode_2)
443
444 /* Core macros for computing "the regnode after this one". See also
445  * Perl_regnode_after() in reginline.h
446  *
447  * At the struct level regnodes are a linked list, with each node pointing
448  * at the next (via offsets), usually via the C<next_off> field in the
449  * structure. Where there is a need for a node to have two children the
450  * immediate physical successor of the node in the compiled program is used
451  * to represent one of them. A good example is the BRANCH construct,
452  * consider the pattern C</head(?:[ab]foo|[cd]bar)tail/>
453  *
454  *      1: EXACT <head> (3)
455  *      3: BRANCH (8)
456  *      4:   ANYOFR[ab] (6)
457  *      6:   EXACT <foo> (14)
458  *      8: BRANCH (FAIL)
459  *      9:   ANYOFR[cd] (11)
460  *     11:   EXACT <bar> (14)
461  *     13: TAIL (14)
462  *     14: EXACT <tail> (16)
463  *     16: END (0)
464  *
465  * The numbers in parens at the end of each line show the "next_off" value
466  * for that regnode in the program. We can see that the C<next_off> of
467  * the first BRANCH node (#3) is the second BRANCH node (#8), and indicates
468  * where execution should go if the regnodes *following* the BRANCH node fail
469  * to accept the input string. Thus to find the "next BRANCH" we would do
470  * C<Perl_regnext()> and follow the C<next_off> pointer, and to find
471  * the "BRANCHes contents" we would use C<REGNODE_AFTER()>.
472  *
473  * Be aware that C<REGNODE_AFTER()> is not guaranteed to give a *useful*
474  * result once the regex peephole optimizer has run (it will be correct
475  * however!). By the time code in regexec.c executes various regnodes
476  * may have been optimized out of the the C<next_off> chain. An example
477  * can be seen above, node 13 will never be reached during execution
478  * flow as it has been stitched out of the C<next_off> chain. Both 6 and
479  * 11 would have pointed at it during compilation, but it exists only to
480  * facilitate the construction of the BRANCH structure and is effectively
481  * a NOOP, and thus the optimizer adjusts the links so it is skipped
482  * from execution time flow. In regexec.c it is only safe to use
483  * REGNODE_AFTER() on specific node types.
484  *
485  * Conversely during compilation C<Perl_regnext()> may not work properly
486  * as the C<next_off> may not be known until "later", (such as in the
487  * case of BRANCH nodes) and thus in regcomp.c the REGNODE_AFTER() macro
488  * is used very heavily instead.
489  *
490  * There are several variants of the REGNODE_AFTER_xxx() macros which
491  * are intended for use in different situations depending on how
492  * confident the code is about what type of node it is trying to find a
493  * successor for.
494  *
495  * So for instance if you know you are dealing with a known node type of
496  * constant size then you should use REGNODE_AFTER_type(n,TYPE).
497  *
498  * If you have a regnode pointer and you know you are dealing with a
499  * regnode type of constant size and you have already extracted its
500  * opcode use: REGNODE_AFTER_opcode(n,OPCODE).
501  *
502  * If you have a regnode and you know it is variable size then you
503  * you can produce optimized code by using REGNODE_AFTER_varies(n).
504  *
505  * If you have a regnode pointer and nothing else use: REGNODE_AFTER(n)
506  * This is the safest option and wraps C<Perl_regnode_after()>. It
507  * should produce the correct result regardless of its argument. The
508  * other options only produce correct results under specific
509  * constraints.
510  */
511 #define        REGNODE_AFTER_PLUS(p,extra)    ((p) + NODE_STEP_REGNODE + (extra))
512 /* under DEBUGGING we check that all REGNODE_AFTER optimized macros did the
513  * same thing that Perl_regnode_after() would have done. Note that when
514  * not compiled under DEBUGGING the assert_() macro is empty. Thus we
515  * don't have to implement different versions for DEBUGGING and not DEBUGGING,
516  * and explains why all the macros use REGNODE_AFTER_PLUS_DEBUG() under the
517  * hood. */
518 #define REGNODE_AFTER_PLUS_DEBUG(p,extra) \
519     (assert_(check_regnode_after(p,extra))  REGNODE_AFTER_PLUS((p),(extra)))
520
521 /* find the regnode after this p by using the opcode we previously extracted
522  * with OP(p) */
523 #define REGNODE_AFTER_opcode(p,op)          REGNODE_AFTER_PLUS_DEBUG((p),REGNODE_ARG_LEN(op))
524
525 /* find the regnode after this p by using the size of the struct associated with
526  * the opcode for p. use this when you *know* that p is pointer to a given type*/
527 #define REGNODE_AFTER_type(p,t)             REGNODE_AFTER_PLUS_DEBUG((p),EXTRA_SIZE(t))
528
529 /* find the regnode after this p by using OP(p) to find the regnode type of p */
530 #define REGNODE_AFTER_varies(p)            regnode_after(p,TRUE)
531
532 /* find the regnode after this p by using OP(p) to find the regnode type of p */
533 #define REGNODE_AFTER(p)            regnode_after(p,FALSE)
534
535
536 /* REGNODE_BEFORE() is trickier to deal with in terms of validation, execution.
537  * All the places that use it assume that p will be one struct regnode large.
538  * So to validate it we do the math to go backwards and then validate that the
539  * type of regnode we landed on is actually one regnode large. In theory if
540  * things go wrong the opcode should be illegal or say the item should be larger
541  * than it is, etc. */
542 #define        REGNODE_BEFORE_BASE(p)        ((p) - NODE_STEP_REGNODE)
543 #define        REGNODE_BEFORE_BASE_DEBUG(p)        \
544     (assert_(check_regnode_after(REGNODE_BEFORE_BASE(p),0))  REGNODE_BEFORE_BASE(p))
545 #define REGNODE_BEFORE(p) REGNODE_BEFORE_BASE_DEBUG(p)
546
547 #define FILL_NODE(offset, op)                                           \
548     STMT_START {                                                        \
549                     OP(REGNODE_p(offset)) = op;                         \
550                     NEXT_OFF(REGNODE_p(offset)) = 0;                    \
551     } STMT_END
552 #define FILL_ADVANCE_NODE(offset, op)                                   \
553     STMT_START {                                                        \
554                     FILL_NODE(offset, op);                              \
555                     (offset)++;                                         \
556     } STMT_END
557 #define FILL_ADVANCE_NODE_ARG(offset, op, arg)                          \
558     STMT_START {                                                        \
559                     ARG_SET(REGNODE_p(offset), arg);                    \
560                     FILL_ADVANCE_NODE(offset, op);                      \
561                     /* This is used generically for other operations    \
562                      * that have a longer argument */                   \
563                     (offset) += REGNODE_ARG_LEN(op);                          \
564     } STMT_END
565 #define FILL_ADVANCE_NODE_ARGp(offset, op, arg)                          \
566     STMT_START {                                                        \
567                     ARGp_SET(REGNODE_p(offset), arg);                    \
568                     FILL_ADVANCE_NODE(offset, op);                      \
569                     (offset) += REGNODE_ARG_LEN(op);                          \
570     } STMT_END
571 #define FILL_ADVANCE_NODE_2L_ARG(offset, op, arg1, arg2)                \
572     STMT_START {                                                        \
573                     ARG_SET(REGNODE_p(offset), arg1);                   \
574                     ARG2L_SET(REGNODE_p(offset), arg2);                 \
575                     FILL_ADVANCE_NODE(offset, op);                      \
576                     (offset) += 2;                                      \
577     } STMT_END
578
579 /* define these after we define the normal macros, so we can use
580  * ARGp_BYTES_LOC(n) */
581
582 static inline SV *
583 ARGp_VALUE_inline(struct regnode *node) {
584     SV *ptr;
585     memcpy(&ptr, ARGp_BYTES_LOC(node), sizeof(ptr));
586
587     return ptr;
588 }
589
590 static inline void
591 ARGp_SET_inline(struct regnode *node, SV *ptr) {
592     memcpy(ARGp_BYTES_LOC(node), &ptr, sizeof(ptr));
593 }
594
595 #define REG_MAGIC 0234
596
597 /* An ANYOF node matches a single code point based on specified criteria.  It
598  * now comes in several styles, but originally it was just a 256 element
599  * bitmap, indexed by the code point (which was always just a byte).  If the
600  * corresponding bit for a code point is 1, the code point matches; if 0, it
601  * doesn't match (complemented if inverted).  This worked fine before Unicode
602  * existed, but making a bit map long enough to accommodate a bit for every
603  * possible Unicode code point is prohibitively large.  Therefore it is made
604  * much much smaller, and an inversion list is created to handle code points
605  * not represented by the bitmap.  (It is now possible to compile the bitmap to
606  * a larger size to avoid the slower inversion list lookup for however big the
607  * bitmap is set to, but this is rarely done).  If the bitmap is sufficient to
608  * specify all possible matches (with nothing outside it matching), no
609  * inversion list is needed nor included, and the argument to the ANYOF node is
610  * set to the following: */
611
612 #define ANYOF_MATCHES_ALL_OUTSIDE_BITMAP_VALUE   U32_MAX
613 #define ANYOF_MATCHES_ALL_OUTSIDE_BITMAP(node)                              \
614                     (ARG(node) == ANYOF_MATCHES_ALL_OUTSIDE_BITMAP_VALUE)
615
616 #define ANYOF_MATCHES_NONE_OUTSIDE_BITMAP_VALUE                             \
617    /* Assumes ALL is odd */  (ANYOF_MATCHES_ALL_OUTSIDE_BITMAP_VALUE - 1)
618 #define ANYOF_MATCHES_NONE_OUTSIDE_BITMAP(node)                             \
619                     (ARG(node) == ANYOF_MATCHES_NONE_OUTSIDE_BITMAP_VALUE)
620
621 #define ANYOF_ONLY_HAS_BITMAP_MASK  ANYOF_MATCHES_NONE_OUTSIDE_BITMAP_VALUE
622 #define ANYOF_ONLY_HAS_BITMAP(node)                                         \
623   ((ARG(node) & ANYOF_ONLY_HAS_BITMAP_MASK) == ANYOF_ONLY_HAS_BITMAP_MASK)
624
625 #define ANYOF_HAS_AUX(node)  (! ANYOF_ONLY_HAS_BITMAP(node))
626
627 /* There are also ANYOFM nodes, used when the bit patterns representing the
628  * matched code points happen to be such that they can be checked by ANDing
629  * with a mask.  The regex compiler looks for and silently optimizes to using
630  * this node type in the few cases where it works out.  The eight octal digits
631  * form such a group.  These nodes are simple and fast and no further
632  * discussion is needed here.
633  *
634  * And, there are ANYOFH-ish nodes which match only code points that aren't in
635  * the bitmap  (the H stands for High).  These are common for expressing
636  * Unicode properties concerning non-Latin scripts.  They dispense with the
637  * bitmap altogether and don't need any of the flags discussed below.
638  *
639  * And, there are ANYOFR-ish nodes which match within a single range.
640  *
641  * When there is a need to specify what matches outside the bitmap, it is done
642  * by allocating an AV as part of the pattern's compiled form, and the argument
643  * to the node instead of being ANYOF_ONLY_HAS_BITMAP, points to that AV.
644  *
645  * (Actually, that is an oversimplification.  The AV is placed into the
646  * pattern's struct reg_data, and what is stored in the node's argument field
647  * is its index into that struct.  And the inversion list is just one element,
648  * the zeroth, of the AV.)
649  *
650  * There are certain situations where a single inversion list can't handle all
651  * the complexity.  These are dealt with by having extra elements in the AV, by
652  * specifying flag bits in the ANYOF node, and/or special code.  As an example,
653  * there are instances where what the ANYOF node matches is not completely
654  * known until runtime.  In these cases, a flag is set, and the bitmap has a 1
655  * for the code points which are known at compile time to be 1, and a 0 for the
656  * ones that are known to be 0, or require runtime resolution.  Some missing
657  * information can be found by merely seeing if the pattern is UTF-8 or not;
658  * other cases require looking at the extra elements in the AV.
659  *
660  * There are 5 cases where the bitmap is insufficient.  These are specified by
661  * flags in the node's flags field.  We could use five bits to represent the 5
662  * cases, but to save flags bits (which are perennially in short supply), we
663  * play some games.  The cases are:
664  *
665  *  1)  As already mentioned, if some code points outside the bitmap match, and
666  *      some do not, an inversion list is specified to indicate which ones.
667  *
668  *  2)  Under /d rules, it can happen that code points that are in the upper
669  *      latin1 range (\x80-\xFF or their equivalents on EBCDIC platforms) match
670  *      only if the runtime target string being matched against is UTF-8.  For
671  *      example /[\w[:punct:]]/d.  This happens only for certain posix classes,
672  *      and all such ones also have above-bitmap matches.
673  *
674  *      Note that /d rules are no longer encouraged; 'use 5.14' or higher
675  *      deselects them.  But they are still supported, and a flag is required
676  *      so that they can be properly handled.  But it can be a shared flag: see
677  *      4) below.
678  *
679  *  3)  Also under /d rules, something like /[\Wfoo]/ will match everything in
680  *      the \x80-\xFF range, unless the string being matched against is UTF-8.
681  *      An inversion list could be created for this case, but this is
682  *      relatively common, and it turns out that it's all or nothing:  if any
683  *      one of these code points matches, they all do.  Hence a single bit
684  *      suffices.  We use a shared flag that doesn't take up space by itself:
685  *      ANYOFD_NON_UTF8_MATCHES_ALL_NON_ASCII__shared.  This also means there
686  *      is an inversion list for the things that don't fit into the bitmap.
687  *
688  *  4)  A user-defined \p{} property may not have been defined by the time the
689  *      regex is compiled.  In this case, we don't know until runtime what it
690  *      will match, so we have to assume it could match anything, including
691  *      code points that ordinarily would be in the bitmap.  A flag bit is
692  *      necessary to indicate this, though we can use the
693  *      ANYOF_HAS_EXTRA_RUNTIME_MATCHES flag, along with the node not being
694  *      ANYOFD.  The information required to construct the property is stored
695  *      in the AV pointed to by the node's argument.  This case is quite
696  *      uncommon in the field, and the /(?[...])/ construct is a better way to
697  *      accomplish what this feature does.
698  *
699  *  5)  /[foo]/il may have folds that are only valid if the runtime locale is a
700  *      UTF-8 one.  The ANYOF_HAS_EXTRA_RUNTIME_MATCHES flag can also be used
701  *      for these.  The list is stored in a different element of the AV, so its
702  *      existence differentiates this case from that of 4), along with the node
703  *      being ANYOFL, with the ANYOFL_FOLD flag being set.  There are a few
704  *      additional folds valid only if the UTF-8 locale is a Turkic one which
705  *      is tested for explicitly.
706  *
707  * Note that the user-defined property flag and the /il flag can affect whether
708  * an ASCII character matches in the bitmap or not.
709  *
710  * And this still isn't the end of the story.  In some cases, warnings are
711  * supposed to be raised when matching certain categories of code points in the
712  * target string.  Flags are set to indicate this.  This adds up to a bunch of
713  * flags required, and we only have 8 available.  That is why we share some.
714  * At the moment, there are two spare flag bits, but this could be increased by
715  * various tricks:
716  *
717  * ANYOF_MATCHES_POSIXL is redundant with the node type ANYOFPOSIXL.  That flag
718  * could be removed, but at the expense of having to write extra code, which
719  * would take up space, and writing this turns out to be not hard, but not
720  * trivial.
721  *
722  * If this is done, an extension would be to make all ANYOFL nodes contain the
723  * extra 32 bits that ANYOFPOSIXL ones do, doubling each instance's size.  The
724  * posix flags only occupy 30 bits, so the ANYOFL_FOLD  and
725  * ANYOFL_UTF8_LOCALE_REQD bits could be moved to that extra space, but it
726  * would also mean extra instructions, as there are currently places in the
727  * code that assume those two bits are zero.
728  *
729  * Some flags are not used in synthetic start class (SSC) nodes, so could be
730  * shared should new flags be needed for SSCs, like SSC_MATCHES_EMPTY_STRING
731  * now. */
732
733 /* If this is set, the result of the match should be complemented.  regexec.c
734  * is expecting this to be in the low bit.  Never in an SSC */
735 #define ANYOF_INVERT                            0x01
736
737 /* For the SSC node only, which cannot be inverted, so is shared with that bit.
738  * This is used only during regex compilation. */
739 #define SSC_MATCHES_EMPTY_STRING                ANYOF_INVERT
740
741 /* Set if this is a regnode_charclass_posixl vs a regnode_charclass.  This
742  * is used for runtime \d, \w, [:posix:], ..., which are used only in locale
743  * and the optimizer's synthetic start class.  Non-locale \d, etc are resolved
744  * at compile-time.  Only set under /l; can be in SSC */
745 #define ANYOF_MATCHES_POSIXL                    0x02
746
747 /* The fold is calculated and stored in the bitmap where possible at compile
748  * time.  However under locale, the actual folding varies depending on
749  * what the locale is at the time of execution, so it has to be deferred until
750  * then.  Only set under /l; never in an SSC  */
751 #define ANYOFL_FOLD                             0x04
752
753 /* Warn if the runtime locale isn't a UTF-8 one (and the generated node assumes
754  * a UTF-8 locale. */
755 #define ANYOFL_UTF8_LOCALE_REQD                 0x08
756
757 /* Spare: Be sure to change ANYOF_FLAGS_ALL if this gets used  0x10 */
758
759 /* Spare: Be sure to change ANYOF_FLAGS_ALL if this gets used  0x20 */
760
761 /* Shared bit that indicates that there are potential additional matches stored
762  * outside the bitmap, as pointed to by the AV given by the node's argument.
763  * The node type is used at runtime (in conjunction with this flag and other
764  * information available then) to decide if the flag should be acted upon.
765  * This extra information is needed because of at least one of the following
766  * three reasons.
767  *      Under /d and the matched string is in UTF-8, it means the ANYOFD node
768  *          matches more things than in the bitmap.  Those things will be any
769  *          code point too high for the bitmap, but crucially, any non-ASCII
770  *          characters that match iff when using Unicode rules.  These all are
771  *          < 256.
772  *
773  *      Under /l and ANYOFL_FOLD is set, this flag may indicate there are
774  *          potential matches valid only if the locale is a UTF-8 one.  If so,
775  *          a list of them is stored in the AV.
776  *
777  *      For any non-ANYOFD node, there may be a user-defined property that
778  *          wasn't yet defined at the time the regex was compiled, and so must
779  *          be looked up at runtime, The information required to do so will
780  *          also be in the AV.
781  *
782  *      Note that an ANYOFL node may contain both a user-defined property, and
783  *      folds not always valid.  The important thing is that there is an AV to
784  *      look at. */
785 #define ANYOF_HAS_EXTRA_RUNTIME_MATCHES 0x40
786
787 /* Shared bit:
788  *      Under /d it means the ANYOFD node matches all non-ASCII Latin1
789  *          characters when the target string is not in utf8.
790  *      When not under /d, it means the ANYOF node should raise a warning if
791  *          matching against an above-Unicode code point.
792  * (These uses are mutually exclusive because the warning requires a \p{}, and
793  * \p{} implies /u which deselects /d).  An SSC node only has this bit set if
794  * what is meant is the warning.  The names are to make sure that you are
795  * cautioned about its shared nature */
796 #define ANYOFD_NON_UTF8_MATCHES_ALL_NON_ASCII__shared 0x80
797 #define ANYOF_WARN_SUPER__shared                      0x80
798
799 #define ANYOF_FLAGS_ALL         ((U8) ~(0x10|0x20))
800
801 #define ANYOF_LOCALE_FLAGS (  ANYOFL_FOLD               \
802                             | ANYOF_MATCHES_POSIXL      \
803                             | ANYOFL_UTF8_LOCALE_REQD)
804
805 /* These are the flags that apply to both regular ANYOF nodes and synthetic
806  * start class nodes during construction of the SSC.  During finalization of
807  * the SSC, other of the flags may get added to it */
808 #define ANYOF_COMMON_FLAGS      0
809
810 /* Character classes for node->classflags of ANYOF */
811 /* Should be synchronized with a table in regprop() */
812 /* 2n should be the normal one, paired with its complement at 2n+1 */
813
814 #define ANYOF_ALPHA    ((CC_ALPHA_) * 2)
815 #define ANYOF_NALPHA   ((ANYOF_ALPHA) + 1)
816 #define ANYOF_ALPHANUMERIC   ((CC_ALPHANUMERIC_) * 2)    /* [[:alnum:]] isalnum(3), utf8::IsAlnum */
817 #define ANYOF_NALPHANUMERIC  ((ANYOF_ALPHANUMERIC) + 1)
818 #define ANYOF_ASCII    ((CC_ASCII_) * 2)
819 #define ANYOF_NASCII   ((ANYOF_ASCII) + 1)
820 #define ANYOF_BLANK    ((CC_BLANK_) * 2)     /* GNU extension: space and tab: non-vertical space */
821 #define ANYOF_NBLANK   ((ANYOF_BLANK) + 1)
822 #define ANYOF_CASED    ((CC_CASED_) * 2)    /* Pseudo class for [:lower:] or
823                                                [:upper:] under /i */
824 #define ANYOF_NCASED   ((ANYOF_CASED) + 1)
825 #define ANYOF_CNTRL    ((CC_CNTRL_) * 2)
826 #define ANYOF_NCNTRL   ((ANYOF_CNTRL) + 1)
827 #define ANYOF_DIGIT    ((CC_DIGIT_) * 2)     /* \d */
828 #define ANYOF_NDIGIT   ((ANYOF_DIGIT) + 1)
829 #define ANYOF_GRAPH    ((CC_GRAPH_) * 2)
830 #define ANYOF_NGRAPH   ((ANYOF_GRAPH) + 1)
831 #define ANYOF_LOWER    ((CC_LOWER_) * 2)
832 #define ANYOF_NLOWER   ((ANYOF_LOWER) + 1)
833 #define ANYOF_PRINT    ((CC_PRINT_) * 2)
834 #define ANYOF_NPRINT   ((ANYOF_PRINT) + 1)
835 #define ANYOF_PUNCT    ((CC_PUNCT_) * 2)
836 #define ANYOF_NPUNCT   ((ANYOF_PUNCT) + 1)
837 #define ANYOF_SPACE    ((CC_SPACE_) * 2)     /* \s */
838 #define ANYOF_NSPACE   ((ANYOF_SPACE) + 1)
839 #define ANYOF_UPPER    ((CC_UPPER_) * 2)
840 #define ANYOF_NUPPER   ((ANYOF_UPPER) + 1)
841 #define ANYOF_WORDCHAR ((CC_WORDCHAR_) * 2)  /* \w, PL_utf8_alnum, utf8::IsWord, ALNUM */
842 #define ANYOF_NWORDCHAR   ((ANYOF_WORDCHAR) + 1)
843 #define ANYOF_XDIGIT   ((CC_XDIGIT_) * 2)
844 #define ANYOF_NXDIGIT  ((ANYOF_XDIGIT) + 1)
845
846 /* pseudo classes below this, not stored in the class bitmap, but used as flags
847    during compilation of char classes */
848
849 #define ANYOF_VERTWS    ((CC_VERTSPACE_) * 2)
850 #define ANYOF_NVERTWS   ((ANYOF_VERTWS)+1)
851
852 /* It is best if this is the last one, as all above it are stored as bits in a
853  * bitmap, and it isn't part of that bitmap */
854 #if CC_VERTSPACE_ != HIGHEST_REGCOMP_DOT_H_SYNC_
855 #   error Problem with handy.h HIGHEST_REGCOMP_DOT_H_SYNC_ #define
856 #endif
857
858 #define ANYOF_POSIXL_MAX (ANYOF_VERTWS) /* So upper loop limit is written:
859                                          *       '< ANYOF_MAX'
860                                          * Hence doesn't include VERTWS, as that
861                                          * is a pseudo class */
862 #define ANYOF_MAX      ANYOF_POSIXL_MAX
863
864 #if (ANYOF_POSIXL_MAX > 32)   /* Must fit in 32-bit word */
865 #   error Problem with handy.h CC_foo_ #defines
866 #endif
867
868 #define ANYOF_HORIZWS   ((ANYOF_POSIXL_MAX)+2) /* = (ANYOF_NVERTWS + 1) */
869 #define ANYOF_NHORIZWS  ((ANYOF_POSIXL_MAX)+3)
870
871 #define ANYOF_UNIPROP   ((ANYOF_POSIXL_MAX)+4)  /* Used to indicate a Unicode
872                                                    property: \p{} or \P{} */
873
874 /* Backward source code compatibility. */
875
876 #define ANYOF_ALNUML     ANYOF_ALNUM
877 #define ANYOF_NALNUML    ANYOF_NALNUM
878 #define ANYOF_SPACEL     ANYOF_SPACE
879 #define ANYOF_NSPACEL    ANYOF_NSPACE
880 #define ANYOF_ALNUM ANYOF_WORDCHAR
881 #define ANYOF_NALNUM ANYOF_NWORDCHAR
882
883 /* Utility macros for the bitmap and classes of ANYOF */
884
885 #define BITMAP_BYTE(p, c)       (( (U8*) (p)) [ ( ( (UV) (c)) >> 3) ] )
886 #define BITMAP_BIT(c)           (1U << ((c) & 7))
887 #define BITMAP_TEST(p, c)       (BITMAP_BYTE(p, c) & BITMAP_BIT((U8)(c)))
888
889 #define ANYOF_FLAGS(p)          ((p)->flags)
890
891 #define ANYOF_BIT(c)            BITMAP_BIT(c)
892
893 #define ANYOF_POSIXL_BITMAP(p)  (((regnode_charclass_posixl*) (p))->classflags)
894
895 #define POSIXL_SET(field, c)    ((field) |= (1U << (c)))
896 #define ANYOF_POSIXL_SET(p, c)  POSIXL_SET(ANYOF_POSIXL_BITMAP(p), (c))
897
898 #define POSIXL_CLEAR(field, c) ((field) &= ~ (1U <<(c)))
899 #define ANYOF_POSIXL_CLEAR(p, c) POSIXL_CLEAR(ANYOF_POSIXL_BITMAP(p), (c))
900
901 #define POSIXL_TEST(field, c)   ((field) & (1U << (c)))
902 #define ANYOF_POSIXL_TEST(p, c) POSIXL_TEST(ANYOF_POSIXL_BITMAP(p), (c))
903
904 #define POSIXL_ZERO(field)      STMT_START { (field) = 0; } STMT_END
905 #define ANYOF_POSIXL_ZERO(ret)  POSIXL_ZERO(ANYOF_POSIXL_BITMAP(ret))
906
907 #define ANYOF_POSIXL_SET_TO_BITMAP(p, bits)                                 \
908                 STMT_START { ANYOF_POSIXL_BITMAP(p) = (bits); } STMT_END
909
910 /* Shifts a bit to get, eg. 0x4000_0000, then subtracts 1 to get 0x3FFF_FFFF */
911 #define ANYOF_POSIXL_SETALL(ret)                                            \
912                 STMT_START {                                                \
913                     ANYOF_POSIXL_BITMAP(ret) = nBIT_MASK(ANYOF_POSIXL_MAX); \
914                 } STMT_END
915 #define ANYOF_CLASS_SETALL(ret) ANYOF_POSIXL_SETALL(ret)
916
917 #define ANYOF_POSIXL_TEST_ANY_SET(p)                               \
918         ((ANYOF_FLAGS(p) & ANYOF_MATCHES_POSIXL) && ANYOF_POSIXL_BITMAP(p))
919 #define ANYOF_CLASS_TEST_ANY_SET(p) ANYOF_POSIXL_TEST_ANY_SET(p)
920
921 /* Since an SSC always has this field, we don't have to test for that; nor do
922  * we want to because the bit isn't set for SSC during its construction */
923 #define ANYOF_POSIXL_SSC_TEST_ANY_SET(p)                               \
924                             cBOOL(((regnode_ssc*)(p))->classflags)
925 #define ANYOF_POSIXL_SSC_TEST_ALL_SET(p) /* Are all bits set? */       \
926         (((regnode_ssc*) (p))->classflags                              \
927                                         == nBIT_MASK(ANYOF_POSIXL_MAX))
928
929 #define ANYOF_POSIXL_TEST_ALL_SET(p)                                   \
930         ((ANYOF_FLAGS(p) & ANYOF_MATCHES_POSIXL)                       \
931          && ANYOF_POSIXL_BITMAP(p) == nBIT_MASK(ANYOF_POSIXL_MAX))
932
933 #define ANYOF_POSIXL_OR(source, dest) STMT_START { (dest)->classflags |= (source)->classflags ; } STMT_END
934 #define ANYOF_CLASS_OR(source, dest) ANYOF_POSIXL_OR((source), (dest))
935
936 #define ANYOF_POSIXL_AND(source, dest) STMT_START { (dest)->classflags &= (source)->classflags ; } STMT_END
937
938 #define ANYOF_BITMAP_ZERO(ret)  Zero(((regnode_charclass*)(ret))->bitmap, ANYOF_BITMAP_SIZE, char)
939 #define ANYOF_BITMAP(p)         ((regnode_charclass*)(p))->bitmap
940 #define ANYOF_BITMAP_BYTE(p, c) BITMAP_BYTE(ANYOF_BITMAP(p), c)
941 #define ANYOF_BITMAP_SET(p, c)  (ANYOF_BITMAP_BYTE(p, c) |=  ANYOF_BIT(c))
942 #define ANYOF_BITMAP_CLEAR(p,c) (ANYOF_BITMAP_BYTE(p, c) &= ~ANYOF_BIT(c))
943 #define ANYOF_BITMAP_TEST(p, c) cBOOL(ANYOF_BITMAP_BYTE(p, c) & ANYOF_BIT(c))
944
945 #define ANYOF_BITMAP_SETALL(p)          \
946         memset (ANYOF_BITMAP(p), 255, ANYOF_BITMAP_SIZE)
947 #define ANYOF_BITMAP_CLEARALL(p)        \
948         Zero (ANYOF_BITMAP(p), ANYOF_BITMAP_SIZE)
949
950 /*
951  * Utility definitions.
952  */
953 #ifndef CHARMASK
954 #  define UCHARAT(p)    ((int)*(const U8*)(p))
955 #else
956 #  define UCHARAT(p)    ((int)*(p)&CHARMASK)
957 #endif
958
959 /* Number of regnode equivalents that 'guy' occupies beyond the size of the
960  * smallest regnode. */
961 #define EXTRA_SIZE(guy) ((sizeof(guy)-1)/sizeof(struct regnode))
962
963 #define REG_ZERO_LEN_SEEN                   0x00000001
964 #define REG_LOOKBEHIND_SEEN                 0x00000002
965 /* add a short form alias to keep the line length police happy */
966 #define REG_LB_SEEN                         REG_LOOKBEHIND_SEEN
967 #define REG_GPOS_SEEN                       0x00000004
968 /* spare */
969 #define REG_RECURSE_SEEN                    0x00000020
970 #define REG_TOP_LEVEL_BRANCHES_SEEN         0x00000040
971 #define REG_VERBARG_SEEN                    0x00000080
972 #define REG_CUTGROUP_SEEN                   0x00000100
973 #define REG_RUN_ON_COMMENT_SEEN             0x00000200
974 #define REG_UNFOLDED_MULTI_SEEN             0x00000400
975 /* spare */
976 #define REG_UNBOUNDED_QUANTIFIER_SEEN       0x00001000
977
978
979 START_EXTERN_C
980
981 #ifdef PLUGGABLE_RE_EXTENSION
982 #include "re_nodes.h"
983 #else
984 #include "regnodes.h"
985 #endif
986
987 #ifndef PLUGGABLE_RE_EXTENSION
988 #ifndef DOINIT
989 EXTCONST regexp_engine PL_core_reg_engine;
990 #else /* DOINIT */
991 EXTCONST regexp_engine PL_core_reg_engine = { 
992         Perl_re_compile,
993         Perl_regexec_flags,
994         Perl_re_intuit_start,
995         Perl_re_intuit_string, 
996         Perl_regfree_internal,
997         Perl_reg_numbered_buff_fetch,
998         Perl_reg_numbered_buff_store,
999         Perl_reg_numbered_buff_length,
1000         Perl_reg_named_buff,
1001         Perl_reg_named_buff_iter,
1002         Perl_reg_qr_package,
1003 #if defined(USE_ITHREADS)        
1004         Perl_regdupe_internal,
1005 #endif        
1006         Perl_re_op_compile
1007 };
1008 #endif /* DOINIT */
1009 #endif /* PLUGGABLE_RE_EXTENSION */
1010
1011
1012 END_EXTERN_C
1013
1014
1015 /* .what is a character array with one character for each member of .data
1016  * The character describes the function of the corresponding .data item:
1017  *   a - AV for paren_name_list under DEBUGGING
1018  *   f - start-class data for regstclass optimization
1019  *   l - start op for literal (?{EVAL}) item
1020  *   L - start op for literal (?{EVAL}) item, with separate CV (qr//)
1021  *   r - pointer to an embedded code-containing qr, e.g. /ab$qr/
1022  *   s - inversion list for Unicode-style character class, and the
1023  *       multicharacter strings resulting from casefolding the single-character
1024  *       entries in the character class
1025  *   t - trie struct
1026  *   u - trie struct's widecharmap (a HV, so can't share, must dup)
1027  *       also used for revcharmap and words under DEBUGGING
1028  *   T - aho-trie struct
1029  *   S - sv for named capture lookup
1030  * 20010712 mjd@plover.com
1031  * (Remember to update re_dup() and pregfree() if you add any items.)
1032  */
1033 struct reg_data {
1034     U32 count;
1035     U8 *what;
1036     void* data[1];
1037 };
1038
1039 /* Code in S_to_utf8_substr() and S_to_byte_substr() in regexec.c accesses
1040    anchored* and float* via array indexes 0 and 1.  */
1041 #define anchored_substr substrs->data[0].substr
1042 #define anchored_utf8 substrs->data[0].utf8_substr
1043 #define anchored_offset substrs->data[0].min_offset
1044 #define anchored_end_shift substrs->data[0].end_shift
1045
1046 #define float_substr substrs->data[1].substr
1047 #define float_utf8 substrs->data[1].utf8_substr
1048 #define float_min_offset substrs->data[1].min_offset
1049 #define float_max_offset substrs->data[1].max_offset
1050 #define float_end_shift substrs->data[1].end_shift
1051
1052 #define check_substr substrs->data[2].substr
1053 #define check_utf8 substrs->data[2].utf8_substr
1054 #define check_offset_min substrs->data[2].min_offset
1055 #define check_offset_max substrs->data[2].max_offset
1056 #define check_end_shift substrs->data[2].end_shift
1057
1058 #define RX_ANCHORED_SUBSTR(rx)  (ReANY(rx)->anchored_substr)
1059 #define RX_ANCHORED_UTF8(rx)    (ReANY(rx)->anchored_utf8)
1060 #define RX_FLOAT_SUBSTR(rx)     (ReANY(rx)->float_substr)
1061 #define RX_FLOAT_UTF8(rx)       (ReANY(rx)->float_utf8)
1062
1063 /* trie related stuff */
1064
1065 /* a transition record for the state machine. the
1066    check field determines which state "owns" the
1067    transition. the char the transition is for is
1068    determined by offset from the owning states base
1069    field.  the next field determines which state
1070    is to be transitioned to if any.
1071 */
1072 struct _reg_trie_trans {
1073   U32 next;
1074   U32 check;
1075 };
1076
1077 /* a transition list element for the list based representation */
1078 struct _reg_trie_trans_list_elem {
1079     U16 forid;
1080     U32 newstate;
1081 };
1082 typedef struct _reg_trie_trans_list_elem reg_trie_trans_le;
1083
1084 /* a state for compressed nodes. base is an offset
1085   into an array of reg_trie_trans array. If wordnum is
1086   nonzero the state is accepting. if base is zero then
1087   the state has no children (and will be accepting)
1088 */
1089 struct _reg_trie_state {
1090   U16 wordnum;
1091   union {
1092     U32                base;
1093     reg_trie_trans_le* list;
1094   } trans;
1095 };
1096
1097 /* info per word; indexed by wordnum */
1098 typedef struct {
1099     U16  prev;  /* previous word in acceptance chain; eg in
1100                  * zzz|abc|ab/ after matching the chars abc, the
1101                  * accepted word is #2, and the previous accepted
1102                  * word is #3 */
1103     U32 len;    /* how many chars long is this word? */
1104     U32 accept; /* accept state for this word */
1105 } reg_trie_wordinfo;
1106
1107
1108 typedef struct _reg_trie_state    reg_trie_state;
1109 typedef struct _reg_trie_trans    reg_trie_trans;
1110
1111
1112 /* anything in here that needs to be freed later
1113    should be dealt with in pregfree.
1114    refcount is first in both this and _reg_ac_data to allow a space
1115    optimisation in Perl_regdupe.  */
1116 struct _reg_trie_data {
1117     U32             refcount;        /* number of times this trie is referenced */
1118     U32             lasttrans;       /* last valid transition element */
1119     U16             *charmap;        /* byte to charid lookup array */
1120     reg_trie_state  *states;         /* state data */
1121     reg_trie_trans  *trans;          /* array of transition elements */
1122     char            *bitmap;         /* stclass bitmap */
1123     U16             *jump;           /* optional 1 indexed array of offsets before tail 
1124                                         for the node following a given word. */
1125     reg_trie_wordinfo *wordinfo;     /* array of info per word */
1126     U16             uniquecharcount; /* unique chars in trie (width of trans table) */
1127     U32             startstate;      /* initial state - used for common prefix optimisation */
1128     STRLEN          minlen;          /* minimum length of words in trie - build/opt only? */
1129     STRLEN          maxlen;          /* maximum length of words in trie - build/opt only? */
1130     U32             prefixlen;       /* #chars in common prefix */
1131     U32             statecount;      /* Build only - number of states in the states array 
1132                                         (including the unused zero state) */
1133     U32             wordcount;       /* Build only */
1134 #ifdef DEBUGGING
1135     STRLEN          charcount;       /* Build only */
1136 #endif
1137 };
1138 /* There is one (3 under DEBUGGING) pointers that logically belong in this
1139    structure, but are held outside as they need duplication on thread cloning,
1140    whereas the rest of the structure can be read only:
1141     HV              *widecharmap;    code points > 255 to charid
1142 #ifdef DEBUGGING
1143     AV              *words;          Array of words contained in trie, for dumping
1144     AV              *revcharmap;     Map of each charid back to its character representation
1145 #endif
1146 */
1147
1148 #define TRIE_WORDS_OFFSET 2
1149
1150 typedef struct _reg_trie_data reg_trie_data;
1151
1152 /* refcount is first in both this and _reg_trie_data to allow a space
1153    optimisation in Perl_regdupe.  */
1154 struct _reg_ac_data {
1155     U32              refcount;
1156     U32              trie;
1157     U32              *fail;
1158     reg_trie_state   *states;
1159 };
1160 typedef struct _reg_ac_data reg_ac_data;
1161
1162 /* ANY_BIT doesn't use the structure, so we can borrow it here.
1163    This is simpler than refactoring all of it as wed end up with
1164    three different sets... */
1165
1166 #define TRIE_BITMAP(p)          (((reg_trie_data *)(p))->bitmap)
1167 #define TRIE_BITMAP_BYTE(p, c)  BITMAP_BYTE(TRIE_BITMAP(p), c)
1168 #define TRIE_BITMAP_SET(p, c)   (TRIE_BITMAP_BYTE(p, c) |=  ANYOF_BIT((U8)c))
1169 #define TRIE_BITMAP_CLEAR(p,c)  (TRIE_BITMAP_BYTE(p, c) &= ~ANYOF_BIT((U8)c))
1170 #define TRIE_BITMAP_TEST(p, c)  (TRIE_BITMAP_BYTE(p, c) &   ANYOF_BIT((U8)c))
1171
1172 #define IS_ANYOF_TRIE(op) ((op)==TRIEC || (op)==AHOCORASICKC)
1173 #define IS_TRIE_AC(op) ((op)>=AHOCORASICK)
1174
1175 /* these defines assume uniquecharcount is the correct variable, and state may be evaluated twice */
1176 #define TRIE_NODENUM(state) (((state)-1)/(trie->uniquecharcount)+1)
1177 #define SAFE_TRIE_NODENUM(state) ((state) ? (((state)-1)/(trie->uniquecharcount)+1) : (state))
1178 #define TRIE_NODEIDX(state) ((state) ? (((state)-1)*(trie->uniquecharcount)+1) : (state))
1179
1180 #ifdef DEBUGGING
1181 #define TRIE_CHARCOUNT(trie) ((trie)->charcount)
1182 #else
1183 #define TRIE_CHARCOUNT(trie) (trie_charcount)
1184 #endif
1185
1186 #define RE_TRIE_MAXBUF_INIT 65536
1187 #define RE_TRIE_MAXBUF_NAME "\022E_TRIE_MAXBUF"
1188 #define RE_DEBUG_FLAGS "\022E_DEBUG_FLAGS"
1189
1190 #define RE_COMPILE_RECURSION_INIT 1000
1191 #define RE_COMPILE_RECURSION_LIMIT "\022E_COMPILE_RECURSION_LIMIT"
1192
1193 /*
1194
1195 RE_DEBUG_FLAGS is used to control what debug output is emitted
1196 its divided into three groups of options, some of which interact.
1197 The three groups are: Compile, Execute, Extra. There is room for a
1198 further group, as currently only the low three bytes are used.
1199
1200     Compile Options:
1201     
1202     PARSE
1203     PEEP
1204     TRIE
1205     PROGRAM
1206
1207     Execute Options:
1208
1209     INTUIT
1210     MATCH
1211     TRIE
1212
1213     Extra Options
1214
1215     TRIE
1216
1217 If you modify any of these make sure you make corresponding changes to
1218 re.pm, especially to the documentation.
1219
1220 */
1221
1222
1223 /* Compile */
1224 #define RE_DEBUG_COMPILE_MASK      0x0000FF
1225 #define RE_DEBUG_COMPILE_PARSE     0x000001
1226 #define RE_DEBUG_COMPILE_OPTIMISE  0x000002
1227 #define RE_DEBUG_COMPILE_TRIE      0x000004
1228 #define RE_DEBUG_COMPILE_DUMP      0x000008
1229 #define RE_DEBUG_COMPILE_FLAGS     0x000010
1230 #define RE_DEBUG_COMPILE_TEST      0x000020
1231
1232 /* Execute */
1233 #define RE_DEBUG_EXECUTE_MASK      0x00FF00
1234 #define RE_DEBUG_EXECUTE_INTUIT    0x000100
1235 #define RE_DEBUG_EXECUTE_MATCH     0x000200
1236 #define RE_DEBUG_EXECUTE_TRIE      0x000400
1237
1238 /* Extra */
1239 #define RE_DEBUG_EXTRA_MASK              0x3FF0000
1240 #define RE_DEBUG_EXTRA_TRIE              0x0010000
1241 #define RE_DEBUG_EXTRA_STATE             0x0080000
1242 #define RE_DEBUG_EXTRA_OPTIMISE          0x0100000
1243 #define RE_DEBUG_EXTRA_BUFFERS           0x0400000
1244 #define RE_DEBUG_EXTRA_GPOS              0x0800000
1245 #define RE_DEBUG_EXTRA_DUMP_PRE_OPTIMIZE 0x1000000
1246 #define RE_DEBUG_EXTRA_WILDCARD          0x2000000
1247 /* combined */
1248 #define RE_DEBUG_EXTRA_STACK             0x0280000
1249
1250 #define RE_DEBUG_FLAG(x) (re_debug_flags & (x))
1251 /* Compile */
1252 #define DEBUG_COMPILE_r(x) DEBUG_r( \
1253     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_COMPILE_MASK)) x  )
1254 #define DEBUG_PARSE_r(x) DEBUG_r( \
1255     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_COMPILE_PARSE)) x  )
1256 #define DEBUG_OPTIMISE_r(x) DEBUG_r( \
1257     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_COMPILE_OPTIMISE)) x  )
1258 #define DEBUG_DUMP_r(x) DEBUG_r( \
1259     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_COMPILE_DUMP)) x  )
1260 #define DEBUG_TRIE_COMPILE_r(x) DEBUG_r( \
1261     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_COMPILE_TRIE)) x )
1262 #define DEBUG_FLAGS_r(x) DEBUG_r( \
1263     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_COMPILE_FLAGS)) x )
1264 #define DEBUG_TEST_r(x) DEBUG_r( \
1265     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_COMPILE_TEST)) x )
1266 /* Execute */
1267 #define DEBUG_EXECUTE_r(x) DEBUG_r( \
1268     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_EXECUTE_MASK)) x  )
1269 #define DEBUG_INTUIT_r(x) DEBUG_r( \
1270     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_EXECUTE_INTUIT)) x  )
1271 #define DEBUG_MATCH_r(x) DEBUG_r( \
1272     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_EXECUTE_MATCH)) x  )
1273 #define DEBUG_TRIE_EXECUTE_r(x) DEBUG_r( \
1274     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_EXECUTE_TRIE)) x )
1275
1276 /* Extra */
1277 #define DEBUG_EXTRA_r(x) DEBUG_r( \
1278     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_EXTRA_MASK)) x  )
1279 #define DEBUG_STATE_r(x) DEBUG_r( \
1280     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_EXTRA_STATE)) x )
1281 #define DEBUG_STACK_r(x) DEBUG_r( \
1282     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_EXTRA_STACK)) x )
1283 #define DEBUG_BUFFERS_r(x) DEBUG_r( \
1284     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_EXTRA_BUFFERS)) x )
1285
1286 #define DEBUG_OPTIMISE_MORE_r(x) DEBUG_r( \
1287     if (DEBUG_v_TEST || ((RE_DEBUG_EXTRA_OPTIMISE|RE_DEBUG_COMPILE_OPTIMISE) == \
1288          RE_DEBUG_FLAG(RE_DEBUG_EXTRA_OPTIMISE|RE_DEBUG_COMPILE_OPTIMISE))) x )
1289 #define DEBUG_TRIE_COMPILE_MORE_r(x) DEBUG_TRIE_COMPILE_r( \
1290     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_EXTRA_TRIE)) x )
1291 #define DEBUG_TRIE_EXECUTE_MORE_r(x) DEBUG_TRIE_EXECUTE_r( \
1292     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_EXTRA_TRIE)) x )
1293
1294 #define DEBUG_TRIE_r(x) DEBUG_r( \
1295     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_COMPILE_TRIE \
1296         | RE_DEBUG_EXECUTE_TRIE )) x )
1297 #define DEBUG_GPOS_r(x) DEBUG_r( \
1298     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_EXTRA_GPOS)) x )
1299
1300 #define DEBUG_DUMP_PRE_OPTIMIZE_r(x) DEBUG_r( \
1301     if (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_EXTRA_DUMP_PRE_OPTIMIZE)) x )
1302
1303 /* initialization */
1304 /* Get the debug flags for code not in regcomp.c nor regexec.c.  This doesn't
1305  * initialize the variable if it isn't already there, instead it just assumes
1306  * the flags are 0 */
1307 #define DECLARE_AND_GET_RE_DEBUG_FLAGS_NON_REGEX                               \
1308     volatile IV re_debug_flags = 0;  PERL_UNUSED_VAR(re_debug_flags);          \
1309     STMT_START {                                                               \
1310         SV * re_debug_flags_sv = NULL;                                         \
1311                      /* get_sv() can return NULL during global destruction. */ \
1312         re_debug_flags_sv = PL_curcop ? get_sv(RE_DEBUG_FLAGS, GV_ADD) : NULL; \
1313         if (re_debug_flags_sv && SvIOK(re_debug_flags_sv))                     \
1314             re_debug_flags=SvIV(re_debug_flags_sv);                            \
1315     } STMT_END
1316
1317
1318 #ifdef DEBUGGING
1319
1320 /* For use in regcomp.c and regexec.c,  Get the debug flags, and initialize to
1321  * the defaults if not done already */
1322 #define DECLARE_AND_GET_RE_DEBUG_FLAGS                                         \
1323     volatile IV re_debug_flags = 0;  PERL_UNUSED_VAR(re_debug_flags);          \
1324     DEBUG_r({                              \
1325         SV * re_debug_flags_sv = NULL;                                         \
1326                      /* get_sv() can return NULL during global destruction. */ \
1327         re_debug_flags_sv = PL_curcop ? get_sv(RE_DEBUG_FLAGS, GV_ADD) : NULL; \
1328         if (re_debug_flags_sv) {                                               \
1329             if (!SvIOK(re_debug_flags_sv)) /* If doesnt exist set to default */\
1330                 sv_setuv(re_debug_flags_sv,                                    \
1331                         /* These defaults should be kept in sync with re.pm */ \
1332                             RE_DEBUG_COMPILE_DUMP | RE_DEBUG_EXECUTE_MASK );   \
1333             re_debug_flags=SvIV(re_debug_flags_sv);                            \
1334         }                                                                      \
1335     })
1336
1337 #define isDEBUG_WILDCARD (DEBUG_v_TEST || RE_DEBUG_FLAG(RE_DEBUG_EXTRA_WILDCARD))
1338
1339 #define RE_PV_COLOR_DECL(rpv,rlen,isuni,dsv,pv,l,m,c1,c2)   \
1340     const char * const rpv =                                \
1341         pv_pretty((dsv), (pv), (l), (m),                    \
1342             PL_colors[(c1)],PL_colors[(c2)],                \
1343             PERL_PV_ESCAPE_RE|PERL_PV_ESCAPE_NONASCII |((isuni) ? PERL_PV_ESCAPE_UNI : 0) );         \
1344     const int rlen = SvCUR(dsv)
1345
1346 /* This is currently unsed in the core */
1347 #define RE_SV_ESCAPE(rpv,isuni,dsv,sv,m)                            \
1348     const char * const rpv =                                        \
1349         pv_pretty((dsv), (SvPV_nolen_const(sv)), (SvCUR(sv)), (m),  \
1350             PL_colors[(c1)],PL_colors[(c2)],                        \
1351             PERL_PV_ESCAPE_RE|PERL_PV_ESCAPE_NONASCII |((isuni) ? PERL_PV_ESCAPE_UNI : 0) )
1352
1353 #define RE_PV_QUOTED_DECL(rpv,isuni,dsv,pv,l,m)                     \
1354     const char * const rpv =                                        \
1355         pv_pretty((dsv), (pv), (l), (m),                            \
1356             PL_colors[0], PL_colors[1],                             \
1357             ( PERL_PV_PRETTY_QUOTE | PERL_PV_ESCAPE_RE | PERL_PV_ESCAPE_NONASCII | PERL_PV_PRETTY_ELLIPSES | \
1358               ((isuni) ? PERL_PV_ESCAPE_UNI : 0))                  \
1359         )
1360
1361 #define RE_SV_DUMPLEN(ItEm) (SvCUR(ItEm) - (SvTAIL(ItEm)!=0))
1362 #define RE_SV_TAIL(ItEm) (SvTAIL(ItEm) ? "$" : "")
1363     
1364 #else /* if not DEBUGGING */
1365
1366 #define DECLARE_AND_GET_RE_DEBUG_FLAGS  dNOOP
1367 #define RE_PV_COLOR_DECL(rpv,rlen,isuni,dsv,pv,l,m,c1,c2)  dNOOP
1368 #define RE_SV_ESCAPE(rpv,isuni,dsv,sv,m)
1369 #define RE_PV_QUOTED_DECL(rpv,isuni,dsv,pv,l,m)  dNOOP
1370 #define RE_SV_DUMPLEN(ItEm)
1371 #define RE_SV_TAIL(ItEm)
1372 #define isDEBUG_WILDCARD 0
1373
1374 #endif /* DEBUG RELATED DEFINES */
1375
1376 #define FIRST_NON_ASCII_DECIMAL_DIGIT 0x660  /* ARABIC_INDIC_DIGIT_ZERO */
1377
1378 typedef enum {
1379         TRADITIONAL_BOUND = CC_WORDCHAR_,
1380         GCB_BOUND,
1381         LB_BOUND,
1382         SB_BOUND,
1383         WB_BOUND
1384 } bound_type;
1385
1386 /* This unpacks the FLAGS field of ANYOF[HR]x nodes.  The value it contains
1387  * gives the strict lower bound for the UTF-8 start byte of any code point
1388  * matchable by the node, and a loose upper bound as well.
1389  *
1390  * The low bound is stored as 0xC0 + ((the upper 6 bits) >> 2)
1391  * The loose upper bound is determined from the lowest 2 bits and the low bound
1392  * (called x) as follows:
1393  *
1394  * 11  The upper limit of the range can be as much as (EF - x) / 8
1395  * 10  The upper limit of the range can be as much as (EF - x) / 4
1396  * 01  The upper limit of the range can be as much as (EF - x) / 2
1397  * 00  The upper limit of the range can be as much as  EF
1398  *
1399  * For motivation of this design, see commit message in
1400  * 3146c00a633e9cbed741e10146662fbcedfdb8d3 */
1401 #ifdef EBCDIC
1402 #  define MAX_ANYOF_HRx_BYTE  0xF4
1403 #else
1404 #  define MAX_ANYOF_HRx_BYTE  0xEF
1405 #endif
1406 #define LOWEST_ANYOF_HRx_BYTE(b) (((b) >> 2) + 0xC0)
1407 #define HIGHEST_ANYOF_HRx_BYTE(b)                                           \
1408                                   (LOWEST_ANYOF_HRx_BYTE(b)                 \
1409           + ((MAX_ANYOF_HRx_BYTE - LOWEST_ANYOF_HRx_BYTE(b)) >> ((b) & 3)))
1410
1411 #if !defined(PERL_IN_XSUB_RE) || defined(PLUGGABLE_RE_EXTENSION)
1412 #  define GET_REGCLASS_AUX_DATA(a,b,c,d,e,f)  get_regclass_aux_data(a,b,c,d,e,f)
1413 #else
1414 #  define GET_REGCLASS_AUX_DATA(a,b,c,d,e,f)  get_re_gclass_aux_data(a,b,c,d,e,f)
1415 #endif
1416
1417 #define REGNODE_TYPE(node)              (PL_regnode_info[(node)].type)
1418 #define REGNODE_OFF_BY_ARG(node)        (PL_regnode_info[(node)].off_by_arg)
1419 #define REGNODE_ARG_LEN(node)           (PL_regnode_info[(node)].arg_len)
1420 #define REGNODE_ARG_LEN_VARIES(node)    (PL_regnode_info[(node)].arg_len_varies)
1421 #define REGNODE_NAME(node)              (PL_regnode_name[(node)])
1422
1423 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C)
1424 #include "reginline.h"
1425 #endif
1426
1427 #endif /* PERL_REGCOMP_H_ */
1428
1429 /*
1430  * ex: set ts=8 sts=4 sw=4 et:
1431  */