This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Another warning-silencing cast
[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 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 typedef OP OP_4tree;                    /* Will be redefined later. */
12
13
14 #define PERL_ENABLE_TRIE_OPTIMISATION 1
15 #define PERL_ENABLE_EXTENDED_TRIE_OPTIMISATION 1
16 #define PERL_ENABLE_POSITIVE_ASSERTION_STUDY 1
17 #define PERL_ENABLE_EXPERIMENTAL_REGEX_OPTIMISATIONS 0
18
19 /*
20  * The "internal use only" fields in regexp.h are present to pass info from
21  * compile to execute that permits the execute phase to run lots faster on
22  * simple cases.  They are:
23  *
24  * regstart     sv that must begin a match; NULL if none obvious
25  * reganch      is the match anchored (at beginning-of-line only)?
26  * regmust      string (pointer into program) that match must include, or NULL
27  *  [regmust changed to SV* for bminstr()--law]
28  * regmlen      length of regmust string
29  *  [regmlen not used currently]
30  *
31  * Regstart and reganch permit very fast decisions on suitable starting points
32  * for a match, cutting down the work a lot.  Regmust permits fast rejection
33  * of lines that cannot possibly match.  The regmust tests are costly enough
34  * that pregcomp() supplies a regmust only if the r.e. contains something
35  * potentially expensive (at present, the only such thing detected is * or +
36  * at the start of the r.e., which can involve a lot of backup).  Regmlen is
37  * supplied because the test in pregexec() needs it and pregcomp() is computing
38  * it anyway.
39  * [regmust is now supplied always.  The tests that use regmust have a
40  * heuristic that disables the test if it usually matches.]
41  *
42  * [In fact, we now use regmust in many cases to locate where the search
43  * starts in the string, so if regback is >= 0, the regmust search is never
44  * wasted effort.  The regback variable says how many characters back from
45  * where regmust matched is the earliest possible start of the match.
46  * For instance, /[a-z].foo/ has a regmust of 'foo' and a regback of 2.]
47  */
48
49 /*
50  * Structure for regexp "program".  This is essentially a linear encoding
51  * of a nondeterministic finite-state machine (aka syntax charts or
52  * "railroad normal form" in parsing technology).  Each node is an opcode
53  * plus a "next" pointer, possibly plus an operand.  "Next" pointers of
54  * all nodes except BRANCH implement concatenation; a "next" pointer with
55  * a BRANCH on both ends of it is connecting two alternatives.  (Here we
56  * have one of the subtle syntax dependencies:  an individual BRANCH (as
57  * opposed to a collection of them) is never concatenated with anything
58  * because of operator precedence.)  The operand of some types of node is
59  * a literal string; for others, it is a node leading into a sub-FSM.  In
60  * particular, the operand of a BRANCH node is the first node of the branch.
61  * (NB this is *not* a tree structure:  the tail of the branch connects
62  * to the thing following the set of BRANCHes.)  The opcodes are defined
63  * in regnodes.h which is generated from regcomp.sym by regcomp.pl.
64  */
65
66 /*
67  * A node is one char of opcode followed by two chars of "next" pointer.
68  * "Next" pointers are stored as two 8-bit pieces, high order first.  The
69  * value is a positive offset from the opcode of the node containing it.
70  * An operand, if any, simply follows the node.  (Note that much of the
71  * code generation knows about this implicit relationship.)
72  *
73  * Using two bytes for the "next" pointer is vast overkill for most things,
74  * but allows patterns to get big without disasters.
75  *
76  * [The "next" pointer is always aligned on an even
77  * boundary, and reads the offset directly as a short.  Also, there is no
78  * special test to reverse the sign of BACK pointers since the offset is
79  * stored negative.]
80  */
81
82 struct regnode_string {
83     U8  str_len;
84     U8  type;
85     U16 next_off;
86     char string[1];
87 };
88
89 struct regnode_1 {
90     U8  flags;
91     U8  type;
92     U16 next_off;
93     U32 arg1;
94 };
95
96 struct regnode_2 {
97     U8  flags;
98     U8  type;
99     U16 next_off;
100     U16 arg1;
101     U16 arg2;
102 };
103
104 #define ANYOF_BITMAP_SIZE       32      /* 256 b/(8 b/B) */
105 #define ANYOF_CLASSBITMAP_SIZE   4      /* up to 32 (8*4) named classes */
106
107 /* also used by trie */
108 struct regnode_charclass {
109     U8  flags;
110     U8  type;
111     U16 next_off;
112     U32 arg1;
113     char bitmap[ANYOF_BITMAP_SIZE];     /* only compile-time */
114 };
115
116 struct regnode_charclass_class {        /* has [[:blah:]] classes */
117     U8  flags;                          /* should have ANYOF_CLASS here */
118     U8  type;
119     U16 next_off;
120     U32 arg1;
121     char bitmap[ANYOF_BITMAP_SIZE];             /* both compile-time */
122     char classflags[ANYOF_CLASSBITMAP_SIZE];    /* and run-time */
123 };
124
125 /* XXX fix this description.
126    Impose a limit of REG_INFTY on various pattern matching operations
127    to limit stack growth and to avoid "infinite" recursions.
128 */
129 /* The default size for REG_INFTY is I16_MAX, which is the same as
130    SHORT_MAX (see perl.h).  Unfortunately I16 isn't necessarily 16 bits
131    (see handy.h).  On the Cray C90, sizeof(short)==4 and hence I16_MAX is
132    ((1<<31)-1), while on the Cray T90, sizeof(short)==8 and I16_MAX is
133    ((1<<63)-1).  To limit stack growth to reasonable sizes, supply a
134    smaller default.
135         --Andy Dougherty  11 June 1998
136 */
137 #if SHORTSIZE > 2
138 #  ifndef REG_INFTY
139 #    define REG_INFTY ((1<<15)-1)
140 #  endif
141 #endif
142
143 #ifndef REG_INFTY
144 #  define REG_INFTY I16_MAX
145 #endif
146
147 #define ARG_VALUE(arg) (arg)
148 #define ARG__SET(arg,val) ((arg) = (val))
149
150 #undef ARG
151 #undef ARG1
152 #undef ARG2
153
154 #define ARG(p) ARG_VALUE(ARG_LOC(p))
155 #define ARG1(p) ARG_VALUE(ARG1_LOC(p))
156 #define ARG2(p) ARG_VALUE(ARG2_LOC(p))
157
158 #define ARG_SET(p, val) ARG__SET(ARG_LOC(p), (val))
159 #define ARG1_SET(p, val) ARG__SET(ARG1_LOC(p), (val))
160 #define ARG2_SET(p, val) ARG__SET(ARG2_LOC(p), (val))
161
162 #undef NEXT_OFF
163 #undef NODE_ALIGN
164
165 #define NEXT_OFF(p) ((p)->next_off)
166 #define NODE_ALIGN(node)
167 #define NODE_ALIGN_FILL(node) ((node)->flags = 0xde) /* deadbeef */
168
169 #define SIZE_ALIGN NODE_ALIGN
170
171 #undef OP
172 #undef OPERAND
173 #undef MASK
174 #undef STRING
175
176 #define OP(p)           ((p)->type)
177 #define OPERAND(p)      (((struct regnode_string *)p)->string)
178 #define MASK(p)         ((char*)OPERAND(p))
179 #define STR_LEN(p)      (((struct regnode_string *)p)->str_len)
180 #define STRING(p)       (((struct regnode_string *)p)->string)
181 #define STR_SZ(l)       ((l + sizeof(regnode) - 1) / sizeof(regnode))
182 #define NODE_SZ_STR(p)  (STR_SZ(STR_LEN(p))+1)
183
184 #undef NODE_ALIGN
185 #undef ARG_LOC
186 #undef NEXTOPER
187 #undef PREVOPER
188
189 #define NODE_ALIGN(node)
190 #define ARG_LOC(p)      (((struct regnode_1 *)p)->arg1)
191 #define ARG1_LOC(p)     (((struct regnode_2 *)p)->arg1)
192 #define ARG2_LOC(p)     (((struct regnode_2 *)p)->arg2)
193
194
195 #define NODE_STEP_REGNODE       1       /* sizeof(regnode)/sizeof(regnode) */
196 #define EXTRA_STEP_2ARGS        EXTRA_SIZE(struct regnode_2)
197
198 #define NODE_STEP_B     4
199
200 #define NEXTOPER(p)     ((p) + NODE_STEP_REGNODE)
201 #define PREVOPER(p)     ((p) - NODE_STEP_REGNODE)
202
203 #define FILL_ADVANCE_NODE(ptr, op) STMT_START { \
204     (ptr)->type = op;    (ptr)->next_off = 0;   (ptr)++; } STMT_END
205 #define FILL_ADVANCE_NODE_ARG(ptr, op, arg) STMT_START { \
206     ARG_SET(ptr, arg);  FILL_ADVANCE_NODE(ptr, op); (ptr) += 1; } STMT_END
207
208 #define REG_MAGIC 0234
209
210 #define SIZE_ONLY (RExC_emit == &PL_regdummy)
211
212 /* Flags for node->flags of ANYOF */
213
214 #define ANYOF_CLASS             0x08    /* has [[:blah:]] classes */
215 #define ANYOF_INVERT            0x04
216 #define ANYOF_FOLD              0x02
217 #define ANYOF_LOCALE            0x01
218
219 /* Used for regstclass only */
220 #define ANYOF_EOS               0x10            /* Can match an empty string too */
221
222 /* There is a character or a range past 0xff */
223 #define ANYOF_UNICODE           0x20
224 #define ANYOF_UNICODE_ALL       0x40    /* Can match any char past 0xff */
225
226 /* size of node is large (includes class pointer) */
227 #define ANYOF_LARGE             0x80
228
229 /* Are there any runtime flags on in this node? */
230 #define ANYOF_RUNTIME(s)        (ANYOF_FLAGS(s) & 0x0f)
231
232 #define ANYOF_FLAGS_ALL         0xff
233
234 /* Character classes for node->classflags of ANYOF */
235 /* Should be synchronized with a table in regprop() */
236 /* 2n should pair with 2n+1 */
237
238 #define ANYOF_ALNUM      0      /* \w, PL_utf8_alnum, utf8::IsWord, ALNUM */
239 #define ANYOF_NALNUM     1
240 #define ANYOF_SPACE      2      /* \s */
241 #define ANYOF_NSPACE     3
242 #define ANYOF_DIGIT      4
243 #define ANYOF_NDIGIT     5
244 #define ANYOF_ALNUMC     6      /* isalnum(3), utf8::IsAlnum, ALNUMC */
245 #define ANYOF_NALNUMC    7
246 #define ANYOF_ALPHA      8
247 #define ANYOF_NALPHA     9
248 #define ANYOF_ASCII     10
249 #define ANYOF_NASCII    11
250 #define ANYOF_CNTRL     12
251 #define ANYOF_NCNTRL    13
252 #define ANYOF_GRAPH     14
253 #define ANYOF_NGRAPH    15
254 #define ANYOF_LOWER     16
255 #define ANYOF_NLOWER    17
256 #define ANYOF_PRINT     18
257 #define ANYOF_NPRINT    19
258 #define ANYOF_PUNCT     20
259 #define ANYOF_NPUNCT    21
260 #define ANYOF_UPPER     22
261 #define ANYOF_NUPPER    23
262 #define ANYOF_XDIGIT    24
263 #define ANYOF_NXDIGIT   25
264 #define ANYOF_PSXSPC    26      /* POSIX space: \s plus the vertical tab */
265 #define ANYOF_NPSXSPC   27
266 #define ANYOF_BLANK     28      /* GNU extension: space and tab: non-vertical space */
267 #define ANYOF_NBLANK    29
268
269 #define ANYOF_MAX       32
270
271 /* Backward source code compatibility. */
272
273 #define ANYOF_ALNUML     ANYOF_ALNUM
274 #define ANYOF_NALNUML    ANYOF_NALNUM
275 #define ANYOF_SPACEL     ANYOF_SPACE
276 #define ANYOF_NSPACEL    ANYOF_NSPACE
277
278 /* Utility macros for the bitmap and classes of ANYOF */
279
280 #define ANYOF_SIZE              (sizeof(struct regnode_charclass))
281 #define ANYOF_CLASS_SIZE        (sizeof(struct regnode_charclass_class))
282
283 #define ANYOF_FLAGS(p)          ((p)->flags)
284
285 #define ANYOF_BIT(c)            (1 << ((c) & 7))
286
287 #define ANYOF_CLASS_BYTE(p, c)  (((struct regnode_charclass_class*)(p))->classflags[((c) >> 3) & 3])
288 #define ANYOF_CLASS_SET(p, c)   (ANYOF_CLASS_BYTE(p, c) |=  ANYOF_BIT(c))
289 #define ANYOF_CLASS_CLEAR(p, c) (ANYOF_CLASS_BYTE(p, c) &= ~ANYOF_BIT(c))
290 #define ANYOF_CLASS_TEST(p, c)  (ANYOF_CLASS_BYTE(p, c) &   ANYOF_BIT(c))
291
292 #define ANYOF_CLASS_ZERO(ret)   Zero(((struct regnode_charclass_class*)(ret))->classflags, ANYOF_CLASSBITMAP_SIZE, char)
293 #define ANYOF_BITMAP_ZERO(ret)  Zero(((struct regnode_charclass*)(ret))->bitmap, ANYOF_BITMAP_SIZE, char)
294
295 #define ANYOF_BITMAP(p)         (((struct regnode_charclass*)(p))->bitmap)
296 #define ANYOF_BITMAP_BYTE(p, c) (ANYOF_BITMAP(p)[(((U8)(c)) >> 3) & 31])
297 #define ANYOF_BITMAP_SET(p, c)  (ANYOF_BITMAP_BYTE(p, c) |=  ANYOF_BIT(c))
298 #define ANYOF_BITMAP_CLEAR(p,c) (ANYOF_BITMAP_BYTE(p, c) &= ~ANYOF_BIT(c))
299 #define ANYOF_BITMAP_TEST(p, c) (ANYOF_BITMAP_BYTE(p, c) &   ANYOF_BIT(c))
300
301 #define ANYOF_BITMAP_SETALL(p)          \
302         memset (ANYOF_BITMAP(p), 255, ANYOF_BITMAP_SIZE)
303 #define ANYOF_BITMAP_CLEARALL(p)        \
304         Zero (ANYOF_BITMAP(p), ANYOF_BITMAP_SIZE)
305 /* Check that all 256 bits are all set.  Used in S_cl_is_anything()  */
306 #define ANYOF_BITMAP_TESTALLSET(p)      \
307         memEQ (ANYOF_BITMAP(p), "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377", ANYOF_BITMAP_SIZE)
308
309 #define ANYOF_SKIP              ((ANYOF_SIZE - 1)/sizeof(regnode))
310 #define ANYOF_CLASS_SKIP        ((ANYOF_CLASS_SIZE - 1)/sizeof(regnode))
311 #define ANYOF_CLASS_ADD_SKIP    (ANYOF_CLASS_SKIP - ANYOF_SKIP)
312
313
314 /*
315  * Utility definitions.
316  */
317 #ifndef CHARMASK
318 #  define UCHARAT(p)    ((int)*(const U8*)(p))
319 #else
320 #  define UCHARAT(p)    ((int)*(p)&CHARMASK)
321 #endif
322
323 #define EXTRA_SIZE(guy) ((sizeof(guy)-1)/sizeof(struct regnode))
324
325 #define REG_SEEN_ZERO_LEN       0x00000001
326 #define REG_SEEN_LOOKBEHIND     0x00000002
327 #define REG_SEEN_GPOS           0x00000004
328 #define REG_SEEN_EVAL           0x00000008
329 #define REG_SEEN_CANY           0x00000010
330 #define REG_SEEN_SANY           REG_SEEN_CANY /* src bckwrd cmpt */
331
332 START_EXTERN_C
333
334 #ifdef PLUGGABLE_RE_EXTENSION
335 #include "re_nodes.h"
336 #else
337 #include "regnodes.h"
338 #endif
339
340 /* The following have no fixed length. U8 so we can do strchr() on it. */
341 #ifndef DOINIT
342 EXTCONST U8 PL_varies[];
343 #else
344 EXTCONST U8 PL_varies[] = {
345     BRANCH, BACK, STAR, PLUS, CURLY, CURLYX, REF, REFF, REFFL,
346     WHILEM, CURLYM, CURLYN, BRANCHJ, IFTHEN, SUSPEND, CLUMP, 0
347 };
348 #endif
349
350 /* The following always have a length of 1. U8 we can do strchr() on it. */
351 /* (Note that length 1 means "one character" under UTF8, not "one octet".) */
352 #ifndef DOINIT
353 EXTCONST U8 PL_simple[];
354 #else
355 EXTCONST U8 PL_simple[] = {
356     REG_ANY,    SANY,   CANY,
357     ANYOF,
358     ALNUM,      ALNUML,
359     NALNUM,     NALNUML,
360     SPACE,      SPACEL,
361     NSPACE,     NSPACEL,
362     DIGIT,      NDIGIT,
363     0
364 };
365 #endif
366
367 END_EXTERN_C
368
369 typedef struct re_scream_pos_data_s
370 {
371     char **scream_olds;         /* match pos */
372     I32 *scream_pos;            /* Internal iterator of scream. */
373 } re_scream_pos_data;
374
375 /* .what is a character array with one character for each member of .data
376  * The character describes the function of the corresponding .data item:
377  *   f - start-class data for regstclass optimization
378  *   n - Root of op tree for (?{EVAL}) item
379  *   o - Start op for (?{EVAL}) item
380  *   p - Pad for (?{EVAL}) item
381  *   s - swash for unicode-style character class, and the multicharacter
382  *       strings resulting from casefolding the single-character entries
383  *       in the character class
384  *   t - trie struct
385  *   T - aho-trie struct
386  * 20010712 mjd@plover.com
387  * (Remember to update re_dup() and pregfree() if you add any items.)
388  */
389 struct reg_data {
390     U32 count;
391     U8 *what;
392     void* data[1];
393 };
394
395 struct reg_substr_datum {
396     I32 min_offset;
397     I32 max_offset;
398     SV *substr;         /* non-utf8 variant */
399     SV *utf8_substr;    /* utf8 variant */
400     I32 end_shift;
401 };
402
403 struct reg_substr_data {
404     struct reg_substr_datum data[3];    /* Actual array */
405 };
406
407 #define anchored_substr substrs->data[0].substr
408 #define anchored_utf8 substrs->data[0].utf8_substr
409 #define anchored_offset substrs->data[0].min_offset
410 #define anchored_end_shift substrs->data[0].end_shift
411
412 #define float_substr substrs->data[1].substr
413 #define float_utf8 substrs->data[1].utf8_substr
414 #define float_min_offset substrs->data[1].min_offset
415 #define float_max_offset substrs->data[1].max_offset
416 #define float_end_shift substrs->data[1].end_shift
417
418 #define check_substr substrs->data[2].substr
419 #define check_utf8 substrs->data[2].utf8_substr
420 #define check_offset_min substrs->data[2].min_offset
421 #define check_offset_max substrs->data[2].max_offset
422 #define check_end_shift substrs->data[2].end_shift
423
424
425
426 /* trie related stuff */
427
428 /* a transition record for the state machine. the
429    check field determines which state "owns" the
430    transition. the char the transition is for is
431    determined by offset from the owning states base
432    field.  the next field determines which state
433    is to be transitioned to if any.
434 */
435 struct _reg_trie_trans {
436   U32 next;
437   U32 check;
438 };
439
440 /* a transition list element for the list based representation */
441 struct _reg_trie_trans_list_elem {
442     U16 forid;
443     U32 newstate;
444 };
445 typedef struct _reg_trie_trans_list_elem reg_trie_trans_le;
446
447 /* a state for compressed nodes. base is an offset
448   into an array of reg_trie_trans array. If wordnum is
449   nonzero the state is accepting. if base is zero then
450   the state has no children (and will be accepting)
451 */
452 struct _reg_trie_state {
453   U16 wordnum;
454   union {
455     U32                base;
456     reg_trie_trans_le* list;
457   } trans;
458 };
459
460
461
462 typedef struct _reg_trie_state    reg_trie_state;
463 typedef struct _reg_trie_trans    reg_trie_trans;
464
465
466 /* anything in here that needs to be freed later
467    should be dealt with in pregfree */
468 struct _reg_trie_data {
469     U16             uniquecharcount; /* unique chars in trie (width of trans table) */
470     U32             lasttrans;       /* last valid transition element */
471     U16             *charmap;        /* byte to charid lookup array */
472     HV              *widecharmap;    /* code points > 255 to charid */
473     reg_trie_state  *states;         /* state data */
474     reg_trie_trans  *trans;          /* array of transition elements */
475     char            *bitmap;         /* stclass bitmap */
476     U32             refcount;        /* number of times this trie is referenced */
477     U32             startstate;      /* initial state - used for common prefix optimisation */
478     STRLEN          minlen;          /* minimum length of words in trie - build/opt only? */
479     STRLEN          maxlen;          /* maximum length of words in trie - build/opt only? */
480     U32             *wordlen;        /* array of lengths of words */
481     U16             *jump;           /* optional 1 indexed array of offsets before tail 
482                                         for the node following a given word. */
483     U16             *nextword;       /* optional 1 indexed array to support linked list
484                                         of duplicate wordnums */
485     U32             laststate;       /* Build only */
486     U32             wordcount;       /* Build only */
487 #ifdef DEBUGGING
488     STRLEN          charcount;       /* Build only */
489     AV              *words;          /* Array of words contained in trie, for dumping */
490     AV              *revcharmap;     /* Map of each charid back to its character representation */
491 #endif
492 };
493 typedef struct _reg_trie_data reg_trie_data;
494
495 struct _reg_ac_data {
496     U32              *fail;
497     reg_trie_state   *states;
498     reg_trie_data    *trie;
499     U32              refcount;
500 };
501 typedef struct _reg_ac_data reg_ac_data;
502
503 /* ANY_BIT doesnt use the structure, so we can borrow it here.
504    This is simpler than refactoring all of it as wed end up with
505    three different sets... */
506
507 #define TRIE_BITMAP(p)          (((reg_trie_data *)(p))->bitmap)
508 #define TRIE_BITMAP_BYTE(p, c)  (TRIE_BITMAP(p)[(((U8)(c)) >> 3) & 31])
509 #define TRIE_BITMAP_SET(p, c)   (TRIE_BITMAP_BYTE(p, c) |=  ANYOF_BIT((U8)c))
510 #define TRIE_BITMAP_CLEAR(p,c)  (TRIE_BITMAP_BYTE(p, c) &= ~ANYOF_BIT((U8)c))
511 #define TRIE_BITMAP_TEST(p, c)  (TRIE_BITMAP_BYTE(p, c) &   ANYOF_BIT((U8)c))
512
513 #define IS_ANYOF_TRIE(op) ((op)==TRIEC || (op)==AHOCORASICKC)
514 #define IS_TRIE_AC(op) ((op)>=AHOCORASICK)
515
516
517 #define BITMAP_BYTE(p, c)       (((U8*)p)[(((U8)(c)) >> 3) & 31])
518 #define BITMAP_TEST(p, c)       (BITMAP_BYTE(p, c) &   ANYOF_BIT((U8)c))
519
520 /* these defines assume uniquecharcount is the correct variable, and state may be evaluated twice */
521 #define TRIE_NODENUM(state) (((state)-1)/(trie->uniquecharcount)+1)
522 #define SAFE_TRIE_NODENUM(state) ((state) ? (((state)-1)/(trie->uniquecharcount)+1) : (state))
523 #define TRIE_NODEIDX(state) ((state) ? (((state)-1)*(trie->uniquecharcount)+1) : (state))
524
525 #ifdef DEBUGGING
526 #define TRIE_CHARCOUNT(trie) ((trie)->charcount)
527 #define TRIE_REVCHARMAP(trie) ((trie)->revcharmap)
528 #else
529 #define TRIE_CHARCOUNT(trie) (trie_charcount)
530 #define TRIE_REVCHARMAP(trie) (trie_revcharmap)
531 #endif
532
533 #define RE_TRIE_MAXBUF_INIT 65536
534 #define RE_TRIE_MAXBUF_NAME "\022E_TRIE_MAXBUF"
535 #define RE_DEBUG_FLAGS "\022E_DEBUG_FLAGS"
536
537 /*
538
539 RE_DEBUG_FLAGS is used to control what debug output is emitted
540 its divided into three groups of options, some of which interact.
541 The three groups are: Compile, Execute, Extra. There is room for a
542 further group, as currently only the low three bytes are used.
543
544     Compile Options:
545     
546     PARSE
547     PEEP
548     TRIE
549     PROGRAM
550     OFFSETS
551
552     Execute Options:
553
554     INTUIT
555     MATCH
556     TRIE
557
558     Extra Options
559
560     TRIE
561     OFFSETS
562
563 If you modify any of these make sure you make corresponding changes to
564 re.pm, especially to the documentation.
565
566 */
567
568
569 /* Compile */
570 #define RE_DEBUG_COMPILE_MASK      0x0000FF
571 #define RE_DEBUG_COMPILE_PARSE     0x000001
572 #define RE_DEBUG_COMPILE_OPTIMISE  0x000002
573 #define RE_DEBUG_COMPILE_TRIE      0x000004
574 #define RE_DEBUG_COMPILE_DUMP      0x000008
575 #define RE_DEBUG_COMPILE_OFFSETS   0x000010
576
577 /* Execute */
578 #define RE_DEBUG_EXECUTE_MASK      0x00FF00
579 #define RE_DEBUG_EXECUTE_INTUIT    0x000100
580 #define RE_DEBUG_EXECUTE_MATCH     0x000200
581 #define RE_DEBUG_EXECUTE_TRIE      0x000400
582
583 /* Extra */
584 #define RE_DEBUG_EXTRA_MASK        0xFF0000
585 #define RE_DEBUG_EXTRA_TRIE        0x010000
586 #define RE_DEBUG_EXTRA_OFFSETS     0x020000
587 #define RE_DEBUG_EXTRA_STATE       0x040000
588
589 #define RE_DEBUG_FLAG(x) (re_debug_flags & x)
590 /* Compile */
591 #define DEBUG_COMPILE_r(x) DEBUG_r( \
592     if (re_debug_flags & RE_DEBUG_COMPILE_MASK) x  )
593 #define DEBUG_PARSE_r(x) DEBUG_r( \
594     if (re_debug_flags & RE_DEBUG_COMPILE_PARSE) x  )
595 #define DEBUG_OPTIMISE_r(x) DEBUG_r( \
596     if (re_debug_flags & RE_DEBUG_COMPILE_OPTIMISE) x  )
597 #define DEBUG_PARSE_r(x) DEBUG_r( \
598     if (re_debug_flags & RE_DEBUG_COMPILE_PARSE) x  )
599 #define DEBUG_DUMP_r(x) DEBUG_r( \
600     if (re_debug_flags & RE_DEBUG_COMPILE_DUMP) x  )
601 #define DEBUG_OFFSETS_r(x) DEBUG_r( \
602     if (re_debug_flags & RE_DEBUG_COMPILE_OFFSETS) x  )
603 #define DEBUG_TRIE_COMPILE_r(x) DEBUG_r( \
604     if (re_debug_flags & RE_DEBUG_COMPILE_TRIE) x )
605
606 /* Execute */
607 #define DEBUG_EXECUTE_r(x) DEBUG_r( \
608     if (re_debug_flags & RE_DEBUG_EXECUTE_MASK) x  )
609 #define DEBUG_INTUIT_r(x) DEBUG_r( \
610     if (re_debug_flags & RE_DEBUG_EXECUTE_INTUIT) x  )
611 #define DEBUG_MATCH_r(x) DEBUG_r( \
612     if (re_debug_flags & RE_DEBUG_EXECUTE_MATCH) x  )
613 #define DEBUG_TRIE_EXECUTE_r(x) DEBUG_r( \
614     if (re_debug_flags & RE_DEBUG_EXECUTE_TRIE) x )
615
616 /* Extra */
617 #define DEBUG_EXTRA_r(x) DEBUG_r( \
618     if (re_debug_flags & RE_DEBUG_EXTRA_MASK) x  )
619 #define DEBUG_STATE_r(x) DEBUG_r( \
620     if (re_debug_flags & RE_DEBUG_EXTRA_STATE) x )
621 #define MJD_OFFSET_DEBUG(x) DEBUG_r( \
622     if (re_debug_flags & RE_DEBUG_EXTRA_OFFSETS) \
623         Perl_warn_nocontext x )
624 #define DEBUG_TRIE_COMPILE_MORE_r(x) DEBUG_TRIE_COMPILE_r( \
625     if (re_debug_flags & RE_DEBUG_EXTRA_TRIE) x )
626 #define DEBUG_TRIE_EXECUTE_MORE_r(x) DEBUG_TRIE_EXECUTE_r( \
627     if (re_debug_flags & RE_DEBUG_EXTRA_TRIE) x )
628
629 #define DEBUG_TRIE_r(x) DEBUG_r( \
630     if (re_debug_flags & (RE_DEBUG_COMPILE_TRIE \
631         | RE_DEBUG_EXECUTE_TRIE )) x )
632
633 /* initialization */
634 /* get_sv() can return NULL during global destruction. */
635 #define GET_RE_DEBUG_FLAGS DEBUG_r({ \
636         SV * re_debug_flags_sv = NULL; \
637         re_debug_flags_sv = get_sv(RE_DEBUG_FLAGS, 1); \
638         if (re_debug_flags_sv) { \
639             if (!SvIOK(re_debug_flags_sv)) \
640                 sv_setuv(re_debug_flags_sv, RE_DEBUG_COMPILE_DUMP | RE_DEBUG_EXECUTE_MASK ); \
641             re_debug_flags=SvIV(re_debug_flags_sv); \
642         }\
643 })
644
645 #ifdef DEBUGGING
646
647 #define GET_RE_DEBUG_FLAGS_DECL IV re_debug_flags = 0; GET_RE_DEBUG_FLAGS;
648
649 #define RE_PV_COLOR_DECL(rpv,rlen,isuni,dsv,pv,l,m,c1,c2) \
650     const char * const rpv =                          \
651         pv_pretty((dsv), (pv), (l), (m), \
652             PL_colors[(c1)],PL_colors[(c2)], \
653             ((isuni) ? PERL_PV_ESCAPE_UNI : 0) );         \
654     const int rlen = SvCUR(dsv)
655
656 #define RE_SV_ESCAPE(rpv,isuni,dsv,sv,m) \
657     const char * const rpv =                          \
658         pv_pretty((dsv), (SvPV_nolen_const(sv)), (SvCUR(sv)), (m), \
659             PL_colors[(c1)],PL_colors[(c2)], \
660             ((isuni) ? PERL_PV_ESCAPE_UNI : 0) )
661
662 #define RE_PV_QUOTED_DECL(rpv,isuni,dsv,pv,l,m)                    \
663     const char * const rpv =                                       \
664         pv_pretty((dsv), (pv), (l), (m), \
665             PL_colors[0], PL_colors[1], \
666             ( PERL_PV_PRETTY_QUOTE | PERL_PV_PRETTY_ELIPSES |      \
667               ((isuni) ? PERL_PV_ESCAPE_UNI : 0))                  \
668         )                                                  
669
670 #define RE_SV_DUMPLEN(ItEm) (SvCUR(ItEm) - (SvTAIL(ItEm)!=0))
671 #define RE_SV_TAIL(ItEm) (SvTAIL(ItEm) ? "$" : "")
672     
673 #else /* if not DEBUGGING */
674
675 #define GET_RE_DEBUG_FLAGS_DECL
676 #define RE_PV_COLOR_DECL(rpv,rlen,isuni,dsv,pv,l,m,c1,c2)
677 #define RE_SV_ESCAPE(rpv,isuni,dsv,sv,m)
678 #define RE_PV_QUOTED_DECL(rpv,isuni,dsv,pv,l,m)
679 #define RE_SV_DUMPLEN(ItEm)
680 #define RE_SV_TAIL(ItEm)
681
682 #endif /* DEBUG RELATED DEFINES */
683