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