Silence compiler warnings on Win32 (VC6)
[p5sagit/p5-mst-13.2.git] / regcomp.c
1 /*    regcomp.c
2  */
3
4 /*
5  * "A fair jaw-cracker dwarf-language must be."  --Samwise Gamgee
6  */
7
8 /* This file contains functions for compiling a regular expression.  See
9  * also regexec.c which funnily enough, contains functions for executing
10  * a regular expression.
11  *
12  * This file is also copied at build time to ext/re/re_comp.c, where
13  * it's built with -DPERL_EXT_RE_BUILD -DPERL_EXT_RE_DEBUG -DPERL_EXT.
14  * This causes the main functions to be compiled under new names and with
15  * debugging support added, which makes "use re 'debug'" work.
16  */
17
18 /* NOTE: this is derived from Henry Spencer's regexp code, and should not
19  * confused with the original package (see point 3 below).  Thanks, Henry!
20  */
21
22 /* Additional note: this code is very heavily munged from Henry's version
23  * in places.  In some spots I've traded clarity for efficiency, so don't
24  * blame Henry for some of the lack of readability.
25  */
26
27 /* The names of the functions have been changed from regcomp and
28  * regexec to  pregcomp and pregexec in order to avoid conflicts
29  * with the POSIX routines of the same names.
30 */
31
32 #ifdef PERL_EXT_RE_BUILD
33 #include "re_top.h"
34 #endif
35
36 /*
37  * pregcomp and pregexec -- regsub and regerror are not used in perl
38  *
39  *      Copyright (c) 1986 by University of Toronto.
40  *      Written by Henry Spencer.  Not derived from licensed software.
41  *
42  *      Permission is granted to anyone to use this software for any
43  *      purpose on any computer system, and to redistribute it freely,
44  *      subject to the following restrictions:
45  *
46  *      1. The author is not responsible for the consequences of use of
47  *              this software, no matter how awful, even if they arise
48  *              from defects in it.
49  *
50  *      2. The origin of this software must not be misrepresented, either
51  *              by explicit claim or by omission.
52  *
53  *      3. Altered versions must be plainly marked as such, and must not
54  *              be misrepresented as being the original software.
55  *
56  *
57  ****    Alterations to Henry's code are...
58  ****
59  ****    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
60  ****    2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 by Larry Wall and others
61  ****
62  ****    You may distribute under the terms of either the GNU General Public
63  ****    License or the Artistic License, as specified in the README file.
64
65  *
66  * Beware that some of this code is subtly aware of the way operator
67  * precedence is structured in regular expressions.  Serious changes in
68  * regular-expression syntax might require a total rethink.
69  */
70 #include "EXTERN.h"
71 #define PERL_IN_REGCOMP_C
72 #include "perl.h"
73
74 #ifndef PERL_IN_XSUB_RE
75 #  include "INTERN.h"
76 #endif
77
78 #define REG_COMP_C
79 #ifdef PERL_IN_XSUB_RE
80 #  include "re_comp.h"
81 #else
82 #  include "regcomp.h"
83 #endif
84
85 #ifdef op
86 #undef op
87 #endif /* op */
88
89 #ifdef MSDOS
90 #  if defined(BUGGY_MSC6)
91  /* MSC 6.00A breaks on op/regexp.t test 85 unless we turn this off */
92 #    pragma optimize("a",off)
93  /* But MSC 6.00A is happy with 'w', for aliases only across function calls*/
94 #    pragma optimize("w",on )
95 #  endif /* BUGGY_MSC6 */
96 #endif /* MSDOS */
97
98 #ifndef STATIC
99 #define STATIC  static
100 #endif
101
102 typedef struct RExC_state_t {
103     U32         flags;                  /* are we folding, multilining? */
104     char        *precomp;               /* uncompiled string. */
105     regexp      *rx;                    /* perl core regexp structure */
106     regexp_internal     *rxi;           /* internal data for regexp object pprivate field */        
107     char        *start;                 /* Start of input for compile */
108     char        *end;                   /* End of input for compile */
109     char        *parse;                 /* Input-scan pointer. */
110     I32         whilem_seen;            /* number of WHILEM in this expr */
111     regnode     *emit_start;            /* Start of emitted-code area */
112     regnode     *emit_bound;            /* First regnode outside of the allocated space */
113     regnode     *emit;                  /* Code-emit pointer; &regdummy = don't = compiling */
114     I32         naughty;                /* How bad is this pattern? */
115     I32         sawback;                /* Did we see \1, ...? */
116     U32         seen;
117     I32         size;                   /* Code size. */
118     I32         npar;                   /* Capture buffer count, (OPEN). */
119     I32         cpar;                   /* Capture buffer count, (CLOSE). */
120     I32         nestroot;               /* root parens we are in - used by accept */
121     I32         extralen;
122     I32         seen_zerolen;
123     I32         seen_evals;
124     regnode     **open_parens;          /* pointers to open parens */
125     regnode     **close_parens;         /* pointers to close parens */
126     regnode     *opend;                 /* END node in program */
127     I32         utf8;           /* whether the pattern is utf8 or not */
128     I32         orig_utf8;      /* whether the pattern was originally in utf8 */
129                                 /* XXX use this for future optimisation of case
130                                  * where pattern must be upgraded to utf8. */
131     HV          *charnames;             /* cache of named sequences */
132     HV          *paren_names;           /* Paren names */
133     
134     regnode     **recurse;              /* Recurse regops */
135     I32         recurse_count;          /* Number of recurse regops */
136 #if ADD_TO_REGEXEC
137     char        *starttry;              /* -Dr: where regtry was called. */
138 #define RExC_starttry   (pRExC_state->starttry)
139 #endif
140 #ifdef DEBUGGING
141     const char  *lastparse;
142     I32         lastnum;
143     AV          *paren_name_list;       /* idx -> name */
144 #define RExC_lastparse  (pRExC_state->lastparse)
145 #define RExC_lastnum    (pRExC_state->lastnum)
146 #define RExC_paren_name_list    (pRExC_state->paren_name_list)
147 #endif
148 } RExC_state_t;
149
150 #define RExC_flags      (pRExC_state->flags)
151 #define RExC_precomp    (pRExC_state->precomp)
152 #define RExC_rx         (pRExC_state->rx)
153 #define RExC_rxi        (pRExC_state->rxi)
154 #define RExC_start      (pRExC_state->start)
155 #define RExC_end        (pRExC_state->end)
156 #define RExC_parse      (pRExC_state->parse)
157 #define RExC_whilem_seen        (pRExC_state->whilem_seen)
158 #ifdef RE_TRACK_PATTERN_OFFSETS
159 #define RExC_offsets    (pRExC_state->rxi->u.offsets) /* I am not like the others */
160 #endif
161 #define RExC_emit       (pRExC_state->emit)
162 #define RExC_emit_start (pRExC_state->emit_start)
163 #define RExC_emit_bound (pRExC_state->emit_bound)
164 #define RExC_naughty    (pRExC_state->naughty)
165 #define RExC_sawback    (pRExC_state->sawback)
166 #define RExC_seen       (pRExC_state->seen)
167 #define RExC_size       (pRExC_state->size)
168 #define RExC_npar       (pRExC_state->npar)
169 #define RExC_nestroot   (pRExC_state->nestroot)
170 #define RExC_extralen   (pRExC_state->extralen)
171 #define RExC_seen_zerolen       (pRExC_state->seen_zerolen)
172 #define RExC_seen_evals (pRExC_state->seen_evals)
173 #define RExC_utf8       (pRExC_state->utf8)
174 #define RExC_orig_utf8  (pRExC_state->orig_utf8)
175 #define RExC_charnames  (pRExC_state->charnames)
176 #define RExC_open_parens        (pRExC_state->open_parens)
177 #define RExC_close_parens       (pRExC_state->close_parens)
178 #define RExC_opend      (pRExC_state->opend)
179 #define RExC_paren_names        (pRExC_state->paren_names)
180 #define RExC_recurse    (pRExC_state->recurse)
181 #define RExC_recurse_count      (pRExC_state->recurse_count)
182
183
184 #define ISMULT1(c)      ((c) == '*' || (c) == '+' || (c) == '?')
185 #define ISMULT2(s)      ((*s) == '*' || (*s) == '+' || (*s) == '?' || \
186         ((*s) == '{' && regcurly(s)))
187
188 #ifdef SPSTART
189 #undef SPSTART          /* dratted cpp namespace... */
190 #endif
191 /*
192  * Flags to be passed up and down.
193  */
194 #define WORST           0       /* Worst case. */
195 #define HASWIDTH        0x01    /* Known to match non-null strings. */
196 #define SIMPLE          0x02    /* Simple enough to be STAR/PLUS operand. */
197 #define SPSTART         0x04    /* Starts with * or +. */
198 #define TRYAGAIN        0x08    /* Weeded out a declaration. */
199 #define POSTPONED       0x10    /* (?1),(?&name), (??{...}) or similar */
200
201 #define REG_NODE_NUM(x) ((x) ? (int)((x)-RExC_emit_start) : -1)
202
203 /* whether trie related optimizations are enabled */
204 #if PERL_ENABLE_EXTENDED_TRIE_OPTIMISATION
205 #define TRIE_STUDY_OPT
206 #define FULL_TRIE_STUDY
207 #define TRIE_STCLASS
208 #endif
209
210
211
212 #define PBYTE(u8str,paren) ((U8*)(u8str))[(paren) >> 3]
213 #define PBITVAL(paren) (1 << ((paren) & 7))
214 #define PAREN_TEST(u8str,paren) ( PBYTE(u8str,paren) & PBITVAL(paren))
215 #define PAREN_SET(u8str,paren) PBYTE(u8str,paren) |= PBITVAL(paren)
216 #define PAREN_UNSET(u8str,paren) PBYTE(u8str,paren) &= (~PBITVAL(paren))
217
218
219 /* About scan_data_t.
220
221   During optimisation we recurse through the regexp program performing
222   various inplace (keyhole style) optimisations. In addition study_chunk
223   and scan_commit populate this data structure with information about
224   what strings MUST appear in the pattern. We look for the longest 
225   string that must appear for at a fixed location, and we look for the
226   longest string that may appear at a floating location. So for instance
227   in the pattern:
228   
229     /FOO[xX]A.*B[xX]BAR/
230     
231   Both 'FOO' and 'A' are fixed strings. Both 'B' and 'BAR' are floating
232   strings (because they follow a .* construct). study_chunk will identify
233   both FOO and BAR as being the longest fixed and floating strings respectively.
234   
235   The strings can be composites, for instance
236   
237      /(f)(o)(o)/
238      
239   will result in a composite fixed substring 'foo'.
240   
241   For each string some basic information is maintained:
242   
243   - offset or min_offset
244     This is the position the string must appear at, or not before.
245     It also implicitly (when combined with minlenp) tells us how many
246     character must match before the string we are searching.
247     Likewise when combined with minlenp and the length of the string
248     tells us how many characters must appear after the string we have 
249     found.
250   
251   - max_offset
252     Only used for floating strings. This is the rightmost point that
253     the string can appear at. Ifset to I32 max it indicates that the
254     string can occur infinitely far to the right.
255   
256   - minlenp
257     A pointer to the minimum length of the pattern that the string 
258     was found inside. This is important as in the case of positive 
259     lookahead or positive lookbehind we can have multiple patterns 
260     involved. Consider
261     
262     /(?=FOO).*F/
263     
264     The minimum length of the pattern overall is 3, the minimum length
265     of the lookahead part is 3, but the minimum length of the part that
266     will actually match is 1. So 'FOO's minimum length is 3, but the 
267     minimum length for the F is 1. This is important as the minimum length
268     is used to determine offsets in front of and behind the string being 
269     looked for.  Since strings can be composites this is the length of the
270     pattern at the time it was commited with a scan_commit. Note that
271     the length is calculated by study_chunk, so that the minimum lengths
272     are not known until the full pattern has been compiled, thus the 
273     pointer to the value.
274   
275   - lookbehind
276   
277     In the case of lookbehind the string being searched for can be
278     offset past the start point of the final matching string. 
279     If this value was just blithely removed from the min_offset it would
280     invalidate some of the calculations for how many chars must match
281     before or after (as they are derived from min_offset and minlen and
282     the length of the string being searched for). 
283     When the final pattern is compiled and the data is moved from the
284     scan_data_t structure into the regexp structure the information
285     about lookbehind is factored in, with the information that would 
286     have been lost precalculated in the end_shift field for the 
287     associated string.
288
289   The fields pos_min and pos_delta are used to store the minimum offset
290   and the delta to the maximum offset at the current point in the pattern.    
291
292 */
293
294 typedef struct scan_data_t {
295     /*I32 len_min;      unused */
296     /*I32 len_delta;    unused */
297     I32 pos_min;
298     I32 pos_delta;
299     SV *last_found;
300     I32 last_end;           /* min value, <0 unless valid. */
301     I32 last_start_min;
302     I32 last_start_max;
303     SV **longest;           /* Either &l_fixed, or &l_float. */
304     SV *longest_fixed;      /* longest fixed string found in pattern */
305     I32 offset_fixed;       /* offset where it starts */
306     I32 *minlen_fixed;      /* pointer to the minlen relevent to the string */
307     I32 lookbehind_fixed;   /* is the position of the string modfied by LB */
308     SV *longest_float;      /* longest floating string found in pattern */
309     I32 offset_float_min;   /* earliest point in string it can appear */
310     I32 offset_float_max;   /* latest point in string it can appear */
311     I32 *minlen_float;      /* pointer to the minlen relevent to the string */
312     I32 lookbehind_float;   /* is the position of the string modified by LB */
313     I32 flags;
314     I32 whilem_c;
315     I32 *last_closep;
316     struct regnode_charclass_class *start_class;
317 } scan_data_t;
318
319 /*
320  * Forward declarations for pregcomp()'s friends.
321  */
322
323 static const scan_data_t zero_scan_data =
324   { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ,0};
325
326 #define SF_BEFORE_EOL           (SF_BEFORE_SEOL|SF_BEFORE_MEOL)
327 #define SF_BEFORE_SEOL          0x0001
328 #define SF_BEFORE_MEOL          0x0002
329 #define SF_FIX_BEFORE_EOL       (SF_FIX_BEFORE_SEOL|SF_FIX_BEFORE_MEOL)
330 #define SF_FL_BEFORE_EOL        (SF_FL_BEFORE_SEOL|SF_FL_BEFORE_MEOL)
331
332 #ifdef NO_UNARY_PLUS
333 #  define SF_FIX_SHIFT_EOL      (0+2)
334 #  define SF_FL_SHIFT_EOL               (0+4)
335 #else
336 #  define SF_FIX_SHIFT_EOL      (+2)
337 #  define SF_FL_SHIFT_EOL               (+4)
338 #endif
339
340 #define SF_FIX_BEFORE_SEOL      (SF_BEFORE_SEOL << SF_FIX_SHIFT_EOL)
341 #define SF_FIX_BEFORE_MEOL      (SF_BEFORE_MEOL << SF_FIX_SHIFT_EOL)
342
343 #define SF_FL_BEFORE_SEOL       (SF_BEFORE_SEOL << SF_FL_SHIFT_EOL)
344 #define SF_FL_BEFORE_MEOL       (SF_BEFORE_MEOL << SF_FL_SHIFT_EOL) /* 0x20 */
345 #define SF_IS_INF               0x0040
346 #define SF_HAS_PAR              0x0080
347 #define SF_IN_PAR               0x0100
348 #define SF_HAS_EVAL             0x0200
349 #define SCF_DO_SUBSTR           0x0400
350 #define SCF_DO_STCLASS_AND      0x0800
351 #define SCF_DO_STCLASS_OR       0x1000
352 #define SCF_DO_STCLASS          (SCF_DO_STCLASS_AND|SCF_DO_STCLASS_OR)
353 #define SCF_WHILEM_VISITED_POS  0x2000
354
355 #define SCF_TRIE_RESTUDY        0x4000 /* Do restudy? */
356 #define SCF_SEEN_ACCEPT         0x8000 
357
358 #define UTF (RExC_utf8 != 0)
359 #define LOC ((RExC_flags & RXf_PMf_LOCALE) != 0)
360 #define FOLD ((RExC_flags & RXf_PMf_FOLD) != 0)
361
362 #define OOB_UNICODE             12345678
363 #define OOB_NAMEDCLASS          -1
364
365 #define CHR_SVLEN(sv) (UTF ? sv_len_utf8(sv) : SvCUR(sv))
366 #define CHR_DIST(a,b) (UTF ? utf8_distance(a,b) : a - b)
367
368
369 /* length of regex to show in messages that don't mark a position within */
370 #define RegexLengthToShowInErrorMessages 127
371
372 /*
373  * If MARKER[12] are adjusted, be sure to adjust the constants at the top
374  * of t/op/regmesg.t, the tests in t/op/re_tests, and those in
375  * op/pragma/warn/regcomp.
376  */
377 #define MARKER1 "<-- HERE"    /* marker as it appears in the description */
378 #define MARKER2 " <-- HERE "  /* marker as it appears within the regex */
379
380 #define REPORT_LOCATION " in regex; marked by " MARKER1 " in m/%.*s" MARKER2 "%s/"
381
382 /*
383  * Calls SAVEDESTRUCTOR_X if needed, then calls Perl_croak with the given
384  * arg. Show regex, up to a maximum length. If it's too long, chop and add
385  * "...".
386  */
387 #define _FAIL(code) STMT_START {                                        \
388     const char *ellipses = "";                                          \
389     IV len = RExC_end - RExC_precomp;                                   \
390                                                                         \
391     if (!SIZE_ONLY)                                                     \
392         SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx);                      \
393     if (len > RegexLengthToShowInErrorMessages) {                       \
394         /* chop 10 shorter than the max, to ensure meaning of "..." */  \
395         len = RegexLengthToShowInErrorMessages - 10;                    \
396         ellipses = "...";                                               \
397     }                                                                   \
398     code;                                                               \
399 } STMT_END
400
401 #define FAIL(msg) _FAIL(                            \
402     Perl_croak(aTHX_ "%s in regex m/%.*s%s/",       \
403             msg, (int)len, RExC_precomp, ellipses))
404
405 #define FAIL2(msg,arg) _FAIL(                       \
406     Perl_croak(aTHX_ msg " in regex m/%.*s%s/",     \
407             arg, (int)len, RExC_precomp, ellipses))
408
409 /*
410  * Simple_vFAIL -- like FAIL, but marks the current location in the scan
411  */
412 #define Simple_vFAIL(m) STMT_START {                                    \
413     const IV offset = RExC_parse - RExC_precomp;                        \
414     Perl_croak(aTHX_ "%s" REPORT_LOCATION,                              \
415             m, (int)offset, RExC_precomp, RExC_precomp + offset);       \
416 } STMT_END
417
418 /*
419  * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL()
420  */
421 #define vFAIL(m) STMT_START {                           \
422     if (!SIZE_ONLY)                                     \
423         SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx);      \
424     Simple_vFAIL(m);                                    \
425 } STMT_END
426
427 /*
428  * Like Simple_vFAIL(), but accepts two arguments.
429  */
430 #define Simple_vFAIL2(m,a1) STMT_START {                        \
431     const IV offset = RExC_parse - RExC_precomp;                        \
432     S_re_croak2(aTHX_ m, REPORT_LOCATION, a1,                   \
433             (int)offset, RExC_precomp, RExC_precomp + offset);  \
434 } STMT_END
435
436 /*
437  * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL2().
438  */
439 #define vFAIL2(m,a1) STMT_START {                       \
440     if (!SIZE_ONLY)                                     \
441         SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx);      \
442     Simple_vFAIL2(m, a1);                               \
443 } STMT_END
444
445
446 /*
447  * Like Simple_vFAIL(), but accepts three arguments.
448  */
449 #define Simple_vFAIL3(m, a1, a2) STMT_START {                   \
450     const IV offset = RExC_parse - RExC_precomp;                \
451     S_re_croak2(aTHX_ m, REPORT_LOCATION, a1, a2,               \
452             (int)offset, RExC_precomp, RExC_precomp + offset);  \
453 } STMT_END
454
455 /*
456  * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL3().
457  */
458 #define vFAIL3(m,a1,a2) STMT_START {                    \
459     if (!SIZE_ONLY)                                     \
460         SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx);      \
461     Simple_vFAIL3(m, a1, a2);                           \
462 } STMT_END
463
464 /*
465  * Like Simple_vFAIL(), but accepts four arguments.
466  */
467 #define Simple_vFAIL4(m, a1, a2, a3) STMT_START {               \
468     const IV offset = RExC_parse - RExC_precomp;                \
469     S_re_croak2(aTHX_ m, REPORT_LOCATION, a1, a2, a3,           \
470             (int)offset, RExC_precomp, RExC_precomp + offset);  \
471 } STMT_END
472
473 #define vWARN(loc,m) STMT_START {                                       \
474     const IV offset = loc - RExC_precomp;                               \
475     Perl_warner(aTHX_ packWARN(WARN_REGEXP), "%s" REPORT_LOCATION,      \
476             m, (int)offset, RExC_precomp, RExC_precomp + offset);       \
477 } STMT_END
478
479 #define vWARNdep(loc,m) STMT_START {                                    \
480     const IV offset = loc - RExC_precomp;                               \
481     Perl_warner(aTHX_ packWARN2(WARN_DEPRECATED, WARN_REGEXP),          \
482             "%s" REPORT_LOCATION,                                       \
483             m, (int)offset, RExC_precomp, RExC_precomp + offset);       \
484 } STMT_END
485
486
487 #define vWARN2(loc, m, a1) STMT_START {                                 \
488     const IV offset = loc - RExC_precomp;                               \
489     Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,         \
490             a1, (int)offset, RExC_precomp, RExC_precomp + offset);      \
491 } STMT_END
492
493 #define vWARN3(loc, m, a1, a2) STMT_START {                             \
494     const IV offset = loc - RExC_precomp;                               \
495     Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,         \
496             a1, a2, (int)offset, RExC_precomp, RExC_precomp + offset);  \
497 } STMT_END
498
499 #define vWARN4(loc, m, a1, a2, a3) STMT_START {                         \
500     const IV offset = loc - RExC_precomp;                               \
501     Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,         \
502             a1, a2, a3, (int)offset, RExC_precomp, RExC_precomp + offset); \
503 } STMT_END
504
505 #define vWARN5(loc, m, a1, a2, a3, a4) STMT_START {                     \
506     const IV offset = loc - RExC_precomp;                               \
507     Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,         \
508             a1, a2, a3, a4, (int)offset, RExC_precomp, RExC_precomp + offset); \
509 } STMT_END
510
511
512 /* Allow for side effects in s */
513 #define REGC(c,s) STMT_START {                  \
514     if (!SIZE_ONLY) *(s) = (c); else (void)(s); \
515 } STMT_END
516
517 /* Macros for recording node offsets.   20001227 mjd@plover.com 
518  * Nodes are numbered 1, 2, 3, 4.  Node #n's position is recorded in
519  * element 2*n-1 of the array.  Element #2n holds the byte length node #n.
520  * Element 0 holds the number n.
521  * Position is 1 indexed.
522  */
523 #ifndef RE_TRACK_PATTERN_OFFSETS
524 #define Set_Node_Offset_To_R(node,byte)
525 #define Set_Node_Offset(node,byte)
526 #define Set_Cur_Node_Offset
527 #define Set_Node_Length_To_R(node,len)
528 #define Set_Node_Length(node,len)
529 #define Set_Node_Cur_Length(node)
530 #define Node_Offset(n) 
531 #define Node_Length(n) 
532 #define Set_Node_Offset_Length(node,offset,len)
533 #define ProgLen(ri) ri->u.proglen
534 #define SetProgLen(ri,x) ri->u.proglen = x
535 #else
536 #define ProgLen(ri) ri->u.offsets[0]
537 #define SetProgLen(ri,x) ri->u.offsets[0] = x
538 #define Set_Node_Offset_To_R(node,byte) STMT_START {                    \
539     if (! SIZE_ONLY) {                                                  \
540         MJD_OFFSET_DEBUG(("** (%d) offset of node %d is %d.\n",         \
541                     __LINE__, (int)(node), (int)(byte)));               \
542         if((node) < 0) {                                                \
543             Perl_croak(aTHX_ "value of node is %d in Offset macro", (int)(node)); \
544         } else {                                                        \
545             RExC_offsets[2*(node)-1] = (byte);                          \
546         }                                                               \
547     }                                                                   \
548 } STMT_END
549
550 #define Set_Node_Offset(node,byte) \
551     Set_Node_Offset_To_R((node)-RExC_emit_start, (byte)-RExC_start)
552 #define Set_Cur_Node_Offset Set_Node_Offset(RExC_emit, RExC_parse)
553
554 #define Set_Node_Length_To_R(node,len) STMT_START {                     \
555     if (! SIZE_ONLY) {                                                  \
556         MJD_OFFSET_DEBUG(("** (%d) size of node %d is %d.\n",           \
557                 __LINE__, (int)(node), (int)(len)));                    \
558         if((node) < 0) {                                                \
559             Perl_croak(aTHX_ "value of node is %d in Length macro", (int)(node)); \
560         } else {                                                        \
561             RExC_offsets[2*(node)] = (len);                             \
562         }                                                               \
563     }                                                                   \
564 } STMT_END
565
566 #define Set_Node_Length(node,len) \
567     Set_Node_Length_To_R((node)-RExC_emit_start, len)
568 #define Set_Cur_Node_Length(len) Set_Node_Length(RExC_emit, len)
569 #define Set_Node_Cur_Length(node) \
570     Set_Node_Length(node, RExC_parse - parse_start)
571
572 /* Get offsets and lengths */
573 #define Node_Offset(n) (RExC_offsets[2*((n)-RExC_emit_start)-1])
574 #define Node_Length(n) (RExC_offsets[2*((n)-RExC_emit_start)])
575
576 #define Set_Node_Offset_Length(node,offset,len) STMT_START {    \
577     Set_Node_Offset_To_R((node)-RExC_emit_start, (offset));     \
578     Set_Node_Length_To_R((node)-RExC_emit_start, (len));        \
579 } STMT_END
580 #endif
581
582 #if PERL_ENABLE_EXPERIMENTAL_REGEX_OPTIMISATIONS
583 #define EXPERIMENTAL_INPLACESCAN
584 #endif /*RE_TRACK_PATTERN_OFFSETS*/
585
586 #define DEBUG_STUDYDATA(str,data,depth)                              \
587 DEBUG_OPTIMISE_MORE_r(if(data){                                      \
588     PerlIO_printf(Perl_debug_log,                                    \
589         "%*s" str "Pos:%"IVdf"/%"IVdf                                \
590         " Flags: 0x%"UVXf" Whilem_c: %"IVdf" Lcp: %"IVdf" %s",       \
591         (int)(depth)*2, "",                                          \
592         (IV)((data)->pos_min),                                       \
593         (IV)((data)->pos_delta),                                     \
594         (UV)((data)->flags),                                         \
595         (IV)((data)->whilem_c),                                      \
596         (IV)((data)->last_closep ? *((data)->last_closep) : -1),     \
597         is_inf ? "INF " : ""                                         \
598     );                                                               \
599     if ((data)->last_found)                                          \
600         PerlIO_printf(Perl_debug_log,                                \
601             "Last:'%s' %"IVdf":%"IVdf"/%"IVdf" %sFixed:'%s' @ %"IVdf \
602             " %sFloat: '%s' @ %"IVdf"/%"IVdf"",                      \
603             SvPVX_const((data)->last_found),                         \
604             (IV)((data)->last_end),                                  \
605             (IV)((data)->last_start_min),                            \
606             (IV)((data)->last_start_max),                            \
607             ((data)->longest &&                                      \
608              (data)->longest==&((data)->longest_fixed)) ? "*" : "",  \
609             SvPVX_const((data)->longest_fixed),                      \
610             (IV)((data)->offset_fixed),                              \
611             ((data)->longest &&                                      \
612              (data)->longest==&((data)->longest_float)) ? "*" : "",  \
613             SvPVX_const((data)->longest_float),                      \
614             (IV)((data)->offset_float_min),                          \
615             (IV)((data)->offset_float_max)                           \
616         );                                                           \
617     PerlIO_printf(Perl_debug_log,"\n");                              \
618 });
619
620 static void clear_re(pTHX_ void *r);
621
622 /* Mark that we cannot extend a found fixed substring at this point.
623    Update the longest found anchored substring and the longest found
624    floating substrings if needed. */
625
626 STATIC void
627 S_scan_commit(pTHX_ const RExC_state_t *pRExC_state, scan_data_t *data, I32 *minlenp, int is_inf)
628 {
629     const STRLEN l = CHR_SVLEN(data->last_found);
630     const STRLEN old_l = CHR_SVLEN(*data->longest);
631     GET_RE_DEBUG_FLAGS_DECL;
632
633     if ((l >= old_l) && ((l > old_l) || (data->flags & SF_BEFORE_EOL))) {
634         SvSetMagicSV(*data->longest, data->last_found);
635         if (*data->longest == data->longest_fixed) {
636             data->offset_fixed = l ? data->last_start_min : data->pos_min;
637             if (data->flags & SF_BEFORE_EOL)
638                 data->flags
639                     |= ((data->flags & SF_BEFORE_EOL) << SF_FIX_SHIFT_EOL);
640             else
641                 data->flags &= ~SF_FIX_BEFORE_EOL;
642             data->minlen_fixed=minlenp; 
643             data->lookbehind_fixed=0;
644         }
645         else { /* *data->longest == data->longest_float */
646             data->offset_float_min = l ? data->last_start_min : data->pos_min;
647             data->offset_float_max = (l
648                                       ? data->last_start_max
649                                       : data->pos_min + data->pos_delta);
650             if (is_inf || (U32)data->offset_float_max > (U32)I32_MAX)
651                 data->offset_float_max = I32_MAX;
652             if (data->flags & SF_BEFORE_EOL)
653                 data->flags
654                     |= ((data->flags & SF_BEFORE_EOL) << SF_FL_SHIFT_EOL);
655             else
656                 data->flags &= ~SF_FL_BEFORE_EOL;
657             data->minlen_float=minlenp;
658             data->lookbehind_float=0;
659         }
660     }
661     SvCUR_set(data->last_found, 0);
662     {
663         SV * const sv = data->last_found;
664         if (SvUTF8(sv) && SvMAGICAL(sv)) {
665             MAGIC * const mg = mg_find(sv, PERL_MAGIC_utf8);
666             if (mg)
667                 mg->mg_len = 0;
668         }
669     }
670     data->last_end = -1;
671     data->flags &= ~SF_BEFORE_EOL;
672     DEBUG_STUDYDATA("commit: ",data,0);
673 }
674
675 /* Can match anything (initialization) */
676 STATIC void
677 S_cl_anything(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl)
678 {
679     ANYOF_CLASS_ZERO(cl);
680     ANYOF_BITMAP_SETALL(cl);
681     cl->flags = ANYOF_EOS|ANYOF_UNICODE_ALL;
682     if (LOC)
683         cl->flags |= ANYOF_LOCALE;
684 }
685
686 /* Can match anything (initialization) */
687 STATIC int
688 S_cl_is_anything(const struct regnode_charclass_class *cl)
689 {
690     int value;
691
692     for (value = 0; value <= ANYOF_MAX; value += 2)
693         if (ANYOF_CLASS_TEST(cl, value) && ANYOF_CLASS_TEST(cl, value + 1))
694             return 1;
695     if (!(cl->flags & ANYOF_UNICODE_ALL))
696         return 0;
697     if (!ANYOF_BITMAP_TESTALLSET((const void*)cl))
698         return 0;
699     return 1;
700 }
701
702 /* Can match anything (initialization) */
703 STATIC void
704 S_cl_init(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl)
705 {
706     Zero(cl, 1, struct regnode_charclass_class);
707     cl->type = ANYOF;
708     cl_anything(pRExC_state, cl);
709 }
710
711 STATIC void
712 S_cl_init_zero(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl)
713 {
714     Zero(cl, 1, struct regnode_charclass_class);
715     cl->type = ANYOF;
716     cl_anything(pRExC_state, cl);
717     if (LOC)
718         cl->flags |= ANYOF_LOCALE;
719 }
720
721 /* 'And' a given class with another one.  Can create false positives */
722 /* We assume that cl is not inverted */
723 STATIC void
724 S_cl_and(struct regnode_charclass_class *cl,
725         const struct regnode_charclass_class *and_with)
726 {
727
728     assert(and_with->type == ANYOF);
729     if (!(and_with->flags & ANYOF_CLASS)
730         && !(cl->flags & ANYOF_CLASS)
731         && (and_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
732         && !(and_with->flags & ANYOF_FOLD)
733         && !(cl->flags & ANYOF_FOLD)) {
734         int i;
735
736         if (and_with->flags & ANYOF_INVERT)
737             for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
738                 cl->bitmap[i] &= ~and_with->bitmap[i];
739         else
740             for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
741                 cl->bitmap[i] &= and_with->bitmap[i];
742     } /* XXXX: logic is complicated otherwise, leave it along for a moment. */
743     if (!(and_with->flags & ANYOF_EOS))
744         cl->flags &= ~ANYOF_EOS;
745
746     if (cl->flags & ANYOF_UNICODE_ALL && and_with->flags & ANYOF_UNICODE &&
747         !(and_with->flags & ANYOF_INVERT)) {
748         cl->flags &= ~ANYOF_UNICODE_ALL;
749         cl->flags |= ANYOF_UNICODE;
750         ARG_SET(cl, ARG(and_with));
751     }
752     if (!(and_with->flags & ANYOF_UNICODE_ALL) &&
753         !(and_with->flags & ANYOF_INVERT))
754         cl->flags &= ~ANYOF_UNICODE_ALL;
755     if (!(and_with->flags & (ANYOF_UNICODE|ANYOF_UNICODE_ALL)) &&
756         !(and_with->flags & ANYOF_INVERT))
757         cl->flags &= ~ANYOF_UNICODE;
758 }
759
760 /* 'OR' a given class with another one.  Can create false positives */
761 /* We assume that cl is not inverted */
762 STATIC void
763 S_cl_or(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl, const struct regnode_charclass_class *or_with)
764 {
765     if (or_with->flags & ANYOF_INVERT) {
766         /* We do not use
767          * (B1 | CL1) | (!B2 & !CL2) = (B1 | !B2 & !CL2) | (CL1 | (!B2 & !CL2))
768          *   <= (B1 | !B2) | (CL1 | !CL2)
769          * which is wasteful if CL2 is small, but we ignore CL2:
770          *   (B1 | CL1) | (!B2 & !CL2) <= (B1 | CL1) | !B2 = (B1 | !B2) | CL1
771          * XXXX Can we handle case-fold?  Unclear:
772          *   (OK1(i) | OK1(i')) | !(OK1(i) | OK1(i')) =
773          *   (OK1(i) | OK1(i')) | (!OK1(i) & !OK1(i'))
774          */
775         if ( (or_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
776              && !(or_with->flags & ANYOF_FOLD)
777              && !(cl->flags & ANYOF_FOLD) ) {
778             int i;
779
780             for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
781                 cl->bitmap[i] |= ~or_with->bitmap[i];
782         } /* XXXX: logic is complicated otherwise */
783         else {
784             cl_anything(pRExC_state, cl);
785         }
786     } else {
787         /* (B1 | CL1) | (B2 | CL2) = (B1 | B2) | (CL1 | CL2)) */
788         if ( (or_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
789              && (!(or_with->flags & ANYOF_FOLD)
790                  || (cl->flags & ANYOF_FOLD)) ) {
791             int i;
792
793             /* OR char bitmap and class bitmap separately */
794             for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
795                 cl->bitmap[i] |= or_with->bitmap[i];
796             if (or_with->flags & ANYOF_CLASS) {
797                 for (i = 0; i < ANYOF_CLASSBITMAP_SIZE; i++)
798                     cl->classflags[i] |= or_with->classflags[i];
799                 cl->flags |= ANYOF_CLASS;
800             }
801         }
802         else { /* XXXX: logic is complicated, leave it along for a moment. */
803             cl_anything(pRExC_state, cl);
804         }
805     }
806     if (or_with->flags & ANYOF_EOS)
807         cl->flags |= ANYOF_EOS;
808
809     if (cl->flags & ANYOF_UNICODE && or_with->flags & ANYOF_UNICODE &&
810         ARG(cl) != ARG(or_with)) {
811         cl->flags |= ANYOF_UNICODE_ALL;
812         cl->flags &= ~ANYOF_UNICODE;
813     }
814     if (or_with->flags & ANYOF_UNICODE_ALL) {
815         cl->flags |= ANYOF_UNICODE_ALL;
816         cl->flags &= ~ANYOF_UNICODE;
817     }
818 }
819
820 #define TRIE_LIST_ITEM(state,idx) (trie->states[state].trans.list)[ idx ]
821 #define TRIE_LIST_CUR(state)  ( TRIE_LIST_ITEM( state, 0 ).forid )
822 #define TRIE_LIST_LEN(state) ( TRIE_LIST_ITEM( state, 0 ).newstate )
823 #define TRIE_LIST_USED(idx)  ( trie->states[state].trans.list ? (TRIE_LIST_CUR( idx ) - 1) : 0 )
824
825
826 #ifdef DEBUGGING
827 /*
828    dump_trie(trie,widecharmap,revcharmap)
829    dump_trie_interim_list(trie,widecharmap,revcharmap,next_alloc)
830    dump_trie_interim_table(trie,widecharmap,revcharmap,next_alloc)
831
832    These routines dump out a trie in a somewhat readable format.
833    The _interim_ variants are used for debugging the interim
834    tables that are used to generate the final compressed
835    representation which is what dump_trie expects.
836
837    Part of the reason for their existance is to provide a form
838    of documentation as to how the different representations function.
839
840 */
841
842 /*
843   Dumps the final compressed table form of the trie to Perl_debug_log.
844   Used for debugging make_trie().
845 */
846  
847 STATIC void
848 S_dump_trie(pTHX_ const struct _reg_trie_data *trie, HV *widecharmap,
849             AV *revcharmap, U32 depth)
850 {
851     U32 state;
852     SV *sv=sv_newmortal();
853     int colwidth= widecharmap ? 6 : 4;
854     GET_RE_DEBUG_FLAGS_DECL;
855
856
857     PerlIO_printf( Perl_debug_log, "%*sChar : %-6s%-6s%-4s ",
858         (int)depth * 2 + 2,"",
859         "Match","Base","Ofs" );
860
861     for( state = 0 ; state < trie->uniquecharcount ; state++ ) {
862         SV ** const tmp = av_fetch( revcharmap, state, 0);
863         if ( tmp ) {
864             PerlIO_printf( Perl_debug_log, "%*s", 
865                 colwidth,
866                 pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth, 
867                             PL_colors[0], PL_colors[1],
868                             (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
869                             PERL_PV_ESCAPE_FIRSTCHAR 
870                 ) 
871             );
872         }
873     }
874     PerlIO_printf( Perl_debug_log, "\n%*sState|-----------------------",
875         (int)depth * 2 + 2,"");
876
877     for( state = 0 ; state < trie->uniquecharcount ; state++ )
878         PerlIO_printf( Perl_debug_log, "%.*s", colwidth, "--------");
879     PerlIO_printf( Perl_debug_log, "\n");
880
881     for( state = 1 ; state < trie->statecount ; state++ ) {
882         const U32 base = trie->states[ state ].trans.base;
883
884         PerlIO_printf( Perl_debug_log, "%*s#%4"UVXf"|", (int)depth * 2 + 2,"", (UV)state);
885
886         if ( trie->states[ state ].wordnum ) {
887             PerlIO_printf( Perl_debug_log, " W%4X", trie->states[ state ].wordnum );
888         } else {
889             PerlIO_printf( Perl_debug_log, "%6s", "" );
890         }
891
892         PerlIO_printf( Perl_debug_log, " @%4"UVXf" ", (UV)base );
893
894         if ( base ) {
895             U32 ofs = 0;
896
897             while( ( base + ofs  < trie->uniquecharcount ) ||
898                    ( base + ofs - trie->uniquecharcount < trie->lasttrans
899                      && trie->trans[ base + ofs - trie->uniquecharcount ].check != state))
900                     ofs++;
901
902             PerlIO_printf( Perl_debug_log, "+%2"UVXf"[ ", (UV)ofs);
903
904             for ( ofs = 0 ; ofs < trie->uniquecharcount ; ofs++ ) {
905                 if ( ( base + ofs >= trie->uniquecharcount ) &&
906                      ( base + ofs - trie->uniquecharcount < trie->lasttrans ) &&
907                      trie->trans[ base + ofs - trie->uniquecharcount ].check == state )
908                 {
909                    PerlIO_printf( Perl_debug_log, "%*"UVXf,
910                     colwidth,
911                     (UV)trie->trans[ base + ofs - trie->uniquecharcount ].next );
912                 } else {
913                     PerlIO_printf( Perl_debug_log, "%*s",colwidth,"   ." );
914                 }
915             }
916
917             PerlIO_printf( Perl_debug_log, "]");
918
919         }
920         PerlIO_printf( Perl_debug_log, "\n" );
921     }
922 }    
923 /*
924   Dumps a fully constructed but uncompressed trie in list form.
925   List tries normally only are used for construction when the number of 
926   possible chars (trie->uniquecharcount) is very high.
927   Used for debugging make_trie().
928 */
929 STATIC void
930 S_dump_trie_interim_list(pTHX_ const struct _reg_trie_data *trie,
931                          HV *widecharmap, AV *revcharmap, U32 next_alloc,
932                          U32 depth)
933 {
934     U32 state;
935     SV *sv=sv_newmortal();
936     int colwidth= widecharmap ? 6 : 4;
937     GET_RE_DEBUG_FLAGS_DECL;
938     /* print out the table precompression.  */
939     PerlIO_printf( Perl_debug_log, "%*sState :Word | Transition Data\n%*s%s",
940         (int)depth * 2 + 2,"", (int)depth * 2 + 2,"",
941         "------:-----+-----------------\n" );
942     
943     for( state=1 ; state < next_alloc ; state ++ ) {
944         U16 charid;
945     
946         PerlIO_printf( Perl_debug_log, "%*s %4"UVXf" :",
947             (int)depth * 2 + 2,"", (UV)state  );
948         if ( ! trie->states[ state ].wordnum ) {
949             PerlIO_printf( Perl_debug_log, "%5s| ","");
950         } else {
951             PerlIO_printf( Perl_debug_log, "W%4x| ",
952                 trie->states[ state ].wordnum
953             );
954         }
955         for( charid = 1 ; charid <= TRIE_LIST_USED( state ) ; charid++ ) {
956             SV ** const tmp = av_fetch( revcharmap, TRIE_LIST_ITEM(state,charid).forid, 0);
957             if ( tmp ) {
958                 PerlIO_printf( Perl_debug_log, "%*s:%3X=%4"UVXf" | ",
959                     colwidth,
960                     pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth, 
961                             PL_colors[0], PL_colors[1],
962                             (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
963                             PERL_PV_ESCAPE_FIRSTCHAR 
964                     ) ,
965                     TRIE_LIST_ITEM(state,charid).forid,
966                     (UV)TRIE_LIST_ITEM(state,charid).newstate
967                 );
968                 if (!(charid % 10)) 
969                     PerlIO_printf(Perl_debug_log, "\n%*s| ",
970                         (int)((depth * 2) + 14), "");
971             }
972         }
973         PerlIO_printf( Perl_debug_log, "\n");
974     }
975 }    
976
977 /*
978   Dumps a fully constructed but uncompressed trie in table form.
979   This is the normal DFA style state transition table, with a few 
980   twists to facilitate compression later. 
981   Used for debugging make_trie().
982 */
983 STATIC void
984 S_dump_trie_interim_table(pTHX_ const struct _reg_trie_data *trie,
985                           HV *widecharmap, AV *revcharmap, U32 next_alloc,
986                           U32 depth)
987 {
988     U32 state;
989     U16 charid;
990     SV *sv=sv_newmortal();
991     int colwidth= widecharmap ? 6 : 4;
992     GET_RE_DEBUG_FLAGS_DECL;
993     
994     /*
995        print out the table precompression so that we can do a visual check
996        that they are identical.
997      */
998     
999     PerlIO_printf( Perl_debug_log, "%*sChar : ",(int)depth * 2 + 2,"" );
1000
1001     for( charid = 0 ; charid < trie->uniquecharcount ; charid++ ) {
1002         SV ** const tmp = av_fetch( revcharmap, charid, 0);
1003         if ( tmp ) {
1004             PerlIO_printf( Perl_debug_log, "%*s", 
1005                 colwidth,
1006                 pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth, 
1007                             PL_colors[0], PL_colors[1],
1008                             (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
1009                             PERL_PV_ESCAPE_FIRSTCHAR 
1010                 ) 
1011             );
1012         }
1013     }
1014
1015     PerlIO_printf( Perl_debug_log, "\n%*sState+-",(int)depth * 2 + 2,"" );
1016
1017     for( charid=0 ; charid < trie->uniquecharcount ; charid++ ) {
1018         PerlIO_printf( Perl_debug_log, "%.*s", colwidth,"--------");
1019     }
1020
1021     PerlIO_printf( Perl_debug_log, "\n" );
1022
1023     for( state=1 ; state < next_alloc ; state += trie->uniquecharcount ) {
1024
1025         PerlIO_printf( Perl_debug_log, "%*s%4"UVXf" : ", 
1026             (int)depth * 2 + 2,"",
1027             (UV)TRIE_NODENUM( state ) );
1028
1029         for( charid = 0 ; charid < trie->uniquecharcount ; charid++ ) {
1030             UV v=(UV)SAFE_TRIE_NODENUM( trie->trans[ state + charid ].next );
1031             if (v)
1032                 PerlIO_printf( Perl_debug_log, "%*"UVXf, colwidth, v );
1033             else
1034                 PerlIO_printf( Perl_debug_log, "%*s", colwidth, "." );
1035         }
1036         if ( ! trie->states[ TRIE_NODENUM( state ) ].wordnum ) {
1037             PerlIO_printf( Perl_debug_log, " (%4"UVXf")\n", (UV)trie->trans[ state ].check );
1038         } else {
1039             PerlIO_printf( Perl_debug_log, " (%4"UVXf") W%4X\n", (UV)trie->trans[ state ].check,
1040             trie->states[ TRIE_NODENUM( state ) ].wordnum );
1041         }
1042     }
1043 }
1044
1045 #endif
1046
1047 /* make_trie(startbranch,first,last,tail,word_count,flags,depth)
1048   startbranch: the first branch in the whole branch sequence
1049   first      : start branch of sequence of branch-exact nodes.
1050                May be the same as startbranch
1051   last       : Thing following the last branch.
1052                May be the same as tail.
1053   tail       : item following the branch sequence
1054   count      : words in the sequence
1055   flags      : currently the OP() type we will be building one of /EXACT(|F|Fl)/
1056   depth      : indent depth
1057
1058 Inplace optimizes a sequence of 2 or more Branch-Exact nodes into a TRIE node.
1059
1060 A trie is an N'ary tree where the branches are determined by digital
1061 decomposition of the key. IE, at the root node you look up the 1st character and
1062 follow that branch repeat until you find the end of the branches. Nodes can be
1063 marked as "accepting" meaning they represent a complete word. Eg:
1064
1065   /he|she|his|hers/
1066
1067 would convert into the following structure. Numbers represent states, letters
1068 following numbers represent valid transitions on the letter from that state, if
1069 the number is in square brackets it represents an accepting state, otherwise it
1070 will be in parenthesis.
1071
1072       +-h->+-e->[3]-+-r->(8)-+-s->[9]
1073       |    |
1074       |   (2)
1075       |    |
1076      (1)   +-i->(6)-+-s->[7]
1077       |
1078       +-s->(3)-+-h->(4)-+-e->[5]
1079
1080       Accept Word Mapping: 3=>1 (he),5=>2 (she), 7=>3 (his), 9=>4 (hers)
1081
1082 This shows that when matching against the string 'hers' we will begin at state 1
1083 read 'h' and move to state 2, read 'e' and move to state 3 which is accepting,
1084 then read 'r' and go to state 8 followed by 's' which takes us to state 9 which
1085 is also accepting. Thus we know that we can match both 'he' and 'hers' with a
1086 single traverse. We store a mapping from accepting to state to which word was
1087 matched, and then when we have multiple possibilities we try to complete the
1088 rest of the regex in the order in which they occured in the alternation.
1089
1090 The only prior NFA like behaviour that would be changed by the TRIE support is
1091 the silent ignoring of duplicate alternations which are of the form:
1092
1093  / (DUPE|DUPE) X? (?{ ... }) Y /x
1094
1095 Thus EVAL blocks follwing a trie may be called a different number of times with
1096 and without the optimisation. With the optimisations dupes will be silently
1097 ignored. This inconsistant behaviour of EVAL type nodes is well established as
1098 the following demonstrates:
1099
1100  'words'=~/(word|word|word)(?{ print $1 })[xyz]/
1101
1102 which prints out 'word' three times, but
1103
1104  'words'=~/(word|word|word)(?{ print $1 })S/
1105
1106 which doesnt print it out at all. This is due to other optimisations kicking in.
1107
1108 Example of what happens on a structural level:
1109
1110 The regexp /(ac|ad|ab)+/ will produce the folowing debug output:
1111
1112    1: CURLYM[1] {1,32767}(18)
1113    5:   BRANCH(8)
1114    6:     EXACT <ac>(16)
1115    8:   BRANCH(11)
1116    9:     EXACT <ad>(16)
1117   11:   BRANCH(14)
1118   12:     EXACT <ab>(16)
1119   16:   SUCCEED(0)
1120   17:   NOTHING(18)
1121   18: END(0)
1122
1123 This would be optimizable with startbranch=5, first=5, last=16, tail=16
1124 and should turn into:
1125
1126    1: CURLYM[1] {1,32767}(18)
1127    5:   TRIE(16)
1128         [Words:3 Chars Stored:6 Unique Chars:4 States:5 NCP:1]
1129           <ac>
1130           <ad>
1131           <ab>
1132   16:   SUCCEED(0)
1133   17:   NOTHING(18)
1134   18: END(0)
1135
1136 Cases where tail != last would be like /(?foo|bar)baz/:
1137
1138    1: BRANCH(4)
1139    2:   EXACT <foo>(8)
1140    4: BRANCH(7)
1141    5:   EXACT <bar>(8)
1142    7: TAIL(8)
1143    8: EXACT <baz>(10)
1144   10: END(0)
1145
1146 which would be optimizable with startbranch=1, first=1, last=7, tail=8
1147 and would end up looking like:
1148
1149     1: TRIE(8)
1150       [Words:2 Chars Stored:6 Unique Chars:5 States:7 NCP:1]
1151         <foo>
1152         <bar>
1153    7: TAIL(8)
1154    8: EXACT <baz>(10)
1155   10: END(0)
1156
1157     d = uvuni_to_utf8_flags(d, uv, 0);
1158
1159 is the recommended Unicode-aware way of saying
1160
1161     *(d++) = uv;
1162 */
1163
1164 #define TRIE_STORE_REVCHAR                                                 \
1165     STMT_START {                                                           \
1166         if (UTF) {                                                         \
1167             SV *zlopp = newSV(2);                                          \
1168             unsigned char *flrbbbbb = (unsigned char *) SvPVX(zlopp);      \
1169             unsigned const char *const kapow = uvuni_to_utf8(flrbbbbb, uvc & 0xFF); \
1170             SvCUR_set(zlopp, kapow - flrbbbbb);                            \
1171             SvPOK_on(zlopp);                                               \
1172             SvUTF8_on(zlopp);                                              \
1173             av_push(revcharmap, zlopp);                                    \
1174         } else {                                                           \
1175             char ooooff = (char)uvc;                                               \
1176             av_push(revcharmap, newSVpvn(&ooooff, 1));                     \
1177         }                                                                  \
1178         } STMT_END
1179
1180 #define TRIE_READ_CHAR STMT_START {                                           \
1181     wordlen++;                                                                \
1182     if ( UTF ) {                                                              \
1183         if ( folder ) {                                                       \
1184             if ( foldlen > 0 ) {                                              \
1185                uvc = utf8n_to_uvuni( scan, UTF8_MAXLEN, &len, uniflags );     \
1186                foldlen -= len;                                                \
1187                scan += len;                                                   \
1188                len = 0;                                                       \
1189             } else {                                                          \
1190                 uvc = utf8n_to_uvuni( (const U8*)uc, UTF8_MAXLEN, &len, uniflags);\
1191                 uvc = to_uni_fold( uvc, foldbuf, &foldlen );                  \
1192                 foldlen -= UNISKIP( uvc );                                    \
1193                 scan = foldbuf + UNISKIP( uvc );                              \
1194             }                                                                 \
1195         } else {                                                              \
1196             uvc = utf8n_to_uvuni( (const U8*)uc, UTF8_MAXLEN, &len, uniflags);\
1197         }                                                                     \
1198     } else {                                                                  \
1199         uvc = (U32)*uc;                                                       \
1200         len = 1;                                                              \
1201     }                                                                         \
1202 } STMT_END
1203
1204
1205
1206 #define TRIE_LIST_PUSH(state,fid,ns) STMT_START {               \
1207     if ( TRIE_LIST_CUR( state ) >=TRIE_LIST_LEN( state ) ) {    \
1208         U32 ging = TRIE_LIST_LEN( state ) *= 2;                 \
1209         Renew( trie->states[ state ].trans.list, ging, reg_trie_trans_le ); \
1210     }                                                           \
1211     TRIE_LIST_ITEM( state, TRIE_LIST_CUR( state ) ).forid = fid;     \
1212     TRIE_LIST_ITEM( state, TRIE_LIST_CUR( state ) ).newstate = ns;   \
1213     TRIE_LIST_CUR( state )++;                                   \
1214 } STMT_END
1215
1216 #define TRIE_LIST_NEW(state) STMT_START {                       \
1217     Newxz( trie->states[ state ].trans.list,               \
1218         4, reg_trie_trans_le );                                 \
1219      TRIE_LIST_CUR( state ) = 1;                                \
1220      TRIE_LIST_LEN( state ) = 4;                                \
1221 } STMT_END
1222
1223 #define TRIE_HANDLE_WORD(state) STMT_START {                    \
1224     U16 dupe= trie->states[ state ].wordnum;                    \
1225     regnode * const noper_next = regnext( noper );              \
1226                                                                 \
1227     if (trie->wordlen)                                          \
1228         trie->wordlen[ curword ] = wordlen;                     \
1229     DEBUG_r({                                                   \
1230         /* store the word for dumping */                        \
1231         SV* tmp;                                                \
1232         if (OP(noper) != NOTHING)                               \
1233             tmp = newSVpvn(STRING(noper), STR_LEN(noper));      \
1234         else                                                    \
1235             tmp = newSVpvn( "", 0 );                            \
1236         if ( UTF ) SvUTF8_on( tmp );                            \
1237         av_push( trie_words, tmp );                             \
1238     });                                                         \
1239                                                                 \
1240     curword++;                                                  \
1241                                                                 \
1242     if ( noper_next < tail ) {                                  \
1243         if (!trie->jump)                                        \
1244             trie->jump = (U16 *) PerlMemShared_calloc( word_count + 1, sizeof(U16) ); \
1245         trie->jump[curword] = (U16)(noper_next - convert);      \
1246         if (!jumper)                                            \
1247             jumper = noper_next;                                \
1248         if (!nextbranch)                                        \
1249             nextbranch= regnext(cur);                           \
1250     }                                                           \
1251                                                                 \
1252     if ( dupe ) {                                               \
1253         /* So it's a dupe. This means we need to maintain a   */\
1254         /* linked-list from the first to the next.            */\
1255         /* we only allocate the nextword buffer when there    */\
1256         /* a dupe, so first time we have to do the allocation */\
1257         if (!trie->nextword)                                    \
1258             trie->nextword = (U16 *)                                    \
1259                 PerlMemShared_calloc( word_count + 1, sizeof(U16));     \
1260         while ( trie->nextword[dupe] )                          \
1261             dupe= trie->nextword[dupe];                         \
1262         trie->nextword[dupe]= curword;                          \
1263     } else {                                                    \
1264         /* we haven't inserted this word yet.                */ \
1265         trie->states[ state ].wordnum = curword;                \
1266     }                                                           \
1267 } STMT_END
1268
1269
1270 #define TRIE_TRANS_STATE(state,base,ucharcount,charid,special)          \
1271      ( ( base + charid >=  ucharcount                                   \
1272          && base + charid < ubound                                      \
1273          && state == trie->trans[ base - ucharcount + charid ].check    \
1274          && trie->trans[ base - ucharcount + charid ].next )            \
1275            ? trie->trans[ base - ucharcount + charid ].next             \
1276            : ( state==1 ? special : 0 )                                 \
1277       )
1278
1279 #define MADE_TRIE       1
1280 #define MADE_JUMP_TRIE  2
1281 #define MADE_EXACT_TRIE 4
1282
1283 STATIC I32
1284 S_make_trie(pTHX_ RExC_state_t *pRExC_state, regnode *startbranch, regnode *first, regnode *last, regnode *tail, U32 word_count, U32 flags, U32 depth)
1285 {
1286     dVAR;
1287     /* first pass, loop through and scan words */
1288     reg_trie_data *trie;
1289     HV *widecharmap = NULL;
1290     AV *revcharmap = newAV();
1291     regnode *cur;
1292     const U32 uniflags = UTF8_ALLOW_DEFAULT;
1293     STRLEN len = 0;
1294     UV uvc = 0;
1295     U16 curword = 0;
1296     U32 next_alloc = 0;
1297     regnode *jumper = NULL;
1298     regnode *nextbranch = NULL;
1299     regnode *convert = NULL;
1300     /* we just use folder as a flag in utf8 */
1301     const U8 * const folder = ( flags == EXACTF
1302                        ? PL_fold
1303                        : ( flags == EXACTFL
1304                            ? PL_fold_locale
1305                            : NULL
1306                          )
1307                      );
1308
1309 #ifdef DEBUGGING
1310     const U32 data_slot = add_data( pRExC_state, 4, "tuuu" );
1311     AV *trie_words = NULL;
1312     /* along with revcharmap, this only used during construction but both are
1313      * useful during debugging so we store them in the struct when debugging.
1314      */
1315 #else
1316     const U32 data_slot = add_data( pRExC_state, 2, "tu" );
1317     STRLEN trie_charcount=0;
1318 #endif
1319     SV *re_trie_maxbuff;
1320     GET_RE_DEBUG_FLAGS_DECL;
1321 #ifndef DEBUGGING
1322     PERL_UNUSED_ARG(depth);
1323 #endif
1324
1325     trie = (reg_trie_data *) PerlMemShared_calloc( 1, sizeof(reg_trie_data) );
1326     trie->refcount = 1;
1327     trie->startstate = 1;
1328     trie->wordcount = word_count;
1329     RExC_rxi->data->data[ data_slot ] = (void*)trie;
1330     trie->charmap = (U16 *) PerlMemShared_calloc( 256, sizeof(U16) );
1331     if (!(UTF && folder))
1332         trie->bitmap = (char *) PerlMemShared_calloc( ANYOF_BITMAP_SIZE, 1 );
1333     DEBUG_r({
1334         trie_words = newAV();
1335     });
1336
1337     re_trie_maxbuff = get_sv(RE_TRIE_MAXBUF_NAME, 1);
1338     if (!SvIOK(re_trie_maxbuff)) {
1339         sv_setiv(re_trie_maxbuff, RE_TRIE_MAXBUF_INIT);
1340     }
1341     DEBUG_OPTIMISE_r({
1342                 PerlIO_printf( Perl_debug_log,
1343                   "%*smake_trie start==%d, first==%d, last==%d, tail==%d depth=%d\n",
1344                   (int)depth * 2 + 2, "", 
1345                   REG_NODE_NUM(startbranch),REG_NODE_NUM(first), 
1346                   REG_NODE_NUM(last), REG_NODE_NUM(tail),
1347                   (int)depth);
1348     });
1349    
1350    /* Find the node we are going to overwrite */
1351     if ( first == startbranch && OP( last ) != BRANCH ) {
1352         /* whole branch chain */
1353         convert = first;
1354     } else {
1355         /* branch sub-chain */
1356         convert = NEXTOPER( first );
1357     }
1358         
1359     /*  -- First loop and Setup --
1360
1361        We first traverse the branches and scan each word to determine if it
1362        contains widechars, and how many unique chars there are, this is
1363        important as we have to build a table with at least as many columns as we
1364        have unique chars.
1365
1366        We use an array of integers to represent the character codes 0..255
1367        (trie->charmap) and we use a an HV* to store Unicode characters. We use the
1368        native representation of the character value as the key and IV's for the
1369        coded index.
1370
1371        *TODO* If we keep track of how many times each character is used we can
1372        remap the columns so that the table compression later on is more
1373        efficient in terms of memory by ensuring most common value is in the
1374        middle and the least common are on the outside.  IMO this would be better
1375        than a most to least common mapping as theres a decent chance the most
1376        common letter will share a node with the least common, meaning the node
1377        will not be compressable. With a middle is most common approach the worst
1378        case is when we have the least common nodes twice.
1379
1380      */
1381
1382     for ( cur = first ; cur < last ; cur = regnext( cur ) ) {
1383         regnode * const noper = NEXTOPER( cur );
1384         const U8 *uc = (U8*)STRING( noper );
1385         const U8 * const e  = uc + STR_LEN( noper );
1386         STRLEN foldlen = 0;
1387         U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
1388         const U8 *scan = (U8*)NULL;
1389         U32 wordlen      = 0;         /* required init */
1390         STRLEN chars = 0;
1391         bool set_bit = trie->bitmap ? 1 : 0; /*store the first char in the bitmap?*/
1392
1393         if (OP(noper) == NOTHING) {
1394             trie->minlen= 0;
1395             continue;
1396         }
1397         if ( set_bit ) /* bitmap only alloced when !(UTF&&Folding) */
1398             TRIE_BITMAP_SET(trie,*uc); /* store the raw first byte
1399                                           regardless of encoding */
1400
1401         for ( ; uc < e ; uc += len ) {
1402             TRIE_CHARCOUNT(trie)++;
1403             TRIE_READ_CHAR;
1404             chars++;
1405             if ( uvc < 256 ) {
1406                 if ( !trie->charmap[ uvc ] ) {
1407                     trie->charmap[ uvc ]=( ++trie->uniquecharcount );
1408                     if ( folder )
1409                         trie->charmap[ folder[ uvc ] ] = trie->charmap[ uvc ];
1410                     TRIE_STORE_REVCHAR;
1411                 }
1412                 if ( set_bit ) {
1413                     /* store the codepoint in the bitmap, and if its ascii
1414                        also store its folded equivelent. */
1415                     TRIE_BITMAP_SET(trie,uvc);
1416
1417                     /* store the folded codepoint */
1418                     if ( folder ) TRIE_BITMAP_SET(trie,folder[ uvc ]);
1419
1420                     if ( !UTF ) {
1421                         /* store first byte of utf8 representation of
1422                            codepoints in the 127 < uvc < 256 range */
1423                         if (127 < uvc && uvc < 192) {
1424                             TRIE_BITMAP_SET(trie,194);
1425                         } else if (191 < uvc ) {
1426                             TRIE_BITMAP_SET(trie,195);
1427                         /* && uvc < 256 -- we know uvc is < 256 already */
1428                         }
1429                     }
1430                     set_bit = 0; /* We've done our bit :-) */
1431                 }
1432             } else {
1433                 SV** svpp;
1434                 if ( !widecharmap )
1435                     widecharmap = newHV();
1436
1437                 svpp = hv_fetch( widecharmap, (char*)&uvc, sizeof( UV ), 1 );
1438
1439                 if ( !svpp )
1440                     Perl_croak( aTHX_ "error creating/fetching widecharmap entry for 0x%"UVXf, uvc );
1441
1442                 if ( !SvTRUE( *svpp ) ) {
1443                     sv_setiv( *svpp, ++trie->uniquecharcount );
1444                     TRIE_STORE_REVCHAR;
1445                 }
1446             }
1447         }
1448         if( cur == first ) {
1449             trie->minlen=chars;
1450             trie->maxlen=chars;
1451         } else if (chars < trie->minlen) {
1452             trie->minlen=chars;
1453         } else if (chars > trie->maxlen) {
1454             trie->maxlen=chars;
1455         }
1456
1457     } /* end first pass */
1458     DEBUG_TRIE_COMPILE_r(
1459         PerlIO_printf( Perl_debug_log, "%*sTRIE(%s): W:%d C:%d Uq:%d Min:%d Max:%d\n",
1460                 (int)depth * 2 + 2,"",
1461                 ( widecharmap ? "UTF8" : "NATIVE" ), (int)word_count,
1462                 (int)TRIE_CHARCOUNT(trie), trie->uniquecharcount,
1463                 (int)trie->minlen, (int)trie->maxlen )
1464     );
1465     trie->wordlen = (U32 *) PerlMemShared_calloc( word_count, sizeof(U32) );
1466
1467     /*
1468         We now know what we are dealing with in terms of unique chars and
1469         string sizes so we can calculate how much memory a naive
1470         representation using a flat table  will take. If it's over a reasonable
1471         limit (as specified by ${^RE_TRIE_MAXBUF}) we use a more memory
1472         conservative but potentially much slower representation using an array
1473         of lists.
1474
1475         At the end we convert both representations into the same compressed
1476         form that will be used in regexec.c for matching with. The latter
1477         is a form that cannot be used to construct with but has memory
1478         properties similar to the list form and access properties similar
1479         to the table form making it both suitable for fast searches and
1480         small enough that its feasable to store for the duration of a program.
1481
1482         See the comment in the code where the compressed table is produced
1483         inplace from the flat tabe representation for an explanation of how
1484         the compression works.
1485
1486     */
1487
1488
1489     if ( (IV)( ( TRIE_CHARCOUNT(trie) + 1 ) * trie->uniquecharcount + 1) > SvIV(re_trie_maxbuff) ) {
1490         /*
1491             Second Pass -- Array Of Lists Representation
1492
1493             Each state will be represented by a list of charid:state records
1494             (reg_trie_trans_le) the first such element holds the CUR and LEN
1495             points of the allocated array. (See defines above).
1496
1497             We build the initial structure using the lists, and then convert
1498             it into the compressed table form which allows faster lookups
1499             (but cant be modified once converted).
1500         */
1501
1502         STRLEN transcount = 1;
1503
1504         DEBUG_TRIE_COMPILE_MORE_r( PerlIO_printf( Perl_debug_log, 
1505             "%*sCompiling trie using list compiler\n",
1506             (int)depth * 2 + 2, ""));
1507         
1508         trie->states = (reg_trie_state *)
1509             PerlMemShared_calloc( TRIE_CHARCOUNT(trie) + 2,
1510                                   sizeof(reg_trie_state) );
1511         TRIE_LIST_NEW(1);
1512         next_alloc = 2;
1513
1514         for ( cur = first ; cur < last ; cur = regnext( cur ) ) {
1515
1516             regnode * const noper = NEXTOPER( cur );
1517             U8 *uc           = (U8*)STRING( noper );
1518             const U8 * const e = uc + STR_LEN( noper );
1519             U32 state        = 1;         /* required init */
1520             U16 charid       = 0;         /* sanity init */
1521             U8 *scan         = (U8*)NULL; /* sanity init */
1522             STRLEN foldlen   = 0;         /* required init */
1523             U32 wordlen      = 0;         /* required init */
1524             U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
1525
1526             if (OP(noper) != NOTHING) {
1527                 for ( ; uc < e ; uc += len ) {
1528
1529                     TRIE_READ_CHAR;
1530
1531                     if ( uvc < 256 ) {
1532                         charid = trie->charmap[ uvc ];
1533                     } else {
1534                         SV** const svpp = hv_fetch( widecharmap, (char*)&uvc, sizeof( UV ), 0);
1535                         if ( !svpp ) {
1536                             charid = 0;
1537                         } else {
1538                             charid=(U16)SvIV( *svpp );
1539                         }
1540                     }
1541                     /* charid is now 0 if we dont know the char read, or nonzero if we do */
1542                     if ( charid ) {
1543
1544                         U16 check;
1545                         U32 newstate = 0;
1546
1547                         charid--;
1548                         if ( !trie->states[ state ].trans.list ) {
1549                             TRIE_LIST_NEW( state );
1550                         }
1551                         for ( check = 1; check <= TRIE_LIST_USED( state ); check++ ) {
1552                             if ( TRIE_LIST_ITEM( state, check ).forid == charid ) {
1553                                 newstate = TRIE_LIST_ITEM( state, check ).newstate;
1554                                 break;
1555                             }
1556                         }
1557                         if ( ! newstate ) {
1558                             newstate = next_alloc++;
1559                             TRIE_LIST_PUSH( state, charid, newstate );
1560                             transcount++;
1561                         }
1562                         state = newstate;
1563                     } else {
1564                         Perl_croak( aTHX_ "panic! In trie construction, no char mapping for %"IVdf, uvc );
1565                     }
1566                 }
1567             }
1568             TRIE_HANDLE_WORD(state);
1569
1570         } /* end second pass */
1571
1572         /* next alloc is the NEXT state to be allocated */
1573         trie->statecount = next_alloc; 
1574         trie->states = (reg_trie_state *)
1575             PerlMemShared_realloc( trie->states,
1576                                    next_alloc
1577                                    * sizeof(reg_trie_state) );
1578
1579         /* and now dump it out before we compress it */
1580         DEBUG_TRIE_COMPILE_MORE_r(dump_trie_interim_list(trie, widecharmap,
1581                                                          revcharmap, next_alloc,
1582                                                          depth+1)
1583         );
1584
1585         trie->trans = (reg_trie_trans *)
1586             PerlMemShared_calloc( transcount, sizeof(reg_trie_trans) );
1587         {
1588             U32 state;
1589             U32 tp = 0;
1590             U32 zp = 0;
1591
1592
1593             for( state=1 ; state < next_alloc ; state ++ ) {
1594                 U32 base=0;
1595
1596                 /*
1597                 DEBUG_TRIE_COMPILE_MORE_r(
1598                     PerlIO_printf( Perl_debug_log, "tp: %d zp: %d ",tp,zp)
1599                 );
1600                 */
1601
1602                 if (trie->states[state].trans.list) {
1603                     U16 minid=TRIE_LIST_ITEM( state, 1).forid;
1604                     U16 maxid=minid;
1605                     U16 idx;
1606
1607                     for( idx = 2 ; idx <= TRIE_LIST_USED( state ) ; idx++ ) {
1608                         const U16 forid = TRIE_LIST_ITEM( state, idx).forid;
1609                         if ( forid < minid ) {
1610                             minid=forid;
1611                         } else if ( forid > maxid ) {
1612                             maxid=forid;
1613                         }
1614                     }
1615                     if ( transcount < tp + maxid - minid + 1) {
1616                         transcount *= 2;
1617                         trie->trans = (reg_trie_trans *)
1618                             PerlMemShared_realloc( trie->trans,
1619                                                      transcount
1620                                                      * sizeof(reg_trie_trans) );
1621                         Zero( trie->trans + (transcount / 2), transcount / 2 , reg_trie_trans );
1622                     }
1623                     base = trie->uniquecharcount + tp - minid;
1624                     if ( maxid == minid ) {
1625                         U32 set = 0;
1626                         for ( ; zp < tp ; zp++ ) {
1627                             if ( ! trie->trans[ zp ].next ) {
1628                                 base = trie->uniquecharcount + zp - minid;
1629                                 trie->trans[ zp ].next = TRIE_LIST_ITEM( state, 1).newstate;
1630                                 trie->trans[ zp ].check = state;
1631                                 set = 1;
1632                                 break;
1633                             }
1634                         }
1635                         if ( !set ) {
1636                             trie->trans[ tp ].next = TRIE_LIST_ITEM( state, 1).newstate;
1637                             trie->trans[ tp ].check = state;
1638                             tp++;
1639                             zp = tp;
1640                         }
1641                     } else {
1642                         for ( idx=1; idx <= TRIE_LIST_USED( state ) ; idx++ ) {
1643                             const U32 tid = base -  trie->uniquecharcount + TRIE_LIST_ITEM( state, idx ).forid;
1644                             trie->trans[ tid ].next = TRIE_LIST_ITEM( state, idx ).newstate;
1645                             trie->trans[ tid ].check = state;
1646                         }
1647                         tp += ( maxid - minid + 1 );
1648                     }
1649                     Safefree(trie->states[ state ].trans.list);
1650                 }
1651                 /*
1652                 DEBUG_TRIE_COMPILE_MORE_r(
1653                     PerlIO_printf( Perl_debug_log, " base: %d\n",base);
1654                 );
1655                 */
1656                 trie->states[ state ].trans.base=base;
1657             }
1658             trie->lasttrans = tp + 1;
1659         }
1660     } else {
1661         /*
1662            Second Pass -- Flat Table Representation.
1663
1664            we dont use the 0 slot of either trans[] or states[] so we add 1 to each.
1665            We know that we will need Charcount+1 trans at most to store the data
1666            (one row per char at worst case) So we preallocate both structures
1667            assuming worst case.
1668
1669            We then construct the trie using only the .next slots of the entry
1670            structs.
1671
1672            We use the .check field of the first entry of the node  temporarily to
1673            make compression both faster and easier by keeping track of how many non
1674            zero fields are in the node.
1675
1676            Since trans are numbered from 1 any 0 pointer in the table is a FAIL
1677            transition.
1678
1679            There are two terms at use here: state as a TRIE_NODEIDX() which is a
1680            number representing the first entry of the node, and state as a
1681            TRIE_NODENUM() which is the trans number. state 1 is TRIE_NODEIDX(1) and
1682            TRIE_NODENUM(1), state 2 is TRIE_NODEIDX(2) and TRIE_NODENUM(3) if there
1683            are 2 entrys per node. eg:
1684
1685              A B       A B
1686           1. 2 4    1. 3 7
1687           2. 0 3    3. 0 5
1688           3. 0 0    5. 0 0
1689           4. 0 0    7. 0 0
1690
1691            The table is internally in the right hand, idx form. However as we also
1692            have to deal with the states array which is indexed by nodenum we have to
1693            use TRIE_NODENUM() to convert.
1694
1695         */
1696         DEBUG_TRIE_COMPILE_MORE_r( PerlIO_printf( Perl_debug_log, 
1697             "%*sCompiling trie using table compiler\n",
1698             (int)depth * 2 + 2, ""));
1699
1700         trie->trans = (reg_trie_trans *)
1701             PerlMemShared_calloc( ( TRIE_CHARCOUNT(trie) + 1 )
1702                                   * trie->uniquecharcount + 1,
1703                                   sizeof(reg_trie_trans) );
1704         trie->states = (reg_trie_state *)
1705             PerlMemShared_calloc( TRIE_CHARCOUNT(trie) + 2,
1706                                   sizeof(reg_trie_state) );
1707         next_alloc = trie->uniquecharcount + 1;
1708
1709
1710         for ( cur = first ; cur < last ; cur = regnext( cur ) ) {
1711
1712             regnode * const noper   = NEXTOPER( cur );
1713             const U8 *uc     = (U8*)STRING( noper );
1714             const U8 * const e = uc + STR_LEN( noper );
1715
1716             U32 state        = 1;         /* required init */
1717
1718             U16 charid       = 0;         /* sanity init */
1719             U32 accept_state = 0;         /* sanity init */
1720             U8 *scan         = (U8*)NULL; /* sanity init */
1721
1722             STRLEN foldlen   = 0;         /* required init */
1723             U32 wordlen      = 0;         /* required init */
1724             U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
1725
1726             if ( OP(noper) != NOTHING ) {
1727                 for ( ; uc < e ; uc += len ) {
1728
1729                     TRIE_READ_CHAR;
1730
1731                     if ( uvc < 256 ) {
1732                         charid = trie->charmap[ uvc ];
1733                     } else {
1734                         SV* const * const svpp = hv_fetch( widecharmap, (char*)&uvc, sizeof( UV ), 0);
1735                         charid = svpp ? (U16)SvIV(*svpp) : 0;
1736                     }
1737                     if ( charid ) {
1738                         charid--;
1739                         if ( !trie->trans[ state + charid ].next ) {
1740                             trie->trans[ state + charid ].next = next_alloc;
1741                             trie->trans[ state ].check++;
1742                             next_alloc += trie->uniquecharcount;
1743                         }
1744                         state = trie->trans[ state + charid ].next;
1745                     } else {
1746                         Perl_croak( aTHX_ "panic! In trie construction, no char mapping for %"IVdf, uvc );
1747                     }
1748                     /* charid is now 0 if we dont know the char read, or nonzero if we do */
1749                 }
1750             }
1751             accept_state = TRIE_NODENUM( state );
1752             TRIE_HANDLE_WORD(accept_state);
1753
1754         } /* end second pass */
1755
1756         /* and now dump it out before we compress it */
1757         DEBUG_TRIE_COMPILE_MORE_r(dump_trie_interim_table(trie, widecharmap,
1758                                                           revcharmap,
1759                                                           next_alloc, depth+1));
1760
1761         {
1762         /*
1763            * Inplace compress the table.*
1764
1765            For sparse data sets the table constructed by the trie algorithm will
1766            be mostly 0/FAIL transitions or to put it another way mostly empty.
1767            (Note that leaf nodes will not contain any transitions.)
1768
1769            This algorithm compresses the tables by eliminating most such
1770            transitions, at the cost of a modest bit of extra work during lookup:
1771
1772            - Each states[] entry contains a .base field which indicates the
1773            index in the state[] array wheres its transition data is stored.
1774
1775            - If .base is 0 there are no  valid transitions from that node.
1776
1777            - If .base is nonzero then charid is added to it to find an entry in
1778            the trans array.
1779
1780            -If trans[states[state].base+charid].check!=state then the
1781            transition is taken to be a 0/Fail transition. Thus if there are fail
1782            transitions at the front of the node then the .base offset will point
1783            somewhere inside the previous nodes data (or maybe even into a node
1784            even earlier), but the .check field determines if the transition is
1785            valid.
1786
1787            XXX - wrong maybe?
1788            The following process inplace converts the table to the compressed
1789            table: We first do not compress the root node 1,and mark its all its
1790            .check pointers as 1 and set its .base pointer as 1 as well. This
1791            allows to do a DFA construction from the compressed table later, and
1792            ensures that any .base pointers we calculate later are greater than
1793            0.
1794
1795            - We set 'pos' to indicate the first entry of the second node.
1796
1797            - We then iterate over the columns of the node, finding the first and
1798            last used entry at l and m. We then copy l..m into pos..(pos+m-l),
1799            and set the .check pointers accordingly, and advance pos
1800            appropriately and repreat for the next node. Note that when we copy
1801            the next pointers we have to convert them from the original
1802            NODEIDX form to NODENUM form as the former is not valid post
1803            compression.
1804
1805            - If a node has no transitions used we mark its base as 0 and do not
1806            advance the pos pointer.
1807
1808            - If a node only has one transition we use a second pointer into the
1809            structure to fill in allocated fail transitions from other states.
1810            This pointer is independent of the main pointer and scans forward
1811            looking for null transitions that are allocated to a state. When it
1812            finds one it writes the single transition into the "hole".  If the
1813            pointer doesnt find one the single transition is appended as normal.
1814
1815            - Once compressed we can Renew/realloc the structures to release the
1816            excess space.
1817
1818            See "Table-Compression Methods" in sec 3.9 of the Red Dragon,
1819            specifically Fig 3.47 and the associated pseudocode.
1820
1821            demq
1822         */
1823         const U32 laststate = TRIE_NODENUM( next_alloc );
1824         U32 state, charid;
1825         U32 pos = 0, zp=0;
1826         trie->statecount = laststate;
1827
1828         for ( state = 1 ; state < laststate ; state++ ) {
1829             U8 flag = 0;
1830             const U32 stateidx = TRIE_NODEIDX( state );
1831             const U32 o_used = trie->trans[ stateidx ].check;
1832             U32 used = trie->trans[ stateidx ].check;
1833             trie->trans[ stateidx ].check = 0;
1834
1835             for ( charid = 0 ; used && charid < trie->uniquecharcount ; charid++ ) {
1836                 if ( flag || trie->trans[ stateidx + charid ].next ) {
1837                     if ( trie->trans[ stateidx + charid ].next ) {
1838                         if (o_used == 1) {
1839                             for ( ; zp < pos ; zp++ ) {
1840                                 if ( ! trie->trans[ zp ].next ) {
1841                                     break;
1842                                 }
1843                             }
1844                             trie->states[ state ].trans.base = zp + trie->uniquecharcount - charid ;
1845                             trie->trans[ zp ].next = SAFE_TRIE_NODENUM( trie->trans[ stateidx + charid ].next );
1846                             trie->trans[ zp ].check = state;
1847                             if ( ++zp > pos ) pos = zp;
1848                             break;
1849                         }
1850                         used--;
1851                     }
1852                     if ( !flag ) {
1853                         flag = 1;
1854                         trie->states[ state ].trans.base = pos + trie->uniquecharcount - charid ;
1855                     }
1856                     trie->trans[ pos ].next = SAFE_TRIE_NODENUM( trie->trans[ stateidx + charid ].next );
1857                     trie->trans[ pos ].check = state;
1858                     pos++;
1859                 }
1860             }
1861         }
1862         trie->lasttrans = pos + 1;
1863         trie->states = (reg_trie_state *)
1864             PerlMemShared_realloc( trie->states, laststate
1865                                    * sizeof(reg_trie_state) );
1866         DEBUG_TRIE_COMPILE_MORE_r(
1867                 PerlIO_printf( Perl_debug_log,
1868                     "%*sAlloc: %d Orig: %"IVdf" elements, Final:%"IVdf". Savings of %%%5.2f\n",
1869                     (int)depth * 2 + 2,"",
1870                     (int)( ( TRIE_CHARCOUNT(trie) + 1 ) * trie->uniquecharcount + 1 ),
1871                     (IV)next_alloc,
1872                     (IV)pos,
1873                     ( ( next_alloc - pos ) * 100 ) / (double)next_alloc );
1874             );
1875
1876         } /* end table compress */
1877     }
1878     DEBUG_TRIE_COMPILE_MORE_r(
1879             PerlIO_printf(Perl_debug_log, "%*sStatecount:%"UVxf" Lasttrans:%"UVxf"\n",
1880                 (int)depth * 2 + 2, "",
1881                 (UV)trie->statecount,
1882                 (UV)trie->lasttrans)
1883     );
1884     /* resize the trans array to remove unused space */
1885     trie->trans = (reg_trie_trans *)
1886         PerlMemShared_realloc( trie->trans, trie->lasttrans
1887                                * sizeof(reg_trie_trans) );
1888
1889     /* and now dump out the compressed format */
1890     DEBUG_TRIE_COMPILE_r(dump_trie(trie, widecharmap, revcharmap, depth+1));
1891
1892     {   /* Modify the program and insert the new TRIE node*/ 
1893         U8 nodetype =(U8)(flags & 0xFF);
1894         char *str=NULL;
1895         
1896 #ifdef DEBUGGING
1897         regnode *optimize = NULL;
1898 #ifdef RE_TRACK_PATTERN_OFFSETS
1899
1900         U32 mjd_offset = 0;
1901         U32 mjd_nodelen = 0;
1902 #endif /* RE_TRACK_PATTERN_OFFSETS */
1903 #endif /* DEBUGGING */
1904         /*
1905            This means we convert either the first branch or the first Exact,
1906            depending on whether the thing following (in 'last') is a branch
1907            or not and whther first is the startbranch (ie is it a sub part of
1908            the alternation or is it the whole thing.)
1909            Assuming its a sub part we conver the EXACT otherwise we convert
1910            the whole branch sequence, including the first.
1911          */
1912         /* Find the node we are going to overwrite */
1913         if ( first != startbranch || OP( last ) == BRANCH ) {
1914             /* branch sub-chain */
1915             NEXT_OFF( first ) = (U16)(last - first);
1916 #ifdef RE_TRACK_PATTERN_OFFSETS
1917             DEBUG_r({
1918                 mjd_offset= Node_Offset((convert));
1919                 mjd_nodelen= Node_Length((convert));
1920             });
1921 #endif
1922             /* whole branch chain */
1923         }
1924 #ifdef RE_TRACK_PATTERN_OFFSETS
1925         else {
1926             DEBUG_r({
1927                 const  regnode *nop = NEXTOPER( convert );
1928                 mjd_offset= Node_Offset((nop));
1929                 mjd_nodelen= Node_Length((nop));
1930             });
1931         }
1932         DEBUG_OPTIMISE_r(
1933             PerlIO_printf(Perl_debug_log, "%*sMJD offset:%"UVuf" MJD length:%"UVuf"\n",
1934                 (int)depth * 2 + 2, "",
1935                 (UV)mjd_offset, (UV)mjd_nodelen)
1936         );
1937 #endif
1938         /* But first we check to see if there is a common prefix we can 
1939            split out as an EXACT and put in front of the TRIE node.  */
1940         trie->startstate= 1;
1941         if ( trie->bitmap && !widecharmap && !trie->jump  ) {
1942             U32 state;
1943             for ( state = 1 ; state < trie->statecount-1 ; state++ ) {
1944                 U32 ofs = 0;
1945                 I32 idx = -1;
1946                 U32 count = 0;
1947                 const U32 base = trie->states[ state ].trans.base;
1948
1949                 if ( trie->states[state].wordnum )
1950                         count = 1;
1951
1952                 for ( ofs = 0 ; ofs < trie->uniquecharcount ; ofs++ ) {
1953                     if ( ( base + ofs >= trie->uniquecharcount ) &&
1954                          ( base + ofs - trie->uniquecharcount < trie->lasttrans ) &&
1955                          trie->trans[ base + ofs - trie->uniquecharcount ].check == state )
1956                     {
1957                         if ( ++count > 1 ) {
1958                             SV **tmp = av_fetch( revcharmap, ofs, 0);
1959                             const U8 *ch = (U8*)SvPV_nolen_const( *tmp );
1960                             if ( state == 1 ) break;
1961                             if ( count == 2 ) {
1962                                 Zero(trie->bitmap, ANYOF_BITMAP_SIZE, char);
1963                                 DEBUG_OPTIMISE_r(
1964                                     PerlIO_printf(Perl_debug_log,
1965                                         "%*sNew Start State=%"UVuf" Class: [",
1966                                         (int)depth * 2 + 2, "",
1967                                         (UV)state));
1968                                 if (idx >= 0) {
1969                                     SV ** const tmp = av_fetch( revcharmap, idx, 0);
1970                                     const U8 * const ch = (U8*)SvPV_nolen_const( *tmp );
1971
1972                                     TRIE_BITMAP_SET(trie,*ch);
1973                                     if ( folder )
1974                                         TRIE_BITMAP_SET(trie, folder[ *ch ]);
1975                                     DEBUG_OPTIMISE_r(
1976                                         PerlIO_printf(Perl_debug_log, (char*)ch)
1977                                     );
1978                                 }
1979                             }
1980                             TRIE_BITMAP_SET(trie,*ch);
1981                             if ( folder )
1982                                 TRIE_BITMAP_SET(trie,folder[ *ch ]);
1983                             DEBUG_OPTIMISE_r(PerlIO_printf( Perl_debug_log,"%s", ch));
1984                         }
1985                         idx = ofs;
1986                     }
1987                 }
1988                 if ( count == 1 ) {
1989                     SV **tmp = av_fetch( revcharmap, idx, 0);
1990                     STRLEN len;
1991                     char *ch = SvPV( *tmp, len );
1992                     DEBUG_OPTIMISE_r({
1993                         SV *sv=sv_newmortal();
1994                         PerlIO_printf( Perl_debug_log,
1995                             "%*sPrefix State: %"UVuf" Idx:%"UVuf" Char='%s'\n",
1996                             (int)depth * 2 + 2, "",
1997                             (UV)state, (UV)idx, 
1998                             pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), 6, 
1999                                 PL_colors[0], PL_colors[1],
2000                                 (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
2001                                 PERL_PV_ESCAPE_FIRSTCHAR 
2002                             )
2003                         );
2004                     });
2005                     if ( state==1 ) {
2006                         OP( convert ) = nodetype;
2007                         str=STRING(convert);
2008                         STR_LEN(convert)=0;
2009                     }
2010                     STR_LEN(convert) += len;
2011                     while (len--)
2012                         *str++ = *ch++;
2013                 } else {
2014 #ifdef DEBUGGING            
2015                     if (state>1)
2016                         DEBUG_OPTIMISE_r(PerlIO_printf( Perl_debug_log,"]\n"));
2017 #endif
2018                     break;
2019                 }
2020             }
2021             if (str) {
2022                 regnode *n = convert+NODE_SZ_STR(convert);
2023                 NEXT_OFF(convert) = NODE_SZ_STR(convert);
2024                 trie->startstate = state;
2025                 trie->minlen -= (state - 1);
2026                 trie->maxlen -= (state - 1);
2027                 DEBUG_r({
2028                     regnode *fix = convert;
2029                     U32 word = trie->wordcount;
2030                     mjd_nodelen++;
2031                     Set_Node_Offset_Length(convert, mjd_offset, state - 1);
2032                     while( ++fix < n ) {
2033                         Set_Node_Offset_Length(fix, 0, 0);
2034                     }
2035                     while (word--) {
2036                         SV ** const tmp = av_fetch( trie_words, word, 0 );
2037                         if (tmp) {
2038                             if ( STR_LEN(convert) <= SvCUR(*tmp) )
2039                                 sv_chop(*tmp, SvPV_nolen(*tmp) + STR_LEN(convert));
2040                             else
2041                                 sv_chop(*tmp, SvPV_nolen(*tmp) + SvCUR(*tmp));
2042                         }
2043                     }    
2044                 });
2045                 if (trie->maxlen) {
2046                     convert = n;
2047                 } else {
2048                     NEXT_OFF(convert) = (U16)(tail - convert);
2049                     DEBUG_r(optimize= n);
2050                 }
2051             }
2052         }
2053         if (!jumper) 
2054             jumper = last; 
2055         if ( trie->maxlen ) {
2056             NEXT_OFF( convert ) = (U16)(tail - convert);
2057             ARG_SET( convert, data_slot );
2058             /* Store the offset to the first unabsorbed branch in 
2059                jump[0], which is otherwise unused by the jump logic. 
2060                We use this when dumping a trie and during optimisation. */
2061             if (trie->jump) 
2062                 trie->jump[0] = (U16)(nextbranch - convert);
2063             
2064             /* XXXX */
2065             if ( !trie->states[trie->startstate].wordnum && trie->bitmap && 
2066                  ( (char *)jumper - (char *)convert) >= (int)sizeof(struct regnode_charclass) )
2067             {
2068                 OP( convert ) = TRIEC;
2069                 Copy(trie->bitmap, ((struct regnode_charclass *)convert)->bitmap, ANYOF_BITMAP_SIZE, char);
2070                 PerlMemShared_free(trie->bitmap);
2071                 trie->bitmap= NULL;
2072             } else 
2073                 OP( convert ) = TRIE;
2074
2075             /* store the type in the flags */
2076             convert->flags = nodetype;
2077             DEBUG_r({
2078             optimize = convert 
2079                       + NODE_STEP_REGNODE 
2080                       + regarglen[ OP( convert ) ];
2081             });
2082             /* XXX We really should free up the resource in trie now, 
2083                    as we won't use them - (which resources?) dmq */
2084         }
2085         /* needed for dumping*/
2086         DEBUG_r(if (optimize) {
2087             regnode *opt = convert;
2088
2089             while ( ++opt < optimize) {
2090                 Set_Node_Offset_Length(opt,0,0);
2091             }
2092             /* 
2093                 Try to clean up some of the debris left after the 
2094                 optimisation.
2095              */
2096             while( optimize < jumper ) {
2097                 mjd_nodelen += Node_Length((optimize));
2098                 OP( optimize ) = OPTIMIZED;
2099                 Set_Node_Offset_Length(optimize,0,0);
2100                 optimize++;
2101             }
2102             Set_Node_Offset_Length(convert,mjd_offset,mjd_nodelen);
2103         });
2104     } /* end node insert */
2105     RExC_rxi->data->data[ data_slot + 1 ] = (void*)widecharmap;
2106 #ifdef DEBUGGING
2107     RExC_rxi->data->data[ data_slot + TRIE_WORDS_OFFSET ] = (void*)trie_words;
2108     RExC_rxi->data->data[ data_slot + 3 ] = (void*)revcharmap;
2109 #else
2110     SvREFCNT_dec(revcharmap);
2111 #endif
2112     return trie->jump 
2113            ? MADE_JUMP_TRIE 
2114            : trie->startstate>1 
2115              ? MADE_EXACT_TRIE 
2116              : MADE_TRIE;
2117 }
2118
2119 STATIC void
2120 S_make_trie_failtable(pTHX_ RExC_state_t *pRExC_state, regnode *source,  regnode *stclass, U32 depth)
2121 {
2122 /* The Trie is constructed and compressed now so we can build a fail array now if its needed
2123
2124    This is basically the Aho-Corasick algorithm. Its from exercise 3.31 and 3.32 in the
2125    "Red Dragon" -- Compilers, principles, techniques, and tools. Aho, Sethi, Ullman 1985/88
2126    ISBN 0-201-10088-6
2127
2128    We find the fail state for each state in the trie, this state is the longest proper
2129    suffix of the current states 'word' that is also a proper prefix of another word in our
2130    trie. State 1 represents the word '' and is the thus the default fail state. This allows
2131    the DFA not to have to restart after its tried and failed a word at a given point, it
2132    simply continues as though it had been matching the other word in the first place.
2133    Consider
2134       'abcdgu'=~/abcdefg|cdgu/
2135    When we get to 'd' we are still matching the first word, we would encounter 'g' which would
2136    fail, which would bring use to the state representing 'd' in the second word where we would
2137    try 'g' and succeed, prodceding to match 'cdgu'.
2138  */
2139  /* add a fail transition */
2140     const U32 trie_offset = ARG(source);
2141     reg_trie_data *trie=(reg_trie_data *)RExC_rxi->data->data[trie_offset];
2142     U32 *q;
2143     const U32 ucharcount = trie->uniquecharcount;
2144     const U32 numstates = trie->statecount;
2145     const U32 ubound = trie->lasttrans + ucharcount;
2146     U32 q_read = 0;
2147     U32 q_write = 0;
2148     U32 charid;
2149     U32 base = trie->states[ 1 ].trans.base;
2150     U32 *fail;
2151     reg_ac_data *aho;
2152     const U32 data_slot = add_data( pRExC_state, 1, "T" );
2153     GET_RE_DEBUG_FLAGS_DECL;
2154 #ifndef DEBUGGING
2155     PERL_UNUSED_ARG(depth);
2156 #endif
2157
2158
2159     ARG_SET( stclass, data_slot );
2160     aho = (reg_ac_data *) PerlMemShared_calloc( 1, sizeof(reg_ac_data) );
2161     RExC_rxi->data->data[ data_slot ] = (void*)aho;
2162     aho->trie=trie_offset;
2163     aho->states=(reg_trie_state *)PerlMemShared_malloc( numstates * sizeof(reg_trie_state) );
2164     Copy( trie->states, aho->states, numstates, reg_trie_state );
2165     Newxz( q, numstates, U32);
2166     aho->fail = (U32 *) PerlMemShared_calloc( numstates, sizeof(U32) );
2167     aho->refcount = 1;
2168     fail = aho->fail;
2169     /* initialize fail[0..1] to be 1 so that we always have
2170        a valid final fail state */
2171     fail[ 0 ] = fail[ 1 ] = 1;
2172
2173     for ( charid = 0; charid < ucharcount ; charid++ ) {
2174         const U32 newstate = TRIE_TRANS_STATE( 1, base, ucharcount, charid, 0 );
2175         if ( newstate ) {
2176             q[ q_write ] = newstate;
2177             /* set to point at the root */
2178             fail[ q[ q_write++ ] ]=1;
2179         }
2180     }
2181     while ( q_read < q_write) {
2182         const U32 cur = q[ q_read++ % numstates ];
2183         base = trie->states[ cur ].trans.base;
2184
2185         for ( charid = 0 ; charid < ucharcount ; charid++ ) {
2186             const U32 ch_state = TRIE_TRANS_STATE( cur, base, ucharcount, charid, 1 );
2187             if (ch_state) {
2188                 U32 fail_state = cur;
2189                 U32 fail_base;
2190                 do {
2191                     fail_state = fail[ fail_state ];
2192                     fail_base = aho->states[ fail_state ].trans.base;
2193                 } while ( !TRIE_TRANS_STATE( fail_state, fail_base, ucharcount, charid, 1 ) );
2194
2195                 fail_state = TRIE_TRANS_STATE( fail_state, fail_base, ucharcount, charid, 1 );
2196                 fail[ ch_state ] = fail_state;
2197                 if ( !aho->states[ ch_state ].wordnum && aho->states[ fail_state ].wordnum )
2198                 {
2199                         aho->states[ ch_state ].wordnum =  aho->states[ fail_state ].wordnum;
2200                 }
2201                 q[ q_write++ % numstates] = ch_state;
2202             }
2203         }
2204     }
2205     /* restore fail[0..1] to 0 so that we "fall out" of the AC loop
2206        when we fail in state 1, this allows us to use the
2207        charclass scan to find a valid start char. This is based on the principle
2208        that theres a good chance the string being searched contains lots of stuff
2209        that cant be a start char.
2210      */
2211     fail[ 0 ] = fail[ 1 ] = 0;
2212     DEBUG_TRIE_COMPILE_r({
2213         PerlIO_printf(Perl_debug_log,
2214                       "%*sStclass Failtable (%"UVuf" states): 0", 
2215                       (int)(depth * 2), "", (UV)numstates
2216         );
2217         for( q_read=1; q_read<numstates; q_read++ ) {
2218             PerlIO_printf(Perl_debug_log, ", %"UVuf, (UV)fail[q_read]);
2219         }
2220         PerlIO_printf(Perl_debug_log, "\n");
2221     });
2222     Safefree(q);
2223     /*RExC_seen |= REG_SEEN_TRIEDFA;*/
2224 }
2225
2226
2227 /*
2228  * There are strange code-generation bugs caused on sparc64 by gcc-2.95.2.
2229  * These need to be revisited when a newer toolchain becomes available.
2230  */
2231 #if defined(__sparc64__) && defined(__GNUC__)
2232 #   if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 96)
2233 #       undef  SPARC64_GCC_WORKAROUND
2234 #       define SPARC64_GCC_WORKAROUND 1
2235 #   endif
2236 #endif
2237
2238 #define DEBUG_PEEP(str,scan,depth) \
2239     DEBUG_OPTIMISE_r({if (scan){ \
2240        SV * const mysv=sv_newmortal(); \
2241        regnode *Next = regnext(scan); \
2242        regprop(RExC_rx, mysv, scan); \
2243        PerlIO_printf(Perl_debug_log, "%*s" str ">%3d: %s (%d)\n", \
2244        (int)depth*2, "", REG_NODE_NUM(scan), SvPV_nolen_const(mysv),\
2245        Next ? (REG_NODE_NUM(Next)) : 0 ); \
2246    }});
2247
2248
2249
2250
2251
2252 #define JOIN_EXACT(scan,min,flags) \
2253     if (PL_regkind[OP(scan)] == EXACT) \
2254         join_exact(pRExC_state,(scan),(min),(flags),NULL,depth+1)
2255
2256 STATIC U32
2257 S_join_exact(pTHX_ RExC_state_t *pRExC_state, regnode *scan, I32 *min, U32 flags,regnode *val, U32 depth) {
2258     /* Merge several consecutive EXACTish nodes into one. */
2259     regnode *n = regnext(scan);
2260     U32 stringok = 1;
2261     regnode *next = scan + NODE_SZ_STR(scan);
2262     U32 merged = 0;
2263     U32 stopnow = 0;
2264 #ifdef DEBUGGING
2265     regnode *stop = scan;
2266     GET_RE_DEBUG_FLAGS_DECL;
2267 #else
2268     PERL_UNUSED_ARG(depth);
2269 #endif
2270 #ifndef EXPERIMENTAL_INPLACESCAN
2271     PERL_UNUSED_ARG(flags);
2272     PERL_UNUSED_ARG(val);
2273 #endif
2274     DEBUG_PEEP("join",scan,depth);
2275     
2276     /* Skip NOTHING, merge EXACT*. */
2277     while (n &&
2278            ( PL_regkind[OP(n)] == NOTHING ||
2279              (stringok && (OP(n) == OP(scan))))
2280            && NEXT_OFF(n)
2281            && NEXT_OFF(scan) + NEXT_OFF(n) < I16_MAX) {
2282         
2283         if (OP(n) == TAIL || n > next)
2284             stringok = 0;
2285         if (PL_regkind[OP(n)] == NOTHING) {
2286             DEBUG_PEEP("skip:",n,depth);
2287             NEXT_OFF(scan) += NEXT_OFF(n);
2288             next = n + NODE_STEP_REGNODE;
2289 #ifdef DEBUGGING
2290             if (stringok)
2291                 stop = n;
2292 #endif
2293             n = regnext(n);
2294         }
2295         else if (stringok) {
2296             const unsigned int oldl = STR_LEN(scan);
2297             regnode * const nnext = regnext(n);
2298             
2299             DEBUG_PEEP("merg",n,depth);
2300             
2301             merged++;
2302             if (oldl + STR_LEN(n) > U8_MAX)
2303                 break;
2304             NEXT_OFF(scan) += NEXT_OFF(n);
2305             STR_LEN(scan) += STR_LEN(n);
2306             next = n + NODE_SZ_STR(n);
2307             /* Now we can overwrite *n : */
2308             Move(STRING(n), STRING(scan) + oldl, STR_LEN(n), char);
2309 #ifdef DEBUGGING
2310             stop = next - 1;
2311 #endif
2312             n = nnext;
2313             if (stopnow) break;
2314         }
2315
2316 #ifdef EXPERIMENTAL_INPLACESCAN
2317         if (flags && !NEXT_OFF(n)) {
2318             DEBUG_PEEP("atch", val, depth);
2319             if (reg_off_by_arg[OP(n)]) {
2320                 ARG_SET(n, val - n);
2321             }
2322             else {
2323                 NEXT_OFF(n) = val - n;
2324             }
2325             stopnow = 1;
2326         }
2327 #endif
2328     }
2329     
2330     if (UTF && ( OP(scan) == EXACTF ) && ( STR_LEN(scan) >= 6 ) ) {
2331     /*
2332     Two problematic code points in Unicode casefolding of EXACT nodes:
2333     
2334     U+0390 - GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS
2335     U+03B0 - GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS
2336     
2337     which casefold to
2338     
2339     Unicode                      UTF-8
2340     
2341     U+03B9 U+0308 U+0301         0xCE 0xB9 0xCC 0x88 0xCC 0x81
2342     U+03C5 U+0308 U+0301         0xCF 0x85 0xCC 0x88 0xCC 0x81
2343     
2344     This means that in case-insensitive matching (or "loose matching",
2345     as Unicode calls it), an EXACTF of length six (the UTF-8 encoded byte
2346     length of the above casefolded versions) can match a target string
2347     of length two (the byte length of UTF-8 encoded U+0390 or U+03B0).
2348     This would rather mess up the minimum length computation.
2349     
2350     What we'll do is to look for the tail four bytes, and then peek
2351     at the preceding two bytes to see whether we need to decrease
2352     the minimum length by four (six minus two).
2353     
2354     Thanks to the design of UTF-8, there cannot be false matches:
2355     A sequence of valid UTF-8 bytes cannot be a subsequence of
2356     another valid sequence of UTF-8 bytes.
2357     
2358     */
2359          char * const s0 = STRING(scan), *s, *t;
2360          char * const s1 = s0 + STR_LEN(scan) - 1;
2361          char * const s2 = s1 - 4;
2362 #ifdef EBCDIC /* RD tunifold greek 0390 and 03B0 */
2363          const char t0[] = "\xaf\x49\xaf\x42";
2364 #else
2365          const char t0[] = "\xcc\x88\xcc\x81";
2366 #endif
2367          const char * const t1 = t0 + 3;
2368     
2369          for (s = s0 + 2;
2370               s < s2 && (t = ninstr(s, s1, t0, t1));
2371               s = t + 4) {
2372 #ifdef EBCDIC
2373               if (((U8)t[-1] == 0x68 && (U8)t[-2] == 0xB4) ||
2374                   ((U8)t[-1] == 0x46 && (U8)t[-2] == 0xB5))
2375 #else
2376               if (((U8)t[-1] == 0xB9 && (U8)t[-2] == 0xCE) ||
2377                   ((U8)t[-1] == 0x85 && (U8)t[-2] == 0xCF))
2378 #endif
2379                    *min -= 4;
2380          }
2381     }
2382     
2383 #ifdef DEBUGGING
2384     /* Allow dumping */
2385     n = scan + NODE_SZ_STR(scan);
2386     while (n <= stop) {
2387         if (PL_regkind[OP(n)] != NOTHING || OP(n) == NOTHING) {
2388             OP(n) = OPTIMIZED;
2389             NEXT_OFF(n) = 0;
2390         }
2391         n++;
2392     }
2393 #endif
2394     DEBUG_OPTIMISE_r(if (merged){DEBUG_PEEP("finl",scan,depth)});
2395     return stopnow;
2396 }
2397
2398 /* REx optimizer.  Converts nodes into quickier variants "in place".
2399    Finds fixed substrings.  */
2400
2401 /* Stops at toplevel WHILEM as well as at "last". At end *scanp is set
2402    to the position after last scanned or to NULL. */
2403
2404 #define INIT_AND_WITHP \
2405     assert(!and_withp); \
2406     Newx(and_withp,1,struct regnode_charclass_class); \
2407     SAVEFREEPV(and_withp)
2408
2409 /* this is a chain of data about sub patterns we are processing that
2410    need to be handled seperately/specially in study_chunk. Its so
2411    we can simulate recursion without losing state.  */
2412 struct scan_frame;
2413 typedef struct scan_frame {
2414     regnode *last;  /* last node to process in this frame */
2415     regnode *next;  /* next node to process when last is reached */
2416     struct scan_frame *prev; /*previous frame*/
2417     I32 stop; /* what stopparen do we use */
2418 } scan_frame;
2419
2420
2421 #define SCAN_COMMIT(s, data, m) scan_commit(s, data, m, is_inf)
2422
2423 #define CASE_SYNST_FNC(nAmE)                                       \
2424 case nAmE:                                                         \
2425     if (flags & SCF_DO_STCLASS_AND) {                              \
2426             for (value = 0; value < 256; value++)                  \
2427                 if (!is_ ## nAmE ## _cp(value))                       \
2428                     ANYOF_BITMAP_CLEAR(data->start_class, value);  \
2429     }                                                              \
2430     else {                                                         \
2431             for (value = 0; value < 256; value++)                  \
2432                 if (is_ ## nAmE ## _cp(value))                        \
2433                     ANYOF_BITMAP_SET(data->start_class, value);    \
2434     }                                                              \
2435     break;                                                         \
2436 case N ## nAmE:                                                    \
2437     if (flags & SCF_DO_STCLASS_AND) {                              \
2438             for (value = 0; value < 256; value++)                   \
2439                 if (is_ ## nAmE ## _cp(value))                         \
2440                     ANYOF_BITMAP_CLEAR(data->start_class, value);   \
2441     }                                                               \
2442     else {                                                          \
2443             for (value = 0; value < 256; value++)                   \
2444                 if (!is_ ## nAmE ## _cp(value))                        \
2445                     ANYOF_BITMAP_SET(data->start_class, value);     \
2446     }                                                               \
2447     break
2448
2449
2450
2451 STATIC I32
2452 S_study_chunk(pTHX_ RExC_state_t *pRExC_state, regnode **scanp,
2453                         I32 *minlenp, I32 *deltap,
2454                         regnode *last,
2455                         scan_data_t *data,
2456                         I32 stopparen,
2457                         U8* recursed,
2458                         struct regnode_charclass_class *and_withp,
2459                         U32 flags, U32 depth)
2460                         /* scanp: Start here (read-write). */
2461                         /* deltap: Write maxlen-minlen here. */
2462                         /* last: Stop before this one. */
2463                         /* data: string data about the pattern */
2464                         /* stopparen: treat close N as END */
2465                         /* recursed: which subroutines have we recursed into */
2466                         /* and_withp: Valid if flags & SCF_DO_STCLASS_OR */
2467 {
2468     dVAR;
2469     I32 min = 0, pars = 0, code;
2470     regnode *scan = *scanp, *next;
2471     I32 delta = 0;
2472     int is_inf = (flags & SCF_DO_SUBSTR) && (data->flags & SF_IS_INF);
2473     int is_inf_internal = 0;            /* The studied chunk is infinite */
2474     I32 is_par = OP(scan) == OPEN ? ARG(scan) : 0;
2475     scan_data_t data_fake;
2476     SV *re_trie_maxbuff = NULL;
2477     regnode *first_non_open = scan;
2478     I32 stopmin = I32_MAX;
2479     scan_frame *frame = NULL;
2480
2481     GET_RE_DEBUG_FLAGS_DECL;
2482
2483 #ifdef DEBUGGING
2484     StructCopy(&zero_scan_data, &data_fake, scan_data_t);
2485 #endif
2486
2487     if ( depth == 0 ) {
2488         while (first_non_open && OP(first_non_open) == OPEN)
2489             first_non_open=regnext(first_non_open);
2490     }
2491
2492
2493   fake_study_recurse:
2494     while ( scan && OP(scan) != END && scan < last ){
2495         /* Peephole optimizer: */
2496         DEBUG_STUDYDATA("Peep:", data,depth);
2497         DEBUG_PEEP("Peep",scan,depth);
2498         JOIN_EXACT(scan,&min,0);
2499
2500         /* Follow the next-chain of the current node and optimize
2501            away all the NOTHINGs from it.  */
2502         if (OP(scan) != CURLYX) {
2503             const int max = (reg_off_by_arg[OP(scan)]
2504                        ? I32_MAX
2505                        /* I32 may be smaller than U16 on CRAYs! */
2506                        : (I32_MAX < U16_MAX ? I32_MAX : U16_MAX));
2507             int off = (reg_off_by_arg[OP(scan)] ? ARG(scan) : NEXT_OFF(scan));
2508             int noff;
2509             regnode *n = scan;
2510         
2511             /* Skip NOTHING and LONGJMP. */
2512             while ((n = regnext(n))
2513                    && ((PL_regkind[OP(n)] == NOTHING && (noff = NEXT_OFF(n)))
2514                        || ((OP(n) == LONGJMP) && (noff = ARG(n))))
2515                    && off + noff < max)
2516                 off += noff;
2517             if (reg_off_by_arg[OP(scan)])
2518                 ARG(scan) = off;
2519             else
2520                 NEXT_OFF(scan) = off;
2521         }
2522
2523
2524
2525         /* The principal pseudo-switch.  Cannot be a switch, since we
2526            look into several different things.  */
2527         if (OP(scan) == BRANCH || OP(scan) == BRANCHJ
2528                    || OP(scan) == IFTHEN) {
2529             next = regnext(scan);
2530             code = OP(scan);
2531             /* demq: the op(next)==code check is to see if we have "branch-branch" AFAICT */
2532         
2533             if (OP(next) == code || code == IFTHEN) {
2534                 /* NOTE - There is similar code to this block below for handling
2535                    TRIE nodes on a re-study.  If you change stuff here check there
2536                    too. */
2537                 I32 max1 = 0, min1 = I32_MAX, num = 0;
2538                 struct regnode_charclass_class accum;
2539                 regnode * const startbranch=scan;
2540                 
2541                 if (flags & SCF_DO_SUBSTR)
2542                     SCAN_COMMIT(pRExC_state, data, minlenp); /* Cannot merge strings after this. */
2543                 if (flags & SCF_DO_STCLASS)
2544                     cl_init_zero(pRExC_state, &accum);
2545
2546                 while (OP(scan) == code) {
2547                     I32 deltanext, minnext, f = 0, fake;
2548                     struct regnode_charclass_class this_class;
2549
2550                     num++;
2551                     data_fake.flags = 0;
2552                     if (data) {
2553                         data_fake.whilem_c = data->whilem_c;
2554                         data_fake.last_closep = data->last_closep;
2555                     }
2556                     else
2557                         data_fake.last_closep = &fake;
2558
2559                     data_fake.pos_delta = delta;
2560                     next = regnext(scan);
2561                     scan = NEXTOPER(scan);
2562                     if (code != BRANCH)
2563                         scan = NEXTOPER(scan);
2564                     if (flags & SCF_DO_STCLASS) {
2565                         cl_init(pRExC_state, &this_class);
2566                         data_fake.start_class = &this_class;
2567                         f = SCF_DO_STCLASS_AND;
2568                     }
2569                     if (flags & SCF_WHILEM_VISITED_POS)
2570                         f |= SCF_WHILEM_VISITED_POS;
2571
2572                     /* we suppose the run is continuous, last=next...*/
2573                     minnext = study_chunk(pRExC_state, &scan, minlenp, &deltanext,
2574                                           next, &data_fake,
2575                                           stopparen, recursed, NULL, f,depth+1);
2576                     if (min1 > minnext)
2577                         min1 = minnext;
2578                     if (max1 < minnext + deltanext)
2579                         max1 = minnext + deltanext;
2580                     if (deltanext == I32_MAX)
2581                         is_inf = is_inf_internal = 1;
2582                     scan = next;
2583                     if (data_fake.flags & (SF_HAS_PAR|SF_IN_PAR))
2584                         pars++;
2585                     if (data_fake.flags & SCF_SEEN_ACCEPT) {
2586                         if ( stopmin > minnext) 
2587                             stopmin = min + min1;
2588                         flags &= ~SCF_DO_SUBSTR;
2589                         if (data)
2590                             data->flags |= SCF_SEEN_ACCEPT;
2591                     }
2592                     if (data) {
2593                         if (data_fake.flags & SF_HAS_EVAL)
2594                             data->flags |= SF_HAS_EVAL;
2595                         data->whilem_c = data_fake.whilem_c;
2596                     }
2597                     if (flags & SCF_DO_STCLASS)
2598                         cl_or(pRExC_state, &accum, &this_class);
2599                 }
2600                 if (code == IFTHEN && num < 2) /* Empty ELSE branch */
2601                     min1 = 0;
2602                 if (flags & SCF_DO_SUBSTR) {
2603                     data->pos_min += min1;
2604                     data->pos_delta += max1 - min1;
2605                     if (max1 != min1 || is_inf)
2606                         data->longest = &(data->longest_float);
2607                 }
2608                 min += min1;
2609                 delta += max1 - min1;
2610                 if (flags & SCF_DO_STCLASS_OR) {
2611                     cl_or(pRExC_state, data->start_class, &accum);
2612                     if (min1) {
2613                         cl_and(data->start_class, and_withp);
2614                         flags &= ~SCF_DO_STCLASS;
2615                     }
2616                 }
2617                 else if (flags & SCF_DO_STCLASS_AND) {
2618                     if (min1) {
2619                         cl_and(data->start_class, &accum);
2620                         flags &= ~SCF_DO_STCLASS;
2621                     }
2622                     else {
2623                         /* Switch to OR mode: cache the old value of
2624                          * data->start_class */
2625                         INIT_AND_WITHP;
2626                         StructCopy(data->start_class, and_withp,
2627                                    struct regnode_charclass_class);
2628                         flags &= ~SCF_DO_STCLASS_AND;
2629                         StructCopy(&accum, data->start_class,
2630                                    struct regnode_charclass_class);
2631                         flags |= SCF_DO_STCLASS_OR;
2632                         data->start_class->flags |= ANYOF_EOS;
2633                     }
2634                 }
2635
2636                 if (PERL_ENABLE_TRIE_OPTIMISATION && OP( startbranch ) == BRANCH ) {
2637                 /* demq.
2638
2639                    Assuming this was/is a branch we are dealing with: 'scan' now
2640                    points at the item that follows the branch sequence, whatever
2641                    it is. We now start at the beginning of the sequence and look
2642                    for subsequences of
2643
2644                    BRANCH->EXACT=>x1
2645                    BRANCH->EXACT=>x2
2646                    tail
2647
2648                    which would be constructed from a pattern like /A|LIST|OF|WORDS/
2649
2650                    If we can find such a subseqence we need to turn the first
2651                    element into a trie and then add the subsequent branch exact
2652                    strings to the trie.
2653
2654                    We have two cases
2655
2656                      1. patterns where the whole set of branch can be converted. 
2657
2658                      2. patterns where only a subset can be converted.
2659
2660                    In case 1 we can replace the whole set with a single regop
2661                    for the trie. In case 2 we need to keep the start and end
2662                    branchs so
2663
2664                      'BRANCH EXACT; BRANCH EXACT; BRANCH X'
2665                      becomes BRANCH TRIE; BRANCH X;
2666
2667                   There is an additional case, that being where there is a 
2668                   common prefix, which gets split out into an EXACT like node
2669                   preceding the TRIE node.
2670
2671                   If x(1..n)==tail then we can do a simple trie, if not we make
2672                   a "jump" trie, such that when we match the appropriate word
2673                   we "jump" to the appopriate tail node. Essentailly we turn
2674                   a nested if into a case structure of sorts.
2675
2676                 */
2677                 
2678                     int made=0;
2679                     if (!re_trie_maxbuff) {
2680                         re_trie_maxbuff = get_sv(RE_TRIE_MAXBUF_NAME, 1);
2681                         if (!SvIOK(re_trie_maxbuff))
2682                             sv_setiv(re_trie_maxbuff, RE_TRIE_MAXBUF_INIT);
2683                     }
2684                     if ( SvIV(re_trie_maxbuff)>=0  ) {
2685                         regnode *cur;
2686                         regnode *first = (regnode *)NULL;
2687                         regnode *last = (regnode *)NULL;
2688                         regnode *tail = scan;
2689                         U8 optype = 0;
2690                         U32 count=0;
2691
2692 #ifdef DEBUGGING
2693                         SV * const mysv = sv_newmortal();       /* for dumping */
2694 #endif
2695                         /* var tail is used because there may be a TAIL
2696                            regop in the way. Ie, the exacts will point to the
2697                            thing following the TAIL, but the last branch will
2698                            point at the TAIL. So we advance tail. If we
2699                            have nested (?:) we may have to move through several
2700                            tails.
2701                          */
2702
2703                         while ( OP( tail ) == TAIL ) {
2704                             /* this is the TAIL generated by (?:) */
2705                             tail = regnext( tail );
2706                         }
2707
2708                         
2709                         DEBUG_OPTIMISE_r({
2710                             regprop(RExC_rx, mysv, tail );
2711                             PerlIO_printf( Perl_debug_log, "%*s%s%s\n",
2712                                 (int)depth * 2 + 2, "", 
2713                                 "Looking for TRIE'able sequences. Tail node is: ", 
2714                                 SvPV_nolen_const( mysv )
2715                             );
2716                         });
2717                         
2718                         /*
2719
2720                            step through the branches, cur represents each
2721                            branch, noper is the first thing to be matched
2722                            as part of that branch and noper_next is the
2723                            regnext() of that node. if noper is an EXACT
2724                            and noper_next is the same as scan (our current
2725                            position in the regex) then the EXACT branch is
2726                            a possible optimization target. Once we have
2727                            two or more consequetive such branches we can
2728                            create a trie of the EXACT's contents and stich
2729                            it in place. If the sequence represents all of
2730                            the branches we eliminate the whole thing and
2731                            replace it with a single TRIE. If it is a
2732                            subsequence then we need to stitch it in. This
2733                            means the first branch has to remain, and needs
2734                            to be repointed at the item on the branch chain
2735                            following the last branch optimized. This could
2736                            be either a BRANCH, in which case the
2737                            subsequence is internal, or it could be the
2738                            item following the branch sequence in which
2739                            case the subsequence is at the end.
2740
2741                         */
2742
2743                         /* dont use tail as the end marker for this traverse */
2744                         for ( cur = startbranch ; cur != scan ; cur = regnext( cur ) ) {
2745                             regnode * const noper = NEXTOPER( cur );
2746 #if defined(DEBUGGING) || defined(NOJUMPTRIE)
2747                             regnode * const noper_next = regnext( noper );
2748 #endif
2749
2750                             DEBUG_OPTIMISE_r({
2751                                 regprop(RExC_rx, mysv, cur);
2752                                 PerlIO_printf( Perl_debug_log, "%*s- %s (%d)",
2753                                    (int)depth * 2 + 2,"", SvPV_nolen_const( mysv ), REG_NODE_NUM(cur) );
2754
2755                                 regprop(RExC_rx, mysv, noper);
2756                                 PerlIO_printf( Perl_debug_log, " -> %s",
2757                                     SvPV_nolen_const(mysv));
2758
2759                                 if ( noper_next ) {
2760                                   regprop(RExC_rx, mysv, noper_next );
2761                                   PerlIO_printf( Perl_debug_log,"\t=> %s\t",
2762                                     SvPV_nolen_const(mysv));
2763                                 }
2764                                 PerlIO_printf( Perl_debug_log, "(First==%d,Last==%d,Cur==%d)\n",
2765                                    REG_NODE_NUM(first), REG_NODE_NUM(last), REG_NODE_NUM(cur) );
2766                             });
2767                             if ( (((first && optype!=NOTHING) ? OP( noper ) == optype
2768                                          : PL_regkind[ OP( noper ) ] == EXACT )
2769                                   || OP(noper) == NOTHING )
2770 #ifdef NOJUMPTRIE
2771                                   && noper_next == tail
2772 #endif
2773                                   && count < U16_MAX)
2774                             {
2775                                 count++;
2776                                 if ( !first || optype == NOTHING ) {
2777                                     if (!first) first = cur;
2778                                     optype = OP( noper );
2779                                 } else {
2780                                     last = cur;
2781                                 }
2782                             } else {
2783                                 if ( last ) {
2784                                     make_trie( pRExC_state, 
2785                                             startbranch, first, cur, tail, count, 
2786                                             optype, depth+1 );
2787                                 }
2788                                 if ( PL_regkind[ OP( noper ) ] == EXACT
2789 #ifdef NOJUMPTRIE
2790                                      && noper_next == tail
2791 #endif
2792                                 ){
2793                                     count = 1;
2794                                     first = cur;
2795                                     optype = OP( noper );
2796                                 } else {
2797                                     count = 0;
2798                                     first = NULL;
2799                                     optype = 0;
2800                                 }
2801                                 last = NULL;
2802                             }
2803                         }
2804                         DEBUG_OPTIMISE_r({
2805                             regprop(RExC_rx, mysv, cur);
2806                             PerlIO_printf( Perl_debug_log,
2807                               "%*s- %s (%d) <SCAN FINISHED>\n", (int)depth * 2 + 2,
2808                               "", SvPV_nolen_const( mysv ),REG_NODE_NUM(cur));
2809
2810                         });
2811                         if ( last ) {
2812                             made= make_trie( pRExC_state, startbranch, first, scan, tail, count, optype, depth+1 );
2813 #ifdef TRIE_STUDY_OPT   
2814                             if ( ((made == MADE_EXACT_TRIE && 
2815                                  startbranch == first) 
2816                                  || ( first_non_open == first )) && 
2817                                  depth==0 ) {
2818                                 flags |= SCF_TRIE_RESTUDY;
2819                                 if ( startbranch == first 
2820                                      && scan == tail ) 
2821                                 {
2822                                     RExC_seen &=~REG_TOP_LEVEL_BRANCHES;
2823                                 }
2824                             }
2825 #endif
2826                         }
2827                     }
2828                     
2829                 } /* do trie */
2830                 
2831             }
2832             else if ( code == BRANCHJ ) {  /* single branch is optimized. */
2833                 scan = NEXTOPER(NEXTOPER(scan));
2834             } else                      /* single branch is optimized. */
2835                 scan = NEXTOPER(scan);
2836             continue;
2837         } else if (OP(scan) == SUSPEND || OP(scan) == GOSUB || OP(scan) == GOSTART) {
2838             scan_frame *newframe = NULL;
2839             I32 paren;
2840             regnode *start;
2841             regnode *end;
2842
2843             if (OP(scan) != SUSPEND) {
2844             /* set the pointer */
2845                 if (OP(scan) == GOSUB) {
2846                     paren = ARG(scan);
2847                     RExC_recurse[ARG2L(scan)] = scan;
2848                     start = RExC_open_parens[paren-1];
2849                     end   = RExC_close_parens[paren-1];
2850                 } else {
2851                     paren = 0;
2852                     start = RExC_rxi->program + 1;
2853                     end   = RExC_opend;
2854                 }
2855                 if (!recursed) {
2856                     Newxz(recursed, (((RExC_npar)>>3) +1), U8);
2857                     SAVEFREEPV(recursed);
2858                 }
2859                 if (!PAREN_TEST(recursed,paren+1)) {
2860                     PAREN_SET(recursed,paren+1);
2861                     Newx(newframe,1,scan_frame);
2862                 } else {
2863                     if (flags & SCF_DO_SUBSTR) {
2864                         SCAN_COMMIT(pRExC_state,data,minlenp);
2865                         data->longest = &(data->longest_float);
2866                     }
2867                     is_inf = is_inf_internal = 1;
2868                     if (flags & SCF_DO_STCLASS_OR) /* Allow everything */
2869                         cl_anything(pRExC_state, data->start_class);
2870                     flags &= ~SCF_DO_STCLASS;
2871                 }
2872             } else {
2873                 Newx(newframe,1,scan_frame);
2874                 paren = stopparen;
2875                 start = scan+2;
2876                 end = regnext(scan);
2877             }
2878             if (newframe) {
2879                 assert(start);
2880                 assert(end);
2881                 SAVEFREEPV(newframe);
2882                 newframe->next = regnext(scan);
2883                 newframe->last = last;
2884                 newframe->stop = stopparen;
2885                 newframe->prev = frame;
2886
2887                 frame = newframe;
2888                 scan =  start;
2889                 stopparen = paren;
2890                 last = end;
2891
2892                 continue;
2893             }
2894         }
2895         else if (OP(scan) == EXACT) {
2896             I32 l = STR_LEN(scan);
2897             UV uc;
2898             if (UTF) {
2899                 const U8 * const s = (U8*)STRING(scan);
2900                 l = utf8_length(s, s + l);
2901                 uc = utf8_to_uvchr(s, NULL);
2902             } else {
2903                 uc = *((U8*)STRING(scan));
2904             }
2905             min += l;
2906             if (flags & SCF_DO_SUBSTR) { /* Update longest substr. */
2907                 /* The code below prefers earlier match for fixed
2908                    offset, later match for variable offset.  */
2909                 if (data->last_end == -1) { /* Update the start info. */
2910                     data->last_start_min = data->pos_min;
2911                     data->last_start_max = is_inf
2912                         ? I32_MAX : data->pos_min + data->pos_delta;
2913                 }
2914                 sv_catpvn(data->last_found, STRING(scan), STR_LEN(scan));
2915                 if (UTF)
2916                     SvUTF8_on(data->last_found);
2917                 {
2918                     SV * const sv = data->last_found;
2919                     MAGIC * const mg = SvUTF8(sv) && SvMAGICAL(sv) ?
2920                         mg_find(sv, PERL_MAGIC_utf8) : NULL;
2921                     if (mg && mg->mg_len >= 0)
2922                         mg->mg_len += utf8_length((U8*)STRING(scan),
2923                                                   (U8*)STRING(scan)+STR_LEN(scan));
2924                 }
2925                 data->last_end = data->pos_min + l;
2926                 data->pos_min += l; /* As in the first entry. */
2927                 data->flags &= ~SF_BEFORE_EOL;
2928             }
2929             if (flags & SCF_DO_STCLASS_AND) {
2930                 /* Check whether it is compatible with what we know already! */
2931                 int compat = 1;
2932
2933                 if (uc >= 0x100 ||
2934                     (!(data->start_class->flags & (ANYOF_CLASS | ANYOF_LOCALE))
2935                     && !ANYOF_BITMAP_TEST(data->start_class, uc)
2936                     && (!(data->start_class->flags & ANYOF_FOLD)
2937                         || !ANYOF_BITMAP_TEST(data->start_class, PL_fold[uc])))
2938                     )
2939                     compat = 0;
2940                 ANYOF_CLASS_ZERO(data->start_class);
2941                 ANYOF_BITMAP_ZERO(data->start_class);
2942                 if (compat)
2943                     ANYOF_BITMAP_SET(data->start_class, uc);
2944                 data->start_class->flags &= ~ANYOF_EOS;
2945                 if (uc < 0x100)
2946                   data->start_class->flags &= ~ANYOF_UNICODE_ALL;
2947             }
2948             else if (flags & SCF_DO_STCLASS_OR) {
2949                 /* false positive possible if the class is case-folded */
2950                 if (uc < 0x100)
2951                     ANYOF_BITMAP_SET(data->start_class, uc);
2952                 else
2953                     data->start_class->flags |= ANYOF_UNICODE_ALL;
2954                 data->start_class->flags &= ~ANYOF_EOS;
2955                 cl_and(data->start_class, and_withp);
2956             }
2957             flags &= ~SCF_DO_STCLASS;
2958         }
2959         else if (PL_regkind[OP(scan)] == EXACT) { /* But OP != EXACT! */
2960             I32 l = STR_LEN(scan);
2961             UV uc = *((U8*)STRING(scan));
2962
2963             /* Search for fixed substrings supports EXACT only. */
2964             if (flags & SCF_DO_SUBSTR) {
2965                 assert(data);
2966                 SCAN_COMMIT(pRExC_state, data, minlenp);
2967             }
2968             if (UTF) {
2969                 const U8 * const s = (U8 *)STRING(scan);
2970                 l = utf8_length(s, s + l);
2971                 uc = utf8_to_uvchr(s, NULL);
2972             }
2973             min += l;
2974             if (flags & SCF_DO_SUBSTR)
2975                 data->pos_min += l;
2976             if (flags & SCF_DO_STCLASS_AND) {
2977                 /* Check whether it is compatible with what we know already! */
2978                 int compat = 1;
2979
2980                 if (uc >= 0x100 ||
2981                     (!(data->start_class->flags & (ANYOF_CLASS | ANYOF_LOCALE))
2982                     && !ANYOF_BITMAP_TEST(data->start_class, uc)
2983                      && !ANYOF_BITMAP_TEST(data->start_class, PL_fold[uc])))
2984                     compat = 0;
2985                 ANYOF_CLASS_ZERO(data->start_class);
2986                 ANYOF_BITMAP_ZERO(data->start_class);
2987                 if (compat) {
2988                     ANYOF_BITMAP_SET(data->start_class, uc);
2989                     data->start_class->flags &= ~ANYOF_EOS;
2990                     data->start_class->flags |= ANYOF_FOLD;
2991                     if (OP(scan) == EXACTFL)
2992                         data->start_class->flags |= ANYOF_LOCALE;
2993                 }
2994             }
2995             else if (flags & SCF_DO_STCLASS_OR) {
2996                 if (data->start_class->flags & ANYOF_FOLD) {
2997                     /* false positive possible if the class is case-folded.
2998                        Assume that the locale settings are the same... */
2999                     if (uc < 0x100)
3000                         ANYOF_BITMAP_SET(data->start_class, uc);
3001                     data->start_class->flags &= ~ANYOF_EOS;
3002                 }
3003                 cl_and(data->start_class, and_withp);
3004             }
3005             flags &= ~SCF_DO_STCLASS;
3006         }
3007         else if (strchr((const char*)PL_varies,OP(scan))) {
3008             I32 mincount, maxcount, minnext, deltanext, fl = 0;
3009             I32 f = flags, pos_before = 0;
3010             regnode * const oscan = scan;
3011             struct regnode_charclass_class this_class;
3012             struct regnode_charclass_class *oclass = NULL;
3013             I32 next_is_eval = 0;
3014
3015             switch (PL_regkind[OP(scan)]) {
3016             case WHILEM:                /* End of (?:...)* . */
3017                 scan = NEXTOPER(scan);
3018                 goto finish;
3019             case PLUS:
3020                 if (flags & (SCF_DO_SUBSTR | SCF_DO_STCLASS)) {
3021                     next = NEXTOPER(scan);
3022                     if (OP(next) == EXACT || (flags & SCF_DO_STCLASS)) {
3023                         mincount = 1;
3024                         maxcount = REG_INFTY;
3025                         next = regnext(scan);
3026                         scan = NEXTOPER(scan);
3027                         goto do_curly;
3028                     }
3029                 }
3030                 if (flags & SCF_DO_SUBSTR)
3031                     data->pos_min++;
3032                 min++;
3033                 /* Fall through. */
3034             case STAR:
3035                 if (flags & SCF_DO_STCLASS) {
3036                     mincount = 0;
3037                     maxcount = REG_INFTY;
3038                     next = regnext(scan);
3039                     scan = NEXTOPER(scan);
3040                     goto do_curly;
3041                 }
3042                 is_inf = is_inf_internal = 1;
3043                 scan = regnext(scan);
3044                 if (flags & SCF_DO_SUBSTR) {
3045                     SCAN_COMMIT(pRExC_state, data, minlenp); /* Cannot extend fixed substrings */
3046                     data->longest = &(data->longest_float);
3047                 }
3048                 goto optimize_curly_tail;
3049             case CURLY:
3050                 if (stopparen>0 && (OP(scan)==CURLYN || OP(scan)==CURLYM)
3051                     && (scan->flags == stopparen))
3052                 {
3053                     mincount = 1;
3054                     maxcount = 1;
3055                 } else {
3056                     mincount = ARG1(scan);
3057                     maxcount = ARG2(scan);
3058                 }
3059                 next = regnext(scan);
3060                 if (OP(scan) == CURLYX) {
3061                     I32 lp = (data ? *(data->last_closep) : 0);
3062                     scan->flags = ((lp <= (I32)U8_MAX) ? (U8)lp : U8_MAX);
3063                 }
3064                 scan = NEXTOPER(scan) + EXTRA_STEP_2ARGS;
3065                 next_is_eval = (OP(scan) == EVAL);
3066               do_curly:
3067                 if (flags & SCF_DO_SUBSTR) {
3068                     if (mincount == 0) SCAN_COMMIT(pRExC_state,data,minlenp); /* Cannot extend fixed substrings */
3069                     pos_before = data->pos_min;
3070                 }
3071                 if (data) {
3072                     fl = data->flags;
3073                     data->flags &= ~(SF_HAS_PAR|SF_IN_PAR|SF_HAS_EVAL);
3074                     if (is_inf)
3075                         data->flags |= SF_IS_INF;
3076                 }
3077                 if (flags & SCF_DO_STCLASS) {
3078                     cl_init(pRExC_state, &this_class);
3079                     oclass = data->start_class;
3080                     data->start_class = &this_class;
3081                     f |= SCF_DO_STCLASS_AND;
3082                     f &= ~SCF_DO_STCLASS_OR;
3083                 }
3084                 /* These are the cases when once a subexpression
3085                    fails at a particular position, it cannot succeed
3086                    even after backtracking at the enclosing scope.
3087                 
3088                    XXXX what if minimal match and we are at the
3089                         initial run of {n,m}? */
3090                 if ((mincount != maxcount - 1) && (maxcount != REG_INFTY))
3091                     f &= ~SCF_WHILEM_VISITED_POS;
3092
3093                 /* This will finish on WHILEM, setting scan, or on NULL: */
3094                 minnext = study_chunk(pRExC_state, &scan, minlenp, &deltanext, 
3095                                       last, data, stopparen, recursed, NULL,
3096                                       (mincount == 0
3097                                         ? (f & ~SCF_DO_SUBSTR) : f),depth+1);
3098
3099                 if (flags & SCF_DO_STCLASS)
3100                     data->start_class = oclass;
3101                 if (mincount == 0 || minnext == 0) {
3102                     if (flags & SCF_DO_STCLASS_OR) {
3103                         cl_or(pRExC_state, data->start_class, &this_class);
3104                     }
3105                     else if (flags & SCF_DO_STCLASS_AND) {
3106                         /* Switch to OR mode: cache the old value of
3107                          * data->start_class */
3108                         INIT_AND_WITHP;
3109                         StructCopy(data->start_class, and_withp,
3110                                    struct regnode_charclass_class);
3111                         flags &= ~SCF_DO_STCLASS_AND;
3112                         StructCopy(&this_class, data->start_class,
3113                                    struct regnode_charclass_class);
3114                         flags |= SCF_DO_STCLASS_OR;
3115                         data->start_class->flags |= ANYOF_EOS;
3116                     }
3117                 } else {                /* Non-zero len */
3118                     if (flags & SCF_DO_STCLASS_OR) {
3119                         cl_or(pRExC_state, data->start_class, &this_class);
3120                         cl_and(data->start_class, and_withp);
3121                     }
3122                     else if (flags & SCF_DO_STCLASS_AND)
3123                         cl_and(data->start_class, &this_class);
3124                     flags &= ~SCF_DO_STCLASS;
3125                 }
3126                 if (!scan)              /* It was not CURLYX, but CURLY. */
3127                     scan = next;
3128                 if ( /* ? quantifier ok, except for (?{ ... }) */
3129                     (next_is_eval || !(mincount == 0 && maxcount == 1))
3130                     && (minnext == 0) && (deltanext == 0)
3131                     && data && !(data->flags & (SF_HAS_PAR|SF_IN_PAR))
3132                     && maxcount <= REG_INFTY/3 /* Complement check for big count */
3133                     && ckWARN(WARN_REGEXP))
3134                 {
3135                     vWARN(RExC_parse,
3136                           "Quantifier unexpected on zero-length expression");
3137                 }
3138
3139                 min += minnext * mincount;
3140                 is_inf_internal |= ((maxcount == REG_INFTY
3141                                      && (minnext + deltanext) > 0)
3142                                     || deltanext == I32_MAX);
3143                 is_inf |= is_inf_internal;
3144                 delta += (minnext + deltanext) * maxcount - minnext * mincount;
3145
3146                 /* Try powerful optimization CURLYX => CURLYN. */
3147                 if (  OP(oscan) == CURLYX && data
3148                       && data->flags & SF_IN_PAR
3149                       && !(data->flags & SF_HAS_EVAL)
3150                       && !deltanext && minnext == 1 ) {
3151                     /* Try to optimize to CURLYN.  */
3152                     regnode *nxt = NEXTOPER(oscan) + EXTRA_STEP_2ARGS;
3153                     regnode * const nxt1 = nxt;
3154 #ifdef DEBUGGING
3155                     regnode *nxt2;
3156 #endif
3157
3158                     /* Skip open. */
3159                     nxt = regnext(nxt);
3160                     if (!strchr((const char*)PL_simple,OP(nxt))
3161                         && !(PL_regkind[OP(nxt)] == EXACT
3162                              && STR_LEN(nxt) == 1))
3163                         goto nogo;
3164 #ifdef DEBUGGING
3165                     nxt2 = nxt;
3166 #endif
3167                     nxt = regnext(nxt);
3168                     if (OP(nxt) != CLOSE)
3169                         goto nogo;
3170                     if (RExC_open_parens) {
3171                         RExC_open_parens[ARG(nxt1)-1]=oscan; /*open->CURLYM*/
3172                         RExC_close_parens[ARG(nxt1)-1]=nxt+2; /*close->while*/
3173                     }
3174                     /* Now we know that nxt2 is the only contents: */
3175                     oscan->flags = (U8)ARG(nxt);
3176                     OP(oscan) = CURLYN;
3177                     OP(nxt1) = NOTHING; /* was OPEN. */
3178
3179 #ifdef DEBUGGING
3180                     OP(nxt1 + 1) = OPTIMIZED; /* was count. */
3181                     NEXT_OFF(nxt1+ 1) = 0; /* just for consistancy. */
3182                     NEXT_OFF(nxt2) = 0; /* just for consistancy with CURLY. */
3183                     OP(nxt) = OPTIMIZED;        /* was CLOSE. */
3184                     OP(nxt + 1) = OPTIMIZED; /* was count. */
3185                     NEXT_OFF(nxt+ 1) = 0; /* just for consistancy. */
3186 #endif
3187                 }
3188               nogo:
3189
3190                 /* Try optimization CURLYX => CURLYM. */
3191                 if (  OP(oscan) == CURLYX && data
3192                       && !(data->flags & SF_HAS_PAR)
3193                       && !(data->flags & SF_HAS_EVAL)
3194                       && !deltanext     /* atom is fixed width */
3195                       && minnext != 0   /* CURLYM can't handle zero width */
3196                 ) {
3197                     /* XXXX How to optimize if data == 0? */
3198                     /* Optimize to a simpler form.  */
3199                     regnode *nxt = NEXTOPER(oscan) + EXTRA_STEP_2ARGS; /* OPEN */
3200                     regnode *nxt2;
3201
3202                     OP(oscan) = CURLYM;
3203                     while ( (nxt2 = regnext(nxt)) /* skip over embedded stuff*/
3204                             && (OP(nxt2) != WHILEM))
3205                         nxt = nxt2;
3206                     OP(nxt2)  = SUCCEED; /* Whas WHILEM */
3207                     /* Need to optimize away parenths. */
3208                     if (data->flags & SF_IN_PAR) {
3209                         /* Set the parenth number.  */
3210                         regnode *nxt1 = NEXTOPER(oscan) + EXTRA_STEP_2ARGS; /* OPEN*/
3211
3212                         if (OP(nxt) != CLOSE)
3213                             FAIL("Panic opt close");
3214                         oscan->flags = (U8)ARG(nxt);
3215                         if (RExC_open_parens) {
3216                             RExC_open_parens[ARG(nxt1)-1]=oscan; /*open->CURLYM*/
3217                             RExC_close_parens[ARG(nxt1)-1]=nxt2+1; /*close->NOTHING*/
3218                         }
3219                         OP(nxt1) = OPTIMIZED;   /* was OPEN. */
3220                         OP(nxt) = OPTIMIZED;    /* was CLOSE. */
3221
3222 #ifdef DEBUGGING
3223                         OP(nxt1 + 1) = OPTIMIZED; /* was count. */
3224                         OP(nxt + 1) = OPTIMIZED; /* was count. */
3225                         NEXT_OFF(nxt1 + 1) = 0; /* just for consistancy. */
3226                         NEXT_OFF(nxt + 1) = 0; /* just for consistancy. */
3227 #endif
3228 #if 0
3229                         while ( nxt1 && (OP(nxt1) != WHILEM)) {
3230                             regnode *nnxt = regnext(nxt1);
3231                         
3232                             if (nnxt == nxt) {
3233                                 if (reg_off_by_arg[OP(nxt1)])
3234                                     ARG_SET(nxt1, nxt2 - nxt1);
3235                                 else if (nxt2 - nxt1 < U16_MAX)
3236                                     NEXT_OFF(nxt1) = nxt2 - nxt1;
3237                                 else
3238                                     OP(nxt) = NOTHING;  /* Cannot beautify */
3239                             }
3240                             nxt1 = nnxt;
3241                         }
3242 #endif
3243                         /* Optimize again: */
3244                         study_chunk(pRExC_state, &nxt1, minlenp, &deltanext, nxt,
3245                                     NULL, stopparen, recursed, NULL, 0,depth+1);
3246                     }
3247                     else
3248                         oscan->flags = 0;
3249                 }
3250                 else if ((OP(oscan) == CURLYX)
3251                          && (flags & SCF_WHILEM_VISITED_POS)
3252                          /* See the comment on a similar expression above.
3253                             However, this time it not a subexpression
3254                             we care about, but the expression itself. */
3255                          && (maxcount == REG_INFTY)
3256                          && data && ++data->whilem_c < 16) {
3257                     /* This stays as CURLYX, we can put the count/of pair. */
3258                     /* Find WHILEM (as in regexec.c) */
3259                     regnode *nxt = oscan + NEXT_OFF(oscan);
3260
3261                     if (OP(PREVOPER(nxt)) == NOTHING) /* LONGJMP */
3262                         nxt += ARG(nxt);
3263                     PREVOPER(nxt)->flags = (U8)(data->whilem_c
3264                         | (RExC_whilem_seen << 4)); /* On WHILEM */
3265                 }
3266                 if (data && fl & (SF_HAS_PAR|SF_IN_PAR))
3267                     pars++;
3268                 if (flags & SCF_DO_SUBSTR) {
3269                     SV *last_str = NULL;
3270                     int counted = mincount != 0;
3271
3272                     if (data->last_end > 0 && mincount != 0) { /* Ends with a string. */
3273 #if defined(SPARC64_GCC_WORKAROUND)
3274                         I32 b = 0;
3275                         STRLEN l = 0;
3276                         const char *s = NULL;
3277                         I32 old = 0;
3278
3279                         if (pos_before >= data->last_start_min)
3280                             b = pos_before;
3281                         else
3282                             b = data->last_start_min;
3283
3284                         l = 0;
3285                         s = SvPV_const(data->last_found, l);
3286                         old = b - data->last_start_min;
3287
3288 #else
3289                         I32 b = pos_before >= data->last_start_min
3290                             ? pos_before : data->last_start_min;
3291                         STRLEN l;
3292                         const char * const s = SvPV_const(data->last_found, l);
3293                         I32 old = b - data->last_start_min;
3294 #endif
3295
3296                         if (UTF)
3297                             old = utf8_hop((U8*)s, old) - (U8*)s;
3298                         
3299                         l -= old;
3300                         /* Get the added string: */
3301                         last_str = newSVpvn(s  + old, l);
3302                         if (UTF)
3303                             SvUTF8_on(last_str);
3304                         if (deltanext == 0 && pos_before == b) {
3305                             /* What was added is a constant string */
3306                             if (mincount > 1) {
3307                                 SvGROW(last_str, (mincount * l) + 1);
3308                                 repeatcpy(SvPVX(last_str) + l,
3309                                           SvPVX_const(last_str), l, mincount - 1);
3310                                 SvCUR_set(last_str, SvCUR(last_str) * mincount);
3311                                 /* Add additional parts. */
3312                                 SvCUR_set(data->last_found,
3313                                           SvCUR(data->last_found) - l);
3314                                 sv_catsv(data->last_found, last_str);
3315                                 {
3316                                     SV * sv = data->last_found;
3317                                     MAGIC *mg =
3318                                         SvUTF8(sv) && SvMAGICAL(sv) ?
3319                                         mg_find(sv, PERL_MAGIC_utf8) : NULL;
3320                                     if (mg && mg->mg_len >= 0)
3321                                         mg->mg_len += CHR_SVLEN(last_str) - l;
3322                                 }
3323                                 data->last_end += l * (mincount - 1);
3324                             }
3325                         } else {
3326                             /* start offset must point into the last copy */
3327                             data->last_start_min += minnext * (mincount - 1);
3328                             data->last_start_max += is_inf ? I32_MAX
3329                                 : (maxcount - 1) * (minnext + data->pos_delta);
3330                         }
3331                     }
3332                     /* It is counted once already... */
3333                     data->pos_min += minnext * (mincount - counted);
3334                     data->pos_delta += - counted * deltanext +
3335                         (minnext + deltanext) * maxcount - minnext * mincount;
3336                     if (mincount != maxcount) {
3337                          /* Cannot extend fixed substrings found inside
3338                             the group.  */
3339                         SCAN_COMMIT(pRExC_state,data,minlenp);
3340                         if (mincount && last_str) {
3341                             SV * const sv = data->last_found;
3342                             MAGIC * const mg = SvUTF8(sv) && SvMAGICAL(sv) ?
3343                                 mg_find(sv, PERL_MAGIC_utf8) : NULL;
3344
3345                             if (mg)
3346                                 mg->mg_len = -1;
3347                             sv_setsv(sv, last_str);
3348                             data->last_end = data->pos_min;
3349                             data->last_start_min =
3350                                 data->pos_min - CHR_SVLEN(last_str);
3351                             data->last_start_max = is_inf
3352                                 ? I32_MAX
3353                                 : data->pos_min + data->pos_delta
3354                                 - CHR_SVLEN(last_str);
3355                         }
3356                         data->longest = &(data->longest_float);
3357                     }
3358                     SvREFCNT_dec(last_str);
3359                 }
3360                 if (data && (fl & SF_HAS_EVAL))
3361                     data->flags |= SF_HAS_EVAL;
3362               optimize_curly_tail:
3363                 if (OP(oscan) != CURLYX) {
3364                     while (PL_regkind[OP(next = regnext(oscan))] == NOTHING
3365                            && NEXT_OFF(next))
3366                         NEXT_OFF(oscan) += NEXT_OFF(next);
3367                 }
3368                 continue;
3369             default:                    /* REF and CLUMP only? */
3370                 if (flags & SCF_DO_SUBSTR) {
3371                     SCAN_COMMIT(pRExC_state,data,minlenp);      /* Cannot expect anything... */
3372                     data->longest = &(data->longest_float);
3373                 }
3374                 is_inf = is_inf_internal = 1;
3375                 if (flags & SCF_DO_STCLASS_OR)
3376                     cl_anything(pRExC_state, data->start_class);
3377                 flags &= ~SCF_DO_STCLASS;
3378                 break;
3379             }
3380         }
3381         else if (OP(scan) == LNBREAK) {
3382             if (flags & SCF_DO_STCLASS) {
3383                 int value = 0;
3384                 data->start_class->flags &= ~ANYOF_EOS; /* No match on empty */
3385                 if (flags & SCF_DO_STCLASS_AND) {
3386                     for (value = 0; value < 256; value++)
3387                         if (!is_VERTWS_cp(value))
3388                             ANYOF_BITMAP_CLEAR(data->start_class, value);  
3389                 }                                                              
3390                 else {                                                         
3391                     for (value = 0; value < 256; value++)
3392                         if (is_VERTWS_cp(value))
3393                             ANYOF_BITMAP_SET(data->start_class, value);    
3394                 }                                                              
3395                 if (flags & SCF_DO_STCLASS_OR)
3396                     cl_and(data->start_class, and_withp);
3397                 flags &= ~SCF_DO_STCLASS;
3398             }
3399             min += 1;
3400             delta += 1;
3401             if (flags & SCF_DO_SUBSTR) {
3402                 SCAN_COMMIT(pRExC_state,data,minlenp);  /* Cannot expect anything... */
3403                 data->pos_min += 1;
3404                 data->pos_delta += 1;
3405                 data->longest = &(data->longest_float);
3406             }
3407             
3408         }
3409         else if (OP(scan) == FOLDCHAR) {
3410             int d = ARG(scan)==0xDF ? 1 : 2;
3411             flags &= ~SCF_DO_STCLASS;
3412             min += 1;
3413             delta += d;
3414             if (flags & SCF_DO_SUBSTR) {
3415                 SCAN_COMMIT(pRExC_state,data,minlenp);  /* Cannot expect anything... */
3416                 data->pos_min += 1;
3417                 data->pos_delta += d;
3418                 data->longest = &(data->longest_float);
3419             }
3420         }
3421         else if (strchr((const char*)PL_simple,OP(scan))) {
3422             int value = 0;
3423
3424             if (flags & SCF_DO_SUBSTR) {
3425                 SCAN_COMMIT(pRExC_state,data,minlenp);
3426                 data->pos_min++;
3427             }
3428             min++;
3429             if (flags & SCF_DO_STCLASS) {
3430                 data->start_class->flags &= ~ANYOF_EOS; /* No match on empty */
3431
3432                 /* Some of the logic below assumes that switching
3433                    locale on will only add false positives. */
3434                 switch (PL_regkind[OP(scan)]) {
3435                 case SANY:
3436                 default:
3437                   do_default:
3438                     /* Perl_croak(aTHX_ "panic: unexpected simple REx opcode %d", OP(scan)); */
3439                     if (flags & SCF_DO_STCLASS_OR) /* Allow everything */
3440                         cl_anything(pRExC_state, data->start_class);
3441                     break;
3442                 case REG_ANY:
3443                     if (OP(scan) == SANY)
3444                         goto do_default;
3445                     if (flags & SCF_DO_STCLASS_OR) { /* Everything but \n */
3446                         value = (ANYOF_BITMAP_TEST(data->start_class,'\n')
3447                                  || (data->start_class->flags & ANYOF_CLASS));
3448                         cl_anything(pRExC_state, data->start_class);
3449                     }
3450                     if (flags & SCF_DO_STCLASS_AND || !value)
3451                         ANYOF_BITMAP_CLEAR(data->start_class,'\n');
3452                     break;
3453                 case ANYOF:
3454                     if (flags & SCF_DO_STCLASS_AND)
3455                         cl_and(data->start_class,
3456                                (struct regnode_charclass_class*)scan);
3457                     else
3458                         cl_or(pRExC_state, data->start_class,
3459                               (struct regnode_charclass_class*)scan);
3460                     break;
3461                 case ALNUM:
3462                     if (flags & SCF_DO_STCLASS_AND) {
3463                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
3464                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_NALNUM);
3465                             for (value = 0; value < 256; value++)
3466                                 if (!isALNUM(value))
3467                                     ANYOF_BITMAP_CLEAR(data->start_class, value);
3468                         }
3469                     }
3470                     else {
3471                         if (data->start_class->flags & ANYOF_LOCALE)
3472                             ANYOF_CLASS_SET(data->start_class,ANYOF_ALNUM);
3473                         else {
3474                             for (value = 0; value < 256; value++)
3475                                 if (isALNUM(value))
3476                                     ANYOF_BITMAP_SET(data->start_class, value);                 
3477                         }
3478                     }
3479                     break;
3480                 case ALNUML:
3481                     if (flags & SCF_DO_STCLASS_AND) {
3482                         if (data->start_class->flags & ANYOF_LOCALE)
3483                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_NALNUM);
3484                     }
3485                     else {
3486                         ANYOF_CLASS_SET(data->start_class,ANYOF_ALNUM);
3487                         data->start_class->flags |= ANYOF_LOCALE;
3488                     }
3489                     break;
3490                 case NALNUM:
3491                     if (flags & SCF_DO_STCLASS_AND) {
3492                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
3493                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_ALNUM);
3494                             for (value = 0; value < 256; value++)
3495                                 if (isALNUM(value))
3496                                     ANYOF_BITMAP_CLEAR(data->start_class, value);
3497                         }
3498                     }
3499                     else {
3500                         if (data->start_class->flags & ANYOF_LOCALE)
3501                             ANYOF_CLASS_SET(data->start_class,ANYOF_NALNUM);
3502                         else {
3503                             for (value = 0; value < 256; value++)
3504                                 if (!isALNUM(value))
3505                                     ANYOF_BITMAP_SET(data->start_class, value);                 
3506                         }
3507                     }
3508                     break;
3509                 case NALNUML:
3510                     if (flags & SCF_DO_STCLASS_AND) {
3511                         if (data->start_class->flags & ANYOF_LOCALE)
3512                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_ALNUM);
3513                     }
3514                     else {
3515                         data->start_class->flags |= ANYOF_LOCALE;
3516                         ANYOF_CLASS_SET(data->start_class,ANYOF_NALNUM);
3517                     }
3518                     break;
3519                 case SPACE:
3520                     if (flags & SCF_DO_STCLASS_AND) {
3521                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
3522                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_NSPACE);
3523                             for (value = 0; value < 256; value++)
3524                                 if (!isSPACE(value))
3525                                     ANYOF_BITMAP_CLEAR(data->start_class, value);
3526                         }
3527                     }
3528                     else {
3529                         if (data->start_class->flags & ANYOF_LOCALE)
3530                             ANYOF_CLASS_SET(data->start_class,ANYOF_SPACE);
3531                         else {
3532                             for (value = 0; value < 256; value++)
3533                                 if (isSPACE(value))
3534                                     ANYOF_BITMAP_SET(data->start_class, value);                 
3535                         }
3536                     }
3537                     break;
3538                 case SPACEL:
3539                     if (flags & SCF_DO_STCLASS_AND) {
3540                         if (data->start_class->flags & ANYOF_LOCALE)
3541                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_NSPACE);
3542                     }
3543                     else {
3544                         data->start_class->flags |= ANYOF_LOCALE;
3545                         ANYOF_CLASS_SET(data->start_class,ANYOF_SPACE);
3546                     }
3547                     break;
3548                 case NSPACE:
3549                     if (flags & SCF_DO_STCLASS_AND) {
3550                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
3551                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_SPACE);
3552                             for (value = 0; value < 256; value++)
3553                                 if (isSPACE(value))
3554                                     ANYOF_BITMAP_CLEAR(data->start_class, value);
3555                         }
3556                     }
3557                     else {
3558                         if (data->start_class->flags & ANYOF_LOCALE)
3559                             ANYOF_CLASS_SET(data->start_class,ANYOF_NSPACE);
3560                         else {
3561                             for (value = 0; value < 256; value++)
3562                                 if (!isSPACE(value))
3563                                     ANYOF_BITMAP_SET(data->start_class, value);                 
3564                         }
3565                     }
3566                     break;
3567                 case NSPACEL:
3568                     if (flags & SCF_DO_STCLASS_AND) {
3569                         if (data->start_class->flags & ANYOF_LOCALE) {
3570                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_SPACE);
3571                             for (value = 0; value < 256; value++)
3572                                 if (!isSPACE(value))
3573                                     ANYOF_BITMAP_CLEAR(data->start_class, value);
3574                         }
3575                     }
3576                     else {
3577                         data->start_class->flags |= ANYOF_LOCALE;
3578                         ANYOF_CLASS_SET(data->start_class,ANYOF_NSPACE);
3579                     }
3580                     break;
3581                 case DIGIT:
3582                     if (flags & SCF_DO_STCLASS_AND) {
3583                         ANYOF_CLASS_CLEAR(data->start_class,ANYOF_NDIGIT);
3584                         for (value = 0; value < 256; value++)
3585                             if (!isDIGIT(value))
3586                                 ANYOF_BITMAP_CLEAR(data->start_class, value);
3587                     }
3588                     else {
3589                         if (data->start_class->flags & ANYOF_LOCALE)
3590                             ANYOF_CLASS_SET(data->start_class,ANYOF_DIGIT);
3591                         else {
3592                             for (value = 0; value < 256; value++)
3593                                 if (isDIGIT(value))
3594                                     ANYOF_BITMAP_SET(data->start_class, value);                 
3595                         }
3596                     }
3597                     break;
3598                 case NDIGIT:
3599                     if (flags & SCF_DO_STCLASS_AND) {
3600                         ANYOF_CLASS_CLEAR(data->start_class,ANYOF_DIGIT);
3601                         for (value = 0; value < 256; value++)
3602                             if (isDIGIT(value))
3603                                 ANYOF_BITMAP_CLEAR(data->start_class, value);
3604                     }
3605                     else {
3606                         if (data->start_class->flags & ANYOF_LOCALE)
3607                             ANYOF_CLASS_SET(data->start_class,ANYOF_NDIGIT);
3608                         else {
3609                             for (value = 0; value < 256; value++)
3610                                 if (!isDIGIT(value))
3611                                     ANYOF_BITMAP_SET(data->start_class, value);                 
3612                         }
3613                     }
3614                     break;
3615                 CASE_SYNST_FNC(VERTWS);
3616                 CASE_SYNST_FNC(HORIZWS);
3617                 
3618                 }
3619                 if (flags & SCF_DO_STCLASS_OR)
3620                     cl_and(data->start_class, and_withp);
3621                 flags &= ~SCF_DO_STCLASS;
3622             }
3623         }
3624         else if (PL_regkind[OP(scan)] == EOL && flags & SCF_DO_SUBSTR) {
3625             data->flags |= (OP(scan) == MEOL
3626                             ? SF_BEFORE_MEOL
3627                             : SF_BEFORE_SEOL);
3628         }
3629         else if (  PL_regkind[OP(scan)] == BRANCHJ
3630                  /* Lookbehind, or need to calculate parens/evals/stclass: */
3631                    && (scan->flags || data || (flags & SCF_DO_STCLASS))
3632                    && (OP(scan) == IFMATCH || OP(scan) == UNLESSM)) {
3633             if ( !PERL_ENABLE_POSITIVE_ASSERTION_STUDY 
3634                 || OP(scan) == UNLESSM )
3635             {
3636                 /* Negative Lookahead/lookbehind
3637                    In this case we can't do fixed string optimisation.
3638                 */
3639
3640                 I32 deltanext, minnext, fake = 0;
3641                 regnode *nscan;
3642                 struct regnode_charclass_class intrnl;
3643                 int f = 0;
3644
3645                 data_fake.flags = 0;
3646                 if (data) {
3647                     data_fake.whilem_c = data->whilem_c;
3648                     data_fake.last_closep = data->last_closep;
3649                 }
3650                 else
3651                     data_fake.last_closep = &fake;
3652                 data_fake.pos_delta = delta;
3653                 if ( flags & SCF_DO_STCLASS && !scan->flags
3654                      && OP(scan) == IFMATCH ) { /* Lookahead */
3655                     cl_init(pRExC_state, &intrnl);
3656                     data_fake.start_class = &intrnl;
3657                     f |= SCF_DO_STCLASS_AND;
3658                 }
3659                 if (flags & SCF_WHILEM_VISITED_POS)
3660                     f |= SCF_WHILEM_VISITED_POS;
3661                 next = regnext(scan);
3662                 nscan = NEXTOPER(NEXTOPER(scan));
3663                 minnext = study_chunk(pRExC_state, &nscan, minlenp, &deltanext, 
3664                     last, &data_fake, stopparen, recursed, NULL, f, depth+1);
3665                 if (scan->flags) {
3666                     if (deltanext) {
3667                         FAIL("Variable length lookbehind not implemented");
3668                     }
3669                     else if (minnext > (I32)U8_MAX) {
3670                         FAIL2("Lookbehind longer than %"UVuf" not implemented", (UV)U8_MAX);
3671                     }
3672                     scan->flags = (U8)minnext;
3673                 }
3674                 if (data) {
3675                     if (data_fake.flags & (SF_HAS_PAR|SF_IN_PAR))
3676                         pars++;
3677                     if (data_fake.flags & SF_HAS_EVAL)
3678                         data->flags |= SF_HAS_EVAL;
3679                     data->whilem_c = data_fake.whilem_c;
3680                 }
3681                 if (f & SCF_DO_STCLASS_AND) {
3682                     const int was = (data->start_class->flags & ANYOF_EOS);
3683
3684                     cl_and(data->start_class, &intrnl);
3685                     if (was)
3686                         data->start_class->flags |= ANYOF_EOS;
3687                 }
3688             }
3689 #if PERL_ENABLE_POSITIVE_ASSERTION_STUDY
3690             else {
3691                 /* Positive Lookahead/lookbehind
3692                    In this case we can do fixed string optimisation,
3693                    but we must be careful about it. Note in the case of
3694                    lookbehind the positions will be offset by the minimum
3695                    length of the pattern, something we won't know about
3696                    until after the recurse.
3697                 */
3698                 I32 deltanext, fake = 0;
3699                 regnode *nscan;
3700                 struct regnode_charclass_class intrnl;
3701                 int f = 0;
3702                 /* We use SAVEFREEPV so that when the full compile 
3703                     is finished perl will clean up the allocated 
3704                     minlens when its all done. This was we don't
3705                     have to worry about freeing them when we know
3706                     they wont be used, which would be a pain.
3707                  */
3708                 I32 *minnextp;
3709                 Newx( minnextp, 1, I32 );
3710                 SAVEFREEPV(minnextp);
3711
3712                 if (data) {
3713                     StructCopy(data, &data_fake, scan_data_t);
3714                     if ((flags & SCF_DO_SUBSTR) && data->last_found) {
3715                         f |= SCF_DO_SUBSTR;
3716                         if (scan->flags) 
3717                             SCAN_COMMIT(pRExC_state, &data_fake,minlenp);
3718                         data_fake.last_found=newSVsv(data->last_found);
3719                     }
3720                 }
3721                 else
3722                     data_fake.last_closep = &fake;
3723                 data_fake.flags = 0;
3724                 data_fake.pos_delta = delta;
3725                 if (is_inf)
3726                     data_fake.flags |= SF_IS_INF;
3727                 if ( flags & SCF_DO_STCLASS && !scan->flags
3728                      && OP(scan) == IFMATCH ) { /* Lookahead */
3729                     cl_init(pRExC_state, &intrnl);
3730                     data_fake.start_class = &intrnl;
3731                     f |= SCF_DO_STCLASS_AND;
3732                 }
3733                 if (flags & SCF_WHILEM_VISITED_POS)
3734                     f |= SCF_WHILEM_VISITED_POS;
3735                 next = regnext(scan);
3736                 nscan = NEXTOPER(NEXTOPER(scan));
3737
3738                 *minnextp = study_chunk(pRExC_state, &nscan, minnextp, &deltanext, 
3739                     last, &data_fake, stopparen, recursed, NULL, f,depth+1);
3740                 if (scan->flags) {
3741                     if (deltanext) {
3742                         FAIL("Variable length lookbehind not implemented");
3743                     }
3744                     else if (*minnextp > (I32)U8_MAX) {
3745                         FAIL2("Lookbehind longer than %"UVuf" not implemented", (UV)U8_MAX);
3746                     }
3747                     scan->flags = (U8)*minnextp;
3748                 }
3749
3750                 *minnextp += min;
3751
3752                 if (f & SCF_DO_STCLASS_AND) {
3753                     const int was = (data->start_class->flags & ANYOF_EOS);
3754
3755                     cl_and(data->start_class, &intrnl);
3756                     if (was)
3757                         data->start_class->flags |= ANYOF_EOS;
3758                 }
3759                 if (data) {
3760                     if (data_fake.flags & (SF_HAS_PAR|SF_IN_PAR))
3761                         pars++;
3762                     if (data_fake.flags & SF_HAS_EVAL)
3763                         data->flags |= SF_HAS_EVAL;
3764                     data->whilem_c = data_fake.whilem_c;
3765                     if ((flags & SCF_DO_SUBSTR) && data_fake.last_found) {
3766                         if (RExC_rx->minlen<*minnextp)
3767                             RExC_rx->minlen=*minnextp;
3768                         SCAN_COMMIT(pRExC_state, &data_fake, minnextp);
3769                         SvREFCNT_dec(data_fake.last_found);
3770                         
3771                         if ( data_fake.minlen_fixed != minlenp ) 
3772                         {
3773                             data->offset_fixed= data_fake.offset_fixed;
3774                             data->minlen_fixed= data_fake.minlen_fixed;
3775                             data->lookbehind_fixed+= scan->flags;
3776                         }
3777                         if ( data_fake.minlen_float != minlenp )
3778                         {
3779                             data->minlen_float= data_fake.minlen_float;
3780                             data->offset_float_min=data_fake.offset_float_min;
3781                             data->offset_float_max=data_fake.offset_float_max;
3782                             data->lookbehind_float+= scan->flags;
3783                         }
3784                     }
3785                 }
3786
3787
3788             }
3789 #endif
3790         }
3791         else if (OP(scan) == OPEN) {
3792             if (stopparen != (I32)ARG(scan))
3793                 pars++;
3794         }
3795         else if (OP(scan) == CLOSE) {
3796             if (stopparen == (I32)ARG(scan)) {
3797                 break;
3798             }
3799             if ((I32)ARG(scan) == is_par) {
3800                 next = regnext(scan);
3801
3802                 if ( next && (OP(next) != WHILEM) && next < last)
3803                     is_par = 0;         /* Disable optimization */
3804             }
3805             if (data)
3806                 *(data->last_closep) = ARG(scan);
3807         }
3808         else if (OP(scan) == EVAL) {
3809                 if (data)
3810                     data->flags |= SF_HAS_EVAL;
3811         }
3812         else if ( PL_regkind[OP(scan)] == ENDLIKE ) {
3813             if (flags & SCF_DO_SUBSTR) {
3814                 SCAN_COMMIT(pRExC_state,data,minlenp);
3815                 flags &= ~SCF_DO_SUBSTR;
3816             }
3817             if (data && OP(scan)==ACCEPT) {
3818                 data->flags |= SCF_SEEN_ACCEPT;
3819                 if (stopmin > min)
3820                     stopmin = min;
3821             }
3822         }
3823         else if (OP(scan) == LOGICAL && scan->flags == 2) /* Embedded follows */
3824         {
3825                 if (flags & SCF_DO_SUBSTR) {
3826                     SCAN_COMMIT(pRExC_state,data,minlenp);
3827                     data->longest = &(data->longest_float);
3828                 }
3829                 is_inf = is_inf_internal = 1;
3830                 if (flags & SCF_DO_STCLASS_OR) /* Allow everything */
3831                     cl_anything(pRExC_state, data->start_class);
3832                 flags &= ~SCF_DO_STCLASS;
3833         }
3834         else if (OP(scan) == GPOS) {
3835             if (!(RExC_rx->extflags & RXf_GPOS_FLOAT) &&
3836                 !(delta || is_inf || (data && data->pos_delta))) 
3837             {
3838                 if (!(RExC_rx->extflags & RXf_ANCH) && (flags & SCF_DO_SUBSTR))
3839                     RExC_rx->extflags |= RXf_ANCH_GPOS;
3840                 if (RExC_rx->gofs < (U32)min)
3841                     RExC_rx->gofs = min;
3842             } else {
3843                 RExC_rx->extflags |= RXf_GPOS_FLOAT;
3844                 RExC_rx->gofs = 0;
3845             }       
3846         }
3847 #ifdef TRIE_STUDY_OPT
3848 #ifdef FULL_TRIE_STUDY
3849         else if (PL_regkind[OP(scan)] == TRIE) {
3850             /* NOTE - There is similar code to this block above for handling
3851                BRANCH nodes on the initial study.  If you change stuff here
3852                check there too. */
3853             regnode *trie_node= scan;
3854             regnode *tail= regnext(scan);
3855             reg_trie_data *trie = (reg_trie_data*)RExC_rxi->data->data[ ARG(scan) ];
3856             I32 max1 = 0, min1 = I32_MAX;
3857             struct regnode_charclass_class accum;
3858
3859             if (flags & SCF_DO_SUBSTR) /* XXXX Add !SUSPEND? */
3860                 SCAN_COMMIT(pRExC_state, data,minlenp); /* Cannot merge strings after this. */
3861             if (flags & SCF_DO_STCLASS)
3862                 cl_init_zero(pRExC_state, &accum);
3863                 
3864             if (!trie->jump) {
3865                 min1= trie->minlen;
3866                 max1= trie->maxlen;
3867             } else {
3868                 const regnode *nextbranch= NULL;
3869                 U32 word;
3870                 
3871                 for ( word=1 ; word <= trie->wordcount ; word++) 
3872                 {
3873                     I32 deltanext=0, minnext=0, f = 0, fake;
3874                     struct regnode_charclass_class this_class;
3875                     
3876                     data_fake.flags = 0;
3877                     if (data) {
3878                         data_fake.whilem_c = data->whilem_c;
3879                         data_fake.last_closep = data->last_closep;
3880                     }
3881                     else
3882                         data_fake.last_closep = &fake;
3883                     data_fake.pos_delta = delta;
3884                     if (flags & SCF_DO_STCLASS) {
3885                         cl_init(pRExC_state, &this_class);
3886                         data_fake.start_class = &this_class;
3887                         f = SCF_DO_STCLASS_AND;
3888                     }
3889                     if (flags & SCF_WHILEM_VISITED_POS)
3890                         f |= SCF_WHILEM_VISITED_POS;
3891     
3892                     if (trie->jump[word]) {
3893                         if (!nextbranch)
3894                             nextbranch = trie_node + trie->jump[0];
3895                         scan= trie_node + trie->jump[word];
3896                         /* We go from the jump point to the branch that follows
3897                            it. Note this means we need the vestigal unused branches
3898                            even though they arent otherwise used.
3899                          */
3900                         minnext = study_chunk(pRExC_state, &scan, minlenp, 
3901                             &deltanext, (regnode *)nextbranch, &data_fake, 
3902                             stopparen, recursed, NULL, f,depth+1);
3903                     }
3904                     if (nextbranch && PL_regkind[OP(nextbranch)]==BRANCH)
3905                         nextbranch= regnext((regnode*)nextbranch);
3906                     
3907                     if (min1 > (I32)(minnext + trie->minlen))
3908                         min1 = minnext + trie->minlen;
3909                     if (max1 < (I32)(minnext + deltanext + trie->maxlen))
3910                         max1 = minnext + deltanext + trie->maxlen;
3911                     if (deltanext == I32_MAX)
3912                         is_inf = is_inf_internal = 1;
3913                     
3914                     if (data_fake.flags & (SF_HAS_PAR|SF_IN_PAR))
3915                         pars++;
3916                     if (data_fake.flags & SCF_SEEN_ACCEPT) {
3917                         if ( stopmin > min + min1) 
3918                             stopmin = min + min1;
3919                         flags &= ~SCF_DO_SUBSTR;
3920                         if (data)
3921                             data->flags |= SCF_SEEN_ACCEPT;
3922                     }
3923                     if (data) {
3924                         if (data_fake.flags & SF_HAS_EVAL)
3925                             data->flags |= SF_HAS_EVAL;
3926                         data->whilem_c = data_fake.whilem_c;
3927                     }
3928                     if (flags & SCF_DO_STCLASS)
3929                         cl_or(pRExC_state, &accum, &this_class);
3930                 }
3931             }
3932             if (flags & SCF_DO_SUBSTR) {
3933                 data->pos_min += min1;
3934                 data->pos_delta += max1 - min1;
3935                 if (max1 != min1 || is_inf)
3936                     data->longest = &(data->longest_float);
3937             }
3938             min += min1;
3939             delta += max1 - min1;
3940             if (flags & SCF_DO_STCLASS_OR) {
3941                 cl_or(pRExC_state, data->start_class, &accum);
3942                 if (min1) {
3943                     cl_and(data->start_class, and_withp);
3944                     flags &= ~SCF_DO_STCLASS;
3945                 }
3946             }
3947             else if (flags & SCF_DO_STCLASS_AND) {
3948                 if (min1) {
3949                     cl_and(data->start_class, &accum);
3950                     flags &= ~SCF_DO_STCLASS;
3951                 }
3952                 else {
3953                     /* Switch to OR mode: cache the old value of
3954                      * data->start_class */
3955                     INIT_AND_WITHP;
3956                     StructCopy(data->start_class, and_withp,
3957                                struct regnode_charclass_class);
3958                     flags &= ~SCF_DO_STCLASS_AND;
3959                     StructCopy(&accum, data->start_class,
3960                                struct regnode_charclass_class);
3961                     flags |= SCF_DO_STCLASS_OR;
3962                     data->start_class->flags |= ANYOF_EOS;
3963                 }
3964             }
3965             scan= tail;
3966             continue;
3967         }
3968 #else
3969         else if (PL_regkind[OP(scan)] == TRIE) {
3970             reg_trie_data *trie = (reg_trie_data*)RExC_rxi->data->data[ ARG(scan) ];
3971             U8*bang=NULL;
3972             
3973             min += trie->minlen;
3974             delta += (trie->maxlen - trie->minlen);
3975             flags &= ~SCF_DO_STCLASS; /* xxx */
3976             if (flags & SCF_DO_SUBSTR) {
3977                 SCAN_COMMIT(pRExC_state,data,minlenp);  /* Cannot expect anything... */
3978                 data->pos_min += trie->minlen;
3979                 data->pos_delta += (trie->maxlen - trie->minlen);
3980                 if (trie->maxlen != trie->minlen)
3981                     data->longest = &(data->longest_float);
3982             }
3983             if (trie->jump) /* no more substrings -- for now /grr*/
3984                 flags &= ~SCF_DO_SUBSTR; 
3985         }
3986 #endif /* old or new */
3987 #endif /* TRIE_STUDY_OPT */     
3988
3989         /* Else: zero-length, ignore. */
3990         scan = regnext(scan);
3991     }
3992     if (frame) {
3993         last = frame->last;
3994         scan = frame->next;
3995         stopparen = frame->stop;
3996         frame = frame->prev;
3997         goto fake_study_recurse;
3998     }
3999
4000   finish:
4001     assert(!frame);
4002     DEBUG_STUDYDATA("pre-fin:",data,depth);
4003
4004     *scanp = scan;
4005     *deltap = is_inf_internal ? I32_MAX : delta;
4006     if (flags & SCF_DO_SUBSTR && is_inf)
4007         data->pos_delta = I32_MAX - data->pos_min;
4008     if (is_par > (I32)U8_MAX)
4009         is_par = 0;
4010     if (is_par && pars==1 && data) {
4011         data->flags |= SF_IN_PAR;
4012         data->flags &= ~SF_HAS_PAR;
4013     }
4014     else if (pars && data) {
4015         data->flags |= SF_HAS_PAR;
4016         data->flags &= ~SF_IN_PAR;
4017     }
4018     if (flags & SCF_DO_STCLASS_OR)
4019         cl_and(data->start_class, and_withp);
4020     if (flags & SCF_TRIE_RESTUDY)
4021         data->flags |=  SCF_TRIE_RESTUDY;
4022     
4023     DEBUG_STUDYDATA("post-fin:",data,depth);
4024     
4025     return min < stopmin ? min : stopmin;
4026 }
4027
4028 STATIC U32
4029 S_add_data(RExC_state_t *pRExC_state, U32 n, const char *s)
4030 {
4031     U32 count = RExC_rxi->data ? RExC_rxi->data->count : 0;
4032
4033     Renewc(RExC_rxi->data,
4034            sizeof(*RExC_rxi->data) + sizeof(void*) * (count + n - 1),
4035            char, struct reg_data);
4036     if(count)
4037         Renew(RExC_rxi->data->what, count + n, U8);
4038     else
4039         Newx(RExC_rxi->data->what, n, U8);
4040     RExC_rxi->data->count = count + n;
4041     Copy(s, RExC_rxi->data->what + count, n, U8);
4042     return count;
4043 }
4044
4045 /*XXX: todo make this not included in a non debugging perl */
4046 #ifndef PERL_IN_XSUB_RE
4047 void
4048 Perl_reginitcolors(pTHX)
4049 {
4050     dVAR;
4051     const char * const s = PerlEnv_getenv("PERL_RE_COLORS");
4052     if (s) {
4053         char *t = savepv(s);
4054         int i = 0;
4055         PL_colors[0] = t;
4056         while (++i < 6) {
4057             t = strchr(t, '\t');
4058             if (t) {
4059                 *t = '\0';
4060                 PL_colors[i] = ++t;
4061             }
4062             else
4063                 PL_colors[i] = t = (char *)"";
4064         }
4065     } else {
4066         int i = 0;
4067         while (i < 6)
4068             PL_colors[i++] = (char *)"";
4069     }
4070     PL_colorset = 1;
4071 }
4072 #endif
4073
4074
4075 #ifdef TRIE_STUDY_OPT
4076 #define CHECK_RESTUDY_GOTO                                  \
4077         if (                                                \
4078               (data.flags & SCF_TRIE_RESTUDY)               \
4079               && ! restudied++                              \
4080         )     goto reStudy
4081 #else
4082 #define CHECK_RESTUDY_GOTO
4083 #endif        
4084
4085 /*
4086  - pregcomp - compile a regular expression into internal code
4087  *
4088  * We can't allocate space until we know how big the compiled form will be,
4089  * but we can't compile it (and thus know how big it is) until we've got a
4090  * place to put the code.  So we cheat:  we compile it twice, once with code
4091  * generation turned off and size counting turned on, and once "for real".
4092  * This also means that we don't allocate space until we are sure that the
4093  * thing really will compile successfully, and we never have to move the
4094  * code and thus invalidate pointers into it.  (Note that it has to be in
4095  * one piece because free() must be able to free it all.) [NB: not true in perl]
4096  *
4097  * Beware that the optimization-preparation code in here knows about some
4098  * of the structure of the compiled regexp.  [I'll say.]
4099  */
4100
4101
4102
4103 #ifndef PERL_IN_XSUB_RE
4104 #define RE_ENGINE_PTR &PL_core_reg_engine
4105 #else
4106 extern const struct regexp_engine my_reg_engine;
4107 #define RE_ENGINE_PTR &my_reg_engine
4108 #endif
4109
4110 #ifndef PERL_IN_XSUB_RE 
4111 REGEXP *
4112 Perl_pregcomp(pTHX_ const SV * const pattern, const U32 flags)
4113 {
4114     dVAR;
4115     HV * const table = GvHV(PL_hintgv);
4116     /* Dispatch a request to compile a regexp to correct 
4117        regexp engine. */
4118     if (table) {
4119         SV **ptr= hv_fetchs(table, "regcomp", FALSE);
4120         GET_RE_DEBUG_FLAGS_DECL;
4121         if (ptr && SvIOK(*ptr) && SvIV(*ptr)) {
4122             const regexp_engine *eng=INT2PTR(regexp_engine*,SvIV(*ptr));
4123             DEBUG_COMPILE_r({
4124                 PerlIO_printf(Perl_debug_log, "Using engine %"UVxf"\n",
4125                     SvIV(*ptr));
4126             });            
4127             return CALLREGCOMP_ENG(eng, pattern, flags);
4128         } 
4129     }
4130     return Perl_re_compile(aTHX_ pattern, flags);
4131 }
4132 #endif
4133
4134 REGEXP *
4135 Perl_re_compile(pTHX_ const SV * const pattern, const U32 pm_flags)
4136 {
4137     dVAR;
4138     register REGEXP *r;
4139     register regexp_internal *ri;
4140     STRLEN plen;
4141     char*  exp = SvPV((SV*)pattern, plen);
4142     char* xend = exp + plen;
4143     regnode *scan;
4144     I32 flags;
4145     I32 minlen = 0;
4146     I32 sawplus = 0;
4147     I32 sawopen = 0;
4148     scan_data_t data;
4149     RExC_state_t RExC_state;
4150     RExC_state_t * const pRExC_state = &RExC_state;
4151 #ifdef TRIE_STUDY_OPT    
4152     int restudied= 0;
4153     RExC_state_t copyRExC_state;
4154 #endif    
4155     GET_RE_DEBUG_FLAGS_DECL;
4156     DEBUG_r(if (!PL_colorset) reginitcolors());
4157
4158     RExC_utf8 = RExC_orig_utf8 = pm_flags & RXf_UTF8;
4159
4160     DEBUG_COMPILE_r({
4161         SV *dsv= sv_newmortal();
4162         RE_PV_QUOTED_DECL(s, RExC_utf8,
4163             dsv, exp, plen, 60);
4164         PerlIO_printf(Perl_debug_log, "%sCompiling REx%s %s\n",
4165                        PL_colors[4],PL_colors[5],s);
4166     });
4167
4168 redo_first_pass:
4169     RExC_precomp = exp;
4170     RExC_flags = pm_flags;
4171     RExC_sawback = 0;
4172
4173     RExC_seen = 0;
4174     RExC_seen_zerolen = *exp == '^' ? -1 : 0;
4175     RExC_seen_evals = 0;
4176     RExC_extralen = 0;
4177
4178     /* First pass: determine size, legality. */
4179     RExC_parse = exp;
4180     RExC_start = exp;
4181     RExC_end = xend;
4182     RExC_naughty = 0;
4183     RExC_npar = 1;
4184     RExC_nestroot = 0;
4185     RExC_size = 0L;
4186     RExC_emit = &PL_regdummy;
4187     RExC_whilem_seen = 0;
4188     RExC_charnames = NULL;
4189     RExC_open_parens = NULL;
4190     RExC_close_parens = NULL;
4191     RExC_opend = NULL;
4192     RExC_paren_names = NULL;
4193 #ifdef DEBUGGING
4194     RExC_paren_name_list = NULL;
4195 #endif
4196     RExC_recurse = NULL;
4197     RExC_recurse_count = 0;
4198
4199 #if 0 /* REGC() is (currently) a NOP at the first pass.
4200        * Clever compilers notice this and complain. --jhi */
4201     REGC((U8)REG_MAGIC, (char*)RExC_emit);
4202 #endif
4203     DEBUG_PARSE_r(PerlIO_printf(Perl_debug_log, "Starting first pass (sizing)\n"));
4204     if (reg(pRExC_state, 0, &flags,1) == NULL) {
4205         RExC_precomp = NULL;
4206         return(NULL);
4207     }
4208     if (RExC_utf8 && !RExC_orig_utf8) {
4209         /* It's possible to write a regexp in ascii that represents Unicode
4210         codepoints outside of the byte range, such as via \x{100}. If we
4211         detect such a sequence we have to convert the entire pattern to utf8
4212         and then recompile, as our sizing calculation will have been based
4213         on 1 byte == 1 character, but we will need to use utf8 to encode
4214         at least some part of the pattern, and therefore must convert the whole
4215         thing.
4216         XXX: somehow figure out how to make this less expensive...
4217         -- dmq */
4218         STRLEN len = plen;
4219         DEBUG_PARSE_r(PerlIO_printf(Perl_debug_log,
4220             "UTF8 mismatch! Converting to utf8 for resizing and compile\n"));
4221         exp = (char*)Perl_bytes_to_utf8(aTHX_ (U8*)exp, &len);
4222         xend = exp + len;
4223         RExC_orig_utf8 = RExC_utf8;
4224         SAVEFREEPV(exp);
4225         goto redo_first_pass;
4226     }
4227     DEBUG_PARSE_r({
4228         PerlIO_printf(Perl_debug_log, 
4229             "Required size %"IVdf" nodes\n"
4230             "Starting second pass (creation)\n", 
4231             (IV)RExC_size);
4232         RExC_lastnum=0; 
4233         RExC_lastparse=NULL; 
4234     });
4235     /* Small enough for pointer-storage convention?
4236        If extralen==0, this means that we will not need long jumps. */
4237     if (RExC_size >= 0x10000L && RExC_extralen)
4238         RExC_size += RExC_extralen;
4239     else
4240         RExC_extralen = 0;
4241     if (RExC_whilem_seen > 15)
4242         RExC_whilem_seen = 15;
4243
4244     /* Allocate space and zero-initialize. Note, the two step process 
4245        of zeroing when in debug mode, thus anything assigned has to 
4246        happen after that */
4247     Newxz(r, 1, regexp);
4248     Newxc(ri, sizeof(regexp_internal) + (unsigned)RExC_size * sizeof(regnode),
4249          char, regexp_internal);
4250     if ( r == NULL || ri == NULL )
4251         FAIL("Regexp out of space");
4252 #ifdef DEBUGGING
4253     /* avoid reading uninitialized memory in DEBUGGING code in study_chunk() */
4254     Zero(ri, sizeof(regexp_internal) + (unsigned)RExC_size * sizeof(regnode), char);
4255 #else 
4256     /* bulk initialize base fields with 0. */
4257     Zero(ri, sizeof(regexp_internal), char);        
4258 #endif
4259
4260     /* non-zero initialization begins here */
4261     RXi_SET( r, ri );
4262     r->engine= RE_ENGINE_PTR;
4263     r->refcnt = 1;
4264     r->prelen = plen;
4265     r->extflags = pm_flags;
4266     {
4267         bool has_p     = ((r->extflags & RXf_PMf_KEEPCOPY) == RXf_PMf_KEEPCOPY);
4268         bool has_minus = ((r->extflags & RXf_PMf_STD_PMMOD) != RXf_PMf_STD_PMMOD);
4269         bool has_runon = ((RExC_seen & REG_SEEN_RUN_ON_COMMENT)==REG_SEEN_RUN_ON_COMMENT);
4270         U16 reganch = (U16)((r->extflags & RXf_PMf_STD_PMMOD) >> 12);
4271         const char *fptr = STD_PAT_MODS;        /*"msix"*/
4272         char *p;
4273         r->wraplen = r->prelen + has_minus + has_p + has_runon
4274             + (sizeof(STD_PAT_MODS) - 1)
4275             + (sizeof("(?:)") - 1);
4276
4277         Newx(r->wrapped, r->wraplen + 1, char );
4278         p = r->wrapped;
4279         *p++='('; *p++='?';
4280         if (has_p)
4281             *p++ = KEEPCOPY_PAT_MOD; /*'p'*/
4282         {
4283             char *r = p + (sizeof(STD_PAT_MODS) - 1) + has_minus - 1;
4284             char *colon = r + 1;
4285             char ch;
4286
4287             while((ch = *fptr++)) {
4288                 if(reganch & 1)
4289                     *p++ = ch;
4290                 else
4291                     *r-- = ch;
4292                 reganch >>= 1;
4293             }
4294             if(has_minus) {
4295                 *r = '-';
4296                 p = colon;
4297             }
4298         }
4299
4300         *p++ = ':';
4301         Copy(RExC_precomp, p, r->prelen, char);
4302         r->precomp = p;
4303         p += r->prelen;
4304         if (has_runon)
4305             *p++ = '\n';
4306         *p++ = ')';
4307         *p = 0;
4308     }
4309
4310     r->intflags = 0;
4311     r->nparens = RExC_npar - 1; /* set early to validate backrefs */
4312     
4313     if (RExC_seen & REG_SEEN_RECURSE) {
4314         Newxz(RExC_open_parens, RExC_npar,regnode *);
4315         SAVEFREEPV(RExC_open_parens);
4316         Newxz(RExC_close_parens,RExC_npar,regnode *);
4317         SAVEFREEPV(RExC_close_parens);
4318     }
4319
4320     /* Useful during FAIL. */
4321 #ifdef RE_TRACK_PATTERN_OFFSETS
4322     Newxz(ri->u.offsets, 2*RExC_size+1, U32); /* MJD 20001228 */
4323     DEBUG_OFFSETS_r(PerlIO_printf(Perl_debug_log,
4324                           "%s %"UVuf" bytes for offset annotations.\n",
4325                           ri->u.offsets ? "Got" : "Couldn't get",
4326                           (UV)((2*RExC_size+1) * sizeof(U32))));
4327 #endif
4328     SetProgLen(ri,RExC_size);
4329     RExC_rx = r;
4330     RExC_rxi = ri;
4331
4332     /* Second pass: emit code. */
4333     RExC_flags = pm_flags;      /* don't let top level (?i) bleed */
4334     RExC_parse = exp;
4335     RExC_end = xend;
4336     RExC_naughty = 0;
4337     RExC_npar = 1;
4338     RExC_emit_start = ri->program;
4339     RExC_emit = ri->program;
4340     RExC_emit_bound = ri->program + RExC_size + 1;
4341
4342     /* Store the count of eval-groups for security checks: */
4343     RExC_rx->seen_evals = RExC_seen_evals;
4344     REGC((U8)REG_MAGIC, (char*) RExC_emit++);
4345     if (reg(pRExC_state, 0, &flags,1) == NULL) {
4346         ReREFCNT_dec(r);   
4347         return(NULL);
4348     }
4349     /* XXXX To minimize changes to RE engine we always allocate
4350        3-units-long substrs field. */
4351     Newx(r->substrs, 1, struct reg_substr_data);
4352     if (RExC_recurse_count) {
4353         Newxz(RExC_recurse,RExC_recurse_count,regnode *);
4354         SAVEFREEPV(RExC_recurse);
4355     }
4356
4357 reStudy:
4358     r->minlen = minlen = sawplus = sawopen = 0;
4359     Zero(r->substrs, 1, struct reg_substr_data);
4360
4361 #ifdef TRIE_STUDY_OPT
4362     if ( restudied ) {
4363         U32 seen=RExC_seen;
4364         DEBUG_OPTIMISE_r(PerlIO_printf(Perl_debug_log,"Restudying\n"));
4365         
4366         RExC_state = copyRExC_state;
4367         if (seen & REG_TOP_LEVEL_BRANCHES) 
4368             RExC_seen |= REG_TOP_LEVEL_BRANCHES;
4369         else
4370             RExC_seen &= ~REG_TOP_LEVEL_BRANCHES;
4371         if (data.last_found) {
4372             SvREFCNT_dec(data.longest_fixed);
4373             SvREFCNT_dec(data.longest_float);
4374             SvREFCNT_dec(data.last_found);
4375         }
4376         StructCopy(&zero_scan_data, &data, scan_data_t);
4377     } else {
4378         StructCopy(&zero_scan_data, &data, scan_data_t);
4379         copyRExC_state = RExC_state;
4380     }
4381 #else
4382     StructCopy(&zero_scan_data, &data, scan_data_t);
4383 #endif    
4384
4385     /* Dig out information for optimizations. */
4386     r->extflags = RExC_flags; /* was pm_op */
4387     /*dmq: removed as part of de-PMOP: pm->op_pmflags = RExC_flags; */
4388  
4389     if (UTF)
4390         r->extflags |= RXf_UTF8;        /* Unicode in it? */
4391     ri->regstclass = NULL;
4392     if (RExC_naughty >= 10)     /* Probably an expensive pattern. */
4393         r->intflags |= PREGf_NAUGHTY;
4394     scan = ri->program + 1;             /* First BRANCH. */
4395
4396     /* testing for BRANCH here tells us whether there is "must appear"
4397        data in the pattern. If there is then we can use it for optimisations */
4398     if (!(RExC_seen & REG_TOP_LEVEL_BRANCHES)) { /*  Only one top-level choice. */
4399         I32 fake;
4400         STRLEN longest_float_length, longest_fixed_length;
4401         struct regnode_charclass_class ch_class; /* pointed to by data */
4402         int stclass_flag;
4403         I32 last_close = 0; /* pointed to by data */
4404         regnode *first= scan;
4405         regnode *first_next= regnext(first);
4406         
4407         /* Skip introductions and multiplicators >= 1. */
4408         while ((OP(first) == OPEN && (sawopen = 1)) ||
4409                /* An OR of *one* alternative - should not happen now. */
4410             (OP(first) == BRANCH && OP(first_next) != BRANCH) ||
4411             /* for now we can't handle lookbehind IFMATCH*/
4412             (OP(first) == IFMATCH && !first->flags) || 
4413             (OP(first) == PLUS) ||
4414             (OP(first) == MINMOD) ||
4415                /* An {n,m} with n>0 */
4416             (PL_regkind[OP(first)] == CURLY && ARG1(first) > 0) ||
4417             (OP(first) == NOTHING && PL_regkind[OP(first_next)] != END ))
4418         {
4419                 
4420                 if (OP(first) == PLUS)
4421                     sawplus = 1;
4422                 else
4423                     first += regarglen[OP(first)];
4424                 if (OP(first) == IFMATCH) {
4425                     first = NEXTOPER(first);
4426                     first += EXTRA_STEP_2ARGS;
4427                 } else  /* XXX possible optimisation for /(?=)/  */
4428                     first = NEXTOPER(first);
4429                 first_next= regnext(first);
4430         }
4431
4432         /* Starting-point info. */
4433       again:
4434         DEBUG_PEEP("first:",first,0);
4435         /* Ignore EXACT as we deal with it later. */
4436         if (PL_regkind[OP(first)] == EXACT) {
4437             if (OP(first) == EXACT)
4438                 NOOP;   /* Empty, get anchored substr later. */
4439             else if ((OP(first) == EXACTF || OP(first) == EXACTFL))
4440                 ri->regstclass = first;
4441         }
4442 #ifdef TRIE_STCLASS     
4443         else if (PL_regkind[OP(first)] == TRIE &&
4444                 ((reg_trie_data *)ri->data->data[ ARG(first) ])->minlen>0) 
4445         {
4446             regnode *trie_op;
4447             /* this can happen only on restudy */
4448             if ( OP(first) == TRIE ) {
4449                 struct regnode_1 *trieop = (struct regnode_1 *)
4450                     PerlMemShared_calloc(1, sizeof(struct regnode_1));
4451                 StructCopy(first,trieop,struct regnode_1);
4452                 trie_op=(regnode *)trieop;
4453             } else {
4454                 struct regnode_charclass *trieop = (struct regnode_charclass *)
4455                     PerlMemShared_calloc(1, sizeof(struct regnode_charclass));
4456                 StructCopy(first,trieop,struct regnode_charclass);
4457                 trie_op=(regnode *)trieop;
4458             }
4459             OP(trie_op)+=2;
4460             make_trie_failtable(pRExC_state, (regnode *)first, trie_op, 0);
4461             ri->regstclass = trie_op;
4462         }
4463 #endif  
4464         else if (strchr((const char*)PL_simple,OP(first)))
4465             ri->regstclass = first;
4466         else if (PL_regkind[OP(first)] == BOUND ||
4467                  PL_regkind[OP(first)] == NBOUND)
4468             ri->regstclass = first;
4469         else if (PL_regkind[OP(first)] == BOL) {
4470             r->extflags |= (OP(first) == MBOL
4471                            ? RXf_ANCH_MBOL
4472                            : (OP(first) == SBOL
4473                               ? RXf_ANCH_SBOL
4474                               : RXf_ANCH_BOL));
4475             first = NEXTOPER(first);
4476             goto again;
4477         }
4478         else if (OP(first) == GPOS) {
4479             r->extflags |= RXf_ANCH_GPOS;
4480             first = NEXTOPER(first);
4481             goto again;
4482         }
4483         else if ((!sawopen || !RExC_sawback) &&
4484             (OP(first) == STAR &&
4485             PL_regkind[OP(NEXTOPER(first))] == REG_ANY) &&
4486             !(r->extflags & RXf_ANCH) && !(RExC_seen & REG_SEEN_EVAL))
4487         {
4488             /* turn .* into ^.* with an implied $*=1 */
4489             const int type =
4490                 (OP(NEXTOPER(first)) == REG_ANY)
4491                     ? RXf_ANCH_MBOL
4492                     : RXf_ANCH_SBOL;
4493             r->extflags |= type;
4494             r->intflags |= PREGf_IMPLICIT;
4495             first = NEXTOPER(first);
4496             goto again;
4497         }
4498         if (sawplus && (!sawopen || !RExC_sawback)
4499             && !(RExC_seen & REG_SEEN_EVAL)) /* May examine pos and $& */
4500             /* x+ must match at the 1st pos of run of x's */
4501             r->intflags |= PREGf_SKIP;
4502
4503         /* Scan is after the zeroth branch, first is atomic matcher. */
4504 #ifdef TRIE_STUDY_OPT
4505         DEBUG_PARSE_r(
4506             if (!restudied)
4507                 PerlIO_printf(Perl_debug_log, "first at %"IVdf"\n",
4508                               (IV)(first - scan + 1))
4509         );
4510 #else
4511         DEBUG_PARSE_r(
4512             PerlIO_printf(Perl_debug_log, "first at %"IVdf"\n",
4513                 (IV)(first - scan + 1))
4514         );
4515 #endif
4516
4517
4518         /*
4519         * If there's something expensive in the r.e., find the
4520         * longest literal string that must appear and make it the
4521         * regmust.  Resolve ties in favor of later strings, since
4522         * the regstart check works with the beginning of the r.e.
4523         * and avoiding duplication strengthens checking.  Not a
4524         * strong reason, but sufficient in the absence of others.
4525         * [Now we resolve ties in favor of the earlier string if
4526         * it happens that c_offset_min has been invalidated, since the
4527         * earlier string may buy us something the later one won't.]
4528         */
4529         
4530         data.longest_fixed = newSVpvs("");
4531         data.longest_float = newSVpvs("");
4532         data.last_found = newSVpvs("");
4533         data.longest = &(data.longest_fixed);
4534         first = scan;
4535         if (!ri->regstclass) {
4536             cl_init(pRExC_state, &ch_class);
4537             data.start_class = &ch_class;
4538             stclass_flag = SCF_DO_STCLASS_AND;
4539         } else                          /* XXXX Check for BOUND? */
4540             stclass_flag = 0;
4541         data.last_closep = &last_close;
4542         
4543         minlen = study_chunk(pRExC_state, &first, &minlen, &fake, scan + RExC_size, /* Up to end */
4544             &data, -1, NULL, NULL,
4545             SCF_DO_SUBSTR | SCF_WHILEM_VISITED_POS | stclass_flag,0);
4546
4547         
4548         CHECK_RESTUDY_GOTO;
4549
4550
4551         if ( RExC_npar == 1 && data.longest == &(data.longest_fixed)
4552              && data.last_start_min == 0 && data.last_end > 0
4553              && !RExC_seen_zerolen
4554              && !(RExC_seen & REG_SEEN_VERBARG)
4555              && (!(RExC_seen & REG_SEEN_GPOS) || (r->extflags & RXf_ANCH_GPOS)))
4556             r->extflags |= RXf_CHECK_ALL;
4557         scan_commit(pRExC_state, &data,&minlen,0);
4558         SvREFCNT_dec(data.last_found);
4559
4560         /* Note that code very similar to this but for anchored string 
4561            follows immediately below, changes may need to be made to both. 
4562            Be careful. 
4563          */
4564         longest_float_length = CHR_SVLEN(data.longest_float);
4565         if (longest_float_length
4566             || (data.flags & SF_FL_BEFORE_EOL
4567                 && (!(data.flags & SF_FL_BEFORE_MEOL)
4568                     || (RExC_flags & RXf_PMf_MULTILINE)))) 
4569         {
4570             I32 t,ml;
4571
4572             if (SvCUR(data.longest_fixed)  /* ok to leave SvCUR */
4573                 && data.offset_fixed == data.offset_float_min
4574                 && SvCUR(data.longest_fixed) == SvCUR(data.longest_float))
4575                     goto remove_float;          /* As in (a)+. */
4576
4577             /* copy the information about the longest float from the reg_scan_data
4578                over to the program. */
4579             if (SvUTF8(data.longest_float)) {
4580                 r->float_utf8 = data.longest_float;
4581                 r->float_substr = NULL;
4582             } else {
4583                 r->float_substr = data.longest_float;
4584                 r->float_utf8 = NULL;
4585             }
4586             /* float_end_shift is how many chars that must be matched that 
4587                follow this item. We calculate it ahead of time as once the
4588                lookbehind offset is added in we lose the ability to correctly
4589                calculate it.*/
4590             ml = data.minlen_float ? *(data.minlen_float) 
4591                                    : (I32)longest_float_length;
4592             r->float_end_shift = ml - data.offset_float_min
4593                 - longest_float_length + (SvTAIL(data.longest_float) != 0)
4594                 + data.lookbehind_float;
4595             r->float_min_offset = data.offset_float_min - data.lookbehind_float;
4596             r->float_max_offset = data.offset_float_max;
4597             if (data.offset_float_max < I32_MAX) /* Don't offset infinity */
4598                 r->float_max_offset -= data.lookbehind_float;
4599             
4600             t = (data.flags & SF_FL_BEFORE_EOL /* Can't have SEOL and MULTI */
4601                        && (!(data.flags & SF_FL_BEFORE_MEOL)
4602                            || (RExC_flags & RXf_PMf_MULTILINE)));
4603             fbm_compile(data.longest_float, t ? FBMcf_TAIL : 0);
4604         }
4605         else {
4606           remove_float:
4607             r->float_substr = r->float_utf8 = NULL;
4608             SvREFCNT_dec(data.longest_float);
4609             longest_float_length = 0;
4610         }
4611
4612         /* Note that code very similar to this but for floating string 
4613            is immediately above, changes may need to be made to both. 
4614            Be careful. 
4615          */
4616         longest_fixed_length = CHR_SVLEN(data.longest_fixed);
4617         if (longest_fixed_length
4618             || (data.flags & SF_FIX_BEFORE_EOL /* Cannot have SEOL and MULTI */
4619                 && (!(data.flags & SF_FIX_BEFORE_MEOL)
4620                     || (RExC_flags & RXf_PMf_MULTILINE)))) 
4621         {
4622             I32 t,ml;
4623
4624             /* copy the information about the longest fixed 
4625                from the reg_scan_data over to the program. */
4626             if (SvUTF8(data.longest_fixed)) {
4627                 r->anchored_utf8 = data.longest_fixed;
4628                 r->anchored_substr = NULL;
4629             } else {
4630                 r->anchored_substr = data.longest_fixed;
4631                 r->anchored_utf8 = NULL;
4632             }
4633             /* fixed_end_shift is how many chars that must be matched that 
4634                follow this item. We calculate it ahead of time as once the
4635                lookbehind offset is added in we lose the ability to correctly
4636                calculate it.*/
4637             ml = data.minlen_fixed ? *(data.minlen_fixed) 
4638                                    : (I32)longest_fixed_length;
4639             r->anchored_end_shift = ml - data.offset_fixed
4640                 - longest_fixed_length + (SvTAIL(data.longest_fixed) != 0)
4641                 + data.lookbehind_fixed;
4642             r->anchored_offset = data.offset_fixed - data.lookbehind_fixed;
4643
4644             t = (data.flags & SF_FIX_BEFORE_EOL /* Can't have SEOL and MULTI */
4645                  && (!(data.flags & SF_FIX_BEFORE_MEOL)
4646                      || (RExC_flags & RXf_PMf_MULTILINE)));
4647             fbm_compile(data.longest_fixed, t ? FBMcf_TAIL : 0);
4648         }
4649         else {
4650             r->anchored_substr = r->anchored_utf8 = NULL;
4651             SvREFCNT_dec(data.longest_fixed);
4652             longest_fixed_length = 0;
4653         }
4654         if (ri->regstclass
4655             && (OP(ri->regstclass) == REG_ANY || OP(ri->regstclass) == SANY))
4656             ri->regstclass = NULL;
4657         if ((!(r->anchored_substr || r->anchored_utf8) || r->anchored_offset)
4658             && stclass_flag
4659             && !(data.start_class->flags & ANYOF_EOS)
4660             && !cl_is_anything(data.start_class))
4661         {
4662             const U32 n = add_data(pRExC_state, 1, "f");
4663
4664             Newx(RExC_rxi->data->data[n], 1,
4665                 struct regnode_charclass_class);
4666             StructCopy(data.start_class,
4667                        (struct regnode_charclass_class*)RExC_rxi->data->data[n],
4668                        struct regnode_charclass_class);
4669             ri->regstclass = (regnode*)RExC_rxi->data->data[n];
4670             r->intflags &= ~PREGf_SKIP; /* Used in find_byclass(). */
4671             DEBUG_COMPILE_r({ SV *sv = sv_newmortal();
4672                       regprop(r, sv, (regnode*)data.start_class);
4673                       PerlIO_printf(Perl_debug_log,
4674                                     "synthetic stclass \"%s\".\n",
4675                                     SvPVX_const(sv));});
4676         }
4677
4678         /* A temporary algorithm prefers floated substr to fixed one to dig more info. */
4679         if (longest_fixed_length > longest_float_length) {
4680             r->check_end_shift = r->anchored_end_shift;
4681             r->check_substr = r->anchored_substr;
4682             r->check_utf8 = r->anchored_utf8;
4683             r->check_offset_min = r->check_offset_max = r->anchored_offset;
4684             if (r->extflags & RXf_ANCH_SINGLE)
4685                 r->extflags |= RXf_NOSCAN;
4686         }
4687         else {
4688             r->check_end_shift = r->float_end_shift;
4689             r->check_substr = r->float_substr;
4690             r->check_utf8 = r->float_utf8;
4691             r->check_offset_min = r->float_min_offset;
4692             r->check_offset_max = r->float_max_offset;
4693         }
4694         /* XXXX Currently intuiting is not compatible with ANCH_GPOS.
4695            This should be changed ASAP!  */
4696         if ((r->check_substr || r->check_utf8) && !(r->extflags & RXf_ANCH_GPOS)) {
4697             r->extflags |= RXf_USE_INTUIT;
4698             if (SvTAIL(r->check_substr ? r->check_substr : r->check_utf8))
4699                 r->extflags |= RXf_INTUIT_TAIL;
4700         }
4701         /* XXX Unneeded? dmq (shouldn't as this is handled elsewhere)
4702         if ( (STRLEN)minlen < longest_float_length )
4703             minlen= longest_float_length;
4704         if ( (STRLEN)minlen < longest_fixed_length )
4705             minlen= longest_fixed_length;     
4706         */
4707     }
4708     else {
4709         /* Several toplevels. Best we can is to set minlen. */
4710         I32 fake;
4711         struct regnode_charclass_class ch_class;
4712         I32 last_close = 0;
4713         
4714         DEBUG_PARSE_r(PerlIO_printf(Perl_debug_log, "\nMulti Top Level\n"));
4715
4716         scan = ri->program + 1;
4717         cl_init(pRExC_state, &ch_class);
4718         data.start_class = &ch_class;
4719         data.last_closep = &last_close;
4720
4721         
4722         minlen = study_chunk(pRExC_state, &scan, &minlen, &fake, scan + RExC_size,
4723             &data, -1, NULL, NULL, SCF_DO_STCLASS_AND|SCF_WHILEM_VISITED_POS,0);
4724         
4725         CHECK_RESTUDY_GOTO;
4726
4727         r->check_substr = r->check_utf8 = r->anchored_substr = r->anchored_utf8
4728                 = r->float_substr = r->float_utf8 = NULL;
4729         if (!(data.start_class->flags & ANYOF_EOS)
4730             && !cl_is_anything(data.start_class))
4731         {
4732             const U32 n = add_data(pRExC_state, 1, "f");
4733
4734             Newx(RExC_rxi->data->data[n], 1,
4735                 struct regnode_charclass_class);
4736             StructCopy(data.start_class,
4737                        (struct regnode_charclass_class*)RExC_rxi->data->data[n],
4738                        struct regnode_charclass_class);
4739             ri->regstclass = (regnode*)RExC_rxi->data->data[n];
4740             r->intflags &= ~PREGf_SKIP; /* Used in find_byclass(). */
4741             DEBUG_COMPILE_r({ SV* sv = sv_newmortal();
4742                       regprop(r, sv, (regnode*)data.start_class);
4743                       PerlIO_printf(Perl_debug_log,
4744                                     "synthetic stclass \"%s\".\n",
4745                                     SvPVX_const(sv));});
4746         }
4747     }
4748
4749     /* Guard against an embedded (?=) or (?<=) with a longer minlen than
4750        the "real" pattern. */
4751     DEBUG_OPTIMISE_r({
4752         PerlIO_printf(Perl_debug_log,"minlen: %"IVdf" r->minlen:%"IVdf"\n",
4753                       (IV)minlen, (IV)r->minlen);
4754     });
4755     r->minlenret = minlen;
4756     if (r->minlen < minlen) 
4757         r->minlen = minlen;
4758     
4759     if (RExC_seen & REG_SEEN_GPOS)
4760         r->extflags |= RXf_GPOS_SEEN;
4761     if (RExC_seen & REG_SEEN_LOOKBEHIND)
4762         r->extflags |= RXf_LOOKBEHIND_SEEN;
4763     if (RExC_seen & REG_SEEN_EVAL)
4764         r->extflags |= RXf_EVAL_SEEN;
4765     if (RExC_seen & REG_SEEN_CANY)
4766         r->extflags |= RXf_CANY_SEEN;
4767     if (RExC_seen & REG_SEEN_VERBARG)
4768         r->intflags |= PREGf_VERBARG_SEEN;
4769     if (RExC_seen & REG_SEEN_CUTGROUP)
4770         r->intflags |= PREGf_CUTGROUP_SEEN;
4771     if (RExC_paren_names)
4772         r->paren_names = (HV*)SvREFCNT_inc(RExC_paren_names);
4773     else
4774         r->paren_names = NULL;
4775
4776 #ifdef STUPID_PATTERN_CHECKS            
4777     if (r->prelen == 0)
4778         r->extflags |= RXf_NULL;
4779     if (r->extflags & RXf_SPLIT && r->prelen == 1 && r->precomp[0] == ' ')
4780         /* XXX: this should happen BEFORE we compile */
4781         r->extflags |= (RXf_SKIPWHITE|RXf_WHITE); 
4782     else if (r->prelen == 3 && memEQ("\\s+", r->precomp, 3))
4783         r->extflags |= RXf_WHITE;
4784     else if (r->prelen == 1 && r->precomp[0] == '^')
4785         r->extflags |= RXf_START_ONLY;
4786 #else
4787     if (r->extflags & RXf_SPLIT && r->prelen == 1 && r->precomp[0] == ' ')
4788             /* XXX: this should happen BEFORE we compile */
4789             r->extflags |= (RXf_SKIPWHITE|RXf_WHITE); 
4790     else {
4791         regnode *first = ri->program + 1;
4792         U8 fop = OP(first);
4793         U8 nop = OP(NEXTOPER(first));
4794         
4795         if (PL_regkind[fop] == NOTHING && nop == END)
4796             r->extflags |= RXf_NULL;
4797         else if (PL_regkind[fop] == BOL && nop == END)
4798             r->extflags |= RXf_START_ONLY;
4799         else if (fop == PLUS && nop ==SPACE && OP(regnext(first))==END)
4800             r->extflags |= RXf_WHITE;    
4801     }
4802 #endif
4803 #ifdef DEBUGGING
4804     if (RExC_paren_names) {
4805         ri->name_list_idx = add_data( pRExC_state, 1, "p" );
4806         ri->data->data[ri->name_list_idx] = (void*)SvREFCNT_inc(RExC_paren_name_list);
4807     } else
4808 #endif
4809         ri->name_list_idx = 0;
4810
4811     if (RExC_recurse_count) {
4812         for ( ; RExC_recurse_count ; RExC_recurse_count-- ) {
4813             const regnode *scan = RExC_recurse[RExC_recurse_count-1];
4814             ARG2L_SET( scan, RExC_open_parens[ARG(scan)-1] - scan );
4815         }
4816     }
4817     Newxz(r->offs, RExC_npar, regexp_paren_pair);
4818     /* assume we don't need to swap parens around before we match */
4819
4820     DEBUG_DUMP_r({
4821         PerlIO_printf(Perl_debug_log,"Final program:\n");
4822         regdump(r);
4823     });
4824 #ifdef RE_TRACK_PATTERN_OFFSETS
4825     DEBUG_OFFSETS_r(if (ri->u.offsets) {
4826         const U32 len = ri->u.offsets[0];
4827         U32 i;
4828         GET_RE_DEBUG_FLAGS_DECL;
4829         PerlIO_printf(Perl_debug_log, "Offsets: [%"UVuf"]\n\t", (UV)ri->u.offsets[0]);
4830         for (i = 1; i <= len; i++) {
4831             if (ri->u.offsets[i*2-1] || ri->u.offsets[i*2])
4832                 PerlIO_printf(Perl_debug_log, "%"UVuf":%"UVuf"[%"UVuf"] ",
4833                 (UV)i, (UV)ri->u.offsets[i*2-1], (UV)ri->u.offsets[i*2]);
4834             }
4835         PerlIO_printf(Perl_debug_log, "\n");
4836     });
4837 #endif
4838     return(r);
4839 }
4840
4841 #undef RE_ENGINE_PTR
4842
4843
4844 SV*
4845 Perl_reg_named_buff(pTHX_ REGEXP * const rx, SV * const key, SV * const value,
4846                     const U32 flags)
4847 {
4848     PERL_UNUSED_ARG(value);
4849
4850     if (flags & RXapif_FETCH) {
4851         return reg_named_buff_fetch(rx, key, flags);
4852     } else if (flags & (RXapif_STORE | RXapif_DELETE | RXapif_CLEAR)) {
4853         Perl_croak(aTHX_ PL_no_modify);
4854         return NULL;
4855     } else if (flags & RXapif_EXISTS) {
4856         return reg_named_buff_exists(rx, key, flags)
4857             ? &PL_sv_yes
4858             : &PL_sv_no;
4859     } else if (flags & RXapif_REGNAMES) {
4860         return reg_named_buff_all(rx, flags);
4861     } else if (flags & (RXapif_SCALAR | RXapif_REGNAMES_COUNT)) {
4862         return reg_named_buff_scalar(rx, flags);
4863     } else {
4864         Perl_croak(aTHX_ "panic: Unknown flags %d in named_buff", (int)flags);
4865         return NULL;
4866     }
4867 }
4868
4869 SV*
4870 Perl_reg_named_buff_iter(pTHX_ REGEXP * const rx, const SV * const lastkey,
4871                          const U32 flags)
4872 {
4873     PERL_UNUSED_ARG(lastkey);
4874
4875     if (flags & RXapif_FIRSTKEY)
4876         return reg_named_buff_firstkey(rx, flags);
4877     else if (flags & RXapif_NEXTKEY)
4878         return reg_named_buff_nextkey(rx, flags);
4879     else {
4880         Perl_croak(aTHX_ "panic: Unknown flags %d in named_buff_iter", (int)flags);
4881         return NULL;
4882     }
4883 }
4884
4885 SV*
4886 Perl_reg_named_buff_fetch(pTHX_ REGEXP * const rx, SV * const namesv, const U32 flags)
4887 {
4888     AV *retarray = NULL;
4889     SV *ret;
4890     if (flags & RXapif_ALL)
4891         retarray=newAV();
4892
4893     if (rx && rx->paren_names) {
4894         HE *he_str = hv_fetch_ent( rx->paren_names, namesv, 0, 0 );
4895         if (he_str) {
4896             IV i;
4897             SV* sv_dat=HeVAL(he_str);
4898             I32 *nums=(I32*)SvPVX(sv_dat);
4899             for ( i=0; i<SvIVX(sv_dat); i++ ) {
4900                 if ((I32)(rx->nparens) >= nums[i]
4901                     && rx->offs[nums[i]].start != -1
4902                     && rx->offs[nums[i]].end != -1)
4903                 {
4904                     ret = newSVpvs("");
4905                     CALLREG_NUMBUF_FETCH(rx,nums[i],ret);
4906                     if (!retarray)
4907                         return ret;
4908                 } else {
4909                     ret = newSVsv(&PL_sv_undef);
4910                 }
4911                 if (retarray) {
4912                     SvREFCNT_inc_simple_void(ret);
4913                     av_push(retarray, ret);
4914                 }
4915             }
4916             if (retarray)
4917                 return newRV((SV*)retarray);
4918         }
4919     }
4920     return NULL;
4921 }
4922
4923 bool
4924 Perl_reg_named_buff_exists(pTHX_ REGEXP * const rx, SV * const key,
4925                            const U32 flags)
4926 {
4927     if (rx && rx->paren_names) {
4928         if (flags & RXapif_ALL) {
4929             return hv_exists_ent(rx->paren_names, key, 0);
4930         } else {
4931             SV *sv = CALLREG_NAMED_BUFF_FETCH(rx, key, flags);
4932             if (sv) {
4933                 SvREFCNT_dec(sv);
4934                 return TRUE;
4935             } else {
4936                 return FALSE;
4937             }
4938         }
4939     } else {
4940         return FALSE;
4941     }
4942 }
4943
4944 SV*
4945 Perl_reg_named_buff_firstkey(pTHX_ REGEXP * const rx, const U32 flags)
4946 {
4947     (void)hv_iterinit(rx->paren_names);
4948
4949     return CALLREG_NAMED_BUFF_NEXTKEY(rx, NULL, flags & ~RXapif_FIRSTKEY);
4950 }
4951
4952 SV*
4953 Perl_reg_named_buff_nextkey(pTHX_ REGEXP * const rx, const U32 flags)
4954 {
4955     if (rx && rx->paren_names) {
4956         HV *hv = rx->paren_names;
4957         HE *temphe;
4958         while ( (temphe = hv_iternext_flags(hv,0)) ) {
4959             IV i;
4960             IV parno = 0;
4961             SV* sv_dat = HeVAL(temphe);
4962             I32 *nums = (I32*)SvPVX(sv_dat);
4963             for ( i = 0; i < SvIVX(sv_dat); i++ ) {
4964                 if ((I32)(rx->lastcloseparen) >= nums[i] &&
4965                     rx->offs[nums[i]].start != -1 &&
4966                     rx->offs[nums[i]].end != -1)
4967                 {
4968                     parno = nums[i];
4969                     break;
4970                 }
4971             }
4972             if (parno || flags & RXapif_ALL) {
4973                 STRLEN len;
4974                 char *pv = HePV(temphe, len);
4975                 return newSVpvn(pv,len);
4976             }
4977         }
4978     }
4979     return NULL;
4980 }
4981
4982 SV*
4983 Perl_reg_named_buff_scalar(pTHX_ REGEXP * const rx, const U32 flags)
4984 {
4985     SV *ret;
4986     AV *av;
4987     I32 length;
4988
4989     if (rx && rx->paren_names) {
4990         if (flags & (RXapif_ALL | RXapif_REGNAMES_COUNT)) {
4991             return newSViv(HvTOTALKEYS(rx->paren_names));
4992         } else if (flags & RXapif_ONE) {
4993             ret = CALLREG_NAMED_BUFF_ALL(rx, (flags | RXapif_REGNAMES));
4994             av = (AV*)SvRV(ret);
4995             length = av_len(av);
4996             return newSViv(length + 1);
4997         } else {
4998             Perl_croak(aTHX_ "panic: Unknown flags %d in named_buff_scalar", (int)flags);
4999             return NULL;
5000         }
5001     }
5002     return &PL_sv_undef;
5003 }
5004
5005 SV*
5006 Perl_reg_named_buff_all(pTHX_ REGEXP * const rx, const U32 flags)
5007 {
5008     AV *av = newAV();
5009
5010     if (rx && rx->paren_names) {
5011         HV *hv= rx->paren_names;
5012         HE *temphe;
5013         (void)hv_iterinit(hv);
5014         while ( (temphe = hv_iternext_flags(hv,0)) ) {
5015             IV i;
5016             IV parno = 0;
5017             SV* sv_dat = HeVAL(temphe);
5018             I32 *nums = (I32*)SvPVX(sv_dat);
5019             for ( i = 0; i < SvIVX(sv_dat); i++ ) {
5020                 if ((I32)(rx->lastcloseparen) >= nums[i] &&
5021                     rx->offs[nums[i]].start != -1 &&
5022                     rx->offs[nums[i]].end != -1)
5023                 {
5024                     parno = nums[i];
5025                     break;
5026                 }
5027             }
5028             if (parno || flags & RXapif_ALL) {
5029                 STRLEN len;
5030                 char *pv = HePV(temphe, len);
5031                 av_push(av, newSVpvn(pv,len));
5032             }
5033         }
5034     }
5035
5036     return newRV((SV*)av);
5037 }
5038
5039 void
5040 Perl_reg_numbered_buff_fetch(pTHX_ REGEXP * const rx, const I32 paren, SV * const sv)
5041 {
5042     char *s = NULL;
5043     I32 i = 0;
5044     I32 s1, t1;
5045         
5046     if (!rx->subbeg) {
5047         sv_setsv(sv,&PL_sv_undef);
5048         return;
5049     } 
5050     else               
5051     if (paren == RX_BUFF_IDX_PREMATCH && rx->offs[0].start != -1) {
5052         /* $` */
5053         i = rx->offs[0].start;
5054         s = rx->subbeg;
5055     }
5056     else 
5057     if (paren == RX_BUFF_IDX_POSTMATCH && rx->offs[0].end != -1) {
5058         /* $' */
5059         s = rx->subbeg + rx->offs[0].end;
5060         i = rx->sublen - rx->offs[0].end;
5061     } 
5062     else
5063     if ( 0 <= paren && paren <= (I32)rx->nparens &&
5064         (s1 = rx->offs[paren].start) != -1 &&
5065         (t1 = rx->offs[paren].end) != -1)
5066     {
5067         /* $& $1 ... */
5068         i = t1 - s1;
5069         s = rx->subbeg + s1;
5070     } else {
5071         sv_setsv(sv,&PL_sv_undef);
5072         return;
5073     }          
5074     assert(rx->sublen >= (s - rx->subbeg) + i );
5075     if (i >= 0) {
5076         const int oldtainted = PL_tainted;
5077         TAINT_NOT;
5078         sv_setpvn(sv, s, i);
5079         PL_tainted = oldtainted;
5080         if ( (rx->extflags & RXf_CANY_SEEN)
5081             ? (RX_MATCH_UTF8(rx)
5082                         && (!i || is_utf8_string((U8*)s, i)))
5083             : (RX_MATCH_UTF8(rx)) )
5084         {
5085             SvUTF8_on(sv);
5086         }
5087         else
5088             SvUTF8_off(sv);
5089         if (PL_tainting) {
5090             if (RX_MATCH_TAINTED(rx)) {
5091                 if (SvTYPE(sv) >= SVt_PVMG) {
5092                     MAGIC* const mg = SvMAGIC(sv);
5093                     MAGIC* mgt;
5094                     PL_tainted = 1;
5095                     SvMAGIC_set(sv, mg->mg_moremagic);
5096                     SvTAINT(sv);
5097                     if ((mgt = SvMAGIC(sv))) {
5098                         mg->mg_moremagic = mgt;
5099                         SvMAGIC_set(sv, mg);
5100                     }
5101                 } else {
5102                     PL_tainted = 1;
5103                     SvTAINT(sv);
5104                 }
5105             } else 
5106                 SvTAINTED_off(sv);
5107         }
5108     } else {
5109         sv_setsv(sv,&PL_sv_undef);
5110         return;
5111     }
5112 }
5113
5114 void
5115 Perl_reg_numbered_buff_store(pTHX_ REGEXP * const rx, const I32 paren,
5116                                                          SV const * const value)
5117 {
5118     PERL_UNUSED_ARG(rx);
5119     PERL_UNUSED_ARG(paren);
5120     PERL_UNUSED_ARG(value);
5121
5122     if (!PL_localizing)
5123         Perl_croak(aTHX_ PL_no_modify);
5124 }
5125
5126 I32
5127 Perl_reg_numbered_buff_length(pTHX_ REGEXP * const rx, const SV * const sv,
5128                               const I32 paren)
5129 {
5130     I32 i;
5131     I32 s1, t1;
5132
5133     /* Some of this code was originally in C<Perl_magic_len> in F<mg.c> */
5134         switch (paren) {
5135       /* $` / ${^PREMATCH} */
5136       case RX_BUFF_IDX_PREMATCH:
5137         if (rx->offs[0].start != -1) {
5138                         i = rx->offs[0].start;
5139                         if (i > 0) {
5140                                 s1 = 0;
5141                                 t1 = i;
5142                                 goto getlen;
5143                         }
5144             }
5145         return 0;
5146       /* $' / ${^POSTMATCH} */
5147       case RX_BUFF_IDX_POSTMATCH:
5148             if (rx->offs[0].end != -1) {
5149                         i = rx->sublen - rx->offs[0].end;
5150                         if (i > 0) {
5151                                 s1 = rx->offs[0].end;
5152                                 t1 = rx->sublen;
5153                                 goto getlen;
5154                         }
5155             }
5156         return 0;
5157       /* $& / ${^MATCH}, $1, $2, ... */
5158       default:
5159             if (paren <= (I32)rx->nparens &&
5160             (s1 = rx->offs[paren].start) != -1 &&
5161             (t1 = rx->offs[paren].end) != -1)
5162             {
5163             i = t1 - s1;
5164             goto getlen;
5165         } else {
5166             if (ckWARN(WARN_UNINITIALIZED))
5167                 report_uninit((SV*)sv);
5168             return 0;
5169         }
5170     }
5171   getlen:
5172     if (i > 0 && RX_MATCH_UTF8(rx)) {
5173         const char * const s = rx->subbeg + s1;
5174         const U8 *ep;
5175         STRLEN el;
5176
5177         i = t1 - s1;
5178         if (is_utf8_string_loclen((U8*)s, i, &ep, &el))
5179                         i = el;
5180     }
5181     return i;
5182 }
5183
5184 SV*
5185 Perl_reg_qr_package(pTHX_ REGEXP * const rx)
5186 {
5187         PERL_UNUSED_ARG(rx);
5188         return newSVpvs("Regexp");
5189 }
5190
5191 /* Scans the name of a named buffer from the pattern.
5192  * If flags is REG_RSN_RETURN_NULL returns null.
5193  * If flags is REG_RSN_RETURN_NAME returns an SV* containing the name
5194  * If flags is REG_RSN_RETURN_DATA returns the data SV* corresponding
5195  * to the parsed name as looked up in the RExC_paren_names hash.
5196  * If there is an error throws a vFAIL().. type exception.
5197  */
5198
5199 #define REG_RSN_RETURN_NULL    0
5200 #define REG_RSN_RETURN_NAME    1
5201 #define REG_RSN_RETURN_DATA    2
5202
5203 STATIC SV*
5204 S_reg_scan_name(pTHX_ RExC_state_t *pRExC_state, U32 flags) {
5205     char *name_start = RExC_parse;
5206
5207     if (isIDFIRST_lazy_if(RExC_parse, UTF)) {
5208          /* skip IDFIRST by using do...while */
5209         if (UTF)
5210             do {
5211                 RExC_parse += UTF8SKIP(RExC_parse);
5212             } while (isALNUM_utf8((U8*)RExC_parse));
5213         else
5214             do {
5215                 RExC_parse++;
5216             } while (isALNUM(*RExC_parse));
5217     }
5218
5219     if ( flags ) {
5220         SV* sv_name = sv_2mortal(Perl_newSVpvn(aTHX_ name_start,
5221             (int)(RExC_parse - name_start)));
5222         if (UTF)
5223             SvUTF8_on(sv_name);
5224         if ( flags == REG_RSN_RETURN_NAME)
5225             return sv_name;
5226         else if (flags==REG_RSN_RETURN_DATA) {
5227             HE *he_str = NULL;
5228             SV *sv_dat = NULL;
5229             if ( ! sv_name )      /* should not happen*/
5230                 Perl_croak(aTHX_ "panic: no svname in reg_scan_name");
5231             if (RExC_paren_names)
5232                 he_str = hv_fetch_ent( RExC_paren_names, sv_name, 0, 0 );
5233             if ( he_str )
5234                 sv_dat = HeVAL(he_str);
5235             if ( ! sv_dat )
5236                 vFAIL("Reference to nonexistent named group");
5237             return sv_dat;
5238         }
5239         else {
5240             Perl_croak(aTHX_ "panic: bad flag in reg_scan_name");
5241         }
5242         /* NOT REACHED */
5243     }
5244     return NULL;
5245 }
5246
5247 #define DEBUG_PARSE_MSG(funcname)     DEBUG_PARSE_r({           \
5248     int rem=(int)(RExC_end - RExC_parse);                       \
5249     int cut;                                                    \
5250     int num;                                                    \
5251     int iscut=0;                                                \
5252     if (rem>10) {                                               \
5253         rem=10;                                                 \
5254         iscut=1;                                                \
5255     }                                                           \
5256     cut=10-rem;                                                 \
5257     if (RExC_lastparse!=RExC_parse)                             \
5258         PerlIO_printf(Perl_debug_log," >%.*s%-*s",              \
5259             rem, RExC_parse,                                    \
5260             cut + 4,                                            \
5261             iscut ? "..." : "<"                                 \
5262         );                                                      \
5263     else                                                        \
5264         PerlIO_printf(Perl_debug_log,"%16s","");                \
5265                                                                 \
5266     if (SIZE_ONLY)                                              \
5267        num = RExC_size + 1;                                     \
5268     else                                                        \
5269        num=REG_NODE_NUM(RExC_emit);                             \
5270     if (RExC_lastnum!=num)                                      \
5271        PerlIO_printf(Perl_debug_log,"|%4d",num);                \
5272     else                                                        \
5273        PerlIO_printf(Perl_debug_log,"|%4s","");                 \
5274     PerlIO_printf(Perl_debug_log,"|%*s%-4s",                    \
5275         (int)((depth*2)), "",                                   \
5276         (funcname)                                              \
5277     );                                                          \
5278     RExC_lastnum=num;                                           \
5279     RExC_lastparse=RExC_parse;                                  \
5280 })
5281
5282
5283
5284 #define DEBUG_PARSE(funcname)     DEBUG_PARSE_r({           \
5285     DEBUG_PARSE_MSG((funcname));                            \
5286     PerlIO_printf(Perl_debug_log,"%4s","\n");               \
5287 })
5288 #define DEBUG_PARSE_FMT(funcname,fmt,args)     DEBUG_PARSE_r({           \
5289     DEBUG_PARSE_MSG((funcname));                            \
5290     PerlIO_printf(Perl_debug_log,fmt "\n",args);               \
5291 })
5292 /*
5293  - reg - regular expression, i.e. main body or parenthesized thing
5294  *
5295  * Caller must absorb opening parenthesis.
5296  *
5297  * Combining parenthesis handling with the base level of regular expression
5298  * is a trifle forced, but the need to tie the tails of the branches to what
5299  * follows makes it hard to avoid.
5300  */
5301 #define REGTAIL(x,y,z) regtail((x),(y),(z),depth+1)
5302 #ifdef DEBUGGING
5303 #define REGTAIL_STUDY(x,y,z) regtail_study((x),(y),(z),depth+1)
5304 #else
5305 #define REGTAIL_STUDY(x,y,z) regtail((x),(y),(z),depth+1)
5306 #endif
5307
5308 STATIC regnode *
5309 S_reg(pTHX_ RExC_state_t *pRExC_state, I32 paren, I32 *flagp,U32 depth)
5310     /* paren: Parenthesized? 0=top, 1=(, inside: changed to letter. */
5311 {
5312     dVAR;
5313     register regnode *ret;              /* Will be the head of the group. */
5314     register regnode *br;
5315     register regnode *lastbr;
5316     register regnode *ender = NULL;
5317     register I32 parno = 0;
5318     I32 flags;
5319     U32 oregflags = RExC_flags;
5320     bool have_branch = 0;
5321     bool is_open = 0;
5322     I32 freeze_paren = 0;
5323     I32 after_freeze = 0;
5324
5325     /* for (?g), (?gc), and (?o) warnings; warning
5326        about (?c) will warn about (?g) -- japhy    */
5327
5328 #define WASTED_O  0x01
5329 #define WASTED_G  0x02
5330 #define WASTED_C  0x04
5331 #define WASTED_GC (0x02|0x04)
5332     I32 wastedflags = 0x00;
5333
5334     char * parse_start = RExC_parse; /* MJD */
5335     char * const oregcomp_parse = RExC_parse;
5336
5337     GET_RE_DEBUG_FLAGS_DECL;
5338     DEBUG_PARSE("reg ");
5339
5340     *flagp = 0;                         /* Tentatively. */
5341
5342
5343     /* Make an OPEN node, if parenthesized. */
5344     if (paren) {
5345         if ( *RExC_parse == '*') { /* (*VERB:ARG) */
5346             char *start_verb = RExC_parse;
5347             STRLEN verb_len = 0;
5348             char *start_arg = NULL;
5349             unsigned char op = 0;
5350             int argok = 1;
5351             int internal_argval = 0; /* internal_argval is only useful if !argok */
5352             while ( *RExC_parse && *RExC_parse != ')' ) {
5353                 if ( *RExC_parse == ':' ) {
5354                     start_arg = RExC_parse + 1;
5355                     break;
5356                 }
5357                 RExC_parse++;
5358             }
5359             ++start_verb;
5360             verb_len = RExC_parse - start_verb;
5361             if ( start_arg ) {
5362                 RExC_parse++;
5363                 while ( *RExC_parse && *RExC_parse != ')' ) 
5364                     RExC_parse++;
5365                 if ( *RExC_parse != ')' ) 
5366                     vFAIL("Unterminated verb pattern argument");
5367                 if ( RExC_parse == start_arg )
5368                     start_arg = NULL;
5369             } else {
5370                 if ( *RExC_parse != ')' )
5371                     vFAIL("Unterminated verb pattern");
5372             }
5373             
5374             switch ( *start_verb ) {
5375             case 'A':  /* (*ACCEPT) */
5376                 if ( memEQs(start_verb,verb_len,"ACCEPT") ) {
5377                     op = ACCEPT;
5378                     internal_argval = RExC_nestroot;
5379                 }
5380                 break;
5381             case 'C':  /* (*COMMIT) */
5382                 if ( memEQs(start_verb,verb_len,"COMMIT") )
5383                     op = COMMIT;
5384                 break;
5385             case 'F':  /* (*FAIL) */
5386                 if ( verb_len==1 || memEQs(start_verb,verb_len,"FAIL") ) {
5387                     op = OPFAIL;
5388                     argok = 0;
5389                 }
5390                 break;
5391             case ':':  /* (*:NAME) */
5392             case 'M':  /* (*MARK:NAME) */
5393                 if ( verb_len==0 || memEQs(start_verb,verb_len,"MARK") ) {
5394                     op = MARKPOINT;
5395                     argok = -1;
5396                 }
5397                 break;
5398             case 'P':  /* (*PRUNE) */
5399                 if ( memEQs(start_verb,verb_len,"PRUNE") )
5400                     op = PRUNE;
5401                 break;
5402             case 'S':   /* (*SKIP) */  
5403                 if ( memEQs(start_verb,verb_len,"SKIP") ) 
5404                     op = SKIP;
5405                 break;
5406             case 'T':  /* (*THEN) */
5407                 /* [19:06] <TimToady> :: is then */
5408                 if ( memEQs(start_verb,verb_len,"THEN") ) {
5409                     op = CUTGROUP;
5410                     RExC_seen |= REG_SEEN_CUTGROUP;
5411                 }
5412                 break;
5413             }
5414             if ( ! op ) {
5415                 RExC_parse++;
5416                 vFAIL3("Unknown verb pattern '%.*s'",
5417                     verb_len, start_verb);
5418             }
5419             if ( argok ) {
5420                 if ( start_arg && internal_argval ) {
5421                     vFAIL3("Verb pattern '%.*s' may not have an argument",
5422                         verb_len, start_verb); 
5423                 } else if ( argok < 0 && !start_arg ) {
5424                     vFAIL3("Verb pattern '%.*s' has a mandatory argument",
5425                         verb_len, start_verb);    
5426                 } else {
5427                     ret = reganode(pRExC_state, op, internal_argval);
5428                     if ( ! internal_argval && ! SIZE_ONLY ) {
5429                         if (start_arg) {
5430                             SV *sv = newSVpvn( start_arg, RExC_parse - start_arg);
5431                             ARG(ret) = add_data( pRExC_state, 1, "S" );
5432                             RExC_rxi->data->data[ARG(ret)]=(void*)sv;
5433                             ret->flags = 0;
5434                         } else {
5435                             ret->flags = 1; 
5436                         }
5437                     }               
5438                 }
5439                 if (!internal_argval)
5440                     RExC_seen |= REG_SEEN_VERBARG;
5441             } else if ( start_arg ) {
5442                 vFAIL3("Verb pattern '%.*s' may not have an argument",
5443                         verb_len, start_verb);    
5444             } else {
5445                 ret = reg_node(pRExC_state, op);
5446             }
5447             nextchar(pRExC_state);
5448             return ret;
5449         } else 
5450         if (*RExC_parse == '?') { /* (?...) */
5451             bool is_logical = 0;
5452             const char * const seqstart = RExC_parse;
5453
5454             RExC_parse++;
5455             paren = *RExC_parse++;
5456             ret = NULL;                 /* For look-ahead/behind. */
5457             switch (paren) {
5458
5459             case 'P':   /* (?P...) variants for those used to PCRE/Python */
5460                 paren = *RExC_parse++;
5461                 if ( paren == '<')         /* (?P<...>) named capture */
5462                     goto named_capture;
5463                 else if (paren == '>') {   /* (?P>name) named recursion */
5464                     goto named_recursion;
5465                 }
5466                 else if (paren == '=') {   /* (?P=...)  named backref */
5467                     /* this pretty much dupes the code for \k<NAME> in regatom(), if
5468                        you change this make sure you change that */
5469                     char* name_start = RExC_parse;
5470                     U32 num = 0;
5471                     SV *sv_dat = reg_scan_name(pRExC_state,
5472                         SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
5473                     if (RExC_parse == name_start || *RExC_parse != ')')
5474                         vFAIL2("Sequence %.3s... not terminated",parse_start);
5475
5476                     if (!SIZE_ONLY) {
5477                         num = add_data( pRExC_state, 1, "S" );
5478                         RExC_rxi->data->data[num]=(void*)sv_dat;
5479                         SvREFCNT_inc_simple_void(sv_dat);
5480                     }
5481                     RExC_sawback = 1;
5482                     ret = reganode(pRExC_state,
5483                            (U8)(FOLD ? (LOC ? NREFFL : NREFF) : NREF),
5484                            num);
5485                     *flagp |= HASWIDTH;
5486
5487                     Set_Node_Offset(ret, parse_start+1);
5488                     Set_Node_Cur_Length(ret); /* MJD */
5489
5490                     nextchar(pRExC_state);
5491                     return ret;
5492                 }
5493                 RExC_parse++;
5494                 vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
5495                 /*NOTREACHED*/
5496             case '<':           /* (?<...) */
5497                 if (*RExC_parse == '!')
5498                     paren = ',';
5499                 else if (*RExC_parse != '=') 
5500               named_capture:
5501                 {               /* (?<...>) */
5502                     char *name_start;
5503                     SV *svname;
5504                     paren= '>';
5505             case '\'':          /* (?'...') */
5506                     name_start= RExC_parse;
5507                     svname = reg_scan_name(pRExC_state,
5508                         SIZE_ONLY ?  /* reverse test from the others */
5509                         REG_RSN_RETURN_NAME : 
5510                         REG_RSN_RETURN_NULL);
5511                     if (RExC_parse == name_start) {
5512                         RExC_parse++;
5513                         vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
5514                         /*NOTREACHED*/
5515                     }
5516                     if (*RExC_parse != paren)
5517                         vFAIL2("Sequence (?%c... not terminated",
5518                             paren=='>' ? '<' : paren);
5519                     if (SIZE_ONLY) {
5520                         HE *he_str;
5521                         SV *sv_dat = NULL;
5522                         if (!svname) /* shouldnt happen */
5523                             Perl_croak(aTHX_
5524                                 "panic: reg_scan_name returned NULL");
5525                         if (!RExC_paren_names) {
5526                             RExC_paren_names= newHV();
5527                             sv_2mortal((SV*)RExC_paren_names);
5528 #ifdef DEBUGGING
5529                             RExC_paren_name_list= newAV();
5530                             sv_2mortal((SV*)RExC_paren_name_list);
5531 #endif
5532                         }
5533                         he_str = hv_fetch_ent( RExC_paren_names, svname, 1, 0 );
5534                         if ( he_str )
5535                             sv_dat = HeVAL(he_str);
5536                         if ( ! sv_dat ) {
5537                             /* croak baby croak */
5538                             Perl_croak(aTHX_
5539                                 "panic: paren_name hash element allocation failed");
5540                         } else if ( SvPOK(sv_dat) ) {
5541                             /* (?|...) can mean we have dupes so scan to check
5542                                its already been stored. Maybe a flag indicating
5543                                we are inside such a construct would be useful,
5544                                but the arrays are likely to be quite small, so
5545                                for now we punt -- dmq */
5546                             IV count = SvIV(sv_dat);
5547                             I32 *pv = (I32*)SvPVX(sv_dat);
5548                             IV i;
5549                             for ( i = 0 ; i < count ; i++ ) {
5550                                 if ( pv[i] == RExC_npar ) {
5551                                     count = 0;
5552                                     break;
5553                                 }
5554                             }
5555                             if ( count ) {
5556                                 pv = (I32*)SvGROW(sv_dat, SvCUR(sv_dat) + sizeof(I32)+1);
5557                                 SvCUR_set(sv_dat, SvCUR(sv_dat) + sizeof(I32));
5558                                 pv[count] = RExC_npar;
5559                                 SvIVX(sv_dat)++;
5560                             }
5561                         } else {
5562                             (void)SvUPGRADE(sv_dat,SVt_PVNV);
5563                             sv_setpvn(sv_dat, (char *)&(RExC_npar), sizeof(I32));
5564                             SvIOK_on(sv_dat);
5565                             SvIVX(sv_dat)= 1;
5566                         }
5567 #ifdef DEBUGGING
5568                         if (!av_store(RExC_paren_name_list, RExC_npar, SvREFCNT_inc(svname)))
5569                             SvREFCNT_dec(svname);
5570 #endif
5571
5572                         /*sv_dump(sv_dat);*/
5573                     }
5574                     nextchar(pRExC_state);
5575                     paren = 1;
5576                     goto capturing_parens;
5577                 }
5578                 RExC_seen |= REG_SEEN_LOOKBEHIND;
5579                 RExC_parse++;
5580             case '=':           /* (?=...) */
5581             case '!':           /* (?!...) */
5582                 RExC_seen_zerolen++;
5583                 if (*RExC_parse == ')') {
5584                     ret=reg_node(pRExC_state, OPFAIL);
5585                     nextchar(pRExC_state);
5586                     return ret;
5587                 }
5588                 break;
5589             case '|':           /* (?|...) */
5590                 /* branch reset, behave like a (?:...) except that
5591                    buffers in alternations share the same numbers */
5592                 paren = ':'; 
5593                 after_freeze = freeze_paren = RExC_npar;
5594                 break;
5595             case ':':           /* (?:...) */
5596             case '>':           /* (?>...) */
5597                 break;
5598             case '$':           /* (?$...) */
5599             case '@':           /* (?@...) */
5600                 vFAIL2("Sequence (?%c...) not implemented", (int)paren);
5601                 break;
5602             case '#':           /* (?#...) */
5603                 while (*RExC_parse && *RExC_parse != ')')
5604                     RExC_parse++;
5605                 if (*RExC_parse != ')')
5606                     FAIL("Sequence (?#... not terminated");
5607                 nextchar(pRExC_state);
5608                 *flagp = TRYAGAIN;
5609                 return NULL;
5610             case '0' :           /* (?0) */
5611             case 'R' :           /* (?R) */
5612                 if (*RExC_parse != ')')
5613                     FAIL("Sequence (?R) not terminated");
5614                 ret = reg_node(pRExC_state, GOSTART);
5615                 *flagp |= POSTPONED;
5616                 nextchar(pRExC_state);
5617                 return ret;
5618                 /*notreached*/
5619             { /* named and numeric backreferences */
5620                 I32 num;
5621             case '&':            /* (?&NAME) */
5622                 parse_start = RExC_parse - 1;
5623               named_recursion:
5624                 {
5625                     SV *sv_dat = reg_scan_name(pRExC_state,
5626                         SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
5627                      num = sv_dat ? *((I32 *)SvPVX(sv_dat)) : 0;
5628                 }
5629                 goto gen_recurse_regop;
5630                 /* NOT REACHED */
5631             case '+':
5632                 if (!(RExC_parse[0] >= '1' && RExC_parse[0] <= '9')) {
5633                     RExC_parse++;
5634                     vFAIL("Illegal pattern");
5635                 }
5636                 goto parse_recursion;
5637                 /* NOT REACHED*/
5638             case '-': /* (?-1) */
5639                 if (!(RExC_parse[0] >= '1' && RExC_parse[0] <= '9')) {
5640                     RExC_parse--; /* rewind to let it be handled later */
5641                     goto parse_flags;
5642                 } 
5643                 /*FALLTHROUGH */
5644             case '1': case '2': case '3': case '4': /* (?1) */
5645             case '5': case '6': case '7': case '8': case '9':
5646                 RExC_parse--;
5647               parse_recursion:
5648                 num = atoi(RExC_parse);
5649                 parse_start = RExC_parse - 1; /* MJD */
5650                 if (*RExC_parse == '-')
5651                     RExC_parse++;
5652                 while (isDIGIT(*RExC_parse))
5653                         RExC_parse++;
5654                 if (*RExC_parse!=')') 
5655                     vFAIL("Expecting close bracket");
5656                         
5657               gen_recurse_regop:
5658                 if ( paren == '-' ) {
5659                     /*
5660                     Diagram of capture buffer numbering.
5661                     Top line is the normal capture buffer numbers
5662                     Botton line is the negative indexing as from
5663                     the X (the (?-2))
5664
5665                     +   1 2    3 4 5 X          6 7
5666                        /(a(x)y)(a(b(c(?-2)d)e)f)(g(h))/
5667                     -   5 4    3 2 1 X          x x
5668
5669                     */
5670                     num = RExC_npar + num;
5671                     if (num < 1)  {
5672                         RExC_parse++;
5673                         vFAIL("Reference to nonexistent group");
5674                     }
5675                 } else if ( paren == '+' ) {
5676                     num = RExC_npar + num - 1;
5677                 }
5678
5679                 ret = reganode(pRExC_state, GOSUB, num);
5680                 if (!SIZE_ONLY) {
5681                     if (num > (I32)RExC_rx->nparens) {
5682                         RExC_parse++;
5683                         vFAIL("Reference to nonexistent group");
5684                     }
5685                     ARG2L_SET( ret, RExC_recurse_count++);
5686                     RExC_emit++;
5687                     DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log,
5688                         "Recurse #%"UVuf" to %"IVdf"\n", (UV)ARG(ret), (IV)ARG2L(ret)));
5689                 } else {
5690                     RExC_size++;
5691                 }
5692                 RExC_seen |= REG_SEEN_RECURSE;
5693                 Set_Node_Length(ret, 1 + regarglen[OP(ret)]); /* MJD */
5694                 Set_Node_Offset(ret, parse_start); /* MJD */
5695
5696                 *flagp |= POSTPONED;
5697                 nextchar(pRExC_state);
5698                 return ret;
5699             } /* named and numeric backreferences */
5700             /* NOT REACHED */
5701
5702             case '?':           /* (??...) */
5703                 is_logical = 1;
5704                 if (*RExC_parse != '{') {
5705                     RExC_parse++;
5706                     vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
5707                     /*NOTREACHED*/
5708                 }
5709                 *flagp |= POSTPONED;
5710                 paren = *RExC_parse++;
5711                 /* FALL THROUGH */
5712             case '{':           /* (?{...}) */
5713             {
5714                 I32 count = 1;
5715                 U32 n = 0;
5716                 char c;
5717                 char *s = RExC_parse;
5718
5719                 RExC_seen_zerolen++;
5720                 RExC_seen |= REG_SEEN_EVAL;
5721                 while (count && (c = *RExC_parse)) {
5722                     if (c == '\\') {
5723                         if (RExC_parse[1])
5724                             RExC_parse++;
5725                     }
5726                     else if (c == '{')
5727                         count++;
5728                     else if (c == '}')
5729                         count--;
5730                     RExC_parse++;
5731                 }
5732                 if (*RExC_parse != ')') {
5733                     RExC_parse = s;             
5734                     vFAIL("Sequence (?{...}) not terminated or not {}-balanced");
5735                 }
5736                 if (!SIZE_ONLY) {
5737                     PAD *pad;
5738                     OP_4tree *sop, *rop;
5739                     SV * const sv = newSVpvn(s, RExC_parse - 1 - s);
5740
5741                     ENTER;
5742                     Perl_save_re_context(aTHX);
5743                     rop = sv_compile_2op(sv, &sop, "re", &pad);
5744                     sop->op_private |= OPpREFCOUNTED;
5745                     /* re_dup will OpREFCNT_inc */
5746                     OpREFCNT_set(sop, 1);
5747                     LEAVE;
5748
5749                     n = add_data(pRExC_state, 3, "nop");
5750                     RExC_rxi->data->data[n] = (void*)rop;
5751                     RExC_rxi->data->data[n+1] = (void*)sop;
5752                     RExC_rxi->data->data[n+2] = (void*)pad;
5753                     SvREFCNT_dec(sv);
5754                 }
5755                 else {                                          /* First pass */
5756                     if (PL_reginterp_cnt < ++RExC_seen_evals
5757                         && IN_PERL_RUNTIME)
5758                         /* No compiled RE interpolated, has runtime
5759                            components ===> unsafe.  */
5760                         FAIL("Eval-group not allowed at runtime, use re 'eval'");
5761                     if (PL_tainting && PL_tainted)
5762                         FAIL("Eval-group in insecure regular expression");
5763 #if PERL_VERSION > 8
5764                     if (IN_PERL_COMPILETIME)
5765                         PL_cv_has_eval = 1;
5766 #endif
5767                 }
5768
5769                 nextchar(pRExC_state);
5770                 if (is_logical) {
5771                     ret = reg_node(pRExC_state, LOGICAL);
5772                     if (!SIZE_ONLY)
5773                         ret->flags = 2;
5774                     REGTAIL(pRExC_state, ret, reganode(pRExC_state, EVAL, n));
5775                     /* deal with the length of this later - MJD */
5776                     return ret;
5777                 }
5778                 ret = reganode(pRExC_state, EVAL, n);
5779                 Set_Node_Length(ret, RExC_parse - parse_start + 1);
5780                 Set_Node_Offset(ret, parse_start);
5781                 return ret;
5782             }
5783             case '(':           /* (?(?{...})...) and (?(?=...)...) */
5784             {
5785                 int is_define= 0;
5786                 if (RExC_parse[0] == '?') {        /* (?(?...)) */
5787                     if (RExC_parse[1] == '=' || RExC_parse[1] == '!'
5788                         || RExC_parse[1] == '<'
5789                         || RExC_parse[1] == '{') { /* Lookahead or eval. */
5790                         I32 flag;
5791                         
5792                         ret = reg_node(pRExC_state, LOGICAL);
5793                         if (!SIZE_ONLY)
5794                             ret->flags = 1;
5795                         REGTAIL(pRExC_state, ret, reg(pRExC_state, 1, &flag,depth+1));
5796                         goto insert_if;
5797                     }
5798                 }
5799                 else if ( RExC_parse[0] == '<'     /* (?(<NAME>)...) */
5800                          || RExC_parse[0] == '\'' ) /* (?('NAME')...) */
5801                 {
5802                     char ch = RExC_parse[0] == '<' ? '>' : '\'';
5803                     char *name_start= RExC_parse++;
5804                     U32 num = 0;
5805                     SV *sv_dat=reg_scan_name(pRExC_state,
5806                         SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
5807                     if (RExC_parse == name_start || *RExC_parse != ch)
5808                         vFAIL2("Sequence (?(%c... not terminated",
5809                             (ch == '>' ? '<' : ch));
5810                     RExC_parse++;
5811                     if (!SIZE_ONLY) {
5812                         num = add_data( pRExC_state, 1, "S" );
5813                         RExC_rxi->data->data[num]=(void*)sv_dat;
5814                         SvREFCNT_inc_simple_void(sv_dat);
5815                     }
5816                     ret = reganode(pRExC_state,NGROUPP,num);
5817                     goto insert_if_check_paren;
5818                 }
5819                 else if (RExC_parse[0] == 'D' &&
5820                          RExC_parse[1] == 'E' &&
5821                          RExC_parse[2] == 'F' &&
5822                          RExC_parse[3] == 'I' &&
5823                          RExC_parse[4] == 'N' &&
5824                          RExC_parse[5] == 'E')
5825                 {
5826                     ret = reganode(pRExC_state,DEFINEP,0);
5827                     RExC_parse +=6 ;
5828                     is_define = 1;
5829                     goto insert_if_check_paren;
5830                 }
5831                 else if (RExC_parse[0] == 'R') {
5832                     RExC_parse++;
5833                     parno = 0;
5834                     if (RExC_parse[0] >= '1' && RExC_parse[0] <= '9' ) {
5835                         parno = atoi(RExC_parse++);
5836                         while (isDIGIT(*RExC_parse))
5837                             RExC_parse++;
5838                     } else if (RExC_parse[0] == '&') {
5839                         SV *sv_dat;
5840                         RExC_parse++;
5841                         sv_dat = reg_scan_name(pRExC_state,
5842                             SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
5843                         parno = sv_dat ? *((I32 *)SvPVX(sv_dat)) : 0;
5844                     }
5845                     ret = reganode(pRExC_state,INSUBP,parno); 
5846                     goto insert_if_check_paren;
5847                 }
5848                 else if (RExC_parse[0] >= '1' && RExC_parse[0] <= '9' ) {
5849                     /* (?(1)...) */
5850                     char c;
5851                     parno = atoi(RExC_parse++);
5852
5853                     while (isDIGIT(*RExC_parse))
5854                         RExC_parse++;
5855                     ret = reganode(pRExC_state, GROUPP, parno);
5856
5857                  insert_if_check_paren:
5858                     if ((c = *nextchar(pRExC_state)) != ')')
5859                         vFAIL("Switch condition not recognized");
5860                   insert_if:
5861                     REGTAIL(pRExC_state, ret, reganode(pRExC_state, IFTHEN, 0));
5862                     br = regbranch(pRExC_state, &flags, 1,depth+1);
5863                     if (br == NULL)
5864                         br = reganode(pRExC_state, LONGJMP, 0);
5865                     else
5866                         REGTAIL(pRExC_state, br, reganode(pRExC_state, LONGJMP, 0));
5867                     c = *nextchar(pRExC_state);
5868                     if (flags&HASWIDTH)
5869                         *flagp |= HASWIDTH;
5870                     if (c == '|') {
5871                         if (is_define) 
5872                             vFAIL("(?(DEFINE)....) does not allow branches");
5873                         lastbr = reganode(pRExC_state, IFTHEN, 0); /* Fake one for optimizer. */
5874                         regbranch(pRExC_state, &flags, 1,depth+1);
5875                         REGTAIL(pRExC_state, ret, lastbr);
5876                         if (flags&HASWIDTH)
5877                             *flagp |= HASWIDTH;
5878                         c = *nextchar(pRExC_state);
5879                     }
5880                     else
5881                         lastbr = NULL;
5882                     if (c != ')')
5883                         vFAIL("Switch (?(condition)... contains too many branches");
5884                     ender = reg_node(pRExC_state, TAIL);
5885                     REGTAIL(pRExC_state, br, ender);
5886                     if (lastbr) {
5887                         REGTAIL(pRExC_state, lastbr, ender);
5888                         REGTAIL(pRExC_state, NEXTOPER(NEXTOPER(lastbr)), ender);
5889                     }
5890                     else
5891                         REGTAIL(pRExC_state, ret, ender);
5892                     RExC_size++; /* XXX WHY do we need this?!!
5893                                     For large programs it seems to be required
5894                                     but I can't figure out why. -- dmq*/
5895                     return ret;
5896                 }
5897                 else {
5898                     vFAIL2("Unknown switch condition (?(%.2s", RExC_parse);
5899                 }
5900             }
5901             case 0:
5902                 RExC_parse--; /* for vFAIL to print correctly */
5903                 vFAIL("Sequence (? incomplete");
5904                 break;
5905             default:
5906                 --RExC_parse;
5907                 parse_flags:      /* (?i) */  
5908             {
5909                 U32 posflags = 0, negflags = 0;
5910                 U32 *flagsp = &posflags;
5911
5912                 while (*RExC_parse) {
5913                     /* && strchr("iogcmsx", *RExC_parse) */
5914                     /* (?g), (?gc) and (?o) are useless here
5915                        and must be globally applied -- japhy */
5916                     switch (*RExC_parse) {
5917                     CASE_STD_PMMOD_FLAGS_PARSE_SET(flagsp);
5918                     case ONCE_PAT_MOD: /* 'o' */
5919                     case GLOBAL_PAT_MOD: /* 'g' */
5920                         if (SIZE_ONLY && ckWARN(WARN_REGEXP)) {
5921                             const I32 wflagbit = *RExC_parse == 'o' ? WASTED_O : WASTED_G;
5922                             if (! (wastedflags & wflagbit) ) {
5923                                 wastedflags |= wflagbit;
5924                                 vWARN5(
5925                                     RExC_parse + 1,
5926                                     "Useless (%s%c) - %suse /%c modifier",
5927                                     flagsp == &negflags ? "?-" : "?",
5928                                     *RExC_parse,
5929                                     flagsp == &negflags ? "don't " : "",
5930                                     *RExC_parse
5931                                 );
5932                             }
5933                         }
5934                         break;
5935                         
5936                     case CONTINUE_PAT_MOD: /* 'c' */
5937                         if (SIZE_ONLY && ckWARN(WARN_REGEXP)) {
5938                             if (! (wastedflags & WASTED_C) ) {
5939                                 wastedflags |= WASTED_GC;
5940                                 vWARN3(
5941                                     RExC_parse + 1,
5942                                     "Useless (%sc) - %suse /gc modifier",
5943                                     flagsp == &negflags ? "?-" : "?",
5944                                     flagsp == &negflags ? "don't " : ""
5945                                 );
5946                             }
5947                         }
5948                         break;
5949                     case KEEPCOPY_PAT_MOD: /* 'p' */
5950                         if (flagsp == &negflags) {
5951                             if (SIZE_ONLY && ckWARN(WARN_REGEXP))
5952                                 vWARN(RExC_parse + 1,"Useless use of (?-p)");
5953                         } else {
5954                             *flagsp |= RXf_PMf_KEEPCOPY;
5955                         }
5956                         break;
5957                     case '-':
5958                         if (flagsp == &negflags) {
5959                             RExC_parse++;
5960                             vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
5961                             /*NOTREACHED*/
5962                         }
5963                         flagsp = &negflags;
5964                         wastedflags = 0;  /* reset so (?g-c) warns twice */
5965                         break;
5966                     case ':':
5967                         paren = ':';
5968                         /*FALLTHROUGH*/
5969                     case ')':
5970                         RExC_flags |= posflags;
5971                         RExC_flags &= ~negflags;
5972                         if (paren != ':') {
5973                             oregflags |= posflags;
5974                             oregflags &= ~negflags;
5975                         }
5976                         nextchar(pRExC_state);
5977                         if (paren != ':') {
5978                             *flagp = TRYAGAIN;
5979                             return NULL;
5980                         } else {
5981                             ret = NULL;
5982                             goto parse_rest;
5983                         }
5984                         /*NOTREACHED*/
5985                     default:
5986                         RExC_parse++;
5987                         vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
5988                         /*NOTREACHED*/
5989                     }                           
5990                     ++RExC_parse;
5991                 }
5992             }} /* one for the default block, one for the switch */
5993         }
5994         else {                  /* (...) */
5995           capturing_parens:
5996             parno = RExC_npar;
5997             RExC_npar++;
5998             
5999             ret = reganode(pRExC_state, OPEN, parno);
6000             if (!SIZE_ONLY ){
6001                 if (!RExC_nestroot) 
6002                     RExC_nestroot = parno;
6003                 if (RExC_seen & REG_SEEN_RECURSE
6004                     && !RExC_open_parens[parno-1])
6005                 {
6006                     DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log,
6007                         "Setting open paren #%"IVdf" to %d\n", 
6008                         (IV)parno, REG_NODE_NUM(ret)));
6009                     RExC_open_parens[parno-1]= ret;
6010                 }
6011             }
6012             Set_Node_Length(ret, 1); /* MJD */
6013             Set_Node_Offset(ret, RExC_parse); /* MJD */
6014             is_open = 1;
6015         }
6016     }
6017     else                        /* ! paren */
6018         ret = NULL;
6019    
6020    parse_rest:
6021     /* Pick up the branches, linking them together. */
6022     parse_start = RExC_parse;   /* MJD */
6023     br = regbranch(pRExC_state, &flags, 1,depth+1);
6024     /*     branch_len = (paren != 0); */
6025
6026     if (br == NULL)
6027         return(NULL);
6028     if (*RExC_parse == '|') {
6029         if (!SIZE_ONLY && RExC_extralen) {
6030             reginsert(pRExC_state, BRANCHJ, br, depth+1);
6031         }
6032         else {                  /* MJD */
6033             reginsert(pRExC_state, BRANCH, br, depth+1);
6034             Set_Node_Length(br, paren != 0);
6035             Set_Node_Offset_To_R(br-RExC_emit_start, parse_start-RExC_start);
6036         }
6037         have_branch = 1;
6038         if (SIZE_ONLY)
6039             RExC_extralen += 1;         /* For BRANCHJ-BRANCH. */
6040     }
6041     else if (paren == ':') {
6042         *flagp |= flags&SIMPLE;
6043     }
6044     if (is_open) {                              /* Starts with OPEN. */
6045         REGTAIL(pRExC_state, ret, br);          /* OPEN -> first. */
6046     }
6047     else if (paren != '?')              /* Not Conditional */
6048         ret = br;
6049     *flagp |= flags & (SPSTART | HASWIDTH | POSTPONED);
6050     lastbr = br;
6051     while (*RExC_parse == '|') {
6052         if (!SIZE_ONLY && RExC_extralen) {
6053             ender = reganode(pRExC_state, LONGJMP,0);
6054             REGTAIL(pRExC_state, NEXTOPER(NEXTOPER(lastbr)), ender); /* Append to the previous. */
6055         }
6056         if (SIZE_ONLY)
6057             RExC_extralen += 2;         /* Account for LONGJMP. */
6058         nextchar(pRExC_state);
6059         if (freeze_paren) {
6060             if (RExC_npar > after_freeze)
6061                 after_freeze = RExC_npar;
6062             RExC_npar = freeze_paren;       
6063         }
6064         br = regbranch(pRExC_state, &flags, 0, depth+1);
6065
6066         if (br == NULL)
6067             return(NULL);
6068         REGTAIL(pRExC_state, lastbr, br);               /* BRANCH -> BRANCH. */
6069         lastbr = br;
6070         *flagp |= flags & (SPSTART | HASWIDTH | POSTPONED);
6071     }
6072
6073     if (have_branch || paren != ':') {
6074         /* Make a closing node, and hook it on the end. */
6075         switch (paren) {
6076         case ':':
6077             ender = reg_node(pRExC_state, TAIL);
6078             break;
6079         case 1:
6080             ender = reganode(pRExC_state, CLOSE, parno);
6081             if (!SIZE_ONLY && RExC_seen & REG_SEEN_RECURSE) {
6082                 DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log,
6083                         "Setting close paren #%"IVdf" to %d\n", 
6084                         (IV)parno, REG_NODE_NUM(ender)));
6085                 RExC_close_parens[parno-1]= ender;
6086                 if (RExC_nestroot == parno) 
6087                     RExC_nestroot = 0;
6088             }       
6089             Set_Node_Offset(ender,RExC_parse+1); /* MJD */
6090             Set_Node_Length(ender,1); /* MJD */
6091             break;
6092         case '<':
6093         case ',':
6094         case '=':
6095         case '!':
6096             *flagp &= ~HASWIDTH;
6097             /* FALL THROUGH */
6098         case '>':
6099             ender = reg_node(pRExC_state, SUCCEED);
6100             break;
6101         case 0:
6102             ender = reg_node(pRExC_state, END);
6103             if (!SIZE_ONLY) {
6104                 assert(!RExC_opend); /* there can only be one! */
6105                 RExC_opend = ender;
6106             }
6107             break;
6108         }
6109         REGTAIL(pRExC_state, lastbr, ender);
6110
6111         if (have_branch && !SIZE_ONLY) {
6112             if (depth==1)
6113                 RExC_seen |= REG_TOP_LEVEL_BRANCHES;
6114
6115             /* Hook the tails of the branches to the closing node. */
6116             for (br = ret; br; br = regnext(br)) {
6117                 const U8 op = PL_regkind[OP(br)];
6118                 if (op == BRANCH) {
6119                     REGTAIL_STUDY(pRExC_state, NEXTOPER(br), ender);
6120                 }
6121                 else if (op == BRANCHJ) {
6122                     REGTAIL_STUDY(pRExC_state, NEXTOPER(NEXTOPER(br)), ender);
6123                 }
6124             }
6125         }
6126     }
6127
6128     {
6129         const char *p;
6130         static const char parens[] = "=!<,>";
6131
6132         if (paren && (p = strchr(parens, paren))) {
6133             U8 node = ((p - parens) % 2) ? UNLESSM : IFMATCH;
6134             int flag = (p - parens) > 1;
6135
6136             if (paren == '>')
6137                 node = SUSPEND, flag = 0;
6138             reginsert(pRExC_state, node,ret, depth+1);
6139             Set_Node_Cur_Length(ret);
6140             Set_Node_Offset(ret, parse_start + 1);
6141             ret->flags = flag;
6142             REGTAIL_STUDY(pRExC_state, ret, reg_node(pRExC_state, TAIL));
6143         }
6144     }
6145
6146     /* Check for proper termination. */
6147     if (paren) {
6148         RExC_flags = oregflags;
6149         if (RExC_parse >= RExC_end || *nextchar(pRExC_state) != ')') {
6150             RExC_parse = oregcomp_parse;
6151             vFAIL("Unmatched (");
6152         }
6153     }
6154     else if (!paren && RExC_parse < RExC_end) {
6155         if (*RExC_parse == ')') {
6156             RExC_parse++;
6157             vFAIL("Unmatched )");
6158         }
6159         else
6160             FAIL("Junk on end of regexp");      /* "Can't happen". */
6161         /* NOTREACHED */
6162     }
6163     if (after_freeze)
6164         RExC_npar = after_freeze;
6165     return(ret);
6166 }
6167
6168 /*
6169  - regbranch - one alternative of an | operator
6170  *
6171  * Implements the concatenation operator.
6172  */
6173 STATIC regnode *
6174 S_regbranch(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, I32 first, U32 depth)
6175 {
6176     dVAR;
6177     register regnode *ret;
6178     register regnode *chain = NULL;
6179     register regnode *latest;
6180     I32 flags = 0, c = 0;
6181     GET_RE_DEBUG_FLAGS_DECL;
6182     DEBUG_PARSE("brnc");
6183
6184     if (first)
6185         ret = NULL;
6186     else {
6187         if (!SIZE_ONLY && RExC_extralen)
6188             ret = reganode(pRExC_state, BRANCHJ,0);
6189         else {
6190             ret = reg_node(pRExC_state, BRANCH);
6191             Set_Node_Length(ret, 1);
6192         }
6193     }
6194         
6195     if (!first && SIZE_ONLY)
6196         RExC_extralen += 1;                     /* BRANCHJ */
6197
6198     *flagp = WORST;                     /* Tentatively. */
6199
6200     RExC_parse--;
6201     nextchar(pRExC_state);
6202     while (RExC_parse < RExC_end && *RExC_parse != '|' && *RExC_parse != ')') {
6203         flags &= ~TRYAGAIN;
6204         latest = regpiece(pRExC_state, &flags,depth+1);
6205         if (latest == NULL) {
6206             if (flags & TRYAGAIN)
6207                 continue;
6208             return(NULL);
6209         }
6210         else if (ret == NULL)
6211             ret = latest;
6212         *flagp |= flags&(HASWIDTH|POSTPONED);
6213         if (chain == NULL)      /* First piece. */
6214             *flagp |= flags&SPSTART;
6215         else {
6216             RExC_naughty++;
6217             REGTAIL(pRExC_state, chain, latest);
6218         }
6219         chain = latest;
6220         c++;
6221     }
6222     if (chain == NULL) {        /* Loop ran zero times. */
6223         chain = reg_node(pRExC_state, NOTHING);
6224         if (ret == NULL)
6225             ret = chain;
6226     }
6227     if (c == 1) {
6228         *flagp |= flags&SIMPLE;
6229     }
6230
6231     return ret;
6232 }
6233
6234 /*
6235  - regpiece - something followed by possible [*+?]
6236  *
6237  * Note that the branching code sequences used for ? and the general cases
6238  * of * and + are somewhat optimized:  they use the same NOTHING node as
6239  * both the endmarker for their branch list and the body of the last branch.
6240  * It might seem that this node could be dispensed with entirely, but the
6241  * endmarker role is not redundant.
6242  */
6243 STATIC regnode *
6244 S_regpiece(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth)
6245 {
6246     dVAR;
6247     register regnode *ret;
6248     register char op;
6249     register char *next;
6250     I32 flags;
6251     const char * const origparse = RExC_parse;
6252     I32 min;
6253     I32 max = REG_INFTY;
6254     char *parse_start;
6255     const char *maxpos = NULL;
6256     GET_RE_DEBUG_FLAGS_DECL;
6257     DEBUG_PARSE("piec");
6258
6259     ret = regatom(pRExC_state, &flags,depth+1);
6260     if (ret == NULL) {
6261         if (flags & TRYAGAIN)
6262             *flagp |= TRYAGAIN;
6263         return(NULL);
6264     }
6265
6266     op = *RExC_parse;
6267
6268     if (op == '{' && regcurly(RExC_parse)) {
6269         maxpos = NULL;
6270         parse_start = RExC_parse; /* MJD */
6271         next = RExC_parse + 1;
6272         while (isDIGIT(*next) || *next == ',') {
6273             if (*next == ',') {
6274                 if (maxpos)
6275                     break;
6276                 else
6277                     maxpos = next;
6278             }
6279             next++;
6280         }
6281         if (*next == '}') {             /* got one */
6282             if (!maxpos)
6283                 maxpos = next;
6284             RExC_parse++;
6285             min = atoi(RExC_parse);
6286             if (*maxpos == ',')
6287                 maxpos++;
6288             else
6289                 maxpos = RExC_parse;
6290             max = atoi(maxpos);
6291             if (!max && *maxpos != '0')
6292                 max = REG_INFTY;                /* meaning "infinity" */
6293             else if (max >= REG_INFTY)
6294                 vFAIL2("Quantifier in {,} bigger than %d", REG_INFTY - 1);
6295             RExC_parse = next;
6296             nextchar(pRExC_state);
6297
6298         do_curly:
6299             if ((flags&SIMPLE)) {
6300                 RExC_naughty += 2 + RExC_naughty / 2;
6301                 reginsert(pRExC_state, CURLY, ret, depth+1);
6302                 Set_Node_Offset(ret, parse_start+1); /* MJD */
6303                 Set_Node_Cur_Length(ret);
6304             }
6305             else {
6306                 regnode * const w = reg_node(pRExC_state, WHILEM);
6307
6308                 w->flags = 0;
6309                 REGTAIL(pRExC_state, ret, w);
6310                 if (!SIZE_ONLY && RExC_extralen) {
6311                     reginsert(pRExC_state, LONGJMP,ret, depth+1);
6312                     reginsert(pRExC_state, NOTHING,ret, depth+1);
6313                     NEXT_OFF(ret) = 3;  /* Go over LONGJMP. */
6314                 }
6315                 reginsert(pRExC_state, CURLYX,ret, depth+1);
6316                                 /* MJD hk */
6317                 Set_Node_Offset(ret, parse_start+1);
6318                 Set_Node_Length(ret,
6319                                 op == '{' ? (RExC_parse - parse_start) : 1);
6320
6321                 if (!SIZE_ONLY && RExC_extralen)
6322                     NEXT_OFF(ret) = 3;  /* Go over NOTHING to LONGJMP. */
6323                 REGTAIL(pRExC_state, ret, reg_node(pRExC_state, NOTHING));
6324                 if (SIZE_ONLY)
6325                     RExC_whilem_seen++, RExC_extralen += 3;
6326                 RExC_naughty += 4 + RExC_naughty;       /* compound interest */
6327             }
6328             ret->flags = 0;
6329
6330             if (min > 0)
6331                 *flagp = WORST;
6332             if (max > 0)
6333                 *flagp |= HASWIDTH;
6334             if (max && max < min)
6335                 vFAIL("Can't do {n,m} with n > m");
6336             if (!SIZE_ONLY) {
6337                 ARG1_SET(ret, (U16)min);
6338                 ARG2_SET(ret, (U16)max);
6339             }
6340
6341             goto nest_check;
6342         }
6343     }
6344
6345     if (!ISMULT1(op)) {
6346         *flagp = flags;
6347         return(ret);
6348     }
6349
6350 #if 0                           /* Now runtime fix should be reliable. */
6351
6352     /* if this is reinstated, don't forget to put this back into perldiag:
6353
6354             =item Regexp *+ operand could be empty at {#} in regex m/%s/
6355
6356            (F) The part of the regexp subject to either the * or + quantifier
6357            could match an empty string. The {#} shows in the regular
6358            expression about where the problem was discovered.
6359
6360     */
6361
6362     if (!(flags&HASWIDTH) && op != '?')
6363       vFAIL("Regexp *+ operand could be empty");
6364 #endif
6365
6366     parse_start = RExC_parse;
6367     nextchar(pRExC_state);
6368
6369     *flagp = (op != '+') ? (WORST|SPSTART|HASWIDTH) : (WORST|HASWIDTH);
6370
6371     if (op == '*' && (flags&SIMPLE)) {
6372         reginsert(pRExC_state, STAR, ret, depth+1);
6373         ret->flags = 0;
6374         RExC_naughty += 4;
6375     }
6376     else if (op == '*') {
6377         min = 0;
6378         goto do_curly;
6379     }
6380     else if (op == '+' && (flags&SIMPLE)) {
6381         reginsert(pRExC_state, PLUS, ret, depth+1);
6382         ret->flags = 0;
6383         RExC_naughty += 3;
6384     }
6385     else if (op == '+') {
6386         min = 1;
6387         goto do_curly;
6388     }
6389     else if (op == '?') {
6390         min = 0; max = 1;
6391         goto do_curly;
6392     }
6393   nest_check:
6394     if (!SIZE_ONLY && !(flags&(HASWIDTH|POSTPONED)) && max > REG_INFTY/3 && ckWARN(WARN_REGEXP)) {
6395         vWARN3(RExC_parse,
6396                "%.*s matches null string many times",
6397                (int)(RExC_parse >= origparse ? RExC_parse - origparse : 0),
6398                origparse);
6399     }
6400
6401     if (RExC_parse < RExC_end && *RExC_parse == '?') {
6402         nextchar(pRExC_state);
6403         reginsert(pRExC_state, MINMOD, ret, depth+1);
6404         REGTAIL(pRExC_state, ret, ret + NODE_STEP_REGNODE);
6405     }
6406 #ifndef REG_ALLOW_MINMOD_SUSPEND
6407     else
6408 #endif
6409     if (RExC_parse < RExC_end && *RExC_parse == '+') {
6410         regnode *ender;
6411         nextchar(pRExC_state);
6412         ender = reg_node(pRExC_state, SUCCEED);
6413         REGTAIL(pRExC_state, ret, ender);
6414         reginsert(pRExC_state, SUSPEND, ret, depth+1);
6415         ret->flags = 0;
6416         ender = reg_node(pRExC_state, TAIL);
6417         REGTAIL(pRExC_state, ret, ender);
6418         /*ret= ender;*/
6419     }
6420
6421     if (RExC_parse < RExC_end && ISMULT2(RExC_parse)) {
6422         RExC_parse++;
6423         vFAIL("Nested quantifiers");
6424     }
6425
6426     return(ret);
6427 }
6428
6429
6430 /* reg_namedseq(pRExC_state,UVp)
6431    
6432    This is expected to be called by a parser routine that has 
6433    recognized'\N' and needs to handle the rest. RExC_parse is 
6434    expected to point at the first char following the N at the time
6435    of the call.
6436    
6437    If valuep is non-null then it is assumed that we are parsing inside 
6438    of a charclass definition and the first codepoint in the resolved
6439    string is returned via *valuep and the routine will return NULL. 
6440    In this mode if a multichar string is returned from the charnames 
6441    handler a warning will be issued, and only the first char in the 
6442    sequence will be examined. If the string returned is zero length
6443    then the value of *valuep is undefined and NON-NULL will 
6444    be returned to indicate failure. (This will NOT be a valid pointer 
6445    to a regnode.)
6446    
6447    If value is null then it is assumed that we are parsing normal text
6448    and inserts a new EXACT node into the program containing the resolved
6449    string and returns a pointer to the new node. If the string is 
6450    zerolength a NOTHING node is emitted.
6451    
6452    On success RExC_parse is set to the char following the endbrace.
6453    Parsing failures will generate a fatal errorvia vFAIL(...)
6454    
6455    NOTE: We cache all results from the charnames handler locally in 
6456    the RExC_charnames hash (created on first use) to prevent a charnames 
6457    handler from playing silly-buggers and returning a short string and 
6458    then a long string for a given pattern. Since the regexp program 
6459    size is calculated during an initial parse this would result
6460    in a buffer overrun so we cache to prevent the charname result from
6461    changing during the course of the parse.
6462    
6463  */
6464 STATIC regnode *
6465 S_reg_namedseq(pTHX_ RExC_state_t *pRExC_state, UV *valuep) 
6466 {
6467     char * name;        /* start of the content of the name */
6468     char * endbrace;    /* endbrace following the name */
6469     SV *sv_str = NULL;  
6470     SV *sv_name = NULL;
6471     STRLEN len; /* this has various purposes throughout the code */
6472     bool cached = 0; /* if this is true then we shouldn't refcount dev sv_str */
6473     regnode *ret = NULL;
6474     
6475     if (*RExC_parse != '{') {
6476         vFAIL("Missing braces on \\N{}");
6477     }
6478     name = RExC_parse+1;
6479     endbrace = strchr(RExC_parse, '}');
6480     if ( ! endbrace ) {
6481         RExC_parse++;
6482         vFAIL("Missing right brace on \\N{}");
6483     } 
6484     RExC_parse = endbrace + 1;  
6485     
6486     
6487     /* RExC_parse points at the beginning brace, 
6488        endbrace points at the last */
6489     if ( name[0]=='U' && name[1]=='+' ) {
6490         /* its a "Unicode hex" notation {U+89AB} */
6491         I32 fl = PERL_SCAN_ALLOW_UNDERSCORES
6492             | PERL_SCAN_DISALLOW_PREFIX
6493             | (SIZE_ONLY ? PERL_SCAN_SILENT_ILLDIGIT : 0);
6494         UV cp;
6495         char string;
6496         len = (STRLEN)(endbrace - name - 2);
6497         cp = grok_hex(name + 2, &len, &fl, NULL);
6498         if ( len != (STRLEN)(endbrace - name - 2) ) {
6499             cp = 0xFFFD;
6500         }    
6501         if (cp > 0xff)
6502             RExC_utf8 = 1;
6503         if ( valuep ) {
6504             *valuep = cp;
6505             return NULL;
6506         }
6507         string = (char)cp;
6508         sv_str= newSVpvn(&string, 1);
6509     } else {
6510         /* fetch the charnames handler for this scope */
6511         HV * const table = GvHV(PL_hintgv);
6512         SV **cvp= table ? 
6513             hv_fetchs(table, "charnames", FALSE) :
6514             NULL;
6515         SV *cv= cvp ? *cvp : NULL;
6516         HE *he_str;
6517         int count;
6518         /* create an SV with the name as argument */
6519         sv_name = newSVpvn(name, endbrace - name);
6520         
6521         if (!table || !(PL_hints & HINT_LOCALIZE_HH)) {
6522             vFAIL2("Constant(\\N{%s}) unknown: "
6523                   "(possibly a missing \"use charnames ...\")",
6524                   SvPVX(sv_name));
6525         }
6526         if (!cvp || !SvOK(*cvp)) { /* when $^H{charnames} = undef; */
6527             vFAIL2("Constant(\\N{%s}): "
6528                   "$^H{charnames} is not defined",SvPVX(sv_name));
6529         }
6530         
6531         
6532         
6533         if (!RExC_charnames) {
6534             /* make sure our cache is allocated */
6535             RExC_charnames = newHV();
6536             sv_2mortal((SV*)RExC_charnames);
6537         } 
6538             /* see if we have looked this one up before */
6539         he_str = hv_fetch_ent( RExC_charnames, sv_name, 0, 0 );
6540         if ( he_str ) {
6541             sv_str = HeVAL(he_str);
6542             cached = 1;
6543         } else {
6544             dSP ;
6545
6546             ENTER ;
6547             SAVETMPS ;
6548             PUSHMARK(SP) ;
6549             
6550             XPUSHs(sv_name);
6551             
6552             PUTBACK ;
6553             
6554             count= call_sv(cv, G_SCALAR);
6555             
6556             if (count == 1) { /* XXXX is this right? dmq */
6557                 sv_str = POPs;
6558                 SvREFCNT_inc_simple_void(sv_str);
6559             } 
6560             
6561             SPAGAIN ;
6562             PUTBACK ;
6563             FREETMPS ;
6564             LEAVE ;
6565             
6566             if ( !sv_str || !SvOK(sv_str) ) {
6567                 vFAIL2("Constant(\\N{%s}): Call to &{$^H{charnames}} "
6568                       "did not return a defined value",SvPVX(sv_name));
6569             }
6570             if (hv_store_ent( RExC_charnames, sv_name, sv_str, 0))
6571                 cached = 1;
6572         }
6573     }
6574     if (valuep) {
6575         char *p = SvPV(sv_str, len);
6576         if (len) {
6577             STRLEN numlen = 1;
6578             if ( SvUTF8(sv_str) ) {
6579                 *valuep = utf8_to_uvchr((U8*)p, &numlen);
6580                 if (*valuep > 0x7F)
6581                     RExC_utf8 = 1; 
6582                 /* XXXX
6583                   We have to turn on utf8 for high bit chars otherwise
6584                   we get failures with
6585                   
6586                    "ss" =~ /[\N{LATIN SMALL LETTER SHARP S}]/i
6587                    "SS" =~ /[\N{LATIN SMALL LETTER SHARP S}]/i
6588                 
6589                   This is different from what \x{} would do with the same
6590                   codepoint, where the condition is > 0xFF.
6591                   - dmq
6592                 */
6593                 
6594                 
6595             } else {
6596                 *valuep = (UV)*p;
6597                 /* warn if we havent used the whole string? */
6598             }
6599             if (numlen<len && SIZE_ONLY && ckWARN(WARN_REGEXP)) {
6600                 vWARN2(RExC_parse,
6601                     "Ignoring excess chars from \\N{%s} in character class",
6602                     SvPVX(sv_name)
6603                 );
6604             }        
6605         } else if (SIZE_ONLY && ckWARN(WARN_REGEXP)) {
6606             vWARN2(RExC_parse,
6607                     "Ignoring zero length \\N{%s} in character class",
6608                     SvPVX(sv_name)
6609                 );
6610         }
6611         if (sv_name)    
6612             SvREFCNT_dec(sv_name);    
6613         if (!cached)
6614             SvREFCNT_dec(sv_str);    
6615         return len ? NULL : (regnode *)&len;
6616     } else if(SvCUR(sv_str)) {     
6617         
6618         char *s; 
6619         char *p, *pend;        
6620         STRLEN charlen = 1;
6621 #ifdef DEBUGGING
6622         char * parse_start = name-3; /* needed for the offsets */
6623 #endif
6624         GET_RE_DEBUG_FLAGS_DECL;     /* needed for the offsets */
6625         
6626         ret = reg_node(pRExC_state,
6627             (U8)(FOLD ? (LOC ? EXACTFL : EXACTF) : EXACT));
6628         s= STRING(ret);
6629         
6630         if ( RExC_utf8 && !SvUTF8(sv_str) ) {
6631             sv_utf8_upgrade(sv_str);
6632         } else if ( !RExC_utf8 && SvUTF8(sv_str) ) {
6633             RExC_utf8= 1;
6634         }
6635         
6636         p = SvPV(sv_str, len);
6637         pend = p + len;
6638         /* len is the length written, charlen is the size the char read */
6639         for ( len = 0; p < pend; p += charlen ) {
6640             if (UTF) {
6641                 UV uvc = utf8_to_uvchr((U8*)p, &charlen);
6642                 if (FOLD) {
6643                     STRLEN foldlen,numlen;
6644                     U8 tmpbuf[UTF8_MAXBYTES_CASE+1], *foldbuf;
6645                     uvc = toFOLD_uni(uvc, tmpbuf, &foldlen);
6646                     /* Emit all the Unicode characters. */
6647                     
6648                     for (foldbuf = tmpbuf;
6649                         foldlen;
6650                         foldlen -= numlen) 
6651                     {
6652                         uvc = utf8_to_uvchr(foldbuf, &numlen);
6653                         if (numlen > 0) {
6654                             const STRLEN unilen = reguni(pRExC_state, uvc, s);
6655                             s       += unilen;
6656                             len     += unilen;
6657                             /* In EBCDIC the numlen
6658                             * and unilen can differ. */
6659                             foldbuf += numlen;
6660                             if (numlen >= foldlen)
6661                                 break;
6662                         }
6663                         else
6664                             break; /* "Can't happen." */
6665                     }                          
6666                 } else {
6667                     const STRLEN unilen = reguni(pRExC_state, uvc, s);
6668                     if (unilen > 0) {
6669                        s   += unilen;
6670                        len += unilen;
6671                     }
6672                 }
6673             } else {
6674                 len++;
6675                 REGC(*p, s++);
6676             }
6677         }
6678         if (SIZE_ONLY) {
6679             RExC_size += STR_SZ(len);
6680         } else {
6681             STR_LEN(ret) = len;
6682             RExC_emit += STR_SZ(len);
6683         }
6684         Set_Node_Cur_Length(ret); /* MJD */
6685         RExC_parse--; 
6686         nextchar(pRExC_state);
6687     } else {
6688         ret = reg_node(pRExC_state,NOTHING);
6689     }
6690     if (!cached) {
6691         SvREFCNT_dec(sv_str);
6692     }
6693     if (sv_name) {
6694         SvREFCNT_dec(sv_name); 
6695     }
6696     return ret;
6697
6698 }
6699
6700
6701 /*
6702  * reg_recode
6703  *
6704  * It returns the code point in utf8 for the value in *encp.
6705  *    value: a code value in the source encoding
6706  *    encp:  a pointer to an Encode object
6707  *
6708  * If the result from Encode is not a single character,
6709  * it returns U+FFFD (Replacement character) and sets *encp to NULL.
6710  */
6711 STATIC UV
6712 S_reg_recode(pTHX_ const char value, SV **encp)
6713 {
6714     STRLEN numlen = 1;
6715     SV * const sv = sv_2mortal(newSVpvn(&value, numlen));
6716     const char * const s = *encp ? sv_recode_to_utf8(sv, *encp) : SvPVX(sv);
6717     const STRLEN newlen = SvCUR(sv);
6718     UV uv = UNICODE_REPLACEMENT;
6719
6720     if (newlen)
6721         uv = SvUTF8(sv)
6722              ? utf8n_to_uvchr((U8*)s, newlen, &numlen, UTF8_ALLOW_DEFAULT)
6723              : *(U8*)s;
6724
6725     if (!newlen || numlen != newlen) {
6726         uv = UNICODE_REPLACEMENT;
6727         *encp = NULL;
6728     }
6729     return uv;
6730 }
6731
6732
6733 /*
6734  - regatom - the lowest level
6735
6736    Try to identify anything special at the start of the pattern. If there
6737    is, then handle it as required. This may involve generating a single regop,
6738    such as for an assertion; or it may involve recursing, such as to
6739    handle a () structure.
6740
6741    If the string doesn't start with something special then we gobble up
6742    as much literal text as we can.
6743
6744    Once we have been able to handle whatever type of thing started the
6745    sequence, we return.
6746
6747    Note: we have to be careful with escapes, as they can be both literal
6748    and special, and in the case of \10 and friends can either, depending
6749    on context. Specifically there are two seperate switches for handling
6750    escape sequences, with the one for handling literal escapes requiring
6751    a dummy entry for all of the special escapes that are actually handled
6752    by the other.
6753 */
6754
6755 STATIC regnode *
6756 S_regatom(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth)
6757 {
6758     dVAR;
6759     register regnode *ret = NULL;
6760     I32 flags;
6761     char *parse_start = RExC_parse;
6762     GET_RE_DEBUG_FLAGS_DECL;
6763     DEBUG_PARSE("atom");
6764     *flagp = WORST;             /* Tentatively. */
6765
6766
6767 tryagain:
6768     switch ((U8)*RExC_parse) {
6769     case '^':
6770         RExC_seen_zerolen++;
6771         nextchar(pRExC_state);
6772         if (RExC_flags & RXf_PMf_MULTILINE)
6773             ret = reg_node(pRExC_state, MBOL);
6774         else if (RExC_flags & RXf_PMf_SINGLELINE)
6775             ret = reg_node(pRExC_state, SBOL);
6776         else
6777             ret = reg_node(pRExC_state, BOL);
6778         Set_Node_Length(ret, 1); /* MJD */
6779         break;
6780     case '$':
6781         nextchar(pRExC_state);
6782         if (*RExC_parse)
6783             RExC_seen_zerolen++;
6784         if (RExC_flags & RXf_PMf_MULTILINE)
6785             ret = reg_node(pRExC_state, MEOL);
6786         else if (RExC_flags & RXf_PMf_SINGLELINE)
6787             ret = reg_node(pRExC_state, SEOL);
6788         else
6789             ret = reg_node(pRExC_state, EOL);
6790         Set_Node_Length(ret, 1); /* MJD */
6791         break;
6792     case '.':
6793         nextchar(pRExC_state);
6794         if (RExC_flags & RXf_PMf_SINGLELINE)
6795             ret = reg_node(pRExC_state, SANY);
6796         else
6797             ret = reg_node(pRExC_state, REG_ANY);
6798         *flagp |= HASWIDTH|SIMPLE;
6799         RExC_naughty++;
6800         Set_Node_Length(ret, 1); /* MJD */
6801         break;
6802     case '[':
6803     {
6804         char * const oregcomp_parse = ++RExC_parse;
6805         ret = regclass(pRExC_state,depth+1);
6806         if (*RExC_parse != ']') {
6807             RExC_parse = oregcomp_parse;
6808             vFAIL("Unmatched [");
6809         }
6810         nextchar(pRExC_state);
6811         *flagp |= HASWIDTH|SIMPLE;
6812         Set_Node_Length(ret, RExC_parse - oregcomp_parse + 1); /* MJD */
6813         break;
6814     }
6815     case '(':
6816         nextchar(pRExC_state);
6817         ret = reg(pRExC_state, 1, &flags,depth+1);
6818         if (ret == NULL) {
6819                 if (flags & TRYAGAIN) {
6820                     if (RExC_parse == RExC_end) {
6821                          /* Make parent create an empty node if needed. */
6822                         *flagp |= TRYAGAIN;
6823                         return(NULL);
6824                     }
6825                     goto tryagain;
6826                 }
6827                 return(NULL);
6828         }
6829         *flagp |= flags&(HASWIDTH|SPSTART|SIMPLE|POSTPONED);
6830         break;
6831     case '|':
6832     case ')':
6833         if (flags & TRYAGAIN) {
6834             *flagp |= TRYAGAIN;
6835             return NULL;
6836         }
6837         vFAIL("Internal urp");
6838                                 /* Supposed to be caught earlier. */
6839         break;
6840     case '{':
6841         if (!regcurly(RExC_parse)) {
6842             RExC_parse++;
6843             goto defchar;
6844         }
6845         /* FALL THROUGH */
6846     case '?':
6847     case '+':
6848     case '*':
6849         RExC_parse++;
6850         vFAIL("Quantifier follows nothing");
6851         break;
6852     case 0xDF:
6853     case 0xC3:
6854     case 0xCE:
6855         if (!LOC && FOLD) {
6856             U32 len,cp;
6857             len=0; /* silence a spurious compiler warning */
6858             if ((cp = what_len_TRICKYFOLD_safe(RExC_parse,RExC_end,UTF,len))) {
6859                 *flagp |= HASWIDTH; /* could be SIMPLE too, but needs a handler in regexec.regrepeat */
6860                 RExC_parse+=len-1; /* we get one from nextchar() as well. :-( */
6861                 ret = reganode(pRExC_state, FOLDCHAR, cp);
6862                 Set_Node_Length(ret, 1); /* MJD */
6863                 nextchar(pRExC_state); /* kill whitespace under /x */
6864                 return ret;
6865             }
6866         }
6867         goto outer_default;
6868     case '\\':
6869         /* Special Escapes
6870
6871            This switch handles escape sequences that resolve to some kind
6872            of special regop and not to literal text. Escape sequnces that
6873            resolve to literal text are handled below in the switch marked
6874            "Literal Escapes".
6875
6876            Every entry in this switch *must* have a corresponding entry
6877            in the literal escape switch. However, the opposite is not
6878            required, as the default for this switch is to jump to the
6879            literal text handling code.
6880         */
6881         switch (*++RExC_parse) {
6882         /* Special Escapes */
6883         case 'A':
6884             RExC_seen_zerolen++;
6885             ret = reg_node(pRExC_state, SBOL);
6886             *flagp |= SIMPLE;
6887             goto finish_meta_pat;
6888         case 'G':
6889             ret = reg_node(pRExC_state, GPOS);
6890             RExC_seen |= REG_SEEN_GPOS;
6891             *flagp |= SIMPLE;
6892             goto finish_meta_pat;
6893         case 'K':
6894             RExC_seen_zerolen++;
6895             ret = reg_node(pRExC_state, KEEPS);
6896             *flagp |= SIMPLE;
6897             goto finish_meta_pat;
6898         case 'Z':
6899             ret = reg_node(pRExC_state, SEOL);
6900             *flagp |= SIMPLE;
6901             RExC_seen_zerolen++;                /* Do not optimize RE away */
6902             goto finish_meta_pat;
6903         case 'z':
6904             ret = reg_node(pRExC_state, EOS);
6905             *flagp |= SIMPLE;
6906             RExC_seen_zerolen++;                /* Do not optimize RE away */
6907             goto finish_meta_pat;
6908         case 'C':
6909             ret = reg_node(pRExC_state, CANY);
6910             RExC_seen |= REG_SEEN_CANY;
6911             *flagp |= HASWIDTH|SIMPLE;
6912             goto finish_meta_pat;
6913         case 'X':
6914             ret = reg_node(pRExC_state, CLUMP);
6915             *flagp |= HASWIDTH;
6916             goto finish_meta_pat;
6917         case 'w':
6918             ret = reg_node(pRExC_state, (U8)(LOC ? ALNUML     : ALNUM));
6919             *flagp |= HASWIDTH|SIMPLE;
6920             goto finish_meta_pat;
6921         case 'W':
6922             ret = reg_node(pRExC_state, (U8)(LOC ? NALNUML    : NALNUM));
6923             *flagp |= HASWIDTH|SIMPLE;
6924             goto finish_meta_pat;
6925         case 'b':
6926             RExC_seen_zerolen++;
6927             RExC_seen |= REG_SEEN_LOOKBEHIND;
6928             ret = reg_node(pRExC_state, (U8)(LOC ? BOUNDL     : BOUND));
6929             *flagp |= SIMPLE;
6930             goto finish_meta_pat;
6931         case 'B':
6932             RExC_seen_zerolen++;
6933             RExC_seen |= REG_SEEN_LOOKBEHIND;
6934             ret = reg_node(pRExC_state, (U8)(LOC ? NBOUNDL    : NBOUND));
6935             *flagp |= SIMPLE;
6936             goto finish_meta_pat;
6937         case 's':
6938             ret = reg_node(pRExC_state, (U8)(LOC ? SPACEL     : SPACE));
6939             *flagp |= HASWIDTH|SIMPLE;
6940             goto finish_meta_pat;
6941         case 'S':
6942             ret = reg_node(pRExC_state, (U8)(LOC ? NSPACEL    : NSPACE));
6943             *flagp |= HASWIDTH|SIMPLE;
6944             goto finish_meta_pat;
6945         case 'd':
6946             ret = reg_node(pRExC_state, DIGIT);
6947             *flagp |= HASWIDTH|SIMPLE;
6948             goto finish_meta_pat;
6949         case 'D':
6950             ret = reg_node(pRExC_state, NDIGIT);
6951             *flagp |= HASWIDTH|SIMPLE;
6952             goto finish_meta_pat;
6953         case 'R':
6954             ret = reg_node(pRExC_state, LNBREAK);
6955             *flagp |= HASWIDTH|SIMPLE;
6956             goto finish_meta_pat;
6957         case 'h':
6958             ret = reg_node(pRExC_state, HORIZWS);
6959             *flagp |= HASWIDTH|SIMPLE;
6960             goto finish_meta_pat;
6961         case 'H':
6962             ret = reg_node(pRExC_state, NHORIZWS);
6963             *flagp |= HASWIDTH|SIMPLE;
6964             goto finish_meta_pat;
6965         case 'v':
6966             ret = reg_node(pRExC_state, VERTWS);
6967             *flagp |= HASWIDTH|SIMPLE;
6968             goto finish_meta_pat;
6969         case 'V':
6970             ret = reg_node(pRExC_state, NVERTWS);
6971             *flagp |= HASWIDTH|SIMPLE;
6972          finish_meta_pat:           
6973             nextchar(pRExC_state);
6974             Set_Node_Length(ret, 2); /* MJD */
6975             break;          
6976         case 'p':
6977         case 'P':
6978             {   
6979                 char* const oldregxend = RExC_end;
6980 #ifdef DEBUGGING
6981                 char* parse_start = RExC_parse - 2;
6982 #endif
6983
6984                 if (RExC_parse[1] == '{') {
6985                   /* a lovely hack--pretend we saw [\pX] instead */
6986                     RExC_end = strchr(RExC_parse, '}');
6987                     if (!RExC_end) {
6988                         const U8 c = (U8)*RExC_parse;
6989                         RExC_parse += 2;
6990                         RExC_end = oldregxend;
6991                         vFAIL2("Missing right brace on \\%c{}", c);
6992                     }
6993                     RExC_end++;
6994                 }
6995                 else {
6996                     RExC_end = RExC_parse + 2;
6997                     if (RExC_end > oldregxend)
6998                         RExC_end = oldregxend;
6999                 }
7000                 RExC_parse--;
7001
7002                 ret = regclass(pRExC_state,depth+1);
7003
7004                 RExC_end = oldregxend;
7005                 RExC_parse--;
7006
7007                 Set_Node_Offset(ret, parse_start + 2);
7008                 Set_Node_Cur_Length(ret);
7009                 nextchar(pRExC_state);
7010                 *flagp |= HASWIDTH|SIMPLE;
7011             }
7012             break;
7013         case 'N': 
7014             /* Handle \N{NAME} here and not below because it can be 
7015             multicharacter. join_exact() will join them up later on. 
7016             Also this makes sure that things like /\N{BLAH}+/ and 
7017             \N{BLAH} being multi char Just Happen. dmq*/
7018             ++RExC_parse;
7019             ret= reg_namedseq(pRExC_state, NULL); 
7020             break;
7021         case 'k':    /* Handle \k<NAME> and \k'NAME' */
7022         parse_named_seq:
7023         {   
7024             char ch= RExC_parse[1];         
7025             if (ch != '<' && ch != '\'' && ch != '{') {
7026                 RExC_parse++;
7027                 vFAIL2("Sequence %.2s... not terminated",parse_start);
7028             } else {
7029                 /* this pretty much dupes the code for (?P=...) in reg(), if
7030                    you change this make sure you change that */
7031                 char* name_start = (RExC_parse += 2);
7032                 U32 num = 0;
7033                 SV *sv_dat = reg_scan_name(pRExC_state,
7034                     SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
7035                 ch= (ch == '<') ? '>' : (ch == '{') ? '}' : '\'';
7036                 if (RExC_parse == name_start || *RExC_parse != ch)
7037                     vFAIL2("Sequence %.3s... not terminated",parse_start);
7038
7039                 if (!SIZE_ONLY) {
7040                     num = add_data( pRExC_state, 1, "S" );
7041                     RExC_rxi->data->data[num]=(void*)sv_dat;
7042                     SvREFCNT_inc_simple_void(sv_dat);
7043                 }
7044
7045                 RExC_sawback = 1;
7046                 ret = reganode(pRExC_state,
7047                            (U8)(FOLD ? (LOC ? NREFFL : NREFF) : NREF),
7048                            num);
7049                 *flagp |= HASWIDTH;
7050
7051                 /* override incorrect value set in reganode MJD */
7052                 Set_Node_Offset(ret, parse_start+1);
7053                 Set_Node_Cur_Length(ret); /* MJD */
7054                 nextchar(pRExC_state);
7055
7056             }
7057             break;
7058         }
7059         case 'g': 
7060         case '1': case '2': case '3': case '4':
7061         case '5': case '6': case '7': case '8': case '9':
7062             {
7063                 I32 num;
7064                 bool isg = *RExC_parse == 'g';
7065                 bool isrel = 0; 
7066                 bool hasbrace = 0;
7067                 if (isg) {
7068                     RExC_parse++;
7069                     if (*RExC_parse == '{') {
7070                         RExC_parse++;
7071                         hasbrace = 1;
7072                     }
7073                     if (*RExC_parse == '-') {
7074                         RExC_parse++;
7075                         isrel = 1;
7076                     }
7077                     if (hasbrace && !isDIGIT(*RExC_parse)) {
7078                         if (isrel) RExC_parse--;
7079                         RExC_parse -= 2;                            
7080                         goto parse_named_seq;
7081                 }   }
7082                 num = atoi(RExC_parse);
7083                 if (isg && num == 0)
7084                     vFAIL("Reference to invalid group 0");
7085                 if (isrel) {
7086                     num = RExC_npar - num;
7087                     if (num < 1)
7088                         vFAIL("Reference to nonexistent or unclosed group");
7089                 }
7090                 if (!isg && num > 9 && num >= RExC_npar)
7091                     goto defchar;
7092                 else {
7093                     char * const parse_start = RExC_parse - 1; /* MJD */
7094                     while (isDIGIT(*RExC_parse))
7095                         RExC_parse++;
7096                     if (parse_start == RExC_parse - 1) 
7097                         vFAIL("Unterminated \\g... pattern");
7098                     if (hasbrace) {
7099                         if (*RExC_parse != '}') 
7100                             vFAIL("Unterminated \\g{...} pattern");
7101                         RExC_parse++;
7102                     }    
7103                     if (!SIZE_ONLY) {
7104                         if (num > (I32)RExC_rx->nparens)
7105                             vFAIL("Reference to nonexistent group");
7106                     }
7107                     RExC_sawback = 1;
7108                     ret = reganode(pRExC_state,
7109                                    (U8)(FOLD ? (LOC ? REFFL : REFF) : REF),
7110                                    num);
7111                     *flagp |= HASWIDTH;
7112
7113                     /* override incorrect value set in reganode MJD */
7114                     Set_Node_Offset(ret, parse_start+1);
7115                     Set_Node_Cur_Length(ret); /* MJD */
7116                     RExC_parse--;
7117                     nextchar(pRExC_state);
7118                 }
7119             }
7120             break;
7121         case '\0':
7122             if (RExC_parse >= RExC_end)
7123                 FAIL("Trailing \\");
7124             /* FALL THROUGH */
7125         default:
7126             /* Do not generate "unrecognized" warnings here, we fall
7127                back into the quick-grab loop below */
7128             parse_start--;
7129             goto defchar;
7130         }
7131         break;
7132
7133     case '#':
7134         if (RExC_flags & RXf_PMf_EXTENDED) {
7135             if ( reg_skipcomment( pRExC_state ) )
7136                 goto tryagain;
7137         }
7138         /* FALL THROUGH */
7139
7140     default:
7141         outer_default:{
7142             register STRLEN len;
7143             register UV ender;
7144             register char *p;
7145             char *s;
7146             STRLEN foldlen;
7147             U8 tmpbuf[UTF8_MAXBYTES_CASE+1], *foldbuf;
7148
7149             parse_start = RExC_parse - 1;
7150
7151             RExC_parse++;
7152
7153         defchar:
7154             ender = 0;
7155             ret = reg_node(pRExC_state,
7156                            (U8)(FOLD ? (LOC ? EXACTFL : EXACTF) : EXACT));
7157             s = STRING(ret);
7158             for (len = 0, p = RExC_parse - 1;
7159               len < 127 && p < RExC_end;
7160               len++)
7161             {
7162                 char * const oldp = p;
7163
7164                 if (RExC_flags & RXf_PMf_EXTENDED)
7165                     p = regwhite( pRExC_state, p );
7166                 switch ((U8)*p) {
7167                 case 0xDF:
7168                 case 0xC3:
7169                 case 0xCE:
7170                            if (LOC || !FOLD || !is_TRICKYFOLD_safe(p,RExC_end,UTF))
7171                                 goto normal_default;
7172                 case '^':
7173                 case '$':
7174                 case '.':
7175                 case '[':
7176                 case '(':
7177                 case ')':
7178                 case '|':
7179                     goto loopdone;
7180                 case '\\':
7181                     /* Literal Escapes Switch
7182
7183                        This switch is meant to handle escape sequences that
7184                        resolve to a literal character.
7185
7186                        Every escape sequence that represents something
7187                        else, like an assertion or a char class, is handled
7188                        in the switch marked 'Special Escapes' above in this
7189                        routine, but also has an entry here as anything that
7190                        isn't explicitly mentioned here will be treated as
7191                        an unescaped equivalent literal.
7192                     */
7193
7194                     switch (*++p) {
7195                     /* These are all the special escapes. */
7196                     case 'A':             /* Start assertion */
7197                     case 'b': case 'B':   /* Word-boundary assertion*/
7198                     case 'C':             /* Single char !DANGEROUS! */
7199                     case 'd': case 'D':   /* digit class */
7200                     case 'g': case 'G':   /* generic-backref, pos assertion */
7201                     case 'h': case 'H':   /* HORIZWS */
7202                     case 'k': case 'K':   /* named backref, keep marker */
7203                     case 'N':             /* named char sequence */
7204                     case 'p': case 'P':   /* Unicode property */
7205                               case 'R':   /* LNBREAK */
7206                     case 's': case 'S':   /* space class */
7207                     case 'v': case 'V':   /* VERTWS */
7208                     case 'w': case 'W':   /* word class */
7209                     case 'X':             /* eXtended Unicode "combining character sequence" */
7210                     case 'z': case 'Z':   /* End of line/string assertion */
7211                         --p;
7212                         goto loopdone;
7213
7214                     /* Anything after here is an escape that resolves to a
7215                        literal. (Except digits, which may or may not)
7216                      */
7217                     case 'n':
7218                         ender = '\n';
7219                         p++;
7220                         break;
7221                     case 'r':
7222                         ender = '\r';
7223                         p++;
7224                         break;
7225                     case 't':
7226                         ender = '\t';
7227                         p++;
7228                         break;
7229                     case 'f':
7230                         ender = '\f';
7231                         p++;
7232                         break;
7233                     case 'e':
7234                           ender = ASCII_TO_NATIVE('\033');
7235                         p++;
7236                         break;
7237                     case 'a':
7238                           ender = ASCII_TO_NATIVE('\007');
7239                         p++;
7240                         break;
7241                     case 'x':
7242                         if (*++p == '{') {
7243                             char* const e = strchr(p, '}');
7244         
7245                             if (!e) {
7246                                 RExC_parse = p + 1;
7247                                 vFAIL("Missing right brace on \\x{}");
7248                             }
7249                             else {
7250                                 I32 flags = PERL_SCAN_ALLOW_UNDERSCORES
7251                                     | PERL_SCAN_DISALLOW_PREFIX;
7252                                 STRLEN numlen = e - p - 1;
7253                                 ender = grok_hex(p + 1, &numlen, &flags, NULL);
7254                                 if (ender > 0xff)
7255                                     RExC_utf8 = 1;
7256                                 p = e + 1;
7257                             }
7258                         }
7259                         else {
7260                             I32 flags = PERL_SCAN_DISALLOW_PREFIX;
7261                             STRLEN numlen = 2;
7262                             ender = grok_hex(p, &numlen, &flags, NULL);
7263                             p += numlen;
7264                         }
7265                         if (PL_encoding && ender < 0x100)
7266                             goto recode_encoding;
7267                         break;
7268                     case 'c':
7269                         p++;
7270                         ender = UCHARAT(p++);
7271                         ender = toCTRL(ender);
7272                         break;
7273                     case '0': case '1': case '2': case '3':case '4':
7274                     case '5': case '6': case '7': case '8':case '9':
7275                         if (*p == '0' ||
7276                           (isDIGIT(p[1]) && atoi(p) >= RExC_npar) ) {
7277                             I32 flags = 0;
7278                             STRLEN numlen = 3;
7279                             ender = grok_oct(p, &numlen, &flags, NULL);
7280                             p += numlen;
7281                         }
7282                         else {
7283                             --p;
7284                             goto loopdone;
7285                         }
7286                         if (PL_encoding && ender < 0x100)
7287                             goto recode_encoding;
7288                         break;
7289                     recode_encoding:
7290                         {
7291                             SV* enc = PL_encoding;
7292                             ender = reg_recode((const char)(U8)ender, &enc);
7293                             if (!enc && SIZE_ONLY && ckWARN(WARN_REGEXP))
7294                                 vWARN(p, "Invalid escape in the specified encoding");
7295                             RExC_utf8 = 1;
7296                         }
7297                         break;
7298                     case '\0':
7299                         if (p >= RExC_end)
7300                             FAIL("Trailing \\");
7301                         /* FALL THROUGH */
7302                     default:
7303                         if (!SIZE_ONLY&& isALPHA(*p) && ckWARN(WARN_REGEXP))
7304                             vWARN2(p + 1, "Unrecognized escape \\%c passed through", UCHARAT(p));
7305                         goto normal_default;
7306                     }
7307                     break;
7308                 default:
7309                   normal_default:
7310                     if (UTF8_IS_START(*p) && UTF) {
7311                         STRLEN numlen;
7312                         ender = utf8n_to_uvchr((U8*)p, RExC_end - p,
7313                                                &numlen, UTF8_ALLOW_DEFAULT);
7314                         p += numlen;
7315                     }
7316                     else
7317                         ender = *p++;
7318                     break;
7319                 }
7320                 if ( RExC_flags & RXf_PMf_EXTENDED)
7321                     p = regwhite( pRExC_state, p );
7322                 if (UTF && FOLD) {
7323                     /* Prime the casefolded buffer. */
7324                     ender = toFOLD_uni(ender, tmpbuf, &foldlen);
7325                 }
7326                 if (p < RExC_end && ISMULT2(p)) { /* Back off on ?+*. */
7327                     if (len)
7328                         p = oldp;
7329                     else if (UTF) {
7330                          if (FOLD) {
7331                               /* Emit all the Unicode characters. */
7332                               STRLEN numlen;
7333                               for (foldbuf = tmpbuf;
7334                                    foldlen;
7335                                    foldlen -= numlen) {
7336                                    ender = utf8_to_uvchr(foldbuf, &numlen);
7337                                    if (numlen > 0) {
7338                                         const STRLEN unilen = reguni(pRExC_state, ender, s);
7339                                         s       += unilen;
7340                                         len     += unilen;
7341                                         /* In EBCDIC the numlen
7342                                          * and unilen can differ. */
7343                                         foldbuf += numlen;
7344                                         if (numlen >= foldlen)
7345                                              break;
7346                                    }
7347                                    else
7348                                         break; /* "Can't happen." */
7349                               }
7350                          }
7351                          else {
7352                               const STRLEN unilen = reguni(pRExC_state, ender, s);
7353                               if (unilen > 0) {
7354                                    s   += unilen;
7355                                    len += unilen;
7356                               }
7357                          }
7358                     }
7359                     else {
7360                         len++;
7361                         REGC((char)ender, s++);
7362                     }
7363                     break;
7364                 }
7365                 if (UTF) {
7366                      if (FOLD) {
7367                           /* Emit all the Unicode characters. */
7368                           STRLEN numlen;
7369                           for (foldbuf = tmpbuf;
7370                                foldlen;
7371                                foldlen -= numlen) {
7372                                ender = utf8_to_uvchr(foldbuf, &numlen);
7373                                if (numlen > 0) {
7374                                     const STRLEN unilen = reguni(pRExC_state, ender, s);
7375                                     len     += unilen;
7376                                     s       += unilen;
7377                                     /* In EBCDIC the numlen
7378                                      * and unilen can differ. */
7379                                     foldbuf += numlen;
7380                                     if (numlen >= foldlen)
7381                                          break;
7382                                }
7383                                else
7384                                     break;
7385                           }
7386                      }
7387                      else {
7388                           const STRLEN unilen = reguni(pRExC_state, ender, s);
7389                           if (unilen > 0) {
7390                                s   += unilen;
7391                                len += unilen;
7392                           }
7393                      }
7394                      len--;
7395                 }
7396                 else
7397                     REGC((char)ender, s++);
7398             }
7399         loopdone:
7400             RExC_parse = p - 1;
7401             Set_Node_Cur_Length(ret); /* MJD */
7402             nextchar(pRExC_state);
7403             {
7404                 /* len is STRLEN which is unsigned, need to copy to signed */
7405                 IV iv = len;
7406                 if (iv < 0)
7407                     vFAIL("Internal disaster");
7408             }
7409             if (len > 0)
7410                 *flagp |= HASWIDTH;
7411             if (len == 1 && UNI_IS_INVARIANT(ender))
7412                 *flagp |= SIMPLE;
7413                 
7414             if (SIZE_ONLY)
7415                 RExC_size += STR_SZ(len);
7416             else {
7417                 STR_LEN(ret) = len;
7418                 RExC_emit += STR_SZ(len);
7419             }
7420         }
7421         break;
7422     }
7423
7424     return(ret);
7425 }
7426
7427 STATIC char *
7428 S_regwhite( RExC_state_t *pRExC_state, char *p )
7429 {
7430     const char *e = RExC_end;
7431     while (p < e) {
7432         if (isSPACE(*p))
7433             ++p;
7434         else if (*p == '#') {
7435             bool ended = 0;
7436             do {
7437                 if (*p++ == '\n') {
7438                     ended = 1;
7439                     break;
7440                 }
7441             } while (p < e);
7442             if (!ended)
7443                 RExC_seen |= REG_SEEN_RUN_ON_COMMENT;
7444         }
7445         else
7446             break;
7447     }
7448     return p;
7449 }
7450
7451 /* Parse POSIX character classes: [[:foo:]], [[=foo=]], [[.foo.]].
7452    Character classes ([:foo:]) can also be negated ([:^foo:]).
7453    Returns a named class id (ANYOF_XXX) if successful, -1 otherwise.
7454    Equivalence classes ([=foo=]) and composites ([.foo.]) are parsed,
7455    but trigger failures because they are currently unimplemented. */
7456
7457 #define POSIXCC_DONE(c)   ((c) == ':')
7458 #define POSIXCC_NOTYET(c) ((c) == '=' || (c) == '.')
7459 #define POSIXCC(c) (POSIXCC_DONE(c) || POSIXCC_NOTYET(c))
7460
7461 STATIC I32
7462 S_regpposixcc(pTHX_ RExC_state_t *pRExC_state, I32 value)
7463 {
7464     dVAR;
7465     I32 namedclass = OOB_NAMEDCLASS;
7466
7467     if (value == '[' && RExC_parse + 1 < RExC_end &&
7468         /* I smell either [: or [= or [. -- POSIX has been here, right? */
7469         POSIXCC(UCHARAT(RExC_parse))) {
7470         const char c = UCHARAT(RExC_parse);
7471         char* const s = RExC_parse++;
7472         
7473         while (RExC_parse < RExC_end && UCHARAT(RExC_parse) != c)
7474             RExC_parse++;
7475         if (RExC_parse == RExC_end)
7476             /* Grandfather lone [:, [=, [. */
7477             RExC_parse = s;
7478         else {
7479             const char* const t = RExC_parse++; /* skip over the c */
7480             assert(*t == c);
7481
7482             if (UCHARAT(RExC_parse) == ']') {
7483                 const char *posixcc = s + 1;
7484                 RExC_parse++; /* skip over the ending ] */
7485
7486                 if (*s == ':') {
7487                     const I32 complement = *posixcc == '^' ? *posixcc++ : 0;
7488                     const I32 skip = t - posixcc;
7489
7490                     /* Initially switch on the length of the name.  */
7491                     switch (skip) {
7492                     case 4:
7493                         if (memEQ(posixcc, "word", 4)) /* this is not POSIX, this is the Perl \w */
7494                             namedclass = complement ? ANYOF_NALNUM : ANYOF_ALNUM;
7495                         break;
7496                     case 5:
7497                         /* Names all of length 5.  */
7498                         /* alnum alpha ascii blank cntrl digit graph lower
7499                            print punct space upper  */
7500                         /* Offset 4 gives the best switch position.  */
7501                         switch (posixcc[4]) {
7502                         case 'a':
7503                             if (memEQ(posixcc, "alph", 4)) /* alpha */
7504                                 namedclass = complement ? ANYOF_NALPHA : ANYOF_ALPHA;
7505                             break;
7506                         case 'e':
7507                             if (memEQ(posixcc, "spac", 4)) /* space */
7508                                 namedclass = complement ? ANYOF_NPSXSPC : ANYOF_PSXSPC;
7509                             break;
7510                         case 'h':
7511                             if (memEQ(posixcc, "grap", 4)) /* graph */
7512                                 namedclass = complement ? ANYOF_NGRAPH : ANYOF_GRAPH;
7513                             break;
7514                         case 'i':
7515                             if (memEQ(posixcc, "asci", 4)) /* ascii */
7516                                 namedclass = complement ? ANYOF_NASCII : ANYOF_ASCII;
7517                             break;
7518                         case 'k':
7519                             if (memEQ(posixcc, "blan", 4)) /* blank */
7520                                 namedclass = complement ? ANYOF_NBLANK : ANYOF_BLANK;
7521                             break;
7522                         case 'l':
7523                             if (memEQ(posixcc, "cntr", 4)) /* cntrl */
7524                                 namedclass = complement ? ANYOF_NCNTRL : ANYOF_CNTRL;
7525                             break;
7526                         case 'm':
7527                             if (memEQ(posixcc, "alnu", 4)) /* alnum */
7528                                 namedclass = complement ? ANYOF_NALNUMC : ANYOF_ALNUMC;
7529                             break;
7530                         case 'r':
7531                             if (memEQ(posixcc, "lowe", 4)) /* lower */
7532                                 namedclass = complement ? ANYOF_NLOWER : ANYOF_LOWER;
7533                             else if (memEQ(posixcc, "uppe", 4)) /* upper */
7534                                 namedclass = complement ? ANYOF_NUPPER : ANYOF_UPPER;
7535                             break;
7536                         case 't':
7537                             if (memEQ(posixcc, "digi", 4)) /* digit */
7538                                 namedclass = complement ? ANYOF_NDIGIT : ANYOF_DIGIT;
7539                             else if (memEQ(posixcc, "prin", 4)) /* print */
7540                                 namedclass = complement ? ANYOF_NPRINT : ANYOF_PRINT;
7541                             else if (memEQ(posixcc, "punc", 4)) /* punct */
7542                                 namedclass = complement ? ANYOF_NPUNCT : ANYOF_PUNCT;
7543                             break;
7544                         }
7545                         break;
7546                     case 6:
7547                         if (memEQ(posixcc, "xdigit", 6))
7548                             namedclass = complement ? ANYOF_NXDIGIT : ANYOF_XDIGIT;
7549                         break;
7550                     }
7551
7552                     if (namedclass == OOB_NAMEDCLASS)
7553                         Simple_vFAIL3("POSIX class [:%.*s:] unknown",
7554                                       t - s - 1, s + 1);
7555                     assert (posixcc[skip] == ':');
7556                     assert (posixcc[skip+1] == ']');
7557                 } else if (!SIZE_ONLY) {
7558                     /* [[=foo=]] and [[.foo.]] are still future. */
7559
7560                     /* adjust RExC_parse so the warning shows after
7561                        the class closes */
7562                     while (UCHARAT(RExC_parse) && UCHARAT(RExC_parse) != ']')
7563                         RExC_parse++;
7564                     Simple_vFAIL3("POSIX syntax [%c %c] is reserved for future extensions", c, c);
7565                 }
7566             } else {
7567                 /* Maternal grandfather:
7568                  * "[:" ending in ":" but not in ":]" */
7569                 RExC_parse = s;
7570             }
7571         }
7572     }
7573
7574     return namedclass;
7575 }
7576
7577 STATIC void
7578 S_checkposixcc(pTHX_ RExC_state_t *pRExC_state)
7579 {
7580     dVAR;
7581     if (POSIXCC(UCHARAT(RExC_parse))) {
7582         const char *s = RExC_parse;
7583         const char  c = *s++;
7584
7585         while (isALNUM(*s))
7586             s++;
7587         if (*s && c == *s && s[1] == ']') {
7588             if (ckWARN(WARN_REGEXP))
7589                 vWARN3(s+2,
7590                         "POSIX syntax [%c %c] belongs inside character classes",
7591                         c, c);
7592
7593             /* [[=foo=]] and [[.foo.]] are still future. */
7594             if (POSIXCC_NOTYET(c)) {
7595                 /* adjust RExC_parse so the error shows after
7596                    the class closes */
7597                 while (UCHARAT(RExC_parse) && UCHARAT(RExC_parse++) != ']')
7598                     NOOP;
7599                 Simple_vFAIL3("POSIX syntax [%c %c] is reserved for future extensions", c, c);
7600             }
7601         }
7602     }
7603 }
7604
7605
7606 #define _C_C_T_(NAME,TEST,WORD)                         \
7607 ANYOF_##NAME:                                           \
7608     if (LOC)                                            \
7609         ANYOF_CLASS_SET(ret, ANYOF_##NAME);             \
7610     else {                                              \
7611         for (value = 0; value < 256; value++)           \
7612             if (TEST)                                   \
7613                 ANYOF_BITMAP_SET(ret, value);           \
7614     }                                                   \
7615     yesno = '+';                                        \
7616     what = WORD;                                        \
7617     break;                                              \
7618 case ANYOF_N##NAME:                                     \
7619     if (LOC)                                            \
7620         ANYOF_CLASS_SET(ret, ANYOF_N##NAME);            \
7621     else {                                              \
7622         for (value = 0; value < 256; value++)           \
7623             if (!TEST)                                  \
7624                 ANYOF_BITMAP_SET(ret, value);           \
7625     }                                                   \
7626     yesno = '!';                                        \
7627     what = WORD;                                        \
7628     break
7629
7630 #define _C_C_T_NOLOC_(NAME,TEST,WORD)                   \
7631 ANYOF_##NAME:                                           \
7632         for (value = 0; value < 256; value++)           \
7633             if (TEST)                                   \
7634                 ANYOF_BITMAP_SET(ret, value);           \
7635     yesno = '+';                                        \
7636     what = WORD;                                        \
7637     break;                                              \
7638 case ANYOF_N##NAME:                                     \
7639         for (value = 0; value < 256; value++)           \
7640             if (!TEST)                                  \
7641                 ANYOF_BITMAP_SET(ret, value);           \
7642     yesno = '!';                                        \
7643     what = WORD;                                        \
7644     break
7645
7646 /*
7647    parse a class specification and produce either an ANYOF node that
7648    matches the pattern or if the pattern matches a single char only and
7649    that char is < 256 and we are case insensitive then we produce an 
7650    EXACT node instead.
7651 */
7652
7653 STATIC regnode *
7654 S_regclass(pTHX_ RExC_state_t *pRExC_state, U32 depth)
7655 {
7656     dVAR;
7657     register UV nextvalue;
7658     register IV prevvalue = OOB_UNICODE;
7659     register IV range = 0;
7660     UV value = 0; /* XXX:dmq: needs to be referenceable (unfortunately) */
7661     register regnode *ret;
7662     STRLEN numlen;
7663     IV namedclass;
7664     char *rangebegin = NULL;
7665     bool need_class = 0;
7666     SV *listsv = NULL;
7667     UV n;
7668     bool optimize_invert   = TRUE;
7669     AV* unicode_alternate  = NULL;
7670 #ifdef EBCDIC
7671     UV literal_endpoint = 0;
7672 #endif
7673     UV stored = 0;  /* number of chars stored in the class */
7674
7675     regnode * const orig_emit = RExC_emit; /* Save the original RExC_emit in
7676         case we need to change the emitted regop to an EXACT. */
7677     const char * orig_parse = RExC_parse;
7678     GET_RE_DEBUG_FLAGS_DECL;
7679 #ifndef DEBUGGING
7680     PERL_UNUSED_ARG(depth);
7681 #endif
7682
7683     DEBUG_PARSE("clas");
7684
7685     /* Assume we are going to generate an ANYOF node. */
7686     ret = reganode(pRExC_state, ANYOF, 0);
7687
7688     if (!SIZE_ONLY)
7689         ANYOF_FLAGS(ret) = 0;
7690
7691     if (UCHARAT(RExC_parse) == '^') {   /* Complement of range. */
7692         RExC_naughty++;
7693         RExC_parse++;
7694         if (!SIZE_ONLY)
7695             ANYOF_FLAGS(ret) |= ANYOF_INVERT;
7696     }
7697
7698     if (SIZE_ONLY) {
7699         RExC_size += ANYOF_SKIP;
7700         listsv = &PL_sv_undef; /* For code scanners: listsv always non-NULL. */
7701     }
7702     else {
7703         RExC_emit += ANYOF_SKIP;
7704         if (FOLD)
7705             ANYOF_FLAGS(ret) |= ANYOF_FOLD;
7706         if (LOC)
7707             ANYOF_FLAGS(ret) |= ANYOF_LOCALE;
7708         ANYOF_BITMAP_ZERO(ret);
7709         listsv = newSVpvs("# comment\n");
7710     }
7711
7712     nextvalue = RExC_parse < RExC_end ? UCHARAT(RExC_parse) : 0;
7713
7714     if (!SIZE_ONLY && POSIXCC(nextvalue))
7715         checkposixcc(pRExC_state);
7716
7717     /* allow 1st char to be ] (allowing it to be - is dealt with later) */
7718     if (UCHARAT(RExC_parse) == ']')
7719         goto charclassloop;
7720
7721 parseit:
7722     while (RExC_parse < RExC_end && UCHARAT(RExC_parse) != ']') {
7723
7724     charclassloop:
7725
7726         namedclass = OOB_NAMEDCLASS; /* initialize as illegal */
7727
7728         if (!range)
7729             rangebegin = RExC_parse;
7730         if (UTF) {
7731             value = utf8n_to_uvchr((U8*)RExC_parse,
7732                                    RExC_end - RExC_parse,
7733                                    &numlen, UTF8_ALLOW_DEFAULT);
7734             RExC_parse += numlen;
7735         }
7736         else
7737             value = UCHARAT(RExC_parse++);
7738
7739         nextvalue = RExC_parse < RExC_end ? UCHARAT(RExC_parse) : 0;
7740         if (value == '[' && POSIXCC(nextvalue))
7741             namedclass = regpposixcc(pRExC_state, value);
7742         else if (value == '\\') {
7743             if (UTF) {
7744                 value = utf8n_to_uvchr((U8*)RExC_parse,
7745                                    RExC_end - RExC_parse,
7746                                    &numlen, UTF8_ALLOW_DEFAULT);
7747                 RExC_parse += numlen;
7748             }
7749             else
7750                 value = UCHARAT(RExC_parse++);
7751             /* Some compilers cannot handle switching on 64-bit integer
7752              * values, therefore value cannot be an UV.  Yes, this will
7753              * be a problem later if we want switch on Unicode.
7754              * A similar issue a little bit later when switching on
7755              * namedclass. --jhi */
7756             switch ((I32)value) {
7757             case 'w':   namedclass = ANYOF_ALNUM;       break;
7758             case 'W':   namedclass = ANYOF_NALNUM;      break;
7759             case 's':   namedclass = ANYOF_SPACE;       break;
7760             case 'S':   namedclass = ANYOF_NSPACE;      break;
7761             case 'd':   namedclass = ANYOF_DIGIT;       break;
7762             case 'D':   namedclass = ANYOF_NDIGIT;      break;
7763             case 'v':   namedclass = ANYOF_VERTWS;      break;
7764             case 'V':   namedclass = ANYOF_NVERTWS;     break;
7765             case 'h':   namedclass = ANYOF_HORIZWS;     break;
7766             case 'H':   namedclass = ANYOF_NHORIZWS;    break;
7767             case 'N':  /* Handle \N{NAME} in class */
7768                 {
7769                     /* We only pay attention to the first char of 
7770                     multichar strings being returned. I kinda wonder
7771                     if this makes sense as it does change the behaviour
7772                     from earlier versions, OTOH that behaviour was broken
7773                     as well. */
7774                     UV v; /* value is register so we cant & it /grrr */
7775                     if (reg_namedseq(pRExC_state, &v)) {
7776                         goto parseit;
7777                     }
7778                     value= v; 
7779                 }
7780                 break;
7781             case 'p':
7782             case 'P':
7783                 {
7784                 char *e;
7785                 if (RExC_parse >= RExC_end)
7786                     vFAIL2("Empty \\%c{}", (U8)value);
7787                 if (*RExC_parse == '{') {
7788                     const U8 c = (U8)value;
7789                     e = strchr(RExC_parse++, '}');
7790                     if (!e)
7791                         vFAIL2("Missing right brace on \\%c{}", c);
7792                     while (isSPACE(UCHARAT(RExC_parse)))
7793                         RExC_parse++;
7794                     if (e == RExC_parse)
7795                         vFAIL2("Empty \\%c{}", c);
7796                     n = e - RExC_parse;
7797                     while (isSPACE(UCHARAT(RExC_parse + n - 1)))
7798                         n--;
7799                 }
7800                 else {
7801                     e = RExC_parse;
7802                     n = 1;
7803                 }
7804                 if (!SIZE_ONLY) {
7805                     if (UCHARAT(RExC_parse) == '^') {
7806                          RExC_parse++;
7807                          n--;
7808                          value = value == 'p' ? 'P' : 'p'; /* toggle */
7809                          while (isSPACE(UCHARAT(RExC_parse))) {
7810                               RExC_parse++;
7811                               n--;
7812                          }
7813                     }
7814                     Perl_sv_catpvf(aTHX_ listsv, "%cutf8::%.*s\n",
7815                         (value=='p' ? '+' : '!'), (int)n, RExC_parse);
7816                 }
7817                 RExC_parse = e + 1;
7818                 ANYOF_FLAGS(ret) |= ANYOF_UNICODE;
7819                 namedclass = ANYOF_MAX;  /* no official name, but it's named */
7820                 }
7821                 break;
7822             case 'n':   value = '\n';                   break;
7823             case 'r':   value = '\r';                   break;
7824             case 't':   value = '\t';                   break;
7825             case 'f':   value = '\f';                   break;
7826             case 'b':   value = '\b';                   break;
7827             case 'e':   value = ASCII_TO_NATIVE('\033');break;
7828             case 'a':   value = ASCII_TO_NATIVE('\007');break;
7829             case 'x':
7830                 if (*RExC_parse == '{') {
7831                     I32 flags = PERL_SCAN_ALLOW_UNDERSCORES
7832                         | PERL_SCAN_DISALLOW_PREFIX;
7833                     char * const e = strchr(RExC_parse++, '}');
7834                     if (!e)
7835                         vFAIL("Missing right brace on \\x{}");
7836
7837                     numlen = e - RExC_parse;
7838                     value = grok_hex(RExC_parse, &numlen, &flags, NULL);
7839                     RExC_parse = e + 1;
7840                 }
7841                 else {
7842                     I32 flags = PERL_SCAN_DISALLOW_PREFIX;
7843                     numlen = 2;
7844                     value = grok_hex(RExC_parse, &numlen, &flags, NULL);
7845                     RExC_parse += numlen;
7846                 }
7847                 if (PL_encoding && value < 0x100)
7848                     goto recode_encoding;
7849                 break;
7850             case 'c':
7851                 value = UCHARAT(RExC_parse++);
7852                 value = toCTRL(value);
7853                 break;
7854             case '0': case '1': case '2': case '3': case '4':
7855             case '5': case '6': case '7': case '8': case '9':
7856                 {
7857                     I32 flags = 0;
7858                     numlen = 3;
7859                     value = grok_oct(--RExC_parse, &numlen, &flags, NULL);
7860                     RExC_parse += numlen;
7861                     if (PL_encoding && value < 0x100)
7862                         goto recode_encoding;
7863                     break;
7864                 }
7865             recode_encoding:
7866                 {
7867                     SV* enc = PL_encoding;
7868                     value = reg_recode((const char)(U8)value, &enc);
7869                     if (!enc && SIZE_ONLY && ckWARN(WARN_REGEXP))
7870                         vWARN(RExC_parse,
7871                               "Invalid escape in the specified encoding");
7872                     break;
7873                 }
7874             default:
7875                 if (!SIZE_ONLY && isALPHA(value) && ckWARN(WARN_REGEXP))
7876                     vWARN2(RExC_parse,
7877                            "Unrecognized escape \\%c in character class passed through",
7878                            (int)value);
7879                 break;
7880             }
7881         } /* end of \blah */
7882 #ifdef EBCDIC
7883         else
7884             literal_endpoint++;
7885 #endif
7886
7887         if (namedclass > OOB_NAMEDCLASS) { /* this is a named class \blah */
7888
7889             if (!SIZE_ONLY && !need_class)
7890                 ANYOF_CLASS_ZERO(ret);
7891
7892             need_class = 1;
7893
7894             /* a bad range like a-\d, a-[:digit:] ? */
7895             if (range) {
7896                 if (!SIZE_ONLY) {
7897                     if (ckWARN(WARN_REGEXP)) {
7898                         const int w =
7899                             RExC_parse >= rangebegin ?
7900                             RExC_parse - rangebegin : 0;
7901                         vWARN4(RExC_parse,
7902                                "False [] range \"%*.*s\"",
7903                                w, w, rangebegin);
7904                     }
7905                     if (prevvalue < 256) {
7906                         ANYOF_BITMAP_SET(ret, prevvalue);
7907                         ANYOF_BITMAP_SET(ret, '-');
7908                     }
7909                     else {
7910                         ANYOF_FLAGS(ret) |= ANYOF_UNICODE;
7911                         Perl_sv_catpvf(aTHX_ listsv,
7912                                        "%04"UVxf"\n%04"UVxf"\n", (UV)prevvalue, (UV) '-');
7913                     }
7914                 }
7915
7916                 range = 0; /* this was not a true range */
7917             }
7918
7919
7920     
7921             if (!SIZE_ONLY) {
7922                 const char *what = NULL;
7923                 char yesno = 0;
7924
7925                 if (namedclass > OOB_NAMEDCLASS)
7926                     optimize_invert = FALSE;
7927                 /* Possible truncation here but in some 64-bit environments
7928                  * the compiler gets heartburn about switch on 64-bit values.
7929                  * A similar issue a little earlier when switching on value.
7930                  * --jhi */
7931                 switch ((I32)namedclass) {
7932                 case _C_C_T_(ALNUM, isALNUM(value), "Word");
7933                 case _C_C_T_(ALNUMC, isALNUMC(value), "Alnum");
7934                 case _C_C_T_(ALPHA, isALPHA(value), "Alpha");
7935                 case _C_C_T_(BLANK, isBLANK(value), "Blank");
7936                 case _C_C_T_(CNTRL, isCNTRL(value), "Cntrl");
7937                 case _C_C_T_(GRAPH, isGRAPH(value), "Graph");
7938                 case _C_C_T_(LOWER, isLOWER(value), "Lower");
7939                 case _C_C_T_(PRINT, isPRINT(value), "Print");
7940                 case _C_C_T_(PSXSPC, isPSXSPC(value), "Space");
7941                 case _C_C_T_(PUNCT, isPUNCT(value), "Punct");
7942                 case _C_C_T_(SPACE, isSPACE(value), "SpacePerl");
7943                 case _C_C_T_(UPPER, isUPPER(value), "Upper");
7944                 case _C_C_T_(XDIGIT, isXDIGIT(value), "XDigit");
7945                 case _C_C_T_NOLOC_(VERTWS, is_VERTWS_latin1(&value), "VertSpace");
7946                 case _C_C_T_NOLOC_(HORIZWS, is_HORIZWS_latin1(&value), "HorizSpace");
7947                 case ANYOF_ASCII:
7948                     if (LOC)
7949                         ANYOF_CLASS_SET(ret, ANYOF_ASCII);
7950                     else {
7951 #ifndef EBCDIC
7952                         for (value = 0; value < 128; value++)
7953                             ANYOF_BITMAP_SET(ret, value);
7954 #else  /* EBCDIC */
7955                         for (value = 0; value < 256; value++) {
7956                             if (isASCII(value))
7957                                 ANYOF_BITMAP_SET(ret, value);
7958                         }
7959 #endif /* EBCDIC */
7960                     }
7961                     yesno = '+';
7962                     what = "ASCII";
7963                     break;
7964                 case ANYOF_NASCII:
7965                     if (LOC)
7966                         ANYOF_CLASS_SET(ret, ANYOF_NASCII);
7967                     else {
7968 #ifndef EBCDIC
7969                         for (value = 128; value < 256; value++)
7970                             ANYOF_BITMAP_SET(ret, value);
7971 #else  /* EBCDIC */
7972                         for (value = 0; value < 256; value++) {
7973                             if (!isASCII(value))
7974                                 ANYOF_BITMAP_SET(ret, value);
7975                         }
7976 #endif /* EBCDIC */
7977                     }
7978                     yesno = '!';
7979                     what = "ASCII";
7980                     break;              
7981                 case ANYOF_DIGIT:
7982                     if (LOC)
7983                         ANYOF_CLASS_SET(ret, ANYOF_DIGIT);
7984                     else {
7985                         /* consecutive digits assumed */
7986                         for (value = '0'; value <= '9'; value++)
7987                             ANYOF_BITMAP_SET(ret, value);
7988                     }
7989                     yesno = '+';
7990                     what = "Digit";
7991                     break;
7992                 case ANYOF_NDIGIT:
7993                     if (LOC)
7994                         ANYOF_CLASS_SET(ret, ANYOF_NDIGIT);
7995                     else {
7996                         /* consecutive digits assumed */
7997                         for (value = 0; value < '0'; value++)
7998                             ANYOF_BITMAP_SET(ret, value);
7999                         for (value = '9' + 1; value < 256; value++)
8000                             ANYOF_BITMAP_SET(ret, value);
8001                     }
8002                     yesno = '!';
8003                     what = "Digit";
8004                     break;              
8005                 case ANYOF_MAX:
8006                     /* this is to handle \p and \P */
8007                     break;
8008                 default:
8009                     vFAIL("Invalid [::] class");
8010                     break;
8011                 }
8012                 if (what) {
8013                     /* Strings such as "+utf8::isWord\n" */
8014                     Perl_sv_catpvf(aTHX_ listsv, "%cutf8::Is%s\n", yesno, what);
8015                 }
8016                 if (LOC)
8017                     ANYOF_FLAGS(ret) |= ANYOF_CLASS;
8018                 continue;
8019             }
8020         } /* end of namedclass \blah */
8021
8022         if (range) {
8023             if (prevvalue > (IV)value) /* b-a */ {
8024                 const int w = RExC_parse - rangebegin;
8025                 Simple_vFAIL4("Invalid [] range \"%*.*s\"", w, w, rangebegin);
8026                 range = 0; /* not a valid range */
8027             }
8028         }
8029         else {
8030             prevvalue = value; /* save the beginning of the range */
8031             if (*RExC_parse == '-' && RExC_parse+1 < RExC_end &&
8032                 RExC_parse[1] != ']') {
8033                 RExC_parse++;
8034
8035                 /* a bad range like \w-, [:word:]- ? */
8036                 if (namedclass > OOB_NAMEDCLASS) {
8037                     if (ckWARN(WARN_REGEXP)) {
8038                         const int w =
8039                             RExC_parse >= rangebegin ?
8040                             RExC_parse - rangebegin : 0;
8041                         vWARN4(RExC_parse,
8042                                "False [] range \"%*.*s\"",
8043                                w, w, rangebegin);
8044                     }
8045                     if (!SIZE_ONLY)
8046                         ANYOF_BITMAP_SET(ret, '-');
8047                 } else
8048                     range = 1;  /* yeah, it's a range! */
8049                 continue;       /* but do it the next time */
8050             }
8051         }
8052
8053         /* now is the next time */
8054         /*stored += (value - prevvalue + 1);*/
8055         if (!SIZE_ONLY) {
8056             if (prevvalue < 256) {
8057                 const IV ceilvalue = value < 256 ? value : 255;
8058                 IV i;
8059 #ifdef EBCDIC
8060                 /* In EBCDIC [\x89-\x91] should include
8061                  * the \x8e but [i-j] should not. */
8062                 if (literal_endpoint == 2 &&
8063                     ((isLOWER(prevvalue) && isLOWER(ceilvalue)) ||
8064                      (isUPPER(prevvalue) && isUPPER(ceilvalue))))
8065                 {
8066                     if (isLOWER(prevvalue)) {
8067                         for (i = prevvalue; i <= ceilvalue; i++)
8068                             if (isLOWER(i) && !ANYOF_BITMAP_TEST(ret,i)) {
8069                                 stored++;
8070                                 ANYOF_BITMAP_SET(ret, i);
8071                             }
8072                     } else {
8073                         for (i = prevvalue; i <= ceilvalue; i++)
8074                             if (isUPPER(i) && !ANYOF_BITMAP_TEST(ret,i)) {
8075                                 stored++;
8076                                 ANYOF_BITMAP_SET(ret, i);
8077                             }
8078                     }
8079                 }
8080                 else
8081 #endif
8082                       for (i = prevvalue; i <= ceilvalue; i++) {
8083                         if (!ANYOF_BITMAP_TEST(ret,i)) {
8084                             stored++;  
8085                             ANYOF_BITMAP_SET(ret, i);
8086                         }
8087                       }
8088           }
8089           if (value > 255 || UTF) {
8090                 const UV prevnatvalue  = NATIVE_TO_UNI(prevvalue);
8091                 const UV natvalue      = NATIVE_TO_UNI(value);
8092                 stored+=2; /* can't optimize this class */
8093                 ANYOF_FLAGS(ret) |= ANYOF_UNICODE;
8094                 if (prevnatvalue < natvalue) { /* what about > ? */
8095                     Perl_sv_catpvf(aTHX_ listsv, "%04"UVxf"\t%04"UVxf"\n",
8096                                    prevnatvalue, natvalue);
8097                 }
8098                 else if (prevnatvalue == natvalue) {
8099                     Perl_sv_catpvf(aTHX_ listsv, "%04"UVxf"\n", natvalue);
8100                     if (FOLD) {
8101                          U8 foldbuf[UTF8_MAXBYTES_CASE+1];
8102                          STRLEN foldlen;
8103                          const UV f = to_uni_fold(natvalue, foldbuf, &foldlen);
8104
8105 #ifdef EBCDIC /* RD t/uni/fold ff and 6b */
8106                          if (RExC_precomp[0] == ':' &&
8107                              RExC_precomp[1] == '[' &&
8108                              (f == 0xDF || f == 0x92)) {
8109                              f = NATIVE_TO_UNI(f);
8110                         }
8111 #endif
8112                          /* If folding and foldable and a single
8113                           * character, insert also the folded version
8114                           * to the charclass. */
8115                          if (f != value) {
8116 #ifdef EBCDIC /* RD tunifold ligatures s,t fb05, fb06 */
8117                              if ((RExC_precomp[0] == ':' &&
8118                                   RExC_precomp[1] == '[' &&
8119                                   (f == 0xA2 &&
8120                                    (value == 0xFB05 || value == 0xFB06))) ?
8121                                  foldlen == ((STRLEN)UNISKIP(f) - 1) :
8122                                  foldlen == (STRLEN)UNISKIP(f) )
8123 #else
8124                               if (foldlen == (STRLEN)UNISKIP(f))
8125 #endif
8126                                   Perl_sv_catpvf(aTHX_ listsv,
8127                                                  "%04"UVxf"\n", f);
8128                               else {
8129                                   /* Any multicharacter foldings
8130                                    * require the following transform:
8131                                    * [ABCDEF] -> (?:[ABCabcDEFd]|pq|rst)
8132                                    * where E folds into "pq" and F folds
8133                                    * into "rst", all other characters
8134                                    * fold to single characters.  We save
8135                                    * away these multicharacter foldings,
8136                                    * to be later saved as part of the
8137                                    * additional "s" data. */
8138                                   SV *sv;
8139
8140                                   if (!unicode_alternate)
8141                                       unicode_alternate = newAV();
8142                                   sv = newSVpvn((char*)foldbuf, foldlen);
8143                                   SvUTF8_on(sv);
8144                                   av_push(unicode_alternate, sv);
8145                               }
8146                          }
8147
8148                          /* If folding and the value is one of the Greek
8149                           * sigmas insert a few more sigmas to make the
8150                           * folding rules of the sigmas to work right.
8151                           * Note that not all the possible combinations
8152                           * are handled here: some of them are handled
8153                           * by the standard folding rules, and some of
8154                           * them (literal or EXACTF cases) are handled
8155                           * during runtime in regexec.c:S_find_byclass(). */
8156                          if (value == UNICODE_GREEK_SMALL_LETTER_FINAL_SIGMA) {
8157                               Perl_sv_catpvf(aTHX_ listsv, "%04"UVxf"\n",
8158                                              (UV)UNICODE_GREEK_CAPITAL_LETTER_SIGMA);
8159                               Perl_sv_catpvf(aTHX_ listsv, "%04"UVxf"\n",
8160                                              (UV)UNICODE_GREEK_SMALL_LETTER_SIGMA);
8161                          }
8162                          else if (value == UNICODE_GREEK_CAPITAL_LETTER_SIGMA)
8163                               Perl_sv_catpvf(aTHX_ listsv, "%04"UVxf"\n",
8164                                              (UV)UNICODE_GREEK_SMALL_LETTER_SIGMA);
8165                     }
8166                 }
8167             }
8168 #ifdef EBCDIC
8169             literal_endpoint = 0;
8170 #endif
8171         }
8172
8173         range = 0; /* this range (if it was one) is done now */
8174     }
8175
8176     if (need_class) {
8177         ANYOF_FLAGS(ret) |= ANYOF_LARGE;
8178         if (SIZE_ONLY)
8179             RExC_size += ANYOF_CLASS_ADD_SKIP;
8180         else
8181             RExC_emit += ANYOF_CLASS_ADD_SKIP;
8182     }
8183
8184
8185     if (SIZE_ONLY)
8186         return ret;
8187     /****** !SIZE_ONLY AFTER HERE *********/
8188
8189     if( stored == 1 && (value < 128 || (value < 256 && !UTF))
8190         && !( ANYOF_FLAGS(ret) & ( ANYOF_FLAGS_ALL ^ ANYOF_FOLD ) )
8191     ) {
8192         /* optimize single char class to an EXACT node
8193            but *only* when its not a UTF/high char  */
8194         const char * cur_parse= RExC_parse;
8195         RExC_emit = (regnode *)orig_emit;
8196         RExC_parse = (char *)orig_parse;
8197         ret = reg_node(pRExC_state,
8198                        (U8)((ANYOF_FLAGS(ret) & ANYOF_FOLD) ? EXACTF : EXACT));
8199         RExC_parse = (char *)cur_parse;
8200         *STRING(ret)= (char)value;
8201         STR_LEN(ret)= 1;
8202         RExC_emit += STR_SZ(1);
8203         return ret;
8204     }
8205     /* optimize case-insensitive simple patterns (e.g. /[a-z]/i) */
8206     if ( /* If the only flag is folding (plus possibly inversion). */
8207         ((ANYOF_FLAGS(ret) & (ANYOF_FLAGS_ALL ^ ANYOF_INVERT)) == ANYOF_FOLD)
8208        ) {
8209         for (value = 0; value < 256; ++value) {
8210             if (ANYOF_BITMAP_TEST(ret, value)) {
8211                 UV fold = PL_fold[value];
8212
8213                 if (fold != value)
8214                     ANYOF_BITMAP_SET(ret, fold);
8215             }
8216         }
8217         ANYOF_FLAGS(ret) &= ~ANYOF_FOLD;
8218     }
8219
8220     /* optimize inverted simple patterns (e.g. [^a-z]) */
8221     if (optimize_invert &&
8222         /* If the only flag is inversion. */
8223         (ANYOF_FLAGS(ret) & ANYOF_FLAGS_ALL) == ANYOF_INVERT) {
8224         for (value = 0; value < ANYOF_BITMAP_SIZE; ++value)
8225             ANYOF_BITMAP(ret)[value] ^= ANYOF_FLAGS_ALL;
8226         ANYOF_FLAGS(ret) = ANYOF_UNICODE_ALL;
8227     }
8228     {
8229         AV * const av = newAV();
8230         SV *rv;
8231         /* The 0th element stores the character class description
8232          * in its textual form: used later (regexec.c:Perl_regclass_swash())
8233          * to initialize the appropriate swash (which gets stored in
8234          * the 1st element), and also useful for dumping the regnode.
8235          * The 2nd element stores the multicharacter foldings,
8236          * used later (regexec.c:S_reginclass()). */
8237         av_store(av, 0, listsv);
8238         av_store(av, 1, NULL);
8239         av_store(av, 2, (SV*)unicode_alternate);
8240         rv = newRV_noinc((SV*)av);
8241         n = add_data(pRExC_state, 1, "s");
8242         RExC_rxi->data->data[n] = (void*)rv;
8243         ARG_SET(ret, n);
8244     }
8245     return ret;
8246 }
8247 #undef _C_C_T_
8248
8249
8250 /* reg_skipcomment()
8251
8252    Absorbs an /x style # comments from the input stream.
8253    Returns true if there is more text remaining in the stream.
8254    Will set the REG_SEEN_RUN_ON_COMMENT flag if the comment
8255    terminates the pattern without including a newline.
8256
8257    Note its the callers responsibility to ensure that we are
8258    actually in /x mode
8259
8260 */
8261
8262 STATIC bool
8263 S_reg_skipcomment(pTHX_ RExC_state_t *pRExC_state)
8264 {
8265     bool ended = 0;
8266     while (RExC_parse < RExC_end)
8267         if (*RExC_parse++ == '\n') {
8268             ended = 1;
8269             break;
8270         }
8271     if (!ended) {
8272         /* we ran off the end of the pattern without ending
8273            the comment, so we have to add an \n when wrapping */
8274         RExC_seen |= REG_SEEN_RUN_ON_COMMENT;
8275         return 0;
8276     } else
8277         return 1;
8278 }
8279
8280 /* nextchar()
8281
8282    Advance that parse position, and optionall absorbs
8283    "whitespace" from the inputstream.
8284
8285    Without /x "whitespace" means (?#...) style comments only,
8286    with /x this means (?#...) and # comments and whitespace proper.
8287
8288    Returns the RExC_parse point from BEFORE the scan occurs.
8289
8290    This is the /x friendly way of saying RExC_parse++.
8291 */
8292
8293 STATIC char*
8294 S_nextchar(pTHX_ RExC_state_t *pRExC_state)
8295 {
8296     char* const retval = RExC_parse++;
8297
8298     for (;;) {
8299         if (*RExC_parse == '(' && RExC_parse[1] == '?' &&
8300                 RExC_parse[2] == '#') {
8301             while (*RExC_parse != ')') {
8302                 if (RExC_parse == RExC_end)
8303                     FAIL("Sequence (?#... not terminated");
8304                 RExC_parse++;
8305             }
8306             RExC_parse++;
8307             continue;
8308         }
8309         if (RExC_flags & RXf_PMf_EXTENDED) {
8310             if (isSPACE(*RExC_parse)) {
8311                 RExC_parse++;
8312                 continue;
8313             }
8314             else if (*RExC_parse == '#') {
8315                 if ( reg_skipcomment( pRExC_state ) )
8316                     continue;
8317             }
8318         }
8319         return retval;
8320     }
8321 }
8322
8323 /*
8324 - reg_node - emit a node
8325 */
8326 STATIC regnode *                        /* Location. */
8327 S_reg_node(pTHX_ RExC_state_t *pRExC_state, U8 op)
8328 {
8329     dVAR;
8330     register regnode *ptr;
8331     regnode * const ret = RExC_emit;
8332     GET_RE_DEBUG_FLAGS_DECL;
8333
8334     if (SIZE_ONLY) {
8335         SIZE_ALIGN(RExC_size);
8336         RExC_size += 1;
8337         return(ret);
8338     }
8339     if (RExC_emit >= RExC_emit_bound)
8340         Perl_croak(aTHX_ "panic: reg_node overrun trying to emit %d", op);
8341
8342     NODE_ALIGN_FILL(ret);
8343     ptr = ret;
8344     FILL_ADVANCE_NODE(ptr, op);
8345 #ifdef RE_TRACK_PATTERN_OFFSETS
8346     if (RExC_offsets) {         /* MJD */
8347         MJD_OFFSET_DEBUG(("%s:%d: (op %s) %s %"UVuf" (len %"UVuf") (max %"UVuf").\n", 
8348               "reg_node", __LINE__, 
8349               PL_reg_name[op],
8350               (UV)(RExC_emit - RExC_emit_start) > RExC_offsets[0] 
8351                 ? "Overwriting end of array!\n" : "OK",
8352               (UV)(RExC_emit - RExC_emit_start),
8353               (UV)(RExC_parse - RExC_start),
8354               (UV)RExC_offsets[0])); 
8355         Set_Node_Offset(RExC_emit, RExC_parse + (op == END));
8356     }
8357 #endif
8358     RExC_emit = ptr;
8359     return(ret);
8360 }
8361
8362 /*
8363 - reganode - emit a node with an argument
8364 */
8365 STATIC regnode *                        /* Location. */
8366 S_reganode(pTHX_ RExC_state_t *pRExC_state, U8 op, U32 arg)
8367 {
8368     dVAR;
8369     register regnode *ptr;
8370     regnode * const ret = RExC_emit;
8371     GET_RE_DEBUG_FLAGS_DECL;
8372
8373     if (SIZE_ONLY) {
8374         SIZE_ALIGN(RExC_size);
8375         RExC_size += 2;
8376         /* 
8377            We can't do this:
8378            
8379            assert(2==regarglen[op]+1); 
8380         
8381            Anything larger than this has to allocate the extra amount.
8382            If we changed this to be:
8383            
8384            RExC_size += (1 + regarglen[op]);
8385            
8386            then it wouldn't matter. Its not clear what side effect
8387            might come from that so its not done so far.
8388            -- dmq
8389         */
8390         return(ret);
8391     }
8392     if (RExC_emit >= RExC_emit_bound)
8393         Perl_croak(aTHX_ "panic: reg_node overrun trying to emit %d", op);
8394
8395     NODE_ALIGN_FILL(ret);
8396     ptr = ret;
8397     FILL_ADVANCE_NODE_ARG(ptr, op, arg);
8398 #ifdef RE_TRACK_PATTERN_OFFSETS
8399     if (RExC_offsets) {         /* MJD */
8400         MJD_OFFSET_DEBUG(("%s(%d): (op %s) %s %"UVuf" <- %"UVuf" (max %"UVuf").\n", 
8401               "reganode",
8402               __LINE__,
8403               PL_reg_name[op],
8404               (UV)(RExC_emit - RExC_emit_start) > RExC_offsets[0] ? 
8405               "Overwriting end of array!\n" : "OK",
8406               (UV)(RExC_emit - RExC_emit_start),
8407               (UV)(RExC_parse - RExC_start),
8408               (UV)RExC_offsets[0])); 
8409         Set_Cur_Node_Offset;
8410     }
8411 #endif            
8412     RExC_emit = ptr;
8413     return(ret);
8414 }
8415
8416 /*
8417 - reguni - emit (if appropriate) a Unicode character
8418 */
8419 STATIC STRLEN
8420 S_reguni(pTHX_ const RExC_state_t *pRExC_state, UV uv, char* s)
8421 {
8422     dVAR;
8423     return SIZE_ONLY ? UNISKIP(uv) : (uvchr_to_utf8((U8*)s, uv) - (U8*)s);
8424 }
8425
8426 /*
8427 - reginsert - insert an operator in front of already-emitted operand
8428 *
8429 * Means relocating the operand.
8430 */
8431 STATIC void
8432 S_reginsert(pTHX_ RExC_state_t *pRExC_state, U8 op, regnode *opnd, U32 depth)
8433 {
8434     dVAR;
8435     register regnode *src;
8436     register regnode *dst;
8437     register regnode *place;
8438     const int offset = regarglen[(U8)op];
8439     const int size = NODE_STEP_REGNODE + offset;
8440     GET_RE_DEBUG_FLAGS_DECL;
8441     PERL_UNUSED_ARG(depth);
8442 /* (PL_regkind[(U8)op] == CURLY ? EXTRA_STEP_2ARGS : 0); */
8443     DEBUG_PARSE_FMT("inst"," - %s",PL_reg_name[op]);
8444     if (SIZE_ONLY) {
8445         RExC_size += size;
8446         return;
8447     }
8448
8449     src = RExC_emit;
8450     RExC_emit += size;
8451     dst = RExC_emit;
8452     if (RExC_open_parens) {
8453         int paren;
8454         /*DEBUG_PARSE_FMT("inst"," - %"IVdf, (IV)RExC_npar);*/
8455         for ( paren=0 ; paren < RExC_npar ; paren++ ) {
8456             if ( RExC_open_parens[paren] >= opnd ) {
8457                 /*DEBUG_PARSE_FMT("open"," - %d",size);*/
8458                 RExC_open_parens[paren] += size;
8459             } else {
8460                 /*DEBUG_PARSE_FMT("open"," - %s","ok");*/
8461             }
8462             if ( RExC_close_parens[paren] >= opnd ) {
8463                 /*DEBUG_PARSE_FMT("close"," - %d",size);*/
8464                 RExC_close_parens[paren] += size;
8465             } else {
8466                 /*DEBUG_PARSE_FMT("close"," - %s","ok");*/
8467             }
8468         }
8469     }
8470
8471     while (src > opnd) {
8472         StructCopy(--src, --dst, regnode);
8473 #ifdef RE_TRACK_PATTERN_OFFSETS
8474         if (RExC_offsets) {     /* MJD 20010112 */
8475             MJD_OFFSET_DEBUG(("%s(%d): (op %s) %s copy %"UVuf" -> %"UVuf" (max %"UVuf").\n",
8476                   "reg_insert",
8477                   __LINE__,
8478                   PL_reg_name[op],
8479                   (UV)(dst - RExC_emit_start) > RExC_offsets[0] 
8480                     ? "Overwriting end of array!\n" : "OK",
8481                   (UV)(src - RExC_emit_start),
8482                   (UV)(dst - RExC_emit_start),
8483                   (UV)RExC_offsets[0])); 
8484             Set_Node_Offset_To_R(dst-RExC_emit_start, Node_Offset(src));
8485             Set_Node_Length_To_R(dst-RExC_emit_start, Node_Length(src));
8486         }
8487 #endif
8488     }
8489     
8490
8491     place = opnd;               /* Op node, where operand used to be. */
8492 #ifdef RE_TRACK_PATTERN_OFFSETS
8493     if (RExC_offsets) {         /* MJD */
8494         MJD_OFFSET_DEBUG(("%s(%d): (op %s) %s %"UVuf" <- %"UVuf" (max %"UVuf").\n", 
8495               "reginsert",
8496               __LINE__,
8497               PL_reg_name[op],
8498               (UV)(place - RExC_emit_start) > RExC_offsets[0] 
8499               ? "Overwriting end of array!\n" : "OK",
8500               (UV)(place - RExC_emit_start),
8501               (UV)(RExC_parse - RExC_start),
8502               (UV)RExC_offsets[0]));
8503         Set_Node_Offset(place, RExC_parse);
8504         Set_Node_Length(place, 1);
8505     }
8506 #endif    
8507     src = NEXTOPER(place);
8508     FILL_ADVANCE_NODE(place, op);
8509     Zero(src, offset, regnode);
8510 }
8511
8512 /*
8513 - regtail - set the next-pointer at the end of a node chain of p to val.
8514 - SEE ALSO: regtail_study
8515 */
8516 /* TODO: All three parms should be const */
8517 STATIC void
8518 S_regtail(pTHX_ RExC_state_t *pRExC_state, regnode *p, const regnode *val,U32 depth)
8519 {
8520     dVAR;
8521     register regnode *scan;
8522     GET_RE_DEBUG_FLAGS_DECL;
8523 #ifndef DEBUGGING
8524     PERL_UNUSED_ARG(depth);
8525 #endif
8526
8527     if (SIZE_ONLY)
8528         return;
8529
8530     /* Find last node. */
8531     scan = p;
8532     for (;;) {
8533         regnode * const temp = regnext(scan);
8534         DEBUG_PARSE_r({
8535             SV * const mysv=sv_newmortal();
8536             DEBUG_PARSE_MSG((scan==p ? "tail" : ""));
8537             regprop(RExC_rx, mysv, scan);
8538             PerlIO_printf(Perl_debug_log, "~ %s (%d) %s %s\n",
8539                 SvPV_nolen_const(mysv), REG_NODE_NUM(scan),
8540                     (temp == NULL ? "->" : ""),
8541                     (temp == NULL ? PL_reg_name[OP(val)] : "")
8542             );
8543         });
8544         if (temp == NULL)
8545             break;
8546         scan = temp;
8547     }
8548
8549     if (reg_off_by_arg[OP(scan)]) {
8550         ARG_SET(scan, val - scan);
8551     }
8552     else {
8553         NEXT_OFF(scan) = val - scan;
8554     }
8555 }
8556
8557 #ifdef DEBUGGING
8558 /*
8559 - regtail_study - set the next-pointer at the end of a node chain of p to val.
8560 - Look for optimizable sequences at the same time.
8561 - currently only looks for EXACT chains.
8562
8563 This is expermental code. The idea is to use this routine to perform 
8564 in place optimizations on branches and groups as they are constructed,
8565 with the long term intention of removing optimization from study_chunk so
8566 that it is purely analytical.
8567
8568 Currently only used when in DEBUG mode. The macro REGTAIL_STUDY() is used
8569 to control which is which.
8570
8571 */
8572 /* TODO: All four parms should be const */
8573
8574 STATIC U8
8575 S_regtail_study(pTHX_ RExC_state_t *pRExC_state, regnode *p, const regnode *val,U32 depth)
8576 {
8577     dVAR;
8578     register regnode *scan;
8579     U8 exact = PSEUDO;
8580 #ifdef EXPERIMENTAL_INPLACESCAN
8581     I32 min = 0;
8582 #endif
8583
8584     GET_RE_DEBUG_FLAGS_DECL;
8585
8586
8587     if (SIZE_ONLY)
8588         return exact;
8589
8590     /* Find last node. */
8591
8592     scan = p;
8593     for (;;) {
8594         regnode * const temp = regnext(scan);
8595 #ifdef EXPERIMENTAL_INPLACESCAN
8596         if (PL_regkind[OP(scan)] == EXACT)
8597             if (join_exact(pRExC_state,scan,&min,1,val,depth+1))
8598                 return EXACT;
8599 #endif
8600         if ( exact ) {
8601             switch (OP(scan)) {
8602                 case EXACT:
8603                 case EXACTF:
8604                 case EXACTFL:
8605                         if( exact == PSEUDO )
8606                             exact= OP(scan);
8607                         else if ( exact != OP(scan) )
8608                             exact= 0;
8609                 case NOTHING:
8610                     break;
8611                 default:
8612                     exact= 0;
8613             }
8614         }
8615         DEBUG_PARSE_r({
8616             SV * const mysv=sv_newmortal();
8617             DEBUG_PARSE_MSG((scan==p ? "tsdy" : ""));
8618             regprop(RExC_rx, mysv, scan);
8619             PerlIO_printf(Perl_debug_log, "~ %s (%d) -> %s\n",
8620                 SvPV_nolen_const(mysv),
8621                 REG_NODE_NUM(scan),
8622                 PL_reg_name[exact]);
8623         });
8624         if (temp == NULL)
8625             break;
8626         scan = temp;
8627     }
8628     DEBUG_PARSE_r({
8629         SV * const mysv_val=sv_newmortal();
8630         DEBUG_PARSE_MSG("");
8631         regprop(RExC_rx, mysv_val, val);
8632         PerlIO_printf(Perl_debug_log, "~ attach to %s (%"IVdf") offset to %"IVdf"\n",
8633                       SvPV_nolen_const(mysv_val),
8634                       (IV)REG_NODE_NUM(val),
8635                       (IV)(val - scan)
8636         );
8637     });
8638     if (reg_off_by_arg[OP(scan)]) {
8639         ARG_SET(scan, val - scan);
8640     }
8641     else {
8642         NEXT_OFF(scan) = val - scan;
8643     }
8644
8645     return exact;
8646 }
8647 #endif
8648
8649 /*
8650  - regcurly - a little FSA that accepts {\d+,?\d*}
8651  */
8652 STATIC I32
8653 S_regcurly(register const char *s)
8654 {
8655     if (*s++ != '{')
8656         return FALSE;
8657     if (!isDIGIT(*s))
8658         return FALSE;
8659     while (isDIGIT(*s))
8660         s++;
8661     if (*s == ',')
8662         s++;
8663     while (isDIGIT(*s))
8664         s++;
8665     if (*s != '}')
8666         return FALSE;
8667     return TRUE;
8668 }
8669
8670
8671 /*
8672  - regdump - dump a regexp onto Perl_debug_log in vaguely comprehensible form
8673  */
8674 #ifdef DEBUGGING
8675 void 
8676 S_regdump_extflags(pTHX_ const char *lead, const U32 flags) {
8677     int bit;
8678     int set=0;
8679     for (bit=0; bit<32; bit++) {
8680         if (flags & (1<<bit)) {
8681             if (!set++ && lead) 
8682                 PerlIO_printf(Perl_debug_log, "%s",lead);
8683             PerlIO_printf(Perl_debug_log, "%s ",PL_reg_extflags_name[bit]);
8684         }               
8685     }      
8686     if (lead)  {
8687         if (set) 
8688             PerlIO_printf(Perl_debug_log, "\n");
8689         else 
8690             PerlIO_printf(Perl_debug_log, "%s[none-set]\n",lead);
8691     }            
8692 }   
8693 #endif
8694
8695 void
8696 Perl_regdump(pTHX_ const regexp *r)
8697 {
8698 #ifdef DEBUGGING
8699     dVAR;
8700     SV * const sv = sv_newmortal();
8701     SV *dsv= sv_newmortal();
8702     RXi_GET_DECL(r,ri);
8703     GET_RE_DEBUG_FLAGS_DECL;
8704
8705     (void)dumpuntil(r, ri->program, ri->program + 1, NULL, NULL, sv, 0, 0);
8706
8707     /* Header fields of interest. */
8708     if (r->anchored_substr) {
8709         RE_PV_QUOTED_DECL(s, 0, dsv, SvPVX_const(r->anchored_substr), 
8710             RE_SV_DUMPLEN(r->anchored_substr), 30);
8711         PerlIO_printf(Perl_debug_log,
8712                       "anchored %s%s at %"IVdf" ",
8713                       s, RE_SV_TAIL(r->anchored_substr),
8714                       (IV)r->anchored_offset);
8715     } else if (r->anchored_utf8) {
8716         RE_PV_QUOTED_DECL(s, 1, dsv, SvPVX_const(r->anchored_utf8), 
8717             RE_SV_DUMPLEN(r->anchored_utf8), 30);
8718         PerlIO_printf(Perl_debug_log,
8719                       "anchored utf8 %s%s at %"IVdf" ",
8720                       s, RE_SV_TAIL(r->anchored_utf8),
8721                       (IV)r->anchored_offset);
8722     }                 
8723     if (r->float_substr) {
8724         RE_PV_QUOTED_DECL(s, 0, dsv, SvPVX_const(r->float_substr), 
8725             RE_SV_DUMPLEN(r->float_substr), 30);
8726         PerlIO_printf(Perl_debug_log,
8727                       "floating %s%s at %"IVdf"..%"UVuf" ",
8728                       s, RE_SV_TAIL(r->float_substr),
8729                       (IV)r->float_min_offset, (UV)r->float_max_offset);
8730     } else if (r->float_utf8) {
8731         RE_PV_QUOTED_DECL(s, 1, dsv, SvPVX_const(r->float_utf8), 
8732             RE_SV_DUMPLEN(r->float_utf8), 30);
8733         PerlIO_printf(Perl_debug_log,
8734                       "floating utf8 %s%s at %"IVdf"..%"UVuf" ",
8735                       s, RE_SV_TAIL(r->float_utf8),
8736                       (IV)r->float_min_offset, (UV)r->float_max_offset);
8737     }
8738     if (r->check_substr || r->check_utf8)
8739         PerlIO_printf(Perl_debug_log,
8740                       (const char *)
8741                       (r->check_substr == r->float_substr
8742                        && r->check_utf8 == r->float_utf8
8743                        ? "(checking floating" : "(checking anchored"));
8744     if (r->extflags & RXf_NOSCAN)
8745         PerlIO_printf(Perl_debug_log, " noscan");
8746     if (r->extflags & RXf_CHECK_ALL)
8747         PerlIO_printf(Perl_debug_log, " isall");
8748     if (r->check_substr || r->check_utf8)
8749         PerlIO_printf(Perl_debug_log, ") ");
8750
8751     if (ri->regstclass) {
8752         regprop(r, sv, ri->regstclass);
8753         PerlIO_printf(Perl_debug_log, "stclass %s ", SvPVX_const(sv));
8754     }
8755     if (r->extflags & RXf_ANCH) {
8756         PerlIO_printf(Perl_debug_log, "anchored");
8757         if (r->extflags & RXf_ANCH_BOL)
8758             PerlIO_printf(Perl_debug_log, "(BOL)");
8759         if (r->extflags & RXf_ANCH_MBOL)
8760             PerlIO_printf(Perl_debug_log, "(MBOL)");
8761         if (r->extflags & RXf_ANCH_SBOL)
8762             PerlIO_printf(Perl_debug_log, "(SBOL)");
8763         if (r->extflags & RXf_ANCH_GPOS)
8764             PerlIO_printf(Perl_debug_log, "(GPOS)");
8765         PerlIO_putc(Perl_debug_log, ' ');
8766     }
8767     if (r->extflags & RXf_GPOS_SEEN)
8768         PerlIO_printf(Perl_debug_log, "GPOS:%"UVuf" ", (UV)r->gofs);
8769     if (r->intflags & PREGf_SKIP)
8770         PerlIO_printf(Perl_debug_log, "plus ");
8771     if (r->intflags & PREGf_IMPLICIT)
8772         PerlIO_printf(Perl_debug_log, "implicit ");
8773     PerlIO_printf(Perl_debug_log, "minlen %"IVdf" ", (IV)r->minlen);
8774     if (r->extflags & RXf_EVAL_SEEN)
8775         PerlIO_printf(Perl_debug_log, "with eval ");
8776     PerlIO_printf(Perl_debug_log, "\n");
8777     DEBUG_FLAGS_r(regdump_extflags("r->extflags: ",r->extflags));            
8778 #else
8779     PERL_UNUSED_CONTEXT;
8780     PERL_UNUSED_ARG(r);
8781 #endif  /* DEBUGGING */
8782 }
8783
8784 /*
8785 - regprop - printable representation of opcode
8786 */
8787 void
8788 Perl_regprop(pTHX_ const regexp *prog, SV *sv, const regnode *o)
8789 {
8790 #ifdef DEBUGGING
8791     dVAR;
8792     register int k;
8793     RXi_GET_DECL(prog,progi);
8794     GET_RE_DEBUG_FLAGS_DECL;
8795     
8796
8797     sv_setpvn(sv, "", 0);
8798
8799     if (OP(o) > REGNODE_MAX)            /* regnode.type is unsigned */
8800         /* It would be nice to FAIL() here, but this may be called from
8801            regexec.c, and it would be hard to supply pRExC_state. */
8802         Perl_croak(aTHX_ "Corrupted regexp opcode %d > %d", (int)OP(o), (int)REGNODE_MAX);
8803     sv_catpv(sv, PL_reg_name[OP(o)]); /* Take off const! */
8804
8805     k = PL_regkind[OP(o)];
8806
8807     if (k == EXACT) {
8808         sv_catpvs(sv, " ");
8809         /* Using is_utf8_string() (via PERL_PV_UNI_DETECT) 
8810          * is a crude hack but it may be the best for now since 
8811          * we have no flag "this EXACTish node was UTF-8" 
8812          * --jhi */
8813         pv_pretty(sv, STRING(o), STR_LEN(o), 60, PL_colors[0], PL_colors[1],
8814                   PERL_PV_ESCAPE_UNI_DETECT |
8815                   PERL_PV_PRETTY_ELLIPSES   |
8816                   PERL_PV_PRETTY_LTGT       |
8817                   PERL_PV_PRETTY_NOCLEAR
8818                   );
8819     } else if (k == TRIE) {
8820         /* print the details of the trie in dumpuntil instead, as
8821          * progi->data isn't available here */
8822         const char op = OP(o);
8823         const U32 n = ARG(o);
8824         const reg_ac_data * const ac = IS_TRIE_AC(op) ?
8825                (reg_ac_data *)progi->data->data[n] :
8826                NULL;
8827         const reg_trie_data * const trie
8828             = (reg_trie_data*)progi->data->data[!IS_TRIE_AC(op) ? n : ac->trie];
8829         
8830         Perl_sv_catpvf(aTHX_ sv, "-%s",PL_reg_name[o->flags]);
8831         DEBUG_TRIE_COMPILE_r(
8832             Perl_sv_catpvf(aTHX_ sv,
8833                 "<S:%"UVuf"/%"IVdf" W:%"UVuf" L:%"UVuf"/%"UVuf" C:%"UVuf"/%"UVuf">",
8834                 (UV)trie->startstate,
8835                 (IV)trie->statecount-1, /* -1 because of the unused 0 element */
8836                 (UV)trie->wordcount,
8837                 (UV)trie->minlen,
8838                 (UV)trie->maxlen,
8839                 (UV)TRIE_CHARCOUNT(trie),
8840                 (UV)trie->uniquecharcount
8841             )
8842         );
8843         if ( IS_ANYOF_TRIE(op) || trie->bitmap ) {
8844             int i;
8845             int rangestart = -1;
8846             U8* bitmap = IS_ANYOF_TRIE(op) ? (U8*)ANYOF_BITMAP(o) : (U8*)TRIE_BITMAP(trie);
8847             sv_catpvs(sv, "[");
8848             for (i = 0; i <= 256; i++) {
8849                 if (i < 256 && BITMAP_TEST(bitmap,i)) {
8850                     if (rangestart == -1)
8851                         rangestart = i;
8852                 } else if (rangestart != -1) {
8853                     if (i <= rangestart + 3)
8854                         for (; rangestart < i; rangestart++)
8855                             put_byte(sv, rangestart);
8856                     else {
8857                         put_byte(sv, rangestart);
8858                         sv_catpvs(sv, "-");
8859                         put_byte(sv, i - 1);
8860                     }
8861                     rangestart = -1;
8862                 }
8863             }
8864             sv_catpvs(sv, "]");
8865         } 
8866          
8867     } else if (k == CURLY) {
8868         if (OP(o) == CURLYM || OP(o) == CURLYN || OP(o) == CURLYX)
8869             Perl_sv_catpvf(aTHX_ sv, "[%d]", o->flags); /* Parenth number */
8870         Perl_sv_catpvf(aTHX_ sv, " {%d,%d}", ARG1(o), ARG2(o));
8871     }
8872     else if (k == WHILEM && o->flags)                   /* Ordinal/of */
8873         Perl_sv_catpvf(aTHX_ sv, "[%d/%d]", o->flags & 0xf, o->flags>>4);
8874     else if (k == REF || k == OPEN || k == CLOSE || k == GROUPP || OP(o)==ACCEPT) {
8875         Perl_sv_catpvf(aTHX_ sv, "%d", (int)ARG(o));    /* Parenth number */
8876         if ( prog->paren_names ) {
8877             if ( k != REF || OP(o) < NREF) {        
8878                 AV *list= (AV *)progi->data->data[progi->name_list_idx];
8879                 SV **name= av_fetch(list, ARG(o), 0 );
8880                 if (name)
8881                     Perl_sv_catpvf(aTHX_ sv, " '%"SVf"'", SVfARG(*name));
8882             }       
8883             else {
8884                 AV *list= (AV *)progi->data->data[ progi->name_list_idx ];
8885                 SV *sv_dat=(SV*)progi->data->data[ ARG( o ) ];
8886                 I32 *nums=(I32*)SvPVX(sv_dat);
8887                 SV **name= av_fetch(list, nums[0], 0 );
8888                 I32 n;
8889                 if (name) {
8890                     for ( n=0; n<SvIVX(sv_dat); n++ ) {
8891                         Perl_sv_catpvf(aTHX_ sv, "%s%"IVdf,
8892                                     (n ? "," : ""), (IV)nums[n]);
8893                     }
8894                     Perl_sv_catpvf(aTHX_ sv, " '%"SVf"'", SVfARG(*name));
8895                 }
8896             }
8897         }            
8898     } else if (k == GOSUB) 
8899         Perl_sv_catpvf(aTHX_ sv, "%d[%+d]", (int)ARG(o),(int)ARG2L(o)); /* Paren and offset */
8900     else if (k == VERB) {
8901         if (!o->flags) 
8902             Perl_sv_catpvf(aTHX_ sv, ":%"SVf, 
8903                 SVfARG((SV*)progi->data->data[ ARG( o ) ]));
8904     } else if (k == LOGICAL)
8905         Perl_sv_catpvf(aTHX_ sv, "[%d]", o->flags);     /* 2: embedded, otherwise 1 */
8906     else if (k == FOLDCHAR)
8907         Perl_sv_catpvf(aTHX_ sv, "[0x%"UVXf"]", PTR2UV(ARG(o)) );
8908     else if (k == ANYOF) {
8909         int i, rangestart = -1;
8910         const U8 flags = ANYOF_FLAGS(o);
8911
8912         /* Should be synchronized with * ANYOF_ #xdefines in regcomp.h */
8913         static const char * const anyofs[] = {
8914             "\\w",
8915             "\\W",
8916             "\\s",
8917             "\\S",
8918             "\\d",
8919             "\\D",
8920             "[:alnum:]",
8921             "[:^alnum:]",
8922             "[:alpha:]",
8923             "[:^alpha:]",
8924             "[:ascii:]",
8925             "[:^ascii:]",
8926             "[:ctrl:]",
8927             "[:^ctrl:]",
8928             "[:graph:]",
8929             "[:^graph:]",
8930             "[:lower:]",
8931             "[:^lower:]",
8932             "[:print:]",
8933             "[:^print:]",
8934             "[:punct:]",
8935             "[:^punct:]",
8936             "[:upper:]",
8937             "[:^upper:]",
8938             "[:xdigit:]",
8939             "[:^xdigit:]",
8940             "[:space:]",
8941             "[:^space:]",
8942             "[:blank:]",
8943             "[:^blank:]"
8944         };
8945
8946         if (flags & ANYOF_LOCALE)
8947             sv_catpvs(sv, "{loc}");
8948         if (flags & ANYOF_FOLD)
8949             sv_catpvs(sv, "{i}");
8950         Perl_sv_catpvf(aTHX_ sv, "[%s", PL_colors[0]);
8951         if (flags & ANYOF_INVERT)
8952             sv_catpvs(sv, "^");
8953         for (i = 0; i <= 256; i++) {
8954             if (i < 256 && ANYOF_BITMAP_TEST(o,i)) {
8955                 if (rangestart == -1)
8956                     rangestart = i;
8957             } else if (rangestart != -1) {
8958                 if (i <= rangestart + 3)
8959                     for (; rangestart < i; rangestart++)
8960                         put_byte(sv, rangestart);
8961                 else {
8962                     put_byte(sv, rangestart);
8963                     sv_catpvs(sv, "-");
8964                     put_byte(sv, i - 1);
8965                 }
8966                 rangestart = -1;
8967             }
8968         }
8969
8970         if (o->flags & ANYOF_CLASS)
8971             for (i = 0; i < (int)(sizeof(anyofs)/sizeof(char*)); i++)
8972                 if (ANYOF_CLASS_TEST(o,i))
8973                     sv_catpv(sv, anyofs[i]);
8974
8975         if (flags & ANYOF_UNICODE)
8976             sv_catpvs(sv, "{unicode}");
8977         else if (flags & ANYOF_UNICODE_ALL)
8978             sv_catpvs(sv, "{unicode_all}");
8979
8980         {
8981             SV *lv;
8982             SV * const sw = regclass_swash(prog, o, FALSE, &lv, 0);
8983         
8984             if (lv) {
8985                 if (sw) {
8986                     U8 s[UTF8_MAXBYTES_CASE+1];
8987                 
8988                     for (i = 0; i <= 256; i++) { /* just the first 256 */
8989                         uvchr_to_utf8(s, i);
8990                         
8991                         if (i < 256 && swash_fetch(sw, s, TRUE)) {
8992                             if (rangestart == -1)
8993                                 rangestart = i;
8994                         } else if (rangestart != -1) {
8995                             if (i <= rangestart + 3)
8996                                 for (; rangestart < i; rangestart++) {
8997                                     const U8 * const e = uvchr_to_utf8(s,rangestart);
8998                                     U8 *p;
8999                                     for(p = s; p < e; p++)
9000                                         put_byte(sv, *p);
9001                                 }
9002                             else {
9003                                 const U8 *e = uvchr_to_utf8(s,rangestart);
9004                                 U8 *p;
9005                                 for (p = s; p < e; p++)
9006                                     put_byte(sv, *p);
9007                                 sv_catpvs(sv, "-");
9008                                 e = uvchr_to_utf8(s, i-1);
9009                                 for (p = s; p < e; p++)
9010                                     put_byte(sv, *p);
9011                                 }
9012                                 rangestart = -1;
9013                             }
9014                         }
9015                         
9016                     sv_catpvs(sv, "..."); /* et cetera */
9017                 }
9018
9019                 {
9020                     char *s = savesvpv(lv);
9021                     char * const origs = s;
9022                 
9023                     while (*s && *s != '\n')
9024                         s++;
9025                 
9026                     if (*s == '\n') {
9027                         const char * const t = ++s;
9028                         
9029                         while (*s) {
9030                             if (*s == '\n')
9031                                 *s = ' ';
9032                             s++;
9033                         }
9034                         if (s[-1] == ' ')
9035                             s[-1] = 0;
9036                         
9037                         sv_catpv(sv, t);
9038                     }
9039                 
9040                     Safefree(origs);
9041                 }
9042             }
9043         }
9044
9045         Perl_sv_catpvf(aTHX_ sv, "%s]", PL_colors[1]);
9046     }
9047     else if (k == BRANCHJ && (OP(o) == UNLESSM || OP(o) == IFMATCH))
9048         Perl_sv_catpvf(aTHX_ sv, "[%d]", -(o->flags));
9049 #else
9050     PERL_UNUSED_CONTEXT;
9051     PERL_UNUSED_ARG(sv);
9052     PERL_UNUSED_ARG(o);
9053     PERL_UNUSED_ARG(prog);
9054 #endif  /* DEBUGGING */
9055 }
9056
9057 SV *
9058 Perl_re_intuit_string(pTHX_ REGEXP * const prog)
9059 {                               /* Assume that RE_INTUIT is set */
9060     dVAR;
9061     GET_RE_DEBUG_FLAGS_DECL;
9062     PERL_UNUSED_CONTEXT;
9063
9064     DEBUG_COMPILE_r(
9065         {
9066             const char * const s = SvPV_nolen_const(prog->check_substr
9067                       ? prog->check_substr : prog->check_utf8);
9068
9069             if (!PL_colorset) reginitcolors();
9070             PerlIO_printf(Perl_debug_log,
9071                       "%sUsing REx %ssubstr:%s \"%s%.60s%s%s\"\n",
9072                       PL_colors[4],
9073                       prog->check_substr ? "" : "utf8 ",
9074                       PL_colors[5],PL_colors[0],
9075                       s,
9076                       PL_colors[1],
9077                       (strlen(s) > 60 ? "..." : ""));
9078         } );
9079
9080     return prog->check_substr ? prog->check_substr : prog->check_utf8;
9081 }
9082
9083 /* 
9084    pregfree() 
9085    
9086    handles refcounting and freeing the perl core regexp structure. When 
9087    it is necessary to actually free the structure the first thing it 
9088    does is call the 'free' method of the regexp_engine associated to to 
9089    the regexp, allowing the handling of the void *pprivate; member 
9090    first. (This routine is not overridable by extensions, which is why 
9091    the extensions free is called first.)
9092    
9093    See regdupe and regdupe_internal if you change anything here. 
9094 */
9095 #ifndef PERL_IN_XSUB_RE
9096 void
9097 Perl_pregfree(pTHX_ struct regexp *r)
9098 {
9099     dVAR;
9100     GET_RE_DEBUG_FLAGS_DECL;
9101
9102     if (!r || (--r->refcnt > 0))
9103         return;
9104     if (r->mother_re) {
9105         ReREFCNT_dec(r->mother_re);
9106     } else {
9107         CALLREGFREE_PVT(r); /* free the private data */
9108         if (r->paren_names)
9109             SvREFCNT_dec(r->paren_names);
9110         Safefree(r->wrapped);
9111     }        
9112     if (r->substrs) {
9113         if (r->anchored_substr)
9114             SvREFCNT_dec(r->anchored_substr);
9115         if (r->anchored_utf8)
9116             SvREFCNT_dec(r->anchored_utf8);
9117         if (r->float_substr)
9118             SvREFCNT_dec(r->float_substr);
9119         if (r->float_utf8)
9120             SvREFCNT_dec(r->float_utf8);
9121         Safefree(r->substrs);
9122     }
9123     RX_MATCH_COPY_FREE(r);
9124 #ifdef PERL_OLD_COPY_ON_WRITE
9125     if (r->saved_copy)
9126         SvREFCNT_dec(r->saved_copy);
9127 #endif
9128     Safefree(r->swap);
9129     Safefree(r->offs);
9130     Safefree(r);
9131 }
9132
9133 /*  reg_temp_copy()
9134     
9135     This is a hacky workaround to the structural issue of match results
9136     being stored in the regexp structure which is in turn stored in
9137     PL_curpm/PL_reg_curpm. The problem is that due to qr// the pattern
9138     could be PL_curpm in multiple contexts, and could require multiple
9139     result sets being associated with the pattern simultaneously, such
9140     as when doing a recursive match with (??{$qr})
9141     
9142     The solution is to make a lightweight copy of the regexp structure 
9143     when a qr// is returned from the code executed by (??{$qr}) this
9144     lightweight copy doesnt actually own any of its data except for
9145     the starp/end and the actual regexp structure itself. 
9146     
9147 */    
9148     
9149     
9150 regexp *
9151 Perl_reg_temp_copy (pTHX_ struct regexp *r) {
9152     regexp *ret;
9153     register const I32 npar = r->nparens+1;
9154     (void)ReREFCNT_inc(r);
9155     Newx(ret, 1, regexp);
9156     StructCopy(r, ret, regexp);
9157     Newx(ret->offs, npar, regexp_paren_pair);
9158     Copy(r->offs, ret->offs, npar, regexp_paren_pair);
9159     ret->refcnt = 1;
9160     if (r->substrs) {
9161         Newx(ret->substrs, 1, struct reg_substr_data);
9162         StructCopy(r->substrs, ret->substrs, struct reg_substr_data);
9163
9164         SvREFCNT_inc_void(ret->anchored_substr);
9165         SvREFCNT_inc_void(ret->anchored_utf8);
9166         SvREFCNT_inc_void(ret->float_substr);
9167         SvREFCNT_inc_void(ret->float_utf8);
9168
9169         /* check_substr and check_utf8, if non-NULL, point to either their
9170            anchored or float namesakes, and don't hold a second reference.  */
9171     }
9172     RX_MATCH_COPIED_off(ret);
9173 #ifdef PERL_OLD_COPY_ON_WRITE
9174     ret->saved_copy = NULL;
9175 #endif
9176     ret->mother_re = r; 
9177     ret->swap = NULL;
9178     
9179     return ret;
9180 }
9181 #endif
9182
9183 /* regfree_internal() 
9184
9185    Free the private data in a regexp. This is overloadable by 
9186    extensions. Perl takes care of the regexp structure in pregfree(), 
9187    this covers the *pprivate pointer which technically perldoesnt 
9188    know about, however of course we have to handle the 
9189    regexp_internal structure when no extension is in use. 
9190    
9191    Note this is called before freeing anything in the regexp 
9192    structure. 
9193  */
9194  
9195 void
9196 Perl_regfree_internal(pTHX_ REGEXP * const r)
9197 {
9198     dVAR;
9199     RXi_GET_DECL(r,ri);
9200     GET_RE_DEBUG_FLAGS_DECL;
9201     
9202     DEBUG_COMPILE_r({
9203         if (!PL_colorset)
9204             reginitcolors();
9205         {
9206             SV *dsv= sv_newmortal();
9207             RE_PV_QUOTED_DECL(s, (r->extflags & RXf_UTF8),
9208                 dsv, r->precomp, r->prelen, 60);
9209             PerlIO_printf(Perl_debug_log,"%sFreeing REx:%s %s\n", 
9210                 PL_colors[4],PL_colors[5],s);
9211         }
9212     });
9213 #ifdef RE_TRACK_PATTERN_OFFSETS
9214     if (ri->u.offsets)
9215         Safefree(ri->u.offsets);             /* 20010421 MJD */
9216 #endif
9217     if (ri->data) {
9218         int n = ri->data->count;
9219         PAD* new_comppad = NULL;
9220         PAD* old_comppad;
9221         PADOFFSET refcnt;
9222
9223         while (--n >= 0) {
9224           /* If you add a ->what type here, update the comment in regcomp.h */
9225             switch (ri->data->what[n]) {
9226             case 's':
9227             case 'S':
9228             case 'u':
9229                 SvREFCNT_dec((SV*)ri->data->data[n]);
9230                 break;
9231             case 'f':
9232                 Safefree(ri->data->data[n]);
9233                 break;
9234             case 'p':
9235                 new_comppad = (AV*)ri->data->data[n];
9236                 break;
9237             case 'o':
9238                 if (new_comppad == NULL)
9239                     Perl_croak(aTHX_ "panic: pregfree comppad");
9240                 PAD_SAVE_LOCAL(old_comppad,
9241                     /* Watch out for global destruction's random ordering. */
9242                     (SvTYPE(new_comppad) == SVt_PVAV) ? new_comppad : NULL
9243                 );
9244                 OP_REFCNT_LOCK;
9245                 refcnt = OpREFCNT_dec((OP_4tree*)ri->data->data[n]);
9246                 OP_REFCNT_UNLOCK;
9247                 if (!refcnt)
9248                     op_free((OP_4tree*)ri->data->data[n]);
9249
9250                 PAD_RESTORE_LOCAL(old_comppad);
9251                 SvREFCNT_dec((SV*)new_comppad);
9252                 new_comppad = NULL;
9253                 break;
9254             case 'n':
9255                 break;
9256             case 'T':           
9257                 { /* Aho Corasick add-on structure for a trie node.
9258                      Used in stclass optimization only */
9259                     U32 refcount;
9260                     reg_ac_data *aho=(reg_ac_data*)ri->data->data[n];
9261                     OP_REFCNT_LOCK;
9262                     refcount = --aho->refcount;
9263                     OP_REFCNT_UNLOCK;
9264                     if ( !refcount ) {
9265                         PerlMemShared_free(aho->states);
9266                         PerlMemShared_free(aho->fail);
9267                          /* do this last!!!! */
9268                         PerlMemShared_free(ri->data->data[n]);
9269                         PerlMemShared_free(ri->regstclass);
9270                     }
9271                 }
9272                 break;
9273             case 't':
9274                 {
9275                     /* trie structure. */
9276                     U32 refcount;
9277                     reg_trie_data *trie=(reg_trie_data*)ri->data->data[n];
9278                     OP_REFCNT_LOCK;
9279                     refcount = --trie->refcount;
9280                     OP_REFCNT_UNLOCK;
9281                     if ( !refcount ) {
9282                         PerlMemShared_free(trie->charmap);
9283                         PerlMemShared_free(trie->states);
9284                         PerlMemShared_free(trie->trans);
9285                         if (trie->bitmap)
9286                             PerlMemShared_free(trie->bitmap);
9287                         if (trie->wordlen)
9288                             PerlMemShared_free(trie->wordlen);
9289                         if (trie->jump)
9290                             PerlMemShared_free(trie->jump);
9291                         if (trie->nextword)
9292                             PerlMemShared_free(trie->nextword);
9293                         /* do this last!!!! */
9294                         PerlMemShared_free(ri->data->data[n]);
9295                     }
9296                 }
9297                 break;
9298             default:
9299                 Perl_croak(aTHX_ "panic: regfree data code '%c'", ri->data->what[n]);
9300             }
9301         }
9302         Safefree(ri->data->what);
9303         Safefree(ri->data);
9304     }
9305
9306     Safefree(ri);
9307 }
9308
9309 #define sv_dup_inc(s,t) SvREFCNT_inc(sv_dup(s,t))
9310 #define av_dup_inc(s,t) (AV*)SvREFCNT_inc(sv_dup((SV*)s,t))
9311 #define hv_dup_inc(s,t) (HV*)SvREFCNT_inc(sv_dup((SV*)s,t))
9312 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
9313
9314 /* 
9315    re_dup - duplicate a regexp. 
9316    
9317    This routine is expected to clone a given regexp structure. It is not
9318    compiler under USE_ITHREADS.
9319
9320    After all of the core data stored in struct regexp is duplicated
9321    the regexp_engine.dupe method is used to copy any private data
9322    stored in the *pprivate pointer. This allows extensions to handle
9323    any duplication it needs to do.
9324
9325    See pregfree() and regfree_internal() if you change anything here. 
9326 */
9327 #if defined(USE_ITHREADS)
9328 #ifndef PERL_IN_XSUB_RE
9329 regexp *
9330 Perl_re_dup(pTHX_ const regexp *r, CLONE_PARAMS *param)
9331 {
9332     dVAR;
9333     regexp *ret;
9334     I32 npar;
9335
9336     if (!r)
9337         return (REGEXP *)NULL;
9338
9339     if ((ret = (REGEXP *)ptr_table_fetch(PL_ptr_table, r)))
9340         return ret;
9341
9342     
9343     npar = r->nparens+1;
9344     Newx(ret, 1, regexp);
9345     StructCopy(r, ret, regexp);
9346     Newx(ret->offs, npar, regexp_paren_pair);
9347     Copy(r->offs, ret->offs, npar, regexp_paren_pair);
9348     if(ret->swap) {
9349         /* no need to copy these */
9350         Newx(ret->swap, npar, regexp_paren_pair);
9351     }
9352
9353     if (ret->substrs) {
9354         /* Do it this way to avoid reading from *r after the StructCopy().
9355            That way, if any of the sv_dup_inc()s dislodge *r from the L1
9356            cache, it doesn't matter.  */
9357         const bool anchored = r->check_substr == r->anchored_substr;
9358         Newx(ret->substrs, 1, struct reg_substr_data);
9359         StructCopy(r->substrs, ret->substrs, struct reg_substr_data);
9360
9361         ret->anchored_substr = sv_dup_inc(ret->anchored_substr, param);
9362         ret->anchored_utf8 = sv_dup_inc(ret->anchored_utf8, param);
9363         ret->float_substr = sv_dup_inc(ret->float_substr, param);
9364         ret->float_utf8 = sv_dup_inc(ret->float_utf8, param);
9365
9366         /* check_substr and check_utf8, if non-NULL, point to either their
9367            anchored or float namesakes, and don't hold a second reference.  */
9368
9369         if (ret->check_substr) {
9370             if (anchored) {
9371                 assert(r->check_utf8 == r->anchored_utf8);
9372                 ret->check_substr = ret->anchored_substr;
9373                 ret->check_utf8 = ret->anchored_utf8;
9374             } else {
9375                 assert(r->check_substr == r->float_substr);
9376                 assert(r->check_utf8 == r->float_utf8);
9377                 ret->check_substr = ret->float_substr;
9378                 ret->check_utf8 = ret->float_utf8;
9379             }
9380         }
9381     }
9382
9383     ret->wrapped        = SAVEPVN(ret->wrapped, ret->wraplen+1);
9384     ret->precomp        = ret->wrapped + (ret->precomp - ret->wrapped);
9385     ret->paren_names    = hv_dup_inc(ret->paren_names, param);
9386
9387     if (ret->pprivate)
9388         RXi_SET(ret,CALLREGDUPE_PVT(ret,param));
9389
9390     if (RX_MATCH_COPIED(ret))
9391         ret->subbeg  = SAVEPVN(ret->subbeg, ret->sublen);
9392     else
9393         ret->subbeg = NULL;
9394 #ifdef PERL_OLD_COPY_ON_WRITE
9395     ret->saved_copy = NULL;
9396 #endif
9397
9398     ret->mother_re      = NULL;
9399     ret->gofs = 0;
9400     ret->seen_evals = 0;
9401     
9402     ptr_table_store(PL_ptr_table, r, ret);
9403     return ret;
9404 }
9405 #endif /* PERL_IN_XSUB_RE */
9406
9407 /*
9408    regdupe_internal()
9409    
9410    This is the internal complement to regdupe() which is used to copy
9411    the structure pointed to by the *pprivate pointer in the regexp.
9412    This is the core version of the extension overridable cloning hook.
9413    The regexp structure being duplicated will be copied by perl prior
9414    to this and will be provided as the regexp *r argument, however 
9415    with the /old/ structures pprivate pointer value. Thus this routine
9416    may override any copying normally done by perl.
9417    
9418    It returns a pointer to the new regexp_internal structure.
9419 */
9420
9421 void *
9422 Perl_regdupe_internal(pTHX_ REGEXP * const r, CLONE_PARAMS *param)
9423 {
9424     dVAR;
9425     regexp_internal *reti;
9426     int len, npar;
9427     RXi_GET_DECL(r,ri);
9428     
9429     npar = r->nparens+1;
9430     len = ProgLen(ri);
9431     
9432     Newxc(reti, sizeof(regexp_internal) + (len+1)*sizeof(regnode), char, regexp_internal);
9433     Copy(ri->program, reti->program, len+1, regnode);
9434     
9435
9436     reti->regstclass = NULL;
9437
9438     if (ri->data) {
9439         struct reg_data *d;
9440         const int count = ri->data->count;
9441         int i;
9442
9443         Newxc(d, sizeof(struct reg_data) + count*sizeof(void *),
9444                 char, struct reg_data);
9445         Newx(d->what, count, U8);
9446
9447         d->count = count;
9448         for (i = 0; i < count; i++) {
9449             d->what[i] = ri->data->what[i];
9450             switch (d->what[i]) {
9451                 /* legal options are one of: sSfpontTu
9452                    see also regcomp.h and pregfree() */
9453             case 's':
9454             case 'S':
9455             case 'p': /* actually an AV, but the dup function is identical.  */
9456             case 'u': /* actually an HV, but the dup function is identical.  */
9457                 d->data[i] = sv_dup_inc((SV *)ri->data->data[i], param);
9458                 break;
9459             case 'f':
9460                 /* This is cheating. */
9461                 Newx(d->data[i], 1, struct regnode_charclass_class);
9462                 StructCopy(ri->data->data[i], d->data[i],
9463                             struct regnode_charclass_class);
9464                 reti->regstclass = (regnode*)d->data[i];
9465                 break;
9466             case 'o':
9467                 /* Compiled op trees are readonly and in shared memory,
9468                    and can thus be shared without duplication. */
9469                 OP_REFCNT_LOCK;
9470                 d->data[i] = (void*)OpREFCNT_inc((OP*)ri->data->data[i]);
9471                 OP_REFCNT_UNLOCK;
9472                 break;
9473             case 'T':
9474                 /* Trie stclasses are readonly and can thus be shared
9475                  * without duplication. We free the stclass in pregfree
9476                  * when the corresponding reg_ac_data struct is freed.
9477                  */
9478                 reti->regstclass= ri->regstclass;
9479                 /* Fall through */
9480             case 't':
9481                 OP_REFCNT_LOCK;
9482                 ((reg_trie_data*)ri->data->data[i])->refcount++;
9483                 OP_REFCNT_UNLOCK;
9484                 /* Fall through */
9485             case 'n':
9486                 d->data[i] = ri->data->data[i];
9487                 break;
9488             default:
9489                 Perl_croak(aTHX_ "panic: re_dup unknown data code '%c'", ri->data->what[i]);
9490             }
9491         }
9492
9493         reti->data = d;
9494     }
9495     else
9496         reti->data = NULL;
9497
9498     reti->name_list_idx = ri->name_list_idx;
9499
9500 #ifdef RE_TRACK_PATTERN_OFFSETS
9501     if (ri->u.offsets) {
9502         Newx(reti->u.offsets, 2*len+1, U32);
9503         Copy(ri->u.offsets, reti->u.offsets, 2*len+1, U32);
9504     }
9505 #else
9506     SetProgLen(reti,len);
9507 #endif
9508
9509     return (void*)reti;
9510 }
9511
9512 #endif    /* USE_ITHREADS */
9513
9514 /* 
9515    reg_stringify() 
9516    
9517    converts a regexp embedded in a MAGIC struct to its stringified form, 
9518    caching the converted form in the struct and returns the cached 
9519    string. 
9520
9521    If lp is nonnull then it is used to return the length of the 
9522    resulting string
9523    
9524    If flags is nonnull and the returned string contains UTF8 then 
9525    (*flags & 1) will be true.
9526    
9527    If haseval is nonnull then it is used to return whether the pattern 
9528    contains evals.
9529    
9530    Normally called via macro: 
9531    
9532         CALLREG_STRINGIFY(mg,&len,&utf8);
9533         
9534    And internally with
9535    
9536         CALLREG_AS_STR(mg,&lp,&flags,&haseval)        
9537     
9538    See sv_2pv_flags() in sv.c for an example of internal usage.
9539     
9540  */
9541 #ifndef PERL_IN_XSUB_RE
9542
9543 char *
9544 Perl_reg_stringify(pTHX_ MAGIC *mg, STRLEN *lp, U32 *flags, I32 *haseval ) {
9545     dVAR;
9546     const regexp * const re = (regexp *)mg->mg_obj;
9547     if (haseval) 
9548         *haseval = re->seen_evals;
9549     if (flags)    
9550         *flags = ((re->extflags & RXf_UTF8) ? 1 : 0);
9551     if (lp)
9552         *lp = re->wraplen;
9553     return re->wrapped;
9554 }
9555
9556 /*
9557  - regnext - dig the "next" pointer out of a node
9558  */
9559 regnode *
9560 Perl_regnext(pTHX_ register regnode *p)
9561 {
9562     dVAR;
9563     register I32 offset;
9564
9565     if (!p)
9566         return(NULL);
9567
9568     offset = (reg_off_by_arg[OP(p)] ? ARG(p) : NEXT_OFF(p));
9569     if (offset == 0)
9570         return(NULL);
9571
9572     return(p+offset);
9573 }
9574 #endif
9575
9576 STATIC void     
9577 S_re_croak2(pTHX_ const char* pat1,const char* pat2,...)
9578 {
9579     va_list args;
9580     STRLEN l1 = strlen(pat1);
9581     STRLEN l2 = strlen(pat2);
9582     char buf[512];
9583     SV *msv;
9584     const char *message;
9585
9586     if (l1 > 510)
9587         l1 = 510;
9588     if (l1 + l2 > 510)
9589         l2 = 510 - l1;
9590     Copy(pat1, buf, l1 , char);
9591     Copy(pat2, buf + l1, l2 , char);
9592     buf[l1 + l2] = '\n';
9593     buf[l1 + l2 + 1] = '\0';
9594 #ifdef I_STDARG
9595     /* ANSI variant takes additional second argument */
9596     va_start(args, pat2);
9597 #else
9598     va_start(args);
9599 #endif
9600     msv = vmess(buf, &args);
9601     va_end(args);
9602     message = SvPV_const(msv,l1);
9603     if (l1 > 512)
9604         l1 = 512;
9605     Copy(message, buf, l1 , char);
9606     buf[l1-1] = '\0';                   /* Overwrite \n */
9607     Perl_croak(aTHX_ "%s", buf);
9608 }
9609
9610 /* XXX Here's a total kludge.  But we need to re-enter for swash routines. */
9611
9612 #ifndef PERL_IN_XSUB_RE
9613 void
9614 Perl_save_re_context(pTHX)
9615 {
9616     dVAR;
9617
9618     struct re_save_state *state;
9619
9620     SAVEVPTR(PL_curcop);
9621     SSGROW(SAVESTACK_ALLOC_FOR_RE_SAVE_STATE + 1);
9622
9623     state = (struct re_save_state *)(PL_savestack + PL_savestack_ix);
9624     PL_savestack_ix += SAVESTACK_ALLOC_FOR_RE_SAVE_STATE;
9625     SSPUSHINT(SAVEt_RE_STATE);
9626
9627     Copy(&PL_reg_state, state, 1, struct re_save_state);
9628
9629     PL_reg_start_tmp = 0;
9630     PL_reg_start_tmpl = 0;
9631     PL_reg_oldsaved = NULL;
9632     PL_reg_oldsavedlen = 0;
9633     PL_reg_maxiter = 0;
9634     PL_reg_leftiter = 0;
9635     PL_reg_poscache = NULL;
9636     PL_reg_poscache_size = 0;
9637 #ifdef PERL_OLD_COPY_ON_WRITE
9638     PL_nrs = NULL;
9639 #endif
9640
9641     /* Save $1..$n (#18107: UTF-8 s/(\w+)/uc($1)/e); AMS 20021106. */
9642     if (PL_curpm) {
9643         const REGEXP * const rx = PM_GETRE(PL_curpm);
9644         if (rx) {
9645             U32 i;
9646             for (i = 1; i <= rx->nparens; i++) {
9647                 char digits[TYPE_CHARS(long)];
9648                 const STRLEN len = my_snprintf(digits, sizeof(digits), "%lu", (long)i);
9649                 GV *const *const gvp
9650                     = (GV**)hv_fetch(PL_defstash, digits, len, 0);
9651
9652                 if (gvp) {
9653                     GV * const gv = *gvp;
9654                     if (SvTYPE(gv) == SVt_PVGV && GvSV(gv))
9655                         save_scalar(gv);
9656                 }
9657             }
9658         }
9659     }
9660 }
9661 #endif
9662
9663 static void
9664 clear_re(pTHX_ void *r)
9665 {
9666     dVAR;
9667     ReREFCNT_dec((regexp *)r);
9668 }
9669
9670 #ifdef DEBUGGING
9671
9672 STATIC void
9673 S_put_byte(pTHX_ SV *sv, int c)
9674 {
9675     /* Our definition of isPRINT() ignores locales, so only bytes that are
9676        not part of UTF-8 are considered printable. I assume that the same
9677        holds for UTF-EBCDIC.
9678        Also, code point 255 is not printable in either (it's E0 in EBCDIC,
9679        which Wikipedia says:
9680
9681        EO, or Eight Ones, is an 8-bit EBCDIC character code represented as all
9682        ones (binary 1111 1111, hexadecimal FF). It is similar, but not
9683        identical, to the ASCII delete (DEL) or rubout control character.
9684        ) So the old condition can be simplified to !isPRINT(c)  */
9685     if (!isPRINT(c))
9686         Perl_sv_catpvf(aTHX_ sv, "\\%o", c);
9687     else {
9688         const char string = c;
9689         if (c == '-' || c == ']' || c == '\\' || c == '^')
9690             sv_catpvs(sv, "\\");
9691         sv_catpvn(sv, &string, 1);
9692     }
9693 }
9694
9695
9696 #define CLEAR_OPTSTART \
9697     if (optstart) STMT_START { \
9698             DEBUG_OPTIMISE_r(PerlIO_printf(Perl_debug_log, " (%"IVdf" nodes)\n", (IV)(node - optstart))); \
9699             optstart=NULL; \
9700     } STMT_END
9701
9702 #define DUMPUNTIL(b,e) CLEAR_OPTSTART; node=dumpuntil(r,start,(b),(e),last,sv,indent+1,depth+1);
9703
9704 STATIC const regnode *
9705 S_dumpuntil(pTHX_ const regexp *r, const regnode *start, const regnode *node,
9706             const regnode *last, const regnode *plast, 
9707             SV* sv, I32 indent, U32 depth)
9708 {
9709     dVAR;
9710     register U8 op = PSEUDO;    /* Arbitrary non-END op. */
9711     register const regnode *next;
9712     const regnode *optstart= NULL;
9713     
9714     RXi_GET_DECL(r,ri);
9715     GET_RE_DEBUG_FLAGS_DECL;
9716     
9717 #ifdef DEBUG_DUMPUNTIL
9718     PerlIO_printf(Perl_debug_log, "--- %d : %d - %d - %d\n",indent,node-start,
9719         last ? last-start : 0,plast ? plast-start : 0);
9720 #endif
9721             
9722     if (plast && plast < last) 
9723         last= plast;
9724
9725     while (PL_regkind[op] != END && (!last || node < last)) {
9726         /* While that wasn't END last time... */
9727         NODE_ALIGN(node);
9728         op = OP(node);
9729         if (op == CLOSE || op == WHILEM)
9730             indent--;
9731         next = regnext((regnode *)node);
9732
9733         /* Where, what. */
9734         if (OP(node) == OPTIMIZED) {
9735             if (!optstart && RE_DEBUG_FLAG(RE_DEBUG_COMPILE_OPTIMISE))
9736                 optstart = node;
9737             else
9738                 goto after_print;
9739         } else
9740             CLEAR_OPTSTART;
9741         
9742         regprop(r, sv, node);
9743         PerlIO_printf(Perl_debug_log, "%4"IVdf":%*s%s", (IV)(node - start),
9744                       (int)(2*indent + 1), "", SvPVX_const(sv));
9745         
9746         if (OP(node) != OPTIMIZED) {                  
9747             if (next == NULL)           /* Next ptr. */
9748                 PerlIO_printf(Perl_debug_log, " (0)");
9749             else if (PL_regkind[(U8)op] == BRANCH && PL_regkind[OP(next)] != BRANCH )
9750                 PerlIO_printf(Perl_debug_log, " (FAIL)");
9751             else 
9752                 PerlIO_printf(Perl_debug_log, " (%"IVdf")", (IV)(next - start));
9753             (void)PerlIO_putc(Perl_debug_log, '\n'); 
9754         }
9755         
9756       after_print:
9757         if (PL_regkind[(U8)op] == BRANCHJ) {
9758             assert(next);
9759             {
9760                 register const regnode *nnode = (OP(next) == LONGJMP
9761                                              ? regnext((regnode *)next)
9762                                              : next);
9763                 if (last && nnode > last)
9764                     nnode = last;
9765                 DUMPUNTIL(NEXTOPER(NEXTOPER(node)), nnode);
9766             }
9767         }
9768         else if (PL_regkind[(U8)op] == BRANCH) {
9769             assert(next);
9770             DUMPUNTIL(NEXTOPER(node), next);
9771         }
9772         else if ( PL_regkind[(U8)op]  == TRIE ) {
9773             const regnode *this_trie = node;
9774             const char op = OP(node);
9775             const U32 n = ARG(node);
9776             const reg_ac_data * const ac = op>=AHOCORASICK ?
9777                (reg_ac_data *)ri->data->data[n] :
9778                NULL;
9779             const reg_trie_data * const trie =
9780                 (reg_trie_data*)ri->data->data[op<AHOCORASICK ? n : ac->trie];
9781 #ifdef DEBUGGING
9782             AV *const trie_words = (AV *) ri->data->data[n + TRIE_WORDS_OFFSET];
9783 #endif
9784             const regnode *nextbranch= NULL;
9785             I32 word_idx;
9786             sv_setpvn(sv, "", 0);
9787             for (word_idx= 0; word_idx < (I32)trie->wordcount; word_idx++) {
9788                 SV ** const elem_ptr = av_fetch(trie_words,word_idx,0);
9789                 
9790                 PerlIO_printf(Perl_debug_log, "%*s%s ",
9791                    (int)(2*(indent+3)), "",
9792                     elem_ptr ? pv_pretty(sv, SvPV_nolen_const(*elem_ptr), SvCUR(*elem_ptr), 60,
9793                             PL_colors[0], PL_colors[1],
9794                             (SvUTF8(*elem_ptr) ? PERL_PV_ESCAPE_UNI : 0) |
9795                             PERL_PV_PRETTY_ELLIPSES    |
9796                             PERL_PV_PRETTY_LTGT
9797                             )
9798                             : "???"
9799                 );
9800                 if (trie->jump) {
9801                     U16 dist= trie->jump[word_idx+1];
9802                     PerlIO_printf(Perl_debug_log, "(%"UVuf")\n",
9803                                   (UV)((dist ? this_trie + dist : next) - start));
9804                     if (dist) {
9805                         if (!nextbranch)
9806                             nextbranch= this_trie + trie->jump[0];    
9807                         DUMPUNTIL(this_trie + dist, nextbranch);
9808                     }
9809                     if (nextbranch && PL_regkind[OP(nextbranch)]==BRANCH)
9810                         nextbranch= regnext((regnode *)nextbranch);
9811                 } else {
9812                     PerlIO_printf(Perl_debug_log, "\n");
9813                 }
9814             }
9815             if (last && next > last)
9816                 node= last;
9817             else
9818                 node= next;
9819         }
9820         else if ( op == CURLY ) {   /* "next" might be very big: optimizer */
9821             DUMPUNTIL(NEXTOPER(node) + EXTRA_STEP_2ARGS,
9822                     NEXTOPER(node) + EXTRA_STEP_2ARGS + 1);
9823         }
9824         else if (PL_regkind[(U8)op] == CURLY && op != CURLYX) {
9825             assert(next);
9826             DUMPUNTIL(NEXTOPER(node) + EXTRA_STEP_2ARGS, next);
9827         }
9828         else if ( op == PLUS || op == STAR) {
9829             DUMPUNTIL(NEXTOPER(node), NEXTOPER(node) + 1);
9830         }
9831         else if (op == ANYOF) {
9832             /* arglen 1 + class block */
9833             node += 1 + ((ANYOF_FLAGS(node) & ANYOF_LARGE)
9834                     ? ANYOF_CLASS_SKIP : ANYOF_SKIP);
9835             node = NEXTOPER(node);
9836         }
9837         else if (PL_regkind[(U8)op] == EXACT) {
9838             /* Literal string, where present. */
9839             node += NODE_SZ_STR(node) - 1;
9840             node = NEXTOPER(node);
9841         }
9842         else {
9843             node = NEXTOPER(node);
9844             node += regarglen[(U8)op];
9845         }
9846         if (op == CURLYX || op == OPEN)
9847             indent++;
9848     }
9849     CLEAR_OPTSTART;
9850 #ifdef DEBUG_DUMPUNTIL    
9851     PerlIO_printf(Perl_debug_log, "--- %d\n", (int)indent);
9852 #endif
9853     return node;
9854 }
9855
9856 #endif  /* DEBUGGING */
9857
9858 /*
9859  * Local variables:
9860  * c-indentation-style: bsd
9861  * c-basic-offset: 4
9862  * indent-tabs-mode: t
9863  * End:
9864  *
9865  * ex: set ts=8 sts=4 sw=4 noet:
9866  */