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