3ad5d8c138f4b7ddf038ac34cbff54a9b0097c71
[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     if ( rx && rx->paren_names ) {
4948         (void)hv_iterinit(rx->paren_names);
4949
4950         return CALLREG_NAMED_BUFF_NEXTKEY(rx, NULL, flags & ~RXapif_FIRSTKEY);
4951     } else {
4952         return FALSE;
4953     }
4954 }
4955
4956 SV*
4957 Perl_reg_named_buff_nextkey(pTHX_ REGEXP * const rx, const U32 flags)
4958 {
4959     if (rx && rx->paren_names) {
4960         HV *hv = rx->paren_names;
4961         HE *temphe;
4962         while ( (temphe = hv_iternext_flags(hv,0)) ) {
4963             IV i;
4964             IV parno = 0;
4965             SV* sv_dat = HeVAL(temphe);
4966             I32 *nums = (I32*)SvPVX(sv_dat);
4967             for ( i = 0; i < SvIVX(sv_dat); i++ ) {
4968                 if ((I32)(rx->lastcloseparen) >= nums[i] &&
4969                     rx->offs[nums[i]].start != -1 &&
4970                     rx->offs[nums[i]].end != -1)
4971                 {
4972                     parno = nums[i];
4973                     break;
4974                 }
4975             }
4976             if (parno || flags & RXapif_ALL) {
4977                 STRLEN len;
4978                 char *pv = HePV(temphe, len);
4979                 return newSVpvn(pv,len);
4980             }
4981         }
4982     }
4983     return NULL;
4984 }
4985
4986 SV*
4987 Perl_reg_named_buff_scalar(pTHX_ REGEXP * const rx, const U32 flags)
4988 {
4989     SV *ret;
4990     AV *av;
4991     I32 length;
4992
4993     if (rx && rx->paren_names) {
4994         if (flags & (RXapif_ALL | RXapif_REGNAMES_COUNT)) {
4995             return newSViv(HvTOTALKEYS(rx->paren_names));
4996         } else if (flags & RXapif_ONE) {
4997             ret = CALLREG_NAMED_BUFF_ALL(rx, (flags | RXapif_REGNAMES));
4998             av = (AV*)SvRV(ret);
4999             length = av_len(av);
5000             return newSViv(length + 1);
5001         } else {
5002             Perl_croak(aTHX_ "panic: Unknown flags %d in named_buff_scalar", (int)flags);
5003             return NULL;
5004         }
5005     }
5006     return &PL_sv_undef;
5007 }
5008
5009 SV*
5010 Perl_reg_named_buff_all(pTHX_ REGEXP * const rx, const U32 flags)
5011 {
5012     AV *av = newAV();
5013
5014     if (rx && rx->paren_names) {
5015         HV *hv= rx->paren_names;
5016         HE *temphe;
5017         (void)hv_iterinit(hv);
5018         while ( (temphe = hv_iternext_flags(hv,0)) ) {
5019             IV i;
5020             IV parno = 0;
5021             SV* sv_dat = HeVAL(temphe);
5022             I32 *nums = (I32*)SvPVX(sv_dat);
5023             for ( i = 0; i < SvIVX(sv_dat); i++ ) {
5024                 if ((I32)(rx->lastcloseparen) >= nums[i] &&
5025                     rx->offs[nums[i]].start != -1 &&
5026                     rx->offs[nums[i]].end != -1)
5027                 {
5028                     parno = nums[i];
5029                     break;
5030                 }
5031             }
5032             if (parno || flags & RXapif_ALL) {
5033                 STRLEN len;
5034                 char *pv = HePV(temphe, len);
5035                 av_push(av, newSVpvn(pv,len));
5036             }
5037         }
5038     }
5039
5040     return newRV((SV*)av);
5041 }
5042
5043 void
5044 Perl_reg_numbered_buff_fetch(pTHX_ REGEXP * const rx, const I32 paren, SV * const sv)
5045 {
5046     char *s = NULL;
5047     I32 i = 0;
5048     I32 s1, t1;
5049         
5050     if (!rx->subbeg) {
5051         sv_setsv(sv,&PL_sv_undef);
5052         return;
5053     } 
5054     else               
5055     if (paren == RX_BUFF_IDX_PREMATCH && rx->offs[0].start != -1) {
5056         /* $` */
5057         i = rx->offs[0].start;
5058         s = rx->subbeg;
5059     }
5060     else 
5061     if (paren == RX_BUFF_IDX_POSTMATCH && rx->offs[0].end != -1) {
5062         /* $' */
5063         s = rx->subbeg + rx->offs[0].end;
5064         i = rx->sublen - rx->offs[0].end;
5065     } 
5066     else
5067     if ( 0 <= paren && paren <= (I32)rx->nparens &&
5068         (s1 = rx->offs[paren].start) != -1 &&
5069         (t1 = rx->offs[paren].end) != -1)
5070     {
5071         /* $& $1 ... */
5072         i = t1 - s1;
5073         s = rx->subbeg + s1;
5074     } else {
5075         sv_setsv(sv,&PL_sv_undef);
5076         return;
5077     }          
5078     assert(rx->sublen >= (s - rx->subbeg) + i );
5079     if (i >= 0) {
5080         const int oldtainted = PL_tainted;
5081         TAINT_NOT;
5082         sv_setpvn(sv, s, i);
5083         PL_tainted = oldtainted;
5084         if ( (rx->extflags & RXf_CANY_SEEN)
5085             ? (RX_MATCH_UTF8(rx)
5086                         && (!i || is_utf8_string((U8*)s, i)))
5087             : (RX_MATCH_UTF8(rx)) )
5088         {
5089             SvUTF8_on(sv);
5090         }
5091         else
5092             SvUTF8_off(sv);
5093         if (PL_tainting) {
5094             if (RX_MATCH_TAINTED(rx)) {
5095                 if (SvTYPE(sv) >= SVt_PVMG) {
5096                     MAGIC* const mg = SvMAGIC(sv);
5097                     MAGIC* mgt;
5098                     PL_tainted = 1;
5099                     SvMAGIC_set(sv, mg->mg_moremagic);
5100                     SvTAINT(sv);
5101                     if ((mgt = SvMAGIC(sv))) {
5102                         mg->mg_moremagic = mgt;
5103                         SvMAGIC_set(sv, mg);
5104                     }
5105                 } else {
5106                     PL_tainted = 1;
5107                     SvTAINT(sv);
5108                 }
5109             } else 
5110                 SvTAINTED_off(sv);
5111         }
5112     } else {
5113         sv_setsv(sv,&PL_sv_undef);
5114         return;
5115     }
5116 }
5117
5118 void
5119 Perl_reg_numbered_buff_store(pTHX_ REGEXP * const rx, const I32 paren,
5120                                                          SV const * const value)
5121 {
5122     PERL_UNUSED_ARG(rx);
5123     PERL_UNUSED_ARG(paren);
5124     PERL_UNUSED_ARG(value);
5125
5126     if (!PL_localizing)
5127         Perl_croak(aTHX_ PL_no_modify);
5128 }
5129
5130 I32
5131 Perl_reg_numbered_buff_length(pTHX_ REGEXP * const rx, const SV * const sv,
5132                               const I32 paren)
5133 {
5134     I32 i;
5135     I32 s1, t1;
5136
5137     /* Some of this code was originally in C<Perl_magic_len> in F<mg.c> */
5138         switch (paren) {
5139       /* $` / ${^PREMATCH} */
5140       case RX_BUFF_IDX_PREMATCH:
5141         if (rx->offs[0].start != -1) {
5142                         i = rx->offs[0].start;
5143                         if (i > 0) {
5144                                 s1 = 0;
5145                                 t1 = i;
5146                                 goto getlen;
5147                         }
5148             }
5149         return 0;
5150       /* $' / ${^POSTMATCH} */
5151       case RX_BUFF_IDX_POSTMATCH:
5152             if (rx->offs[0].end != -1) {
5153                         i = rx->sublen - rx->offs[0].end;
5154                         if (i > 0) {
5155                                 s1 = rx->offs[0].end;
5156                                 t1 = rx->sublen;
5157                                 goto getlen;
5158                         }
5159             }
5160         return 0;
5161       /* $& / ${^MATCH}, $1, $2, ... */
5162       default:
5163             if (paren <= (I32)rx->nparens &&
5164             (s1 = rx->offs[paren].start) != -1 &&
5165             (t1 = rx->offs[paren].end) != -1)
5166             {
5167             i = t1 - s1;
5168             goto getlen;
5169         } else {
5170             if (ckWARN(WARN_UNINITIALIZED))
5171                 report_uninit((SV*)sv);
5172             return 0;
5173         }
5174     }
5175   getlen:
5176     if (i > 0 && RX_MATCH_UTF8(rx)) {
5177         const char * const s = rx->subbeg + s1;
5178         const U8 *ep;
5179         STRLEN el;
5180
5181         i = t1 - s1;
5182         if (is_utf8_string_loclen((U8*)s, i, &ep, &el))
5183                         i = el;
5184     }
5185     return i;
5186 }
5187
5188 SV*
5189 Perl_reg_qr_package(pTHX_ REGEXP * const rx)
5190 {
5191         PERL_UNUSED_ARG(rx);
5192         return newSVpvs("Regexp");
5193 }
5194
5195 /* Scans the name of a named buffer from the pattern.
5196  * If flags is REG_RSN_RETURN_NULL returns null.
5197  * If flags is REG_RSN_RETURN_NAME returns an SV* containing the name
5198  * If flags is REG_RSN_RETURN_DATA returns the data SV* corresponding
5199  * to the parsed name as looked up in the RExC_paren_names hash.
5200  * If there is an error throws a vFAIL().. type exception.
5201  */
5202
5203 #define REG_RSN_RETURN_NULL    0
5204 #define REG_RSN_RETURN_NAME    1
5205 #define REG_RSN_RETURN_DATA    2
5206
5207 STATIC SV*
5208 S_reg_scan_name(pTHX_ RExC_state_t *pRExC_state, U32 flags) {
5209     char *name_start = RExC_parse;
5210
5211     if (isIDFIRST_lazy_if(RExC_parse, UTF)) {
5212          /* skip IDFIRST by using do...while */
5213         if (UTF)
5214             do {
5215                 RExC_parse += UTF8SKIP(RExC_parse);
5216             } while (isALNUM_utf8((U8*)RExC_parse));
5217         else
5218             do {
5219                 RExC_parse++;
5220             } while (isALNUM(*RExC_parse));
5221     }
5222
5223     if ( flags ) {
5224         SV* sv_name = sv_2mortal(Perl_newSVpvn(aTHX_ name_start,
5225             (int)(RExC_parse - name_start)));
5226         if (UTF)
5227             SvUTF8_on(sv_name);
5228         if ( flags == REG_RSN_RETURN_NAME)
5229             return sv_name;
5230         else if (flags==REG_RSN_RETURN_DATA) {
5231             HE *he_str = NULL;
5232             SV *sv_dat = NULL;
5233             if ( ! sv_name )      /* should not happen*/
5234                 Perl_croak(aTHX_ "panic: no svname in reg_scan_name");
5235             if (RExC_paren_names)
5236                 he_str = hv_fetch_ent( RExC_paren_names, sv_name, 0, 0 );
5237             if ( he_str )
5238                 sv_dat = HeVAL(he_str);
5239             if ( ! sv_dat )
5240                 vFAIL("Reference to nonexistent named group");
5241             return sv_dat;
5242         }
5243         else {
5244             Perl_croak(aTHX_ "panic: bad flag in reg_scan_name");
5245         }
5246         /* NOT REACHED */
5247     }
5248     return NULL;
5249 }
5250
5251 #define DEBUG_PARSE_MSG(funcname)     DEBUG_PARSE_r({           \
5252     int rem=(int)(RExC_end - RExC_parse);                       \
5253     int cut;                                                    \
5254     int num;                                                    \
5255     int iscut=0;                                                \
5256     if (rem>10) {                                               \
5257         rem=10;                                                 \
5258         iscut=1;                                                \
5259     }                                                           \
5260     cut=10-rem;                                                 \
5261     if (RExC_lastparse!=RExC_parse)                             \
5262         PerlIO_printf(Perl_debug_log," >%.*s%-*s",              \
5263             rem, RExC_parse,                                    \
5264             cut + 4,                                            \
5265             iscut ? "..." : "<"                                 \
5266         );                                                      \
5267     else                                                        \
5268         PerlIO_printf(Perl_debug_log,"%16s","");                \
5269                                                                 \
5270     if (SIZE_ONLY)                                              \
5271        num = RExC_size + 1;                                     \
5272     else                                                        \
5273        num=REG_NODE_NUM(RExC_emit);                             \
5274     if (RExC_lastnum!=num)                                      \
5275        PerlIO_printf(Perl_debug_log,"|%4d",num);                \
5276     else                                                        \
5277        PerlIO_printf(Perl_debug_log,"|%4s","");                 \
5278     PerlIO_printf(Perl_debug_log,"|%*s%-4s",                    \
5279         (int)((depth*2)), "",                                   \
5280         (funcname)                                              \
5281     );                                                          \
5282     RExC_lastnum=num;                                           \
5283     RExC_lastparse=RExC_parse;                                  \
5284 })
5285
5286
5287
5288 #define DEBUG_PARSE(funcname)     DEBUG_PARSE_r({           \
5289     DEBUG_PARSE_MSG((funcname));                            \
5290     PerlIO_printf(Perl_debug_log,"%4s","\n");               \
5291 })
5292 #define DEBUG_PARSE_FMT(funcname,fmt,args)     DEBUG_PARSE_r({           \
5293     DEBUG_PARSE_MSG((funcname));                            \
5294     PerlIO_printf(Perl_debug_log,fmt "\n",args);               \
5295 })
5296 /*
5297  - reg - regular expression, i.e. main body or parenthesized thing
5298  *
5299  * Caller must absorb opening parenthesis.
5300  *
5301  * Combining parenthesis handling with the base level of regular expression
5302  * is a trifle forced, but the need to tie the tails of the branches to what
5303  * follows makes it hard to avoid.
5304  */
5305 #define REGTAIL(x,y,z) regtail((x),(y),(z),depth+1)
5306 #ifdef DEBUGGING
5307 #define REGTAIL_STUDY(x,y,z) regtail_study((x),(y),(z),depth+1)
5308 #else
5309 #define REGTAIL_STUDY(x,y,z) regtail((x),(y),(z),depth+1)
5310 #endif
5311
5312 STATIC regnode *
5313 S_reg(pTHX_ RExC_state_t *pRExC_state, I32 paren, I32 *flagp,U32 depth)
5314     /* paren: Parenthesized? 0=top, 1=(, inside: changed to letter. */
5315 {
5316     dVAR;
5317     register regnode *ret;              /* Will be the head of the group. */
5318     register regnode *br;
5319     register regnode *lastbr;
5320     register regnode *ender = NULL;
5321     register I32 parno = 0;
5322     I32 flags;
5323     U32 oregflags = RExC_flags;
5324     bool have_branch = 0;
5325     bool is_open = 0;
5326     I32 freeze_paren = 0;
5327     I32 after_freeze = 0;
5328
5329     /* for (?g), (?gc), and (?o) warnings; warning
5330        about (?c) will warn about (?g) -- japhy    */
5331
5332 #define WASTED_O  0x01
5333 #define WASTED_G  0x02
5334 #define WASTED_C  0x04
5335 #define WASTED_GC (0x02|0x04)
5336     I32 wastedflags = 0x00;
5337
5338     char * parse_start = RExC_parse; /* MJD */
5339     char * const oregcomp_parse = RExC_parse;
5340
5341     GET_RE_DEBUG_FLAGS_DECL;
5342     DEBUG_PARSE("reg ");
5343
5344     *flagp = 0;                         /* Tentatively. */
5345
5346
5347     /* Make an OPEN node, if parenthesized. */
5348     if (paren) {
5349         if ( *RExC_parse == '*') { /* (*VERB:ARG) */
5350             char *start_verb = RExC_parse;
5351             STRLEN verb_len = 0;
5352             char *start_arg = NULL;
5353             unsigned char op = 0;
5354             int argok = 1;
5355             int internal_argval = 0; /* internal_argval is only useful if !argok */
5356             while ( *RExC_parse && *RExC_parse != ')' ) {
5357                 if ( *RExC_parse == ':' ) {
5358                     start_arg = RExC_parse + 1;
5359                     break;
5360                 }
5361                 RExC_parse++;
5362             }
5363             ++start_verb;
5364             verb_len = RExC_parse - start_verb;
5365             if ( start_arg ) {
5366                 RExC_parse++;
5367                 while ( *RExC_parse && *RExC_parse != ')' ) 
5368                     RExC_parse++;
5369                 if ( *RExC_parse != ')' ) 
5370                     vFAIL("Unterminated verb pattern argument");
5371                 if ( RExC_parse == start_arg )
5372                     start_arg = NULL;
5373             } else {
5374                 if ( *RExC_parse != ')' )
5375                     vFAIL("Unterminated verb pattern");
5376             }
5377             
5378             switch ( *start_verb ) {
5379             case 'A':  /* (*ACCEPT) */
5380                 if ( memEQs(start_verb,verb_len,"ACCEPT") ) {
5381                     op = ACCEPT;
5382                     internal_argval = RExC_nestroot;
5383                 }
5384                 break;
5385             case 'C':  /* (*COMMIT) */
5386                 if ( memEQs(start_verb,verb_len,"COMMIT") )
5387                     op = COMMIT;
5388                 break;
5389             case 'F':  /* (*FAIL) */
5390                 if ( verb_len==1 || memEQs(start_verb,verb_len,"FAIL") ) {
5391                     op = OPFAIL;
5392                     argok = 0;
5393                 }
5394                 break;
5395             case ':':  /* (*:NAME) */
5396             case 'M':  /* (*MARK:NAME) */
5397                 if ( verb_len==0 || memEQs(start_verb,verb_len,"MARK") ) {
5398                     op = MARKPOINT;
5399                     argok = -1;
5400                 }
5401                 break;
5402             case 'P':  /* (*PRUNE) */
5403                 if ( memEQs(start_verb,verb_len,"PRUNE") )
5404                     op = PRUNE;
5405                 break;
5406             case 'S':   /* (*SKIP) */  
5407                 if ( memEQs(start_verb,verb_len,"SKIP") ) 
5408                     op = SKIP;
5409                 break;
5410             case 'T':  /* (*THEN) */
5411                 /* [19:06] <TimToady> :: is then */
5412                 if ( memEQs(start_verb,verb_len,"THEN") ) {
5413                     op = CUTGROUP;
5414                     RExC_seen |= REG_SEEN_CUTGROUP;
5415                 }
5416                 break;
5417             }
5418             if ( ! op ) {
5419                 RExC_parse++;
5420                 vFAIL3("Unknown verb pattern '%.*s'",
5421                     verb_len, start_verb);
5422             }
5423             if ( argok ) {
5424                 if ( start_arg && internal_argval ) {
5425                     vFAIL3("Verb pattern '%.*s' may not have an argument",
5426                         verb_len, start_verb); 
5427                 } else if ( argok < 0 && !start_arg ) {
5428                     vFAIL3("Verb pattern '%.*s' has a mandatory argument",
5429                         verb_len, start_verb);    
5430                 } else {
5431                     ret = reganode(pRExC_state, op, internal_argval);
5432                     if ( ! internal_argval && ! SIZE_ONLY ) {
5433                         if (start_arg) {
5434                             SV *sv = newSVpvn( start_arg, RExC_parse - start_arg);
5435                             ARG(ret) = add_data( pRExC_state, 1, "S" );
5436                             RExC_rxi->data->data[ARG(ret)]=(void*)sv;
5437                             ret->flags = 0;
5438                         } else {
5439                             ret->flags = 1; 
5440                         }
5441                     }               
5442                 }
5443                 if (!internal_argval)
5444                     RExC_seen |= REG_SEEN_VERBARG;
5445             } else if ( start_arg ) {
5446                 vFAIL3("Verb pattern '%.*s' may not have an argument",
5447                         verb_len, start_verb);    
5448             } else {
5449                 ret = reg_node(pRExC_state, op);
5450             }
5451             nextchar(pRExC_state);
5452             return ret;
5453         } else 
5454         if (*RExC_parse == '?') { /* (?...) */
5455             bool is_logical = 0;
5456             const char * const seqstart = RExC_parse;
5457
5458             RExC_parse++;
5459             paren = *RExC_parse++;
5460             ret = NULL;                 /* For look-ahead/behind. */
5461             switch (paren) {
5462
5463             case 'P':   /* (?P...) variants for those used to PCRE/Python */
5464                 paren = *RExC_parse++;
5465                 if ( paren == '<')         /* (?P<...>) named capture */
5466                     goto named_capture;
5467                 else if (paren == '>') {   /* (?P>name) named recursion */
5468                     goto named_recursion;
5469                 }
5470                 else if (paren == '=') {   /* (?P=...)  named backref */
5471                     /* this pretty much dupes the code for \k<NAME> in regatom(), if
5472                        you change this make sure you change that */
5473                     char* name_start = RExC_parse;
5474                     U32 num = 0;
5475                     SV *sv_dat = reg_scan_name(pRExC_state,
5476                         SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
5477                     if (RExC_parse == name_start || *RExC_parse != ')')
5478                         vFAIL2("Sequence %.3s... not terminated",parse_start);
5479
5480                     if (!SIZE_ONLY) {
5481                         num = add_data( pRExC_state, 1, "S" );
5482                         RExC_rxi->data->data[num]=(void*)sv_dat;
5483                         SvREFCNT_inc_simple_void(sv_dat);
5484                     }
5485                     RExC_sawback = 1;
5486                     ret = reganode(pRExC_state,
5487                            (U8)(FOLD ? (LOC ? NREFFL : NREFF) : NREF),
5488                            num);
5489                     *flagp |= HASWIDTH;
5490
5491                     Set_Node_Offset(ret, parse_start+1);
5492                     Set_Node_Cur_Length(ret); /* MJD */
5493
5494                     nextchar(pRExC_state);
5495                     return ret;
5496                 }
5497                 RExC_parse++;
5498                 vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
5499                 /*NOTREACHED*/
5500             case '<':           /* (?<...) */
5501                 if (*RExC_parse == '!')
5502                     paren = ',';
5503                 else if (*RExC_parse != '=') 
5504               named_capture:
5505                 {               /* (?<...>) */
5506                     char *name_start;
5507                     SV *svname;
5508                     paren= '>';
5509             case '\'':          /* (?'...') */
5510                     name_start= RExC_parse;
5511                     svname = reg_scan_name(pRExC_state,
5512                         SIZE_ONLY ?  /* reverse test from the others */
5513                         REG_RSN_RETURN_NAME : 
5514                         REG_RSN_RETURN_NULL);
5515                     if (RExC_parse == name_start) {
5516                         RExC_parse++;
5517                         vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
5518                         /*NOTREACHED*/
5519                     }
5520                     if (*RExC_parse != paren)
5521                         vFAIL2("Sequence (?%c... not terminated",
5522                             paren=='>' ? '<' : paren);
5523                     if (SIZE_ONLY) {
5524                         HE *he_str;
5525                         SV *sv_dat = NULL;
5526                         if (!svname) /* shouldnt happen */
5527                             Perl_croak(aTHX_
5528                                 "panic: reg_scan_name returned NULL");
5529                         if (!RExC_paren_names) {
5530                             RExC_paren_names= newHV();
5531                             sv_2mortal((SV*)RExC_paren_names);
5532 #ifdef DEBUGGING
5533                             RExC_paren_name_list= newAV();
5534                             sv_2mortal((SV*)RExC_paren_name_list);
5535 #endif
5536                         }
5537                         he_str = hv_fetch_ent( RExC_paren_names, svname, 1, 0 );
5538                         if ( he_str )
5539                             sv_dat = HeVAL(he_str);
5540                         if ( ! sv_dat ) {
5541                             /* croak baby croak */
5542                             Perl_croak(aTHX_
5543                                 "panic: paren_name hash element allocation failed");
5544                         } else if ( SvPOK(sv_dat) ) {
5545                             /* (?|...) can mean we have dupes so scan to check
5546                                its already been stored. Maybe a flag indicating
5547                                we are inside such a construct would be useful,
5548                                but the arrays are likely to be quite small, so
5549                                for now we punt -- dmq */
5550                             IV count = SvIV(sv_dat);
5551                             I32 *pv = (I32*)SvPVX(sv_dat);
5552                             IV i;
5553                             for ( i = 0 ; i < count ; i++ ) {
5554                                 if ( pv[i] == RExC_npar ) {
5555                                     count = 0;
5556                                     break;
5557                                 }
5558                             }
5559                             if ( count ) {
5560                                 pv = (I32*)SvGROW(sv_dat, SvCUR(sv_dat) + sizeof(I32)+1);
5561                                 SvCUR_set(sv_dat, SvCUR(sv_dat) + sizeof(I32));
5562                                 pv[count] = RExC_npar;
5563                                 SvIVX(sv_dat)++;
5564                             }
5565                         } else {
5566                             (void)SvUPGRADE(sv_dat,SVt_PVNV);
5567                             sv_setpvn(sv_dat, (char *)&(RExC_npar), sizeof(I32));
5568                             SvIOK_on(sv_dat);
5569                             SvIVX(sv_dat)= 1;
5570                         }
5571 #ifdef DEBUGGING
5572                         if (!av_store(RExC_paren_name_list, RExC_npar, SvREFCNT_inc(svname)))
5573                             SvREFCNT_dec(svname);
5574 #endif
5575
5576                         /*sv_dump(sv_dat);*/
5577                     }
5578                     nextchar(pRExC_state);
5579                     paren = 1;
5580                     goto capturing_parens;
5581                 }
5582                 RExC_seen |= REG_SEEN_LOOKBEHIND;
5583                 RExC_parse++;
5584             case '=':           /* (?=...) */
5585             case '!':           /* (?!...) */
5586                 RExC_seen_zerolen++;
5587                 if (*RExC_parse == ')') {
5588                     ret=reg_node(pRExC_state, OPFAIL);
5589                     nextchar(pRExC_state);
5590                     return ret;
5591                 }
5592                 break;
5593             case '|':           /* (?|...) */
5594                 /* branch reset, behave like a (?:...) except that
5595                    buffers in alternations share the same numbers */
5596                 paren = ':'; 
5597                 after_freeze = freeze_paren = RExC_npar;
5598                 break;
5599             case ':':           /* (?:...) */
5600             case '>':           /* (?>...) */
5601                 break;
5602             case '$':           /* (?$...) */
5603             case '@':           /* (?@...) */
5604                 vFAIL2("Sequence (?%c...) not implemented", (int)paren);
5605                 break;
5606             case '#':           /* (?#...) */
5607                 while (*RExC_parse && *RExC_parse != ')')
5608                     RExC_parse++;
5609                 if (*RExC_parse != ')')
5610                     FAIL("Sequence (?#... not terminated");
5611                 nextchar(pRExC_state);
5612                 *flagp = TRYAGAIN;
5613                 return NULL;
5614             case '0' :           /* (?0) */
5615             case 'R' :           /* (?R) */
5616                 if (*RExC_parse != ')')
5617                     FAIL("Sequence (?R) not terminated");
5618                 ret = reg_node(pRExC_state, GOSTART);
5619                 *flagp |= POSTPONED;
5620                 nextchar(pRExC_state);
5621                 return ret;
5622                 /*notreached*/
5623             { /* named and numeric backreferences */
5624                 I32 num;
5625             case '&':            /* (?&NAME) */
5626                 parse_start = RExC_parse - 1;
5627               named_recursion:
5628                 {
5629                     SV *sv_dat = reg_scan_name(pRExC_state,
5630                         SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
5631                      num = sv_dat ? *((I32 *)SvPVX(sv_dat)) : 0;
5632                 }
5633                 goto gen_recurse_regop;
5634                 /* NOT REACHED */
5635             case '+':
5636                 if (!(RExC_parse[0] >= '1' && RExC_parse[0] <= '9')) {
5637                     RExC_parse++;
5638                     vFAIL("Illegal pattern");
5639                 }
5640                 goto parse_recursion;
5641                 /* NOT REACHED*/
5642             case '-': /* (?-1) */
5643                 if (!(RExC_parse[0] >= '1' && RExC_parse[0] <= '9')) {
5644                     RExC_parse--; /* rewind to let it be handled later */
5645                     goto parse_flags;
5646                 } 
5647                 /*FALLTHROUGH */
5648             case '1': case '2': case '3': case '4': /* (?1) */
5649             case '5': case '6': case '7': case '8': case '9':
5650                 RExC_parse--;
5651               parse_recursion:
5652                 num = atoi(RExC_parse);
5653                 parse_start = RExC_parse - 1; /* MJD */
5654                 if (*RExC_parse == '-')
5655                     RExC_parse++;
5656                 while (isDIGIT(*RExC_parse))
5657                         RExC_parse++;
5658                 if (*RExC_parse!=')') 
5659                     vFAIL("Expecting close bracket");
5660                         
5661               gen_recurse_regop:
5662                 if ( paren == '-' ) {
5663                     /*
5664                     Diagram of capture buffer numbering.
5665                     Top line is the normal capture buffer numbers
5666                     Botton line is the negative indexing as from
5667                     the X (the (?-2))
5668
5669                     +   1 2    3 4 5 X          6 7
5670                        /(a(x)y)(a(b(c(?-2)d)e)f)(g(h))/
5671                     -   5 4    3 2 1 X          x x
5672
5673                     */
5674                     num = RExC_npar + num;
5675                     if (num < 1)  {
5676                         RExC_parse++;
5677                         vFAIL("Reference to nonexistent group");
5678                     }
5679                 } else if ( paren == '+' ) {
5680                     num = RExC_npar + num - 1;
5681                 }
5682
5683                 ret = reganode(pRExC_state, GOSUB, num);
5684                 if (!SIZE_ONLY) {
5685                     if (num > (I32)RExC_rx->nparens) {
5686                         RExC_parse++;
5687                         vFAIL("Reference to nonexistent group");
5688                     }
5689                     ARG2L_SET( ret, RExC_recurse_count++);
5690                     RExC_emit++;
5691                     DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log,
5692                         "Recurse #%"UVuf" to %"IVdf"\n", (UV)ARG(ret), (IV)ARG2L(ret)));
5693                 } else {
5694                     RExC_size++;
5695                 }
5696                 RExC_seen |= REG_SEEN_RECURSE;
5697                 Set_Node_Length(ret, 1 + regarglen[OP(ret)]); /* MJD */
5698                 Set_Node_Offset(ret, parse_start); /* MJD */
5699
5700                 *flagp |= POSTPONED;
5701                 nextchar(pRExC_state);
5702                 return ret;
5703             } /* named and numeric backreferences */
5704             /* NOT REACHED */
5705
5706             case '?':           /* (??...) */
5707                 is_logical = 1;
5708                 if (*RExC_parse != '{') {
5709                     RExC_parse++;
5710                     vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
5711                     /*NOTREACHED*/
5712                 }
5713                 *flagp |= POSTPONED;
5714                 paren = *RExC_parse++;
5715                 /* FALL THROUGH */
5716             case '{':           /* (?{...}) */
5717             {
5718                 I32 count = 1;
5719                 U32 n = 0;
5720                 char c;
5721                 char *s = RExC_parse;
5722
5723                 RExC_seen_zerolen++;
5724                 RExC_seen |= REG_SEEN_EVAL;
5725                 while (count && (c = *RExC_parse)) {
5726                     if (c == '\\') {
5727                         if (RExC_parse[1])
5728                             RExC_parse++;
5729                     }
5730                     else if (c == '{')
5731                         count++;
5732                     else if (c == '}')
5733                         count--;
5734                     RExC_parse++;
5735                 }
5736                 if (*RExC_parse != ')') {
5737                     RExC_parse = s;             
5738                     vFAIL("Sequence (?{...}) not terminated or not {}-balanced");
5739                 }
5740                 if (!SIZE_ONLY) {
5741                     PAD *pad;
5742                     OP_4tree *sop, *rop;
5743                     SV * const sv = newSVpvn(s, RExC_parse - 1 - s);
5744
5745                     ENTER;
5746                     Perl_save_re_context(aTHX);
5747                     rop = sv_compile_2op(sv, &sop, "re", &pad);
5748                     sop->op_private |= OPpREFCOUNTED;
5749                     /* re_dup will OpREFCNT_inc */
5750                     OpREFCNT_set(sop, 1);
5751                     LEAVE;
5752
5753                     n = add_data(pRExC_state, 3, "nop");
5754                     RExC_rxi->data->data[n] = (void*)rop;
5755                     RExC_rxi->data->data[n+1] = (void*)sop;
5756                     RExC_rxi->data->data[n+2] = (void*)pad;
5757                     SvREFCNT_dec(sv);
5758                 }
5759                 else {                                          /* First pass */
5760                     if (PL_reginterp_cnt < ++RExC_seen_evals
5761                         && IN_PERL_RUNTIME)
5762                         /* No compiled RE interpolated, has runtime
5763                            components ===> unsafe.  */
5764                         FAIL("Eval-group not allowed at runtime, use re 'eval'");
5765                     if (PL_tainting && PL_tainted)
5766                         FAIL("Eval-group in insecure regular expression");
5767 #if PERL_VERSION > 8
5768                     if (IN_PERL_COMPILETIME)
5769                         PL_cv_has_eval = 1;
5770 #endif
5771                 }
5772
5773                 nextchar(pRExC_state);
5774                 if (is_logical) {
5775                     ret = reg_node(pRExC_state, LOGICAL);
5776                     if (!SIZE_ONLY)
5777                         ret->flags = 2;
5778                     REGTAIL(pRExC_state, ret, reganode(pRExC_state, EVAL, n));
5779                     /* deal with the length of this later - MJD */
5780                     return ret;
5781                 }
5782                 ret = reganode(pRExC_state, EVAL, n);
5783                 Set_Node_Length(ret, RExC_parse - parse_start + 1);
5784                 Set_Node_Offset(ret, parse_start);
5785                 return ret;
5786             }
5787             case '(':           /* (?(?{...})...) and (?(?=...)...) */
5788             {
5789                 int is_define= 0;
5790                 if (RExC_parse[0] == '?') {        /* (?(?...)) */
5791                     if (RExC_parse[1] == '=' || RExC_parse[1] == '!'
5792                         || RExC_parse[1] == '<'
5793                         || RExC_parse[1] == '{') { /* Lookahead or eval. */
5794                         I32 flag;
5795                         
5796                         ret = reg_node(pRExC_state, LOGICAL);
5797                         if (!SIZE_ONLY)
5798                             ret->flags = 1;
5799                         REGTAIL(pRExC_state, ret, reg(pRExC_state, 1, &flag,depth+1));
5800                         goto insert_if;
5801                     }
5802                 }
5803                 else if ( RExC_parse[0] == '<'     /* (?(<NAME>)...) */
5804                          || RExC_parse[0] == '\'' ) /* (?('NAME')...) */
5805                 {
5806                     char ch = RExC_parse[0] == '<' ? '>' : '\'';
5807                     char *name_start= RExC_parse++;
5808                     U32 num = 0;
5809                     SV *sv_dat=reg_scan_name(pRExC_state,
5810                         SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
5811                     if (RExC_parse == name_start || *RExC_parse != ch)
5812                         vFAIL2("Sequence (?(%c... not terminated",
5813                             (ch == '>' ? '<' : ch));
5814                     RExC_parse++;
5815                     if (!SIZE_ONLY) {
5816                         num = add_data( pRExC_state, 1, "S" );
5817                         RExC_rxi->data->data[num]=(void*)sv_dat;
5818                         SvREFCNT_inc_simple_void(sv_dat);
5819                     }
5820                     ret = reganode(pRExC_state,NGROUPP,num);
5821                     goto insert_if_check_paren;
5822                 }
5823                 else if (RExC_parse[0] == 'D' &&
5824                          RExC_parse[1] == 'E' &&
5825                          RExC_parse[2] == 'F' &&
5826                          RExC_parse[3] == 'I' &&
5827                          RExC_parse[4] == 'N' &&
5828                          RExC_parse[5] == 'E')
5829                 {
5830                     ret = reganode(pRExC_state,DEFINEP,0);
5831                     RExC_parse +=6 ;
5832                     is_define = 1;
5833                     goto insert_if_check_paren;
5834                 }
5835                 else if (RExC_parse[0] == 'R') {
5836                     RExC_parse++;
5837                     parno = 0;
5838                     if (RExC_parse[0] >= '1' && RExC_parse[0] <= '9' ) {
5839                         parno = atoi(RExC_parse++);
5840                         while (isDIGIT(*RExC_parse))
5841                             RExC_parse++;
5842                     } else if (RExC_parse[0] == '&') {
5843                         SV *sv_dat;
5844                         RExC_parse++;
5845                         sv_dat = reg_scan_name(pRExC_state,
5846                             SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
5847                         parno = sv_dat ? *((I32 *)SvPVX(sv_dat)) : 0;
5848                     }
5849                     ret = reganode(pRExC_state,INSUBP,parno); 
5850                     goto insert_if_check_paren;
5851                 }
5852                 else if (RExC_parse[0] >= '1' && RExC_parse[0] <= '9' ) {
5853                     /* (?(1)...) */
5854                     char c;
5855                     parno = atoi(RExC_parse++);
5856
5857                     while (isDIGIT(*RExC_parse))
5858                         RExC_parse++;
5859                     ret = reganode(pRExC_state, GROUPP, parno);
5860
5861                  insert_if_check_paren:
5862                     if ((c = *nextchar(pRExC_state)) != ')')
5863                         vFAIL("Switch condition not recognized");
5864                   insert_if:
5865                     REGTAIL(pRExC_state, ret, reganode(pRExC_state, IFTHEN, 0));
5866                     br = regbranch(pRExC_state, &flags, 1,depth+1);
5867                     if (br == NULL)
5868                         br = reganode(pRExC_state, LONGJMP, 0);
5869                     else
5870                         REGTAIL(pRExC_state, br, reganode(pRExC_state, LONGJMP, 0));
5871                     c = *nextchar(pRExC_state);
5872                     if (flags&HASWIDTH)
5873                         *flagp |= HASWIDTH;
5874                     if (c == '|') {
5875                         if (is_define) 
5876                             vFAIL("(?(DEFINE)....) does not allow branches");
5877                         lastbr = reganode(pRExC_state, IFTHEN, 0); /* Fake one for optimizer. */
5878                         regbranch(pRExC_state, &flags, 1,depth+1);
5879                         REGTAIL(pRExC_state, ret, lastbr);
5880                         if (flags&HASWIDTH)
5881                             *flagp |= HASWIDTH;
5882                         c = *nextchar(pRExC_state);
5883                     }
5884                     else
5885                         lastbr = NULL;
5886                     if (c != ')')
5887                         vFAIL("Switch (?(condition)... contains too many branches");
5888                     ender = reg_node(pRExC_state, TAIL);
5889                     REGTAIL(pRExC_state, br, ender);
5890                     if (lastbr) {
5891                         REGTAIL(pRExC_state, lastbr, ender);
5892                         REGTAIL(pRExC_state, NEXTOPER(NEXTOPER(lastbr)), ender);
5893                     }
5894                     else
5895                         REGTAIL(pRExC_state, ret, ender);
5896                     RExC_size++; /* XXX WHY do we need this?!!
5897                                     For large programs it seems to be required
5898                                     but I can't figure out why. -- dmq*/
5899                     return ret;
5900                 }
5901                 else {
5902                     vFAIL2("Unknown switch condition (?(%.2s", RExC_parse);
5903                 }
5904             }
5905             case 0:
5906                 RExC_parse--; /* for vFAIL to print correctly */
5907                 vFAIL("Sequence (? incomplete");
5908                 break;
5909             default:
5910                 --RExC_parse;
5911                 parse_flags:      /* (?i) */  
5912             {
5913                 U32 posflags = 0, negflags = 0;
5914                 U32 *flagsp = &posflags;
5915
5916                 while (*RExC_parse) {
5917                     /* && strchr("iogcmsx", *RExC_parse) */
5918                     /* (?g), (?gc) and (?o) are useless here
5919                        and must be globally applied -- japhy */
5920                     switch (*RExC_parse) {
5921                     CASE_STD_PMMOD_FLAGS_PARSE_SET(flagsp);
5922                     case ONCE_PAT_MOD: /* 'o' */
5923                     case GLOBAL_PAT_MOD: /* 'g' */
5924                         if (SIZE_ONLY && ckWARN(WARN_REGEXP)) {
5925                             const I32 wflagbit = *RExC_parse == 'o' ? WASTED_O : WASTED_G;
5926                             if (! (wastedflags & wflagbit) ) {
5927                                 wastedflags |= wflagbit;
5928                                 vWARN5(
5929                                     RExC_parse + 1,
5930                                     "Useless (%s%c) - %suse /%c modifier",
5931                                     flagsp == &negflags ? "?-" : "?",
5932                                     *RExC_parse,
5933                                     flagsp == &negflags ? "don't " : "",
5934                                     *RExC_parse
5935                                 );
5936                             }
5937                         }
5938                         break;
5939                         
5940                     case CONTINUE_PAT_MOD: /* 'c' */
5941                         if (SIZE_ONLY && ckWARN(WARN_REGEXP)) {
5942                             if (! (wastedflags & WASTED_C) ) {
5943                                 wastedflags |= WASTED_GC;
5944                                 vWARN3(
5945                                     RExC_parse + 1,
5946                                     "Useless (%sc) - %suse /gc modifier",
5947                                     flagsp == &negflags ? "?-" : "?",
5948                                     flagsp == &negflags ? "don't " : ""
5949                                 );
5950                             }
5951                         }
5952                         break;
5953                     case KEEPCOPY_PAT_MOD: /* 'p' */
5954                         if (flagsp == &negflags) {
5955                             if (SIZE_ONLY && ckWARN(WARN_REGEXP))
5956                                 vWARN(RExC_parse + 1,"Useless use of (?-p)");
5957                         } else {
5958                             *flagsp |= RXf_PMf_KEEPCOPY;
5959                         }
5960                         break;
5961                     case '-':
5962                         if (flagsp == &negflags) {
5963                             RExC_parse++;
5964                             vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
5965                             /*NOTREACHED*/
5966                         }
5967                         flagsp = &negflags;
5968                         wastedflags = 0;  /* reset so (?g-c) warns twice */
5969                         break;
5970                     case ':':
5971                         paren = ':';
5972                         /*FALLTHROUGH*/
5973                     case ')':
5974                         RExC_flags |= posflags;
5975                         RExC_flags &= ~negflags;
5976                         if (paren != ':') {
5977                             oregflags |= posflags;
5978                             oregflags &= ~negflags;
5979                         }
5980                         nextchar(pRExC_state);
5981                         if (paren != ':') {
5982                             *flagp = TRYAGAIN;
5983                             return NULL;
5984                         } else {
5985                             ret = NULL;
5986                             goto parse_rest;
5987                         }
5988                         /*NOTREACHED*/
5989                     default:
5990                         RExC_parse++;
5991                         vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
5992                         /*NOTREACHED*/
5993                     }                           
5994                     ++RExC_parse;
5995                 }
5996             }} /* one for the default block, one for the switch */
5997         }
5998         else {                  /* (...) */
5999           capturing_parens:
6000             parno = RExC_npar;
6001             RExC_npar++;
6002             
6003             ret = reganode(pRExC_state, OPEN, parno);
6004             if (!SIZE_ONLY ){
6005                 if (!RExC_nestroot) 
6006                     RExC_nestroot = parno;
6007                 if (RExC_seen & REG_SEEN_RECURSE
6008                     && !RExC_open_parens[parno-1])
6009                 {
6010                     DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log,
6011                         "Setting open paren #%"IVdf" to %d\n", 
6012                         (IV)parno, REG_NODE_NUM(ret)));
6013                     RExC_open_parens[parno-1]= ret;
6014                 }
6015             }
6016             Set_Node_Length(ret, 1); /* MJD */
6017             Set_Node_Offset(ret, RExC_parse); /* MJD */
6018             is_open = 1;
6019         }
6020     }
6021     else                        /* ! paren */
6022         ret = NULL;
6023    
6024    parse_rest:
6025     /* Pick up the branches, linking them together. */
6026     parse_start = RExC_parse;   /* MJD */
6027     br = regbranch(pRExC_state, &flags, 1,depth+1);
6028     /*     branch_len = (paren != 0); */
6029
6030     if (br == NULL)
6031         return(NULL);
6032     if (*RExC_parse == '|') {
6033         if (!SIZE_ONLY && RExC_extralen) {
6034             reginsert(pRExC_state, BRANCHJ, br, depth+1);
6035         }
6036         else {                  /* MJD */
6037             reginsert(pRExC_state, BRANCH, br, depth+1);
6038             Set_Node_Length(br, paren != 0);
6039             Set_Node_Offset_To_R(br-RExC_emit_start, parse_start-RExC_start);
6040         }
6041         have_branch = 1;
6042         if (SIZE_ONLY)
6043             RExC_extralen += 1;         /* For BRANCHJ-BRANCH. */
6044     }
6045     else if (paren == ':') {
6046         *flagp |= flags&SIMPLE;
6047     }
6048     if (is_open) {                              /* Starts with OPEN. */
6049         REGTAIL(pRExC_state, ret, br);          /* OPEN -> first. */
6050     }
6051     else if (paren != '?')              /* Not Conditional */
6052         ret = br;
6053     *flagp |= flags & (SPSTART | HASWIDTH | POSTPONED);
6054     lastbr = br;
6055     while (*RExC_parse == '|') {
6056         if (!SIZE_ONLY && RExC_extralen) {
6057             ender = reganode(pRExC_state, LONGJMP,0);
6058             REGTAIL(pRExC_state, NEXTOPER(NEXTOPER(lastbr)), ender); /* Append to the previous. */
6059         }
6060         if (SIZE_ONLY)
6061             RExC_extralen += 2;         /* Account for LONGJMP. */
6062         nextchar(pRExC_state);
6063         if (freeze_paren) {
6064             if (RExC_npar > after_freeze)
6065                 after_freeze = RExC_npar;
6066             RExC_npar = freeze_paren;       
6067         }
6068         br = regbranch(pRExC_state, &flags, 0, depth+1);
6069
6070         if (br == NULL)
6071             return(NULL);
6072         REGTAIL(pRExC_state, lastbr, br);               /* BRANCH -> BRANCH. */
6073         lastbr = br;
6074         *flagp |= flags & (SPSTART | HASWIDTH | POSTPONED);
6075     }
6076
6077     if (have_branch || paren != ':') {
6078         /* Make a closing node, and hook it on the end. */
6079         switch (paren) {
6080         case ':':
6081             ender = reg_node(pRExC_state, TAIL);
6082             break;
6083         case 1:
6084             ender = reganode(pRExC_state, CLOSE, parno);
6085             if (!SIZE_ONLY && RExC_seen & REG_SEEN_RECURSE) {
6086                 DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log,
6087                         "Setting close paren #%"IVdf" to %d\n", 
6088                         (IV)parno, REG_NODE_NUM(ender)));
6089                 RExC_close_parens[parno-1]= ender;
6090                 if (RExC_nestroot == parno) 
6091                     RExC_nestroot = 0;
6092             }       
6093             Set_Node_Offset(ender,RExC_parse+1); /* MJD */
6094             Set_Node_Length(ender,1); /* MJD */
6095             break;
6096         case '<':
6097         case ',':
6098         case '=':
6099         case '!':
6100             *flagp &= ~HASWIDTH;
6101             /* FALL THROUGH */
6102         case '>':
6103             ender = reg_node(pRExC_state, SUCCEED);
6104             break;
6105         case 0:
6106             ender = reg_node(pRExC_state, END);
6107             if (!SIZE_ONLY) {
6108                 assert(!RExC_opend); /* there can only be one! */
6109                 RExC_opend = ender;
6110             }
6111             break;
6112         }
6113         REGTAIL(pRExC_state, lastbr, ender);
6114
6115         if (have_branch && !SIZE_ONLY) {
6116             if (depth==1)
6117                 RExC_seen |= REG_TOP_LEVEL_BRANCHES;
6118
6119             /* Hook the tails of the branches to the closing node. */
6120             for (br = ret; br; br = regnext(br)) {
6121                 const U8 op = PL_regkind[OP(br)];
6122                 if (op == BRANCH) {
6123                     REGTAIL_STUDY(pRExC_state, NEXTOPER(br), ender);
6124                 }
6125                 else if (op == BRANCHJ) {
6126                     REGTAIL_STUDY(pRExC_state, NEXTOPER(NEXTOPER(br)), ender);
6127                 }
6128             }
6129         }
6130     }
6131
6132     {
6133         const char *p;
6134         static const char parens[] = "=!<,>";
6135
6136         if (paren && (p = strchr(parens, paren))) {
6137             U8 node = ((p - parens) % 2) ? UNLESSM : IFMATCH;
6138             int flag = (p - parens) > 1;
6139
6140             if (paren == '>')
6141                 node = SUSPEND, flag = 0;
6142             reginsert(pRExC_state, node,ret, depth+1);
6143             Set_Node_Cur_Length(ret);
6144             Set_Node_Offset(ret, parse_start + 1);
6145             ret->flags = flag;
6146             REGTAIL_STUDY(pRExC_state, ret, reg_node(pRExC_state, TAIL));
6147         }
6148     }
6149
6150     /* Check for proper termination. */
6151     if (paren) {
6152         RExC_flags = oregflags;
6153         if (RExC_parse >= RExC_end || *nextchar(pRExC_state) != ')') {
6154             RExC_parse = oregcomp_parse;
6155             vFAIL("Unmatched (");
6156         }
6157     }
6158     else if (!paren && RExC_parse < RExC_end) {
6159         if (*RExC_parse == ')') {
6160             RExC_parse++;
6161             vFAIL("Unmatched )");
6162         }
6163         else
6164             FAIL("Junk on end of regexp");      /* "Can't happen". */
6165         /* NOTREACHED */
6166     }
6167     if (after_freeze)
6168         RExC_npar = after_freeze;
6169     return(ret);
6170 }
6171
6172 /*
6173  - regbranch - one alternative of an | operator
6174  *
6175  * Implements the concatenation operator.
6176  */
6177 STATIC regnode *
6178 S_regbranch(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, I32 first, U32 depth)
6179 {
6180     dVAR;
6181     register regnode *ret;
6182     register regnode *chain = NULL;
6183     register regnode *latest;
6184     I32 flags = 0, c = 0;
6185     GET_RE_DEBUG_FLAGS_DECL;
6186     DEBUG_PARSE("brnc");
6187
6188     if (first)
6189         ret = NULL;
6190     else {
6191         if (!SIZE_ONLY && RExC_extralen)
6192             ret = reganode(pRExC_state, BRANCHJ,0);
6193         else {
6194             ret = reg_node(pRExC_state, BRANCH);
6195             Set_Node_Length(ret, 1);
6196         }
6197     }
6198         
6199     if (!first && SIZE_ONLY)
6200         RExC_extralen += 1;                     /* BRANCHJ */
6201
6202     *flagp = WORST;                     /* Tentatively. */
6203
6204     RExC_parse--;
6205     nextchar(pRExC_state);
6206     while (RExC_parse < RExC_end && *RExC_parse != '|' && *RExC_parse != ')') {
6207         flags &= ~TRYAGAIN;
6208         latest = regpiece(pRExC_state, &flags,depth+1);
6209         if (latest == NULL) {
6210             if (flags & TRYAGAIN)
6211                 continue;
6212             return(NULL);
6213         }
6214         else if (ret == NULL)
6215             ret = latest;
6216         *flagp |= flags&(HASWIDTH|POSTPONED);
6217         if (chain == NULL)      /* First piece. */
6218             *flagp |= flags&SPSTART;
6219         else {
6220             RExC_naughty++;
6221             REGTAIL(pRExC_state, chain, latest);
6222         }
6223         chain = latest;
6224         c++;
6225     }
6226     if (chain == NULL) {        /* Loop ran zero times. */
6227         chain = reg_node(pRExC_state, NOTHING);
6228         if (ret == NULL)
6229             ret = chain;
6230     }
6231     if (c == 1) {
6232         *flagp |= flags&SIMPLE;
6233     }
6234
6235     return ret;
6236 }
6237
6238 /*
6239  - regpiece - something followed by possible [*+?]
6240  *
6241  * Note that the branching code sequences used for ? and the general cases
6242  * of * and + are somewhat optimized:  they use the same NOTHING node as
6243  * both the endmarker for their branch list and the body of the last branch.
6244  * It might seem that this node could be dispensed with entirely, but the
6245  * endmarker role is not redundant.
6246  */
6247 STATIC regnode *
6248 S_regpiece(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth)
6249 {
6250     dVAR;
6251     register regnode *ret;
6252     register char op;
6253     register char *next;
6254     I32 flags;
6255     const char * const origparse = RExC_parse;
6256     I32 min;
6257     I32 max = REG_INFTY;
6258     char *parse_start;
6259     const char *maxpos = NULL;
6260     GET_RE_DEBUG_FLAGS_DECL;
6261     DEBUG_PARSE("piec");
6262
6263     ret = regatom(pRExC_state, &flags,depth+1);
6264     if (ret == NULL) {
6265         if (flags & TRYAGAIN)
6266             *flagp |= TRYAGAIN;
6267         return(NULL);
6268     }
6269
6270     op = *RExC_parse;
6271
6272     if (op == '{' && regcurly(RExC_parse)) {
6273         maxpos = NULL;
6274         parse_start = RExC_parse; /* MJD */
6275         next = RExC_parse + 1;
6276         while (isDIGIT(*next) || *next == ',') {
6277             if (*next == ',') {
6278                 if (maxpos)
6279                     break;
6280                 else
6281                     maxpos = next;
6282             }
6283             next++;
6284         }
6285         if (*next == '}') {             /* got one */
6286             if (!maxpos)
6287                 maxpos = next;
6288             RExC_parse++;
6289             min = atoi(RExC_parse);
6290             if (*maxpos == ',')
6291                 maxpos++;
6292             else
6293                 maxpos = RExC_parse;
6294             max = atoi(maxpos);
6295             if (!max && *maxpos != '0')
6296                 max = REG_INFTY;                /* meaning "infinity" */
6297             else if (max >= REG_INFTY)
6298                 vFAIL2("Quantifier in {,} bigger than %d", REG_INFTY - 1);
6299             RExC_parse = next;
6300             nextchar(pRExC_state);
6301
6302         do_curly:
6303             if ((flags&SIMPLE)) {
6304                 RExC_naughty += 2 + RExC_naughty / 2;
6305                 reginsert(pRExC_state, CURLY, ret, depth+1);
6306                 Set_Node_Offset(ret, parse_start+1); /* MJD */
6307                 Set_Node_Cur_Length(ret);
6308             }
6309             else {
6310                 regnode * const w = reg_node(pRExC_state, WHILEM);
6311
6312                 w->flags = 0;
6313                 REGTAIL(pRExC_state, ret, w);
6314                 if (!SIZE_ONLY && RExC_extralen) {
6315                     reginsert(pRExC_state, LONGJMP,ret, depth+1);
6316                     reginsert(pRExC_state, NOTHING,ret, depth+1);
6317                     NEXT_OFF(ret) = 3;  /* Go over LONGJMP. */
6318                 }
6319                 reginsert(pRExC_state, CURLYX,ret, depth+1);
6320                                 /* MJD hk */
6321                 Set_Node_Offset(ret, parse_start+1);
6322                 Set_Node_Length(ret,
6323                                 op == '{' ? (RExC_parse - parse_start) : 1);
6324
6325                 if (!SIZE_ONLY && RExC_extralen)
6326                     NEXT_OFF(ret) = 3;  /* Go over NOTHING to LONGJMP. */
6327                 REGTAIL(pRExC_state, ret, reg_node(pRExC_state, NOTHING));
6328                 if (SIZE_ONLY)
6329                     RExC_whilem_seen++, RExC_extralen += 3;
6330                 RExC_naughty += 4 + RExC_naughty;       /* compound interest */
6331             }
6332             ret->flags = 0;
6333
6334             if (min > 0)
6335                 *flagp = WORST;
6336             if (max > 0)
6337                 *flagp |= HASWIDTH;
6338             if (max && max < min)
6339                 vFAIL("Can't do {n,m} with n > m");
6340             if (!SIZE_ONLY) {
6341                 ARG1_SET(ret, (U16)min);
6342                 ARG2_SET(ret, (U16)max);
6343             }
6344
6345             goto nest_check;
6346         }
6347     }
6348
6349     if (!ISMULT1(op)) {
6350         *flagp = flags;
6351         return(ret);
6352     }
6353
6354 #if 0                           /* Now runtime fix should be reliable. */
6355
6356     /* if this is reinstated, don't forget to put this back into perldiag:
6357
6358             =item Regexp *+ operand could be empty at {#} in regex m/%s/
6359
6360            (F) The part of the regexp subject to either the * or + quantifier
6361            could match an empty string. The {#} shows in the regular
6362            expression about where the problem was discovered.
6363
6364     */
6365
6366     if (!(flags&HASWIDTH) && op != '?')
6367       vFAIL("Regexp *+ operand could be empty");
6368 #endif
6369
6370     parse_start = RExC_parse;
6371     nextchar(pRExC_state);
6372
6373     *flagp = (op != '+') ? (WORST|SPSTART|HASWIDTH) : (WORST|HASWIDTH);
6374
6375     if (op == '*' && (flags&SIMPLE)) {
6376         reginsert(pRExC_state, STAR, ret, depth+1);
6377         ret->flags = 0;
6378         RExC_naughty += 4;
6379     }
6380     else if (op == '*') {
6381         min = 0;
6382         goto do_curly;
6383     }
6384     else if (op == '+' && (flags&SIMPLE)) {
6385         reginsert(pRExC_state, PLUS, ret, depth+1);
6386         ret->flags = 0;
6387         RExC_naughty += 3;
6388     }
6389     else if (op == '+') {
6390         min = 1;
6391         goto do_curly;
6392     }
6393     else if (op == '?') {
6394         min = 0; max = 1;
6395         goto do_curly;
6396     }
6397   nest_check:
6398     if (!SIZE_ONLY && !(flags&(HASWIDTH|POSTPONED)) && max > REG_INFTY/3 && ckWARN(WARN_REGEXP)) {
6399         vWARN3(RExC_parse,
6400                "%.*s matches null string many times",
6401                (int)(RExC_parse >= origparse ? RExC_parse - origparse : 0),
6402                origparse);
6403     }
6404
6405     if (RExC_parse < RExC_end && *RExC_parse == '?') {
6406         nextchar(pRExC_state);
6407         reginsert(pRExC_state, MINMOD, ret, depth+1);
6408         REGTAIL(pRExC_state, ret, ret + NODE_STEP_REGNODE);
6409     }
6410 #ifndef REG_ALLOW_MINMOD_SUSPEND
6411     else
6412 #endif
6413     if (RExC_parse < RExC_end && *RExC_parse == '+') {
6414         regnode *ender;
6415         nextchar(pRExC_state);
6416         ender = reg_node(pRExC_state, SUCCEED);
6417         REGTAIL(pRExC_state, ret, ender);
6418         reginsert(pRExC_state, SUSPEND, ret, depth+1);
6419         ret->flags = 0;
6420         ender = reg_node(pRExC_state, TAIL);
6421         REGTAIL(pRExC_state, ret, ender);
6422         /*ret= ender;*/
6423     }
6424
6425     if (RExC_parse < RExC_end && ISMULT2(RExC_parse)) {
6426         RExC_parse++;
6427         vFAIL("Nested quantifiers");
6428     }
6429
6430     return(ret);
6431 }
6432
6433
6434 /* reg_namedseq(pRExC_state,UVp)
6435    
6436    This is expected to be called by a parser routine that has 
6437    recognized'\N' and needs to handle the rest. RExC_parse is 
6438    expected to point at the first char following the N at the time
6439    of the call.
6440    
6441    If valuep is non-null then it is assumed that we are parsing inside 
6442    of a charclass definition and the first codepoint in the resolved
6443    string is returned via *valuep and the routine will return NULL. 
6444    In this mode if a multichar string is returned from the charnames 
6445    handler a warning will be issued, and only the first char in the 
6446    sequence will be examined. If the string returned is zero length
6447    then the value of *valuep is undefined and NON-NULL will 
6448    be returned to indicate failure. (This will NOT be a valid pointer 
6449    to a regnode.)
6450    
6451    If value is null then it is assumed that we are parsing normal text
6452    and inserts a new EXACT node into the program containing the resolved
6453    string and returns a pointer to the new node. If the string is 
6454    zerolength a NOTHING node is emitted.
6455    
6456    On success RExC_parse is set to the char following the endbrace.
6457    Parsing failures will generate a fatal errorvia vFAIL(...)
6458    
6459    NOTE: We cache all results from the charnames handler locally in 
6460    the RExC_charnames hash (created on first use) to prevent a charnames 
6461    handler from playing silly-buggers and returning a short string and 
6462    then a long string for a given pattern. Since the regexp program 
6463    size is calculated during an initial parse this would result
6464    in a buffer overrun so we cache to prevent the charname result from
6465    changing during the course of the parse.
6466    
6467  */
6468 STATIC regnode *
6469 S_reg_namedseq(pTHX_ RExC_state_t *pRExC_state, UV *valuep) 
6470 {
6471     char * name;        /* start of the content of the name */
6472     char * endbrace;    /* endbrace following the name */
6473     SV *sv_str = NULL;  
6474     SV *sv_name = NULL;
6475     STRLEN len; /* this has various purposes throughout the code */
6476     bool cached = 0; /* if this is true then we shouldn't refcount dev sv_str */
6477     regnode *ret = NULL;
6478     
6479     if (*RExC_parse != '{') {
6480         vFAIL("Missing braces on \\N{}");
6481     }
6482     name = RExC_parse+1;
6483     endbrace = strchr(RExC_parse, '}');
6484     if ( ! endbrace ) {
6485         RExC_parse++;
6486         vFAIL("Missing right brace on \\N{}");
6487     } 
6488     RExC_parse = endbrace + 1;  
6489     
6490     
6491     /* RExC_parse points at the beginning brace, 
6492        endbrace points at the last */
6493     if ( name[0]=='U' && name[1]=='+' ) {
6494         /* its a "Unicode hex" notation {U+89AB} */
6495         I32 fl = PERL_SCAN_ALLOW_UNDERSCORES
6496             | PERL_SCAN_DISALLOW_PREFIX
6497             | (SIZE_ONLY ? PERL_SCAN_SILENT_ILLDIGIT : 0);
6498         UV cp;
6499         char string;
6500         len = (STRLEN)(endbrace - name - 2);
6501         cp = grok_hex(name + 2, &len, &fl, NULL);
6502         if ( len != (STRLEN)(endbrace - name - 2) ) {
6503             cp = 0xFFFD;
6504         }    
6505         if (cp > 0xff)
6506             RExC_utf8 = 1;
6507         if ( valuep ) {
6508             *valuep = cp;
6509             return NULL;
6510         }
6511         string = (char)cp;
6512         sv_str= newSVpvn(&string, 1);
6513     } else {
6514         /* fetch the charnames handler for this scope */
6515         HV * const table = GvHV(PL_hintgv);
6516         SV **cvp= table ? 
6517             hv_fetchs(table, "charnames", FALSE) :
6518             NULL;
6519         SV *cv= cvp ? *cvp : NULL;
6520         HE *he_str;
6521         int count;
6522         /* create an SV with the name as argument */
6523         sv_name = newSVpvn(name, endbrace - name);
6524         
6525         if (!table || !(PL_hints & HINT_LOCALIZE_HH)) {
6526             vFAIL2("Constant(\\N{%s}) unknown: "
6527                   "(possibly a missing \"use charnames ...\")",
6528                   SvPVX(sv_name));
6529         }
6530         if (!cvp || !SvOK(*cvp)) { /* when $^H{charnames} = undef; */
6531             vFAIL2("Constant(\\N{%s}): "
6532                   "$^H{charnames} is not defined",SvPVX(sv_name));
6533         }
6534         
6535         
6536         
6537         if (!RExC_charnames) {
6538             /* make sure our cache is allocated */
6539             RExC_charnames = newHV();
6540             sv_2mortal((SV*)RExC_charnames);
6541         } 
6542             /* see if we have looked this one up before */
6543         he_str = hv_fetch_ent( RExC_charnames, sv_name, 0, 0 );
6544         if ( he_str ) {
6545             sv_str = HeVAL(he_str);
6546             cached = 1;
6547         } else {
6548             dSP ;
6549
6550             ENTER ;
6551             SAVETMPS ;
6552             PUSHMARK(SP) ;
6553             
6554             XPUSHs(sv_name);
6555             
6556             PUTBACK ;
6557             
6558             count= call_sv(cv, G_SCALAR);
6559             
6560             if (count == 1) { /* XXXX is this right? dmq */
6561                 sv_str = POPs;
6562                 SvREFCNT_inc_simple_void(sv_str);
6563             } 
6564             
6565             SPAGAIN ;
6566             PUTBACK ;
6567             FREETMPS ;
6568             LEAVE ;
6569             
6570             if ( !sv_str || !SvOK(sv_str) ) {
6571                 vFAIL2("Constant(\\N{%s}): Call to &{$^H{charnames}} "
6572                       "did not return a defined value",SvPVX(sv_name));
6573             }
6574             if (hv_store_ent( RExC_charnames, sv_name, sv_str, 0))
6575                 cached = 1;
6576         }
6577     }
6578     if (valuep) {
6579         char *p = SvPV(sv_str, len);
6580         if (len) {
6581             STRLEN numlen = 1;
6582             if ( SvUTF8(sv_str) ) {
6583                 *valuep = utf8_to_uvchr((U8*)p, &numlen);
6584                 if (*valuep > 0x7F)
6585                     RExC_utf8 = 1; 
6586                 /* XXXX
6587                   We have to turn on utf8 for high bit chars otherwise
6588                   we get failures with
6589                   
6590                    "ss" =~ /[\N{LATIN SMALL LETTER SHARP S}]/i
6591                    "SS" =~ /[\N{LATIN SMALL LETTER SHARP S}]/i
6592                 
6593                   This is different from what \x{} would do with the same
6594                   codepoint, where the condition is > 0xFF.
6595                   - dmq
6596                 */
6597                 
6598                 
6599             } else {
6600                 *valuep = (UV)*p;
6601                 /* warn if we havent used the whole string? */
6602             }
6603             if (numlen<len && SIZE_ONLY && ckWARN(WARN_REGEXP)) {
6604                 vWARN2(RExC_parse,
6605                     "Ignoring excess chars from \\N{%s} in character class",
6606                     SvPVX(sv_name)
6607                 );
6608             }        
6609         } else if (SIZE_ONLY && ckWARN(WARN_REGEXP)) {
6610             vWARN2(RExC_parse,
6611                     "Ignoring zero length \\N{%s} in character class",
6612                     SvPVX(sv_name)
6613                 );
6614         }
6615         if (sv_name)    
6616             SvREFCNT_dec(sv_name);    
6617         if (!cached)
6618             SvREFCNT_dec(sv_str);    
6619         return len ? NULL : (regnode *)&len;
6620     } else if(SvCUR(sv_str)) {     
6621         
6622         char *s; 
6623         char *p, *pend;        
6624         STRLEN charlen = 1;
6625 #ifdef DEBUGGING
6626         char * parse_start = name-3; /* needed for the offsets */
6627 #endif
6628         GET_RE_DEBUG_FLAGS_DECL;     /* needed for the offsets */
6629         
6630         ret = reg_node(pRExC_state,
6631             (U8)(FOLD ? (LOC ? EXACTFL : EXACTF) : EXACT));
6632         s= STRING(ret);
6633         
6634         if ( RExC_utf8 && !SvUTF8(sv_str) ) {
6635             sv_utf8_upgrade(sv_str);
6636         } else if ( !RExC_utf8 && SvUTF8(sv_str) ) {
6637             RExC_utf8= 1;
6638         }
6639         
6640         p = SvPV(sv_str, len);
6641         pend = p + len;
6642         /* len is the length written, charlen is the size the char read */
6643         for ( len = 0; p < pend; p += charlen ) {
6644             if (UTF) {
6645                 UV uvc = utf8_to_uvchr((U8*)p, &charlen);
6646                 if (FOLD) {
6647                     STRLEN foldlen,numlen;
6648                     U8 tmpbuf[UTF8_MAXBYTES_CASE+1], *foldbuf;
6649                     uvc = toFOLD_uni(uvc, tmpbuf, &foldlen);
6650                     /* Emit all the Unicode characters. */
6651                     
6652                     for (foldbuf = tmpbuf;
6653                         foldlen;
6654                         foldlen -= numlen) 
6655                     {
6656                         uvc = utf8_to_uvchr(foldbuf, &numlen);
6657                         if (numlen > 0) {
6658                             const STRLEN unilen = reguni(pRExC_state, uvc, s);
6659                             s       += unilen;
6660                             len     += unilen;
6661                             /* In EBCDIC the numlen
6662                             * and unilen can differ. */
6663                             foldbuf += numlen;
6664                             if (numlen >= foldlen)
6665                                 break;
6666                         }
6667                         else
6668                             break; /* "Can't happen." */
6669                     }                          
6670                 } else {
6671                     const STRLEN unilen = reguni(pRExC_state, uvc, s);
6672                     if (unilen > 0) {
6673                        s   += unilen;
6674                        len += unilen;
6675                     }
6676                 }
6677             } else {
6678                 len++;
6679                 REGC(*p, s++);
6680             }
6681         }
6682         if (SIZE_ONLY) {
6683             RExC_size += STR_SZ(len);
6684         } else {
6685             STR_LEN(ret) = len;
6686             RExC_emit += STR_SZ(len);
6687         }
6688         Set_Node_Cur_Length(ret); /* MJD */
6689         RExC_parse--; 
6690         nextchar(pRExC_state);
6691     } else {
6692         ret = reg_node(pRExC_state,NOTHING);
6693     }
6694     if (!cached) {
6695         SvREFCNT_dec(sv_str);
6696     }
6697     if (sv_name) {
6698         SvREFCNT_dec(sv_name); 
6699     }
6700     return ret;
6701
6702 }
6703
6704
6705 /*
6706  * reg_recode
6707  *
6708  * It returns the code point in utf8 for the value in *encp.
6709  *    value: a code value in the source encoding
6710  *    encp:  a pointer to an Encode object
6711  *
6712  * If the result from Encode is not a single character,
6713  * it returns U+FFFD (Replacement character) and sets *encp to NULL.
6714  */
6715 STATIC UV
6716 S_reg_recode(pTHX_ const char value, SV **encp)
6717 {
6718     STRLEN numlen = 1;
6719     SV * const sv = sv_2mortal(newSVpvn(&value, numlen));
6720     const char * const s = *encp ? sv_recode_to_utf8(sv, *encp) : SvPVX(sv);
6721     const STRLEN newlen = SvCUR(sv);
6722     UV uv = UNICODE_REPLACEMENT;
6723
6724     if (newlen)
6725         uv = SvUTF8(sv)
6726              ? utf8n_to_uvchr((U8*)s, newlen, &numlen, UTF8_ALLOW_DEFAULT)
6727              : *(U8*)s;
6728
6729     if (!newlen || numlen != newlen) {
6730         uv = UNICODE_REPLACEMENT;
6731         *encp = NULL;
6732     }
6733     return uv;
6734 }
6735
6736
6737 /*
6738  - regatom - the lowest level
6739
6740    Try to identify anything special at the start of the pattern. If there
6741    is, then handle it as required. This may involve generating a single regop,
6742    such as for an assertion; or it may involve recursing, such as to
6743    handle a () structure.
6744
6745    If the string doesn't start with something special then we gobble up
6746    as much literal text as we can.
6747
6748    Once we have been able to handle whatever type of thing started the
6749    sequence, we return.
6750
6751    Note: we have to be careful with escapes, as they can be both literal
6752    and special, and in the case of \10 and friends can either, depending
6753    on context. Specifically there are two seperate switches for handling
6754    escape sequences, with the one for handling literal escapes requiring
6755    a dummy entry for all of the special escapes that are actually handled
6756    by the other.
6757 */
6758
6759 STATIC regnode *
6760 S_regatom(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth)
6761 {
6762     dVAR;
6763     register regnode *ret = NULL;
6764     I32 flags;
6765     char *parse_start = RExC_parse;
6766     GET_RE_DEBUG_FLAGS_DECL;
6767     DEBUG_PARSE("atom");
6768     *flagp = WORST;             /* Tentatively. */
6769
6770
6771 tryagain:
6772     switch ((U8)*RExC_parse) {
6773     case '^':
6774         RExC_seen_zerolen++;
6775         nextchar(pRExC_state);
6776         if (RExC_flags & RXf_PMf_MULTILINE)
6777             ret = reg_node(pRExC_state, MBOL);
6778         else if (RExC_flags & RXf_PMf_SINGLELINE)
6779             ret = reg_node(pRExC_state, SBOL);
6780         else
6781             ret = reg_node(pRExC_state, BOL);
6782         Set_Node_Length(ret, 1); /* MJD */
6783         break;
6784     case '$':
6785         nextchar(pRExC_state);
6786         if (*RExC_parse)
6787             RExC_seen_zerolen++;
6788         if (RExC_flags & RXf_PMf_MULTILINE)
6789             ret = reg_node(pRExC_state, MEOL);
6790         else if (RExC_flags & RXf_PMf_SINGLELINE)
6791             ret = reg_node(pRExC_state, SEOL);
6792         else
6793             ret = reg_node(pRExC_state, EOL);
6794         Set_Node_Length(ret, 1); /* MJD */
6795         break;
6796     case '.':
6797         nextchar(pRExC_state);
6798         if (RExC_flags & RXf_PMf_SINGLELINE)
6799             ret = reg_node(pRExC_state, SANY);
6800         else
6801             ret = reg_node(pRExC_state, REG_ANY);
6802         *flagp |= HASWIDTH|SIMPLE;
6803         RExC_naughty++;
6804         Set_Node_Length(ret, 1); /* MJD */
6805         break;
6806     case '[':
6807     {
6808         char * const oregcomp_parse = ++RExC_parse;
6809         ret = regclass(pRExC_state,depth+1);
6810         if (*RExC_parse != ']') {
6811             RExC_parse = oregcomp_parse;
6812             vFAIL("Unmatched [");
6813         }
6814         nextchar(pRExC_state);
6815         *flagp |= HASWIDTH|SIMPLE;
6816         Set_Node_Length(ret, RExC_parse - oregcomp_parse + 1); /* MJD */
6817         break;
6818     }
6819     case '(':
6820         nextchar(pRExC_state);
6821         ret = reg(pRExC_state, 1, &flags,depth+1);
6822         if (ret == NULL) {
6823                 if (flags & TRYAGAIN) {
6824                     if (RExC_parse == RExC_end) {
6825                          /* Make parent create an empty node if needed. */
6826                         *flagp |= TRYAGAIN;
6827                         return(NULL);
6828                     }
6829                     goto tryagain;
6830                 }
6831                 return(NULL);
6832         }
6833         *flagp |= flags&(HASWIDTH|SPSTART|SIMPLE|POSTPONED);
6834         break;
6835     case '|':
6836     case ')':
6837         if (flags & TRYAGAIN) {
6838             *flagp |= TRYAGAIN;
6839             return NULL;
6840         }
6841         vFAIL("Internal urp");
6842                                 /* Supposed to be caught earlier. */
6843         break;
6844     case '{':
6845         if (!regcurly(RExC_parse)) {
6846             RExC_parse++;
6847             goto defchar;
6848         }
6849         /* FALL THROUGH */
6850     case '?':
6851     case '+':
6852     case '*':
6853         RExC_parse++;
6854         vFAIL("Quantifier follows nothing");
6855         break;
6856     case 0xDF:
6857     case 0xC3:
6858     case 0xCE:
6859         if (!LOC && FOLD) {
6860             U32 len,cp;
6861             len=0; /* silence a spurious compiler warning */
6862             if ((cp = what_len_TRICKYFOLD_safe(RExC_parse,RExC_end,UTF,len))) {
6863                 *flagp |= HASWIDTH; /* could be SIMPLE too, but needs a handler in regexec.regrepeat */
6864                 RExC_parse+=len-1; /* we get one from nextchar() as well. :-( */
6865                 ret = reganode(pRExC_state, FOLDCHAR, cp);
6866                 Set_Node_Length(ret, 1); /* MJD */
6867                 nextchar(pRExC_state); /* kill whitespace under /x */
6868                 return ret;
6869             }
6870         }
6871         goto outer_default;
6872     case '\\':
6873         /* Special Escapes
6874
6875            This switch handles escape sequences that resolve to some kind
6876            of special regop and not to literal text. Escape sequnces that
6877            resolve to literal text are handled below in the switch marked
6878            "Literal Escapes".
6879
6880            Every entry in this switch *must* have a corresponding entry
6881            in the literal escape switch. However, the opposite is not
6882            required, as the default for this switch is to jump to the
6883            literal text handling code.
6884         */
6885         switch (*++RExC_parse) {
6886         /* Special Escapes */
6887         case 'A':
6888             RExC_seen_zerolen++;
6889             ret = reg_node(pRExC_state, SBOL);
6890             *flagp |= SIMPLE;
6891             goto finish_meta_pat;
6892         case 'G':
6893             ret = reg_node(pRExC_state, GPOS);
6894             RExC_seen |= REG_SEEN_GPOS;
6895             *flagp |= SIMPLE;
6896             goto finish_meta_pat;
6897         case 'K':
6898             RExC_seen_zerolen++;
6899             ret = reg_node(pRExC_state, KEEPS);
6900             *flagp |= SIMPLE;
6901             goto finish_meta_pat;
6902         case 'Z':
6903             ret = reg_node(pRExC_state, SEOL);
6904             *flagp |= SIMPLE;
6905             RExC_seen_zerolen++;                /* Do not optimize RE away */
6906             goto finish_meta_pat;
6907         case 'z':
6908             ret = reg_node(pRExC_state, EOS);
6909             *flagp |= SIMPLE;
6910             RExC_seen_zerolen++;                /* Do not optimize RE away */
6911             goto finish_meta_pat;
6912         case 'C':
6913             ret = reg_node(pRExC_state, CANY);
6914             RExC_seen |= REG_SEEN_CANY;
6915             *flagp |= HASWIDTH|SIMPLE;
6916             goto finish_meta_pat;
6917         case 'X':
6918             ret = reg_node(pRExC_state, CLUMP);
6919             *flagp |= HASWIDTH;
6920             goto finish_meta_pat;
6921         case 'w':
6922             ret = reg_node(pRExC_state, (U8)(LOC ? ALNUML     : ALNUM));
6923             *flagp |= HASWIDTH|SIMPLE;
6924             goto finish_meta_pat;
6925         case 'W':
6926             ret = reg_node(pRExC_state, (U8)(LOC ? NALNUML    : NALNUM));
6927             *flagp |= HASWIDTH|SIMPLE;
6928             goto finish_meta_pat;
6929         case 'b':
6930             RExC_seen_zerolen++;
6931             RExC_seen |= REG_SEEN_LOOKBEHIND;
6932             ret = reg_node(pRExC_state, (U8)(LOC ? BOUNDL     : BOUND));
6933             *flagp |= SIMPLE;
6934             goto finish_meta_pat;
6935         case 'B':
6936             RExC_seen_zerolen++;
6937             RExC_seen |= REG_SEEN_LOOKBEHIND;
6938             ret = reg_node(pRExC_state, (U8)(LOC ? NBOUNDL    : NBOUND));
6939             *flagp |= SIMPLE;
6940             goto finish_meta_pat;
6941         case 's':
6942             ret = reg_node(pRExC_state, (U8)(LOC ? SPACEL     : SPACE));
6943             *flagp |= HASWIDTH|SIMPLE;
6944             goto finish_meta_pat;
6945         case 'S':
6946             ret = reg_node(pRExC_state, (U8)(LOC ? NSPACEL    : NSPACE));
6947             *flagp |= HASWIDTH|SIMPLE;
6948             goto finish_meta_pat;
6949         case 'd':
6950             ret = reg_node(pRExC_state, DIGIT);
6951             *flagp |= HASWIDTH|SIMPLE;
6952             goto finish_meta_pat;
6953         case 'D':
6954             ret = reg_node(pRExC_state, NDIGIT);
6955             *flagp |= HASWIDTH|SIMPLE;
6956             goto finish_meta_pat;
6957         case 'R':
6958             ret = reg_node(pRExC_state, LNBREAK);
6959             *flagp |= HASWIDTH|SIMPLE;
6960             goto finish_meta_pat;
6961         case 'h':
6962             ret = reg_node(pRExC_state, HORIZWS);
6963             *flagp |= HASWIDTH|SIMPLE;
6964             goto finish_meta_pat;
6965         case 'H':
6966             ret = reg_node(pRExC_state, NHORIZWS);
6967             *flagp |= HASWIDTH|SIMPLE;
6968             goto finish_meta_pat;
6969         case 'v':
6970             ret = reg_node(pRExC_state, VERTWS);
6971             *flagp |= HASWIDTH|SIMPLE;
6972             goto finish_meta_pat;
6973         case 'V':
6974             ret = reg_node(pRExC_state, NVERTWS);
6975             *flagp |= HASWIDTH|SIMPLE;
6976          finish_meta_pat:           
6977             nextchar(pRExC_state);
6978             Set_Node_Length(ret, 2); /* MJD */
6979             break;          
6980         case 'p':
6981         case 'P':
6982             {   
6983                 char* const oldregxend = RExC_end;
6984 #ifdef DEBUGGING
6985                 char* parse_start = RExC_parse - 2;
6986 #endif
6987
6988                 if (RExC_parse[1] == '{') {
6989                   /* a lovely hack--pretend we saw [\pX] instead */
6990                     RExC_end = strchr(RExC_parse, '}');
6991                     if (!RExC_end) {
6992                         const U8 c = (U8)*RExC_parse;
6993                         RExC_parse += 2;
6994                         RExC_end = oldregxend;
6995                         vFAIL2("Missing right brace on \\%c{}", c);
6996                     }
6997                     RExC_end++;
6998                 }
6999                 else {
7000                     RExC_end = RExC_parse + 2;
7001                     if (RExC_end > oldregxend)
7002                         RExC_end = oldregxend;
7003                 }
7004                 RExC_parse--;
7005
7006                 ret = regclass(pRExC_state,depth+1);
7007
7008                 RExC_end = oldregxend;
7009                 RExC_parse--;
7010
7011                 Set_Node_Offset(ret, parse_start + 2);
7012                 Set_Node_Cur_Length(ret);
7013                 nextchar(pRExC_state);
7014                 *flagp |= HASWIDTH|SIMPLE;
7015             }
7016             break;
7017         case 'N': 
7018             /* Handle \N{NAME} here and not below because it can be 
7019             multicharacter. join_exact() will join them up later on. 
7020             Also this makes sure that things like /\N{BLAH}+/ and 
7021             \N{BLAH} being multi char Just Happen. dmq*/
7022             ++RExC_parse;
7023             ret= reg_namedseq(pRExC_state, NULL); 
7024             break;
7025         case 'k':    /* Handle \k<NAME> and \k'NAME' */
7026         parse_named_seq:
7027         {   
7028             char ch= RExC_parse[1];         
7029             if (ch != '<' && ch != '\'' && ch != '{') {
7030                 RExC_parse++;
7031                 vFAIL2("Sequence %.2s... not terminated",parse_start);
7032             } else {
7033                 /* this pretty much dupes the code for (?P=...) in reg(), if
7034                    you change this make sure you change that */
7035                 char* name_start = (RExC_parse += 2);
7036                 U32 num = 0;
7037                 SV *sv_dat = reg_scan_name(pRExC_state,
7038                     SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
7039                 ch= (ch == '<') ? '>' : (ch == '{') ? '}' : '\'';
7040                 if (RExC_parse == name_start || *RExC_parse != ch)
7041                     vFAIL2("Sequence %.3s... not terminated",parse_start);
7042
7043                 if (!SIZE_ONLY) {
7044                     num = add_data( pRExC_state, 1, "S" );
7045                     RExC_rxi->data->data[num]=(void*)sv_dat;
7046                     SvREFCNT_inc_simple_void(sv_dat);
7047                 }
7048
7049                 RExC_sawback = 1;
7050                 ret = reganode(pRExC_state,
7051                            (U8)(FOLD ? (LOC ? NREFFL : NREFF) : NREF),
7052                            num);
7053                 *flagp |= HASWIDTH;
7054
7055                 /* override incorrect value set in reganode MJD */
7056                 Set_Node_Offset(ret, parse_start+1);
7057                 Set_Node_Cur_Length(ret); /* MJD */
7058                 nextchar(pRExC_state);
7059
7060             }
7061             break;
7062         }
7063         case 'g': 
7064         case '1': case '2': case '3': case '4':
7065         case '5': case '6': case '7': case '8': case '9':
7066             {
7067                 I32 num;
7068                 bool isg = *RExC_parse == 'g';
7069                 bool isrel = 0; 
7070                 bool hasbrace = 0;
7071                 if (isg) {
7072                     RExC_parse++;
7073                     if (*RExC_parse == '{') {
7074                         RExC_parse++;
7075                         hasbrace = 1;
7076                     }
7077                     if (*RExC_parse == '-') {
7078                         RExC_parse++;
7079                         isrel = 1;
7080                     }
7081                     if (hasbrace && !isDIGIT(*RExC_parse)) {
7082                         if (isrel) RExC_parse--;
7083                         RExC_parse -= 2;                            
7084                         goto parse_named_seq;
7085                 }   }
7086                 num = atoi(RExC_parse);
7087                 if (isg && num == 0)
7088                     vFAIL("Reference to invalid group 0");
7089                 if (isrel) {
7090                     num = RExC_npar - num;
7091                     if (num < 1)
7092                         vFAIL("Reference to nonexistent or unclosed group");
7093                 }
7094                 if (!isg && num > 9 && num >= RExC_npar)
7095                     goto defchar;
7096                 else {
7097                     char * const parse_start = RExC_parse - 1; /* MJD */
7098                     while (isDIGIT(*RExC_parse))
7099                         RExC_parse++;
7100                     if (parse_start == RExC_parse - 1) 
7101                         vFAIL("Unterminated \\g... pattern");
7102                     if (hasbrace) {
7103                         if (*RExC_parse != '}') 
7104                             vFAIL("Unterminated \\g{...} pattern");
7105                         RExC_parse++;
7106                     }    
7107                     if (!SIZE_ONLY) {
7108                         if (num > (I32)RExC_rx->nparens)
7109                             vFAIL("Reference to nonexistent group");
7110                     }
7111                     RExC_sawback = 1;
7112                     ret = reganode(pRExC_state,
7113                                    (U8)(FOLD ? (LOC ? REFFL : REFF) : REF),
7114                                    num);
7115                     *flagp |= HASWIDTH;
7116
7117                     /* override incorrect value set in reganode MJD */
7118                     Set_Node_Offset(ret, parse_start+1);
7119                     Set_Node_Cur_Length(ret); /* MJD */
7120                     RExC_parse--;
7121                     nextchar(pRExC_state);
7122                 }
7123             }
7124             break;
7125         case '\0':
7126             if (RExC_parse >= RExC_end)
7127                 FAIL("Trailing \\");
7128             /* FALL THROUGH */
7129         default:
7130             /* Do not generate "unrecognized" warnings here, we fall
7131                back into the quick-grab loop below */
7132             parse_start--;
7133             goto defchar;
7134         }
7135         break;
7136
7137     case '#':
7138         if (RExC_flags & RXf_PMf_EXTENDED) {
7139             if ( reg_skipcomment( pRExC_state ) )
7140                 goto tryagain;
7141         }
7142         /* FALL THROUGH */
7143
7144     default:
7145         outer_default:{
7146             register STRLEN len;
7147             register UV ender;
7148             register char *p;
7149             char *s;
7150             STRLEN foldlen;
7151             U8 tmpbuf[UTF8_MAXBYTES_CASE+1], *foldbuf;
7152
7153             parse_start = RExC_parse - 1;
7154
7155             RExC_parse++;
7156
7157         defchar:
7158             ender = 0;
7159             ret = reg_node(pRExC_state,
7160                            (U8)(FOLD ? (LOC ? EXACTFL : EXACTF) : EXACT));
7161             s = STRING(ret);
7162             for (len = 0, p = RExC_parse - 1;
7163               len < 127 && p < RExC_end;
7164               len++)
7165             {
7166                 char * const oldp = p;
7167
7168                 if (RExC_flags & RXf_PMf_EXTENDED)
7169                     p = regwhite( pRExC_state, p );
7170                 switch ((U8)*p) {
7171                 case 0xDF:
7172                 case 0xC3:
7173                 case 0xCE:
7174                            if (LOC || !FOLD || !is_TRICKYFOLD_safe(p,RExC_end,UTF))
7175                                 goto normal_default;
7176                 case '^':
7177                 case '$':
7178                 case '.':
7179                 case '[':
7180                 case '(':
7181                 case ')':
7182                 case '|':
7183                     goto loopdone;
7184                 case '\\':
7185                     /* Literal Escapes Switch
7186
7187                        This switch is meant to handle escape sequences that
7188                        resolve to a literal character.
7189
7190                        Every escape sequence that represents something
7191                        else, like an assertion or a char class, is handled
7192                        in the switch marked 'Special Escapes' above in this
7193                        routine, but also has an entry here as anything that
7194                        isn't explicitly mentioned here will be treated as
7195                        an unescaped equivalent literal.
7196                     */
7197
7198                     switch (*++p) {
7199                     /* These are all the special escapes. */
7200                     case 'A':             /* Start assertion */
7201                     case 'b': case 'B':   /* Word-boundary assertion*/
7202                     case 'C':             /* Single char !DANGEROUS! */
7203                     case 'd': case 'D':   /* digit class */
7204                     case 'g': case 'G':   /* generic-backref, pos assertion */
7205                     case 'h': case 'H':   /* HORIZWS */
7206                     case 'k': case 'K':   /* named backref, keep marker */
7207                     case 'N':             /* named char sequence */
7208                     case 'p': case 'P':   /* Unicode property */
7209                               case 'R':   /* LNBREAK */
7210                     case 's': case 'S':   /* space class */
7211                     case 'v': case 'V':   /* VERTWS */
7212                     case 'w': case 'W':   /* word class */
7213                     case 'X':             /* eXtended Unicode "combining character sequence" */
7214                     case 'z': case 'Z':   /* End of line/string assertion */
7215                         --p;
7216                         goto loopdone;
7217
7218                     /* Anything after here is an escape that resolves to a
7219                        literal. (Except digits, which may or may not)
7220                      */
7221                     case 'n':
7222                         ender = '\n';
7223                         p++;
7224                         break;
7225                     case 'r':
7226                         ender = '\r';
7227                         p++;
7228                         break;
7229                     case 't':
7230                         ender = '\t';
7231                         p++;
7232                         break;
7233                     case 'f':
7234                         ender = '\f';
7235                         p++;
7236                         break;
7237                     case 'e':
7238                           ender = ASCII_TO_NATIVE('\033');
7239                         p++;
7240                         break;
7241                     case 'a':
7242                           ender = ASCII_TO_NATIVE('\007');
7243                         p++;
7244                         break;
7245                     case 'x':
7246                         if (*++p == '{') {
7247                             char* const e = strchr(p, '}');
7248         
7249                             if (!e) {
7250                                 RExC_parse = p + 1;
7251                                 vFAIL("Missing right brace on \\x{}");
7252                             }
7253                             else {
7254                                 I32 flags = PERL_SCAN_ALLOW_UNDERSCORES
7255                                     | PERL_SCAN_DISALLOW_PREFIX;
7256                                 STRLEN numlen = e - p - 1;
7257                                 ender = grok_hex(p + 1, &numlen, &flags, NULL);
7258                                 if (ender > 0xff)
7259                                     RExC_utf8 = 1;
7260                                 p = e + 1;
7261                             }
7262                         }
7263                         else {
7264                             I32 flags = PERL_SCAN_DISALLOW_PREFIX;
7265                             STRLEN numlen = 2;
7266                             ender = grok_hex(p, &numlen, &flags, NULL);
7267                             p += numlen;
7268                         }
7269                         if (PL_encoding && ender < 0x100)
7270                             goto recode_encoding;
7271                         break;
7272                     case 'c':
7273                         p++;
7274                         ender = UCHARAT(p++);
7275                         ender = toCTRL(ender);
7276                         break;
7277                     case '0': case '1': case '2': case '3':case '4':
7278                     case '5': case '6': case '7': case '8':case '9':
7279                         if (*p == '0' ||
7280                           (isDIGIT(p[1]) && atoi(p) >= RExC_npar) ) {
7281                             I32 flags = 0;
7282                             STRLEN numlen = 3;
7283                             ender = grok_oct(p, &numlen, &flags, NULL);
7284                             p += numlen;
7285                         }
7286                         else {
7287                             --p;
7288                             goto loopdone;
7289                         }
7290                         if (PL_encoding && ender < 0x100)
7291                             goto recode_encoding;
7292                         break;
7293                     recode_encoding:
7294                         {
7295                             SV* enc = PL_encoding;
7296                             ender = reg_recode((const char)(U8)ender, &enc);
7297                             if (!enc && SIZE_ONLY && ckWARN(WARN_REGEXP))
7298                                 vWARN(p, "Invalid escape in the specified encoding");
7299                             RExC_utf8 = 1;
7300                         }
7301                         break;
7302                     case '\0':
7303                         if (p >= RExC_end)
7304                             FAIL("Trailing \\");
7305                         /* FALL THROUGH */
7306                     default:
7307                         if (!SIZE_ONLY&& isALPHA(*p) && ckWARN(WARN_REGEXP))
7308                             vWARN2(p + 1, "Unrecognized escape \\%c passed through", UCHARAT(p));
7309                         goto normal_default;
7310                     }
7311                     break;
7312                 default:
7313                   normal_default:
7314                     if (UTF8_IS_START(*p) && UTF) {
7315                         STRLEN numlen;
7316                         ender = utf8n_to_uvchr((U8*)p, RExC_end - p,
7317                                                &numlen, UTF8_ALLOW_DEFAULT);
7318                         p += numlen;
7319                     }
7320                     else
7321                         ender = *p++;
7322                     break;
7323                 }
7324                 if ( RExC_flags & RXf_PMf_EXTENDED)
7325                     p = regwhite( pRExC_state, p );
7326                 if (UTF && FOLD) {
7327                     /* Prime the casefolded buffer. */
7328                     ender = toFOLD_uni(ender, tmpbuf, &foldlen);
7329                 }
7330                 if (p < RExC_end && ISMULT2(p)) { /* Back off on ?+*. */
7331                     if (len)
7332                         p = oldp;
7333                     else if (UTF) {
7334                          if (FOLD) {
7335                               /* Emit all the Unicode characters. */
7336                               STRLEN numlen;
7337                               for (foldbuf = tmpbuf;
7338                                    foldlen;
7339                                    foldlen -= numlen) {
7340                                    ender = utf8_to_uvchr(foldbuf, &numlen);
7341                                    if (numlen > 0) {
7342                                         const STRLEN unilen = reguni(pRExC_state, ender, s);
7343                                         s       += unilen;
7344                                         len     += unilen;
7345                                         /* In EBCDIC the numlen
7346                                          * and unilen can differ. */
7347                                         foldbuf += numlen;
7348                                         if (numlen >= foldlen)
7349                                              break;
7350                                    }
7351                                    else
7352                                         break; /* "Can't happen." */
7353                               }
7354                          }
7355                          else {
7356                               const STRLEN unilen = reguni(pRExC_state, ender, s);
7357                               if (unilen > 0) {
7358                                    s   += unilen;
7359                                    len += unilen;
7360                               }
7361                          }
7362                     }
7363                     else {
7364                         len++;
7365                         REGC((char)ender, s++);
7366                     }
7367                     break;
7368                 }
7369                 if (UTF) {
7370                      if (FOLD) {
7371                           /* Emit all the Unicode characters. */
7372                           STRLEN numlen;
7373                           for (foldbuf = tmpbuf;
7374                                foldlen;
7375                                foldlen -= numlen) {
7376                                ender = utf8_to_uvchr(foldbuf, &numlen);
7377                                if (numlen > 0) {
7378                                     const STRLEN unilen = reguni(pRExC_state, ender, s);
7379                                     len     += unilen;
7380                                     s       += unilen;
7381                                     /* In EBCDIC the numlen
7382                                      * and unilen can differ. */
7383                                     foldbuf += numlen;
7384                                     if (numlen >= foldlen)
7385                                          break;
7386                                }
7387                                else
7388                                     break;
7389                           }
7390                      }
7391                      else {
7392                           const STRLEN unilen = reguni(pRExC_state, ender, s);
7393                           if (unilen > 0) {
7394                                s   += unilen;
7395                                len += unilen;
7396                           }
7397                      }
7398                      len--;
7399                 }
7400                 else
7401                     REGC((char)ender, s++);
7402             }
7403         loopdone:
7404             RExC_parse = p - 1;
7405             Set_Node_Cur_Length(ret); /* MJD */
7406             nextchar(pRExC_state);
7407             {
7408                 /* len is STRLEN which is unsigned, need to copy to signed */
7409                 IV iv = len;
7410                 if (iv < 0)
7411                     vFAIL("Internal disaster");
7412             }
7413             if (len > 0)
7414                 *flagp |= HASWIDTH;
7415             if (len == 1 && UNI_IS_INVARIANT(ender))
7416                 *flagp |= SIMPLE;
7417                 
7418             if (SIZE_ONLY)
7419                 RExC_size += STR_SZ(len);
7420             else {
7421                 STR_LEN(ret) = len;
7422                 RExC_emit += STR_SZ(len);
7423             }
7424         }
7425         break;
7426     }
7427
7428     return(ret);
7429 }
7430
7431 STATIC char *
7432 S_regwhite( RExC_state_t *pRExC_state, char *p )
7433 {
7434     const char *e = RExC_end;
7435     while (p < e) {
7436         if (isSPACE(*p))
7437             ++p;
7438         else if (*p == '#') {
7439             bool ended = 0;
7440             do {
7441                 if (*p++ == '\n') {
7442                     ended = 1;
7443                     break;
7444                 }
7445             } while (p < e);
7446             if (!ended)
7447                 RExC_seen |= REG_SEEN_RUN_ON_COMMENT;
7448         }
7449         else
7450             break;
7451     }
7452     return p;
7453 }
7454
7455 /* Parse POSIX character classes: [[:foo:]], [[=foo=]], [[.foo.]].
7456    Character classes ([:foo:]) can also be negated ([:^foo:]).
7457    Returns a named class id (ANYOF_XXX) if successful, -1 otherwise.
7458    Equivalence classes ([=foo=]) and composites ([.foo.]) are parsed,
7459    but trigger failures because they are currently unimplemented. */
7460
7461 #define POSIXCC_DONE(c)   ((c) == ':')
7462 #define POSIXCC_NOTYET(c) ((c) == '=' || (c) == '.')
7463 #define POSIXCC(c) (POSIXCC_DONE(c) || POSIXCC_NOTYET(c))
7464
7465 STATIC I32
7466 S_regpposixcc(pTHX_ RExC_state_t *pRExC_state, I32 value)
7467 {
7468     dVAR;
7469     I32 namedclass = OOB_NAMEDCLASS;
7470
7471     if (value == '[' && RExC_parse + 1 < RExC_end &&
7472         /* I smell either [: or [= or [. -- POSIX has been here, right? */
7473         POSIXCC(UCHARAT(RExC_parse))) {
7474         const char c = UCHARAT(RExC_parse);
7475         char* const s = RExC_parse++;
7476         
7477         while (RExC_parse < RExC_end && UCHARAT(RExC_parse) != c)
7478             RExC_parse++;
7479         if (RExC_parse == RExC_end)
7480             /* Grandfather lone [:, [=, [. */
7481             RExC_parse = s;
7482         else {
7483             const char* const t = RExC_parse++; /* skip over the c */
7484             assert(*t == c);
7485
7486             if (UCHARAT(RExC_parse) == ']') {
7487                 const char *posixcc = s + 1;
7488                 RExC_parse++; /* skip over the ending ] */
7489
7490                 if (*s == ':') {
7491                     const I32 complement = *posixcc == '^' ? *posixcc++ : 0;
7492                     const I32 skip = t - posixcc;
7493
7494                     /* Initially switch on the length of the name.  */
7495                     switch (skip) {
7496                     case 4:
7497                         if (memEQ(posixcc, "word", 4)) /* this is not POSIX, this is the Perl \w */
7498                             namedclass = complement ? ANYOF_NALNUM : ANYOF_ALNUM;
7499                         break;
7500                     case 5:
7501                         /* Names all of length 5.  */
7502                         /* alnum alpha ascii blank cntrl digit graph lower
7503                            print punct space upper  */
7504                         /* Offset 4 gives the best switch position.  */
7505                         switch (posixcc[4]) {
7506                         case 'a':
7507                             if (memEQ(posixcc, "alph", 4)) /* alpha */
7508                                 namedclass = complement ? ANYOF_NALPHA : ANYOF_ALPHA;
7509                             break;
7510                         case 'e':
7511                             if (memEQ(posixcc, "spac", 4)) /* space */
7512                                 namedclass = complement ? ANYOF_NPSXSPC : ANYOF_PSXSPC;
7513                             break;
7514                         case 'h':
7515                             if (memEQ(posixcc, "grap", 4)) /* graph */
7516                                 namedclass = complement ? ANYOF_NGRAPH : ANYOF_GRAPH;
7517                             break;
7518                         case 'i':
7519                             if (memEQ(posixcc, "asci", 4)) /* ascii */
7520                                 namedclass = complement ? ANYOF_NASCII : ANYOF_ASCII;
7521                             break;
7522                         case 'k':
7523                             if (memEQ(posixcc, "blan", 4)) /* blank */
7524                                 namedclass = complement ? ANYOF_NBLANK : ANYOF_BLANK;
7525                             break;
7526                         case 'l':
7527                             if (memEQ(posixcc, "cntr", 4)) /* cntrl */
7528                                 namedclass = complement ? ANYOF_NCNTRL : ANYOF_CNTRL;
7529                             break;
7530                         case 'm':
7531                             if (memEQ(posixcc, "alnu", 4)) /* alnum */
7532                                 namedclass = complement ? ANYOF_NALNUMC : ANYOF_ALNUMC;
7533                             break;
7534                         case 'r':
7535                             if (memEQ(posixcc, "lowe", 4)) /* lower */
7536                                 namedclass = complement ? ANYOF_NLOWER : ANYOF_LOWER;
7537                             else if (memEQ(posixcc, "uppe", 4)) /* upper */
7538                                 namedclass = complement ? ANYOF_NUPPER : ANYOF_UPPER;
7539                             break;
7540                         case 't':
7541                             if (memEQ(posixcc, "digi", 4)) /* digit */
7542                                 namedclass = complement ? ANYOF_NDIGIT : ANYOF_DIGIT;
7543                             else if (memEQ(posixcc, "prin", 4)) /* print */
7544                                 namedclass = complement ? ANYOF_NPRINT : ANYOF_PRINT;
7545                             else if (memEQ(posixcc, "punc", 4)) /* punct */
7546                                 namedclass = complement ? ANYOF_NPUNCT : ANYOF_PUNCT;
7547                             break;
7548                         }
7549                         break;
7550                     case 6:
7551                         if (memEQ(posixcc, "xdigit", 6))
7552                             namedclass = complement ? ANYOF_NXDIGIT : ANYOF_XDIGIT;
7553                         break;
7554                     }
7555
7556                     if (namedclass == OOB_NAMEDCLASS)
7557                         Simple_vFAIL3("POSIX class [:%.*s:] unknown",
7558                                       t - s - 1, s + 1);
7559                     assert (posixcc[skip] == ':');
7560                     assert (posixcc[skip+1] == ']');
7561                 } else if (!SIZE_ONLY) {
7562                     /* [[=foo=]] and [[.foo.]] are still future. */
7563
7564                     /* adjust RExC_parse so the warning shows after
7565                        the class closes */
7566                     while (UCHARAT(RExC_parse) && UCHARAT(RExC_parse) != ']')
7567                         RExC_parse++;
7568                     Simple_vFAIL3("POSIX syntax [%c %c] is reserved for future extensions", c, c);
7569                 }
7570             } else {
7571                 /* Maternal grandfather:
7572                  * "[:" ending in ":" but not in ":]" */
7573                 RExC_parse = s;
7574             }
7575         }
7576     }
7577
7578     return namedclass;
7579 }
7580
7581 STATIC void
7582 S_checkposixcc(pTHX_ RExC_state_t *pRExC_state)
7583 {
7584     dVAR;
7585     if (POSIXCC(UCHARAT(RExC_parse))) {
7586         const char *s = RExC_parse;
7587         const char  c = *s++;
7588
7589         while (isALNUM(*s))
7590             s++;
7591         if (*s && c == *s && s[1] == ']') {
7592             if (ckWARN(WARN_REGEXP))
7593                 vWARN3(s+2,
7594                         "POSIX syntax [%c %c] belongs inside character classes",
7595                         c, c);
7596
7597             /* [[=foo=]] and [[.foo.]] are still future. */
7598             if (POSIXCC_NOTYET(c)) {
7599                 /* adjust RExC_parse so the error shows after
7600                    the class closes */
7601                 while (UCHARAT(RExC_parse) && UCHARAT(RExC_parse++) != ']')
7602                     NOOP;
7603                 Simple_vFAIL3("POSIX syntax [%c %c] is reserved for future extensions", c, c);
7604             }
7605         }
7606     }
7607 }
7608
7609
7610 #define _C_C_T_(NAME,TEST,WORD)                         \
7611 ANYOF_##NAME:                                           \
7612     if (LOC)                                            \
7613         ANYOF_CLASS_SET(ret, ANYOF_##NAME);             \
7614     else {                                              \
7615         for (value = 0; value < 256; value++)           \
7616             if (TEST)                                   \
7617                 ANYOF_BITMAP_SET(ret, value);           \
7618     }                                                   \
7619     yesno = '+';                                        \
7620     what = WORD;                                        \
7621     break;                                              \
7622 case ANYOF_N##NAME:                                     \
7623     if (LOC)                                            \
7624         ANYOF_CLASS_SET(ret, ANYOF_N##NAME);            \
7625     else {                                              \
7626         for (value = 0; value < 256; value++)           \
7627             if (!TEST)                                  \
7628                 ANYOF_BITMAP_SET(ret, value);           \
7629     }                                                   \
7630     yesno = '!';                                        \
7631     what = WORD;                                        \
7632     break
7633
7634 #define _C_C_T_NOLOC_(NAME,TEST,WORD)                   \
7635 ANYOF_##NAME:                                           \
7636         for (value = 0; value < 256; value++)           \
7637             if (TEST)                                   \
7638                 ANYOF_BITMAP_SET(ret, value);           \
7639     yesno = '+';                                        \
7640     what = WORD;                                        \
7641     break;                                              \
7642 case ANYOF_N##NAME:                                     \
7643         for (value = 0; value < 256; value++)           \
7644             if (!TEST)                                  \
7645                 ANYOF_BITMAP_SET(ret, value);           \
7646     yesno = '!';                                        \
7647     what = WORD;                                        \
7648     break
7649
7650 /*
7651    parse a class specification and produce either an ANYOF node that
7652    matches the pattern or if the pattern matches a single char only and
7653    that char is < 256 and we are case insensitive then we produce an 
7654    EXACT node instead.
7655 */
7656
7657 STATIC regnode *
7658 S_regclass(pTHX_ RExC_state_t *pRExC_state, U32 depth)
7659 {
7660     dVAR;
7661     register UV nextvalue;
7662     register IV prevvalue = OOB_UNICODE;
7663     register IV range = 0;
7664     UV value = 0; /* XXX:dmq: needs to be referenceable (unfortunately) */
7665     register regnode *ret;
7666     STRLEN numlen;
7667     IV namedclass;
7668     char *rangebegin = NULL;
7669     bool need_class = 0;
7670     SV *listsv = NULL;
7671     UV n;
7672     bool optimize_invert   = TRUE;
7673     AV* unicode_alternate  = NULL;
7674 #ifdef EBCDIC
7675     UV literal_endpoint = 0;
7676 #endif
7677     UV stored = 0;  /* number of chars stored in the class */
7678
7679     regnode * const orig_emit = RExC_emit; /* Save the original RExC_emit in
7680         case we need to change the emitted regop to an EXACT. */
7681     const char * orig_parse = RExC_parse;
7682     GET_RE_DEBUG_FLAGS_DECL;
7683 #ifndef DEBUGGING
7684     PERL_UNUSED_ARG(depth);
7685 #endif
7686
7687     DEBUG_PARSE("clas");
7688
7689     /* Assume we are going to generate an ANYOF node. */
7690     ret = reganode(pRExC_state, ANYOF, 0);
7691
7692     if (!SIZE_ONLY)
7693         ANYOF_FLAGS(ret) = 0;
7694
7695     if (UCHARAT(RExC_parse) == '^') {   /* Complement of range. */
7696         RExC_naughty++;
7697         RExC_parse++;
7698         if (!SIZE_ONLY)
7699             ANYOF_FLAGS(ret) |= ANYOF_INVERT;
7700     }
7701
7702     if (SIZE_ONLY) {
7703         RExC_size += ANYOF_SKIP;
7704         listsv = &PL_sv_undef; /* For code scanners: listsv always non-NULL. */
7705     }
7706     else {
7707         RExC_emit += ANYOF_SKIP;
7708         if (FOLD)
7709             ANYOF_FLAGS(ret) |= ANYOF_FOLD;
7710         if (LOC)
7711             ANYOF_FLAGS(ret) |= ANYOF_LOCALE;
7712         ANYOF_BITMAP_ZERO(ret);
7713         listsv = newSVpvs("# comment\n");
7714     }
7715
7716     nextvalue = RExC_parse < RExC_end ? UCHARAT(RExC_parse) : 0;
7717
7718     if (!SIZE_ONLY && POSIXCC(nextvalue))
7719         checkposixcc(pRExC_state);
7720
7721     /* allow 1st char to be ] (allowing it to be - is dealt with later) */
7722     if (UCHARAT(RExC_parse) == ']')
7723         goto charclassloop;
7724
7725 parseit:
7726     while (RExC_parse < RExC_end && UCHARAT(RExC_parse) != ']') {
7727
7728     charclassloop:
7729
7730         namedclass = OOB_NAMEDCLASS; /* initialize as illegal */
7731
7732         if (!range)
7733             rangebegin = RExC_parse;
7734         if (UTF) {
7735             value = utf8n_to_uvchr((U8*)RExC_parse,
7736                                    RExC_end - RExC_parse,
7737                                    &numlen, UTF8_ALLOW_DEFAULT);
7738             RExC_parse += numlen;
7739         }
7740         else
7741             value = UCHARAT(RExC_parse++);
7742
7743         nextvalue = RExC_parse < RExC_end ? UCHARAT(RExC_parse) : 0;
7744         if (value == '[' && POSIXCC(nextvalue))
7745             namedclass = regpposixcc(pRExC_state, value);
7746         else if (value == '\\') {
7747             if (UTF) {
7748                 value = utf8n_to_uvchr((U8*)RExC_parse,
7749                                    RExC_end - RExC_parse,
7750                                    &numlen, UTF8_ALLOW_DEFAULT);
7751                 RExC_parse += numlen;
7752             }
7753             else
7754                 value = UCHARAT(RExC_parse++);
7755             /* Some compilers cannot handle switching on 64-bit integer
7756              * values, therefore value cannot be an UV.  Yes, this will
7757              * be a problem later if we want switch on Unicode.
7758              * A similar issue a little bit later when switching on
7759              * namedclass. --jhi */
7760             switch ((I32)value) {
7761             case 'w':   namedclass = ANYOF_ALNUM;       break;
7762             case 'W':   namedclass = ANYOF_NALNUM;      break;
7763             case 's':   namedclass = ANYOF_SPACE;       break;
7764             case 'S':   namedclass = ANYOF_NSPACE;      break;
7765             case 'd':   namedclass = ANYOF_DIGIT;       break;
7766             case 'D':   namedclass = ANYOF_NDIGIT;      break;
7767             case 'v':   namedclass = ANYOF_VERTWS;      break;
7768             case 'V':   namedclass = ANYOF_NVERTWS;     break;
7769             case 'h':   namedclass = ANYOF_HORIZWS;     break;
7770             case 'H':   namedclass = ANYOF_NHORIZWS;    break;
7771             case 'N':  /* Handle \N{NAME} in class */
7772                 {
7773                     /* We only pay attention to the first char of 
7774                     multichar strings being returned. I kinda wonder
7775                     if this makes sense as it does change the behaviour
7776                     from earlier versions, OTOH that behaviour was broken
7777                     as well. */
7778                     UV v; /* value is register so we cant & it /grrr */
7779                     if (reg_namedseq(pRExC_state, &v)) {
7780                         goto parseit;
7781                     }
7782                     value= v; 
7783                 }
7784                 break;
7785             case 'p':
7786             case 'P':
7787                 {
7788                 char *e;
7789                 if (RExC_parse >= RExC_end)
7790                     vFAIL2("Empty \\%c{}", (U8)value);
7791                 if (*RExC_parse == '{') {
7792                     const U8 c = (U8)value;
7793                     e = strchr(RExC_parse++, '}');
7794                     if (!e)
7795                         vFAIL2("Missing right brace on \\%c{}", c);
7796                     while (isSPACE(UCHARAT(RExC_parse)))
7797                         RExC_parse++;
7798                     if (e == RExC_parse)
7799                         vFAIL2("Empty \\%c{}", c);
7800                     n = e - RExC_parse;
7801                     while (isSPACE(UCHARAT(RExC_parse + n - 1)))
7802                         n--;
7803                 }
7804                 else {
7805                     e = RExC_parse;
7806                     n = 1;
7807                 }
7808                 if (!SIZE_ONLY) {
7809                     if (UCHARAT(RExC_parse) == '^') {
7810                          RExC_parse++;
7811                          n--;
7812                          value = value == 'p' ? 'P' : 'p'; /* toggle */
7813                          while (isSPACE(UCHARAT(RExC_parse))) {
7814                               RExC_parse++;
7815                               n--;
7816                          }
7817                     }
7818                     Perl_sv_catpvf(aTHX_ listsv, "%cutf8::%.*s\n",
7819                         (value=='p' ? '+' : '!'), (int)n, RExC_parse);
7820                 }
7821                 RExC_parse = e + 1;
7822                 ANYOF_FLAGS(ret) |= ANYOF_UNICODE;
7823                 namedclass = ANYOF_MAX;  /* no official name, but it's named */
7824                 }
7825                 break;
7826             case 'n':   value = '\n';                   break;
7827             case 'r':   value = '\r';                   break;
7828             case 't':   value = '\t';                   break;
7829             case 'f':   value = '\f';                   break;
7830             case 'b':   value = '\b';                   break;
7831             case 'e':   value = ASCII_TO_NATIVE('\033');break;
7832             case 'a':   value = ASCII_TO_NATIVE('\007');break;
7833             case 'x':
7834                 if (*RExC_parse == '{') {
7835                     I32 flags = PERL_SCAN_ALLOW_UNDERSCORES
7836                         | PERL_SCAN_DISALLOW_PREFIX;
7837                     char * const e = strchr(RExC_parse++, '}');
7838                     if (!e)
7839                         vFAIL("Missing right brace on \\x{}");
7840
7841                     numlen = e - RExC_parse;
7842                     value = grok_hex(RExC_parse, &numlen, &flags, NULL);
7843                     RExC_parse = e + 1;
7844                 }
7845                 else {
7846                     I32 flags = PERL_SCAN_DISALLOW_PREFIX;
7847                     numlen = 2;
7848                     value = grok_hex(RExC_parse, &numlen, &flags, NULL);
7849                     RExC_parse += numlen;
7850                 }
7851                 if (PL_encoding && value < 0x100)
7852                     goto recode_encoding;
7853                 break;
7854             case 'c':
7855                 value = UCHARAT(RExC_parse++);
7856                 value = toCTRL(value);
7857                 break;
7858             case '0': case '1': case '2': case '3': case '4':
7859             case '5': case '6': case '7': case '8': case '9':
7860                 {
7861                     I32 flags = 0;
7862                     numlen = 3;
7863                     value = grok_oct(--RExC_parse, &numlen, &flags, NULL);
7864                     RExC_parse += numlen;
7865                     if (PL_encoding && value < 0x100)
7866                         goto recode_encoding;
7867                     break;
7868                 }
7869             recode_encoding:
7870                 {
7871                     SV* enc = PL_encoding;
7872                     value = reg_recode((const char)(U8)value, &enc);
7873                     if (!enc && SIZE_ONLY && ckWARN(WARN_REGEXP))
7874                         vWARN(RExC_parse,
7875                               "Invalid escape in the specified encoding");
7876                     break;
7877                 }
7878             default:
7879                 if (!SIZE_ONLY && isALPHA(value) && ckWARN(WARN_REGEXP))
7880                     vWARN2(RExC_parse,
7881                            "Unrecognized escape \\%c in character class passed through",
7882                            (int)value);
7883                 break;
7884             }
7885         } /* end of \blah */
7886 #ifdef EBCDIC
7887         else
7888             literal_endpoint++;
7889 #endif
7890
7891         if (namedclass > OOB_NAMEDCLASS) { /* this is a named class \blah */
7892
7893             if (!SIZE_ONLY && !need_class)
7894                 ANYOF_CLASS_ZERO(ret);
7895
7896             need_class = 1;
7897
7898             /* a bad range like a-\d, a-[:digit:] ? */
7899             if (range) {
7900                 if (!SIZE_ONLY) {
7901                     if (ckWARN(WARN_REGEXP)) {
7902                         const int w =
7903                             RExC_parse >= rangebegin ?
7904                             RExC_parse - rangebegin : 0;
7905                         vWARN4(RExC_parse,
7906                                "False [] range \"%*.*s\"",
7907                                w, w, rangebegin);
7908                     }
7909                     if (prevvalue < 256) {
7910                         ANYOF_BITMAP_SET(ret, prevvalue);
7911                         ANYOF_BITMAP_SET(ret, '-');
7912                     }
7913                     else {
7914                         ANYOF_FLAGS(ret) |= ANYOF_UNICODE;
7915                         Perl_sv_catpvf(aTHX_ listsv,
7916                                        "%04"UVxf"\n%04"UVxf"\n", (UV)prevvalue, (UV) '-');
7917                     }
7918                 }
7919
7920                 range = 0; /* this was not a true range */
7921             }
7922
7923
7924     
7925             if (!SIZE_ONLY) {
7926                 const char *what = NULL;
7927                 char yesno = 0;
7928
7929                 if (namedclass > OOB_NAMEDCLASS)
7930                     optimize_invert = FALSE;
7931                 /* Possible truncation here but in some 64-bit environments
7932                  * the compiler gets heartburn about switch on 64-bit values.
7933                  * A similar issue a little earlier when switching on value.
7934                  * --jhi */
7935                 switch ((I32)namedclass) {
7936                 case _C_C_T_(ALNUM, isALNUM(value), "Word");
7937                 case _C_C_T_(ALNUMC, isALNUMC(value), "Alnum");
7938                 case _C_C_T_(ALPHA, isALPHA(value), "Alpha");
7939                 case _C_C_T_(BLANK, isBLANK(value), "Blank");
7940                 case _C_C_T_(CNTRL, isCNTRL(value), "Cntrl");
7941                 case _C_C_T_(GRAPH, isGRAPH(value), "Graph");
7942                 case _C_C_T_(LOWER, isLOWER(value), "Lower");
7943                 case _C_C_T_(PRINT, isPRINT(value), "Print");
7944                 case _C_C_T_(PSXSPC, isPSXSPC(value), "Space");
7945                 case _C_C_T_(PUNCT, isPUNCT(value), "Punct");
7946                 case _C_C_T_(SPACE, isSPACE(value), "SpacePerl");
7947                 case _C_C_T_(UPPER, isUPPER(value), "Upper");
7948                 case _C_C_T_(XDIGIT, isXDIGIT(value), "XDigit");
7949                 case _C_C_T_NOLOC_(VERTWS, is_VERTWS_latin1(&value), "VertSpace");
7950                 case _C_C_T_NOLOC_(HORIZWS, is_HORIZWS_latin1(&value), "HorizSpace");
7951                 case ANYOF_ASCII:
7952                     if (LOC)
7953                         ANYOF_CLASS_SET(ret, ANYOF_ASCII);
7954                     else {
7955 #ifndef EBCDIC
7956                         for (value = 0; value < 128; value++)
7957                             ANYOF_BITMAP_SET(ret, value);
7958 #else  /* EBCDIC */
7959                         for (value = 0; value < 256; value++) {
7960                             if (isASCII(value))
7961                                 ANYOF_BITMAP_SET(ret, value);
7962                         }
7963 #endif /* EBCDIC */
7964                     }
7965                     yesno = '+';
7966                     what = "ASCII";
7967                     break;
7968                 case ANYOF_NASCII:
7969                     if (LOC)
7970                         ANYOF_CLASS_SET(ret, ANYOF_NASCII);
7971                     else {
7972 #ifndef EBCDIC
7973                         for (value = 128; value < 256; value++)
7974                             ANYOF_BITMAP_SET(ret, value);
7975 #else  /* EBCDIC */
7976                         for (value = 0; value < 256; value++) {
7977                             if (!isASCII(value))
7978                                 ANYOF_BITMAP_SET(ret, value);
7979                         }
7980 #endif /* EBCDIC */
7981                     }
7982                     yesno = '!';
7983                     what = "ASCII";
7984                     break;              
7985                 case ANYOF_DIGIT:
7986                     if (LOC)
7987                         ANYOF_CLASS_SET(ret, ANYOF_DIGIT);
7988                     else {
7989                         /* consecutive digits assumed */
7990                         for (value = '0'; value <= '9'; value++)
7991                             ANYOF_BITMAP_SET(ret, value);
7992                     }
7993                     yesno = '+';
7994                     what = "Digit";
7995                     break;
7996                 case ANYOF_NDIGIT:
7997                     if (LOC)
7998                         ANYOF_CLASS_SET(ret, ANYOF_NDIGIT);
7999                     else {
8000                         /* consecutive digits assumed */
8001                         for (value = 0; value < '0'; value++)
8002                             ANYOF_BITMAP_SET(ret, value);
8003                         for (value = '9' + 1; value < 256; value++)
8004                             ANYOF_BITMAP_SET(ret, value);
8005                     }
8006                     yesno = '!';
8007                     what = "Digit";
8008                     break;              
8009                 case ANYOF_MAX:
8010                     /* this is to handle \p and \P */
8011                     break;
8012                 default:
8013                     vFAIL("Invalid [::] class");
8014                     break;
8015                 }
8016                 if (what) {
8017                     /* Strings such as "+utf8::isWord\n" */
8018                     Perl_sv_catpvf(aTHX_ listsv, "%cutf8::Is%s\n", yesno, what);
8019                 }
8020                 if (LOC)
8021                     ANYOF_FLAGS(ret) |= ANYOF_CLASS;
8022                 continue;
8023             }
8024         } /* end of namedclass \blah */
8025
8026         if (range) {
8027             if (prevvalue > (IV)value) /* b-a */ {
8028                 const int w = RExC_parse - rangebegin;
8029                 Simple_vFAIL4("Invalid [] range \"%*.*s\"", w, w, rangebegin);
8030                 range = 0; /* not a valid range */
8031             }
8032         }
8033         else {
8034             prevvalue = value; /* save the beginning of the range */
8035             if (*RExC_parse == '-' && RExC_parse+1 < RExC_end &&
8036                 RExC_parse[1] != ']') {
8037                 RExC_parse++;
8038
8039                 /* a bad range like \w-, [:word:]- ? */
8040                 if (namedclass > OOB_NAMEDCLASS) {
8041                     if (ckWARN(WARN_REGEXP)) {
8042                         const int w =
8043                             RExC_parse >= rangebegin ?
8044                             RExC_parse - rangebegin : 0;
8045                         vWARN4(RExC_parse,
8046                                "False [] range \"%*.*s\"",
8047                                w, w, rangebegin);
8048                     }
8049                     if (!SIZE_ONLY)
8050                         ANYOF_BITMAP_SET(ret, '-');
8051                 } else
8052                     range = 1;  /* yeah, it's a range! */
8053                 continue;       /* but do it the next time */
8054             }
8055         }
8056
8057         /* now is the next time */
8058         /*stored += (value - prevvalue + 1);*/
8059         if (!SIZE_ONLY) {
8060             if (prevvalue < 256) {
8061                 const IV ceilvalue = value < 256 ? value : 255;
8062                 IV i;
8063 #ifdef EBCDIC
8064                 /* In EBCDIC [\x89-\x91] should include
8065                  * the \x8e but [i-j] should not. */
8066                 if (literal_endpoint == 2 &&
8067                     ((isLOWER(prevvalue) && isLOWER(ceilvalue)) ||
8068                      (isUPPER(prevvalue) && isUPPER(ceilvalue))))
8069                 {
8070                     if (isLOWER(prevvalue)) {
8071                         for (i = prevvalue; i <= ceilvalue; i++)
8072                             if (isLOWER(i) && !ANYOF_BITMAP_TEST(ret,i)) {
8073                                 stored++;
8074                                 ANYOF_BITMAP_SET(ret, i);
8075                             }
8076                     } else {
8077                         for (i = prevvalue; i <= ceilvalue; i++)
8078                             if (isUPPER(i) && !ANYOF_BITMAP_TEST(ret,i)) {
8079                                 stored++;
8080                                 ANYOF_BITMAP_SET(ret, i);
8081                             }
8082                     }
8083                 }
8084                 else
8085 #endif
8086                       for (i = prevvalue; i <= ceilvalue; i++) {
8087                         if (!ANYOF_BITMAP_TEST(ret,i)) {
8088                             stored++;  
8089                             ANYOF_BITMAP_SET(ret, i);
8090                         }
8091                       }
8092           }
8093           if (value > 255 || UTF) {
8094                 const UV prevnatvalue  = NATIVE_TO_UNI(prevvalue);
8095                 const UV natvalue      = NATIVE_TO_UNI(value);
8096                 stored+=2; /* can't optimize this class */
8097                 ANYOF_FLAGS(ret) |= ANYOF_UNICODE;
8098                 if (prevnatvalue < natvalue) { /* what about > ? */
8099                     Perl_sv_catpvf(aTHX_ listsv, "%04"UVxf"\t%04"UVxf"\n",
8100                                    prevnatvalue, natvalue);
8101                 }
8102                 else if (prevnatvalue == natvalue) {
8103                     Perl_sv_catpvf(aTHX_ listsv, "%04"UVxf"\n", natvalue);
8104                     if (FOLD) {
8105                          U8 foldbuf[UTF8_MAXBYTES_CASE+1];
8106                          STRLEN foldlen;
8107                          const UV f = to_uni_fold(natvalue, foldbuf, &foldlen);
8108
8109 #ifdef EBCDIC /* RD t/uni/fold ff and 6b */
8110                          if (RExC_precomp[0] == ':' &&
8111                              RExC_precomp[1] == '[' &&
8112                              (f == 0xDF || f == 0x92)) {
8113                              f = NATIVE_TO_UNI(f);
8114                         }
8115 #endif
8116                          /* If folding and foldable and a single
8117                           * character, insert also the folded version
8118                           * to the charclass. */
8119                          if (f != value) {
8120 #ifdef EBCDIC /* RD tunifold ligatures s,t fb05, fb06 */
8121                              if ((RExC_precomp[0] == ':' &&
8122                                   RExC_precomp[1] == '[' &&
8123                                   (f == 0xA2 &&
8124                                    (value == 0xFB05 || value == 0xFB06))) ?
8125                                  foldlen == ((STRLEN)UNISKIP(f) - 1) :
8126                                  foldlen == (STRLEN)UNISKIP(f) )
8127 #else
8128                               if (foldlen == (STRLEN)UNISKIP(f))
8129 #endif
8130                                   Perl_sv_catpvf(aTHX_ listsv,
8131                                                  "%04"UVxf"\n", f);
8132                               else {
8133                                   /* Any multicharacter foldings
8134                                    * require the following transform:
8135                                    * [ABCDEF] -> (?:[ABCabcDEFd]|pq|rst)
8136                                    * where E folds into "pq" and F folds
8137                                    * into "rst", all other characters
8138                                    * fold to single characters.  We save
8139                                    * away these multicharacter foldings,
8140                                    * to be later saved as part of the
8141                                    * additional "s" data. */
8142                                   SV *sv;
8143
8144                                   if (!unicode_alternate)
8145                                       unicode_alternate = newAV();
8146                                   sv = newSVpvn((char*)foldbuf, foldlen);
8147                                   SvUTF8_on(sv);
8148                                   av_push(unicode_alternate, sv);
8149                               }
8150                          }
8151
8152                          /* If folding and the value is one of the Greek
8153                           * sigmas insert a few more sigmas to make the
8154                           * folding rules of the sigmas to work right.
8155                           * Note that not all the possible combinations
8156                           * are handled here: some of them are handled
8157                           * by the standard folding rules, and some of
8158                           * them (literal or EXACTF cases) are handled
8159                           * during runtime in regexec.c:S_find_byclass(). */
8160                          if (value == UNICODE_GREEK_SMALL_LETTER_FINAL_SIGMA) {
8161                               Perl_sv_catpvf(aTHX_ listsv, "%04"UVxf"\n",
8162                                              (UV)UNICODE_GREEK_CAPITAL_LETTER_SIGMA);
8163                               Perl_sv_catpvf(aTHX_ listsv, "%04"UVxf"\n",
8164                                              (UV)UNICODE_GREEK_SMALL_LETTER_SIGMA);
8165                          }
8166                          else if (value == UNICODE_GREEK_CAPITAL_LETTER_SIGMA)
8167                               Perl_sv_catpvf(aTHX_ listsv, "%04"UVxf"\n",
8168                                              (UV)UNICODE_GREEK_SMALL_LETTER_SIGMA);
8169                     }
8170                 }
8171             }
8172 #ifdef EBCDIC
8173             literal_endpoint = 0;
8174 #endif
8175         }
8176
8177         range = 0; /* this range (if it was one) is done now */
8178     }
8179
8180     if (need_class) {
8181         ANYOF_FLAGS(ret) |= ANYOF_LARGE;
8182         if (SIZE_ONLY)
8183             RExC_size += ANYOF_CLASS_ADD_SKIP;
8184         else
8185             RExC_emit += ANYOF_CLASS_ADD_SKIP;
8186     }
8187
8188
8189     if (SIZE_ONLY)
8190         return ret;
8191     /****** !SIZE_ONLY AFTER HERE *********/
8192
8193     if( stored == 1 && (value < 128 || (value < 256 && !UTF))
8194         && !( ANYOF_FLAGS(ret) & ( ANYOF_FLAGS_ALL ^ ANYOF_FOLD ) )
8195     ) {
8196         /* optimize single char class to an EXACT node
8197            but *only* when its not a UTF/high char  */
8198         const char * cur_parse= RExC_parse;
8199         RExC_emit = (regnode *)orig_emit;
8200         RExC_parse = (char *)orig_parse;
8201         ret = reg_node(pRExC_state,
8202                        (U8)((ANYOF_FLAGS(ret) & ANYOF_FOLD) ? EXACTF : EXACT));
8203         RExC_parse = (char *)cur_parse;
8204         *STRING(ret)= (char)value;
8205         STR_LEN(ret)= 1;
8206         RExC_emit += STR_SZ(1);
8207         return ret;
8208     }
8209     /* optimize case-insensitive simple patterns (e.g. /[a-z]/i) */
8210     if ( /* If the only flag is folding (plus possibly inversion). */
8211         ((ANYOF_FLAGS(ret) & (ANYOF_FLAGS_ALL ^ ANYOF_INVERT)) == ANYOF_FOLD)
8212        ) {
8213         for (value = 0; value < 256; ++value) {
8214             if (ANYOF_BITMAP_TEST(ret, value)) {
8215                 UV fold = PL_fold[value];
8216
8217                 if (fold != value)
8218                     ANYOF_BITMAP_SET(ret, fold);
8219             }
8220         }
8221         ANYOF_FLAGS(ret) &= ~ANYOF_FOLD;
8222     }
8223
8224     /* optimize inverted simple patterns (e.g. [^a-z]) */
8225     if (optimize_invert &&
8226         /* If the only flag is inversion. */
8227         (ANYOF_FLAGS(ret) & ANYOF_FLAGS_ALL) == ANYOF_INVERT) {
8228         for (value = 0; value < ANYOF_BITMAP_SIZE; ++value)
8229             ANYOF_BITMAP(ret)[value] ^= ANYOF_FLAGS_ALL;
8230         ANYOF_FLAGS(ret) = ANYOF_UNICODE_ALL;
8231     }
8232     {
8233         AV * const av = newAV();
8234         SV *rv;
8235         /* The 0th element stores the character class description
8236          * in its textual form: used later (regexec.c:Perl_regclass_swash())
8237          * to initialize the appropriate swash (which gets stored in
8238          * the 1st element), and also useful for dumping the regnode.
8239          * The 2nd element stores the multicharacter foldings,
8240          * used later (regexec.c:S_reginclass()). */
8241         av_store(av, 0, listsv);
8242         av_store(av, 1, NULL);
8243         av_store(av, 2, (SV*)unicode_alternate);
8244         rv = newRV_noinc((SV*)av);
8245         n = add_data(pRExC_state, 1, "s");
8246         RExC_rxi->data->data[n] = (void*)rv;
8247         ARG_SET(ret, n);
8248     }
8249     return ret;
8250 }
8251 #undef _C_C_T_
8252
8253
8254 /* reg_skipcomment()
8255
8256    Absorbs an /x style # comments from the input stream.
8257    Returns true if there is more text remaining in the stream.
8258    Will set the REG_SEEN_RUN_ON_COMMENT flag if the comment
8259    terminates the pattern without including a newline.
8260
8261    Note its the callers responsibility to ensure that we are
8262    actually in /x mode
8263
8264 */
8265
8266 STATIC bool
8267 S_reg_skipcomment(pTHX_ RExC_state_t *pRExC_state)
8268 {
8269     bool ended = 0;
8270     while (RExC_parse < RExC_end)
8271         if (*RExC_parse++ == '\n') {
8272             ended = 1;
8273             break;
8274         }
8275     if (!ended) {
8276         /* we ran off the end of the pattern without ending
8277            the comment, so we have to add an \n when wrapping */
8278         RExC_seen |= REG_SEEN_RUN_ON_COMMENT;
8279         return 0;
8280     } else
8281         return 1;
8282 }
8283
8284 /* nextchar()
8285
8286    Advance that parse position, and optionall absorbs
8287    "whitespace" from the inputstream.
8288
8289    Without /x "whitespace" means (?#...) style comments only,
8290    with /x this means (?#...) and # comments and whitespace proper.
8291
8292    Returns the RExC_parse point from BEFORE the scan occurs.
8293
8294    This is the /x friendly way of saying RExC_parse++.
8295 */
8296
8297 STATIC char*
8298 S_nextchar(pTHX_ RExC_state_t *pRExC_state)
8299 {
8300     char* const retval = RExC_parse++;
8301
8302     for (;;) {
8303         if (*RExC_parse == '(' && RExC_parse[1] == '?' &&
8304                 RExC_parse[2] == '#') {
8305             while (*RExC_parse != ')') {
8306                 if (RExC_parse == RExC_end)
8307                     FAIL("Sequence (?#... not terminated");
8308                 RExC_parse++;
8309             }
8310             RExC_parse++;
8311             continue;
8312         }
8313         if (RExC_flags & RXf_PMf_EXTENDED) {
8314             if (isSPACE(*RExC_parse)) {
8315                 RExC_parse++;
8316                 continue;
8317             }
8318             else if (*RExC_parse == '#') {
8319                 if ( reg_skipcomment( pRExC_state ) )
8320                     continue;
8321             }
8322         }
8323         return retval;
8324     }
8325 }
8326
8327 /*
8328 - reg_node - emit a node
8329 */
8330 STATIC regnode *                        /* Location. */
8331 S_reg_node(pTHX_ RExC_state_t *pRExC_state, U8 op)
8332 {
8333     dVAR;
8334     register regnode *ptr;
8335     regnode * const ret = RExC_emit;
8336     GET_RE_DEBUG_FLAGS_DECL;
8337
8338     if (SIZE_ONLY) {
8339         SIZE_ALIGN(RExC_size);
8340         RExC_size += 1;
8341         return(ret);
8342     }
8343     if (RExC_emit >= RExC_emit_bound)
8344         Perl_croak(aTHX_ "panic: reg_node overrun trying to emit %d", op);
8345
8346     NODE_ALIGN_FILL(ret);
8347     ptr = ret;
8348     FILL_ADVANCE_NODE(ptr, op);
8349 #ifdef RE_TRACK_PATTERN_OFFSETS
8350     if (RExC_offsets) {         /* MJD */
8351         MJD_OFFSET_DEBUG(("%s:%d: (op %s) %s %"UVuf" (len %"UVuf") (max %"UVuf").\n", 
8352               "reg_node", __LINE__, 
8353               PL_reg_name[op],
8354               (UV)(RExC_emit - RExC_emit_start) > RExC_offsets[0] 
8355                 ? "Overwriting end of array!\n" : "OK",
8356               (UV)(RExC_emit - RExC_emit_start),
8357               (UV)(RExC_parse - RExC_start),
8358               (UV)RExC_offsets[0])); 
8359         Set_Node_Offset(RExC_emit, RExC_parse + (op == END));
8360     }
8361 #endif
8362     RExC_emit = ptr;
8363     return(ret);
8364 }
8365
8366 /*
8367 - reganode - emit a node with an argument
8368 */
8369 STATIC regnode *                        /* Location. */
8370 S_reganode(pTHX_ RExC_state_t *pRExC_state, U8 op, U32 arg)
8371 {
8372     dVAR;
8373     register regnode *ptr;
8374     regnode * const ret = RExC_emit;
8375     GET_RE_DEBUG_FLAGS_DECL;
8376
8377     if (SIZE_ONLY) {
8378         SIZE_ALIGN(RExC_size);
8379         RExC_size += 2;
8380         /* 
8381            We can't do this:
8382            
8383            assert(2==regarglen[op]+1); 
8384         
8385            Anything larger than this has to allocate the extra amount.
8386            If we changed this to be:
8387            
8388            RExC_size += (1 + regarglen[op]);
8389            
8390            then it wouldn't matter. Its not clear what side effect
8391            might come from that so its not done so far.
8392            -- dmq
8393         */
8394         return(ret);
8395     }
8396     if (RExC_emit >= RExC_emit_bound)
8397         Perl_croak(aTHX_ "panic: reg_node overrun trying to emit %d", op);
8398
8399     NODE_ALIGN_FILL(ret);
8400     ptr = ret;
8401     FILL_ADVANCE_NODE_ARG(ptr, op, arg);
8402 #ifdef RE_TRACK_PATTERN_OFFSETS
8403     if (RExC_offsets) {         /* MJD */
8404         MJD_OFFSET_DEBUG(("%s(%d): (op %s) %s %"UVuf" <- %"UVuf" (max %"UVuf").\n", 
8405               "reganode",
8406               __LINE__,
8407               PL_reg_name[op],
8408               (UV)(RExC_emit - RExC_emit_start) > RExC_offsets[0] ? 
8409               "Overwriting end of array!\n" : "OK",
8410               (UV)(RExC_emit - RExC_emit_start),
8411               (UV)(RExC_parse - RExC_start),
8412               (UV)RExC_offsets[0])); 
8413         Set_Cur_Node_Offset;
8414     }
8415 #endif            
8416     RExC_emit = ptr;
8417     return(ret);
8418 }
8419
8420 /*
8421 - reguni - emit (if appropriate) a Unicode character
8422 */
8423 STATIC STRLEN
8424 S_reguni(pTHX_ const RExC_state_t *pRExC_state, UV uv, char* s)
8425 {
8426     dVAR;
8427     return SIZE_ONLY ? UNISKIP(uv) : (uvchr_to_utf8((U8*)s, uv) - (U8*)s);
8428 }
8429
8430 /*
8431 - reginsert - insert an operator in front of already-emitted operand
8432 *
8433 * Means relocating the operand.
8434 */
8435 STATIC void
8436 S_reginsert(pTHX_ RExC_state_t *pRExC_state, U8 op, regnode *opnd, U32 depth)
8437 {
8438     dVAR;
8439     register regnode *src;
8440     register regnode *dst;
8441     register regnode *place;
8442     const int offset = regarglen[(U8)op];
8443     const int size = NODE_STEP_REGNODE + offset;
8444     GET_RE_DEBUG_FLAGS_DECL;
8445     PERL_UNUSED_ARG(depth);
8446 /* (PL_regkind[(U8)op] == CURLY ? EXTRA_STEP_2ARGS : 0); */
8447     DEBUG_PARSE_FMT("inst"," - %s",PL_reg_name[op]);
8448     if (SIZE_ONLY) {
8449         RExC_size += size;
8450         return;
8451     }
8452
8453     src = RExC_emit;
8454     RExC_emit += size;
8455     dst = RExC_emit;
8456     if (RExC_open_parens) {
8457         int paren;
8458         /*DEBUG_PARSE_FMT("inst"," - %"IVdf, (IV)RExC_npar);*/
8459         for ( paren=0 ; paren < RExC_npar ; paren++ ) {
8460             if ( RExC_open_parens[paren] >= opnd ) {
8461                 /*DEBUG_PARSE_FMT("open"," - %d",size);*/
8462                 RExC_open_parens[paren] += size;
8463             } else {
8464                 /*DEBUG_PARSE_FMT("open"," - %s","ok");*/
8465             }
8466             if ( RExC_close_parens[paren] >= opnd ) {
8467                 /*DEBUG_PARSE_FMT("close"," - %d",size);*/
8468                 RExC_close_parens[paren] += size;
8469             } else {
8470                 /*DEBUG_PARSE_FMT("close"," - %s","ok");*/
8471             }
8472         }
8473     }
8474
8475     while (src > opnd) {
8476         StructCopy(--src, --dst, regnode);
8477 #ifdef RE_TRACK_PATTERN_OFFSETS
8478         if (RExC_offsets) {     /* MJD 20010112 */
8479             MJD_OFFSET_DEBUG(("%s(%d): (op %s) %s copy %"UVuf" -> %"UVuf" (max %"UVuf").\n",
8480                   "reg_insert",
8481                   __LINE__,
8482                   PL_reg_name[op],
8483                   (UV)(dst - RExC_emit_start) > RExC_offsets[0] 
8484                     ? "Overwriting end of array!\n" : "OK",
8485                   (UV)(src - RExC_emit_start),
8486                   (UV)(dst - RExC_emit_start),
8487                   (UV)RExC_offsets[0])); 
8488             Set_Node_Offset_To_R(dst-RExC_emit_start, Node_Offset(src));
8489             Set_Node_Length_To_R(dst-RExC_emit_start, Node_Length(src));
8490         }
8491 #endif
8492     }
8493     
8494
8495     place = opnd;               /* Op node, where operand used to be. */
8496 #ifdef RE_TRACK_PATTERN_OFFSETS
8497     if (RExC_offsets) {         /* MJD */
8498         MJD_OFFSET_DEBUG(("%s(%d): (op %s) %s %"UVuf" <- %"UVuf" (max %"UVuf").\n", 
8499               "reginsert",
8500               __LINE__,
8501               PL_reg_name[op],
8502               (UV)(place - RExC_emit_start) > RExC_offsets[0] 
8503               ? "Overwriting end of array!\n" : "OK",
8504               (UV)(place - RExC_emit_start),
8505               (UV)(RExC_parse - RExC_start),
8506               (UV)RExC_offsets[0]));
8507         Set_Node_Offset(place, RExC_parse);
8508         Set_Node_Length(place, 1);
8509     }
8510 #endif    
8511     src = NEXTOPER(place);
8512     FILL_ADVANCE_NODE(place, op);
8513     Zero(src, offset, regnode);
8514 }
8515
8516 /*
8517 - regtail - set the next-pointer at the end of a node chain of p to val.
8518 - SEE ALSO: regtail_study
8519 */
8520 /* TODO: All three parms should be const */
8521 STATIC void
8522 S_regtail(pTHX_ RExC_state_t *pRExC_state, regnode *p, const regnode *val,U32 depth)
8523 {
8524     dVAR;
8525     register regnode *scan;
8526     GET_RE_DEBUG_FLAGS_DECL;
8527 #ifndef DEBUGGING
8528     PERL_UNUSED_ARG(depth);
8529 #endif
8530
8531     if (SIZE_ONLY)
8532         return;
8533
8534     /* Find last node. */
8535     scan = p;
8536     for (;;) {
8537         regnode * const temp = regnext(scan);
8538         DEBUG_PARSE_r({
8539             SV * const mysv=sv_newmortal();
8540             DEBUG_PARSE_MSG((scan==p ? "tail" : ""));
8541             regprop(RExC_rx, mysv, scan);
8542             PerlIO_printf(Perl_debug_log, "~ %s (%d) %s %s\n",
8543                 SvPV_nolen_const(mysv), REG_NODE_NUM(scan),
8544                     (temp == NULL ? "->" : ""),
8545                     (temp == NULL ? PL_reg_name[OP(val)] : "")
8546             );
8547         });
8548         if (temp == NULL)
8549             break;
8550         scan = temp;
8551     }
8552
8553     if (reg_off_by_arg[OP(scan)]) {
8554         ARG_SET(scan, val - scan);
8555     }
8556     else {
8557         NEXT_OFF(scan) = val - scan;
8558     }
8559 }
8560
8561 #ifdef DEBUGGING
8562 /*
8563 - regtail_study - set the next-pointer at the end of a node chain of p to val.
8564 - Look for optimizable sequences at the same time.
8565 - currently only looks for EXACT chains.
8566
8567 This is expermental code. The idea is to use this routine to perform 
8568 in place optimizations on branches and groups as they are constructed,
8569 with the long term intention of removing optimization from study_chunk so
8570 that it is purely analytical.
8571
8572 Currently only used when in DEBUG mode. The macro REGTAIL_STUDY() is used
8573 to control which is which.
8574
8575 */
8576 /* TODO: All four parms should be const */
8577
8578 STATIC U8
8579 S_regtail_study(pTHX_ RExC_state_t *pRExC_state, regnode *p, const regnode *val,U32 depth)
8580 {
8581     dVAR;
8582     register regnode *scan;
8583     U8 exact = PSEUDO;
8584 #ifdef EXPERIMENTAL_INPLACESCAN
8585     I32 min = 0;
8586 #endif
8587
8588     GET_RE_DEBUG_FLAGS_DECL;
8589
8590
8591     if (SIZE_ONLY)
8592         return exact;
8593
8594     /* Find last node. */
8595
8596     scan = p;
8597     for (;;) {
8598         regnode * const temp = regnext(scan);
8599 #ifdef EXPERIMENTAL_INPLACESCAN
8600         if (PL_regkind[OP(scan)] == EXACT)
8601             if (join_exact(pRExC_state,scan,&min,1,val,depth+1))
8602                 return EXACT;
8603 #endif
8604         if ( exact ) {
8605             switch (OP(scan)) {
8606                 case EXACT:
8607                 case EXACTF:
8608                 case EXACTFL:
8609                         if( exact == PSEUDO )
8610                             exact= OP(scan);
8611                         else if ( exact != OP(scan) )
8612                             exact= 0;
8613                 case NOTHING:
8614                     break;
8615                 default:
8616                     exact= 0;
8617             }
8618         }
8619         DEBUG_PARSE_r({
8620             SV * const mysv=sv_newmortal();
8621             DEBUG_PARSE_MSG((scan==p ? "tsdy" : ""));
8622             regprop(RExC_rx, mysv, scan);
8623             PerlIO_printf(Perl_debug_log, "~ %s (%d) -> %s\n",
8624                 SvPV_nolen_const(mysv),
8625                 REG_NODE_NUM(scan),
8626                 PL_reg_name[exact]);
8627         });
8628         if (temp == NULL)
8629             break;
8630         scan = temp;
8631     }
8632     DEBUG_PARSE_r({
8633         SV * const mysv_val=sv_newmortal();
8634         DEBUG_PARSE_MSG("");
8635         regprop(RExC_rx, mysv_val, val);
8636         PerlIO_printf(Perl_debug_log, "~ attach to %s (%"IVdf") offset to %"IVdf"\n",
8637                       SvPV_nolen_const(mysv_val),
8638                       (IV)REG_NODE_NUM(val),
8639                       (IV)(val - scan)
8640         );
8641     });
8642     if (reg_off_by_arg[OP(scan)]) {
8643         ARG_SET(scan, val - scan);
8644     }
8645     else {
8646         NEXT_OFF(scan) = val - scan;
8647     }
8648
8649     return exact;
8650 }
8651 #endif
8652
8653 /*
8654  - regcurly - a little FSA that accepts {\d+,?\d*}
8655  */
8656 STATIC I32
8657 S_regcurly(register const char *s)
8658 {
8659     if (*s++ != '{')
8660         return FALSE;
8661     if (!isDIGIT(*s))
8662         return FALSE;
8663     while (isDIGIT(*s))
8664         s++;
8665     if (*s == ',')
8666         s++;
8667     while (isDIGIT(*s))
8668         s++;
8669     if (*s != '}')
8670         return FALSE;
8671     return TRUE;
8672 }
8673
8674
8675 /*
8676  - regdump - dump a regexp onto Perl_debug_log in vaguely comprehensible form
8677  */
8678 #ifdef DEBUGGING
8679 void 
8680 S_regdump_extflags(pTHX_ const char *lead, const U32 flags) {
8681     int bit;
8682     int set=0;
8683     for (bit=0; bit<32; bit++) {
8684         if (flags & (1<<bit)) {
8685             if (!set++ && lead) 
8686                 PerlIO_printf(Perl_debug_log, "%s",lead);
8687             PerlIO_printf(Perl_debug_log, "%s ",PL_reg_extflags_name[bit]);
8688         }               
8689     }      
8690     if (lead)  {
8691         if (set) 
8692             PerlIO_printf(Perl_debug_log, "\n");
8693         else 
8694             PerlIO_printf(Perl_debug_log, "%s[none-set]\n",lead);
8695     }            
8696 }   
8697 #endif
8698
8699 void
8700 Perl_regdump(pTHX_ const regexp *r)
8701 {
8702 #ifdef DEBUGGING
8703     dVAR;
8704     SV * const sv = sv_newmortal();
8705     SV *dsv= sv_newmortal();
8706     RXi_GET_DECL(r,ri);
8707     GET_RE_DEBUG_FLAGS_DECL;
8708
8709     (void)dumpuntil(r, ri->program, ri->program + 1, NULL, NULL, sv, 0, 0);
8710
8711     /* Header fields of interest. */
8712     if (r->anchored_substr) {
8713         RE_PV_QUOTED_DECL(s, 0, dsv, SvPVX_const(r->anchored_substr), 
8714             RE_SV_DUMPLEN(r->anchored_substr), 30);
8715         PerlIO_printf(Perl_debug_log,
8716                       "anchored %s%s at %"IVdf" ",
8717                       s, RE_SV_TAIL(r->anchored_substr),
8718                       (IV)r->anchored_offset);
8719     } else if (r->anchored_utf8) {
8720         RE_PV_QUOTED_DECL(s, 1, dsv, SvPVX_const(r->anchored_utf8), 
8721             RE_SV_DUMPLEN(r->anchored_utf8), 30);
8722         PerlIO_printf(Perl_debug_log,
8723                       "anchored utf8 %s%s at %"IVdf" ",
8724                       s, RE_SV_TAIL(r->anchored_utf8),
8725                       (IV)r->anchored_offset);
8726     }                 
8727     if (r->float_substr) {
8728         RE_PV_QUOTED_DECL(s, 0, dsv, SvPVX_const(r->float_substr), 
8729             RE_SV_DUMPLEN(r->float_substr), 30);
8730         PerlIO_printf(Perl_debug_log,
8731                       "floating %s%s at %"IVdf"..%"UVuf" ",
8732                       s, RE_SV_TAIL(r->float_substr),
8733                       (IV)r->float_min_offset, (UV)r->float_max_offset);
8734     } else if (r->float_utf8) {
8735         RE_PV_QUOTED_DECL(s, 1, dsv, SvPVX_const(r->float_utf8), 
8736             RE_SV_DUMPLEN(r->float_utf8), 30);
8737         PerlIO_printf(Perl_debug_log,
8738                       "floating utf8 %s%s at %"IVdf"..%"UVuf" ",
8739                       s, RE_SV_TAIL(r->float_utf8),
8740                       (IV)r->float_min_offset, (UV)r->float_max_offset);
8741     }
8742     if (r->check_substr || r->check_utf8)
8743         PerlIO_printf(Perl_debug_log,
8744                       (const char *)
8745                       (r->check_substr == r->float_substr
8746                        && r->check_utf8 == r->float_utf8
8747                        ? "(checking floating" : "(checking anchored"));
8748     if (r->extflags & RXf_NOSCAN)
8749         PerlIO_printf(Perl_debug_log, " noscan");
8750     if (r->extflags & RXf_CHECK_ALL)
8751         PerlIO_printf(Perl_debug_log, " isall");
8752     if (r->check_substr || r->check_utf8)
8753         PerlIO_printf(Perl_debug_log, ") ");
8754
8755     if (ri->regstclass) {
8756         regprop(r, sv, ri->regstclass);
8757         PerlIO_printf(Perl_debug_log, "stclass %s ", SvPVX_const(sv));
8758     }
8759     if (r->extflags & RXf_ANCH) {
8760         PerlIO_printf(Perl_debug_log, "anchored");
8761         if (r->extflags & RXf_ANCH_BOL)
8762             PerlIO_printf(Perl_debug_log, "(BOL)");
8763         if (r->extflags & RXf_ANCH_MBOL)
8764             PerlIO_printf(Perl_debug_log, "(MBOL)");
8765         if (r->extflags & RXf_ANCH_SBOL)
8766             PerlIO_printf(Perl_debug_log, "(SBOL)");
8767         if (r->extflags & RXf_ANCH_GPOS)
8768             PerlIO_printf(Perl_debug_log, "(GPOS)");
8769         PerlIO_putc(Perl_debug_log, ' ');
8770     }
8771     if (r->extflags & RXf_GPOS_SEEN)
8772         PerlIO_printf(Perl_debug_log, "GPOS:%"UVuf" ", (UV)r->gofs);
8773     if (r->intflags & PREGf_SKIP)
8774         PerlIO_printf(Perl_debug_log, "plus ");
8775     if (r->intflags & PREGf_IMPLICIT)
8776         PerlIO_printf(Perl_debug_log, "implicit ");
8777     PerlIO_printf(Perl_debug_log, "minlen %"IVdf" ", (IV)r->minlen);
8778     if (r->extflags & RXf_EVAL_SEEN)
8779         PerlIO_printf(Perl_debug_log, "with eval ");
8780     PerlIO_printf(Perl_debug_log, "\n");
8781     DEBUG_FLAGS_r(regdump_extflags("r->extflags: ",r->extflags));            
8782 #else
8783     PERL_UNUSED_CONTEXT;
8784     PERL_UNUSED_ARG(r);
8785 #endif  /* DEBUGGING */
8786 }
8787
8788 /*
8789 - regprop - printable representation of opcode
8790 */
8791 void
8792 Perl_regprop(pTHX_ const regexp *prog, SV *sv, const regnode *o)
8793 {
8794 #ifdef DEBUGGING
8795     dVAR;
8796     register int k;
8797     RXi_GET_DECL(prog,progi);
8798     GET_RE_DEBUG_FLAGS_DECL;
8799     
8800
8801     sv_setpvn(sv, "", 0);
8802
8803     if (OP(o) > REGNODE_MAX)            /* regnode.type is unsigned */
8804         /* It would be nice to FAIL() here, but this may be called from
8805            regexec.c, and it would be hard to supply pRExC_state. */
8806         Perl_croak(aTHX_ "Corrupted regexp opcode %d > %d", (int)OP(o), (int)REGNODE_MAX);
8807     sv_catpv(sv, PL_reg_name[OP(o)]); /* Take off const! */
8808
8809     k = PL_regkind[OP(o)];
8810
8811     if (k == EXACT) {
8812         sv_catpvs(sv, " ");
8813         /* Using is_utf8_string() (via PERL_PV_UNI_DETECT) 
8814          * is a crude hack but it may be the best for now since 
8815          * we have no flag "this EXACTish node was UTF-8" 
8816          * --jhi */
8817         pv_pretty(sv, STRING(o), STR_LEN(o), 60, PL_colors[0], PL_colors[1],
8818                   PERL_PV_ESCAPE_UNI_DETECT |
8819                   PERL_PV_PRETTY_ELLIPSES   |
8820                   PERL_PV_PRETTY_LTGT       |
8821                   PERL_PV_PRETTY_NOCLEAR
8822                   );
8823     } else if (k == TRIE) {
8824         /* print the details of the trie in dumpuntil instead, as
8825          * progi->data isn't available here */
8826         const char op = OP(o);
8827         const U32 n = ARG(o);
8828         const reg_ac_data * const ac = IS_TRIE_AC(op) ?
8829                (reg_ac_data *)progi->data->data[n] :
8830                NULL;
8831         const reg_trie_data * const trie
8832             = (reg_trie_data*)progi->data->data[!IS_TRIE_AC(op) ? n : ac->trie];
8833         
8834         Perl_sv_catpvf(aTHX_ sv, "-%s",PL_reg_name[o->flags]);
8835         DEBUG_TRIE_COMPILE_r(
8836             Perl_sv_catpvf(aTHX_ sv,
8837                 "<S:%"UVuf"/%"IVdf" W:%"UVuf" L:%"UVuf"/%"UVuf" C:%"UVuf"/%"UVuf">",
8838                 (UV)trie->startstate,
8839                 (IV)trie->statecount-1, /* -1 because of the unused 0 element */
8840                 (UV)trie->wordcount,
8841                 (UV)trie->minlen,
8842                 (UV)trie->maxlen,
8843                 (UV)TRIE_CHARCOUNT(trie),
8844                 (UV)trie->uniquecharcount
8845             )
8846         );
8847         if ( IS_ANYOF_TRIE(op) || trie->bitmap ) {
8848             int i;
8849             int rangestart = -1;
8850             U8* bitmap = IS_ANYOF_TRIE(op) ? (U8*)ANYOF_BITMAP(o) : (U8*)TRIE_BITMAP(trie);
8851             sv_catpvs(sv, "[");
8852             for (i = 0; i <= 256; i++) {
8853                 if (i < 256 && BITMAP_TEST(bitmap,i)) {
8854                     if (rangestart == -1)
8855                         rangestart = i;
8856                 } else if (rangestart != -1) {
8857                     if (i <= rangestart + 3)
8858                         for (; rangestart < i; rangestart++)
8859                             put_byte(sv, rangestart);
8860                     else {
8861                         put_byte(sv, rangestart);
8862                         sv_catpvs(sv, "-");
8863                         put_byte(sv, i - 1);
8864                     }
8865                     rangestart = -1;
8866                 }
8867             }
8868             sv_catpvs(sv, "]");
8869         } 
8870          
8871     } else if (k == CURLY) {
8872         if (OP(o) == CURLYM || OP(o) == CURLYN || OP(o) == CURLYX)
8873             Perl_sv_catpvf(aTHX_ sv, "[%d]", o->flags); /* Parenth number */
8874         Perl_sv_catpvf(aTHX_ sv, " {%d,%d}", ARG1(o), ARG2(o));
8875     }
8876     else if (k == WHILEM && o->flags)                   /* Ordinal/of */
8877         Perl_sv_catpvf(aTHX_ sv, "[%d/%d]", o->flags & 0xf, o->flags>>4);
8878     else if (k == REF || k == OPEN || k == CLOSE || k == GROUPP || OP(o)==ACCEPT) {
8879         Perl_sv_catpvf(aTHX_ sv, "%d", (int)ARG(o));    /* Parenth number */
8880         if ( prog->paren_names ) {
8881             if ( k != REF || OP(o) < NREF) {        
8882                 AV *list= (AV *)progi->data->data[progi->name_list_idx];
8883                 SV **name= av_fetch(list, ARG(o), 0 );
8884                 if (name)
8885                     Perl_sv_catpvf(aTHX_ sv, " '%"SVf"'", SVfARG(*name));
8886             }       
8887             else {
8888                 AV *list= (AV *)progi->data->data[ progi->name_list_idx ];
8889                 SV *sv_dat=(SV*)progi->data->data[ ARG( o ) ];
8890                 I32 *nums=(I32*)SvPVX(sv_dat);
8891                 SV **name= av_fetch(list, nums[0], 0 );
8892                 I32 n;
8893                 if (name) {
8894                     for ( n=0; n<SvIVX(sv_dat); n++ ) {
8895                         Perl_sv_catpvf(aTHX_ sv, "%s%"IVdf,
8896                                     (n ? "," : ""), (IV)nums[n]);
8897                     }
8898                     Perl_sv_catpvf(aTHX_ sv, " '%"SVf"'", SVfARG(*name));
8899                 }
8900             }
8901         }            
8902     } else if (k == GOSUB) 
8903         Perl_sv_catpvf(aTHX_ sv, "%d[%+d]", (int)ARG(o),(int)ARG2L(o)); /* Paren and offset */
8904     else if (k == VERB) {
8905         if (!o->flags) 
8906             Perl_sv_catpvf(aTHX_ sv, ":%"SVf, 
8907                 SVfARG((SV*)progi->data->data[ ARG( o ) ]));
8908     } else if (k == LOGICAL)
8909         Perl_sv_catpvf(aTHX_ sv, "[%d]", o->flags);     /* 2: embedded, otherwise 1 */
8910     else if (k == FOLDCHAR)
8911         Perl_sv_catpvf(aTHX_ sv, "[0x%"UVXf"]", PTR2UV(ARG(o)) );
8912     else if (k == ANYOF) {
8913         int i, rangestart = -1;
8914         const U8 flags = ANYOF_FLAGS(o);
8915
8916         /* Should be synchronized with * ANYOF_ #xdefines in regcomp.h */
8917         static const char * const anyofs[] = {
8918             "\\w",
8919             "\\W",
8920             "\\s",
8921             "\\S",
8922             "\\d",
8923             "\\D",
8924             "[:alnum:]",
8925             "[:^alnum:]",
8926             "[:alpha:]",
8927             "[:^alpha:]",
8928             "[:ascii:]",
8929             "[:^ascii:]",
8930             "[:ctrl:]",
8931             "[:^ctrl:]",
8932             "[:graph:]",
8933             "[:^graph:]",
8934             "[:lower:]",
8935             "[:^lower:]",
8936             "[:print:]",
8937             "[:^print:]",
8938             "[:punct:]",
8939             "[:^punct:]",
8940             "[:upper:]",
8941             "[:^upper:]",
8942             "[:xdigit:]",
8943             "[:^xdigit:]",
8944             "[:space:]",
8945             "[:^space:]",
8946             "[:blank:]",
8947             "[:^blank:]"
8948         };
8949
8950         if (flags & ANYOF_LOCALE)
8951             sv_catpvs(sv, "{loc}");
8952         if (flags & ANYOF_FOLD)
8953             sv_catpvs(sv, "{i}");
8954         Perl_sv_catpvf(aTHX_ sv, "[%s", PL_colors[0]);
8955         if (flags & ANYOF_INVERT)
8956             sv_catpvs(sv, "^");
8957         for (i = 0; i <= 256; i++) {
8958             if (i < 256 && ANYOF_BITMAP_TEST(o,i)) {
8959                 if (rangestart == -1)
8960                     rangestart = i;
8961             } else if (rangestart != -1) {
8962                 if (i <= rangestart + 3)
8963                     for (; rangestart < i; rangestart++)
8964                         put_byte(sv, rangestart);
8965                 else {
8966                     put_byte(sv, rangestart);
8967                     sv_catpvs(sv, "-");
8968                     put_byte(sv, i - 1);
8969                 }
8970                 rangestart = -1;
8971             }
8972         }
8973
8974         if (o->flags & ANYOF_CLASS)
8975             for (i = 0; i < (int)(sizeof(anyofs)/sizeof(char*)); i++)
8976                 if (ANYOF_CLASS_TEST(o,i))
8977                     sv_catpv(sv, anyofs[i]);
8978
8979         if (flags & ANYOF_UNICODE)
8980             sv_catpvs(sv, "{unicode}");
8981         else if (flags & ANYOF_UNICODE_ALL)
8982             sv_catpvs(sv, "{unicode_all}");
8983
8984         {
8985             SV *lv;
8986             SV * const sw = regclass_swash(prog, o, FALSE, &lv, 0);
8987         
8988             if (lv) {
8989                 if (sw) {
8990                     U8 s[UTF8_MAXBYTES_CASE+1];
8991                 
8992                     for (i = 0; i <= 256; i++) { /* just the first 256 */
8993                         uvchr_to_utf8(s, i);
8994                         
8995                         if (i < 256 && swash_fetch(sw, s, TRUE)) {
8996                             if (rangestart == -1)
8997                                 rangestart = i;
8998                         } else if (rangestart != -1) {
8999                             if (i <= rangestart + 3)
9000                                 for (; rangestart < i; rangestart++) {
9001                                     const U8 * const e = uvchr_to_utf8(s,rangestart);
9002                                     U8 *p;
9003                                     for(p = s; p < e; p++)
9004                                         put_byte(sv, *p);
9005                                 }
9006                             else {
9007                                 const U8 *e = uvchr_to_utf8(s,rangestart);
9008                                 U8 *p;
9009                                 for (p = s; p < e; p++)
9010                                     put_byte(sv, *p);
9011                                 sv_catpvs(sv, "-");
9012                                 e = uvchr_to_utf8(s, i-1);
9013                                 for (p = s; p < e; p++)
9014                                     put_byte(sv, *p);
9015                                 }
9016                                 rangestart = -1;
9017                             }
9018                         }
9019                         
9020                     sv_catpvs(sv, "..."); /* et cetera */
9021                 }
9022
9023                 {
9024                     char *s = savesvpv(lv);
9025                     char * const origs = s;
9026                 
9027                     while (*s && *s != '\n')
9028                         s++;
9029                 
9030                     if (*s == '\n') {
9031                         const char * const t = ++s;
9032                         
9033                         while (*s) {
9034                             if (*s == '\n')
9035                                 *s = ' ';
9036                             s++;
9037                         }
9038                         if (s[-1] == ' ')
9039                             s[-1] = 0;
9040                         
9041                         sv_catpv(sv, t);
9042                     }
9043                 
9044                     Safefree(origs);
9045                 }
9046             }
9047         }
9048
9049         Perl_sv_catpvf(aTHX_ sv, "%s]", PL_colors[1]);
9050     }
9051     else if (k == BRANCHJ && (OP(o) == UNLESSM || OP(o) == IFMATCH))
9052         Perl_sv_catpvf(aTHX_ sv, "[%d]", -(o->flags));
9053 #else
9054     PERL_UNUSED_CONTEXT;
9055     PERL_UNUSED_ARG(sv);
9056     PERL_UNUSED_ARG(o);
9057     PERL_UNUSED_ARG(prog);
9058 #endif  /* DEBUGGING */
9059 }
9060
9061 SV *
9062 Perl_re_intuit_string(pTHX_ REGEXP * const prog)
9063 {                               /* Assume that RE_INTUIT is set */
9064     dVAR;
9065     GET_RE_DEBUG_FLAGS_DECL;
9066     PERL_UNUSED_CONTEXT;
9067
9068     DEBUG_COMPILE_r(
9069         {
9070             const char * const s = SvPV_nolen_const(prog->check_substr
9071                       ? prog->check_substr : prog->check_utf8);
9072
9073             if (!PL_colorset) reginitcolors();
9074             PerlIO_printf(Perl_debug_log,
9075                       "%sUsing REx %ssubstr:%s \"%s%.60s%s%s\"\n",
9076                       PL_colors[4],
9077                       prog->check_substr ? "" : "utf8 ",
9078                       PL_colors[5],PL_colors[0],
9079                       s,
9080                       PL_colors[1],
9081                       (strlen(s) > 60 ? "..." : ""));
9082         } );
9083
9084     return prog->check_substr ? prog->check_substr : prog->check_utf8;
9085 }
9086
9087 /* 
9088    pregfree() 
9089    
9090    handles refcounting and freeing the perl core regexp structure. When 
9091    it is necessary to actually free the structure the first thing it 
9092    does is call the 'free' method of the regexp_engine associated to to 
9093    the regexp, allowing the handling of the void *pprivate; member 
9094    first. (This routine is not overridable by extensions, which is why 
9095    the extensions free is called first.)
9096    
9097    See regdupe and regdupe_internal if you change anything here. 
9098 */
9099 #ifndef PERL_IN_XSUB_RE
9100 void
9101 Perl_pregfree(pTHX_ struct regexp *r)
9102 {
9103     dVAR;
9104     GET_RE_DEBUG_FLAGS_DECL;
9105
9106     if (!r || (--r->refcnt > 0))
9107         return;
9108     if (r->mother_re) {
9109         ReREFCNT_dec(r->mother_re);
9110     } else {
9111         CALLREGFREE_PVT(r); /* free the private data */
9112         if (r->paren_names)
9113             SvREFCNT_dec(r->paren_names);
9114         Safefree(r->wrapped);
9115     }        
9116     if (r->substrs) {
9117         if (r->anchored_substr)
9118             SvREFCNT_dec(r->anchored_substr);
9119         if (r->anchored_utf8)
9120             SvREFCNT_dec(r->anchored_utf8);
9121         if (r->float_substr)
9122             SvREFCNT_dec(r->float_substr);
9123         if (r->float_utf8)
9124             SvREFCNT_dec(r->float_utf8);
9125         Safefree(r->substrs);
9126     }
9127     RX_MATCH_COPY_FREE(r);
9128 #ifdef PERL_OLD_COPY_ON_WRITE
9129     if (r->saved_copy)
9130         SvREFCNT_dec(r->saved_copy);
9131 #endif
9132     Safefree(r->swap);
9133     Safefree(r->offs);
9134     Safefree(r);
9135 }
9136
9137 /*  reg_temp_copy()
9138     
9139     This is a hacky workaround to the structural issue of match results
9140     being stored in the regexp structure which is in turn stored in
9141     PL_curpm/PL_reg_curpm. The problem is that due to qr// the pattern
9142     could be PL_curpm in multiple contexts, and could require multiple
9143     result sets being associated with the pattern simultaneously, such
9144     as when doing a recursive match with (??{$qr})
9145     
9146     The solution is to make a lightweight copy of the regexp structure 
9147     when a qr// is returned from the code executed by (??{$qr}) this
9148     lightweight copy doesnt actually own any of its data except for
9149     the starp/end and the actual regexp structure itself. 
9150     
9151 */    
9152     
9153     
9154 regexp *
9155 Perl_reg_temp_copy (pTHX_ struct regexp *r) {
9156     regexp *ret;
9157     register const I32 npar = r->nparens+1;
9158     (void)ReREFCNT_inc(r);
9159     Newx(ret, 1, regexp);
9160     StructCopy(r, ret, regexp);
9161     Newx(ret->offs, npar, regexp_paren_pair);
9162     Copy(r->offs, ret->offs, npar, regexp_paren_pair);
9163     ret->refcnt = 1;
9164     if (r->substrs) {
9165         Newx(ret->substrs, 1, struct reg_substr_data);
9166         StructCopy(r->substrs, ret->substrs, struct reg_substr_data);
9167
9168         SvREFCNT_inc_void(ret->anchored_substr);
9169         SvREFCNT_inc_void(ret->anchored_utf8);
9170         SvREFCNT_inc_void(ret->float_substr);
9171         SvREFCNT_inc_void(ret->float_utf8);
9172
9173         /* check_substr and check_utf8, if non-NULL, point to either their
9174            anchored or float namesakes, and don't hold a second reference.  */
9175     }
9176     RX_MATCH_COPIED_off(ret);
9177 #ifdef PERL_OLD_COPY_ON_WRITE
9178     ret->saved_copy = NULL;
9179 #endif
9180     ret->mother_re = r; 
9181     ret->swap = NULL;
9182     
9183     return ret;
9184 }
9185 #endif
9186
9187 /* regfree_internal() 
9188
9189    Free the private data in a regexp. This is overloadable by 
9190    extensions. Perl takes care of the regexp structure in pregfree(), 
9191    this covers the *pprivate pointer which technically perldoesnt 
9192    know about, however of course we have to handle the 
9193    regexp_internal structure when no extension is in use. 
9194    
9195    Note this is called before freeing anything in the regexp 
9196    structure. 
9197  */
9198  
9199 void
9200 Perl_regfree_internal(pTHX_ REGEXP * const r)
9201 {
9202     dVAR;
9203     RXi_GET_DECL(r,ri);
9204     GET_RE_DEBUG_FLAGS_DECL;
9205     
9206     DEBUG_COMPILE_r({
9207         if (!PL_colorset)
9208             reginitcolors();
9209         {
9210             SV *dsv= sv_newmortal();
9211             RE_PV_QUOTED_DECL(s, (r->extflags & RXf_UTF8),
9212                 dsv, r->precomp, r->prelen, 60);
9213             PerlIO_printf(Perl_debug_log,"%sFreeing REx:%s %s\n", 
9214                 PL_colors[4],PL_colors[5],s);
9215         }
9216     });
9217 #ifdef RE_TRACK_PATTERN_OFFSETS
9218     if (ri->u.offsets)
9219         Safefree(ri->u.offsets);             /* 20010421 MJD */
9220 #endif
9221     if (ri->data) {
9222         int n = ri->data->count;
9223         PAD* new_comppad = NULL;
9224         PAD* old_comppad;
9225         PADOFFSET refcnt;
9226
9227         while (--n >= 0) {
9228           /* If you add a ->what type here, update the comment in regcomp.h */
9229             switch (ri->data->what[n]) {
9230             case 's':
9231             case 'S':
9232             case 'u':
9233                 SvREFCNT_dec((SV*)ri->data->data[n]);
9234                 break;
9235             case 'f':
9236                 Safefree(ri->data->data[n]);
9237                 break;
9238             case 'p':
9239                 new_comppad = (AV*)ri->data->data[n];
9240                 break;
9241             case 'o':
9242                 if (new_comppad == NULL)
9243                     Perl_croak(aTHX_ "panic: pregfree comppad");
9244                 PAD_SAVE_LOCAL(old_comppad,
9245                     /* Watch out for global destruction's random ordering. */
9246                     (SvTYPE(new_comppad) == SVt_PVAV) ? new_comppad : NULL
9247                 );
9248                 OP_REFCNT_LOCK;
9249                 refcnt = OpREFCNT_dec((OP_4tree*)ri->data->data[n]);
9250                 OP_REFCNT_UNLOCK;
9251                 if (!refcnt)
9252                     op_free((OP_4tree*)ri->data->data[n]);
9253
9254                 PAD_RESTORE_LOCAL(old_comppad);
9255                 SvREFCNT_dec((SV*)new_comppad);
9256                 new_comppad = NULL;
9257                 break;
9258             case 'n':
9259                 break;
9260             case 'T':           
9261                 { /* Aho Corasick add-on structure for a trie node.
9262                      Used in stclass optimization only */
9263                     U32 refcount;
9264                     reg_ac_data *aho=(reg_ac_data*)ri->data->data[n];
9265                     OP_REFCNT_LOCK;
9266                     refcount = --aho->refcount;
9267                     OP_REFCNT_UNLOCK;
9268                     if ( !refcount ) {
9269                         PerlMemShared_free(aho->states);
9270                         PerlMemShared_free(aho->fail);
9271                          /* do this last!!!! */
9272                         PerlMemShared_free(ri->data->data[n]);
9273                         PerlMemShared_free(ri->regstclass);
9274                     }
9275                 }
9276                 break;
9277             case 't':
9278                 {
9279                     /* trie structure. */
9280                     U32 refcount;
9281                     reg_trie_data *trie=(reg_trie_data*)ri->data->data[n];
9282                     OP_REFCNT_LOCK;
9283                     refcount = --trie->refcount;
9284                     OP_REFCNT_UNLOCK;
9285                     if ( !refcount ) {
9286                         PerlMemShared_free(trie->charmap);
9287                         PerlMemShared_free(trie->states);
9288                         PerlMemShared_free(trie->trans);
9289                         if (trie->bitmap)
9290                             PerlMemShared_free(trie->bitmap);
9291                         if (trie->wordlen)
9292                             PerlMemShared_free(trie->wordlen);
9293                         if (trie->jump)
9294                             PerlMemShared_free(trie->jump);
9295                         if (trie->nextword)
9296                             PerlMemShared_free(trie->nextword);
9297                         /* do this last!!!! */
9298                         PerlMemShared_free(ri->data->data[n]);
9299                     }
9300                 }
9301                 break;
9302             default:
9303                 Perl_croak(aTHX_ "panic: regfree data code '%c'", ri->data->what[n]);
9304             }
9305         }
9306         Safefree(ri->data->what);
9307         Safefree(ri->data);
9308     }
9309
9310     Safefree(ri);
9311 }
9312
9313 #define sv_dup_inc(s,t) SvREFCNT_inc(sv_dup(s,t))
9314 #define av_dup_inc(s,t) (AV*)SvREFCNT_inc(sv_dup((SV*)s,t))
9315 #define hv_dup_inc(s,t) (HV*)SvREFCNT_inc(sv_dup((SV*)s,t))
9316 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
9317
9318 /* 
9319    re_dup - duplicate a regexp. 
9320    
9321    This routine is expected to clone a given regexp structure. It is not
9322    compiler under USE_ITHREADS.
9323
9324    After all of the core data stored in struct regexp is duplicated
9325    the regexp_engine.dupe method is used to copy any private data
9326    stored in the *pprivate pointer. This allows extensions to handle
9327    any duplication it needs to do.
9328
9329    See pregfree() and regfree_internal() if you change anything here. 
9330 */
9331 #if defined(USE_ITHREADS)
9332 #ifndef PERL_IN_XSUB_RE
9333 regexp *
9334 Perl_re_dup(pTHX_ const regexp *r, CLONE_PARAMS *param)
9335 {
9336     dVAR;
9337     regexp *ret;
9338     I32 npar;
9339
9340     if (!r)
9341         return (REGEXP *)NULL;
9342
9343     if ((ret = (REGEXP *)ptr_table_fetch(PL_ptr_table, r)))
9344         return ret;
9345
9346     
9347     npar = r->nparens+1;
9348     Newx(ret, 1, regexp);
9349     StructCopy(r, ret, regexp);
9350     Newx(ret->offs, npar, regexp_paren_pair);
9351     Copy(r->offs, ret->offs, npar, regexp_paren_pair);
9352     if(ret->swap) {
9353         /* no need to copy these */
9354         Newx(ret->swap, npar, regexp_paren_pair);
9355     }
9356
9357     if (ret->substrs) {
9358         /* Do it this way to avoid reading from *r after the StructCopy().
9359            That way, if any of the sv_dup_inc()s dislodge *r from the L1
9360            cache, it doesn't matter.  */
9361         const bool anchored = r->check_substr == r->anchored_substr;
9362         Newx(ret->substrs, 1, struct reg_substr_data);
9363         StructCopy(r->substrs, ret->substrs, struct reg_substr_data);
9364
9365         ret->anchored_substr = sv_dup_inc(ret->anchored_substr, param);
9366         ret->anchored_utf8 = sv_dup_inc(ret->anchored_utf8, param);
9367         ret->float_substr = sv_dup_inc(ret->float_substr, param);
9368         ret->float_utf8 = sv_dup_inc(ret->float_utf8, param);
9369
9370         /* check_substr and check_utf8, if non-NULL, point to either their
9371            anchored or float namesakes, and don't hold a second reference.  */
9372
9373         if (ret->check_substr) {
9374             if (anchored) {
9375                 assert(r->check_utf8 == r->anchored_utf8);
9376                 ret->check_substr = ret->anchored_substr;
9377                 ret->check_utf8 = ret->anchored_utf8;
9378             } else {
9379                 assert(r->check_substr == r->float_substr);
9380                 assert(r->check_utf8 == r->float_utf8);
9381                 ret->check_substr = ret->float_substr;
9382                 ret->check_utf8 = ret->float_utf8;
9383             }
9384         }
9385     }
9386
9387     ret->wrapped        = SAVEPVN(ret->wrapped, ret->wraplen+1);
9388     ret->precomp        = ret->wrapped + (ret->precomp - ret->wrapped);
9389     ret->paren_names    = hv_dup_inc(ret->paren_names, param);
9390
9391     if (ret->pprivate)
9392         RXi_SET(ret,CALLREGDUPE_PVT(ret,param));
9393
9394     if (RX_MATCH_COPIED(ret))
9395         ret->subbeg  = SAVEPVN(ret->subbeg, ret->sublen);
9396     else
9397         ret->subbeg = NULL;
9398 #ifdef PERL_OLD_COPY_ON_WRITE
9399     ret->saved_copy = NULL;
9400 #endif
9401
9402     ret->mother_re      = NULL;
9403     ret->gofs = 0;
9404     ret->seen_evals = 0;
9405     
9406     ptr_table_store(PL_ptr_table, r, ret);
9407     return ret;
9408 }
9409 #endif /* PERL_IN_XSUB_RE */
9410
9411 /*
9412    regdupe_internal()
9413    
9414    This is the internal complement to regdupe() which is used to copy
9415    the structure pointed to by the *pprivate pointer in the regexp.
9416    This is the core version of the extension overridable cloning hook.
9417    The regexp structure being duplicated will be copied by perl prior
9418    to this and will be provided as the regexp *r argument, however 
9419    with the /old/ structures pprivate pointer value. Thus this routine
9420    may override any copying normally done by perl.
9421    
9422    It returns a pointer to the new regexp_internal structure.
9423 */
9424
9425 void *
9426 Perl_regdupe_internal(pTHX_ REGEXP * const r, CLONE_PARAMS *param)
9427 {
9428     dVAR;
9429     regexp_internal *reti;
9430     int len, npar;
9431     RXi_GET_DECL(r,ri);
9432     
9433     npar = r->nparens+1;
9434     len = ProgLen(ri);
9435     
9436     Newxc(reti, sizeof(regexp_internal) + (len+1)*sizeof(regnode), char, regexp_internal);
9437     Copy(ri->program, reti->program, len+1, regnode);
9438     
9439
9440     reti->regstclass = NULL;
9441
9442     if (ri->data) {
9443         struct reg_data *d;
9444         const int count = ri->data->count;
9445         int i;
9446
9447         Newxc(d, sizeof(struct reg_data) + count*sizeof(void *),
9448                 char, struct reg_data);
9449         Newx(d->what, count, U8);
9450
9451         d->count = count;
9452         for (i = 0; i < count; i++) {
9453             d->what[i] = ri->data->what[i];
9454             switch (d->what[i]) {
9455                 /* legal options are one of: sSfpontTu
9456                    see also regcomp.h and pregfree() */
9457             case 's':
9458             case 'S':
9459             case 'p': /* actually an AV, but the dup function is identical.  */
9460             case 'u': /* actually an HV, but the dup function is identical.  */
9461                 d->data[i] = sv_dup_inc((SV *)ri->data->data[i], param);
9462                 break;
9463             case 'f':
9464                 /* This is cheating. */
9465                 Newx(d->data[i], 1, struct regnode_charclass_class);
9466                 StructCopy(ri->data->data[i], d->data[i],
9467                             struct regnode_charclass_class);
9468                 reti->regstclass = (regnode*)d->data[i];
9469                 break;
9470             case 'o':
9471                 /* Compiled op trees are readonly and in shared memory,
9472                    and can thus be shared without duplication. */
9473                 OP_REFCNT_LOCK;
9474                 d->data[i] = (void*)OpREFCNT_inc((OP*)ri->data->data[i]);
9475                 OP_REFCNT_UNLOCK;
9476                 break;
9477             case 'T':
9478                 /* Trie stclasses are readonly and can thus be shared
9479                  * without duplication. We free the stclass in pregfree
9480                  * when the corresponding reg_ac_data struct is freed.
9481                  */
9482                 reti->regstclass= ri->regstclass;
9483                 /* Fall through */
9484             case 't':
9485                 OP_REFCNT_LOCK;
9486                 ((reg_trie_data*)ri->data->data[i])->refcount++;
9487                 OP_REFCNT_UNLOCK;
9488                 /* Fall through */
9489             case 'n':
9490                 d->data[i] = ri->data->data[i];
9491                 break;
9492             default:
9493                 Perl_croak(aTHX_ "panic: re_dup unknown data code '%c'", ri->data->what[i]);
9494             }
9495         }
9496
9497         reti->data = d;
9498     }
9499     else
9500         reti->data = NULL;
9501
9502     reti->name_list_idx = ri->name_list_idx;
9503
9504 #ifdef RE_TRACK_PATTERN_OFFSETS
9505     if (ri->u.offsets) {
9506         Newx(reti->u.offsets, 2*len+1, U32);
9507         Copy(ri->u.offsets, reti->u.offsets, 2*len+1, U32);
9508     }
9509 #else
9510     SetProgLen(reti,len);
9511 #endif
9512
9513     return (void*)reti;
9514 }
9515
9516 #endif    /* USE_ITHREADS */
9517
9518 /* 
9519    reg_stringify() 
9520    
9521    converts a regexp embedded in a MAGIC struct to its stringified form, 
9522    caching the converted form in the struct and returns the cached 
9523    string. 
9524
9525    If lp is nonnull then it is used to return the length of the 
9526    resulting string
9527    
9528    If flags is nonnull and the returned string contains UTF8 then 
9529    (*flags & 1) will be true.
9530    
9531    If haseval is nonnull then it is used to return whether the pattern 
9532    contains evals.
9533    
9534    Normally called via macro: 
9535    
9536         CALLREG_STRINGIFY(mg,&len,&utf8);
9537         
9538    And internally with
9539    
9540         CALLREG_AS_STR(mg,&lp,&flags,&haseval)        
9541     
9542    See sv_2pv_flags() in sv.c for an example of internal usage.
9543     
9544  */
9545 #ifndef PERL_IN_XSUB_RE
9546
9547 char *
9548 Perl_reg_stringify(pTHX_ MAGIC *mg, STRLEN *lp, U32 *flags, I32 *haseval ) {
9549     dVAR;
9550     const regexp * const re = (regexp *)mg->mg_obj;
9551     if (haseval) 
9552         *haseval = re->seen_evals;
9553     if (flags)    
9554         *flags = ((re->extflags & RXf_UTF8) ? 1 : 0);
9555     if (lp)
9556         *lp = re->wraplen;
9557     return re->wrapped;
9558 }
9559
9560 /*
9561  - regnext - dig the "next" pointer out of a node
9562  */
9563 regnode *
9564 Perl_regnext(pTHX_ register regnode *p)
9565 {
9566     dVAR;
9567     register I32 offset;
9568
9569     if (!p)
9570         return(NULL);
9571
9572     offset = (reg_off_by_arg[OP(p)] ? ARG(p) : NEXT_OFF(p));
9573     if (offset == 0)
9574         return(NULL);
9575
9576     return(p+offset);
9577 }
9578 #endif
9579
9580 STATIC void     
9581 S_re_croak2(pTHX_ const char* pat1,const char* pat2,...)
9582 {
9583     va_list args;
9584     STRLEN l1 = strlen(pat1);
9585     STRLEN l2 = strlen(pat2);
9586     char buf[512];
9587     SV *msv;
9588     const char *message;
9589
9590     if (l1 > 510)
9591         l1 = 510;
9592     if (l1 + l2 > 510)
9593         l2 = 510 - l1;
9594     Copy(pat1, buf, l1 , char);
9595     Copy(pat2, buf + l1, l2 , char);
9596     buf[l1 + l2] = '\n';
9597     buf[l1 + l2 + 1] = '\0';
9598 #ifdef I_STDARG
9599     /* ANSI variant takes additional second argument */
9600     va_start(args, pat2);
9601 #else
9602     va_start(args);
9603 #endif
9604     msv = vmess(buf, &args);
9605     va_end(args);
9606     message = SvPV_const(msv,l1);
9607     if (l1 > 512)
9608         l1 = 512;
9609     Copy(message, buf, l1 , char);
9610     buf[l1-1] = '\0';                   /* Overwrite \n */
9611     Perl_croak(aTHX_ "%s", buf);
9612 }
9613
9614 /* XXX Here's a total kludge.  But we need to re-enter for swash routines. */
9615
9616 #ifndef PERL_IN_XSUB_RE
9617 void
9618 Perl_save_re_context(pTHX)
9619 {
9620     dVAR;
9621
9622     struct re_save_state *state;
9623
9624     SAVEVPTR(PL_curcop);
9625     SSGROW(SAVESTACK_ALLOC_FOR_RE_SAVE_STATE + 1);
9626
9627     state = (struct re_save_state *)(PL_savestack + PL_savestack_ix);
9628     PL_savestack_ix += SAVESTACK_ALLOC_FOR_RE_SAVE_STATE;
9629     SSPUSHINT(SAVEt_RE_STATE);
9630
9631     Copy(&PL_reg_state, state, 1, struct re_save_state);
9632
9633     PL_reg_start_tmp = 0;
9634     PL_reg_start_tmpl = 0;
9635     PL_reg_oldsaved = NULL;
9636     PL_reg_oldsavedlen = 0;
9637     PL_reg_maxiter = 0;
9638     PL_reg_leftiter = 0;
9639     PL_reg_poscache = NULL;
9640     PL_reg_poscache_size = 0;
9641 #ifdef PERL_OLD_COPY_ON_WRITE
9642     PL_nrs = NULL;
9643 #endif
9644
9645     /* Save $1..$n (#18107: UTF-8 s/(\w+)/uc($1)/e); AMS 20021106. */
9646     if (PL_curpm) {
9647         const REGEXP * const rx = PM_GETRE(PL_curpm);
9648         if (rx) {
9649             U32 i;
9650             for (i = 1; i <= rx->nparens; i++) {
9651                 char digits[TYPE_CHARS(long)];
9652                 const STRLEN len = my_snprintf(digits, sizeof(digits), "%lu", (long)i);
9653                 GV *const *const gvp
9654                     = (GV**)hv_fetch(PL_defstash, digits, len, 0);
9655
9656                 if (gvp) {
9657                     GV * const gv = *gvp;
9658                     if (SvTYPE(gv) == SVt_PVGV && GvSV(gv))
9659                         save_scalar(gv);
9660                 }
9661             }
9662         }
9663     }
9664 }
9665 #endif
9666
9667 static void
9668 clear_re(pTHX_ void *r)
9669 {
9670     dVAR;
9671     ReREFCNT_dec((regexp *)r);
9672 }
9673
9674 #ifdef DEBUGGING
9675
9676 STATIC void
9677 S_put_byte(pTHX_ SV *sv, int c)
9678 {
9679     /* Our definition of isPRINT() ignores locales, so only bytes that are
9680        not part of UTF-8 are considered printable. I assume that the same
9681        holds for UTF-EBCDIC.
9682        Also, code point 255 is not printable in either (it's E0 in EBCDIC,
9683        which Wikipedia says:
9684
9685        EO, or Eight Ones, is an 8-bit EBCDIC character code represented as all
9686        ones (binary 1111 1111, hexadecimal FF). It is similar, but not
9687        identical, to the ASCII delete (DEL) or rubout control character.
9688        ) So the old condition can be simplified to !isPRINT(c)  */
9689     if (!isPRINT(c))
9690         Perl_sv_catpvf(aTHX_ sv, "\\%o", c);
9691     else {
9692         const char string = c;
9693         if (c == '-' || c == ']' || c == '\\' || c == '^')
9694             sv_catpvs(sv, "\\");
9695         sv_catpvn(sv, &string, 1);
9696     }
9697 }
9698
9699
9700 #define CLEAR_OPTSTART \
9701     if (optstart) STMT_START { \
9702             DEBUG_OPTIMISE_r(PerlIO_printf(Perl_debug_log, " (%"IVdf" nodes)\n", (IV)(node - optstart))); \
9703             optstart=NULL; \
9704     } STMT_END
9705
9706 #define DUMPUNTIL(b,e) CLEAR_OPTSTART; node=dumpuntil(r,start,(b),(e),last,sv,indent+1,depth+1);
9707
9708 STATIC const regnode *
9709 S_dumpuntil(pTHX_ const regexp *r, const regnode *start, const regnode *node,
9710             const regnode *last, const regnode *plast, 
9711             SV* sv, I32 indent, U32 depth)
9712 {
9713     dVAR;
9714     register U8 op = PSEUDO;    /* Arbitrary non-END op. */
9715     register const regnode *next;
9716     const regnode *optstart= NULL;
9717     
9718     RXi_GET_DECL(r,ri);
9719     GET_RE_DEBUG_FLAGS_DECL;
9720     
9721 #ifdef DEBUG_DUMPUNTIL
9722     PerlIO_printf(Perl_debug_log, "--- %d : %d - %d - %d\n",indent,node-start,
9723         last ? last-start : 0,plast ? plast-start : 0);
9724 #endif
9725             
9726     if (plast && plast < last) 
9727         last= plast;
9728
9729     while (PL_regkind[op] != END && (!last || node < last)) {
9730         /* While that wasn't END last time... */
9731         NODE_ALIGN(node);
9732         op = OP(node);
9733         if (op == CLOSE || op == WHILEM)
9734             indent--;
9735         next = regnext((regnode *)node);
9736
9737         /* Where, what. */
9738         if (OP(node) == OPTIMIZED) {
9739             if (!optstart && RE_DEBUG_FLAG(RE_DEBUG_COMPILE_OPTIMISE))
9740                 optstart = node;
9741             else
9742                 goto after_print;
9743         } else
9744             CLEAR_OPTSTART;
9745         
9746         regprop(r, sv, node);
9747         PerlIO_printf(Perl_debug_log, "%4"IVdf":%*s%s", (IV)(node - start),
9748                       (int)(2*indent + 1), "", SvPVX_const(sv));
9749         
9750         if (OP(node) != OPTIMIZED) {                  
9751             if (next == NULL)           /* Next ptr. */
9752                 PerlIO_printf(Perl_debug_log, " (0)");
9753             else if (PL_regkind[(U8)op] == BRANCH && PL_regkind[OP(next)] != BRANCH )
9754                 PerlIO_printf(Perl_debug_log, " (FAIL)");
9755             else 
9756                 PerlIO_printf(Perl_debug_log, " (%"IVdf")", (IV)(next - start));
9757             (void)PerlIO_putc(Perl_debug_log, '\n'); 
9758         }
9759         
9760       after_print:
9761         if (PL_regkind[(U8)op] == BRANCHJ) {
9762             assert(next);
9763             {
9764                 register const regnode *nnode = (OP(next) == LONGJMP
9765                                              ? regnext((regnode *)next)
9766                                              : next);
9767                 if (last && nnode > last)
9768                     nnode = last;
9769                 DUMPUNTIL(NEXTOPER(NEXTOPER(node)), nnode);
9770             }
9771         }
9772         else if (PL_regkind[(U8)op] == BRANCH) {
9773             assert(next);
9774             DUMPUNTIL(NEXTOPER(node), next);
9775         }
9776         else if ( PL_regkind[(U8)op]  == TRIE ) {
9777             const regnode *this_trie = node;
9778             const char op = OP(node);
9779             const U32 n = ARG(node);
9780             const reg_ac_data * const ac = op>=AHOCORASICK ?
9781                (reg_ac_data *)ri->data->data[n] :
9782                NULL;
9783             const reg_trie_data * const trie =
9784                 (reg_trie_data*)ri->data->data[op<AHOCORASICK ? n : ac->trie];
9785 #ifdef DEBUGGING
9786             AV *const trie_words = (AV *) ri->data->data[n + TRIE_WORDS_OFFSET];
9787 #endif
9788             const regnode *nextbranch= NULL;
9789             I32 word_idx;
9790             sv_setpvn(sv, "", 0);
9791             for (word_idx= 0; word_idx < (I32)trie->wordcount; word_idx++) {
9792                 SV ** const elem_ptr = av_fetch(trie_words,word_idx,0);
9793                 
9794                 PerlIO_printf(Perl_debug_log, "%*s%s ",
9795                    (int)(2*(indent+3)), "",
9796                     elem_ptr ? pv_pretty(sv, SvPV_nolen_const(*elem_ptr), SvCUR(*elem_ptr), 60,
9797                             PL_colors[0], PL_colors[1],
9798                             (SvUTF8(*elem_ptr) ? PERL_PV_ESCAPE_UNI : 0) |
9799                             PERL_PV_PRETTY_ELLIPSES    |
9800                             PERL_PV_PRETTY_LTGT
9801                             )
9802                             : "???"
9803                 );
9804                 if (trie->jump) {
9805                     U16 dist= trie->jump[word_idx+1];
9806                     PerlIO_printf(Perl_debug_log, "(%"UVuf")\n",
9807                                   (UV)((dist ? this_trie + dist : next) - start));
9808                     if (dist) {
9809                         if (!nextbranch)
9810                             nextbranch= this_trie + trie->jump[0];    
9811                         DUMPUNTIL(this_trie + dist, nextbranch);
9812                     }
9813                     if (nextbranch && PL_regkind[OP(nextbranch)]==BRANCH)
9814                         nextbranch= regnext((regnode *)nextbranch);
9815                 } else {
9816                     PerlIO_printf(Perl_debug_log, "\n");
9817                 }
9818             }
9819             if (last && next > last)
9820                 node= last;
9821             else
9822                 node= next;
9823         }
9824         else if ( op == CURLY ) {   /* "next" might be very big: optimizer */
9825             DUMPUNTIL(NEXTOPER(node) + EXTRA_STEP_2ARGS,
9826                     NEXTOPER(node) + EXTRA_STEP_2ARGS + 1);
9827         }
9828         else if (PL_regkind[(U8)op] == CURLY && op != CURLYX) {
9829             assert(next);
9830             DUMPUNTIL(NEXTOPER(node) + EXTRA_STEP_2ARGS, next);
9831         }
9832         else if ( op == PLUS || op == STAR) {
9833             DUMPUNTIL(NEXTOPER(node), NEXTOPER(node) + 1);
9834         }
9835         else if (op == ANYOF) {
9836             /* arglen 1 + class block */
9837             node += 1 + ((ANYOF_FLAGS(node) & ANYOF_LARGE)
9838                     ? ANYOF_CLASS_SKIP : ANYOF_SKIP);
9839             node = NEXTOPER(node);
9840         }
9841         else if (PL_regkind[(U8)op] == EXACT) {
9842             /* Literal string, where present. */
9843             node += NODE_SZ_STR(node) - 1;
9844             node = NEXTOPER(node);
9845         }
9846         else {
9847             node = NEXTOPER(node);
9848             node += regarglen[(U8)op];
9849         }
9850         if (op == CURLYX || op == OPEN)
9851             indent++;
9852     }
9853     CLEAR_OPTSTART;
9854 #ifdef DEBUG_DUMPUNTIL    
9855     PerlIO_printf(Perl_debug_log, "--- %d\n", (int)indent);
9856 #endif
9857     return node;
9858 }
9859
9860 #endif  /* DEBUGGING */
9861
9862 /*
9863  * Local variables:
9864  * c-indentation-style: bsd
9865  * c-basic-offset: 4
9866  * indent-tabs-mode: t
9867  * End:
9868  *
9869  * ex: set ts=8 sts=4 sw=4 noet:
9870  */