This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Stop pos from panicking when overloading changes UTF8ness
[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 extern const struct regexp_engine my_reg_engine;
85 #else
86 #  include "regcomp.h"
87 #endif
88
89 #include "dquote_static.c"
90 #include "charclass_invlists.h"
91 #include "inline_invlist.c"
92 #include "unicode_constants.h"
93
94 #ifdef HAS_ISBLANK
95 #   define hasISBLANK 1
96 #else
97 #   define hasISBLANK 0
98 #endif
99
100 #define HAS_NONLATIN1_FOLD_CLOSURE(i) _HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(i)
101 #define IS_NON_FINAL_FOLD(c) _IS_NON_FINAL_FOLD_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c)
102
103 #ifdef op
104 #undef op
105 #endif /* op */
106
107 #ifdef MSDOS
108 #  if defined(BUGGY_MSC6)
109  /* MSC 6.00A breaks on op/regexp.t test 85 unless we turn this off */
110 #    pragma optimize("a",off)
111  /* But MSC 6.00A is happy with 'w', for aliases only across function calls*/
112 #    pragma optimize("w",on )
113 #  endif /* BUGGY_MSC6 */
114 #endif /* MSDOS */
115
116 #ifndef STATIC
117 #define STATIC  static
118 #endif
119
120
121 typedef struct RExC_state_t {
122     U32         flags;                  /* RXf_* are we folding, multilining? */
123     U32         pm_flags;               /* PMf_* stuff from the calling PMOP */
124     char        *precomp;               /* uncompiled string. */
125     REGEXP      *rx_sv;                 /* The SV that is the regexp. */
126     regexp      *rx;                    /* perl core regexp structure */
127     regexp_internal     *rxi;           /* internal data for regexp object pprivate field */        
128     char        *start;                 /* Start of input for compile */
129     char        *end;                   /* End of input for compile */
130     char        *parse;                 /* Input-scan pointer. */
131     I32         whilem_seen;            /* number of WHILEM in this expr */
132     regnode     *emit_start;            /* Start of emitted-code area */
133     regnode     *emit_bound;            /* First regnode outside of the allocated space */
134     regnode     *emit;                  /* Code-emit pointer; &regdummy = don't = compiling */
135     I32         naughty;                /* How bad is this pattern? */
136     I32         sawback;                /* Did we see \1, ...? */
137     U32         seen;
138     I32         size;                   /* Code size. */
139     I32         npar;                   /* Capture buffer count, (OPEN). */
140     I32         cpar;                   /* Capture buffer count, (CLOSE). */
141     I32         nestroot;               /* root parens we are in - used by accept */
142     I32         extralen;
143     I32         seen_zerolen;
144     regnode     **open_parens;          /* pointers to open parens */
145     regnode     **close_parens;         /* pointers to close parens */
146     regnode     *opend;                 /* END node in program */
147     I32         utf8;           /* whether the pattern is utf8 or not */
148     I32         orig_utf8;      /* whether the pattern was originally in utf8 */
149                                 /* XXX use this for future optimisation of case
150                                  * where pattern must be upgraded to utf8. */
151     I32         uni_semantics;  /* If a d charset modifier should use unicode
152                                    rules, even if the pattern is not in
153                                    utf8 */
154     HV          *paren_names;           /* Paren names */
155     
156     regnode     **recurse;              /* Recurse regops */
157     I32         recurse_count;          /* Number of recurse regops */
158     I32         in_lookbehind;
159     I32         contains_locale;
160     I32         override_recoding;
161     struct reg_code_block *code_blocks; /* positions of literal (?{})
162                                             within pattern */
163     int         num_code_blocks;        /* size of code_blocks[] */
164     int         code_index;             /* next code_blocks[] slot */
165 #if ADD_TO_REGEXEC
166     char        *starttry;              /* -Dr: where regtry was called. */
167 #define RExC_starttry   (pRExC_state->starttry)
168 #endif
169     SV          *runtime_code_qr;       /* qr with the runtime code blocks */
170 #ifdef DEBUGGING
171     const char  *lastparse;
172     I32         lastnum;
173     AV          *paren_name_list;       /* idx -> name */
174 #define RExC_lastparse  (pRExC_state->lastparse)
175 #define RExC_lastnum    (pRExC_state->lastnum)
176 #define RExC_paren_name_list    (pRExC_state->paren_name_list)
177 #endif
178 } RExC_state_t;
179
180 #define RExC_flags      (pRExC_state->flags)
181 #define RExC_pm_flags   (pRExC_state->pm_flags)
182 #define RExC_precomp    (pRExC_state->precomp)
183 #define RExC_rx_sv      (pRExC_state->rx_sv)
184 #define RExC_rx         (pRExC_state->rx)
185 #define RExC_rxi        (pRExC_state->rxi)
186 #define RExC_start      (pRExC_state->start)
187 #define RExC_end        (pRExC_state->end)
188 #define RExC_parse      (pRExC_state->parse)
189 #define RExC_whilem_seen        (pRExC_state->whilem_seen)
190 #ifdef RE_TRACK_PATTERN_OFFSETS
191 #define RExC_offsets    (pRExC_state->rxi->u.offsets) /* I am not like the others */
192 #endif
193 #define RExC_emit       (pRExC_state->emit)
194 #define RExC_emit_start (pRExC_state->emit_start)
195 #define RExC_emit_bound (pRExC_state->emit_bound)
196 #define RExC_naughty    (pRExC_state->naughty)
197 #define RExC_sawback    (pRExC_state->sawback)
198 #define RExC_seen       (pRExC_state->seen)
199 #define RExC_size       (pRExC_state->size)
200 #define RExC_npar       (pRExC_state->npar)
201 #define RExC_nestroot   (pRExC_state->nestroot)
202 #define RExC_extralen   (pRExC_state->extralen)
203 #define RExC_seen_zerolen       (pRExC_state->seen_zerolen)
204 #define RExC_utf8       (pRExC_state->utf8)
205 #define RExC_uni_semantics      (pRExC_state->uni_semantics)
206 #define RExC_orig_utf8  (pRExC_state->orig_utf8)
207 #define RExC_open_parens        (pRExC_state->open_parens)
208 #define RExC_close_parens       (pRExC_state->close_parens)
209 #define RExC_opend      (pRExC_state->opend)
210 #define RExC_paren_names        (pRExC_state->paren_names)
211 #define RExC_recurse    (pRExC_state->recurse)
212 #define RExC_recurse_count      (pRExC_state->recurse_count)
213 #define RExC_in_lookbehind      (pRExC_state->in_lookbehind)
214 #define RExC_contains_locale    (pRExC_state->contains_locale)
215 #define RExC_override_recoding  (pRExC_state->override_recoding)
216
217
218 #define ISMULT1(c)      ((c) == '*' || (c) == '+' || (c) == '?')
219 #define ISMULT2(s)      ((*s) == '*' || (*s) == '+' || (*s) == '?' || \
220         ((*s) == '{' && regcurly(s)))
221
222 #ifdef SPSTART
223 #undef SPSTART          /* dratted cpp namespace... */
224 #endif
225 /*
226  * Flags to be passed up and down.
227  */
228 #define WORST           0       /* Worst case. */
229 #define HASWIDTH        0x01    /* Known to match non-null strings. */
230
231 /* Simple enough to be STAR/PLUS operand; in an EXACT node must be a single
232  * character, and if utf8, must be invariant.  Note that this is not the same
233  * thing as REGNODE_SIMPLE */
234 #define SIMPLE          0x02
235 #define SPSTART         0x04    /* Starts with * or +. */
236 #define TRYAGAIN        0x08    /* Weeded out a declaration. */
237 #define POSTPONED       0x10    /* (?1),(?&name), (??{...}) or similar */
238
239 #define REG_NODE_NUM(x) ((x) ? (int)((x)-RExC_emit_start) : -1)
240
241 /* whether trie related optimizations are enabled */
242 #if PERL_ENABLE_EXTENDED_TRIE_OPTIMISATION
243 #define TRIE_STUDY_OPT
244 #define FULL_TRIE_STUDY
245 #define TRIE_STCLASS
246 #endif
247
248
249
250 #define PBYTE(u8str,paren) ((U8*)(u8str))[(paren) >> 3]
251 #define PBITVAL(paren) (1 << ((paren) & 7))
252 #define PAREN_TEST(u8str,paren) ( PBYTE(u8str,paren) & PBITVAL(paren))
253 #define PAREN_SET(u8str,paren) PBYTE(u8str,paren) |= PBITVAL(paren)
254 #define PAREN_UNSET(u8str,paren) PBYTE(u8str,paren) &= (~PBITVAL(paren))
255
256 /* If not already in utf8, do a longjmp back to the beginning */
257 #define UTF8_LONGJMP 42 /* Choose a value not likely to ever conflict */
258 #define REQUIRE_UTF8    STMT_START {                                       \
259                                      if (! UTF) JMPENV_JUMP(UTF8_LONGJMP); \
260                         } STMT_END
261
262 /* About scan_data_t.
263
264   During optimisation we recurse through the regexp program performing
265   various inplace (keyhole style) optimisations. In addition study_chunk
266   and scan_commit populate this data structure with information about
267   what strings MUST appear in the pattern. We look for the longest 
268   string that must appear at a fixed location, and we look for the
269   longest string that may appear at a floating location. So for instance
270   in the pattern:
271   
272     /FOO[xX]A.*B[xX]BAR/
273     
274   Both 'FOO' and 'A' are fixed strings. Both 'B' and 'BAR' are floating
275   strings (because they follow a .* construct). study_chunk will identify
276   both FOO and BAR as being the longest fixed and floating strings respectively.
277   
278   The strings can be composites, for instance
279   
280      /(f)(o)(o)/
281      
282   will result in a composite fixed substring 'foo'.
283   
284   For each string some basic information is maintained:
285   
286   - offset or min_offset
287     This is the position the string must appear at, or not before.
288     It also implicitly (when combined with minlenp) tells us how many
289     characters must match before the string we are searching for.
290     Likewise when combined with minlenp and the length of the string it
291     tells us how many characters must appear after the string we have 
292     found.
293   
294   - max_offset
295     Only used for floating strings. This is the rightmost point that
296     the string can appear at. If set to I32 max it indicates that the
297     string can occur infinitely far to the right.
298   
299   - minlenp
300     A pointer to the minimum length of the pattern that the string 
301     was found inside. This is important as in the case of positive 
302     lookahead or positive lookbehind we can have multiple patterns 
303     involved. Consider
304     
305     /(?=FOO).*F/
306     
307     The minimum length of the pattern overall is 3, the minimum length
308     of the lookahead part is 3, but the minimum length of the part that
309     will actually match is 1. So 'FOO's minimum length is 3, but the 
310     minimum length for the F is 1. This is important as the minimum length
311     is used to determine offsets in front of and behind the string being 
312     looked for.  Since strings can be composites this is the length of the
313     pattern at the time it was committed with a scan_commit. Note that
314     the length is calculated by study_chunk, so that the minimum lengths
315     are not known until the full pattern has been compiled, thus the 
316     pointer to the value.
317   
318   - lookbehind
319   
320     In the case of lookbehind the string being searched for can be
321     offset past the start point of the final matching string. 
322     If this value was just blithely removed from the min_offset it would
323     invalidate some of the calculations for how many chars must match
324     before or after (as they are derived from min_offset and minlen and
325     the length of the string being searched for). 
326     When the final pattern is compiled and the data is moved from the
327     scan_data_t structure into the regexp structure the information
328     about lookbehind is factored in, with the information that would 
329     have been lost precalculated in the end_shift field for the 
330     associated string.
331
332   The fields pos_min and pos_delta are used to store the minimum offset
333   and the delta to the maximum offset at the current point in the pattern.    
334
335 */
336
337 typedef struct scan_data_t {
338     /*I32 len_min;      unused */
339     /*I32 len_delta;    unused */
340     I32 pos_min;
341     I32 pos_delta;
342     SV *last_found;
343     I32 last_end;           /* min value, <0 unless valid. */
344     I32 last_start_min;
345     I32 last_start_max;
346     SV **longest;           /* Either &l_fixed, or &l_float. */
347     SV *longest_fixed;      /* longest fixed string found in pattern */
348     I32 offset_fixed;       /* offset where it starts */
349     I32 *minlen_fixed;      /* pointer to the minlen relevant to the string */
350     I32 lookbehind_fixed;   /* is the position of the string modfied by LB */
351     SV *longest_float;      /* longest floating string found in pattern */
352     I32 offset_float_min;   /* earliest point in string it can appear */
353     I32 offset_float_max;   /* latest point in string it can appear */
354     I32 *minlen_float;      /* pointer to the minlen relevant to the string */
355     I32 lookbehind_float;   /* is the position of the string modified by LB */
356     I32 flags;
357     I32 whilem_c;
358     I32 *last_closep;
359     struct regnode_charclass_class *start_class;
360 } scan_data_t;
361
362 /*
363  * Forward declarations for pregcomp()'s friends.
364  */
365
366 static const scan_data_t zero_scan_data =
367   { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ,0};
368
369 #define SF_BEFORE_EOL           (SF_BEFORE_SEOL|SF_BEFORE_MEOL)
370 #define SF_BEFORE_SEOL          0x0001
371 #define SF_BEFORE_MEOL          0x0002
372 #define SF_FIX_BEFORE_EOL       (SF_FIX_BEFORE_SEOL|SF_FIX_BEFORE_MEOL)
373 #define SF_FL_BEFORE_EOL        (SF_FL_BEFORE_SEOL|SF_FL_BEFORE_MEOL)
374
375 #ifdef NO_UNARY_PLUS
376 #  define SF_FIX_SHIFT_EOL      (0+2)
377 #  define SF_FL_SHIFT_EOL               (0+4)
378 #else
379 #  define SF_FIX_SHIFT_EOL      (+2)
380 #  define SF_FL_SHIFT_EOL               (+4)
381 #endif
382
383 #define SF_FIX_BEFORE_SEOL      (SF_BEFORE_SEOL << SF_FIX_SHIFT_EOL)
384 #define SF_FIX_BEFORE_MEOL      (SF_BEFORE_MEOL << SF_FIX_SHIFT_EOL)
385
386 #define SF_FL_BEFORE_SEOL       (SF_BEFORE_SEOL << SF_FL_SHIFT_EOL)
387 #define SF_FL_BEFORE_MEOL       (SF_BEFORE_MEOL << SF_FL_SHIFT_EOL) /* 0x20 */
388 #define SF_IS_INF               0x0040
389 #define SF_HAS_PAR              0x0080
390 #define SF_IN_PAR               0x0100
391 #define SF_HAS_EVAL             0x0200
392 #define SCF_DO_SUBSTR           0x0400
393 #define SCF_DO_STCLASS_AND      0x0800
394 #define SCF_DO_STCLASS_OR       0x1000
395 #define SCF_DO_STCLASS          (SCF_DO_STCLASS_AND|SCF_DO_STCLASS_OR)
396 #define SCF_WHILEM_VISITED_POS  0x2000
397
398 #define SCF_TRIE_RESTUDY        0x4000 /* Do restudy? */
399 #define SCF_SEEN_ACCEPT         0x8000 
400
401 #define UTF cBOOL(RExC_utf8)
402
403 /* The enums for all these are ordered so things work out correctly */
404 #define LOC (get_regex_charset(RExC_flags) == REGEX_LOCALE_CHARSET)
405 #define DEPENDS_SEMANTICS (get_regex_charset(RExC_flags) == REGEX_DEPENDS_CHARSET)
406 #define UNI_SEMANTICS (get_regex_charset(RExC_flags) == REGEX_UNICODE_CHARSET)
407 #define AT_LEAST_UNI_SEMANTICS (get_regex_charset(RExC_flags) >= REGEX_UNICODE_CHARSET)
408 #define ASCII_RESTRICTED (get_regex_charset(RExC_flags) == REGEX_ASCII_RESTRICTED_CHARSET)
409 #define AT_LEAST_ASCII_RESTRICTED (get_regex_charset(RExC_flags) >= REGEX_ASCII_RESTRICTED_CHARSET)
410 #define ASCII_FOLD_RESTRICTED (get_regex_charset(RExC_flags) == REGEX_ASCII_MORE_RESTRICTED_CHARSET)
411
412 #define FOLD cBOOL(RExC_flags & RXf_PMf_FOLD)
413
414 #define OOB_NAMEDCLASS          -1
415
416 /* There is no code point that is out-of-bounds, so this is problematic.  But
417  * its only current use is to initialize a variable that is always set before
418  * looked at. */
419 #define OOB_UNICODE             0xDEADBEEF
420
421 #define CHR_SVLEN(sv) (UTF ? sv_len_utf8(sv) : SvCUR(sv))
422 #define CHR_DIST(a,b) (UTF ? utf8_distance(a,b) : a - b)
423
424
425 /* length of regex to show in messages that don't mark a position within */
426 #define RegexLengthToShowInErrorMessages 127
427
428 /*
429  * If MARKER[12] are adjusted, be sure to adjust the constants at the top
430  * of t/op/regmesg.t, the tests in t/op/re_tests, and those in
431  * op/pragma/warn/regcomp.
432  */
433 #define MARKER1 "<-- HERE"    /* marker as it appears in the description */
434 #define MARKER2 " <-- HERE "  /* marker as it appears within the regex */
435
436 #define REPORT_LOCATION " in regex; marked by " MARKER1 " in m/%.*s" MARKER2 "%s/"
437
438 /*
439  * Calls SAVEDESTRUCTOR_X if needed, then calls Perl_croak with the given
440  * arg. Show regex, up to a maximum length. If it's too long, chop and add
441  * "...".
442  */
443 #define _FAIL(code) STMT_START {                                        \
444     const char *ellipses = "";                                          \
445     IV len = RExC_end - RExC_precomp;                                   \
446                                                                         \
447     if (!SIZE_ONLY)                                                     \
448         SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx_sv);                   \
449     if (len > RegexLengthToShowInErrorMessages) {                       \
450         /* chop 10 shorter than the max, to ensure meaning of "..." */  \
451         len = RegexLengthToShowInErrorMessages - 10;                    \
452         ellipses = "...";                                               \
453     }                                                                   \
454     code;                                                               \
455 } STMT_END
456
457 #define FAIL(msg) _FAIL(                            \
458     Perl_croak(aTHX_ "%s in regex m/%.*s%s/",       \
459             msg, (int)len, RExC_precomp, ellipses))
460
461 #define FAIL2(msg,arg) _FAIL(                       \
462     Perl_croak(aTHX_ msg " in regex m/%.*s%s/",     \
463             arg, (int)len, RExC_precomp, ellipses))
464
465 /*
466  * Simple_vFAIL -- like FAIL, but marks the current location in the scan
467  */
468 #define Simple_vFAIL(m) STMT_START {                                    \
469     const IV offset = RExC_parse - RExC_precomp;                        \
470     Perl_croak(aTHX_ "%s" REPORT_LOCATION,                              \
471             m, (int)offset, RExC_precomp, RExC_precomp + offset);       \
472 } STMT_END
473
474 /*
475  * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL()
476  */
477 #define vFAIL(m) STMT_START {                           \
478     if (!SIZE_ONLY)                                     \
479         SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx_sv);   \
480     Simple_vFAIL(m);                                    \
481 } STMT_END
482
483 /*
484  * Like Simple_vFAIL(), but accepts two arguments.
485  */
486 #define Simple_vFAIL2(m,a1) STMT_START {                        \
487     const IV offset = RExC_parse - RExC_precomp;                        \
488     S_re_croak2(aTHX_ m, REPORT_LOCATION, a1,                   \
489             (int)offset, RExC_precomp, RExC_precomp + offset);  \
490 } STMT_END
491
492 /*
493  * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL2().
494  */
495 #define vFAIL2(m,a1) STMT_START {                       \
496     if (!SIZE_ONLY)                                     \
497         SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx_sv);   \
498     Simple_vFAIL2(m, a1);                               \
499 } STMT_END
500
501
502 /*
503  * Like Simple_vFAIL(), but accepts three arguments.
504  */
505 #define Simple_vFAIL3(m, a1, a2) STMT_START {                   \
506     const IV offset = RExC_parse - RExC_precomp;                \
507     S_re_croak2(aTHX_ m, REPORT_LOCATION, a1, a2,               \
508             (int)offset, RExC_precomp, RExC_precomp + offset);  \
509 } STMT_END
510
511 /*
512  * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL3().
513  */
514 #define vFAIL3(m,a1,a2) STMT_START {                    \
515     if (!SIZE_ONLY)                                     \
516         SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx_sv);   \
517     Simple_vFAIL3(m, a1, a2);                           \
518 } STMT_END
519
520 /*
521  * Like Simple_vFAIL(), but accepts four arguments.
522  */
523 #define Simple_vFAIL4(m, a1, a2, a3) STMT_START {               \
524     const IV offset = RExC_parse - RExC_precomp;                \
525     S_re_croak2(aTHX_ m, REPORT_LOCATION, a1, a2, a3,           \
526             (int)offset, RExC_precomp, RExC_precomp + offset);  \
527 } STMT_END
528
529 #define ckWARNreg(loc,m) STMT_START {                                   \
530     const IV offset = loc - RExC_precomp;                               \
531     Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,      \
532             (int)offset, RExC_precomp, RExC_precomp + offset);          \
533 } STMT_END
534
535 #define ckWARNregdep(loc,m) STMT_START {                                \
536     const IV offset = loc - RExC_precomp;                               \
537     Perl_ck_warner_d(aTHX_ packWARN2(WARN_DEPRECATED, WARN_REGEXP),     \
538             m REPORT_LOCATION,                                          \
539             (int)offset, RExC_precomp, RExC_precomp + offset);          \
540 } STMT_END
541
542 #define ckWARN2regdep(loc,m, a1) STMT_START {                           \
543     const IV offset = loc - RExC_precomp;                               \
544     Perl_ck_warner_d(aTHX_ packWARN2(WARN_DEPRECATED, WARN_REGEXP),     \
545             m REPORT_LOCATION,                                          \
546             a1, (int)offset, RExC_precomp, RExC_precomp + offset);      \
547 } STMT_END
548
549 #define ckWARN2reg(loc, m, a1) STMT_START {                             \
550     const IV offset = loc - RExC_precomp;                               \
551     Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,      \
552             a1, (int)offset, RExC_precomp, RExC_precomp + offset);      \
553 } STMT_END
554
555 #define vWARN3(loc, m, a1, a2) STMT_START {                             \
556     const IV offset = loc - RExC_precomp;                               \
557     Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,         \
558             a1, a2, (int)offset, RExC_precomp, RExC_precomp + offset);  \
559 } STMT_END
560
561 #define ckWARN3reg(loc, m, a1, a2) STMT_START {                         \
562     const IV offset = loc - RExC_precomp;                               \
563     Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,      \
564             a1, a2, (int)offset, RExC_precomp, RExC_precomp + offset);  \
565 } STMT_END
566
567 #define vWARN4(loc, m, a1, a2, a3) STMT_START {                         \
568     const IV offset = loc - RExC_precomp;                               \
569     Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,         \
570             a1, a2, a3, (int)offset, RExC_precomp, RExC_precomp + offset); \
571 } STMT_END
572
573 #define ckWARN4reg(loc, m, a1, a2, a3) STMT_START {                     \
574     const IV offset = loc - RExC_precomp;                               \
575     Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,      \
576             a1, a2, a3, (int)offset, RExC_precomp, RExC_precomp + offset); \
577 } STMT_END
578
579 #define vWARN5(loc, m, a1, a2, a3, a4) STMT_START {                     \
580     const IV offset = loc - RExC_precomp;                               \
581     Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,         \
582             a1, a2, a3, a4, (int)offset, RExC_precomp, RExC_precomp + offset); \
583 } STMT_END
584
585
586 /* Allow for side effects in s */
587 #define REGC(c,s) STMT_START {                  \
588     if (!SIZE_ONLY) *(s) = (c); else (void)(s); \
589 } STMT_END
590
591 /* Macros for recording node offsets.   20001227 mjd@plover.com 
592  * Nodes are numbered 1, 2, 3, 4.  Node #n's position is recorded in
593  * element 2*n-1 of the array.  Element #2n holds the byte length node #n.
594  * Element 0 holds the number n.
595  * Position is 1 indexed.
596  */
597 #ifndef RE_TRACK_PATTERN_OFFSETS
598 #define Set_Node_Offset_To_R(node,byte)
599 #define Set_Node_Offset(node,byte)
600 #define Set_Cur_Node_Offset
601 #define Set_Node_Length_To_R(node,len)
602 #define Set_Node_Length(node,len)
603 #define Set_Node_Cur_Length(node)
604 #define Node_Offset(n) 
605 #define Node_Length(n) 
606 #define Set_Node_Offset_Length(node,offset,len)
607 #define ProgLen(ri) ri->u.proglen
608 #define SetProgLen(ri,x) ri->u.proglen = x
609 #else
610 #define ProgLen(ri) ri->u.offsets[0]
611 #define SetProgLen(ri,x) ri->u.offsets[0] = x
612 #define Set_Node_Offset_To_R(node,byte) STMT_START {                    \
613     if (! SIZE_ONLY) {                                                  \
614         MJD_OFFSET_DEBUG(("** (%d) offset of node %d is %d.\n",         \
615                     __LINE__, (int)(node), (int)(byte)));               \
616         if((node) < 0) {                                                \
617             Perl_croak(aTHX_ "value of node is %d in Offset macro", (int)(node)); \
618         } else {                                                        \
619             RExC_offsets[2*(node)-1] = (byte);                          \
620         }                                                               \
621     }                                                                   \
622 } STMT_END
623
624 #define Set_Node_Offset(node,byte) \
625     Set_Node_Offset_To_R((node)-RExC_emit_start, (byte)-RExC_start)
626 #define Set_Cur_Node_Offset Set_Node_Offset(RExC_emit, RExC_parse)
627
628 #define Set_Node_Length_To_R(node,len) STMT_START {                     \
629     if (! SIZE_ONLY) {                                                  \
630         MJD_OFFSET_DEBUG(("** (%d) size of node %d is %d.\n",           \
631                 __LINE__, (int)(node), (int)(len)));                    \
632         if((node) < 0) {                                                \
633             Perl_croak(aTHX_ "value of node is %d in Length macro", (int)(node)); \
634         } else {                                                        \
635             RExC_offsets[2*(node)] = (len);                             \
636         }                                                               \
637     }                                                                   \
638 } STMT_END
639
640 #define Set_Node_Length(node,len) \
641     Set_Node_Length_To_R((node)-RExC_emit_start, len)
642 #define Set_Cur_Node_Length(len) Set_Node_Length(RExC_emit, len)
643 #define Set_Node_Cur_Length(node) \
644     Set_Node_Length(node, RExC_parse - parse_start)
645
646 /* Get offsets and lengths */
647 #define Node_Offset(n) (RExC_offsets[2*((n)-RExC_emit_start)-1])
648 #define Node_Length(n) (RExC_offsets[2*((n)-RExC_emit_start)])
649
650 #define Set_Node_Offset_Length(node,offset,len) STMT_START {    \
651     Set_Node_Offset_To_R((node)-RExC_emit_start, (offset));     \
652     Set_Node_Length_To_R((node)-RExC_emit_start, (len));        \
653 } STMT_END
654 #endif
655
656 #if PERL_ENABLE_EXPERIMENTAL_REGEX_OPTIMISATIONS
657 #define EXPERIMENTAL_INPLACESCAN
658 #endif /*PERL_ENABLE_EXPERIMENTAL_REGEX_OPTIMISATIONS*/
659
660 #define DEBUG_STUDYDATA(str,data,depth)                              \
661 DEBUG_OPTIMISE_MORE_r(if(data){                                      \
662     PerlIO_printf(Perl_debug_log,                                    \
663         "%*s" str "Pos:%"IVdf"/%"IVdf                                \
664         " Flags: 0x%"UVXf" Whilem_c: %"IVdf" Lcp: %"IVdf" %s",       \
665         (int)(depth)*2, "",                                          \
666         (IV)((data)->pos_min),                                       \
667         (IV)((data)->pos_delta),                                     \
668         (UV)((data)->flags),                                         \
669         (IV)((data)->whilem_c),                                      \
670         (IV)((data)->last_closep ? *((data)->last_closep) : -1),     \
671         is_inf ? "INF " : ""                                         \
672     );                                                               \
673     if ((data)->last_found)                                          \
674         PerlIO_printf(Perl_debug_log,                                \
675             "Last:'%s' %"IVdf":%"IVdf"/%"IVdf" %sFixed:'%s' @ %"IVdf \
676             " %sFloat: '%s' @ %"IVdf"/%"IVdf"",                      \
677             SvPVX_const((data)->last_found),                         \
678             (IV)((data)->last_end),                                  \
679             (IV)((data)->last_start_min),                            \
680             (IV)((data)->last_start_max),                            \
681             ((data)->longest &&                                      \
682              (data)->longest==&((data)->longest_fixed)) ? "*" : "",  \
683             SvPVX_const((data)->longest_fixed),                      \
684             (IV)((data)->offset_fixed),                              \
685             ((data)->longest &&                                      \
686              (data)->longest==&((data)->longest_float)) ? "*" : "",  \
687             SvPVX_const((data)->longest_float),                      \
688             (IV)((data)->offset_float_min),                          \
689             (IV)((data)->offset_float_max)                           \
690         );                                                           \
691     PerlIO_printf(Perl_debug_log,"\n");                              \
692 });
693
694 static void clear_re(pTHX_ void *r);
695
696 /* Mark that we cannot extend a found fixed substring at this point.
697    Update the longest found anchored substring and the longest found
698    floating substrings if needed. */
699
700 STATIC void
701 S_scan_commit(pTHX_ const RExC_state_t *pRExC_state, scan_data_t *data, I32 *minlenp, int is_inf)
702 {
703     const STRLEN l = CHR_SVLEN(data->last_found);
704     const STRLEN old_l = CHR_SVLEN(*data->longest);
705     GET_RE_DEBUG_FLAGS_DECL;
706
707     PERL_ARGS_ASSERT_SCAN_COMMIT;
708
709     if ((l >= old_l) && ((l > old_l) || (data->flags & SF_BEFORE_EOL))) {
710         SvSetMagicSV(*data->longest, data->last_found);
711         if (*data->longest == data->longest_fixed) {
712             data->offset_fixed = l ? data->last_start_min : data->pos_min;
713             if (data->flags & SF_BEFORE_EOL)
714                 data->flags
715                     |= ((data->flags & SF_BEFORE_EOL) << SF_FIX_SHIFT_EOL);
716             else
717                 data->flags &= ~SF_FIX_BEFORE_EOL;
718             data->minlen_fixed=minlenp;
719             data->lookbehind_fixed=0;
720         }
721         else { /* *data->longest == data->longest_float */
722             data->offset_float_min = l ? data->last_start_min : data->pos_min;
723             data->offset_float_max = (l
724                                       ? data->last_start_max
725                                       : data->pos_min + data->pos_delta);
726             if (is_inf || (U32)data->offset_float_max > (U32)I32_MAX)
727                 data->offset_float_max = I32_MAX;
728             if (data->flags & SF_BEFORE_EOL)
729                 data->flags
730                     |= ((data->flags & SF_BEFORE_EOL) << SF_FL_SHIFT_EOL);
731             else
732                 data->flags &= ~SF_FL_BEFORE_EOL;
733             data->minlen_float=minlenp;
734             data->lookbehind_float=0;
735         }
736     }
737     SvCUR_set(data->last_found, 0);
738     {
739         SV * const sv = data->last_found;
740         if (SvUTF8(sv) && SvMAGICAL(sv)) {
741             MAGIC * const mg = mg_find(sv, PERL_MAGIC_utf8);
742             if (mg)
743                 mg->mg_len = 0;
744         }
745     }
746     data->last_end = -1;
747     data->flags &= ~SF_BEFORE_EOL;
748     DEBUG_STUDYDATA("commit: ",data,0);
749 }
750
751 /* Can match anything (initialization) */
752 STATIC void
753 S_cl_anything(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl)
754 {
755     PERL_ARGS_ASSERT_CL_ANYTHING;
756
757     ANYOF_BITMAP_SETALL(cl);
758     cl->flags = ANYOF_CLASS|ANYOF_EOS|ANYOF_UNICODE_ALL
759                 |ANYOF_LOC_NONBITMAP_FOLD|ANYOF_NON_UTF8_LATIN1_ALL;
760
761     /* If any portion of the regex is to operate under locale rules,
762      * initialization includes it.  The reason this isn't done for all regexes
763      * is that the optimizer was written under the assumption that locale was
764      * all-or-nothing.  Given the complexity and lack of documentation in the
765      * optimizer, and that there are inadequate test cases for locale, so many
766      * parts of it may not work properly, it is safest to avoid locale unless
767      * necessary. */
768     if (RExC_contains_locale) {
769         ANYOF_CLASS_SETALL(cl);     /* /l uses class */
770         cl->flags |= ANYOF_LOCALE;
771     }
772     else {
773         ANYOF_CLASS_ZERO(cl);       /* Only /l uses class now */
774     }
775 }
776
777 /* Can match anything (initialization) */
778 STATIC int
779 S_cl_is_anything(const struct regnode_charclass_class *cl)
780 {
781     int value;
782
783     PERL_ARGS_ASSERT_CL_IS_ANYTHING;
784
785     for (value = 0; value <= ANYOF_MAX; value += 2)
786         if (ANYOF_CLASS_TEST(cl, value) && ANYOF_CLASS_TEST(cl, value + 1))
787             return 1;
788     if (!(cl->flags & ANYOF_UNICODE_ALL))
789         return 0;
790     if (!ANYOF_BITMAP_TESTALLSET((const void*)cl))
791         return 0;
792     return 1;
793 }
794
795 /* Can match anything (initialization) */
796 STATIC void
797 S_cl_init(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl)
798 {
799     PERL_ARGS_ASSERT_CL_INIT;
800
801     Zero(cl, 1, struct regnode_charclass_class);
802     cl->type = ANYOF;
803     cl_anything(pRExC_state, cl);
804     ARG_SET(cl, ANYOF_NONBITMAP_EMPTY);
805 }
806
807 /* These two functions currently do the exact same thing */
808 #define cl_init_zero            S_cl_init
809
810 /* 'AND' a given class with another one.  Can create false positives.  'cl'
811  * should not be inverted.  'and_with->flags & ANYOF_CLASS' should be 0 if
812  * 'and_with' is a regnode_charclass instead of a regnode_charclass_class. */
813 STATIC void
814 S_cl_and(struct regnode_charclass_class *cl,
815         const struct regnode_charclass_class *and_with)
816 {
817     PERL_ARGS_ASSERT_CL_AND;
818
819     assert(and_with->type == ANYOF);
820
821     /* I (khw) am not sure all these restrictions are necessary XXX */
822     if (!(ANYOF_CLASS_TEST_ANY_SET(and_with))
823         && !(ANYOF_CLASS_TEST_ANY_SET(cl))
824         && (and_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
825         && !(and_with->flags & ANYOF_LOC_NONBITMAP_FOLD)
826         && !(cl->flags & ANYOF_LOC_NONBITMAP_FOLD)) {
827         int i;
828
829         if (and_with->flags & ANYOF_INVERT)
830             for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
831                 cl->bitmap[i] &= ~and_with->bitmap[i];
832         else
833             for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
834                 cl->bitmap[i] &= and_with->bitmap[i];
835     } /* XXXX: logic is complicated otherwise, leave it along for a moment. */
836
837     if (and_with->flags & ANYOF_INVERT) {
838
839         /* Here, the and'ed node is inverted.  Get the AND of the flags that
840          * aren't affected by the inversion.  Those that are affected are
841          * handled individually below */
842         U8 affected_flags = cl->flags & ~INVERSION_UNAFFECTED_FLAGS;
843         cl->flags &= (and_with->flags & INVERSION_UNAFFECTED_FLAGS);
844         cl->flags |= affected_flags;
845
846         /* We currently don't know how to deal with things that aren't in the
847          * bitmap, but we know that the intersection is no greater than what
848          * is already in cl, so let there be false positives that get sorted
849          * out after the synthetic start class succeeds, and the node is
850          * matched for real. */
851
852         /* The inversion of these two flags indicate that the resulting
853          * intersection doesn't have them */
854         if (and_with->flags & ANYOF_UNICODE_ALL) {
855             cl->flags &= ~ANYOF_UNICODE_ALL;
856         }
857         if (and_with->flags & ANYOF_NON_UTF8_LATIN1_ALL) {
858             cl->flags &= ~ANYOF_NON_UTF8_LATIN1_ALL;
859         }
860     }
861     else {   /* and'd node is not inverted */
862         U8 outside_bitmap_but_not_utf8; /* Temp variable */
863
864         if (! ANYOF_NONBITMAP(and_with)) {
865
866             /* Here 'and_with' doesn't match anything outside the bitmap
867              * (except possibly ANYOF_UNICODE_ALL), which means the
868              * intersection can't either, except for ANYOF_UNICODE_ALL, in
869              * which case we don't know what the intersection is, but it's no
870              * greater than what cl already has, so can just leave it alone,
871              * with possible false positives */
872             if (! (and_with->flags & ANYOF_UNICODE_ALL)) {
873                 ARG_SET(cl, ANYOF_NONBITMAP_EMPTY);
874                 cl->flags &= ~ANYOF_NONBITMAP_NON_UTF8;
875             }
876         }
877         else if (! ANYOF_NONBITMAP(cl)) {
878
879             /* Here, 'and_with' does match something outside the bitmap, and cl
880              * doesn't have a list of things to match outside the bitmap.  If
881              * cl can match all code points above 255, the intersection will
882              * be those above-255 code points that 'and_with' matches.  If cl
883              * can't match all Unicode code points, it means that it can't
884              * match anything outside the bitmap (since the 'if' that got us
885              * into this block tested for that), so we leave the bitmap empty.
886              */
887             if (cl->flags & ANYOF_UNICODE_ALL) {
888                 ARG_SET(cl, ARG(and_with));
889
890                 /* and_with's ARG may match things that don't require UTF8.
891                  * And now cl's will too, in spite of this being an 'and'.  See
892                  * the comments below about the kludge */
893                 cl->flags |= and_with->flags & ANYOF_NONBITMAP_NON_UTF8;
894             }
895         }
896         else {
897             /* Here, both 'and_with' and cl match something outside the
898              * bitmap.  Currently we do not do the intersection, so just match
899              * whatever cl had at the beginning.  */
900         }
901
902
903         /* Take the intersection of the two sets of flags.  However, the
904          * ANYOF_NONBITMAP_NON_UTF8 flag is treated as an 'or'.  This is a
905          * kludge around the fact that this flag is not treated like the others
906          * which are initialized in cl_anything().  The way the optimizer works
907          * is that the synthetic start class (SSC) is initialized to match
908          * anything, and then the first time a real node is encountered, its
909          * values are AND'd with the SSC's with the result being the values of
910          * the real node.  However, there are paths through the optimizer where
911          * the AND never gets called, so those initialized bits are set
912          * inappropriately, which is not usually a big deal, as they just cause
913          * false positives in the SSC, which will just mean a probably
914          * imperceptible slow down in execution.  However this bit has a
915          * higher false positive consequence in that it can cause utf8.pm,
916          * utf8_heavy.pl ... to be loaded when not necessary, which is a much
917          * bigger slowdown and also causes significant extra memory to be used.
918          * In order to prevent this, the code now takes a different tack.  The
919          * bit isn't set unless some part of the regular expression needs it,
920          * but once set it won't get cleared.  This means that these extra
921          * modules won't get loaded unless there was some path through the
922          * pattern that would have required them anyway, and  so any false
923          * positives that occur by not ANDing them out when they could be
924          * aren't as severe as they would be if we treated this bit like all
925          * the others */
926         outside_bitmap_but_not_utf8 = (cl->flags | and_with->flags)
927                                       & ANYOF_NONBITMAP_NON_UTF8;
928         cl->flags &= and_with->flags;
929         cl->flags |= outside_bitmap_but_not_utf8;
930     }
931 }
932
933 /* 'OR' a given class with another one.  Can create false positives.  'cl'
934  * should not be inverted.  'or_with->flags & ANYOF_CLASS' should be 0 if
935  * 'or_with' is a regnode_charclass instead of a regnode_charclass_class. */
936 STATIC void
937 S_cl_or(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl, const struct regnode_charclass_class *or_with)
938 {
939     PERL_ARGS_ASSERT_CL_OR;
940
941     if (or_with->flags & ANYOF_INVERT) {
942
943         /* Here, the or'd node is to be inverted.  This means we take the
944          * complement of everything not in the bitmap, but currently we don't
945          * know what that is, so give up and match anything */
946         if (ANYOF_NONBITMAP(or_with)) {
947             cl_anything(pRExC_state, cl);
948         }
949         /* We do not use
950          * (B1 | CL1) | (!B2 & !CL2) = (B1 | !B2 & !CL2) | (CL1 | (!B2 & !CL2))
951          *   <= (B1 | !B2) | (CL1 | !CL2)
952          * which is wasteful if CL2 is small, but we ignore CL2:
953          *   (B1 | CL1) | (!B2 & !CL2) <= (B1 | CL1) | !B2 = (B1 | !B2) | CL1
954          * XXXX Can we handle case-fold?  Unclear:
955          *   (OK1(i) | OK1(i')) | !(OK1(i) | OK1(i')) =
956          *   (OK1(i) | OK1(i')) | (!OK1(i) & !OK1(i'))
957          */
958         else if ( (or_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
959              && !(or_with->flags & ANYOF_LOC_NONBITMAP_FOLD)
960              && !(cl->flags & ANYOF_LOC_NONBITMAP_FOLD) ) {
961             int i;
962
963             for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
964                 cl->bitmap[i] |= ~or_with->bitmap[i];
965         } /* XXXX: logic is complicated otherwise */
966         else {
967             cl_anything(pRExC_state, cl);
968         }
969
970         /* And, we can just take the union of the flags that aren't affected
971          * by the inversion */
972         cl->flags |= or_with->flags & INVERSION_UNAFFECTED_FLAGS;
973
974         /* For the remaining flags:
975             ANYOF_UNICODE_ALL and inverted means to not match anything above
976                     255, which means that the union with cl should just be
977                     what cl has in it, so can ignore this flag
978             ANYOF_NON_UTF8_LATIN1_ALL and inverted means if not utf8 and ord
979                     is 127-255 to match them, but then invert that, so the
980                     union with cl should just be what cl has in it, so can
981                     ignore this flag
982          */
983     } else {    /* 'or_with' is not inverted */
984         /* (B1 | CL1) | (B2 | CL2) = (B1 | B2) | (CL1 | CL2)) */
985         if ( (or_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
986              && (!(or_with->flags & ANYOF_LOC_NONBITMAP_FOLD)
987                  || (cl->flags & ANYOF_LOC_NONBITMAP_FOLD)) ) {
988             int i;
989
990             /* OR char bitmap and class bitmap separately */
991             for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
992                 cl->bitmap[i] |= or_with->bitmap[i];
993             if (ANYOF_CLASS_TEST_ANY_SET(or_with)) {
994                 for (i = 0; i < ANYOF_CLASSBITMAP_SIZE; i++)
995                     cl->classflags[i] |= or_with->classflags[i];
996                 cl->flags |= ANYOF_CLASS;
997             }
998         }
999         else { /* XXXX: logic is complicated, leave it along for a moment. */
1000             cl_anything(pRExC_state, cl);
1001         }
1002
1003         if (ANYOF_NONBITMAP(or_with)) {
1004
1005             /* Use the added node's outside-the-bit-map match if there isn't a
1006              * conflict.  If there is a conflict (both nodes match something
1007              * outside the bitmap, but what they match outside is not the same
1008              * pointer, and hence not easily compared until XXX we extend
1009              * inversion lists this far), give up and allow the start class to
1010              * match everything outside the bitmap.  If that stuff is all above
1011              * 255, can just set UNICODE_ALL, otherwise caould be anything. */
1012             if (! ANYOF_NONBITMAP(cl)) {
1013                 ARG_SET(cl, ARG(or_with));
1014             }
1015             else if (ARG(cl) != ARG(or_with)) {
1016
1017                 if ((or_with->flags & ANYOF_NONBITMAP_NON_UTF8)) {
1018                     cl_anything(pRExC_state, cl);
1019                 }
1020                 else {
1021                     cl->flags |= ANYOF_UNICODE_ALL;
1022                 }
1023             }
1024         }
1025
1026         /* Take the union */
1027         cl->flags |= or_with->flags;
1028     }
1029 }
1030
1031 #define TRIE_LIST_ITEM(state,idx) (trie->states[state].trans.list)[ idx ]
1032 #define TRIE_LIST_CUR(state)  ( TRIE_LIST_ITEM( state, 0 ).forid )
1033 #define TRIE_LIST_LEN(state) ( TRIE_LIST_ITEM( state, 0 ).newstate )
1034 #define TRIE_LIST_USED(idx)  ( trie->states[state].trans.list ? (TRIE_LIST_CUR( idx ) - 1) : 0 )
1035
1036
1037 #ifdef DEBUGGING
1038 /*
1039    dump_trie(trie,widecharmap,revcharmap)
1040    dump_trie_interim_list(trie,widecharmap,revcharmap,next_alloc)
1041    dump_trie_interim_table(trie,widecharmap,revcharmap,next_alloc)
1042
1043    These routines dump out a trie in a somewhat readable format.
1044    The _interim_ variants are used for debugging the interim
1045    tables that are used to generate the final compressed
1046    representation which is what dump_trie expects.
1047
1048    Part of the reason for their existence is to provide a form
1049    of documentation as to how the different representations function.
1050
1051 */
1052
1053 /*
1054   Dumps the final compressed table form of the trie to Perl_debug_log.
1055   Used for debugging make_trie().
1056 */
1057
1058 STATIC void
1059 S_dump_trie(pTHX_ const struct _reg_trie_data *trie, HV *widecharmap,
1060             AV *revcharmap, U32 depth)
1061 {
1062     U32 state;
1063     SV *sv=sv_newmortal();
1064     int colwidth= widecharmap ? 6 : 4;
1065     U16 word;
1066     GET_RE_DEBUG_FLAGS_DECL;
1067
1068     PERL_ARGS_ASSERT_DUMP_TRIE;
1069
1070     PerlIO_printf( Perl_debug_log, "%*sChar : %-6s%-6s%-4s ",
1071         (int)depth * 2 + 2,"",
1072         "Match","Base","Ofs" );
1073
1074     for( state = 0 ; state < trie->uniquecharcount ; state++ ) {
1075         SV ** const tmp = av_fetch( revcharmap, state, 0);
1076         if ( tmp ) {
1077             PerlIO_printf( Perl_debug_log, "%*s", 
1078                 colwidth,
1079                 pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth, 
1080                             PL_colors[0], PL_colors[1],
1081                             (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
1082                             PERL_PV_ESCAPE_FIRSTCHAR 
1083                 ) 
1084             );
1085         }
1086     }
1087     PerlIO_printf( Perl_debug_log, "\n%*sState|-----------------------",
1088         (int)depth * 2 + 2,"");
1089
1090     for( state = 0 ; state < trie->uniquecharcount ; state++ )
1091         PerlIO_printf( Perl_debug_log, "%.*s", colwidth, "--------");
1092     PerlIO_printf( Perl_debug_log, "\n");
1093
1094     for( state = 1 ; state < trie->statecount ; state++ ) {
1095         const U32 base = trie->states[ state ].trans.base;
1096
1097         PerlIO_printf( Perl_debug_log, "%*s#%4"UVXf"|", (int)depth * 2 + 2,"", (UV)state);
1098
1099         if ( trie->states[ state ].wordnum ) {
1100             PerlIO_printf( Perl_debug_log, " W%4X", trie->states[ state ].wordnum );
1101         } else {
1102             PerlIO_printf( Perl_debug_log, "%6s", "" );
1103         }
1104
1105         PerlIO_printf( Perl_debug_log, " @%4"UVXf" ", (UV)base );
1106
1107         if ( base ) {
1108             U32 ofs = 0;
1109
1110             while( ( base + ofs  < trie->uniquecharcount ) ||
1111                    ( base + ofs - trie->uniquecharcount < trie->lasttrans
1112                      && trie->trans[ base + ofs - trie->uniquecharcount ].check != state))
1113                     ofs++;
1114
1115             PerlIO_printf( Perl_debug_log, "+%2"UVXf"[ ", (UV)ofs);
1116
1117             for ( ofs = 0 ; ofs < trie->uniquecharcount ; ofs++ ) {
1118                 if ( ( base + ofs >= trie->uniquecharcount ) &&
1119                      ( base + ofs - trie->uniquecharcount < trie->lasttrans ) &&
1120                      trie->trans[ base + ofs - trie->uniquecharcount ].check == state )
1121                 {
1122                    PerlIO_printf( Perl_debug_log, "%*"UVXf,
1123                     colwidth,
1124                     (UV)trie->trans[ base + ofs - trie->uniquecharcount ].next );
1125                 } else {
1126                     PerlIO_printf( Perl_debug_log, "%*s",colwidth,"   ." );
1127                 }
1128             }
1129
1130             PerlIO_printf( Perl_debug_log, "]");
1131
1132         }
1133         PerlIO_printf( Perl_debug_log, "\n" );
1134     }
1135     PerlIO_printf(Perl_debug_log, "%*sword_info N:(prev,len)=", (int)depth*2, "");
1136     for (word=1; word <= trie->wordcount; word++) {
1137         PerlIO_printf(Perl_debug_log, " %d:(%d,%d)",
1138             (int)word, (int)(trie->wordinfo[word].prev),
1139             (int)(trie->wordinfo[word].len));
1140     }
1141     PerlIO_printf(Perl_debug_log, "\n" );
1142 }    
1143 /*
1144   Dumps a fully constructed but uncompressed trie in list form.
1145   List tries normally only are used for construction when the number of 
1146   possible chars (trie->uniquecharcount) is very high.
1147   Used for debugging make_trie().
1148 */
1149 STATIC void
1150 S_dump_trie_interim_list(pTHX_ const struct _reg_trie_data *trie,
1151                          HV *widecharmap, AV *revcharmap, U32 next_alloc,
1152                          U32 depth)
1153 {
1154     U32 state;
1155     SV *sv=sv_newmortal();
1156     int colwidth= widecharmap ? 6 : 4;
1157     GET_RE_DEBUG_FLAGS_DECL;
1158
1159     PERL_ARGS_ASSERT_DUMP_TRIE_INTERIM_LIST;
1160
1161     /* print out the table precompression.  */
1162     PerlIO_printf( Perl_debug_log, "%*sState :Word | Transition Data\n%*s%s",
1163         (int)depth * 2 + 2,"", (int)depth * 2 + 2,"",
1164         "------:-----+-----------------\n" );
1165     
1166     for( state=1 ; state < next_alloc ; state ++ ) {
1167         U16 charid;
1168     
1169         PerlIO_printf( Perl_debug_log, "%*s %4"UVXf" :",
1170             (int)depth * 2 + 2,"", (UV)state  );
1171         if ( ! trie->states[ state ].wordnum ) {
1172             PerlIO_printf( Perl_debug_log, "%5s| ","");
1173         } else {
1174             PerlIO_printf( Perl_debug_log, "W%4x| ",
1175                 trie->states[ state ].wordnum
1176             );
1177         }
1178         for( charid = 1 ; charid <= TRIE_LIST_USED( state ) ; charid++ ) {
1179             SV ** const tmp = av_fetch( revcharmap, TRIE_LIST_ITEM(state,charid).forid, 0);
1180             if ( tmp ) {
1181                 PerlIO_printf( Perl_debug_log, "%*s:%3X=%4"UVXf" | ",
1182                     colwidth,
1183                     pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth, 
1184                             PL_colors[0], PL_colors[1],
1185                             (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
1186                             PERL_PV_ESCAPE_FIRSTCHAR 
1187                     ) ,
1188                     TRIE_LIST_ITEM(state,charid).forid,
1189                     (UV)TRIE_LIST_ITEM(state,charid).newstate
1190                 );
1191                 if (!(charid % 10)) 
1192                     PerlIO_printf(Perl_debug_log, "\n%*s| ",
1193                         (int)((depth * 2) + 14), "");
1194             }
1195         }
1196         PerlIO_printf( Perl_debug_log, "\n");
1197     }
1198 }    
1199
1200 /*
1201   Dumps a fully constructed but uncompressed trie in table form.
1202   This is the normal DFA style state transition table, with a few 
1203   twists to facilitate compression later. 
1204   Used for debugging make_trie().
1205 */
1206 STATIC void
1207 S_dump_trie_interim_table(pTHX_ const struct _reg_trie_data *trie,
1208                           HV *widecharmap, AV *revcharmap, U32 next_alloc,
1209                           U32 depth)
1210 {
1211     U32 state;
1212     U16 charid;
1213     SV *sv=sv_newmortal();
1214     int colwidth= widecharmap ? 6 : 4;
1215     GET_RE_DEBUG_FLAGS_DECL;
1216
1217     PERL_ARGS_ASSERT_DUMP_TRIE_INTERIM_TABLE;
1218     
1219     /*
1220        print out the table precompression so that we can do a visual check
1221        that they are identical.
1222      */
1223     
1224     PerlIO_printf( Perl_debug_log, "%*sChar : ",(int)depth * 2 + 2,"" );
1225
1226     for( charid = 0 ; charid < trie->uniquecharcount ; charid++ ) {
1227         SV ** const tmp = av_fetch( revcharmap, charid, 0);
1228         if ( tmp ) {
1229             PerlIO_printf( Perl_debug_log, "%*s", 
1230                 colwidth,
1231                 pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth, 
1232                             PL_colors[0], PL_colors[1],
1233                             (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
1234                             PERL_PV_ESCAPE_FIRSTCHAR 
1235                 ) 
1236             );
1237         }
1238     }
1239
1240     PerlIO_printf( Perl_debug_log, "\n%*sState+-",(int)depth * 2 + 2,"" );
1241
1242     for( charid=0 ; charid < trie->uniquecharcount ; charid++ ) {
1243         PerlIO_printf( Perl_debug_log, "%.*s", colwidth,"--------");
1244     }
1245
1246     PerlIO_printf( Perl_debug_log, "\n" );
1247
1248     for( state=1 ; state < next_alloc ; state += trie->uniquecharcount ) {
1249
1250         PerlIO_printf( Perl_debug_log, "%*s%4"UVXf" : ", 
1251             (int)depth * 2 + 2,"",
1252             (UV)TRIE_NODENUM( state ) );
1253
1254         for( charid = 0 ; charid < trie->uniquecharcount ; charid++ ) {
1255             UV v=(UV)SAFE_TRIE_NODENUM( trie->trans[ state + charid ].next );
1256             if (v)
1257                 PerlIO_printf( Perl_debug_log, "%*"UVXf, colwidth, v );
1258             else
1259                 PerlIO_printf( Perl_debug_log, "%*s", colwidth, "." );
1260         }
1261         if ( ! trie->states[ TRIE_NODENUM( state ) ].wordnum ) {
1262             PerlIO_printf( Perl_debug_log, " (%4"UVXf")\n", (UV)trie->trans[ state ].check );
1263         } else {
1264             PerlIO_printf( Perl_debug_log, " (%4"UVXf") W%4X\n", (UV)trie->trans[ state ].check,
1265             trie->states[ TRIE_NODENUM( state ) ].wordnum );
1266         }
1267     }
1268 }
1269
1270 #endif
1271
1272
1273 /* make_trie(startbranch,first,last,tail,word_count,flags,depth)
1274   startbranch: the first branch in the whole branch sequence
1275   first      : start branch of sequence of branch-exact nodes.
1276                May be the same as startbranch
1277   last       : Thing following the last branch.
1278                May be the same as tail.
1279   tail       : item following the branch sequence
1280   count      : words in the sequence
1281   flags      : currently the OP() type we will be building one of /EXACT(|F|Fl)/
1282   depth      : indent depth
1283
1284 Inplace optimizes a sequence of 2 or more Branch-Exact nodes into a TRIE node.
1285
1286 A trie is an N'ary tree where the branches are determined by digital
1287 decomposition of the key. IE, at the root node you look up the 1st character and
1288 follow that branch repeat until you find the end of the branches. Nodes can be
1289 marked as "accepting" meaning they represent a complete word. Eg:
1290
1291   /he|she|his|hers/
1292
1293 would convert into the following structure. Numbers represent states, letters
1294 following numbers represent valid transitions on the letter from that state, if
1295 the number is in square brackets it represents an accepting state, otherwise it
1296 will be in parenthesis.
1297
1298       +-h->+-e->[3]-+-r->(8)-+-s->[9]
1299       |    |
1300       |   (2)
1301       |    |
1302      (1)   +-i->(6)-+-s->[7]
1303       |
1304       +-s->(3)-+-h->(4)-+-e->[5]
1305
1306       Accept Word Mapping: 3=>1 (he),5=>2 (she), 7=>3 (his), 9=>4 (hers)
1307
1308 This shows that when matching against the string 'hers' we will begin at state 1
1309 read 'h' and move to state 2, read 'e' and move to state 3 which is accepting,
1310 then read 'r' and go to state 8 followed by 's' which takes us to state 9 which
1311 is also accepting. Thus we know that we can match both 'he' and 'hers' with a
1312 single traverse. We store a mapping from accepting to state to which word was
1313 matched, and then when we have multiple possibilities we try to complete the
1314 rest of the regex in the order in which they occured in the alternation.
1315
1316 The only prior NFA like behaviour that would be changed by the TRIE support is
1317 the silent ignoring of duplicate alternations which are of the form:
1318
1319  / (DUPE|DUPE) X? (?{ ... }) Y /x
1320
1321 Thus EVAL blocks following a trie may be called a different number of times with
1322 and without the optimisation. With the optimisations dupes will be silently
1323 ignored. This inconsistent behaviour of EVAL type nodes is well established as
1324 the following demonstrates:
1325
1326  'words'=~/(word|word|word)(?{ print $1 })[xyz]/
1327
1328 which prints out 'word' three times, but
1329
1330  'words'=~/(word|word|word)(?{ print $1 })S/
1331
1332 which doesnt print it out at all. This is due to other optimisations kicking in.
1333
1334 Example of what happens on a structural level:
1335
1336 The regexp /(ac|ad|ab)+/ will produce the following debug output:
1337
1338    1: CURLYM[1] {1,32767}(18)
1339    5:   BRANCH(8)
1340    6:     EXACT <ac>(16)
1341    8:   BRANCH(11)
1342    9:     EXACT <ad>(16)
1343   11:   BRANCH(14)
1344   12:     EXACT <ab>(16)
1345   16:   SUCCEED(0)
1346   17:   NOTHING(18)
1347   18: END(0)
1348
1349 This would be optimizable with startbranch=5, first=5, last=16, tail=16
1350 and should turn into:
1351
1352    1: CURLYM[1] {1,32767}(18)
1353    5:   TRIE(16)
1354         [Words:3 Chars Stored:6 Unique Chars:4 States:5 NCP:1]
1355           <ac>
1356           <ad>
1357           <ab>
1358   16:   SUCCEED(0)
1359   17:   NOTHING(18)
1360   18: END(0)
1361
1362 Cases where tail != last would be like /(?foo|bar)baz/:
1363
1364    1: BRANCH(4)
1365    2:   EXACT <foo>(8)
1366    4: BRANCH(7)
1367    5:   EXACT <bar>(8)
1368    7: TAIL(8)
1369    8: EXACT <baz>(10)
1370   10: END(0)
1371
1372 which would be optimizable with startbranch=1, first=1, last=7, tail=8
1373 and would end up looking like:
1374
1375     1: TRIE(8)
1376       [Words:2 Chars Stored:6 Unique Chars:5 States:7 NCP:1]
1377         <foo>
1378         <bar>
1379    7: TAIL(8)
1380    8: EXACT <baz>(10)
1381   10: END(0)
1382
1383     d = uvuni_to_utf8_flags(d, uv, 0);
1384
1385 is the recommended Unicode-aware way of saying
1386
1387     *(d++) = uv;
1388 */
1389
1390 #define TRIE_STORE_REVCHAR(val)                                            \
1391     STMT_START {                                                           \
1392         if (UTF) {                                                         \
1393             SV *zlopp = newSV(7); /* XXX: optimize me */                   \
1394             unsigned char *flrbbbbb = (unsigned char *) SvPVX(zlopp);      \
1395             unsigned const char *const kapow = uvuni_to_utf8(flrbbbbb, val); \
1396             SvCUR_set(zlopp, kapow - flrbbbbb);                            \
1397             SvPOK_on(zlopp);                                               \
1398             SvUTF8_on(zlopp);                                              \
1399             av_push(revcharmap, zlopp);                                    \
1400         } else {                                                           \
1401             char ooooff = (char)val;                                           \
1402             av_push(revcharmap, newSVpvn(&ooooff, 1));                     \
1403         }                                                                  \
1404         } STMT_END
1405
1406 #define TRIE_READ_CHAR STMT_START {                                                     \
1407     wordlen++;                                                                          \
1408     if ( UTF ) {                                                                        \
1409         /* if it is UTF then it is either already folded, or does not need folding */   \
1410         uvc = utf8n_to_uvuni( (const U8*) uc, UTF8_MAXLEN, &len, uniflags);             \
1411     }                                                                                   \
1412     else if (folder == PL_fold_latin1) {                                                \
1413         /* if we use this folder we have to obey unicode rules on latin-1 data */       \
1414         if ( foldlen > 0 ) {                                                            \
1415            uvc = utf8n_to_uvuni( (const U8*) scan, UTF8_MAXLEN, &len, uniflags );       \
1416            foldlen -= len;                                                              \
1417            scan += len;                                                                 \
1418            len = 0;                                                                     \
1419         } else {                                                                        \
1420             len = 1;                                                                    \
1421             uvc = _to_fold_latin1( (U8) *uc, foldbuf, &foldlen, 1);                     \
1422             skiplen = UNISKIP(uvc);                                                     \
1423             foldlen -= skiplen;                                                         \
1424             scan = foldbuf + skiplen;                                                   \
1425         }                                                                               \
1426     } else {                                                                            \
1427         /* raw data, will be folded later if needed */                                  \
1428         uvc = (U32)*uc;                                                                 \
1429         len = 1;                                                                        \
1430     }                                                                                   \
1431 } STMT_END
1432
1433
1434
1435 #define TRIE_LIST_PUSH(state,fid,ns) STMT_START {               \
1436     if ( TRIE_LIST_CUR( state ) >=TRIE_LIST_LEN( state ) ) {    \
1437         U32 ging = TRIE_LIST_LEN( state ) *= 2;                 \
1438         Renew( trie->states[ state ].trans.list, ging, reg_trie_trans_le ); \
1439     }                                                           \
1440     TRIE_LIST_ITEM( state, TRIE_LIST_CUR( state ) ).forid = fid;     \
1441     TRIE_LIST_ITEM( state, TRIE_LIST_CUR( state ) ).newstate = ns;   \
1442     TRIE_LIST_CUR( state )++;                                   \
1443 } STMT_END
1444
1445 #define TRIE_LIST_NEW(state) STMT_START {                       \
1446     Newxz( trie->states[ state ].trans.list,               \
1447         4, reg_trie_trans_le );                                 \
1448      TRIE_LIST_CUR( state ) = 1;                                \
1449      TRIE_LIST_LEN( state ) = 4;                                \
1450 } STMT_END
1451
1452 #define TRIE_HANDLE_WORD(state) STMT_START {                    \
1453     U16 dupe= trie->states[ state ].wordnum;                    \
1454     regnode * const noper_next = regnext( noper );              \
1455                                                                 \
1456     DEBUG_r({                                                   \
1457         /* store the word for dumping */                        \
1458         SV* tmp;                                                \
1459         if (OP(noper) != NOTHING)                               \
1460             tmp = newSVpvn_utf8(STRING(noper), STR_LEN(noper), UTF);    \
1461         else                                                    \
1462             tmp = newSVpvn_utf8( "", 0, UTF );                  \
1463         av_push( trie_words, tmp );                             \
1464     });                                                         \
1465                                                                 \
1466     curword++;                                                  \
1467     trie->wordinfo[curword].prev   = 0;                         \
1468     trie->wordinfo[curword].len    = wordlen;                   \
1469     trie->wordinfo[curword].accept = state;                     \
1470                                                                 \
1471     if ( noper_next < tail ) {                                  \
1472         if (!trie->jump)                                        \
1473             trie->jump = (U16 *) PerlMemShared_calloc( word_count + 1, sizeof(U16) ); \
1474         trie->jump[curword] = (U16)(noper_next - convert);      \
1475         if (!jumper)                                            \
1476             jumper = noper_next;                                \
1477         if (!nextbranch)                                        \
1478             nextbranch= regnext(cur);                           \
1479     }                                                           \
1480                                                                 \
1481     if ( dupe ) {                                               \
1482         /* It's a dupe. Pre-insert into the wordinfo[].prev   */\
1483         /* chain, so that when the bits of chain are later    */\
1484         /* linked together, the dups appear in the chain      */\
1485         trie->wordinfo[curword].prev = trie->wordinfo[dupe].prev; \
1486         trie->wordinfo[dupe].prev = curword;                    \
1487     } else {                                                    \
1488         /* we haven't inserted this word yet.                */ \
1489         trie->states[ state ].wordnum = curword;                \
1490     }                                                           \
1491 } STMT_END
1492
1493
1494 #define TRIE_TRANS_STATE(state,base,ucharcount,charid,special)          \
1495      ( ( base + charid >=  ucharcount                                   \
1496          && base + charid < ubound                                      \
1497          && state == trie->trans[ base - ucharcount + charid ].check    \
1498          && trie->trans[ base - ucharcount + charid ].next )            \
1499            ? trie->trans[ base - ucharcount + charid ].next             \
1500            : ( state==1 ? special : 0 )                                 \
1501       )
1502
1503 #define MADE_TRIE       1
1504 #define MADE_JUMP_TRIE  2
1505 #define MADE_EXACT_TRIE 4
1506
1507 STATIC I32
1508 S_make_trie(pTHX_ RExC_state_t *pRExC_state, regnode *startbranch, regnode *first, regnode *last, regnode *tail, U32 word_count, U32 flags, U32 depth)
1509 {
1510     dVAR;
1511     /* first pass, loop through and scan words */
1512     reg_trie_data *trie;
1513     HV *widecharmap = NULL;
1514     AV *revcharmap = newAV();
1515     regnode *cur;
1516     const U32 uniflags = UTF8_ALLOW_DEFAULT;
1517     STRLEN len = 0;
1518     UV uvc = 0;
1519     U16 curword = 0;
1520     U32 next_alloc = 0;
1521     regnode *jumper = NULL;
1522     regnode *nextbranch = NULL;
1523     regnode *convert = NULL;
1524     U32 *prev_states; /* temp array mapping each state to previous one */
1525     /* we just use folder as a flag in utf8 */
1526     const U8 * folder = NULL;
1527
1528 #ifdef DEBUGGING
1529     const U32 data_slot = add_data( pRExC_state, 4, "tuuu" );
1530     AV *trie_words = NULL;
1531     /* along with revcharmap, this only used during construction but both are
1532      * useful during debugging so we store them in the struct when debugging.
1533      */
1534 #else
1535     const U32 data_slot = add_data( pRExC_state, 2, "tu" );
1536     STRLEN trie_charcount=0;
1537 #endif
1538     SV *re_trie_maxbuff;
1539     GET_RE_DEBUG_FLAGS_DECL;
1540
1541     PERL_ARGS_ASSERT_MAKE_TRIE;
1542 #ifndef DEBUGGING
1543     PERL_UNUSED_ARG(depth);
1544 #endif
1545
1546     switch (flags) {
1547         case EXACT: break;
1548         case EXACTFA:
1549         case EXACTFU_SS:
1550         case EXACTFU_TRICKYFOLD:
1551         case EXACTFU: folder = PL_fold_latin1; break;
1552         case EXACTF:  folder = PL_fold; break;
1553         case EXACTFL: folder = PL_fold_locale; break;
1554         default: Perl_croak( aTHX_ "panic! In trie construction, unknown node type %u %s", (unsigned) flags, PL_reg_name[flags] );
1555     }
1556
1557     trie = (reg_trie_data *) PerlMemShared_calloc( 1, sizeof(reg_trie_data) );
1558     trie->refcount = 1;
1559     trie->startstate = 1;
1560     trie->wordcount = word_count;
1561     RExC_rxi->data->data[ data_slot ] = (void*)trie;
1562     trie->charmap = (U16 *) PerlMemShared_calloc( 256, sizeof(U16) );
1563     if (flags == EXACT)
1564         trie->bitmap = (char *) PerlMemShared_calloc( ANYOF_BITMAP_SIZE, 1 );
1565     trie->wordinfo = (reg_trie_wordinfo *) PerlMemShared_calloc(
1566                        trie->wordcount+1, sizeof(reg_trie_wordinfo));
1567
1568     DEBUG_r({
1569         trie_words = newAV();
1570     });
1571
1572     re_trie_maxbuff = get_sv(RE_TRIE_MAXBUF_NAME, 1);
1573     if (!SvIOK(re_trie_maxbuff)) {
1574         sv_setiv(re_trie_maxbuff, RE_TRIE_MAXBUF_INIT);
1575     }
1576     DEBUG_TRIE_COMPILE_r({
1577                 PerlIO_printf( Perl_debug_log,
1578                   "%*smake_trie start==%d, first==%d, last==%d, tail==%d depth=%d\n",
1579                   (int)depth * 2 + 2, "", 
1580                   REG_NODE_NUM(startbranch),REG_NODE_NUM(first), 
1581                   REG_NODE_NUM(last), REG_NODE_NUM(tail),
1582                   (int)depth);
1583     });
1584    
1585    /* Find the node we are going to overwrite */
1586     if ( first == startbranch && OP( last ) != BRANCH ) {
1587         /* whole branch chain */
1588         convert = first;
1589     } else {
1590         /* branch sub-chain */
1591         convert = NEXTOPER( first );
1592     }
1593         
1594     /*  -- First loop and Setup --
1595
1596        We first traverse the branches and scan each word to determine if it
1597        contains widechars, and how many unique chars there are, this is
1598        important as we have to build a table with at least as many columns as we
1599        have unique chars.
1600
1601        We use an array of integers to represent the character codes 0..255
1602        (trie->charmap) and we use a an HV* to store Unicode characters. We use the
1603        native representation of the character value as the key and IV's for the
1604        coded index.
1605
1606        *TODO* If we keep track of how many times each character is used we can
1607        remap the columns so that the table compression later on is more
1608        efficient in terms of memory by ensuring the most common value is in the
1609        middle and the least common are on the outside.  IMO this would be better
1610        than a most to least common mapping as theres a decent chance the most
1611        common letter will share a node with the least common, meaning the node
1612        will not be compressible. With a middle is most common approach the worst
1613        case is when we have the least common nodes twice.
1614
1615      */
1616
1617     for ( cur = first ; cur < last ; cur = regnext( cur ) ) {
1618         regnode *noper = NEXTOPER( cur );
1619         const U8 *uc = (U8*)STRING( noper );
1620         const U8 *e  = uc + STR_LEN( noper );
1621         STRLEN foldlen = 0;
1622         U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
1623         STRLEN skiplen = 0;
1624         const U8 *scan = (U8*)NULL;
1625         U32 wordlen      = 0;         /* required init */
1626         STRLEN chars = 0;
1627         bool set_bit = trie->bitmap ? 1 : 0; /*store the first char in the bitmap?*/
1628
1629         if (OP(noper) == NOTHING) {
1630             regnode *noper_next= regnext(noper);
1631             if (noper_next != tail && OP(noper_next) == flags) {
1632                 noper = noper_next;
1633                 uc= (U8*)STRING(noper);
1634                 e= uc + STR_LEN(noper);
1635                 trie->minlen= STR_LEN(noper);
1636             } else {
1637                 trie->minlen= 0;
1638                 continue;
1639             }
1640         }
1641
1642         if ( set_bit ) { /* bitmap only alloced when !(UTF&&Folding) */
1643             TRIE_BITMAP_SET(trie,*uc); /* store the raw first byte
1644                                           regardless of encoding */
1645             if (OP( noper ) == EXACTFU_SS) {
1646                 /* false positives are ok, so just set this */
1647                 TRIE_BITMAP_SET(trie,0xDF);
1648             }
1649         }
1650         for ( ; uc < e ; uc += len ) {
1651             TRIE_CHARCOUNT(trie)++;
1652             TRIE_READ_CHAR;
1653             chars++;
1654             if ( uvc < 256 ) {
1655                 if ( folder ) {
1656                     U8 folded= folder[ (U8) uvc ];
1657                     if ( !trie->charmap[ folded ] ) {
1658                         trie->charmap[ folded ]=( ++trie->uniquecharcount );
1659                         TRIE_STORE_REVCHAR( folded );
1660                     }
1661                 }
1662                 if ( !trie->charmap[ uvc ] ) {
1663                     trie->charmap[ uvc ]=( ++trie->uniquecharcount );
1664                     TRIE_STORE_REVCHAR( uvc );
1665                 }
1666                 if ( set_bit ) {
1667                     /* store the codepoint in the bitmap, and its folded
1668                      * equivalent. */
1669                     TRIE_BITMAP_SET(trie, uvc);
1670
1671                     /* store the folded codepoint */
1672                     if ( folder ) TRIE_BITMAP_SET(trie, folder[(U8) uvc ]);
1673
1674                     if ( !UTF ) {
1675                         /* store first byte of utf8 representation of
1676                            variant codepoints */
1677                         if (! UNI_IS_INVARIANT(uvc)) {
1678                             TRIE_BITMAP_SET(trie, UTF8_TWO_BYTE_HI(uvc));
1679                         }
1680                     }
1681                     set_bit = 0; /* We've done our bit :-) */
1682                 }
1683             } else {
1684                 SV** svpp;
1685                 if ( !widecharmap )
1686                     widecharmap = newHV();
1687
1688                 svpp = hv_fetch( widecharmap, (char*)&uvc, sizeof( UV ), 1 );
1689
1690                 if ( !svpp )
1691                     Perl_croak( aTHX_ "error creating/fetching widecharmap entry for 0x%"UVXf, uvc );
1692
1693                 if ( !SvTRUE( *svpp ) ) {
1694                     sv_setiv( *svpp, ++trie->uniquecharcount );
1695                     TRIE_STORE_REVCHAR(uvc);
1696                 }
1697             }
1698         }
1699         if( cur == first ) {
1700             trie->minlen = chars;
1701             trie->maxlen = chars;
1702         } else if (chars < trie->minlen) {
1703             trie->minlen = chars;
1704         } else if (chars > trie->maxlen) {
1705             trie->maxlen = chars;
1706         }
1707         if (OP( noper ) == EXACTFU_SS) {
1708             /* XXX: workaround - 'ss' could match "\x{DF}" so minlen could be 1 and not 2*/
1709             if (trie->minlen > 1)
1710                 trie->minlen= 1;
1711         }
1712         if (OP( noper ) == EXACTFU_TRICKYFOLD) {
1713             /* XXX: workround - things like "\x{1FBE}\x{0308}\x{0301}" can match "\x{0390}" 
1714              *                - We assume that any such sequence might match a 2 byte string */
1715             if (trie->minlen > 2 )
1716                 trie->minlen= 2;
1717         }
1718
1719     } /* end first pass */
1720     DEBUG_TRIE_COMPILE_r(
1721         PerlIO_printf( Perl_debug_log, "%*sTRIE(%s): W:%d C:%d Uq:%d Min:%d Max:%d\n",
1722                 (int)depth * 2 + 2,"",
1723                 ( widecharmap ? "UTF8" : "NATIVE" ), (int)word_count,
1724                 (int)TRIE_CHARCOUNT(trie), trie->uniquecharcount,
1725                 (int)trie->minlen, (int)trie->maxlen )
1726     );
1727
1728     /*
1729         We now know what we are dealing with in terms of unique chars and
1730         string sizes so we can calculate how much memory a naive
1731         representation using a flat table  will take. If it's over a reasonable
1732         limit (as specified by ${^RE_TRIE_MAXBUF}) we use a more memory
1733         conservative but potentially much slower representation using an array
1734         of lists.
1735
1736         At the end we convert both representations into the same compressed
1737         form that will be used in regexec.c for matching with. The latter
1738         is a form that cannot be used to construct with but has memory
1739         properties similar to the list form and access properties similar
1740         to the table form making it both suitable for fast searches and
1741         small enough that its feasable to store for the duration of a program.
1742
1743         See the comment in the code where the compressed table is produced
1744         inplace from the flat tabe representation for an explanation of how
1745         the compression works.
1746
1747     */
1748
1749
1750     Newx(prev_states, TRIE_CHARCOUNT(trie) + 2, U32);
1751     prev_states[1] = 0;
1752
1753     if ( (IV)( ( TRIE_CHARCOUNT(trie) + 1 ) * trie->uniquecharcount + 1) > SvIV(re_trie_maxbuff) ) {
1754         /*
1755             Second Pass -- Array Of Lists Representation
1756
1757             Each state will be represented by a list of charid:state records
1758             (reg_trie_trans_le) the first such element holds the CUR and LEN
1759             points of the allocated array. (See defines above).
1760
1761             We build the initial structure using the lists, and then convert
1762             it into the compressed table form which allows faster lookups
1763             (but cant be modified once converted).
1764         */
1765
1766         STRLEN transcount = 1;
1767
1768         DEBUG_TRIE_COMPILE_MORE_r( PerlIO_printf( Perl_debug_log, 
1769             "%*sCompiling trie using list compiler\n",
1770             (int)depth * 2 + 2, ""));
1771
1772         trie->states = (reg_trie_state *)
1773             PerlMemShared_calloc( TRIE_CHARCOUNT(trie) + 2,
1774                                   sizeof(reg_trie_state) );
1775         TRIE_LIST_NEW(1);
1776         next_alloc = 2;
1777
1778         for ( cur = first ; cur < last ; cur = regnext( cur ) ) {
1779
1780             regnode *noper   = NEXTOPER( cur );
1781             U8 *uc           = (U8*)STRING( noper );
1782             const U8 *e      = uc + STR_LEN( noper );
1783             U32 state        = 1;         /* required init */
1784             U16 charid       = 0;         /* sanity init */
1785             U8 *scan         = (U8*)NULL; /* sanity init */
1786             STRLEN foldlen   = 0;         /* required init */
1787             U32 wordlen      = 0;         /* required init */
1788             U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
1789             STRLEN skiplen   = 0;
1790
1791             if (OP(noper) == NOTHING) {
1792                 regnode *noper_next= regnext(noper);
1793                 if (noper_next != tail && OP(noper_next) == flags) {
1794                     noper = noper_next;
1795                     uc= (U8*)STRING(noper);
1796                     e= uc + STR_LEN(noper);
1797                 }
1798             }
1799
1800             if (OP(noper) != NOTHING) {
1801                 for ( ; uc < e ; uc += len ) {
1802
1803                     TRIE_READ_CHAR;
1804
1805                     if ( uvc < 256 ) {
1806                         charid = trie->charmap[ uvc ];
1807                     } else {
1808                         SV** const svpp = hv_fetch( widecharmap, (char*)&uvc, sizeof( UV ), 0);
1809                         if ( !svpp ) {
1810                             charid = 0;
1811                         } else {
1812                             charid=(U16)SvIV( *svpp );
1813                         }
1814                     }
1815                     /* charid is now 0 if we dont know the char read, or nonzero if we do */
1816                     if ( charid ) {
1817
1818                         U16 check;
1819                         U32 newstate = 0;
1820
1821                         charid--;
1822                         if ( !trie->states[ state ].trans.list ) {
1823                             TRIE_LIST_NEW( state );
1824                         }
1825                         for ( check = 1; check <= TRIE_LIST_USED( state ); check++ ) {
1826                             if ( TRIE_LIST_ITEM( state, check ).forid == charid ) {
1827                                 newstate = TRIE_LIST_ITEM( state, check ).newstate;
1828                                 break;
1829                             }
1830                         }
1831                         if ( ! newstate ) {
1832                             newstate = next_alloc++;
1833                             prev_states[newstate] = state;
1834                             TRIE_LIST_PUSH( state, charid, newstate );
1835                             transcount++;
1836                         }
1837                         state = newstate;
1838                     } else {
1839                         Perl_croak( aTHX_ "panic! In trie construction, no char mapping for %"IVdf, uvc );
1840                     }
1841                 }
1842             }
1843             TRIE_HANDLE_WORD(state);
1844
1845         } /* end second pass */
1846
1847         /* next alloc is the NEXT state to be allocated */
1848         trie->statecount = next_alloc; 
1849         trie->states = (reg_trie_state *)
1850             PerlMemShared_realloc( trie->states,
1851                                    next_alloc
1852                                    * sizeof(reg_trie_state) );
1853
1854         /* and now dump it out before we compress it */
1855         DEBUG_TRIE_COMPILE_MORE_r(dump_trie_interim_list(trie, widecharmap,
1856                                                          revcharmap, next_alloc,
1857                                                          depth+1)
1858         );
1859
1860         trie->trans = (reg_trie_trans *)
1861             PerlMemShared_calloc( transcount, sizeof(reg_trie_trans) );
1862         {
1863             U32 state;
1864             U32 tp = 0;
1865             U32 zp = 0;
1866
1867
1868             for( state=1 ; state < next_alloc ; state ++ ) {
1869                 U32 base=0;
1870
1871                 /*
1872                 DEBUG_TRIE_COMPILE_MORE_r(
1873                     PerlIO_printf( Perl_debug_log, "tp: %d zp: %d ",tp,zp)
1874                 );
1875                 */
1876
1877                 if (trie->states[state].trans.list) {
1878                     U16 minid=TRIE_LIST_ITEM( state, 1).forid;
1879                     U16 maxid=minid;
1880                     U16 idx;
1881
1882                     for( idx = 2 ; idx <= TRIE_LIST_USED( state ) ; idx++ ) {
1883                         const U16 forid = TRIE_LIST_ITEM( state, idx).forid;
1884                         if ( forid < minid ) {
1885                             minid=forid;
1886                         } else if ( forid > maxid ) {
1887                             maxid=forid;
1888                         }
1889                     }
1890                     if ( transcount < tp + maxid - minid + 1) {
1891                         transcount *= 2;
1892                         trie->trans = (reg_trie_trans *)
1893                             PerlMemShared_realloc( trie->trans,
1894                                                      transcount
1895                                                      * sizeof(reg_trie_trans) );
1896                         Zero( trie->trans + (transcount / 2), transcount / 2 , reg_trie_trans );
1897                     }
1898                     base = trie->uniquecharcount + tp - minid;
1899                     if ( maxid == minid ) {
1900                         U32 set = 0;
1901                         for ( ; zp < tp ; zp++ ) {
1902                             if ( ! trie->trans[ zp ].next ) {
1903                                 base = trie->uniquecharcount + zp - minid;
1904                                 trie->trans[ zp ].next = TRIE_LIST_ITEM( state, 1).newstate;
1905                                 trie->trans[ zp ].check = state;
1906                                 set = 1;
1907                                 break;
1908                             }
1909                         }
1910                         if ( !set ) {
1911                             trie->trans[ tp ].next = TRIE_LIST_ITEM( state, 1).newstate;
1912                             trie->trans[ tp ].check = state;
1913                             tp++;
1914                             zp = tp;
1915                         }
1916                     } else {
1917                         for ( idx=1; idx <= TRIE_LIST_USED( state ) ; idx++ ) {
1918                             const U32 tid = base -  trie->uniquecharcount + TRIE_LIST_ITEM( state, idx ).forid;
1919                             trie->trans[ tid ].next = TRIE_LIST_ITEM( state, idx ).newstate;
1920                             trie->trans[ tid ].check = state;
1921                         }
1922                         tp += ( maxid - minid + 1 );
1923                     }
1924                     Safefree(trie->states[ state ].trans.list);
1925                 }
1926                 /*
1927                 DEBUG_TRIE_COMPILE_MORE_r(
1928                     PerlIO_printf( Perl_debug_log, " base: %d\n",base);
1929                 );
1930                 */
1931                 trie->states[ state ].trans.base=base;
1932             }
1933             trie->lasttrans = tp + 1;
1934         }
1935     } else {
1936         /*
1937            Second Pass -- Flat Table Representation.
1938
1939            we dont use the 0 slot of either trans[] or states[] so we add 1 to each.
1940            We know that we will need Charcount+1 trans at most to store the data
1941            (one row per char at worst case) So we preallocate both structures
1942            assuming worst case.
1943
1944            We then construct the trie using only the .next slots of the entry
1945            structs.
1946
1947            We use the .check field of the first entry of the node temporarily to
1948            make compression both faster and easier by keeping track of how many non
1949            zero fields are in the node.
1950
1951            Since trans are numbered from 1 any 0 pointer in the table is a FAIL
1952            transition.
1953
1954            There are two terms at use here: state as a TRIE_NODEIDX() which is a
1955            number representing the first entry of the node, and state as a
1956            TRIE_NODENUM() which is the trans number. state 1 is TRIE_NODEIDX(1) and
1957            TRIE_NODENUM(1), state 2 is TRIE_NODEIDX(2) and TRIE_NODENUM(3) if there
1958            are 2 entrys per node. eg:
1959
1960              A B       A B
1961           1. 2 4    1. 3 7
1962           2. 0 3    3. 0 5
1963           3. 0 0    5. 0 0
1964           4. 0 0    7. 0 0
1965
1966            The table is internally in the right hand, idx form. However as we also
1967            have to deal with the states array which is indexed by nodenum we have to
1968            use TRIE_NODENUM() to convert.
1969
1970         */
1971         DEBUG_TRIE_COMPILE_MORE_r( PerlIO_printf( Perl_debug_log, 
1972             "%*sCompiling trie using table compiler\n",
1973             (int)depth * 2 + 2, ""));
1974
1975         trie->trans = (reg_trie_trans *)
1976             PerlMemShared_calloc( ( TRIE_CHARCOUNT(trie) + 1 )
1977                                   * trie->uniquecharcount + 1,
1978                                   sizeof(reg_trie_trans) );
1979         trie->states = (reg_trie_state *)
1980             PerlMemShared_calloc( TRIE_CHARCOUNT(trie) + 2,
1981                                   sizeof(reg_trie_state) );
1982         next_alloc = trie->uniquecharcount + 1;
1983
1984
1985         for ( cur = first ; cur < last ; cur = regnext( cur ) ) {
1986
1987             regnode *noper   = NEXTOPER( cur );
1988             const U8 *uc     = (U8*)STRING( noper );
1989             const U8 *e      = uc + STR_LEN( noper );
1990
1991             U32 state        = 1;         /* required init */
1992
1993             U16 charid       = 0;         /* sanity init */
1994             U32 accept_state = 0;         /* sanity init */
1995             U8 *scan         = (U8*)NULL; /* sanity init */
1996
1997             STRLEN foldlen   = 0;         /* required init */
1998             U32 wordlen      = 0;         /* required init */
1999             STRLEN skiplen   = 0;
2000             U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
2001
2002             if (OP(noper) == NOTHING) {
2003                 regnode *noper_next= regnext(noper);
2004                 if (noper_next != tail && OP(noper_next) == flags) {
2005                     noper = noper_next;
2006                     uc= (U8*)STRING(noper);
2007                     e= uc + STR_LEN(noper);
2008                 }
2009             }
2010
2011             if ( OP(noper) != NOTHING ) {
2012                 for ( ; uc < e ; uc += len ) {
2013
2014                     TRIE_READ_CHAR;
2015
2016                     if ( uvc < 256 ) {
2017                         charid = trie->charmap[ uvc ];
2018                     } else {
2019                         SV* const * const svpp = hv_fetch( widecharmap, (char*)&uvc, sizeof( UV ), 0);
2020                         charid = svpp ? (U16)SvIV(*svpp) : 0;
2021                     }
2022                     if ( charid ) {
2023                         charid--;
2024                         if ( !trie->trans[ state + charid ].next ) {
2025                             trie->trans[ state + charid ].next = next_alloc;
2026                             trie->trans[ state ].check++;
2027                             prev_states[TRIE_NODENUM(next_alloc)]
2028                                     = TRIE_NODENUM(state);
2029                             next_alloc += trie->uniquecharcount;
2030                         }
2031                         state = trie->trans[ state + charid ].next;
2032                     } else {
2033                         Perl_croak( aTHX_ "panic! In trie construction, no char mapping for %"IVdf, uvc );
2034                     }
2035                     /* charid is now 0 if we dont know the char read, or nonzero if we do */
2036                 }
2037             }
2038             accept_state = TRIE_NODENUM( state );
2039             TRIE_HANDLE_WORD(accept_state);
2040
2041         } /* end second pass */
2042
2043         /* and now dump it out before we compress it */
2044         DEBUG_TRIE_COMPILE_MORE_r(dump_trie_interim_table(trie, widecharmap,
2045                                                           revcharmap,
2046                                                           next_alloc, depth+1));
2047
2048         {
2049         /*
2050            * Inplace compress the table.*
2051
2052            For sparse data sets the table constructed by the trie algorithm will
2053            be mostly 0/FAIL transitions or to put it another way mostly empty.
2054            (Note that leaf nodes will not contain any transitions.)
2055
2056            This algorithm compresses the tables by eliminating most such
2057            transitions, at the cost of a modest bit of extra work during lookup:
2058
2059            - Each states[] entry contains a .base field which indicates the
2060            index in the state[] array wheres its transition data is stored.
2061
2062            - If .base is 0 there are no valid transitions from that node.
2063
2064            - If .base is nonzero then charid is added to it to find an entry in
2065            the trans array.
2066
2067            -If trans[states[state].base+charid].check!=state then the
2068            transition is taken to be a 0/Fail transition. Thus if there are fail
2069            transitions at the front of the node then the .base offset will point
2070            somewhere inside the previous nodes data (or maybe even into a node
2071            even earlier), but the .check field determines if the transition is
2072            valid.
2073
2074            XXX - wrong maybe?
2075            The following process inplace converts the table to the compressed
2076            table: We first do not compress the root node 1,and mark all its
2077            .check pointers as 1 and set its .base pointer as 1 as well. This
2078            allows us to do a DFA construction from the compressed table later,
2079            and ensures that any .base pointers we calculate later are greater
2080            than 0.
2081
2082            - We set 'pos' to indicate the first entry of the second node.
2083
2084            - We then iterate over the columns of the node, finding the first and
2085            last used entry at l and m. We then copy l..m into pos..(pos+m-l),
2086            and set the .check pointers accordingly, and advance pos
2087            appropriately and repreat for the next node. Note that when we copy
2088            the next pointers we have to convert them from the original
2089            NODEIDX form to NODENUM form as the former is not valid post
2090            compression.
2091
2092            - If a node has no transitions used we mark its base as 0 and do not
2093            advance the pos pointer.
2094
2095            - If a node only has one transition we use a second pointer into the
2096            structure to fill in allocated fail transitions from other states.
2097            This pointer is independent of the main pointer and scans forward
2098            looking for null transitions that are allocated to a state. When it
2099            finds one it writes the single transition into the "hole".  If the
2100            pointer doesnt find one the single transition is appended as normal.
2101
2102            - Once compressed we can Renew/realloc the structures to release the
2103            excess space.
2104
2105            See "Table-Compression Methods" in sec 3.9 of the Red Dragon,
2106            specifically Fig 3.47 and the associated pseudocode.
2107
2108            demq
2109         */
2110         const U32 laststate = TRIE_NODENUM( next_alloc );
2111         U32 state, charid;
2112         U32 pos = 0, zp=0;
2113         trie->statecount = laststate;
2114
2115         for ( state = 1 ; state < laststate ; state++ ) {
2116             U8 flag = 0;
2117             const U32 stateidx = TRIE_NODEIDX( state );
2118             const U32 o_used = trie->trans[ stateidx ].check;
2119             U32 used = trie->trans[ stateidx ].check;
2120             trie->trans[ stateidx ].check = 0;
2121
2122             for ( charid = 0 ; used && charid < trie->uniquecharcount ; charid++ ) {
2123                 if ( flag || trie->trans[ stateidx + charid ].next ) {
2124                     if ( trie->trans[ stateidx + charid ].next ) {
2125                         if (o_used == 1) {
2126                             for ( ; zp < pos ; zp++ ) {
2127                                 if ( ! trie->trans[ zp ].next ) {
2128                                     break;
2129                                 }
2130                             }
2131                             trie->states[ state ].trans.base = zp + trie->uniquecharcount - charid ;
2132                             trie->trans[ zp ].next = SAFE_TRIE_NODENUM( trie->trans[ stateidx + charid ].next );
2133                             trie->trans[ zp ].check = state;
2134                             if ( ++zp > pos ) pos = zp;
2135                             break;
2136                         }
2137                         used--;
2138                     }
2139                     if ( !flag ) {
2140                         flag = 1;
2141                         trie->states[ state ].trans.base = pos + trie->uniquecharcount - charid ;
2142                     }
2143                     trie->trans[ pos ].next = SAFE_TRIE_NODENUM( trie->trans[ stateidx + charid ].next );
2144                     trie->trans[ pos ].check = state;
2145                     pos++;
2146                 }
2147             }
2148         }
2149         trie->lasttrans = pos + 1;
2150         trie->states = (reg_trie_state *)
2151             PerlMemShared_realloc( trie->states, laststate
2152                                    * sizeof(reg_trie_state) );
2153         DEBUG_TRIE_COMPILE_MORE_r(
2154                 PerlIO_printf( Perl_debug_log,
2155                     "%*sAlloc: %d Orig: %"IVdf" elements, Final:%"IVdf". Savings of %%%5.2f\n",
2156                     (int)depth * 2 + 2,"",
2157                     (int)( ( TRIE_CHARCOUNT(trie) + 1 ) * trie->uniquecharcount + 1 ),
2158                     (IV)next_alloc,
2159                     (IV)pos,
2160                     ( ( next_alloc - pos ) * 100 ) / (double)next_alloc );
2161             );
2162
2163         } /* end table compress */
2164     }
2165     DEBUG_TRIE_COMPILE_MORE_r(
2166             PerlIO_printf(Perl_debug_log, "%*sStatecount:%"UVxf" Lasttrans:%"UVxf"\n",
2167                 (int)depth * 2 + 2, "",
2168                 (UV)trie->statecount,
2169                 (UV)trie->lasttrans)
2170     );
2171     /* resize the trans array to remove unused space */
2172     trie->trans = (reg_trie_trans *)
2173         PerlMemShared_realloc( trie->trans, trie->lasttrans
2174                                * sizeof(reg_trie_trans) );
2175
2176     {   /* Modify the program and insert the new TRIE node */ 
2177         U8 nodetype =(U8)(flags & 0xFF);
2178         char *str=NULL;
2179         
2180 #ifdef DEBUGGING
2181         regnode *optimize = NULL;
2182 #ifdef RE_TRACK_PATTERN_OFFSETS
2183
2184         U32 mjd_offset = 0;
2185         U32 mjd_nodelen = 0;
2186 #endif /* RE_TRACK_PATTERN_OFFSETS */
2187 #endif /* DEBUGGING */
2188         /*
2189            This means we convert either the first branch or the first Exact,
2190            depending on whether the thing following (in 'last') is a branch
2191            or not and whther first is the startbranch (ie is it a sub part of
2192            the alternation or is it the whole thing.)
2193            Assuming its a sub part we convert the EXACT otherwise we convert
2194            the whole branch sequence, including the first.
2195          */
2196         /* Find the node we are going to overwrite */
2197         if ( first != startbranch || OP( last ) == BRANCH ) {
2198             /* branch sub-chain */
2199             NEXT_OFF( first ) = (U16)(last - first);
2200 #ifdef RE_TRACK_PATTERN_OFFSETS
2201             DEBUG_r({
2202                 mjd_offset= Node_Offset((convert));
2203                 mjd_nodelen= Node_Length((convert));
2204             });
2205 #endif
2206             /* whole branch chain */
2207         }
2208 #ifdef RE_TRACK_PATTERN_OFFSETS
2209         else {
2210             DEBUG_r({
2211                 const  regnode *nop = NEXTOPER( convert );
2212                 mjd_offset= Node_Offset((nop));
2213                 mjd_nodelen= Node_Length((nop));
2214             });
2215         }
2216         DEBUG_OPTIMISE_r(
2217             PerlIO_printf(Perl_debug_log, "%*sMJD offset:%"UVuf" MJD length:%"UVuf"\n",
2218                 (int)depth * 2 + 2, "",
2219                 (UV)mjd_offset, (UV)mjd_nodelen)
2220         );
2221 #endif
2222         /* But first we check to see if there is a common prefix we can 
2223            split out as an EXACT and put in front of the TRIE node.  */
2224         trie->startstate= 1;
2225         if ( trie->bitmap && !widecharmap && !trie->jump  ) {
2226             U32 state;
2227             for ( state = 1 ; state < trie->statecount-1 ; state++ ) {
2228                 U32 ofs = 0;
2229                 I32 idx = -1;
2230                 U32 count = 0;
2231                 const U32 base = trie->states[ state ].trans.base;
2232
2233                 if ( trie->states[state].wordnum )
2234                         count = 1;
2235
2236                 for ( ofs = 0 ; ofs < trie->uniquecharcount ; ofs++ ) {
2237                     if ( ( base + ofs >= trie->uniquecharcount ) &&
2238                          ( base + ofs - trie->uniquecharcount < trie->lasttrans ) &&
2239                          trie->trans[ base + ofs - trie->uniquecharcount ].check == state )
2240                     {
2241                         if ( ++count > 1 ) {
2242                             SV **tmp = av_fetch( revcharmap, ofs, 0);
2243                             const U8 *ch = (U8*)SvPV_nolen_const( *tmp );
2244                             if ( state == 1 ) break;
2245                             if ( count == 2 ) {
2246                                 Zero(trie->bitmap, ANYOF_BITMAP_SIZE, char);
2247                                 DEBUG_OPTIMISE_r(
2248                                     PerlIO_printf(Perl_debug_log,
2249                                         "%*sNew Start State=%"UVuf" Class: [",
2250                                         (int)depth * 2 + 2, "",
2251                                         (UV)state));
2252                                 if (idx >= 0) {
2253                                     SV ** const tmp = av_fetch( revcharmap, idx, 0);
2254                                     const U8 * const ch = (U8*)SvPV_nolen_const( *tmp );
2255
2256                                     TRIE_BITMAP_SET(trie,*ch);
2257                                     if ( folder )
2258                                         TRIE_BITMAP_SET(trie, folder[ *ch ]);
2259                                     DEBUG_OPTIMISE_r(
2260                                         PerlIO_printf(Perl_debug_log, "%s", (char*)ch)
2261                                     );
2262                                 }
2263                             }
2264                             TRIE_BITMAP_SET(trie,*ch);
2265                             if ( folder )
2266                                 TRIE_BITMAP_SET(trie,folder[ *ch ]);
2267                             DEBUG_OPTIMISE_r(PerlIO_printf( Perl_debug_log,"%s", ch));
2268                         }
2269                         idx = ofs;
2270                     }
2271                 }
2272                 if ( count == 1 ) {
2273                     SV **tmp = av_fetch( revcharmap, idx, 0);
2274                     STRLEN len;
2275                     char *ch = SvPV( *tmp, len );
2276                     DEBUG_OPTIMISE_r({
2277                         SV *sv=sv_newmortal();
2278                         PerlIO_printf( Perl_debug_log,
2279                             "%*sPrefix State: %"UVuf" Idx:%"UVuf" Char='%s'\n",
2280                             (int)depth * 2 + 2, "",
2281                             (UV)state, (UV)idx, 
2282                             pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), 6, 
2283                                 PL_colors[0], PL_colors[1],
2284                                 (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
2285                                 PERL_PV_ESCAPE_FIRSTCHAR 
2286                             )
2287                         );
2288                     });
2289                     if ( state==1 ) {
2290                         OP( convert ) = nodetype;
2291                         str=STRING(convert);
2292                         STR_LEN(convert)=0;
2293                     }
2294                     STR_LEN(convert) += len;
2295                     while (len--)
2296                         *str++ = *ch++;
2297                 } else {
2298 #ifdef DEBUGGING            
2299                     if (state>1)
2300                         DEBUG_OPTIMISE_r(PerlIO_printf( Perl_debug_log,"]\n"));
2301 #endif
2302                     break;
2303                 }
2304             }
2305             trie->prefixlen = (state-1);
2306             if (str) {
2307                 regnode *n = convert+NODE_SZ_STR(convert);
2308                 NEXT_OFF(convert) = NODE_SZ_STR(convert);
2309                 trie->startstate = state;
2310                 trie->minlen -= (state - 1);
2311                 trie->maxlen -= (state - 1);
2312 #ifdef DEBUGGING
2313                /* At least the UNICOS C compiler choked on this
2314                 * being argument to DEBUG_r(), so let's just have
2315                 * it right here. */
2316                if (
2317 #ifdef PERL_EXT_RE_BUILD
2318                    1
2319 #else
2320                    DEBUG_r_TEST
2321 #endif
2322                    ) {
2323                    regnode *fix = convert;
2324                    U32 word = trie->wordcount;
2325                    mjd_nodelen++;
2326                    Set_Node_Offset_Length(convert, mjd_offset, state - 1);
2327                    while( ++fix < n ) {
2328                        Set_Node_Offset_Length(fix, 0, 0);
2329                    }
2330                    while (word--) {
2331                        SV ** const tmp = av_fetch( trie_words, word, 0 );
2332                        if (tmp) {
2333                            if ( STR_LEN(convert) <= SvCUR(*tmp) )
2334                                sv_chop(*tmp, SvPV_nolen(*tmp) + STR_LEN(convert));
2335                            else
2336                                sv_chop(*tmp, SvPV_nolen(*tmp) + SvCUR(*tmp));
2337                        }
2338                    }
2339                }
2340 #endif
2341                 if (trie->maxlen) {
2342                     convert = n;
2343                 } else {
2344                     NEXT_OFF(convert) = (U16)(tail - convert);
2345                     DEBUG_r(optimize= n);
2346                 }
2347             }
2348         }
2349         if (!jumper) 
2350             jumper = last; 
2351         if ( trie->maxlen ) {
2352             NEXT_OFF( convert ) = (U16)(tail - convert);
2353             ARG_SET( convert, data_slot );
2354             /* Store the offset to the first unabsorbed branch in 
2355                jump[0], which is otherwise unused by the jump logic. 
2356                We use this when dumping a trie and during optimisation. */
2357             if (trie->jump) 
2358                 trie->jump[0] = (U16)(nextbranch - convert);
2359             
2360             /* If the start state is not accepting (meaning there is no empty string/NOTHING)
2361              *   and there is a bitmap
2362              *   and the first "jump target" node we found leaves enough room
2363              * then convert the TRIE node into a TRIEC node, with the bitmap
2364              * embedded inline in the opcode - this is hypothetically faster.
2365              */
2366             if ( !trie->states[trie->startstate].wordnum
2367                  && trie->bitmap
2368                  && ( (char *)jumper - (char *)convert) >= (int)sizeof(struct regnode_charclass) )
2369             {
2370                 OP( convert ) = TRIEC;
2371                 Copy(trie->bitmap, ((struct regnode_charclass *)convert)->bitmap, ANYOF_BITMAP_SIZE, char);
2372                 PerlMemShared_free(trie->bitmap);
2373                 trie->bitmap= NULL;
2374             } else 
2375                 OP( convert ) = TRIE;
2376
2377             /* store the type in the flags */
2378             convert->flags = nodetype;
2379             DEBUG_r({
2380             optimize = convert 
2381                       + NODE_STEP_REGNODE 
2382                       + regarglen[ OP( convert ) ];
2383             });
2384             /* XXX We really should free up the resource in trie now, 
2385                    as we won't use them - (which resources?) dmq */
2386         }
2387         /* needed for dumping*/
2388         DEBUG_r(if (optimize) {
2389             regnode *opt = convert;
2390
2391             while ( ++opt < optimize) {
2392                 Set_Node_Offset_Length(opt,0,0);
2393             }
2394             /* 
2395                 Try to clean up some of the debris left after the 
2396                 optimisation.
2397              */
2398             while( optimize < jumper ) {
2399                 mjd_nodelen += Node_Length((optimize));
2400                 OP( optimize ) = OPTIMIZED;
2401                 Set_Node_Offset_Length(optimize,0,0);
2402                 optimize++;
2403             }
2404             Set_Node_Offset_Length(convert,mjd_offset,mjd_nodelen);
2405         });
2406     } /* end node insert */
2407
2408     /*  Finish populating the prev field of the wordinfo array.  Walk back
2409      *  from each accept state until we find another accept state, and if
2410      *  so, point the first word's .prev field at the second word. If the
2411      *  second already has a .prev field set, stop now. This will be the
2412      *  case either if we've already processed that word's accept state,
2413      *  or that state had multiple words, and the overspill words were
2414      *  already linked up earlier.
2415      */
2416     {
2417         U16 word;
2418         U32 state;
2419         U16 prev;
2420
2421         for (word=1; word <= trie->wordcount; word++) {
2422             prev = 0;
2423             if (trie->wordinfo[word].prev)
2424                 continue;
2425             state = trie->wordinfo[word].accept;
2426             while (state) {
2427                 state = prev_states[state];
2428                 if (!state)
2429                     break;
2430                 prev = trie->states[state].wordnum;
2431                 if (prev)
2432                     break;
2433             }
2434             trie->wordinfo[word].prev = prev;
2435         }
2436         Safefree(prev_states);
2437     }
2438
2439
2440     /* and now dump out the compressed format */
2441     DEBUG_TRIE_COMPILE_r(dump_trie(trie, widecharmap, revcharmap, depth+1));
2442
2443     RExC_rxi->data->data[ data_slot + 1 ] = (void*)widecharmap;
2444 #ifdef DEBUGGING
2445     RExC_rxi->data->data[ data_slot + TRIE_WORDS_OFFSET ] = (void*)trie_words;
2446     RExC_rxi->data->data[ data_slot + 3 ] = (void*)revcharmap;
2447 #else
2448     SvREFCNT_dec(revcharmap);
2449 #endif
2450     return trie->jump 
2451            ? MADE_JUMP_TRIE 
2452            : trie->startstate>1 
2453              ? MADE_EXACT_TRIE 
2454              : MADE_TRIE;
2455 }
2456
2457 STATIC void
2458 S_make_trie_failtable(pTHX_ RExC_state_t *pRExC_state, regnode *source,  regnode *stclass, U32 depth)
2459 {
2460 /* The Trie is constructed and compressed now so we can build a fail array if it's needed
2461
2462    This is basically the Aho-Corasick algorithm. Its from exercise 3.31 and 3.32 in the
2463    "Red Dragon" -- Compilers, principles, techniques, and tools. Aho, Sethi, Ullman 1985/88
2464    ISBN 0-201-10088-6
2465
2466    We find the fail state for each state in the trie, this state is the longest proper
2467    suffix of the current state's 'word' that is also a proper prefix of another word in our
2468    trie. State 1 represents the word '' and is thus the default fail state. This allows
2469    the DFA not to have to restart after its tried and failed a word at a given point, it
2470    simply continues as though it had been matching the other word in the first place.
2471    Consider
2472       'abcdgu'=~/abcdefg|cdgu/
2473    When we get to 'd' we are still matching the first word, we would encounter 'g' which would
2474    fail, which would bring us to the state representing 'd' in the second word where we would
2475    try 'g' and succeed, proceeding to match 'cdgu'.
2476  */
2477  /* add a fail transition */
2478     const U32 trie_offset = ARG(source);
2479     reg_trie_data *trie=(reg_trie_data *)RExC_rxi->data->data[trie_offset];
2480     U32 *q;
2481     const U32 ucharcount = trie->uniquecharcount;
2482     const U32 numstates = trie->statecount;
2483     const U32 ubound = trie->lasttrans + ucharcount;
2484     U32 q_read = 0;
2485     U32 q_write = 0;
2486     U32 charid;
2487     U32 base = trie->states[ 1 ].trans.base;
2488     U32 *fail;
2489     reg_ac_data *aho;
2490     const U32 data_slot = add_data( pRExC_state, 1, "T" );
2491     GET_RE_DEBUG_FLAGS_DECL;
2492
2493     PERL_ARGS_ASSERT_MAKE_TRIE_FAILTABLE;
2494 #ifndef DEBUGGING
2495     PERL_UNUSED_ARG(depth);
2496 #endif
2497
2498
2499     ARG_SET( stclass, data_slot );
2500     aho = (reg_ac_data *) PerlMemShared_calloc( 1, sizeof(reg_ac_data) );
2501     RExC_rxi->data->data[ data_slot ] = (void*)aho;
2502     aho->trie=trie_offset;
2503     aho->states=(reg_trie_state *)PerlMemShared_malloc( numstates * sizeof(reg_trie_state) );
2504     Copy( trie->states, aho->states, numstates, reg_trie_state );
2505     Newxz( q, numstates, U32);
2506     aho->fail = (U32 *) PerlMemShared_calloc( numstates, sizeof(U32) );
2507     aho->refcount = 1;
2508     fail = aho->fail;
2509     /* initialize fail[0..1] to be 1 so that we always have
2510        a valid final fail state */
2511     fail[ 0 ] = fail[ 1 ] = 1;
2512
2513     for ( charid = 0; charid < ucharcount ; charid++ ) {
2514         const U32 newstate = TRIE_TRANS_STATE( 1, base, ucharcount, charid, 0 );
2515         if ( newstate ) {
2516             q[ q_write ] = newstate;
2517             /* set to point at the root */
2518             fail[ q[ q_write++ ] ]=1;
2519         }
2520     }
2521     while ( q_read < q_write) {
2522         const U32 cur = q[ q_read++ % numstates ];
2523         base = trie->states[ cur ].trans.base;
2524
2525         for ( charid = 0 ; charid < ucharcount ; charid++ ) {
2526             const U32 ch_state = TRIE_TRANS_STATE( cur, base, ucharcount, charid, 1 );
2527             if (ch_state) {
2528                 U32 fail_state = cur;
2529                 U32 fail_base;
2530                 do {
2531                     fail_state = fail[ fail_state ];
2532                     fail_base = aho->states[ fail_state ].trans.base;
2533                 } while ( !TRIE_TRANS_STATE( fail_state, fail_base, ucharcount, charid, 1 ) );
2534
2535                 fail_state = TRIE_TRANS_STATE( fail_state, fail_base, ucharcount, charid, 1 );
2536                 fail[ ch_state ] = fail_state;
2537                 if ( !aho->states[ ch_state ].wordnum && aho->states[ fail_state ].wordnum )
2538                 {
2539                         aho->states[ ch_state ].wordnum =  aho->states[ fail_state ].wordnum;
2540                 }
2541                 q[ q_write++ % numstates] = ch_state;
2542             }
2543         }
2544     }
2545     /* restore fail[0..1] to 0 so that we "fall out" of the AC loop
2546        when we fail in state 1, this allows us to use the
2547        charclass scan to find a valid start char. This is based on the principle
2548        that theres a good chance the string being searched contains lots of stuff
2549        that cant be a start char.
2550      */
2551     fail[ 0 ] = fail[ 1 ] = 0;
2552     DEBUG_TRIE_COMPILE_r({
2553         PerlIO_printf(Perl_debug_log,
2554                       "%*sStclass Failtable (%"UVuf" states): 0", 
2555                       (int)(depth * 2), "", (UV)numstates
2556         );
2557         for( q_read=1; q_read<numstates; q_read++ ) {
2558             PerlIO_printf(Perl_debug_log, ", %"UVuf, (UV)fail[q_read]);
2559         }
2560         PerlIO_printf(Perl_debug_log, "\n");
2561     });
2562     Safefree(q);
2563     /*RExC_seen |= REG_SEEN_TRIEDFA;*/
2564 }
2565
2566
2567 /*
2568  * There are strange code-generation bugs caused on sparc64 by gcc-2.95.2.
2569  * These need to be revisited when a newer toolchain becomes available.
2570  */
2571 #if defined(__sparc64__) && defined(__GNUC__)
2572 #   if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 96)
2573 #       undef  SPARC64_GCC_WORKAROUND
2574 #       define SPARC64_GCC_WORKAROUND 1
2575 #   endif
2576 #endif
2577
2578 #define DEBUG_PEEP(str,scan,depth) \
2579     DEBUG_OPTIMISE_r({if (scan){ \
2580        SV * const mysv=sv_newmortal(); \
2581        regnode *Next = regnext(scan); \
2582        regprop(RExC_rx, mysv, scan); \
2583        PerlIO_printf(Perl_debug_log, "%*s" str ">%3d: %s (%d)\n", \
2584        (int)depth*2, "", REG_NODE_NUM(scan), SvPV_nolen_const(mysv),\
2585        Next ? (REG_NODE_NUM(Next)) : 0 ); \
2586    }});
2587
2588
2589 /* The below joins as many adjacent EXACTish nodes as possible into a single
2590  * one, and looks for problematic sequences of characters whose folds vs.
2591  * non-folds have sufficiently different lengths, that the optimizer would be
2592  * fooled into rejecting legitimate matches of them, and the trie construction
2593  * code needs to handle specially.  The joining is only done if:
2594  * 1) there is room in the current conglomerated node to entirely contain the
2595  *    next one.
2596  * 2) they are the exact same node type
2597  *
2598  * The adjacent nodes actually may be separated by NOTHING-kind nodes, and
2599  * these get optimized out
2600  *
2601  * If there are problematic code sequences, *min_subtract is set to the delta
2602  * that the minimum size of the node can be less than its actual size.  And,
2603  * the node type of the result is changed to reflect that it contains these
2604  * sequences.
2605  *
2606  * And *has_exactf_sharp_s is set to indicate whether or not the node is EXACTF
2607  * and contains LATIN SMALL LETTER SHARP S
2608  *
2609  * This is as good a place as any to discuss the design of handling these
2610  * problematic sequences.  It's been wrong in Perl for a very long time.  There
2611  * are three code points currently in Unicode whose folded lengths differ so
2612  * much from the un-folded lengths that it causes problems for the optimizer
2613  * and trie construction.  Why only these are problematic, and not others where
2614  * lengths also differ is something I (khw) do not understand.  New versions of
2615  * Unicode might add more such code points.  Hopefully the logic in
2616  * fold_grind.t that figures out what to test (in part by verifying that each
2617  * size-combination gets tested) will catch any that do come along, so they can
2618  * be added to the special handling below.  The chances of new ones are
2619  * actually rather small, as most, if not all, of the world's scripts that have
2620  * casefolding have already been encoded by Unicode.  Also, a number of
2621  * Unicode's decisions were made to allow compatibility with pre-existing
2622  * standards, and almost all of those have already been dealt with.  These
2623  * would otherwise be the most likely candidates for generating further tricky
2624  * sequences.  In other words, Unicode by itself is unlikely to add new ones
2625  * unless it is for compatibility with pre-existing standards, and there aren't
2626  * many of those left.
2627  *
2628  * The previous designs for dealing with these involved assigning a special
2629  * node for them.  This approach doesn't work, as evidenced by this example:
2630  *      "\xDFs" =~ /s\xDF/ui    # Used to fail before these patches
2631  * Both these fold to "sss", but if the pattern is parsed to create a node
2632  * that would match just the \xDF, it won't be able to handle the case where a
2633  * successful match would have to cross the node's boundary.  The new approach
2634  * that hopefully generally solves the problem generates an EXACTFU_SS node
2635  * that is "sss".
2636  *
2637  * There are a number of components to the approach (a lot of work for just
2638  * three code points!):
2639  * 1)   This routine examines each EXACTFish node that could contain the
2640  *      problematic sequences.  It returns in *min_subtract how much to
2641  *      subtract from the the actual length of the string to get a real minimum
2642  *      for one that could match it.  This number is usually 0 except for the
2643  *      problematic sequences.  This delta is used by the caller to adjust the
2644  *      min length of the match, and the delta between min and max, so that the
2645  *      optimizer doesn't reject these possibilities based on size constraints.
2646  * 2)   These sequences require special handling by the trie code, so this code
2647  *      changes the joined node type to special ops: EXACTFU_TRICKYFOLD and
2648  *      EXACTFU_SS.
2649  * 3)   This is sufficient for the two Greek sequences (described below), but
2650  *      the one involving the Sharp s (\xDF) needs more.  The node type
2651  *      EXACTFU_SS is used for an EXACTFU node that contains at least one "ss"
2652  *      sequence in it.  For non-UTF-8 patterns and strings, this is the only
2653  *      case where there is a possible fold length change.  That means that a
2654  *      regular EXACTFU node without UTF-8 involvement doesn't have to concern
2655  *      itself with length changes, and so can be processed faster.  regexec.c
2656  *      takes advantage of this.  Generally, an EXACTFish node that is in UTF-8
2657  *      is pre-folded by regcomp.c.  This saves effort in regex matching.
2658  *      However, the pre-folding isn't done for non-UTF8 patterns because the
2659  *      fold of the MICRO SIGN requires UTF-8.  Also what EXACTF and EXACTFL
2660  *      nodes fold to isn't known until runtime.  The fold possibilities for
2661  *      the non-UTF8 patterns are quite simple, except for the sharp s.  All
2662  *      the ones that don't involve a UTF-8 target string are members of a
2663  *      fold-pair, and arrays are set up for all of them so that the other
2664  *      member of the pair can be found quickly.  Code elsewhere in this file
2665  *      makes sure that in EXACTFU nodes, the sharp s gets folded to 'ss', even
2666  *      if the pattern isn't UTF-8.  This avoids the issues described in the
2667  *      next item.
2668  * 4)   A problem remains for the sharp s in EXACTF nodes.  Whether it matches
2669  *      'ss' or not is not knowable at compile time.  It will match iff the
2670  *      target string is in UTF-8, unlike the EXACTFU nodes, where it always
2671  *      matches; and the EXACTFL and EXACTFA nodes where it never does.  Thus
2672  *      it can't be folded to "ss" at compile time, unlike EXACTFU does (as
2673  *      described in item 3).  An assumption that the optimizer part of
2674  *      regexec.c (probably unwittingly) makes is that a character in the
2675  *      pattern corresponds to at most a single character in the target string.
2676  *      (And I do mean character, and not byte here, unlike other parts of the
2677  *      documentation that have never been updated to account for multibyte
2678  *      Unicode.)  This assumption is wrong only in this case, as all other
2679  *      cases are either 1-1 folds when no UTF-8 is involved; or is true by
2680  *      virtue of having this file pre-fold UTF-8 patterns.   I'm
2681  *      reluctant to try to change this assumption, so instead the code punts.
2682  *      This routine examines EXACTF nodes for the sharp s, and returns a
2683  *      boolean indicating whether or not the node is an EXACTF node that
2684  *      contains a sharp s.  When it is true, the caller sets a flag that later
2685  *      causes the optimizer in this file to not set values for the floating
2686  *      and fixed string lengths, and thus avoids the optimizer code in
2687  *      regexec.c that makes the invalid assumption.  Thus, there is no
2688  *      optimization based on string lengths for EXACTF nodes that contain the
2689  *      sharp s.  This only happens for /id rules (which means the pattern
2690  *      isn't in UTF-8).
2691  */
2692
2693 #define JOIN_EXACT(scan,min_subtract,has_exactf_sharp_s, flags) \
2694     if (PL_regkind[OP(scan)] == EXACT) \
2695         join_exact(pRExC_state,(scan),(min_subtract),has_exactf_sharp_s, (flags),NULL,depth+1)
2696
2697 STATIC U32
2698 S_join_exact(pTHX_ RExC_state_t *pRExC_state, regnode *scan, UV *min_subtract, bool *has_exactf_sharp_s, U32 flags,regnode *val, U32 depth) {
2699     /* Merge several consecutive EXACTish nodes into one. */
2700     regnode *n = regnext(scan);
2701     U32 stringok = 1;
2702     regnode *next = scan + NODE_SZ_STR(scan);
2703     U32 merged = 0;
2704     U32 stopnow = 0;
2705 #ifdef DEBUGGING
2706     regnode *stop = scan;
2707     GET_RE_DEBUG_FLAGS_DECL;
2708 #else
2709     PERL_UNUSED_ARG(depth);
2710 #endif
2711
2712     PERL_ARGS_ASSERT_JOIN_EXACT;
2713 #ifndef EXPERIMENTAL_INPLACESCAN
2714     PERL_UNUSED_ARG(flags);
2715     PERL_UNUSED_ARG(val);
2716 #endif
2717     DEBUG_PEEP("join",scan,depth);
2718
2719     /* Look through the subsequent nodes in the chain.  Skip NOTHING, merge
2720      * EXACT ones that are mergeable to the current one. */
2721     while (n
2722            && (PL_regkind[OP(n)] == NOTHING
2723                || (stringok && OP(n) == OP(scan)))
2724            && NEXT_OFF(n)
2725            && NEXT_OFF(scan) + NEXT_OFF(n) < I16_MAX)
2726     {
2727         
2728         if (OP(n) == TAIL || n > next)
2729             stringok = 0;
2730         if (PL_regkind[OP(n)] == NOTHING) {
2731             DEBUG_PEEP("skip:",n,depth);
2732             NEXT_OFF(scan) += NEXT_OFF(n);
2733             next = n + NODE_STEP_REGNODE;
2734 #ifdef DEBUGGING
2735             if (stringok)
2736                 stop = n;
2737 #endif
2738             n = regnext(n);
2739         }
2740         else if (stringok) {
2741             const unsigned int oldl = STR_LEN(scan);
2742             regnode * const nnext = regnext(n);
2743
2744             /* XXX I (khw) kind of doubt that this works on platforms where
2745              * U8_MAX is above 255 because of lots of other assumptions */
2746             if (oldl + STR_LEN(n) > U8_MAX)
2747                 break;
2748             
2749             DEBUG_PEEP("merg",n,depth);
2750             merged++;
2751
2752             NEXT_OFF(scan) += NEXT_OFF(n);
2753             STR_LEN(scan) += STR_LEN(n);
2754             next = n + NODE_SZ_STR(n);
2755             /* Now we can overwrite *n : */
2756             Move(STRING(n), STRING(scan) + oldl, STR_LEN(n), char);
2757 #ifdef DEBUGGING
2758             stop = next - 1;
2759 #endif
2760             n = nnext;
2761             if (stopnow) break;
2762         }
2763
2764 #ifdef EXPERIMENTAL_INPLACESCAN
2765         if (flags && !NEXT_OFF(n)) {
2766             DEBUG_PEEP("atch", val, depth);
2767             if (reg_off_by_arg[OP(n)]) {
2768                 ARG_SET(n, val - n);
2769             }
2770             else {
2771                 NEXT_OFF(n) = val - n;
2772             }
2773             stopnow = 1;
2774         }
2775 #endif
2776     }
2777
2778     *min_subtract = 0;
2779     *has_exactf_sharp_s = FALSE;
2780
2781     /* Here, all the adjacent mergeable EXACTish nodes have been merged.  We
2782      * can now analyze for sequences of problematic code points.  (Prior to
2783      * this final joining, sequences could have been split over boundaries, and
2784      * hence missed).  The sequences only happen in folding, hence for any
2785      * non-EXACT EXACTish node */
2786     if (OP(scan) != EXACT) {
2787         U8 *s;
2788         U8 * s0 = (U8*) STRING(scan);
2789         U8 * const s_end = s0 + STR_LEN(scan);
2790
2791         /* The below is perhaps overboard, but this allows us to save a test
2792          * each time through the loop at the expense of a mask.  This is
2793          * because on both EBCDIC and ASCII machines, 'S' and 's' differ by a
2794          * single bit.  On ASCII they are 32 apart; on EBCDIC, they are 64.
2795          * This uses an exclusive 'or' to find that bit and then inverts it to
2796          * form a mask, with just a single 0, in the bit position where 'S' and
2797          * 's' differ. */
2798         const U8 S_or_s_mask = (U8) ~ ('S' ^ 's');
2799         const U8 s_masked = 's' & S_or_s_mask;
2800
2801         /* One pass is made over the node's string looking for all the
2802          * possibilities.  to avoid some tests in the loop, there are two main
2803          * cases, for UTF-8 patterns (which can't have EXACTF nodes) and
2804          * non-UTF-8 */
2805         if (UTF) {
2806
2807             /* There are two problematic Greek code points in Unicode
2808              * casefolding
2809              *
2810              * U+0390 - GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS
2811              * U+03B0 - GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS
2812              *
2813              * which casefold to
2814              *
2815              * Unicode                      UTF-8
2816              *
2817              * U+03B9 U+0308 U+0301         0xCE 0xB9 0xCC 0x88 0xCC 0x81
2818              * U+03C5 U+0308 U+0301         0xCF 0x85 0xCC 0x88 0xCC 0x81
2819              *
2820              * This means that in case-insensitive matching (or "loose
2821              * matching", as Unicode calls it), an EXACTF of length six (the
2822              * UTF-8 encoded byte length of the above casefolded versions) can
2823              * match a target string of length two (the byte length of UTF-8
2824              * encoded U+0390 or U+03B0).  This would rather mess up the
2825              * minimum length computation.  (there are other code points that
2826              * also fold to these two sequences, but the delta is smaller)
2827              *
2828              * If these sequences are found, the minimum length is decreased by
2829              * four (six minus two).
2830              *
2831              * Similarly, 'ss' may match the single char and byte LATIN SMALL
2832              * LETTER SHARP S.  We decrease the min length by 1 for each
2833              * occurrence of 'ss' found */
2834
2835 #define U390_FIRST_BYTE GREEK_SMALL_LETTER_IOTA_UTF8_FIRST_BYTE
2836 #define U3B0_FIRST_BYTE GREEK_SMALL_LETTER_UPSILON_UTF8_FIRST_BYTE
2837             const U8 U390_tail[] = GREEK_SMALL_LETTER_IOTA_UTF8_TAIL
2838                                    COMBINING_DIAERESIS_UTF8
2839                                    COMBINING_ACUTE_ACCENT_UTF8;
2840             const U8 U3B0_tail[] = GREEK_SMALL_LETTER_UPSILON_UTF8_TAIL
2841                                    COMBINING_DIAERESIS_UTF8
2842                                    COMBINING_ACUTE_ACCENT_UTF8;
2843             const U8 len = sizeof(U390_tail); /* (-1 for NUL; +1 for 1st byte;
2844                                                  yields a net of 0 */
2845             /* Examine the string for one of the problematic sequences */
2846             for (s = s0;
2847                  s < s_end - 1; /* Can stop 1 before the end, as minimum length
2848                                  * sequence we are looking for is 2 */
2849                  s += UTF8SKIP(s))
2850             {
2851
2852                 /* Look for the first byte in each problematic sequence */
2853                 switch (*s) {
2854                     /* We don't have to worry about other things that fold to
2855                      * 's' (such as the long s, U+017F), as all above-latin1
2856                      * code points have been pre-folded */
2857                     case 's':
2858                     case 'S':
2859
2860                         /* Current character is an 's' or 'S'.  If next one is
2861                          * as well, we have the dreaded sequence */
2862                         if (((*(s+1) & S_or_s_mask) == s_masked)
2863                             /* These two node types don't have special handling
2864                              * for 'ss' */
2865                             && OP(scan) != EXACTFL && OP(scan) != EXACTFA)
2866                         {
2867                             *min_subtract += 1;
2868                             OP(scan) = EXACTFU_SS;
2869                             s++;    /* No need to look at this character again */
2870                         }
2871                         break;
2872
2873                     case U390_FIRST_BYTE:
2874                         if (s_end - s >= len
2875
2876                             /* The 1's are because are skipping comparing the
2877                              * first byte */
2878                             && memEQ(s + 1, U390_tail, len - 1))
2879                         {
2880                             goto greek_sequence;
2881                         }
2882                         break;
2883
2884                     case U3B0_FIRST_BYTE:
2885                         if (! (s_end - s >= len
2886                                && memEQ(s + 1, U3B0_tail, len - 1)))
2887                         {
2888                             break;
2889                         }
2890                       greek_sequence:
2891                         *min_subtract += 4;
2892
2893                         /* This requires special handling by trie's, so change
2894                          * the node type to indicate this.  If EXACTFA and
2895                          * EXACTFL were ever to be handled by trie's, this
2896                          * would have to be changed.  If this node has already
2897                          * been changed to EXACTFU_SS in this loop, leave it as
2898                          * is.  (I (khw) think it doesn't matter in regexec.c
2899                          * for UTF patterns, but no need to change it */
2900                         if (OP(scan) == EXACTFU) {
2901                             OP(scan) = EXACTFU_TRICKYFOLD;
2902                         }
2903                         s += 6; /* We already know what this sequence is.  Skip
2904                                    the rest of it */
2905                         break;
2906                 }
2907             }
2908         }
2909         else if (OP(scan) != EXACTFL && OP(scan) != EXACTFA) {
2910
2911             /* Here, the pattern is not UTF-8.  We need to look only for the
2912              * 'ss' sequence, and in the EXACTF case, the sharp s, which can be
2913              * in the final position.  Otherwise we can stop looking 1 byte
2914              * earlier because have to find both the first and second 's' */
2915             const U8* upper = (OP(scan) == EXACTF) ? s_end : s_end -1;
2916
2917             for (s = s0; s < upper; s++) {
2918                 switch (*s) {
2919                     case 'S':
2920                     case 's':
2921                         if (s_end - s > 1
2922                             && ((*(s+1) & S_or_s_mask) == s_masked))
2923                         {
2924                             *min_subtract += 1;
2925
2926                             /* EXACTF nodes need to know that the minimum
2927                              * length changed so that a sharp s in the string
2928                              * can match this ss in the pattern, but they
2929                              * remain EXACTF nodes, as they won't match this
2930                              * unless the target string is is UTF-8, which we
2931                              * don't know until runtime */
2932                             if (OP(scan) != EXACTF) {
2933                                 OP(scan) = EXACTFU_SS;
2934                             }
2935                             s++;
2936                         }
2937                         break;
2938                     case LATIN_SMALL_LETTER_SHARP_S:
2939                         if (OP(scan) == EXACTF) {
2940                             *has_exactf_sharp_s = TRUE;
2941                         }
2942                         break;
2943                 }
2944             }
2945         }
2946     }
2947
2948 #ifdef DEBUGGING
2949     /* Allow dumping but overwriting the collection of skipped
2950      * ops and/or strings with fake optimized ops */
2951     n = scan + NODE_SZ_STR(scan);
2952     while (n <= stop) {
2953         OP(n) = OPTIMIZED;
2954         FLAGS(n) = 0;
2955         NEXT_OFF(n) = 0;
2956         n++;
2957     }
2958 #endif
2959     DEBUG_OPTIMISE_r(if (merged){DEBUG_PEEP("finl",scan,depth)});
2960     return stopnow;
2961 }
2962
2963 /* REx optimizer.  Converts nodes into quicker variants "in place".
2964    Finds fixed substrings.  */
2965
2966 /* Stops at toplevel WHILEM as well as at "last". At end *scanp is set
2967    to the position after last scanned or to NULL. */
2968
2969 #define INIT_AND_WITHP \
2970     assert(!and_withp); \
2971     Newx(and_withp,1,struct regnode_charclass_class); \
2972     SAVEFREEPV(and_withp)
2973
2974 /* this is a chain of data about sub patterns we are processing that
2975    need to be handled separately/specially in study_chunk. Its so
2976    we can simulate recursion without losing state.  */
2977 struct scan_frame;
2978 typedef struct scan_frame {
2979     regnode *last;  /* last node to process in this frame */
2980     regnode *next;  /* next node to process when last is reached */
2981     struct scan_frame *prev; /*previous frame*/
2982     I32 stop; /* what stopparen do we use */
2983 } scan_frame;
2984
2985
2986 #define SCAN_COMMIT(s, data, m) scan_commit(s, data, m, is_inf)
2987
2988 #define CASE_SYNST_FNC(nAmE)                                       \
2989 case nAmE:                                                         \
2990     if (flags & SCF_DO_STCLASS_AND) {                              \
2991             for (value = 0; value < 256; value++)                  \
2992                 if (!is_ ## nAmE ## _cp(value))                       \
2993                     ANYOF_BITMAP_CLEAR(data->start_class, value);  \
2994     }                                                              \
2995     else {                                                         \
2996             for (value = 0; value < 256; value++)                  \
2997                 if (is_ ## nAmE ## _cp(value))                        \
2998                     ANYOF_BITMAP_SET(data->start_class, value);    \
2999     }                                                              \
3000     break;                                                         \
3001 case N ## nAmE:                                                    \
3002     if (flags & SCF_DO_STCLASS_AND) {                              \
3003             for (value = 0; value < 256; value++)                   \
3004                 if (is_ ## nAmE ## _cp(value))                         \
3005                     ANYOF_BITMAP_CLEAR(data->start_class, value);   \
3006     }                                                               \
3007     else {                                                          \
3008             for (value = 0; value < 256; value++)                   \
3009                 if (!is_ ## nAmE ## _cp(value))                        \
3010                     ANYOF_BITMAP_SET(data->start_class, value);     \
3011     }                                                               \
3012     break
3013
3014
3015
3016 STATIC I32
3017 S_study_chunk(pTHX_ RExC_state_t *pRExC_state, regnode **scanp,
3018                         I32 *minlenp, I32 *deltap,
3019                         regnode *last,
3020                         scan_data_t *data,
3021                         I32 stopparen,
3022                         U8* recursed,
3023                         struct regnode_charclass_class *and_withp,
3024                         U32 flags, U32 depth)
3025                         /* scanp: Start here (read-write). */
3026                         /* deltap: Write maxlen-minlen here. */
3027                         /* last: Stop before this one. */
3028                         /* data: string data about the pattern */
3029                         /* stopparen: treat close N as END */
3030                         /* recursed: which subroutines have we recursed into */
3031                         /* and_withp: Valid if flags & SCF_DO_STCLASS_OR */
3032 {
3033     dVAR;
3034     I32 min = 0, pars = 0, code;
3035     regnode *scan = *scanp, *next;
3036     I32 delta = 0;
3037     int is_inf = (flags & SCF_DO_SUBSTR) && (data->flags & SF_IS_INF);
3038     int is_inf_internal = 0;            /* The studied chunk is infinite */
3039     I32 is_par = OP(scan) == OPEN ? ARG(scan) : 0;
3040     scan_data_t data_fake;
3041     SV *re_trie_maxbuff = NULL;
3042     regnode *first_non_open = scan;
3043     I32 stopmin = I32_MAX;
3044     scan_frame *frame = NULL;
3045     GET_RE_DEBUG_FLAGS_DECL;
3046
3047     PERL_ARGS_ASSERT_STUDY_CHUNK;
3048
3049 #ifdef DEBUGGING
3050     StructCopy(&zero_scan_data, &data_fake, scan_data_t);
3051 #endif
3052
3053     if ( depth == 0 ) {
3054         while (first_non_open && OP(first_non_open) == OPEN)
3055             first_non_open=regnext(first_non_open);
3056     }
3057
3058
3059   fake_study_recurse:
3060     while ( scan && OP(scan) != END && scan < last ){
3061         UV min_subtract = 0;    /* How much to subtract from the minimum node
3062                                    length to get a real minimum (because the
3063                                    folded version may be shorter) */
3064         bool has_exactf_sharp_s = FALSE;
3065         /* Peephole optimizer: */
3066         DEBUG_STUDYDATA("Peep:", data,depth);
3067         DEBUG_PEEP("Peep",scan,depth);
3068
3069         /* Its not clear to khw or hv why this is done here, and not in the
3070          * clauses that deal with EXACT nodes.  khw's guess is that it's
3071          * because of a previous design */
3072         JOIN_EXACT(scan,&min_subtract, &has_exactf_sharp_s, 0);
3073
3074         /* Follow the next-chain of the current node and optimize
3075            away all the NOTHINGs from it.  */
3076         if (OP(scan) != CURLYX) {
3077             const int max = (reg_off_by_arg[OP(scan)]
3078                        ? I32_MAX
3079                        /* I32 may be smaller than U16 on CRAYs! */
3080                        : (I32_MAX < U16_MAX ? I32_MAX : U16_MAX));
3081             int off = (reg_off_by_arg[OP(scan)] ? ARG(scan) : NEXT_OFF(scan));
3082             int noff;
3083             regnode *n = scan;
3084
3085             /* Skip NOTHING and LONGJMP. */
3086             while ((n = regnext(n))
3087                    && ((PL_regkind[OP(n)] == NOTHING && (noff = NEXT_OFF(n)))
3088                        || ((OP(n) == LONGJMP) && (noff = ARG(n))))
3089                    && off + noff < max)
3090                 off += noff;
3091             if (reg_off_by_arg[OP(scan)])
3092                 ARG(scan) = off;
3093             else
3094                 NEXT_OFF(scan) = off;
3095         }
3096
3097
3098
3099         /* The principal pseudo-switch.  Cannot be a switch, since we
3100            look into several different things.  */
3101         if (OP(scan) == BRANCH || OP(scan) == BRANCHJ
3102                    || OP(scan) == IFTHEN) {
3103             next = regnext(scan);
3104             code = OP(scan);
3105             /* demq: the op(next)==code check is to see if we have "branch-branch" AFAICT */
3106
3107             if (OP(next) == code || code == IFTHEN) {
3108                 /* NOTE - There is similar code to this block below for handling
3109                    TRIE nodes on a re-study.  If you change stuff here check there
3110                    too. */
3111                 I32 max1 = 0, min1 = I32_MAX, num = 0;
3112                 struct regnode_charclass_class accum;
3113                 regnode * const startbranch=scan;
3114
3115                 if (flags & SCF_DO_SUBSTR)
3116                     SCAN_COMMIT(pRExC_state, data, minlenp); /* Cannot merge strings after this. */
3117                 if (flags & SCF_DO_STCLASS)
3118                     cl_init_zero(pRExC_state, &accum);
3119
3120                 while (OP(scan) == code) {
3121                     I32 deltanext, minnext, f = 0, fake;
3122                     struct regnode_charclass_class this_class;
3123
3124                     num++;
3125                     data_fake.flags = 0;
3126                     if (data) {
3127                         data_fake.whilem_c = data->whilem_c;
3128                         data_fake.last_closep = data->last_closep;
3129                     }
3130                     else
3131                         data_fake.last_closep = &fake;
3132
3133                     data_fake.pos_delta = delta;
3134                     next = regnext(scan);
3135                     scan = NEXTOPER(scan);
3136                     if (code != BRANCH)
3137                         scan = NEXTOPER(scan);
3138                     if (flags & SCF_DO_STCLASS) {
3139                         cl_init(pRExC_state, &this_class);
3140                         data_fake.start_class = &this_class;
3141                         f = SCF_DO_STCLASS_AND;
3142                     }
3143                     if (flags & SCF_WHILEM_VISITED_POS)
3144                         f |= SCF_WHILEM_VISITED_POS;
3145
3146                     /* we suppose the run is continuous, last=next...*/
3147                     minnext = study_chunk(pRExC_state, &scan, minlenp, &deltanext,
3148                                           next, &data_fake,
3149                                           stopparen, recursed, NULL, f,depth+1);
3150                     if (min1 > minnext)
3151                         min1 = minnext;
3152                     if (max1 < minnext + deltanext)
3153                         max1 = minnext + deltanext;
3154                     if (deltanext == I32_MAX)
3155                         is_inf = is_inf_internal = 1;
3156                     scan = next;
3157                     if (data_fake.flags & (SF_HAS_PAR|SF_IN_PAR))
3158                         pars++;
3159                     if (data_fake.flags & SCF_SEEN_ACCEPT) {
3160                         if ( stopmin > minnext) 
3161                             stopmin = min + min1;
3162                         flags &= ~SCF_DO_SUBSTR;
3163                         if (data)
3164                             data->flags |= SCF_SEEN_ACCEPT;
3165                     }
3166                     if (data) {
3167                         if (data_fake.flags & SF_HAS_EVAL)
3168                             data->flags |= SF_HAS_EVAL;
3169                         data->whilem_c = data_fake.whilem_c;
3170                     }
3171                     if (flags & SCF_DO_STCLASS)
3172                         cl_or(pRExC_state, &accum, &this_class);
3173                 }
3174                 if (code == IFTHEN && num < 2) /* Empty ELSE branch */
3175                     min1 = 0;
3176                 if (flags & SCF_DO_SUBSTR) {
3177                     data->pos_min += min1;
3178                     data->pos_delta += max1 - min1;
3179                     if (max1 != min1 || is_inf)
3180                         data->longest = &(data->longest_float);
3181                 }
3182                 min += min1;
3183                 delta += max1 - min1;
3184                 if (flags & SCF_DO_STCLASS_OR) {
3185                     cl_or(pRExC_state, data->start_class, &accum);
3186                     if (min1) {
3187                         cl_and(data->start_class, and_withp);
3188                         flags &= ~SCF_DO_STCLASS;
3189                     }
3190                 }
3191                 else if (flags & SCF_DO_STCLASS_AND) {
3192                     if (min1) {
3193                         cl_and(data->start_class, &accum);
3194                         flags &= ~SCF_DO_STCLASS;
3195                     }
3196                     else {
3197                         /* Switch to OR mode: cache the old value of
3198                          * data->start_class */
3199                         INIT_AND_WITHP;
3200                         StructCopy(data->start_class, and_withp,
3201                                    struct regnode_charclass_class);
3202                         flags &= ~SCF_DO_STCLASS_AND;
3203                         StructCopy(&accum, data->start_class,
3204                                    struct regnode_charclass_class);
3205                         flags |= SCF_DO_STCLASS_OR;
3206                         data->start_class->flags |= ANYOF_EOS;
3207                     }
3208                 }
3209
3210                 if (PERL_ENABLE_TRIE_OPTIMISATION && OP( startbranch ) == BRANCH ) {
3211                 /* demq.
3212
3213                    Assuming this was/is a branch we are dealing with: 'scan' now
3214                    points at the item that follows the branch sequence, whatever
3215                    it is. We now start at the beginning of the sequence and look
3216                    for subsequences of
3217
3218                    BRANCH->EXACT=>x1
3219                    BRANCH->EXACT=>x2
3220                    tail
3221
3222                    which would be constructed from a pattern like /A|LIST|OF|WORDS/
3223
3224                    If we can find such a subsequence we need to turn the first
3225                    element into a trie and then add the subsequent branch exact
3226                    strings to the trie.
3227
3228                    We have two cases
3229
3230                      1. patterns where the whole set of branches can be converted. 
3231
3232                      2. patterns where only a subset can be converted.
3233
3234                    In case 1 we can replace the whole set with a single regop
3235                    for the trie. In case 2 we need to keep the start and end
3236                    branches so
3237
3238                      'BRANCH EXACT; BRANCH EXACT; BRANCH X'
3239                      becomes BRANCH TRIE; BRANCH X;
3240
3241                   There is an additional case, that being where there is a 
3242                   common prefix, which gets split out into an EXACT like node
3243                   preceding the TRIE node.
3244
3245                   If x(1..n)==tail then we can do a simple trie, if not we make
3246                   a "jump" trie, such that when we match the appropriate word
3247                   we "jump" to the appropriate tail node. Essentially we turn
3248                   a nested if into a case structure of sorts.
3249
3250                 */
3251
3252                     int made=0;
3253                     if (!re_trie_maxbuff) {
3254                         re_trie_maxbuff = get_sv(RE_TRIE_MAXBUF_NAME, 1);
3255                         if (!SvIOK(re_trie_maxbuff))
3256                             sv_setiv(re_trie_maxbuff, RE_TRIE_MAXBUF_INIT);
3257                     }
3258                     if ( SvIV(re_trie_maxbuff)>=0  ) {
3259                         regnode *cur;
3260                         regnode *first = (regnode *)NULL;
3261                         regnode *last = (regnode *)NULL;
3262                         regnode *tail = scan;
3263                         U8 trietype = 0;
3264                         U32 count=0;
3265
3266 #ifdef DEBUGGING
3267                         SV * const mysv = sv_newmortal();       /* for dumping */
3268 #endif
3269                         /* var tail is used because there may be a TAIL
3270                            regop in the way. Ie, the exacts will point to the
3271                            thing following the TAIL, but the last branch will
3272                            point at the TAIL. So we advance tail. If we
3273                            have nested (?:) we may have to move through several
3274                            tails.
3275                          */
3276
3277                         while ( OP( tail ) == TAIL ) {
3278                             /* this is the TAIL generated by (?:) */
3279                             tail = regnext( tail );
3280                         }
3281
3282                         
3283                         DEBUG_TRIE_COMPILE_r({
3284                             regprop(RExC_rx, mysv, tail );
3285                             PerlIO_printf( Perl_debug_log, "%*s%s%s\n",
3286                                 (int)depth * 2 + 2, "", 
3287                                 "Looking for TRIE'able sequences. Tail node is: ", 
3288                                 SvPV_nolen_const( mysv )
3289                             );
3290                         });
3291                         
3292                         /*
3293
3294                             Step through the branches
3295                                 cur represents each branch,
3296                                 noper is the first thing to be matched as part of that branch
3297                                 noper_next is the regnext() of that node.
3298
3299                             We normally handle a case like this /FOO[xyz]|BAR[pqr]/
3300                             via a "jump trie" but we also support building with NOJUMPTRIE,
3301                             which restricts the trie logic to structures like /FOO|BAR/.
3302
3303                             If noper is a trieable nodetype then the branch is a possible optimization
3304                             target. If we are building under NOJUMPTRIE then we require that noper_next
3305                             is the same as scan (our current position in the regex program).
3306
3307                             Once we have two or more consecutive such branches we can create a
3308                             trie of the EXACT's contents and stitch it in place into the program.
3309
3310                             If the sequence represents all of the branches in the alternation we
3311                             replace the entire thing with a single TRIE node.
3312
3313                             Otherwise when it is a subsequence we need to stitch it in place and
3314                             replace only the relevant branches. This means the first branch has
3315                             to remain as it is used by the alternation logic, and its next pointer,
3316                             and needs to be repointed at the item on the branch chain following
3317                             the last branch we have optimized away.
3318
3319                             This could be either a BRANCH, in which case the subsequence is internal,
3320                             or it could be the item following the branch sequence in which case the
3321                             subsequence is at the end (which does not necessarily mean the first node
3322                             is the start of the alternation).
3323
3324                             TRIE_TYPE(X) is a define which maps the optype to a trietype.
3325
3326                                 optype          |  trietype
3327                                 ----------------+-----------
3328                                 NOTHING         | NOTHING
3329                                 EXACT           | EXACT
3330                                 EXACTFU         | EXACTFU
3331                                 EXACTFU_SS      | EXACTFU
3332                                 EXACTFU_TRICKYFOLD | EXACTFU
3333                                 EXACTFA         | 0
3334
3335
3336                         */
3337 #define TRIE_TYPE(X) ( ( NOTHING == (X) ) ? NOTHING :   \
3338                        ( EXACT == (X) )   ? EXACT :        \
3339                        ( EXACTFU == (X) || EXACTFU_SS == (X) || EXACTFU_TRICKYFOLD == (X) ) ? EXACTFU :        \
3340                        0 )
3341
3342                         /* dont use tail as the end marker for this traverse */
3343                         for ( cur = startbranch ; cur != scan ; cur = regnext( cur ) ) {
3344                             regnode * const noper = NEXTOPER( cur );
3345                             U8 noper_type = OP( noper );
3346                             U8 noper_trietype = TRIE_TYPE( noper_type );
3347 #if defined(DEBUGGING) || defined(NOJUMPTRIE)
3348                             regnode * const noper_next = regnext( noper );
3349                             U8 noper_next_type = (noper_next && noper_next != tail) ? OP(noper_next) : 0;
3350                             U8 noper_next_trietype = (noper_next && noper_next != tail) ? TRIE_TYPE( noper_next_type ) :0;
3351 #endif
3352
3353                             DEBUG_TRIE_COMPILE_r({
3354                                 regprop(RExC_rx, mysv, cur);
3355                                 PerlIO_printf( Perl_debug_log, "%*s- %s (%d)",
3356                                    (int)depth * 2 + 2,"", SvPV_nolen_const( mysv ), REG_NODE_NUM(cur) );
3357
3358                                 regprop(RExC_rx, mysv, noper);
3359                                 PerlIO_printf( Perl_debug_log, " -> %s",
3360                                     SvPV_nolen_const(mysv));
3361
3362                                 if ( noper_next ) {
3363                                   regprop(RExC_rx, mysv, noper_next );
3364                                   PerlIO_printf( Perl_debug_log,"\t=> %s\t",
3365                                     SvPV_nolen_const(mysv));
3366                                 }
3367                                 PerlIO_printf( Perl_debug_log, "(First==%d,Last==%d,Cur==%d,tt==%s,nt==%s,nnt==%s)\n",
3368                                    REG_NODE_NUM(first), REG_NODE_NUM(last), REG_NODE_NUM(cur),
3369                                    PL_reg_name[trietype], PL_reg_name[noper_trietype], PL_reg_name[noper_next_trietype] 
3370                                 );
3371                             });
3372
3373                             /* Is noper a trieable nodetype that can be merged with the
3374                              * current trie (if there is one)? */
3375                             if ( noper_trietype
3376                                   &&
3377                                   (
3378                                         ( noper_trietype == NOTHING)
3379                                         || ( trietype == NOTHING )
3380                                         || ( trietype == noper_trietype )
3381                                   )
3382 #ifdef NOJUMPTRIE
3383                                   && noper_next == tail
3384 #endif
3385                                   && count < U16_MAX)
3386                             {
3387                                 /* Handle mergable triable node
3388                                  * Either we are the first node in a new trieable sequence,
3389                                  * in which case we do some bookkeeping, otherwise we update
3390                                  * the end pointer. */
3391                                 if ( !first ) {
3392                                     first = cur;
3393                                     if ( noper_trietype == NOTHING ) {
3394 #if !defined(DEBUGGING) && !defined(NOJUMPTRIE)
3395                                         regnode * const noper_next = regnext( noper );
3396                                         U8 noper_next_type = (noper_next && noper_next!=tail) ? OP(noper_next) : 0;
3397                                         U8 noper_next_trietype = noper_next_type ? TRIE_TYPE( noper_next_type ) :0;
3398 #endif
3399
3400                                         if ( noper_next_trietype ) {
3401                                             trietype = noper_next_trietype;
3402                                         } else if (noper_next_type)  {
3403                                             /* a NOTHING regop is 1 regop wide. We need at least two
3404                                              * for a trie so we can't merge this in */
3405                                             first = NULL;
3406                                         }
3407                                     } else {
3408                                         trietype = noper_trietype;
3409                                     }
3410                                 } else {
3411                                     if ( trietype == NOTHING )
3412                                         trietype = noper_trietype;
3413                                     last = cur;
3414                                 }
3415                                 if (first)
3416                                     count++;
3417                             } /* end handle mergable triable node */
3418                             else {
3419                                 /* handle unmergable node -
3420                                  * noper may either be a triable node which can not be tried
3421                                  * together with the current trie, or a non triable node */
3422                                 if ( last ) {
3423                                     /* If last is set and trietype is not NOTHING then we have found
3424                                      * at least two triable branch sequences in a row of a similar
3425                                      * trietype so we can turn them into a trie. If/when we
3426                                      * allow NOTHING to start a trie sequence this condition will be
3427                                      * required, and it isn't expensive so we leave it in for now. */
3428                                     if ( trietype && trietype != NOTHING )
3429                                         make_trie( pRExC_state,
3430                                                 startbranch, first, cur, tail, count,
3431                                                 trietype, depth+1 );
3432                                     last = NULL; /* note: we clear/update first, trietype etc below, so we dont do it here */
3433                                 }
3434                                 if ( noper_trietype
3435 #ifdef NOJUMPTRIE
3436                                      && noper_next == tail
3437 #endif
3438                                 ){
3439                                     /* noper is triable, so we can start a new trie sequence */
3440                                     count = 1;
3441                                     first = cur;
3442                                     trietype = noper_trietype;
3443                                 } else if (first) {
3444                                     /* if we already saw a first but the current node is not triable then we have
3445                                      * to reset the first information. */
3446                                     count = 0;
3447                                     first = NULL;
3448                                     trietype = 0;
3449                                 }
3450                             } /* end handle unmergable node */
3451                         } /* loop over branches */
3452                         DEBUG_TRIE_COMPILE_r({
3453                             regprop(RExC_rx, mysv, cur);
3454                             PerlIO_printf( Perl_debug_log,
3455                               "%*s- %s (%d) <SCAN FINISHED>\n", (int)depth * 2 + 2,
3456                               "", SvPV_nolen_const( mysv ),REG_NODE_NUM(cur));
3457
3458                         });
3459                         if ( last && trietype ) {
3460                             if ( trietype != NOTHING ) {
3461                                 /* the last branch of the sequence was part of a trie,
3462                                  * so we have to construct it here outside of the loop
3463                                  */
3464                                 made= make_trie( pRExC_state, startbranch, first, scan, tail, count, trietype, depth+1 );
3465 #ifdef TRIE_STUDY_OPT
3466                                 if ( ((made == MADE_EXACT_TRIE &&
3467                                      startbranch == first)
3468                                      || ( first_non_open == first )) &&
3469                                      depth==0 ) {
3470                                     flags |= SCF_TRIE_RESTUDY;
3471                                     if ( startbranch == first
3472                                          && scan == tail )
3473                                     {
3474                                         RExC_seen &=~REG_TOP_LEVEL_BRANCHES;
3475                                     }
3476                                 }
3477 #endif
3478                             } else {
3479                                 /* at this point we know whatever we have is a NOTHING sequence/branch
3480                                  * AND if 'startbranch' is 'first' then we can turn the whole thing into a NOTHING
3481                                  */
3482                                 if ( startbranch == first ) {
3483                                     regnode *opt;
3484                                     /* the entire thing is a NOTHING sequence, something like this:
3485                                      * (?:|) So we can turn it into a plain NOTHING op. */
3486                                     DEBUG_TRIE_COMPILE_r({
3487                                         regprop(RExC_rx, mysv, cur);
3488                                         PerlIO_printf( Perl_debug_log,
3489                                           "%*s- %s (%d) <NOTHING BRANCH SEQUENCE>\n", (int)depth * 2 + 2,
3490                                           "", SvPV_nolen_const( mysv ),REG_NODE_NUM(cur));
3491
3492                                     });
3493                                     OP(startbranch)= NOTHING;
3494                                     NEXT_OFF(startbranch)= tail - startbranch;
3495                                     for ( opt= startbranch + 1; opt < tail ; opt++ )
3496                                         OP(opt)= OPTIMIZED;
3497                                 }
3498                             }
3499                         } /* end if ( last) */
3500                     } /* TRIE_MAXBUF is non zero */
3501                     
3502                 } /* do trie */
3503                 
3504             }
3505             else if ( code == BRANCHJ ) {  /* single branch is optimized. */
3506                 scan = NEXTOPER(NEXTOPER(scan));
3507             } else                      /* single branch is optimized. */
3508                 scan = NEXTOPER(scan);
3509             continue;
3510         } else if (OP(scan) == SUSPEND || OP(scan) == GOSUB || OP(scan) == GOSTART) {
3511             scan_frame *newframe = NULL;
3512             I32 paren;
3513             regnode *start;
3514             regnode *end;
3515
3516             if (OP(scan) != SUSPEND) {
3517             /* set the pointer */
3518                 if (OP(scan) == GOSUB) {
3519                     paren = ARG(scan);
3520                     RExC_recurse[ARG2L(scan)] = scan;
3521                     start = RExC_open_parens[paren-1];
3522                     end   = RExC_close_parens[paren-1];
3523                 } else {
3524                     paren = 0;
3525                     start = RExC_rxi->program + 1;
3526                     end   = RExC_opend;
3527                 }
3528                 if (!recursed) {
3529                     Newxz(recursed, (((RExC_npar)>>3) +1), U8);
3530                     SAVEFREEPV(recursed);
3531                 }
3532                 if (!PAREN_TEST(recursed,paren+1)) {
3533                     PAREN_SET(recursed,paren+1);
3534                     Newx(newframe,1,scan_frame);
3535                 } else {
3536                     if (flags & SCF_DO_SUBSTR) {
3537                         SCAN_COMMIT(pRExC_state,data,minlenp);
3538                         data->longest = &(data->longest_float);
3539                     }
3540                     is_inf = is_inf_internal = 1;
3541                     if (flags & SCF_DO_STCLASS_OR) /* Allow everything */
3542                         cl_anything(pRExC_state, data->start_class);
3543                     flags &= ~SCF_DO_STCLASS;
3544                 }
3545             } else {
3546                 Newx(newframe,1,scan_frame);
3547                 paren = stopparen;
3548                 start = scan+2;
3549                 end = regnext(scan);
3550             }
3551             if (newframe) {
3552                 assert(start);
3553                 assert(end);
3554                 SAVEFREEPV(newframe);
3555                 newframe->next = regnext(scan);
3556                 newframe->last = last;
3557                 newframe->stop = stopparen;
3558                 newframe->prev = frame;
3559
3560                 frame = newframe;
3561                 scan =  start;
3562                 stopparen = paren;
3563                 last = end;
3564
3565                 continue;
3566             }
3567         }
3568         else if (OP(scan) == EXACT) {
3569             I32 l = STR_LEN(scan);
3570             UV uc;
3571             if (UTF) {
3572                 const U8 * const s = (U8*)STRING(scan);
3573                 uc = utf8_to_uvchr_buf(s, s + l, NULL);
3574                 l = utf8_length(s, s + l);
3575             } else {
3576                 uc = *((U8*)STRING(scan));
3577             }
3578             min += l;
3579             if (flags & SCF_DO_SUBSTR) { /* Update longest substr. */
3580                 /* The code below prefers earlier match for fixed
3581                    offset, later match for variable offset.  */
3582                 if (data->last_end == -1) { /* Update the start info. */
3583                     data->last_start_min = data->pos_min;
3584                     data->last_start_max = is_inf
3585                         ? I32_MAX : data->pos_min + data->pos_delta;
3586                 }
3587                 sv_catpvn(data->last_found, STRING(scan), STR_LEN(scan));
3588                 if (UTF)
3589                     SvUTF8_on(data->last_found);
3590                 {
3591                     SV * const sv = data->last_found;
3592                     MAGIC * const mg = SvUTF8(sv) && SvMAGICAL(sv) ?
3593                         mg_find(sv, PERL_MAGIC_utf8) : NULL;
3594                     if (mg && mg->mg_len >= 0)
3595                         mg->mg_len += utf8_length((U8*)STRING(scan),
3596                                                   (U8*)STRING(scan)+STR_LEN(scan));
3597                 }
3598                 data->last_end = data->pos_min + l;
3599                 data->pos_min += l; /* As in the first entry. */
3600                 data->flags &= ~SF_BEFORE_EOL;
3601             }
3602             if (flags & SCF_DO_STCLASS_AND) {
3603                 /* Check whether it is compatible with what we know already! */
3604                 int compat = 1;
3605
3606
3607                 /* If compatible, we or it in below.  It is compatible if is
3608                  * in the bitmp and either 1) its bit or its fold is set, or 2)
3609                  * it's for a locale.  Even if there isn't unicode semantics
3610                  * here, at runtime there may be because of matching against a
3611                  * utf8 string, so accept a possible false positive for
3612                  * latin1-range folds */
3613                 if (uc >= 0x100 ||
3614                     (!(data->start_class->flags & (ANYOF_CLASS | ANYOF_LOCALE))
3615                     && !ANYOF_BITMAP_TEST(data->start_class, uc)
3616                     && (!(data->start_class->flags & ANYOF_LOC_NONBITMAP_FOLD)
3617                         || !ANYOF_BITMAP_TEST(data->start_class, PL_fold_latin1[uc])))
3618                     )
3619                 {
3620                     compat = 0;
3621                 }
3622                 ANYOF_CLASS_ZERO(data->start_class);
3623                 ANYOF_BITMAP_ZERO(data->start_class);
3624                 if (compat)
3625                     ANYOF_BITMAP_SET(data->start_class, uc);
3626                 else if (uc >= 0x100) {
3627                     int i;
3628
3629                     /* Some Unicode code points fold to the Latin1 range; as
3630                      * XXX temporary code, instead of figuring out if this is
3631                      * one, just assume it is and set all the start class bits
3632                      * that could be some such above 255 code point's fold
3633                      * which will generate fals positives.  As the code
3634                      * elsewhere that does compute the fold settles down, it
3635                      * can be extracted out and re-used here */
3636                     for (i = 0; i < 256; i++){
3637                         if (HAS_NONLATIN1_FOLD_CLOSURE(i)) {
3638                             ANYOF_BITMAP_SET(data->start_class, i);
3639                         }
3640                     }
3641                 }
3642                 data->start_class->flags &= ~ANYOF_EOS;
3643                 if (uc < 0x100)
3644                   data->start_class->flags &= ~ANYOF_UNICODE_ALL;
3645             }
3646             else if (flags & SCF_DO_STCLASS_OR) {
3647                 /* false positive possible if the class is case-folded */
3648                 if (uc < 0x100)
3649                     ANYOF_BITMAP_SET(data->start_class, uc);
3650                 else
3651                     data->start_class->flags |= ANYOF_UNICODE_ALL;
3652                 data->start_class->flags &= ~ANYOF_EOS;
3653                 cl_and(data->start_class, and_withp);
3654             }
3655             flags &= ~SCF_DO_STCLASS;
3656         }
3657         else if (PL_regkind[OP(scan)] == EXACT) { /* But OP != EXACT! */
3658             I32 l = STR_LEN(scan);
3659             UV uc = *((U8*)STRING(scan));
3660
3661             /* Search for fixed substrings supports EXACT only. */
3662             if (flags & SCF_DO_SUBSTR) {
3663                 assert(data);
3664                 SCAN_COMMIT(pRExC_state, data, minlenp);
3665             }
3666             if (UTF) {
3667                 const U8 * const s = (U8 *)STRING(scan);
3668                 uc = utf8_to_uvchr_buf(s, s + l, NULL);
3669                 l = utf8_length(s, s + l);
3670             }
3671             if (has_exactf_sharp_s) {
3672                 RExC_seen |= REG_SEEN_EXACTF_SHARP_S;
3673             }
3674             min += l - min_subtract;
3675             if (min < 0) {
3676                 min = 0;
3677             }
3678             delta += min_subtract;
3679             if (flags & SCF_DO_SUBSTR) {
3680                 data->pos_min += l - min_subtract;
3681                 if (data->pos_min < 0) {
3682                     data->pos_min = 0;
3683                 }
3684                 data->pos_delta += min_subtract;
3685                 if (min_subtract) {
3686                     data->longest = &(data->longest_float);
3687                 }
3688             }
3689             if (flags & SCF_DO_STCLASS_AND) {
3690                 /* Check whether it is compatible with what we know already! */
3691                 int compat = 1;
3692                 if (uc >= 0x100 ||
3693                  (!(data->start_class->flags & (ANYOF_CLASS | ANYOF_LOCALE))
3694                   && !ANYOF_BITMAP_TEST(data->start_class, uc)
3695                   && !ANYOF_BITMAP_TEST(data->start_class, PL_fold_latin1[uc])))
3696                 {
3697                     compat = 0;
3698                 }
3699                 ANYOF_CLASS_ZERO(data->start_class);
3700                 ANYOF_BITMAP_ZERO(data->start_class);
3701                 if (compat) {
3702                     ANYOF_BITMAP_SET(data->start_class, uc);
3703                     data->start_class->flags &= ~ANYOF_EOS;
3704                     data->start_class->flags |= ANYOF_LOC_NONBITMAP_FOLD;
3705                     if (OP(scan) == EXACTFL) {
3706                         /* XXX This set is probably no longer necessary, and
3707                          * probably wrong as LOCALE now is on in the initial
3708                          * state */
3709                         data->start_class->flags |= ANYOF_LOCALE;
3710                     }
3711                     else {
3712
3713                         /* Also set the other member of the fold pair.  In case
3714                          * that unicode semantics is called for at runtime, use
3715                          * the full latin1 fold.  (Can't do this for locale,
3716                          * because not known until runtime) */
3717                         ANYOF_BITMAP_SET(data->start_class, PL_fold_latin1[uc]);
3718
3719                         /* All other (EXACTFL handled above) folds except under
3720                          * /iaa that include s, S, and sharp_s also may include
3721                          * the others */
3722                         if (OP(scan) != EXACTFA) {
3723                             if (uc == 's' || uc == 'S') {
3724                                 ANYOF_BITMAP_SET(data->start_class,
3725                                                  LATIN_SMALL_LETTER_SHARP_S);
3726                             }
3727                             else if (uc == LATIN_SMALL_LETTER_SHARP_S) {
3728                                 ANYOF_BITMAP_SET(data->start_class, 's');
3729                                 ANYOF_BITMAP_SET(data->start_class, 'S');
3730                             }
3731                         }
3732                     }
3733                 }
3734                 else if (uc >= 0x100) {
3735                     int i;
3736                     for (i = 0; i < 256; i++){
3737                         if (_HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(i)) {
3738                             ANYOF_BITMAP_SET(data->start_class, i);
3739                         }
3740                     }
3741                 }
3742             }
3743             else if (flags & SCF_DO_STCLASS_OR) {
3744                 if (data->start_class->flags & ANYOF_LOC_NONBITMAP_FOLD) {
3745                     /* false positive possible if the class is case-folded.
3746                        Assume that the locale settings are the same... */
3747                     if (uc < 0x100) {
3748                         ANYOF_BITMAP_SET(data->start_class, uc);
3749                         if (OP(scan) != EXACTFL) {
3750
3751                             /* And set the other member of the fold pair, but
3752                              * can't do that in locale because not known until
3753                              * run-time */
3754                             ANYOF_BITMAP_SET(data->start_class,
3755                                              PL_fold_latin1[uc]);
3756
3757                             /* All folds except under /iaa that include s, S,
3758                              * and sharp_s also may include the others */
3759                             if (OP(scan) != EXACTFA) {
3760                                 if (uc == 's' || uc == 'S') {
3761                                     ANYOF_BITMAP_SET(data->start_class,
3762                                                    LATIN_SMALL_LETTER_SHARP_S);
3763                                 }
3764                                 else if (uc == LATIN_SMALL_LETTER_SHARP_S) {
3765                                     ANYOF_BITMAP_SET(data->start_class, 's');
3766                                     ANYOF_BITMAP_SET(data->start_class, 'S');
3767                                 }
3768                             }
3769                         }
3770                     }
3771                     data->start_class->flags &= ~ANYOF_EOS;
3772                 }
3773                 cl_and(data->start_class, and_withp);
3774             }
3775             flags &= ~SCF_DO_STCLASS;
3776         }
3777         else if (REGNODE_VARIES(OP(scan))) {
3778             I32 mincount, maxcount, minnext, deltanext, fl = 0;
3779             I32 f = flags, pos_before = 0;
3780             regnode * const oscan = scan;
3781             struct regnode_charclass_class this_class;
3782             struct regnode_charclass_class *oclass = NULL;
3783             I32 next_is_eval = 0;
3784
3785             switch (PL_regkind[OP(scan)]) {
3786             case WHILEM:                /* End of (?:...)* . */
3787                 scan = NEXTOPER(scan);
3788                 goto finish;
3789             case PLUS:
3790                 if (flags & (SCF_DO_SUBSTR | SCF_DO_STCLASS)) {
3791                     next = NEXTOPER(scan);
3792                     if (OP(next) == EXACT || (flags & SCF_DO_STCLASS)) {
3793                         mincount = 1;
3794                         maxcount = REG_INFTY;
3795                         next = regnext(scan);
3796                         scan = NEXTOPER(scan);
3797                         goto do_curly;
3798                     }
3799                 }
3800                 if (flags & SCF_DO_SUBSTR)
3801                     data->pos_min++;
3802                 min++;
3803                 /* Fall through. */
3804             case STAR:
3805                 if (flags & SCF_DO_STCLASS) {
3806                     mincount = 0;
3807                     maxcount = REG_INFTY;
3808                     next = regnext(scan);
3809                     scan = NEXTOPER(scan);
3810                     goto do_curly;
3811                 }
3812                 is_inf = is_inf_internal = 1;
3813                 scan = regnext(scan);
3814                 if (flags & SCF_DO_SUBSTR) {
3815                     SCAN_COMMIT(pRExC_state, data, minlenp); /* Cannot extend fixed substrings */
3816                     data->longest = &(data->longest_float);
3817                 }
3818                 goto optimize_curly_tail;
3819             case CURLY:
3820                 if (stopparen>0 && (OP(scan)==CURLYN || OP(scan)==CURLYM)
3821                     && (scan->flags == stopparen))
3822                 {
3823                     mincount = 1;
3824                     maxcount = 1;
3825                 } else {
3826                     mincount = ARG1(scan);
3827                     maxcount = ARG2(scan);
3828                 }
3829                 next = regnext(scan);
3830                 if (OP(scan) == CURLYX) {
3831                     I32 lp = (data ? *(data->last_closep) : 0);
3832                     scan->flags = ((lp <= (I32)U8_MAX) ? (U8)lp : U8_MAX);
3833                 }
3834                 scan = NEXTOPER(scan) + EXTRA_STEP_2ARGS;
3835                 next_is_eval = (OP(scan) == EVAL);
3836               do_curly:
3837                 if (flags & SCF_DO_SUBSTR) {
3838                     if (mincount == 0) SCAN_COMMIT(pRExC_state,data,minlenp); /* Cannot extend fixed substrings */
3839                     pos_before = data->pos_min;
3840                 }
3841                 if (data) {
3842                     fl = data->flags;
3843                     data->flags &= ~(SF_HAS_PAR|SF_IN_PAR|SF_HAS_EVAL);
3844                     if (is_inf)
3845                         data->flags |= SF_IS_INF;
3846                 }
3847                 if (flags & SCF_DO_STCLASS) {
3848                     cl_init(pRExC_state, &this_class);
3849                     oclass = data->start_class;
3850                     data->start_class = &this_class;
3851                     f |= SCF_DO_STCLASS_AND;
3852                     f &= ~SCF_DO_STCLASS_OR;
3853                 }
3854                 /* Exclude from super-linear cache processing any {n,m}
3855                    regops for which the combination of input pos and regex
3856                    pos is not enough information to determine if a match
3857                    will be possible.
3858
3859                    For example, in the regex /foo(bar\s*){4,8}baz/ with the
3860                    regex pos at the \s*, the prospects for a match depend not
3861                    only on the input position but also on how many (bar\s*)
3862                    repeats into the {4,8} we are. */
3863                if ((mincount > 1) || (maxcount > 1 && maxcount != REG_INFTY))
3864                     f &= ~SCF_WHILEM_VISITED_POS;
3865
3866                 /* This will finish on WHILEM, setting scan, or on NULL: */
3867                 minnext = study_chunk(pRExC_state, &scan, minlenp, &deltanext, 
3868                                       last, data, stopparen, recursed, NULL,
3869                                       (mincount == 0
3870                                         ? (f & ~SCF_DO_SUBSTR) : f),depth+1);
3871
3872                 if (flags & SCF_DO_STCLASS)
3873                     data->start_class = oclass;
3874                 if (mincount == 0 || minnext == 0) {
3875                     if (flags & SCF_DO_STCLASS_OR) {
3876                         cl_or(pRExC_state, data->start_class, &this_class);
3877                     }
3878                     else if (flags & SCF_DO_STCLASS_AND) {
3879                         /* Switch to OR mode: cache the old value of
3880                          * data->start_class */
3881                         INIT_AND_WITHP;
3882                         StructCopy(data->start_class, and_withp,
3883                                    struct regnode_charclass_class);
3884                         flags &= ~SCF_DO_STCLASS_AND;
3885                         StructCopy(&this_class, data->start_class,
3886                                    struct regnode_charclass_class);
3887                         flags |= SCF_DO_STCLASS_OR;
3888                         data->start_class->flags |= ANYOF_EOS;
3889                     }
3890                 } else {                /* Non-zero len */
3891                     if (flags & SCF_DO_STCLASS_OR) {
3892                         cl_or(pRExC_state, data->start_class, &this_class);
3893                         cl_and(data->start_class, and_withp);
3894                     }
3895                     else if (flags & SCF_DO_STCLASS_AND)
3896                         cl_and(data->start_class, &this_class);
3897                     flags &= ~SCF_DO_STCLASS;
3898                 }
3899                 if (!scan)              /* It was not CURLYX, but CURLY. */
3900                     scan = next;
3901                 if ( /* ? quantifier ok, except for (?{ ... }) */
3902                     (next_is_eval || !(mincount == 0 && maxcount == 1))
3903                     && (minnext == 0) && (deltanext == 0)
3904                     && data && !(data->flags & (SF_HAS_PAR|SF_IN_PAR))
3905                     && maxcount <= REG_INFTY/3) /* Complement check for big count */
3906                 {
3907                     ckWARNreg(RExC_parse,
3908                               "Quantifier unexpected on zero-length expression");
3909                 }
3910
3911                 min += minnext * mincount;
3912                 is_inf_internal |= ((maxcount == REG_INFTY
3913                                      && (minnext + deltanext) > 0)
3914                                     || deltanext == I32_MAX);
3915                 is_inf |= is_inf_internal;
3916                 delta += (minnext + deltanext) * maxcount - minnext * mincount;
3917
3918                 /* Try powerful optimization CURLYX => CURLYN. */
3919                 if (  OP(oscan) == CURLYX && data
3920                       && data->flags & SF_IN_PAR
3921                       && !(data->flags & SF_HAS_EVAL)
3922                       && !deltanext && minnext == 1 ) {
3923                     /* Try to optimize to CURLYN.  */
3924                     regnode *nxt = NEXTOPER(oscan) + EXTRA_STEP_2ARGS;
3925                     regnode * const nxt1 = nxt;
3926 #ifdef DEBUGGING
3927                     regnode *nxt2;
3928 #endif
3929
3930                     /* Skip open. */
3931                     nxt = regnext(nxt);
3932                     if (!REGNODE_SIMPLE(OP(nxt))
3933                         && !(PL_regkind[OP(nxt)] == EXACT
3934                              && STR_LEN(nxt) == 1))
3935                         goto nogo;
3936 #ifdef DEBUGGING
3937                     nxt2 = nxt;
3938 #endif
3939                     nxt = regnext(nxt);
3940                     if (OP(nxt) != CLOSE)
3941                         goto nogo;
3942                     if (RExC_open_parens) {
3943                         RExC_open_parens[ARG(nxt1)-1]=oscan; /*open->CURLYM*/
3944                         RExC_close_parens[ARG(nxt1)-1]=nxt+2; /*close->while*/
3945                     }
3946                     /* Now we know that nxt2 is the only contents: */
3947                     oscan->flags = (U8)ARG(nxt);
3948                     OP(oscan) = CURLYN;
3949                     OP(nxt1) = NOTHING; /* was OPEN. */
3950
3951 #ifdef DEBUGGING
3952                     OP(nxt1 + 1) = OPTIMIZED; /* was count. */
3953                     NEXT_OFF(nxt1+ 1) = 0; /* just for consistency. */
3954                     NEXT_OFF(nxt2) = 0; /* just for consistency with CURLY. */
3955                     OP(nxt) = OPTIMIZED;        /* was CLOSE. */
3956                     OP(nxt + 1) = OPTIMIZED; /* was count. */
3957                     NEXT_OFF(nxt+ 1) = 0; /* just for consistency. */
3958 #endif
3959                 }
3960               nogo:
3961
3962                 /* Try optimization CURLYX => CURLYM. */
3963                 if (  OP(oscan) == CURLYX && data
3964                       && !(data->flags & SF_HAS_PAR)
3965                       && !(data->flags & SF_HAS_EVAL)
3966                       && !deltanext     /* atom is fixed width */
3967                       && minnext != 0   /* CURLYM can't handle zero width */
3968                       && ! (RExC_seen & REG_SEEN_EXACTF_SHARP_S) /* Nor \xDF */
3969                 ) {
3970                     /* XXXX How to optimize if data == 0? */
3971                     /* Optimize to a simpler form.  */
3972                     regnode *nxt = NEXTOPER(oscan) + EXTRA_STEP_2ARGS; /* OPEN */
3973                     regnode *nxt2;
3974
3975                     OP(oscan) = CURLYM;
3976                     while ( (nxt2 = regnext(nxt)) /* skip over embedded stuff*/
3977                             && (OP(nxt2) != WHILEM))
3978                         nxt = nxt2;
3979                     OP(nxt2)  = SUCCEED; /* Whas WHILEM */
3980                     /* Need to optimize away parenths. */
3981                     if ((data->flags & SF_IN_PAR) && OP(nxt) == CLOSE) {
3982                         /* Set the parenth number.  */
3983                         regnode *nxt1 = NEXTOPER(oscan) + EXTRA_STEP_2ARGS; /* OPEN*/
3984
3985                         oscan->flags = (U8)ARG(nxt);
3986                         if (RExC_open_parens) {
3987                             RExC_open_parens[ARG(nxt1)-1]=oscan; /*open->CURLYM*/
3988                             RExC_close_parens[ARG(nxt1)-1]=nxt2+1; /*close->NOTHING*/
3989                         }
3990                         OP(nxt1) = OPTIMIZED;   /* was OPEN. */
3991                         OP(nxt) = OPTIMIZED;    /* was CLOSE. */
3992
3993 #ifdef DEBUGGING
3994                         OP(nxt1 + 1) = OPTIMIZED; /* was count. */
3995                         OP(nxt + 1) = OPTIMIZED; /* was count. */
3996                         NEXT_OFF(nxt1 + 1) = 0; /* just for consistency. */
3997                         NEXT_OFF(nxt + 1) = 0; /* just for consistency. */
3998 #endif
3999 #if 0
4000                         while ( nxt1 && (OP(nxt1) != WHILEM)) {
4001                             regnode *nnxt = regnext(nxt1);
4002                             if (nnxt == nxt) {
4003                                 if (reg_off_by_arg[OP(nxt1)])
4004                                     ARG_SET(nxt1, nxt2 - nxt1);
4005                                 else if (nxt2 - nxt1 < U16_MAX)
4006                                     NEXT_OFF(nxt1) = nxt2 - nxt1;
4007                                 else
4008                                     OP(nxt) = NOTHING;  /* Cannot beautify */
4009                             }
4010                             nxt1 = nnxt;
4011                         }
4012 #endif
4013                         /* Optimize again: */
4014                         study_chunk(pRExC_state, &nxt1, minlenp, &deltanext, nxt,
4015                                     NULL, stopparen, recursed, NULL, 0,depth+1);
4016                     }
4017                     else
4018                         oscan->flags = 0;
4019                 }
4020                 else if ((OP(oscan) == CURLYX)
4021                          && (flags & SCF_WHILEM_VISITED_POS)
4022                          /* See the comment on a similar expression above.
4023                             However, this time it's not a subexpression
4024                             we care about, but the expression itself. */
4025                          && (maxcount == REG_INFTY)
4026                          && data && ++data->whilem_c < 16) {
4027                     /* This stays as CURLYX, we can put the count/of pair. */
4028                     /* Find WHILEM (as in regexec.c) */
4029                     regnode *nxt = oscan + NEXT_OFF(oscan);
4030
4031                     if (OP(PREVOPER(nxt)) == NOTHING) /* LONGJMP */
4032                         nxt += ARG(nxt);
4033                     PREVOPER(nxt)->flags = (U8)(data->whilem_c
4034                         | (RExC_whilem_seen << 4)); /* On WHILEM */
4035                 }
4036                 if (data && fl & (SF_HAS_PAR|SF_IN_PAR))
4037                     pars++;
4038                 if (flags & SCF_DO_SUBSTR) {
4039                     SV *last_str = NULL;
4040                     int counted = mincount != 0;
4041
4042                     if (data->last_end > 0 && mincount != 0) { /* Ends with a string. */
4043 #if defined(SPARC64_GCC_WORKAROUND)
4044                         I32 b = 0;
4045                         STRLEN l = 0;
4046                         const char *s = NULL;
4047                         I32 old = 0;
4048
4049                         if (pos_before >= data->last_start_min)
4050                             b = pos_before;
4051                         else
4052                             b = data->last_start_min;
4053
4054                         l = 0;
4055                         s = SvPV_const(data->last_found, l);
4056                         old = b - data->last_start_min;
4057
4058 #else
4059                         I32 b = pos_before >= data->last_start_min
4060                             ? pos_before : data->last_start_min;
4061                         STRLEN l;
4062                         const char * const s = SvPV_const(data->last_found, l);
4063                         I32 old = b - data->last_start_min;
4064 #endif
4065
4066                         if (UTF)
4067                             old = utf8_hop((U8*)s, old) - (U8*)s;
4068                         l -= old;
4069                         /* Get the added string: */
4070                         last_str = newSVpvn_utf8(s  + old, l, UTF);
4071                         if (deltanext == 0 && pos_before == b) {
4072                             /* What was added is a constant string */
4073                             if (mincount > 1) {
4074                                 SvGROW(last_str, (mincount * l) + 1);
4075                                 repeatcpy(SvPVX(last_str) + l,
4076                                           SvPVX_const(last_str), l, mincount - 1);
4077                                 SvCUR_set(last_str, SvCUR(last_str) * mincount);
4078                                 /* Add additional parts. */
4079                                 SvCUR_set(data->last_found,
4080                                           SvCUR(data->last_found) - l);
4081                                 sv_catsv(data->last_found, last_str);
4082                                 {
4083                                     SV * sv = data->last_found;
4084                                     MAGIC *mg =
4085                                         SvUTF8(sv) && SvMAGICAL(sv) ?
4086                                         mg_find(sv, PERL_MAGIC_utf8) : NULL;
4087                                     if (mg && mg->mg_len >= 0)
4088                                         mg->mg_len += CHR_SVLEN(last_str) - l;
4089                                 }
4090                                 data->last_end += l * (mincount - 1);
4091                             }
4092                         } else {
4093                             /* start offset must point into the last copy */
4094                             data->last_start_min += minnext * (mincount - 1);
4095                             data->last_start_max += is_inf ? I32_MAX
4096                                 : (maxcount - 1) * (minnext + data->pos_delta);
4097                         }
4098                     }
4099                     /* It is counted once already... */
4100                     data->pos_min += minnext * (mincount - counted);
4101                     data->pos_delta += - counted * deltanext +
4102                         (minnext + deltanext) * maxcount - minnext * mincount;
4103                     if (mincount != maxcount) {
4104                          /* Cannot extend fixed substrings found inside
4105                             the group.  */
4106                         SCAN_COMMIT(pRExC_state,data,minlenp);
4107                         if (mincount && last_str) {
4108                             SV * const sv = data->last_found;
4109                             MAGIC * const mg = SvUTF8(sv) && SvMAGICAL(sv) ?
4110                                 mg_find(sv, PERL_MAGIC_utf8) : NULL;
4111
4112                             if (mg)
4113                                 mg->mg_len = -1;
4114                             sv_setsv(sv, last_str);
4115                             data->last_end = data->pos_min;
4116                             data->last_start_min =
4117                                 data->pos_min - CHR_SVLEN(last_str);
4118                             data->last_start_max = is_inf
4119                                 ? I32_MAX
4120                                 : data->pos_min + data->pos_delta
4121                                 - CHR_SVLEN(last_str);
4122                         }
4123                         data->longest = &(data->longest_float);
4124                     }
4125                     SvREFCNT_dec(last_str);
4126                 }
4127                 if (data && (fl & SF_HAS_EVAL))
4128                     data->flags |= SF_HAS_EVAL;
4129               optimize_curly_tail:
4130                 if (OP(oscan) != CURLYX) {
4131                     while (PL_regkind[OP(next = regnext(oscan))] == NOTHING
4132                            && NEXT_OFF(next))
4133                         NEXT_OFF(oscan) += NEXT_OFF(next);
4134                 }
4135                 continue;
4136             default:                    /* REF, ANYOFV, and CLUMP only? */
4137                 if (flags & SCF_DO_SUBSTR) {
4138                     SCAN_COMMIT(pRExC_state,data,minlenp);      /* Cannot expect anything... */
4139                     data->longest = &(data->longest_float);
4140                 }
4141                 is_inf = is_inf_internal = 1;
4142                 if (flags & SCF_DO_STCLASS_OR)
4143                     cl_anything(pRExC_state, data->start_class);
4144                 flags &= ~SCF_DO_STCLASS;
4145                 break;
4146             }
4147         }
4148         else if (OP(scan) == LNBREAK) {
4149             if (flags & SCF_DO_STCLASS) {
4150                 int value = 0;
4151                 data->start_class->flags &= ~ANYOF_EOS; /* No match on empty */
4152                 if (flags & SCF_DO_STCLASS_AND) {
4153                     for (value = 0; value < 256; value++)
4154                         if (!is_VERTWS_cp(value))
4155                             ANYOF_BITMAP_CLEAR(data->start_class, value);
4156                 }
4157                 else {
4158                     for (value = 0; value < 256; value++)
4159                         if (is_VERTWS_cp(value))
4160                             ANYOF_BITMAP_SET(data->start_class, value);
4161                 }
4162                 if (flags & SCF_DO_STCLASS_OR)
4163                     cl_and(data->start_class, and_withp);
4164                 flags &= ~SCF_DO_STCLASS;
4165             }
4166             min += 1;
4167             delta += 1;
4168             if (flags & SCF_DO_SUBSTR) {
4169                 SCAN_COMMIT(pRExC_state,data,minlenp);  /* Cannot expect anything... */
4170                 data->pos_min += 1;
4171                 data->pos_delta += 1;
4172                 data->longest = &(data->longest_float);
4173             }
4174         }
4175         else if (REGNODE_SIMPLE(OP(scan))) {
4176             int value = 0;
4177
4178             if (flags & SCF_DO_SUBSTR) {
4179                 SCAN_COMMIT(pRExC_state,data,minlenp);
4180                 data->pos_min++;
4181             }
4182             min++;
4183             if (flags & SCF_DO_STCLASS) {
4184                 data->start_class->flags &= ~ANYOF_EOS; /* No match on empty */
4185
4186                 /* Some of the logic below assumes that switching
4187                    locale on will only add false positives. */
4188                 switch (PL_regkind[OP(scan)]) {
4189                 case SANY:
4190                 default:
4191                   do_default:
4192                     /* Perl_croak(aTHX_ "panic: unexpected simple REx opcode %d", OP(scan)); */
4193                     if (flags & SCF_DO_STCLASS_OR) /* Allow everything */
4194                         cl_anything(pRExC_state, data->start_class);
4195                     break;
4196                 case REG_ANY:
4197                     if (OP(scan) == SANY)
4198                         goto do_default;
4199                     if (flags & SCF_DO_STCLASS_OR) { /* Everything but \n */
4200                         value = (ANYOF_BITMAP_TEST(data->start_class,'\n')
4201                                  || ANYOF_CLASS_TEST_ANY_SET(data->start_class));
4202                         cl_anything(pRExC_state, data->start_class);
4203                     }
4204                     if (flags & SCF_DO_STCLASS_AND || !value)
4205                         ANYOF_BITMAP_CLEAR(data->start_class,'\n');
4206                     break;
4207                 case ANYOF:
4208                     if (flags & SCF_DO_STCLASS_AND)
4209                         cl_and(data->start_class,
4210                                (struct regnode_charclass_class*)scan);
4211                     else
4212                         cl_or(pRExC_state, data->start_class,
4213                               (struct regnode_charclass_class*)scan);
4214                     break;
4215                 case ALNUM:
4216                     if (flags & SCF_DO_STCLASS_AND) {
4217                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
4218                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_NWORDCHAR);
4219                             if (OP(scan) == ALNUMU) {
4220                                 for (value = 0; value < 256; value++) {
4221                                     if (!isWORDCHAR_L1(value)) {
4222                                         ANYOF_BITMAP_CLEAR(data->start_class, value);
4223                                     }
4224                                 }
4225                             } else {
4226                                 for (value = 0; value < 256; value++) {
4227                                     if (!isALNUM(value)) {
4228                                         ANYOF_BITMAP_CLEAR(data->start_class, value);
4229                                     }
4230                                 }
4231                             }
4232                         }
4233                     }
4234                     else {
4235                         if (data->start_class->flags & ANYOF_LOCALE)
4236                             ANYOF_CLASS_SET(data->start_class,ANYOF_WORDCHAR);
4237
4238                         /* Even if under locale, set the bits for non-locale
4239                          * in case it isn't a true locale-node.  This will
4240                          * create false positives if it truly is locale */
4241                         if (OP(scan) == ALNUMU) {
4242                             for (value = 0; value < 256; value++) {
4243                                 if (isWORDCHAR_L1(value)) {
4244                                     ANYOF_BITMAP_SET(data->start_class, value);
4245                                 }
4246                             }
4247                         } else {
4248                             for (value = 0; value < 256; value++) {
4249                                 if (isALNUM(value)) {
4250                                     ANYOF_BITMAP_SET(data->start_class, value);
4251                                 }
4252                             }
4253                         }
4254                     }
4255                     break;
4256                 case NALNUM:
4257                     if (flags & SCF_DO_STCLASS_AND) {
4258                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
4259                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_WORDCHAR);
4260                             if (OP(scan) == NALNUMU) {
4261                                 for (value = 0; value < 256; value++) {
4262                                     if (isWORDCHAR_L1(value)) {
4263                                         ANYOF_BITMAP_CLEAR(data->start_class, value);
4264                                     }
4265                                 }
4266                             } else {
4267                                 for (value = 0; value < 256; value++) {
4268                                     if (isALNUM(value)) {
4269                                         ANYOF_BITMAP_CLEAR(data->start_class, value);
4270                                     }
4271                                 }
4272                             }
4273                         }
4274                     }
4275                     else {
4276                         if (data->start_class->flags & ANYOF_LOCALE)
4277                             ANYOF_CLASS_SET(data->start_class,ANYOF_NWORDCHAR);
4278
4279                         /* Even if under locale, set the bits for non-locale in
4280                          * case it isn't a true locale-node.  This will create
4281                          * false positives if it truly is locale */
4282                         if (OP(scan) == NALNUMU) {
4283                             for (value = 0; value < 256; value++) {
4284                                 if (! isWORDCHAR_L1(value)) {
4285                                     ANYOF_BITMAP_SET(data->start_class, value);
4286                                 }
4287                             }
4288                         } else {
4289                             for (value = 0; value < 256; value++) {
4290                                 if (! isALNUM(value)) {
4291                                     ANYOF_BITMAP_SET(data->start_class, value);
4292                                 }
4293                             }
4294                         }
4295                     }
4296                     break;
4297                 case SPACE:
4298                     if (flags & SCF_DO_STCLASS_AND) {
4299                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
4300                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_NSPACE);
4301                             if (OP(scan) == SPACEU) {
4302                                 for (value = 0; value < 256; value++) {
4303                                     if (!isSPACE_L1(value)) {
4304                                         ANYOF_BITMAP_CLEAR(data->start_class, value);
4305                                     }
4306                                 }
4307                             } else {
4308                                 for (value = 0; value < 256; value++) {
4309                                     if (!isSPACE(value)) {
4310                                         ANYOF_BITMAP_CLEAR(data->start_class, value);
4311                                     }
4312                                 }
4313                             }
4314                         }
4315                     }
4316                     else {
4317                         if (data->start_class->flags & ANYOF_LOCALE) {
4318                             ANYOF_CLASS_SET(data->start_class,ANYOF_SPACE);
4319                         }
4320                         if (OP(scan) == SPACEU) {
4321                             for (value = 0; value < 256; value++) {
4322                                 if (isSPACE_L1(value)) {
4323                                     ANYOF_BITMAP_SET(data->start_class, value);
4324                                 }
4325                             }
4326                         } else {
4327                             for (value = 0; value < 256; value++) {
4328                                 if (isSPACE(value)) {
4329                                     ANYOF_BITMAP_SET(data->start_class, value);
4330                                 }
4331                             }
4332                         }
4333                     }
4334                     break;
4335                 case NSPACE:
4336                     if (flags & SCF_DO_STCLASS_AND) {
4337                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
4338                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_SPACE);
4339                             if (OP(scan) == NSPACEU) {
4340                                 for (value = 0; value < 256; value++) {
4341                                     if (isSPACE_L1(value)) {
4342                                         ANYOF_BITMAP_CLEAR(data->start_class, value);
4343                                     }
4344                                 }
4345                             } else {
4346                                 for (value = 0; value < 256; value++) {
4347                                     if (isSPACE(value)) {
4348                                         ANYOF_BITMAP_CLEAR(data->start_class, value);
4349                                     }
4350                                 }
4351                             }
4352                         }
4353                     }
4354                     else {
4355                         if (data->start_class->flags & ANYOF_LOCALE)
4356                             ANYOF_CLASS_SET(data->start_class,ANYOF_NSPACE);
4357                         if (OP(scan) == NSPACEU) {
4358                             for (value = 0; value < 256; value++) {
4359                                 if (!isSPACE_L1(value)) {
4360                                     ANYOF_BITMAP_SET(data->start_class, value);
4361                                 }
4362                             }
4363                         }
4364                         else {
4365                             for (value = 0; value < 256; value++) {
4366                                 if (!isSPACE(value)) {
4367                                     ANYOF_BITMAP_SET(data->start_class, value);
4368                                 }
4369                             }
4370                         }
4371                     }
4372                     break;
4373                 case DIGIT:
4374                     if (flags & SCF_DO_STCLASS_AND) {
4375                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
4376                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_NDIGIT);
4377                             for (value = 0; value < 256; value++)
4378                                 if (!isDIGIT(value))
4379                                     ANYOF_BITMAP_CLEAR(data->start_class, value);
4380                         }
4381                     }
4382                     else {
4383                         if (data->start_class->flags & ANYOF_LOCALE)
4384                             ANYOF_CLASS_SET(data->start_class,ANYOF_DIGIT);
4385                         for (value = 0; value < 256; value++)
4386                             if (isDIGIT(value))
4387                                 ANYOF_BITMAP_SET(data->start_class, value);
4388                     }
4389                     break;
4390                 case NDIGIT:
4391                     if (flags & SCF_DO_STCLASS_AND) {
4392                         if (!(data->start_class->flags & ANYOF_LOCALE))
4393                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_DIGIT);
4394                         for (value = 0; value < 256; value++)
4395                             if (isDIGIT(value))
4396                                 ANYOF_BITMAP_CLEAR(data->start_class, value);
4397                     }
4398                     else {
4399                         if (data->start_class->flags & ANYOF_LOCALE)
4400                             ANYOF_CLASS_SET(data->start_class,ANYOF_NDIGIT);
4401                         for (value = 0; value < 256; value++)
4402                             if (!isDIGIT(value))
4403                                 ANYOF_BITMAP_SET(data->start_class, value);
4404                     }
4405                     break;
4406                 CASE_SYNST_FNC(VERTWS);
4407                 CASE_SYNST_FNC(HORIZWS);
4408
4409                 }
4410                 if (flags & SCF_DO_STCLASS_OR)
4411                     cl_and(data->start_class, and_withp);
4412                 flags &= ~SCF_DO_STCLASS;
4413             }
4414         }
4415         else if (PL_regkind[OP(scan)] == EOL && flags & SCF_DO_SUBSTR) {
4416             data->flags |= (OP(scan) == MEOL
4417                             ? SF_BEFORE_MEOL
4418                             : SF_BEFORE_SEOL);
4419             SCAN_COMMIT(pRExC_state, data, minlenp);
4420
4421         }
4422         else if (  PL_regkind[OP(scan)] == BRANCHJ
4423                  /* Lookbehind, or need to calculate parens/evals/stclass: */
4424                    && (scan->flags || data || (flags & SCF_DO_STCLASS))
4425                    && (OP(scan) == IFMATCH || OP(scan) == UNLESSM)) {
4426             if ( OP(scan) == UNLESSM &&
4427                  scan->flags == 0 &&
4428                  OP(NEXTOPER(NEXTOPER(scan))) == NOTHING &&
4429                  OP(regnext(NEXTOPER(NEXTOPER(scan)))) == SUCCEED
4430             ) {
4431                 regnode *opt;
4432                 regnode *upto= regnext(scan);
4433                 DEBUG_PARSE_r({
4434                     SV * const mysv_val=sv_newmortal();
4435                     DEBUG_STUDYDATA("OPFAIL",data,depth);
4436
4437                     /*DEBUG_PARSE_MSG("opfail");*/
4438                     regprop(RExC_rx, mysv_val, upto);
4439                     PerlIO_printf(Perl_debug_log, "~ replace with OPFAIL pointed at %s (%"IVdf") offset %"IVdf"\n",
4440                                   SvPV_nolen_const(mysv_val),
4441                                   (IV)REG_NODE_NUM(upto),
4442                                   (IV)(upto - scan)
4443                     );
4444                 });
4445                 OP(scan) = OPFAIL;
4446                 NEXT_OFF(scan) = upto - scan;
4447                 for (opt= scan + 1; opt < upto ; opt++)
4448                     OP(opt) = OPTIMIZED;
4449                 scan= upto;
4450                 continue;
4451             }
4452             if ( !PERL_ENABLE_POSITIVE_ASSERTION_STUDY 
4453                 || OP(scan) == UNLESSM )
4454             {
4455                 /* Negative Lookahead/lookbehind
4456                    In this case we can't do fixed string optimisation.
4457                 */
4458
4459                 I32 deltanext, minnext, fake = 0;
4460                 regnode *nscan;
4461                 struct regnode_charclass_class intrnl;
4462                 int f = 0;
4463
4464                 data_fake.flags = 0;
4465                 if (data) {
4466                     data_fake.whilem_c = data->whilem_c;
4467                     data_fake.last_closep = data->last_closep;
4468                 }
4469                 else
4470                     data_fake.last_closep = &fake;
4471                 data_fake.pos_delta = delta;
4472                 if ( flags & SCF_DO_STCLASS && !scan->flags
4473                      && OP(scan) == IFMATCH ) { /* Lookahead */
4474                     cl_init(pRExC_state, &intrnl);
4475                     data_fake.start_class = &intrnl;
4476                     f |= SCF_DO_STCLASS_AND;
4477                 }
4478                 if (flags & SCF_WHILEM_VISITED_POS)
4479                     f |= SCF_WHILEM_VISITED_POS;
4480                 next = regnext(scan);
4481                 nscan = NEXTOPER(NEXTOPER(scan));
4482                 minnext = study_chunk(pRExC_state, &nscan, minlenp, &deltanext, 
4483                     last, &data_fake, stopparen, recursed, NULL, f, depth+1);
4484                 if (scan->flags) {
4485                     if (deltanext) {
4486                         FAIL("Variable length lookbehind not implemented");
4487                     }
4488                     else if (minnext > (I32)U8_MAX) {
4489                         FAIL2("Lookbehind longer than %"UVuf" not implemented", (UV)U8_MAX);
4490                     }
4491                     scan->flags = (U8)minnext;
4492                 }
4493                 if (data) {
4494                     if (data_fake.flags & (SF_HAS_PAR|SF_IN_PAR))
4495                         pars++;
4496                     if (data_fake.flags & SF_HAS_EVAL)
4497                         data->flags |= SF_HAS_EVAL;
4498                     data->whilem_c = data_fake.whilem_c;
4499                 }
4500                 if (f & SCF_DO_STCLASS_AND) {
4501                     if (flags & SCF_DO_STCLASS_OR) {
4502                         /* OR before, AND after: ideally we would recurse with
4503                          * data_fake to get the AND applied by study of the
4504                          * remainder of the pattern, and then derecurse;
4505                          * *** HACK *** for now just treat as "no information".
4506                          * See [perl #56690].
4507                          */
4508                         cl_init(pRExC_state, data->start_class);
4509                     }  else {
4510                         /* AND before and after: combine and continue */
4511                         const int was = (data->start_class->flags & ANYOF_EOS);
4512
4513                         cl_and(data->start_class, &intrnl);
4514                         if (was)
4515                             data->start_class->flags |= ANYOF_EOS;
4516                     }
4517                 }
4518             }
4519 #if PERL_ENABLE_POSITIVE_ASSERTION_STUDY
4520             else {
4521                 /* Positive Lookahead/lookbehind
4522                    In this case we can do fixed string optimisation,
4523                    but we must be careful about it. Note in the case of
4524                    lookbehind the positions will be offset by the minimum
4525                    length of the pattern, something we won't know about
4526                    until after the recurse.
4527                 */
4528                 I32 deltanext, fake = 0;
4529                 regnode *nscan;
4530                 struct regnode_charclass_class intrnl;
4531                 int f = 0;
4532                 /* We use SAVEFREEPV so that when the full compile 
4533                     is finished perl will clean up the allocated 
4534                     minlens when it's all done. This way we don't
4535                     have to worry about freeing them when we know
4536                     they wont be used, which would be a pain.
4537                  */
4538                 I32 *minnextp;
4539                 Newx( minnextp, 1, I32 );
4540                 SAVEFREEPV(minnextp);
4541
4542                 if (data) {
4543                     StructCopy(data, &data_fake, scan_data_t);
4544                     if ((flags & SCF_DO_SUBSTR) && data->last_found) {
4545                         f |= SCF_DO_SUBSTR;
4546                         if (scan->flags) 
4547                             SCAN_COMMIT(pRExC_state, &data_fake,minlenp);
4548                         data_fake.last_found=newSVsv(data->last_found);
4549                     }
4550                 }
4551                 else
4552                     data_fake.last_closep = &fake;
4553                 data_fake.flags = 0;
4554                 data_fake.pos_delta = delta;
4555                 if (is_inf)
4556                     data_fake.flags |= SF_IS_INF;
4557                 if ( flags & SCF_DO_STCLASS && !scan->flags
4558                      && OP(scan) == IFMATCH ) { /* Lookahead */
4559                     cl_init(pRExC_state, &intrnl);
4560                     data_fake.start_class = &intrnl;
4561                     f |= SCF_DO_STCLASS_AND;
4562                 }
4563                 if (flags & SCF_WHILEM_VISITED_POS)
4564                     f |= SCF_WHILEM_VISITED_POS;
4565                 next = regnext(scan);
4566                 nscan = NEXTOPER(NEXTOPER(scan));
4567
4568                 *minnextp = study_chunk(pRExC_state, &nscan, minnextp, &deltanext, 
4569                     last, &data_fake, stopparen, recursed, NULL, f,depth+1);
4570                 if (scan->flags) {
4571                     if (deltanext) {
4572                         FAIL("Variable length lookbehind not implemented");
4573                     }
4574                     else if (*minnextp > (I32)U8_MAX) {
4575                         FAIL2("Lookbehind longer than %"UVuf" not implemented", (UV)U8_MAX);
4576                     }
4577                     scan->flags = (U8)*minnextp;
4578                 }
4579
4580                 *minnextp += min;
4581
4582                 if (f & SCF_DO_STCLASS_AND) {
4583                     const int was = (data->start_class->flags & ANYOF_EOS);
4584
4585                     cl_and(data->start_class, &intrnl);
4586                     if (was)
4587                         data->start_class->flags |= ANYOF_EOS;
4588                 }
4589                 if (data) {
4590                     if (data_fake.flags & (SF_HAS_PAR|SF_IN_PAR))
4591                         pars++;
4592                     if (data_fake.flags & SF_HAS_EVAL)
4593                         data->flags |= SF_HAS_EVAL;
4594                     data->whilem_c = data_fake.whilem_c;
4595                     if ((flags & SCF_DO_SUBSTR) && data_fake.last_found) {
4596                         if (RExC_rx->minlen<*minnextp)
4597                             RExC_rx->minlen=*minnextp;
4598                         SCAN_COMMIT(pRExC_state, &data_fake, minnextp);
4599                         SvREFCNT_dec(data_fake.last_found);
4600                         
4601                         if ( data_fake.minlen_fixed != minlenp ) 
4602                         {
4603                             data->offset_fixed= data_fake.offset_fixed;
4604                             data->minlen_fixed= data_fake.minlen_fixed;
4605                             data->lookbehind_fixed+= scan->flags;
4606                         }
4607                         if ( data_fake.minlen_float != minlenp )
4608                         {
4609                             data->minlen_float= data_fake.minlen_float;
4610                             data->offset_float_min=data_fake.offset_float_min;
4611                             data->offset_float_max=data_fake.offset_float_max;
4612                             data->lookbehind_float+= scan->flags;
4613                         }
4614                     }
4615                 }
4616             }
4617 #endif
4618         }
4619         else if (OP(scan) == OPEN) {
4620             if (stopparen != (I32)ARG(scan))
4621                 pars++;
4622         }
4623         else if (OP(scan) == CLOSE) {
4624             if (stopparen == (I32)ARG(scan)) {
4625                 break;
4626             }
4627             if ((I32)ARG(scan) == is_par) {
4628                 next = regnext(scan);
4629
4630                 if ( next && (OP(next) != WHILEM) && next < last)
4631                     is_par = 0;         /* Disable optimization */
4632             }
4633             if (data)
4634                 *(data->last_closep) = ARG(scan);
4635         }
4636         else if (OP(scan) == EVAL) {
4637                 if (data)
4638                     data->flags |= SF_HAS_EVAL;
4639         }
4640         else if ( PL_regkind[OP(scan)] == ENDLIKE ) {
4641             if (flags & SCF_DO_SUBSTR) {
4642                 SCAN_COMMIT(pRExC_state,data,minlenp);
4643                 flags &= ~SCF_DO_SUBSTR;
4644             }
4645             if (data && OP(scan)==ACCEPT) {
4646                 data->flags |= SCF_SEEN_ACCEPT;
4647                 if (stopmin > min)
4648                     stopmin = min;
4649             }
4650         }
4651         else if (OP(scan) == LOGICAL && scan->flags == 2) /* Embedded follows */
4652         {
4653                 if (flags & SCF_DO_SUBSTR) {
4654                     SCAN_COMMIT(pRExC_state,data,minlenp);
4655                     data->longest = &(data->longest_float);
4656                 }
4657                 is_inf = is_inf_internal = 1;
4658                 if (flags & SCF_DO_STCLASS_OR) /* Allow everything */
4659                     cl_anything(pRExC_state, data->start_class);
4660                 flags &= ~SCF_DO_STCLASS;
4661         }
4662         else if (OP(scan) == GPOS) {
4663             if (!(RExC_rx->extflags & RXf_GPOS_FLOAT) &&
4664                 !(delta || is_inf || (data && data->pos_delta))) 
4665             {
4666                 if (!(RExC_rx->extflags & RXf_ANCH) && (flags & SCF_DO_SUBSTR))
4667                     RExC_rx->extflags |= RXf_ANCH_GPOS;
4668                 if (RExC_rx->gofs < (U32)min)
4669                     RExC_rx->gofs = min;
4670             } else {
4671                 RExC_rx->extflags |= RXf_GPOS_FLOAT;
4672                 RExC_rx->gofs = 0;
4673             }       
4674         }
4675 #ifdef TRIE_STUDY_OPT
4676 #ifdef FULL_TRIE_STUDY
4677         else if (PL_regkind[OP(scan)] == TRIE) {
4678             /* NOTE - There is similar code to this block above for handling
4679                BRANCH nodes on the initial study.  If you change stuff here
4680                check there too. */
4681             regnode *trie_node= scan;
4682             regnode *tail= regnext(scan);
4683             reg_trie_data *trie = (reg_trie_data*)RExC_rxi->data->data[ ARG(scan) ];
4684             I32 max1 = 0, min1 = I32_MAX;
4685             struct regnode_charclass_class accum;
4686
4687             if (flags & SCF_DO_SUBSTR) /* XXXX Add !SUSPEND? */
4688                 SCAN_COMMIT(pRExC_state, data,minlenp); /* Cannot merge strings after this. */
4689             if (flags & SCF_DO_STCLASS)
4690                 cl_init_zero(pRExC_state, &accum);
4691                 
4692             if (!trie->jump) {
4693                 min1= trie->minlen;
4694                 max1= trie->maxlen;
4695             } else {
4696                 const regnode *nextbranch= NULL;
4697                 U32 word;
4698                 
4699                 for ( word=1 ; word <= trie->wordcount ; word++) 
4700                 {
4701                     I32 deltanext=0, minnext=0, f = 0, fake;
4702                     struct regnode_charclass_class this_class;
4703                     
4704                     data_fake.flags = 0;
4705                     if (data) {
4706                         data_fake.whilem_c = data->whilem_c;
4707                         data_fake.last_closep = data->last_closep;
4708                     }
4709                     else
4710                         data_fake.last_closep = &fake;
4711                     data_fake.pos_delta = delta;
4712                     if (flags & SCF_DO_STCLASS) {
4713                         cl_init(pRExC_state, &this_class);
4714                         data_fake.start_class = &this_class;
4715                         f = SCF_DO_STCLASS_AND;
4716                     }
4717                     if (flags & SCF_WHILEM_VISITED_POS)
4718                         f |= SCF_WHILEM_VISITED_POS;
4719     
4720                     if (trie->jump[word]) {
4721                         if (!nextbranch)
4722                             nextbranch = trie_node + trie->jump[0];
4723                         scan= trie_node + trie->jump[word];
4724                         /* We go from the jump point to the branch that follows
4725                            it. Note this means we need the vestigal unused branches
4726                            even though they arent otherwise used.
4727                          */
4728                         minnext = study_chunk(pRExC_state, &scan, minlenp, 
4729                             &deltanext, (regnode *)nextbranch, &data_fake, 
4730                             stopparen, recursed, NULL, f,depth+1);
4731                     }
4732                     if (nextbranch && PL_regkind[OP(nextbranch)]==BRANCH)
4733                         nextbranch= regnext((regnode*)nextbranch);
4734                     
4735                     if (min1 > (I32)(minnext + trie->minlen))
4736                         min1 = minnext + trie->minlen;
4737                     if (max1 < (I32)(minnext + deltanext + trie->maxlen))
4738                         max1 = minnext + deltanext + trie->maxlen;
4739                     if (deltanext == I32_MAX)
4740                         is_inf = is_inf_internal = 1;
4741                     
4742                     if (data_fake.flags & (SF_HAS_PAR|SF_IN_PAR))
4743                         pars++;
4744                     if (data_fake.flags & SCF_SEEN_ACCEPT) {
4745                         if ( stopmin > min + min1) 
4746                             stopmin = min + min1;
4747                         flags &= ~SCF_DO_SUBSTR;
4748                         if (data)
4749                             data->flags |= SCF_SEEN_ACCEPT;
4750                     }
4751                     if (data) {
4752                         if (data_fake.flags & SF_HAS_EVAL)
4753                             data->flags |= SF_HAS_EVAL;
4754                         data->whilem_c = data_fake.whilem_c;
4755                     }
4756                     if (flags & SCF_DO_STCLASS)
4757                         cl_or(pRExC_state, &accum, &this_class);
4758                 }
4759             }
4760             if (flags & SCF_DO_SUBSTR) {
4761                 data->pos_min += min1;
4762                 data->pos_delta += max1 - min1;
4763                 if (max1 != min1 || is_inf)
4764                     data->longest = &(data->longest_float);
4765             }
4766             min += min1;
4767             delta += max1 - min1;
4768             if (flags & SCF_DO_STCLASS_OR) {
4769                 cl_or(pRExC_state, data->start_class, &accum);
4770                 if (min1) {
4771                     cl_and(data->start_class, and_withp);
4772                     flags &= ~SCF_DO_STCLASS;
4773                 }
4774             }
4775             else if (flags & SCF_DO_STCLASS_AND) {
4776                 if (min1) {
4777                     cl_and(data->start_class, &accum);
4778                     flags &= ~SCF_DO_STCLASS;
4779                 }
4780                 else {
4781                     /* Switch to OR mode: cache the old value of
4782                      * data->start_class */
4783                     INIT_AND_WITHP;
4784                     StructCopy(data->start_class, and_withp,
4785                                struct regnode_charclass_class);
4786                     flags &= ~SCF_DO_STCLASS_AND;
4787                     StructCopy(&accum, data->start_class,
4788                                struct regnode_charclass_class);
4789                     flags |= SCF_DO_STCLASS_OR;
4790                     data->start_class->flags |= ANYOF_EOS;
4791                 }
4792             }
4793             scan= tail;
4794             continue;
4795         }
4796 #else
4797         else if (PL_regkind[OP(scan)] == TRIE) {
4798             reg_trie_data *trie = (reg_trie_data*)RExC_rxi->data->data[ ARG(scan) ];
4799             U8*bang=NULL;
4800             
4801             min += trie->minlen;
4802             delta += (trie->maxlen - trie->minlen);
4803             flags &= ~SCF_DO_STCLASS; /* xxx */
4804             if (flags & SCF_DO_SUBSTR) {
4805                 SCAN_COMMIT(pRExC_state,data,minlenp);  /* Cannot expect anything... */
4806                 data->pos_min += trie->minlen;
4807                 data->pos_delta += (trie->maxlen - trie->minlen);
4808                 if (trie->maxlen != trie->minlen)
4809                     data->longest = &(data->longest_float);
4810             }
4811             if (trie->jump) /* no more substrings -- for now /grr*/
4812                 flags &= ~SCF_DO_SUBSTR; 
4813         }
4814 #endif /* old or new */
4815 #endif /* TRIE_STUDY_OPT */
4816
4817         /* Else: zero-length, ignore. */
4818         scan = regnext(scan);
4819     }
4820     if (frame) {
4821         last = frame->last;
4822         scan = frame->next;
4823         stopparen = frame->stop;
4824         frame = frame->prev;
4825         goto fake_study_recurse;
4826     }
4827
4828   finish:
4829     assert(!frame);
4830     DEBUG_STUDYDATA("pre-fin:",data,depth);
4831
4832     *scanp = scan;
4833     *deltap = is_inf_internal ? I32_MAX : delta;
4834     if (flags & SCF_DO_SUBSTR && is_inf)
4835         data->pos_delta = I32_MAX - data->pos_min;
4836     if (is_par > (I32)U8_MAX)
4837         is_par = 0;
4838     if (is_par && pars==1 && data) {
4839         data->flags |= SF_IN_PAR;
4840         data->flags &= ~SF_HAS_PAR;
4841     }
4842     else if (pars && data) {
4843         data->flags |= SF_HAS_PAR;
4844         data->flags &= ~SF_IN_PAR;
4845     }
4846     if (flags & SCF_DO_STCLASS_OR)
4847         cl_and(data->start_class, and_withp);
4848     if (flags & SCF_TRIE_RESTUDY)
4849         data->flags |=  SCF_TRIE_RESTUDY;
4850     
4851     DEBUG_STUDYDATA("post-fin:",data,depth);
4852     
4853     return min < stopmin ? min : stopmin;
4854 }
4855
4856 STATIC U32
4857 S_add_data(RExC_state_t *pRExC_state, U32 n, const char *s)
4858 {
4859     U32 count = RExC_rxi->data ? RExC_rxi->data->count : 0;
4860
4861     PERL_ARGS_ASSERT_ADD_DATA;
4862
4863     Renewc(RExC_rxi->data,
4864            sizeof(*RExC_rxi->data) + sizeof(void*) * (count + n - 1),
4865            char, struct reg_data);
4866     if(count)
4867         Renew(RExC_rxi->data->what, count + n, U8);
4868     else
4869         Newx(RExC_rxi->data->what, n, U8);
4870     RExC_rxi->data->count = count + n;
4871     Copy(s, RExC_rxi->data->what + count, n, U8);
4872     return count;
4873 }
4874
4875 /*XXX: todo make this not included in a non debugging perl */
4876 #ifndef PERL_IN_XSUB_RE
4877 void
4878 Perl_reginitcolors(pTHX)
4879 {
4880     dVAR;
4881     const char * const s = PerlEnv_getenv("PERL_RE_COLORS");
4882     if (s) {
4883         char *t = savepv(s);
4884         int i = 0;
4885         PL_colors[0] = t;
4886         while (++i < 6) {
4887             t = strchr(t, '\t');
4888             if (t) {
4889                 *t = '\0';
4890                 PL_colors[i] = ++t;
4891             }
4892             else
4893                 PL_colors[i] = t = (char *)"";
4894         }
4895     } else {
4896         int i = 0;
4897         while (i < 6)
4898             PL_colors[i++] = (char *)"";
4899     }
4900     PL_colorset = 1;
4901 }
4902 #endif
4903
4904
4905 #ifdef TRIE_STUDY_OPT
4906 #define CHECK_RESTUDY_GOTO                                  \
4907         if (                                                \
4908               (data.flags & SCF_TRIE_RESTUDY)               \
4909               && ! restudied++                              \
4910         )     goto reStudy
4911 #else
4912 #define CHECK_RESTUDY_GOTO
4913 #endif        
4914
4915 /*
4916  * pregcomp - compile a regular expression into internal code
4917  *
4918  * Decides which engine's compiler to call based on the hint currently in
4919  * scope
4920  */
4921
4922 #ifndef PERL_IN_XSUB_RE 
4923
4924 /* return the currently in-scope regex engine (or the default if none)  */
4925
4926 regexp_engine const *
4927 Perl_current_re_engine(pTHX)
4928 {
4929     dVAR;
4930
4931     if (IN_PERL_COMPILETIME) {
4932         HV * const table = GvHV(PL_hintgv);
4933         SV **ptr;
4934
4935         if (!table)
4936             return &PL_core_reg_engine;
4937         ptr = hv_fetchs(table, "regcomp", FALSE);
4938         if ( !(ptr && SvIOK(*ptr) && SvIV(*ptr)))
4939             return &PL_core_reg_engine;
4940         return INT2PTR(regexp_engine*,SvIV(*ptr));
4941     }
4942     else {
4943         SV *ptr;
4944         if (!PL_curcop->cop_hints_hash)
4945             return &PL_core_reg_engine;
4946         ptr = cop_hints_fetch_pvs(PL_curcop, "regcomp", 0);
4947         if ( !(ptr && SvIOK(ptr) && SvIV(ptr)))
4948             return &PL_core_reg_engine;
4949         return INT2PTR(regexp_engine*,SvIV(ptr));
4950     }
4951 }
4952
4953
4954 REGEXP *
4955 Perl_pregcomp(pTHX_ SV * const pattern, const U32 flags)
4956 {
4957     dVAR;
4958     regexp_engine const *eng = current_re_engine();
4959     GET_RE_DEBUG_FLAGS_DECL;
4960
4961     PERL_ARGS_ASSERT_PREGCOMP;
4962
4963     /* Dispatch a request to compile a regexp to correct regexp engine. */
4964     DEBUG_COMPILE_r({
4965         PerlIO_printf(Perl_debug_log, "Using engine %"UVxf"\n",
4966                         PTR2UV(eng));
4967     });
4968     return CALLREGCOMP_ENG(eng, pattern, flags);
4969 }
4970 #endif
4971
4972 /* public(ish) entry point for the perl core's own regex compiling code.
4973  * It's actually a wrapper for Perl_re_op_compile that only takes an SV
4974  * pattern rather than a list of OPs, and uses the internal engine rather
4975  * than the current one */
4976
4977 REGEXP *
4978 Perl_re_compile(pTHX_ SV * const pattern, U32 rx_flags)
4979 {
4980     SV *pat = pattern; /* defeat constness! */
4981     PERL_ARGS_ASSERT_RE_COMPILE;
4982     return Perl_re_op_compile(aTHX_ &pat, 1, NULL,
4983 #ifdef PERL_IN_XSUB_RE
4984                                 &my_reg_engine,
4985 #else
4986                                 &PL_core_reg_engine,
4987 #endif
4988                                 NULL, NULL, rx_flags, 0);
4989 }
4990
4991 /* see if there are any run-time code blocks in the pattern.
4992  * False positives are allowed */
4993
4994 static bool
4995 S_has_runtime_code(pTHX_ RExC_state_t * const pRExC_state, OP *expr,
4996                     U32 pm_flags, char *pat, STRLEN plen)
4997 {
4998     int n = 0;
4999     STRLEN s;
5000
5001     /* avoid infinitely recursing when we recompile the pattern parcelled up
5002      * as qr'...'. A single constant qr// string can't have have any
5003      * run-time component in it, and thus, no runtime code. (A non-qr
5004      * string, however, can, e.g. $x =~ '(?{})') */
5005     if  ((pm_flags & PMf_IS_QR) && expr && expr->op_type == OP_CONST)
5006         return 0;
5007
5008     for (s = 0; s < plen; s++) {
5009         if (n < pRExC_state->num_code_blocks
5010             && s == pRExC_state->code_blocks[n].start)
5011         {
5012             s = pRExC_state->code_blocks[n].end;
5013             n++;
5014             continue;
5015         }
5016         /* TODO ideally should handle [..], (#..), /#.../x to reduce false
5017          * positives here */
5018         if (pat[s] == '(' && pat[s+1] == '?' &&
5019             (pat[s+2] == '{' || (pat[s+2] == '?' && pat[s+3] == '{'))
5020         )
5021             return 1;
5022     }
5023     return 0;
5024 }
5025
5026 /* Handle run-time code blocks. We will already have compiled any direct
5027  * or indirect literal code blocks. Now, take the pattern 'pat' and make a
5028  * copy of it, but with any literal code blocks blanked out and
5029  * appropriate chars escaped; then feed it into
5030  *
5031  *    eval "qr'modified_pattern'"
5032  *
5033  * For example,
5034  *
5035  *       a\bc(?{"this was literal"})def'ghi\\jkl(?{"this is runtime"})mno
5036  *
5037  * becomes
5038  *
5039  *    qr'a\\bc                       def\'ghi\\\\jkl(?{"this is runtime"})mno'
5040  *
5041  * After eval_sv()-ing that, grab any new code blocks from the returned qr
5042  * and merge them with any code blocks of the original regexp.
5043  *
5044  * If the pat is non-UTF8, while the evalled qr is UTF8, don't merge;
5045  * instead, just save the qr and return FALSE; this tells our caller that
5046  * the original pattern needs upgrading to utf8.
5047  */
5048
5049 static bool
5050 S_compile_runtime_code(pTHX_ RExC_state_t * const pRExC_state,
5051     char *pat, STRLEN plen)
5052 {
5053     SV *qr;
5054
5055     GET_RE_DEBUG_FLAGS_DECL;
5056
5057     if (pRExC_state->runtime_code_qr) {
5058         /* this is the second time we've been called; this should
5059          * only happen if the main pattern got upgraded to utf8
5060          * during compilation; re-use the qr we compiled first time
5061          * round (which should be utf8 too)
5062          */
5063         qr = pRExC_state->runtime_code_qr;
5064         pRExC_state->runtime_code_qr = NULL;
5065         assert(RExC_utf8 && SvUTF8(qr));
5066     }
5067     else {
5068         int n = 0;
5069         STRLEN s;
5070         char *p, *newpat;
5071         int newlen = plen + 6; /* allow for "qr''x\0" extra chars */
5072         SV *sv, *qr_ref;
5073         dSP;
5074
5075         /* determine how many extra chars we need for ' and \ escaping */
5076         for (s = 0; s < plen; s++) {
5077             if (pat[s] == '\'' || pat[s] == '\\')
5078                 newlen++;
5079         }
5080
5081         Newx(newpat, newlen, char);
5082         p = newpat;
5083         *p++ = 'q'; *p++ = 'r'; *p++ = '\'';
5084
5085         for (s = 0; s < plen; s++) {
5086             if (n < pRExC_state->num_code_blocks
5087                 && s == pRExC_state->code_blocks[n].start)
5088             {
5089                 /* blank out literal code block */
5090                 assert(pat[s] == '(');
5091                 while (s <= pRExC_state->code_blocks[n].end) {
5092                     *p++ = ' ';
5093                     s++;
5094                 }
5095                 s--;
5096                 n++;
5097                 continue;
5098             }
5099             if (pat[s] == '\'' || pat[s] == '\\')
5100                 *p++ = '\\';
5101             *p++ = pat[s];
5102         }
5103         *p++ = '\'';
5104         if (pRExC_state->pm_flags & RXf_PMf_EXTENDED)
5105             *p++ = 'x';
5106         *p++ = '\0';
5107         DEBUG_COMPILE_r({
5108             PerlIO_printf(Perl_debug_log,
5109                 "%sre-parsing pattern for runtime code:%s %s\n",
5110                 PL_colors[4],PL_colors[5],newpat);
5111         });
5112
5113         sv = newSVpvn_flags(newpat, p-newpat-1, RExC_utf8 ? SVf_UTF8 : 0);
5114         Safefree(newpat);
5115
5116         ENTER;
5117         SAVETMPS;
5118         save_re_context();
5119         PUSHSTACKi(PERLSI_REQUIRE);
5120         /* this causes the toker to collapse \\ into \ when parsing
5121          * qr''; normally only q'' does this. It also alters hints
5122          * handling */
5123         PL_reg_state.re_reparsing = TRUE;
5124         eval_sv(sv, G_SCALAR);
5125         SvREFCNT_dec(sv);
5126         SPAGAIN;
5127         qr_ref = POPs;
5128         PUTBACK;
5129         if (SvTRUE(ERRSV))
5130             Perl_croak(aTHX_ "%s", SvPVx_nolen_const(ERRSV));
5131         assert(SvROK(qr_ref));
5132         qr = SvRV(qr_ref);
5133         assert(SvTYPE(qr) == SVt_REGEXP && RX_ENGINE((REGEXP*)qr)->op_comp);
5134         /* the leaving below frees the tmp qr_ref.
5135          * Give qr a life of its own */
5136         SvREFCNT_inc(qr);
5137         POPSTACK;
5138         FREETMPS;
5139         LEAVE;
5140
5141     }
5142
5143     if (!RExC_utf8 && SvUTF8(qr)) {
5144         /* first time through; the pattern got upgraded; save the
5145          * qr for the next time through */
5146         assert(!pRExC_state->runtime_code_qr);
5147         pRExC_state->runtime_code_qr = qr;
5148         return 0;
5149     }
5150
5151
5152     /* extract any code blocks within the returned qr//  */
5153
5154
5155     /* merge the main (r1) and run-time (r2) code blocks into one */
5156     {
5157         RXi_GET_DECL(((struct regexp*)SvANY(qr)), r2);
5158         struct reg_code_block *new_block, *dst;
5159         RExC_state_t * const r1 = pRExC_state; /* convenient alias */
5160         int i1 = 0, i2 = 0;
5161
5162         if (!r2->num_code_blocks) /* we guessed wrong */
5163             return 1;
5164
5165         Newx(new_block,
5166             r1->num_code_blocks + r2->num_code_blocks,
5167             struct reg_code_block);
5168         dst = new_block;
5169
5170         while (    i1 < r1->num_code_blocks
5171                 || i2 < r2->num_code_blocks)
5172         {
5173             struct reg_code_block *src;
5174             bool is_qr = 0;
5175
5176             if (i1 == r1->num_code_blocks) {
5177                 src = &r2->code_blocks[i2++];
5178                 is_qr = 1;
5179             }
5180             else if (i2 == r2->num_code_blocks)
5181                 src = &r1->code_blocks[i1++];
5182             else if (  r1->code_blocks[i1].start
5183                      < r2->code_blocks[i2].start)
5184             {
5185                 src = &r1->code_blocks[i1++];
5186                 assert(src->end < r2->code_blocks[i2].start);
5187             }
5188             else {
5189                 assert(  r1->code_blocks[i1].start
5190                        > r2->code_blocks[i2].start);
5191                 src = &r2->code_blocks[i2++];
5192                 is_qr = 1;
5193                 assert(src->end < r1->code_blocks[i1].start);
5194             }
5195
5196             assert(pat[src->start] == '(');
5197             assert(pat[src->end]   == ')');
5198             dst->start      = src->start;
5199             dst->end        = src->end;
5200             dst->block      = src->block;
5201             dst->src_regex  = is_qr ? (REGEXP*) SvREFCNT_inc( (SV*) qr)
5202                                     : src->src_regex;
5203             dst++;
5204         }
5205         r1->num_code_blocks += r2->num_code_blocks;
5206         Safefree(r1->code_blocks);
5207         r1->code_blocks = new_block;
5208     }
5209
5210     SvREFCNT_dec(qr);
5211     return 1;
5212 }
5213
5214
5215 STATIC bool
5216 S_setup_longest(pTHX_ RExC_state_t *pRExC_state, SV* sv_longest, SV** rx_utf8, SV** rx_substr, I32* rx_end_shift, I32 lookbehind, I32 offset, I32 *minlen, STRLEN longest_length, bool eol, bool meol)
5217 {
5218     /* This is the common code for setting up the floating and fixed length
5219      * string data extracted from Perlre_op_compile() below.  Returns a boolean
5220      * as to whether succeeded or not */
5221
5222     I32 t,ml;
5223
5224     if (! (longest_length
5225            || (eol /* Can't have SEOL and MULTI */
5226                && (! meol || (RExC_flags & RXf_PMf_MULTILINE)))
5227           )
5228             /* See comments for join_exact for why REG_SEEN_EXACTF_SHARP_S */
5229         || (RExC_seen & REG_SEEN_EXACTF_SHARP_S))
5230     {
5231         return FALSE;
5232     }
5233
5234     /* copy the information about the longest from the reg_scan_data
5235         over to the program. */
5236     if (SvUTF8(sv_longest)) {
5237         *rx_utf8 = sv_longest;
5238         *rx_substr = NULL;
5239     } else {
5240         *rx_substr = sv_longest;
5241         *rx_utf8 = NULL;
5242     }
5243     /* end_shift is how many chars that must be matched that
5244         follow this item. We calculate it ahead of time as once the
5245         lookbehind offset is added in we lose the ability to correctly
5246         calculate it.*/
5247     ml = minlen ? *(minlen) : (I32)longest_length;
5248     *rx_end_shift = ml - offset
5249         - longest_length + (SvTAIL(sv_longest) != 0)
5250         + lookbehind;
5251
5252     t = (eol/* Can't have SEOL and MULTI */
5253          && (! meol || (RExC_flags & RXf_PMf_MULTILINE)));
5254     fbm_compile(sv_longest, t ? FBMcf_TAIL : 0);
5255
5256     return TRUE;
5257 }
5258
5259 /*
5260  * Perl_re_op_compile - the perl internal RE engine's function to compile a
5261  * regular expression into internal code.
5262  * The pattern may be passed either as:
5263  *    a list of SVs (patternp plus pat_count)
5264  *    a list of OPs (expr)
5265  * If both are passed, the SV list is used, but the OP list indicates
5266  * which SVs are actually pre-compiled code blocks
5267  *
5268  * The SVs in the list have magic and qr overloading applied to them (and
5269  * the list may be modified in-place with replacement SVs in the latter
5270  * case).
5271  *
5272  * If the pattern hasn't changed from old_re, then old_re will be
5273  * returned.
5274  *
5275  * eng is the current engine. If that engine has an op_comp method, then
5276  * handle directly (i.e. we assume that op_comp was us); otherwise, just
5277  * do the initial concatenation of arguments and pass on to the external
5278  * engine.
5279  *
5280  * If is_bare_re is not null, set it to a boolean indicating whether the
5281  * arg list reduced (after overloading) to a single bare regex which has
5282  * been returned (i.e. /$qr/).
5283  *
5284  * orig_rx_flags contains RXf_* flags. See perlreapi.pod for more details.
5285  *
5286  * pm_flags contains the PMf_* flags, typically based on those from the
5287  * pm_flags field of the related PMOP. Currently we're only interested in
5288  * PMf_HAS_CV, PMf_IS_QR, PMf_USE_RE_EVAL.
5289  *
5290  * We can't allocate space until we know how big the compiled form will be,
5291  * but we can't compile it (and thus know how big it is) until we've got a
5292  * place to put the code.  So we cheat:  we compile it twice, once with code
5293  * generation turned off and size counting turned on, and once "for real".
5294  * This also means that we don't allocate space until we are sure that the
5295  * thing really will compile successfully, and we never have to move the
5296  * code and thus invalidate pointers into it.  (Note that it has to be in
5297  * one piece because free() must be able to free it all.) [NB: not true in perl]
5298  *
5299  * Beware that the optimization-preparation code in here knows about some
5300  * of the structure of the compiled regexp.  [I'll say.]
5301  */
5302
5303 REGEXP *
5304 Perl_re_op_compile(pTHX_ SV ** const patternp, int pat_count,
5305                     OP *expr, const regexp_engine* eng, REGEXP *VOL old_re,
5306                      bool *is_bare_re, U32 orig_rx_flags, U32 pm_flags)
5307 {
5308     dVAR;
5309     REGEXP *rx;
5310     struct regexp *r;
5311     regexp_internal *ri;
5312     STRLEN plen;
5313     char  * VOL exp;
5314     char* xend;
5315     regnode *scan;
5316     I32 flags;
5317     I32 minlen = 0;
5318     U32 rx_flags;
5319     SV * VOL pat;
5320
5321     /* these are all flags - maybe they should be turned
5322      * into a single int with different bit masks */
5323     I32 sawlookahead = 0;
5324     I32 sawplus = 0;
5325     I32 sawopen = 0;
5326     bool used_setjump = FALSE;
5327     regex_charset initial_charset = get_regex_charset(orig_rx_flags);
5328     bool code_is_utf8 = 0;
5329     bool VOL recompile = 0;
5330     bool runtime_code = 0;
5331     U8 jump_ret = 0;
5332     dJMPENV;
5333     scan_data_t data;
5334     RExC_state_t RExC_state;
5335     RExC_state_t * const pRExC_state = &RExC_state;
5336 #ifdef TRIE_STUDY_OPT    
5337     int restudied;
5338     RExC_state_t copyRExC_state;
5339 #endif    
5340     GET_RE_DEBUG_FLAGS_DECL;
5341
5342     PERL_ARGS_ASSERT_RE_OP_COMPILE;
5343
5344     DEBUG_r(if (!PL_colorset) reginitcolors());
5345
5346 #ifndef PERL_IN_XSUB_RE
5347     /* Initialize these here instead of as-needed, as is quick and avoids
5348      * having to test them each time otherwise */
5349     if (! PL_AboveLatin1) {
5350         PL_AboveLatin1 = _new_invlist_C_array(AboveLatin1_invlist);
5351         PL_ASCII = _new_invlist_C_array(ASCII_invlist);
5352         PL_Latin1 = _new_invlist_C_array(Latin1_invlist);
5353
5354         PL_L1PosixAlnum = _new_invlist_C_array(L1PosixAlnum_invlist);
5355         PL_PosixAlnum = _new_invlist_C_array(PosixAlnum_invlist);
5356
5357         PL_L1PosixAlpha = _new_invlist_C_array(L1PosixAlpha_invlist);
5358         PL_PosixAlpha = _new_invlist_C_array(PosixAlpha_invlist);
5359
5360         PL_PosixBlank = _new_invlist_C_array(PosixBlank_invlist);
5361         PL_XPosixBlank = _new_invlist_C_array(XPosixBlank_invlist);
5362
5363         PL_L1Cased = _new_invlist_C_array(L1Cased_invlist);
5364
5365         PL_PosixCntrl = _new_invlist_C_array(PosixCntrl_invlist);
5366         PL_XPosixCntrl = _new_invlist_C_array(XPosixCntrl_invlist);
5367
5368         PL_PosixDigit = _new_invlist_C_array(PosixDigit_invlist);
5369
5370         PL_L1PosixGraph = _new_invlist_C_array(L1PosixGraph_invlist);
5371         PL_PosixGraph = _new_invlist_C_array(PosixGraph_invlist);
5372
5373         PL_L1PosixLower = _new_invlist_C_array(L1PosixLower_invlist);
5374         PL_PosixLower = _new_invlist_C_array(PosixLower_invlist);
5375
5376         PL_L1PosixPrint = _new_invlist_C_array(L1PosixPrint_invlist);
5377         PL_PosixPrint = _new_invlist_C_array(PosixPrint_invlist);
5378
5379         PL_L1PosixPunct = _new_invlist_C_array(L1PosixPunct_invlist);
5380         PL_PosixPunct = _new_invlist_C_array(PosixPunct_invlist);
5381
5382         PL_PerlSpace = _new_invlist_C_array(PerlSpace_invlist);
5383         PL_XPerlSpace = _new_invlist_C_array(XPerlSpace_invlist);
5384
5385         PL_PosixSpace = _new_invlist_C_array(PosixSpace_invlist);
5386         PL_XPosixSpace = _new_invlist_C_array(XPosixSpace_invlist);
5387
5388         PL_L1PosixUpper = _new_invlist_C_array(L1PosixUpper_invlist);
5389         PL_PosixUpper = _new_invlist_C_array(PosixUpper_invlist);
5390
5391         PL_VertSpace = _new_invlist_C_array(VertSpace_invlist);
5392
5393         PL_PosixWord = _new_invlist_C_array(PosixWord_invlist);
5394         PL_L1PosixWord = _new_invlist_C_array(L1PosixWord_invlist);
5395
5396         PL_PosixXDigit = _new_invlist_C_array(PosixXDigit_invlist);
5397         PL_XPosixXDigit = _new_invlist_C_array(XPosixXDigit_invlist);
5398     }
5399 #endif
5400
5401     pRExC_state->code_blocks = NULL;
5402     pRExC_state->num_code_blocks = 0;
5403
5404     if (is_bare_re)
5405         *is_bare_re = FALSE;
5406
5407     if (expr && (expr->op_type == OP_LIST ||
5408                 (expr->op_type == OP_NULL && expr->op_targ == OP_LIST))) {
5409
5410         /* is the source UTF8, and how many code blocks are there? */
5411         OP *o;
5412         int ncode = 0;
5413
5414         for (o = cLISTOPx(expr)->op_first; o; o = o->op_sibling) {
5415             if (o->op_type == OP_CONST && SvUTF8(cSVOPo_sv))
5416                 code_is_utf8 = 1;
5417             else if (o->op_type == OP_NULL && (o->op_flags & OPf_SPECIAL))
5418                 /* count of DO blocks */
5419                 ncode++;
5420         }
5421         if (ncode) {
5422             pRExC_state->num_code_blocks = ncode;
5423             Newx(pRExC_state->code_blocks, ncode, struct reg_code_block);
5424         }
5425     }
5426
5427     if (pat_count) {
5428         /* handle a list of SVs */
5429
5430         SV **svp;
5431
5432         /* apply magic and RE overloading to each arg */
5433         for (svp = patternp; svp < patternp + pat_count; svp++) {
5434             SV *rx = *svp;
5435             SvGETMAGIC(rx);
5436             if (SvROK(rx) && SvAMAGIC(rx)) {
5437                 SV *sv = AMG_CALLunary(rx, regexp_amg);
5438                 if (sv) {
5439                     if (SvROK(sv))
5440                         sv = SvRV(sv);
5441                     if (SvTYPE(sv) != SVt_REGEXP)
5442                         Perl_croak(aTHX_ "Overloaded qr did not return a REGEXP");
5443                     *svp = sv;
5444                 }
5445             }
5446         }
5447
5448         if (pat_count > 1) {
5449             /* concat multiple args and find any code block indexes */
5450
5451             OP *o = NULL;
5452             int n = 0;
5453             bool utf8 = 0;
5454             STRLEN orig_patlen = 0;
5455
5456             if (pRExC_state->num_code_blocks) {
5457                 o = cLISTOPx(expr)->op_first;
5458                 assert(o->op_type == OP_PUSHMARK);
5459                 o = o->op_sibling;
5460             }
5461
5462             pat = newSVpvn("", 0);
5463             SAVEFREESV(pat);
5464
5465             /* determine if the pattern is going to be utf8 (needed
5466              * in advance to align code block indices correctly).
5467              * XXX This could fail to be detected for an arg with
5468              * overloading but not concat overloading; but the main effect
5469              * in this obscure case is to need a 'use re eval' for a
5470              * literal code block */
5471             for (svp = patternp; svp < patternp + pat_count; svp++) {
5472                 if (SvUTF8(*svp))
5473                     utf8 = 1;
5474             }
5475             if (utf8)
5476                 SvUTF8_on(pat);
5477
5478             for (svp = patternp; svp < patternp + pat_count; svp++) {
5479                 SV *sv, *msv = *svp;
5480                 SV *rx;
5481                 bool code = 0;
5482                 if (o) {
5483                     if (o->op_type == OP_NULL && (o->op_flags & OPf_SPECIAL)) {
5484                         assert(n < pRExC_state->num_code_blocks);
5485                         pRExC_state->code_blocks[n].start = SvCUR(pat);
5486                         pRExC_state->code_blocks[n].block = o;
5487                         pRExC_state->code_blocks[n].src_regex = NULL;
5488                         n++;
5489                         code = 1;
5490                         o = o->op_sibling; /* skip CONST */
5491                         assert(o);
5492                     }
5493                     o = o->op_sibling;;
5494                 }
5495
5496                 if ((SvAMAGIC(pat) || SvAMAGIC(msv)) &&
5497                         (sv = amagic_call(pat, msv, concat_amg, AMGf_assign)))
5498                 {
5499                     sv_setsv(pat, sv);
5500                     /* overloading involved: all bets are off over literal
5501                      * code. Pretend we haven't seen it */
5502                     pRExC_state->num_code_blocks -= n;
5503                     n = 0;
5504                     rx = NULL;
5505
5506                 }
5507                 else  {
5508                     while (SvAMAGIC(msv)
5509                             && (sv = AMG_CALLunary(msv, string_amg))
5510                             && sv != msv
5511                             &&  !(   SvROK(msv)
5512                                   && SvROK(sv)
5513                                   && SvRV(msv) == SvRV(sv))
5514                     ) {
5515                         msv = sv;
5516                         SvGETMAGIC(msv);
5517                     }
5518                     if (SvROK(msv) && SvTYPE(SvRV(msv)) == SVt_REGEXP)
5519                         msv = SvRV(msv);
5520                     orig_patlen = SvCUR(pat);
5521                     sv_catsv_nomg(pat, msv);
5522                     rx = msv;
5523                     if (code)
5524                         pRExC_state->code_blocks[n-1].end = SvCUR(pat)-1;
5525                 }
5526
5527                 /* extract any code blocks within any embedded qr//'s */
5528                 if (rx && SvTYPE(rx) == SVt_REGEXP
5529                     && RX_ENGINE((REGEXP*)rx)->op_comp)
5530                 {
5531
5532                     RXi_GET_DECL(((struct regexp*)SvANY(rx)), ri);
5533                     if (ri->num_code_blocks) {
5534                         int i;
5535                         /* the presence of an embedded qr// with code means
5536                          * we should always recompile: the text of the
5537                          * qr// may not have changed, but it may be a
5538                          * different closure than last time */
5539                         recompile = 1;
5540                         Renew(pRExC_state->code_blocks,
5541                             pRExC_state->num_code_blocks + ri->num_code_blocks,
5542                             struct reg_code_block);
5543                         pRExC_state->num_code_blocks += ri->num_code_blocks;
5544                         for (i=0; i < ri->num_code_blocks; i++) {
5545                             struct reg_code_block *src, *dst;
5546                             STRLEN offset =  orig_patlen
5547                                 + ((struct regexp *)SvANY(rx))->pre_prefix;
5548                             assert(n < pRExC_state->num_code_blocks);
5549                             src = &ri->code_blocks[i];
5550                             dst = &pRExC_state->code_blocks[n];
5551                             dst->start      = src->start + offset;
5552                             dst->end        = src->end   + offset;
5553                             dst->block      = src->block;
5554                             dst->src_regex  = (REGEXP*) SvREFCNT_inc( (SV*)
5555                                                     src->src_regex
5556                                                         ? src->src_regex
5557                                                         : (REGEXP*)rx);
5558                             n++;
5559                         }
5560                     }
5561                 }
5562             }
5563             SvSETMAGIC(pat);
5564         }
5565         else {
5566             SV *sv;
5567             pat = *patternp;
5568             while (SvAMAGIC(pat)
5569                     && (sv = AMG_CALLunary(pat, string_amg))
5570                     && sv != pat)
5571             {
5572                 pat = sv;
5573                 SvGETMAGIC(pat);
5574             }
5575         }
5576
5577         /* handle bare regex: foo =~ $re */
5578         {
5579             SV *re = pat;
5580             if (SvROK(re))
5581                 re = SvRV(re);
5582             if (SvTYPE(re) == SVt_REGEXP) {
5583                 if (is_bare_re)
5584                     *is_bare_re = TRUE;
5585                 SvREFCNT_inc(re);
5586                 Safefree(pRExC_state->code_blocks);
5587                 return (REGEXP*)re;
5588             }
5589         }
5590     }
5591     else {
5592         /* not a list of SVs, so must be a list of OPs */
5593         assert(expr);
5594         if (expr->op_type == OP_LIST) {
5595             int i = -1;
5596             bool is_code = 0;
5597             OP *o;
5598
5599             pat = newSVpvn("", 0);
5600             SAVEFREESV(pat);
5601             if (code_is_utf8)
5602                 SvUTF8_on(pat);
5603
5604             /* given a list of CONSTs and DO blocks in expr, append all
5605              * the CONSTs to pat, and record the start and end of each
5606              * code block in code_blocks[] (each DO{} op is followed by an
5607              * OP_CONST containing the corresponding literal '(?{...})
5608              * text)
5609              */
5610             for (o = cLISTOPx(expr)->op_first; o; o = o->op_sibling) {
5611                 if (o->op_type == OP_CONST) {
5612                     sv_catsv(pat, cSVOPo_sv);
5613                     if (is_code) {
5614                         pRExC_state->code_blocks[i].end = SvCUR(pat)-1;
5615                         is_code = 0;
5616                     }
5617                 }
5618                 else if (o->op_type == OP_NULL && (o->op_flags & OPf_SPECIAL)) {
5619                     assert(i+1 < pRExC_state->num_code_blocks);
5620                     pRExC_state->code_blocks[++i].start = SvCUR(pat);
5621                     pRExC_state->code_blocks[i].block = o;
5622                     pRExC_state->code_blocks[i].src_regex = NULL;
5623                     is_code = 1;
5624                 }
5625             }
5626         }
5627         else {
5628             assert(expr->op_type == OP_CONST);
5629             pat = cSVOPx_sv(expr);
5630         }
5631     }
5632
5633     exp = SvPV_nomg(pat, plen);
5634
5635     if (!eng->op_comp) {
5636         if ((SvUTF8(pat) && IN_BYTES)
5637                 || SvGMAGICAL(pat) || SvAMAGIC(pat))
5638         {
5639             /* make a temporary copy; either to convert to bytes,
5640              * or to avoid repeating get-magic / overloaded stringify */
5641             pat = newSVpvn_flags(exp, plen, SVs_TEMP |
5642                                         (IN_BYTES ? 0 : SvUTF8(pat)));
5643         }
5644         Safefree(pRExC_state->code_blocks);
5645         return CALLREGCOMP_ENG(eng, pat, orig_rx_flags);
5646     }
5647
5648     /* ignore the utf8ness if the pattern is 0 length */
5649     RExC_utf8 = RExC_orig_utf8 = (plen == 0 || IN_BYTES) ? 0 : SvUTF8(pat);
5650     RExC_uni_semantics = 0;
5651     RExC_contains_locale = 0;
5652     pRExC_state->runtime_code_qr = NULL;
5653
5654     /****************** LONG JUMP TARGET HERE***********************/
5655     /* Longjmp back to here if have to switch in midstream to utf8 */
5656     if (! RExC_orig_utf8) {
5657         JMPENV_PUSH(jump_ret);
5658         used_setjump = TRUE;
5659     }
5660
5661     if (jump_ret == 0) {    /* First time through */
5662         xend = exp + plen;
5663
5664         DEBUG_COMPILE_r({
5665             SV *dsv= sv_newmortal();
5666             RE_PV_QUOTED_DECL(s, RExC_utf8,
5667                 dsv, exp, plen, 60);
5668             PerlIO_printf(Perl_debug_log, "%sCompiling REx%s %s\n",
5669                            PL_colors[4],PL_colors[5],s);
5670         });
5671     }
5672     else {  /* longjumped back */
5673         U8 *src, *dst;
5674         int n=0;
5675         STRLEN s = 0, d = 0;
5676         bool do_end = 0;
5677
5678         /* If the cause for the longjmp was other than changing to utf8, pop
5679          * our own setjmp, and longjmp to the correct handler */
5680         if (jump_ret != UTF8_LONGJMP) {
5681             JMPENV_POP;
5682             JMPENV_JUMP(jump_ret);
5683         }
5684
5685         GET_RE_DEBUG_FLAGS;
5686
5687         /* It's possible to write a regexp in ascii that represents Unicode
5688         codepoints outside of the byte range, such as via \x{100}. If we
5689         detect such a sequence we have to convert the entire pattern to utf8
5690         and then recompile, as our sizing calculation will have been based
5691         on 1 byte == 1 character, but we will need to use utf8 to encode
5692         at least some part of the pattern, and therefore must convert the whole
5693         thing.
5694         -- dmq */
5695         DEBUG_PARSE_r(PerlIO_printf(Perl_debug_log,
5696             "UTF8 mismatch! Converting to utf8 for resizing and compile\n"));
5697
5698         /* upgrade pattern to UTF8, and if there are code blocks,
5699          * recalculate the indices.
5700          * This is essentially an unrolled Perl_bytes_to_utf8() */
5701
5702         src = (U8*)SvPV_nomg(pat, plen);
5703         Newx(dst, plen * 2 + 1, U8);
5704
5705         while (s < plen) {
5706             const UV uv = NATIVE_TO_ASCII(src[s]);
5707             if (UNI_IS_INVARIANT(uv))
5708                 dst[d]   = (U8)UTF_TO_NATIVE(uv);
5709             else {
5710                 dst[d++] = (U8)UTF8_EIGHT_BIT_HI(uv);
5711                 dst[d]   = (U8)UTF8_EIGHT_BIT_LO(uv);
5712             }
5713             if (n < pRExC_state->num_code_blocks) {
5714                 if (!do_end && pRExC_state->code_blocks[n].start == s) {
5715                     pRExC_state->code_blocks[n].start = d;
5716                     assert(dst[d] == '(');
5717                     do_end = 1;
5718                 }
5719                 else if (do_end && pRExC_state->code_blocks[n].end == s) {
5720                     pRExC_state->code_blocks[n].end = d;
5721                     assert(dst[d] == ')');
5722                     do_end = 0;
5723                     n++;
5724                 }
5725             }
5726             s++;
5727             d++;
5728         }
5729         dst[d] = '\0';
5730         plen = d;
5731         exp = (char*) dst;
5732         xend = exp + plen;
5733         SAVEFREEPV(exp);
5734         RExC_orig_utf8 = RExC_utf8 = 1;
5735     }
5736
5737     /* return old regex if pattern hasn't changed */
5738
5739     if (   old_re
5740         && !recompile
5741         && !!RX_UTF8(old_re) == !!RExC_utf8
5742         && RX_PRECOMP(old_re)
5743         && RX_PRELEN(old_re) == plen
5744         && memEQ(RX_PRECOMP(old_re), exp, plen))
5745     {
5746         /* with runtime code, always recompile */
5747         runtime_code = S_has_runtime_code(aTHX_ pRExC_state, expr, pm_flags,
5748                                             exp, plen);
5749         if (!runtime_code) {
5750             if (used_setjump) {
5751                 JMPENV_POP;
5752             }
5753             Safefree(pRExC_state->code_blocks);
5754             return old_re;
5755         }
5756     }
5757     else if ((pm_flags & PMf_USE_RE_EVAL)
5758                 /* this second condition covers the non-regex literal case,
5759                  * i.e.  $foo =~ '(?{})'. */
5760                 || ( !PL_reg_state.re_reparsing && IN_PERL_COMPILETIME
5761                     && (PL_hints & HINT_RE_EVAL))
5762     )
5763         runtime_code = S_has_runtime_code(aTHX_ pRExC_state, expr, pm_flags,
5764                             exp, plen);
5765
5766 #ifdef TRIE_STUDY_OPT
5767     restudied = 0;
5768 #endif
5769
5770     rx_flags = orig_rx_flags;
5771
5772     if (initial_charset == REGEX_LOCALE_CHARSET) {
5773         RExC_contains_locale = 1;
5774     }
5775     else if (RExC_utf8 && initial_charset == REGEX_DEPENDS_CHARSET) {
5776
5777         /* Set to use unicode semantics if the pattern is in utf8 and has the
5778          * 'depends' charset specified, as it means unicode when utf8  */
5779         set_regex_charset(&rx_flags, REGEX_UNICODE_CHARSET);
5780     }
5781
5782     RExC_precomp = exp;
5783     RExC_flags = rx_flags;
5784     RExC_pm_flags = pm_flags;
5785
5786     if (runtime_code) {
5787         if (PL_tainting && PL_tainted)
5788             Perl_croak(aTHX_ "Eval-group in insecure regular expression");
5789
5790         if (!S_compile_runtime_code(aTHX_ pRExC_state, exp, plen)) {
5791             /* whoops, we have a non-utf8 pattern, whilst run-time code
5792              * got compiled as utf8. Try again with a utf8 pattern */
5793              JMPENV_JUMP(UTF8_LONGJMP);
5794         }
5795     }
5796     assert(!pRExC_state->runtime_code_qr);
5797
5798     RExC_sawback = 0;
5799
5800     RExC_seen = 0;
5801     RExC_in_lookbehind = 0;
5802     RExC_seen_zerolen = *exp == '^' ? -1 : 0;
5803     RExC_extralen = 0;
5804     RExC_override_recoding = 0;
5805
5806     /* First pass: determine size, legality. */
5807     RExC_parse = exp;
5808     RExC_start = exp;
5809     RExC_end = xend;
5810     RExC_naughty = 0;
5811     RExC_npar = 1;
5812     RExC_nestroot = 0;
5813     RExC_size = 0L;
5814     RExC_emit = &PL_regdummy;
5815     RExC_whilem_seen = 0;
5816     RExC_open_parens = NULL;
5817     RExC_close_parens = NULL;
5818     RExC_opend = NULL;
5819     RExC_paren_names = NULL;
5820 #ifdef DEBUGGING
5821     RExC_paren_name_list = NULL;
5822 #endif
5823     RExC_recurse = NULL;
5824     RExC_recurse_count = 0;
5825     pRExC_state->code_index = 0;
5826
5827 #if 0 /* REGC() is (currently) a NOP at the first pass.
5828        * Clever compilers notice this and complain. --jhi */
5829     REGC((U8)REG_MAGIC, (char*)RExC_emit);
5830 #endif
5831     DEBUG_PARSE_r(
5832         PerlIO_printf(Perl_debug_log, "Starting first pass (sizing)\n");
5833         RExC_lastnum=0;
5834         RExC_lastparse=NULL;
5835     );
5836     if (reg(pRExC_state, 0, &flags,1) == NULL) {
5837         RExC_precomp = NULL;
5838         Safefree(pRExC_state->code_blocks);
5839         return(NULL);
5840     }
5841
5842     /* Here, finished first pass.  Get rid of any added setjmp */
5843     if (used_setjump) {
5844         JMPENV_POP;
5845     }
5846
5847     DEBUG_PARSE_r({
5848         PerlIO_printf(Perl_debug_log, 
5849             "Required size %"IVdf" nodes\n"
5850             "Starting second pass (creation)\n", 
5851             (IV)RExC_size);
5852         RExC_lastnum=0; 
5853         RExC_lastparse=NULL; 
5854     });
5855
5856     /* The first pass could have found things that force Unicode semantics */
5857     if ((RExC_utf8 || RExC_uni_semantics)
5858          && get_regex_charset(rx_flags) == REGEX_DEPENDS_CHARSET)
5859     {
5860         set_regex_charset(&rx_flags, REGEX_UNICODE_CHARSET);
5861     }
5862
5863     /* Small enough for pointer-storage convention?
5864        If extralen==0, this means that we will not need long jumps. */
5865     if (RExC_size >= 0x10000L && RExC_extralen)
5866         RExC_size += RExC_extralen;
5867     else
5868         RExC_extralen = 0;
5869     if (RExC_whilem_seen > 15)
5870         RExC_whilem_seen = 15;
5871
5872     /* Allocate space and zero-initialize. Note, the two step process 
5873        of zeroing when in debug mode, thus anything assigned has to 
5874        happen after that */
5875     rx = (REGEXP*) newSV_type(SVt_REGEXP);
5876     r = (struct regexp*)SvANY(rx);
5877     Newxc(ri, sizeof(regexp_internal) + (unsigned)RExC_size * sizeof(regnode),
5878          char, regexp_internal);
5879     if ( r == NULL || ri == NULL )
5880         FAIL("Regexp out of space");
5881 #ifdef DEBUGGING
5882     /* avoid reading uninitialized memory in DEBUGGING code in study_chunk() */
5883     Zero(ri, sizeof(regexp_internal) + (unsigned)RExC_size * sizeof(regnode), char);
5884 #else 
5885     /* bulk initialize base fields with 0. */
5886     Zero(ri, sizeof(regexp_internal), char);        
5887 #endif
5888
5889     /* non-zero initialization begins here */
5890     RXi_SET( r, ri );
5891     r->engine= eng;
5892     r->extflags = rx_flags;
5893     if (pm_flags & PMf_IS_QR) {
5894         ri->code_blocks = pRExC_state->code_blocks;
5895         ri->num_code_blocks = pRExC_state->num_code_blocks;
5896     }
5897     else
5898         SAVEFREEPV(pRExC_state->code_blocks);
5899
5900     {
5901         bool has_p     = ((r->extflags & RXf_PMf_KEEPCOPY) == RXf_PMf_KEEPCOPY);
5902         bool has_charset = (get_regex_charset(r->extflags) != REGEX_DEPENDS_CHARSET);
5903
5904         /* The caret is output if there are any defaults: if not all the STD
5905          * flags are set, or if no character set specifier is needed */
5906         bool has_default =
5907                     (((r->extflags & RXf_PMf_STD_PMMOD) != RXf_PMf_STD_PMMOD)
5908                     || ! has_charset);
5909         bool has_runon = ((RExC_seen & REG_SEEN_RUN_ON_COMMENT)==REG_SEEN_RUN_ON_COMMENT);
5910         U16 reganch = (U16)((r->extflags & RXf_PMf_STD_PMMOD)
5911                             >> RXf_PMf_STD_PMMOD_SHIFT);
5912         const char *fptr = STD_PAT_MODS;        /*"msix"*/
5913         char *p;
5914         /* Allocate for the worst case, which is all the std flags are turned
5915          * on.  If more precision is desired, we could do a population count of
5916          * the flags set.  This could be done with a small lookup table, or by
5917          * shifting, masking and adding, or even, when available, assembly
5918          * language for a machine-language population count.
5919          * We never output a minus, as all those are defaults, so are
5920          * covered by the caret */
5921         const STRLEN wraplen = plen + has_p + has_runon
5922             + has_default       /* If needs a caret */
5923
5924                 /* If needs a character set specifier */
5925             + ((has_charset) ? MAX_CHARSET_NAME_LENGTH : 0)
5926             + (sizeof(STD_PAT_MODS) - 1)
5927             + (sizeof("(?:)") - 1);
5928
5929         p = sv_grow(MUTABLE_SV(rx), wraplen + 1); /* +1 for the ending NUL */
5930         SvPOK_on(rx);
5931         if (RExC_utf8)
5932             SvFLAGS(rx) |= SVf_UTF8;
5933         *p++='('; *p++='?';
5934
5935         /* If a default, cover it using the caret */
5936         if (has_default) {
5937             *p++= DEFAULT_PAT_MOD;
5938         }
5939         if (has_charset) {
5940             STRLEN len;
5941             const char* const name = get_regex_charset_name(r->extflags, &len);
5942             Copy(name, p, len, char);
5943             p += len;
5944         }
5945         if (has_p)
5946             *p++ = KEEPCOPY_PAT_MOD; /*'p'*/
5947         {
5948             char ch;
5949             while((ch = *fptr++)) {
5950                 if(reganch & 1)
5951                     *p++ = ch;
5952                 reganch >>= 1;
5953             }
5954         }
5955
5956         *p++ = ':';
5957         Copy(RExC_precomp, p, plen, char);
5958         assert ((RX_WRAPPED(rx) - p) < 16);
5959         r->pre_prefix = p - RX_WRAPPED(rx);
5960         p += plen;
5961         if (has_runon)
5962             *p++ = '\n';
5963         *p++ = ')';
5964         *p = 0;
5965         SvCUR_set(rx, p - SvPVX_const(rx));
5966     }
5967
5968     r->intflags = 0;
5969     r->nparens = RExC_npar - 1; /* set early to validate backrefs */
5970     
5971     if (RExC_seen & REG_SEEN_RECURSE) {
5972         Newxz(RExC_open_parens, RExC_npar,regnode *);
5973         SAVEFREEPV(RExC_open_parens);
5974         Newxz(RExC_close_parens,RExC_npar,regnode *);
5975         SAVEFREEPV(RExC_close_parens);
5976     }
5977
5978     /* Useful during FAIL. */
5979 #ifdef RE_TRACK_PATTERN_OFFSETS
5980     Newxz(ri->u.offsets, 2*RExC_size+1, U32); /* MJD 20001228 */
5981     DEBUG_OFFSETS_r(PerlIO_printf(Perl_debug_log,
5982                           "%s %"UVuf" bytes for offset annotations.\n",
5983                           ri->u.offsets ? "Got" : "Couldn't get",
5984                           (UV)((2*RExC_size+1) * sizeof(U32))));
5985 #endif
5986     SetProgLen(ri,RExC_size);
5987     RExC_rx_sv = rx;
5988     RExC_rx = r;
5989     RExC_rxi = ri;
5990
5991     /* Second pass: emit code. */
5992     RExC_flags = rx_flags;      /* don't let top level (?i) bleed */
5993     RExC_pm_flags = pm_flags;
5994     RExC_parse = exp;
5995     RExC_end = xend;
5996     RExC_naughty = 0;
5997     RExC_npar = 1;
5998     RExC_emit_start = ri->program;
5999     RExC_emit = ri->program;
6000     RExC_emit_bound = ri->program + RExC_size + 1;
6001     pRExC_state->code_index = 0;
6002
6003     REGC((U8)REG_MAGIC, (char*) RExC_emit++);
6004     if (reg(pRExC_state, 0, &flags,1) == NULL) {
6005         ReREFCNT_dec(rx);   
6006         return(NULL);
6007     }
6008     /* XXXX To minimize changes to RE engine we always allocate
6009        3-units-long substrs field. */
6010     Newx(r->substrs, 1, struct reg_substr_data);
6011     if (RExC_recurse_count) {
6012         Newxz(RExC_recurse,RExC_recurse_count,regnode *);
6013         SAVEFREEPV(RExC_recurse);
6014     }
6015
6016 reStudy:
6017     r->minlen = minlen = sawlookahead = sawplus = sawopen = 0;
6018     Zero(r->substrs, 1, struct reg_substr_data);
6019
6020 #ifdef TRIE_STUDY_OPT
6021     if (!restudied) {
6022         StructCopy(&zero_scan_data, &data, scan_data_t);
6023         copyRExC_state = RExC_state;
6024     } else {
6025         U32 seen=RExC_seen;
6026         DEBUG_OPTIMISE_r(PerlIO_printf(Perl_debug_log,"Restudying\n"));
6027         
6028         RExC_state = copyRExC_state;
6029         if (seen & REG_TOP_LEVEL_BRANCHES) 
6030             RExC_seen |= REG_TOP_LEVEL_BRANCHES;
6031         else
6032             RExC_seen &= ~REG_TOP_LEVEL_BRANCHES;
6033         if (data.last_found) {
6034             SvREFCNT_dec(data.longest_fixed);
6035             SvREFCNT_dec(data.longest_float);
6036             SvREFCNT_dec(data.last_found);
6037         }
6038         StructCopy(&zero_scan_data, &data, scan_data_t);
6039     }
6040 #else
6041     StructCopy(&zero_scan_data, &data, scan_data_t);
6042 #endif    
6043
6044     /* Dig out information for optimizations. */
6045     r->extflags = RExC_flags; /* was pm_op */
6046     /*dmq: removed as part of de-PMOP: pm->op_pmflags = RExC_flags; */
6047  
6048     if (UTF)
6049         SvUTF8_on(rx);  /* Unicode in it? */
6050     ri->regstclass = NULL;
6051     if (RExC_naughty >= 10)     /* Probably an expensive pattern. */
6052         r->intflags |= PREGf_NAUGHTY;
6053     scan = ri->program + 1;             /* First BRANCH. */
6054
6055     /* testing for BRANCH here tells us whether there is "must appear"
6056        data in the pattern. If there is then we can use it for optimisations */
6057     if (!(RExC_seen & REG_TOP_LEVEL_BRANCHES)) { /*  Only one top-level choice. */
6058         I32 fake;
6059         STRLEN longest_float_length, longest_fixed_length;
6060         struct regnode_charclass_class ch_class; /* pointed to by data */
6061         int stclass_flag;
6062         I32 last_close = 0; /* pointed to by data */
6063         regnode *first= scan;
6064         regnode *first_next= regnext(first);
6065         /*
6066          * Skip introductions and multiplicators >= 1
6067          * so that we can extract the 'meat' of the pattern that must 
6068          * match in the large if() sequence following.
6069          * NOTE that EXACT is NOT covered here, as it is normally
6070          * picked up by the optimiser separately. 
6071          *
6072          * This is unfortunate as the optimiser isnt handling lookahead
6073          * properly currently.
6074          *
6075          */
6076         while ((OP(first) == OPEN && (sawopen = 1)) ||
6077                /* An OR of *one* alternative - should not happen now. */
6078             (OP(first) == BRANCH && OP(first_next) != BRANCH) ||
6079             /* for now we can't handle lookbehind IFMATCH*/
6080             (OP(first) == IFMATCH && !first->flags && (sawlookahead = 1)) ||
6081             (OP(first) == PLUS) ||
6082             (OP(first) == MINMOD) ||
6083                /* An {n,m} with n>0 */
6084             (PL_regkind[OP(first)] == CURLY && ARG1(first) > 0) ||
6085             (OP(first) == NOTHING && PL_regkind[OP(first_next)] != END ))
6086         {
6087                 /* 
6088                  * the only op that could be a regnode is PLUS, all the rest
6089                  * will be regnode_1 or regnode_2.
6090                  *
6091                  */
6092                 if (OP(first) == PLUS)
6093                     sawplus = 1;
6094                 else
6095                     first += regarglen[OP(first)];
6096
6097                 first = NEXTOPER(first);
6098                 first_next= regnext(first);
6099         }
6100
6101         /* Starting-point info. */
6102       again:
6103         DEBUG_PEEP("first:",first,0);
6104         /* Ignore EXACT as we deal with it later. */
6105         if (PL_regkind[OP(first)] == EXACT) {
6106             if (OP(first) == EXACT)
6107                 NOOP;   /* Empty, get anchored substr later. */
6108             else
6109                 ri->regstclass = first;
6110         }
6111 #ifdef TRIE_STCLASS
6112         else if (PL_regkind[OP(first)] == TRIE &&
6113                 ((reg_trie_data *)ri->data->data[ ARG(first) ])->minlen>0) 
6114         {
6115             regnode *trie_op;
6116             /* this can happen only on restudy */
6117             if ( OP(first) == TRIE ) {
6118                 struct regnode_1 *trieop = (struct regnode_1 *)
6119                     PerlMemShared_calloc(1, sizeof(struct regnode_1));
6120                 StructCopy(first,trieop,struct regnode_1);
6121                 trie_op=(regnode *)trieop;
6122             } else {
6123                 struct regnode_charclass *trieop = (struct regnode_charclass *)
6124                     PerlMemShared_calloc(1, sizeof(struct regnode_charclass));
6125                 StructCopy(first,trieop,struct regnode_charclass);
6126                 trie_op=(regnode *)trieop;
6127             }
6128             OP(trie_op)+=2;
6129             make_trie_failtable(pRExC_state, (regnode *)first, trie_op, 0);
6130             ri->regstclass = trie_op;
6131         }
6132 #endif
6133         else if (REGNODE_SIMPLE(OP(first)))
6134             ri->regstclass = first;
6135         else if (PL_regkind[OP(first)] == BOUND ||
6136                  PL_regkind[OP(first)] == NBOUND)
6137             ri->regstclass = first;
6138         else if (PL_regkind[OP(first)] == BOL) {
6139             r->extflags |= (OP(first) == MBOL
6140                            ? RXf_ANCH_MBOL
6141                            : (OP(first) == SBOL
6142                               ? RXf_ANCH_SBOL
6143                               : RXf_ANCH_BOL));
6144             first = NEXTOPER(first);
6145             goto again;
6146         }
6147         else if (OP(first) == GPOS) {
6148             r->extflags |= RXf_ANCH_GPOS;
6149             first = NEXTOPER(first);
6150             goto again;
6151         }
6152         else if ((!sawopen || !RExC_sawback) &&
6153             (OP(first) == STAR &&
6154             PL_regkind[OP(NEXTOPER(first))] == REG_ANY) &&
6155             !(r->extflags & RXf_ANCH) && !pRExC_state->num_code_blocks)
6156         {
6157             /* turn .* into ^.* with an implied $*=1 */
6158             const int type =
6159                 (OP(NEXTOPER(first)) == REG_ANY)
6160                     ? RXf_ANCH_MBOL
6161                     : RXf_ANCH_SBOL;
6162             r->extflags |= type;
6163             r->intflags |= PREGf_IMPLICIT;
6164             first = NEXTOPER(first);
6165             goto again;
6166         }
6167         if (sawplus && !sawlookahead && (!sawopen || !RExC_sawback)
6168             && !pRExC_state->num_code_blocks) /* May examine pos and $& */
6169             /* x+ must match at the 1st pos of run of x's */
6170             r->intflags |= PREGf_SKIP;
6171
6172         /* Scan is after the zeroth branch, first is atomic matcher. */
6173 #ifdef TRIE_STUDY_OPT
6174         DEBUG_PARSE_r(
6175             if (!restudied)
6176                 PerlIO_printf(Perl_debug_log, "first at %"IVdf"\n",
6177                               (IV)(first - scan + 1))
6178         );
6179 #else
6180         DEBUG_PARSE_r(
6181             PerlIO_printf(Perl_debug_log, "first at %"IVdf"\n",
6182                 (IV)(first - scan + 1))
6183         );
6184 #endif
6185
6186
6187         /*
6188         * If there's something expensive in the r.e., find the
6189         * longest literal string that must appear and make it the
6190         * regmust.  Resolve ties in favor of later strings, since
6191         * the regstart check works with the beginning of the r.e.
6192         * and avoiding duplication strengthens checking.  Not a
6193         * strong reason, but sufficient in the absence of others.
6194         * [Now we resolve ties in favor of the earlier string if
6195         * it happens that c_offset_min has been invalidated, since the
6196         * earlier string may buy us something the later one won't.]
6197         */
6198
6199         data.longest_fixed = newSVpvs("");
6200         data.longest_float = newSVpvs("");
6201         data.last_found = newSVpvs("");
6202         data.longest = &(data.longest_fixed);
6203         first = scan;
6204         if (!ri->regstclass) {
6205             cl_init(pRExC_state, &ch_class);
6206             data.start_class = &ch_class;
6207             stclass_flag = SCF_DO_STCLASS_AND;
6208         } else                          /* XXXX Check for BOUND? */
6209             stclass_flag = 0;
6210         data.last_closep = &last_close;
6211         
6212         minlen = study_chunk(pRExC_state, &first, &minlen, &fake, scan + RExC_size, /* Up to end */
6213             &data, -1, NULL, NULL,
6214             SCF_DO_SUBSTR | SCF_WHILEM_VISITED_POS | stclass_flag,0);
6215
6216
6217         CHECK_RESTUDY_GOTO;
6218
6219
6220         if ( RExC_npar == 1 && data.longest == &(data.longest_fixed)
6221              && data.last_start_min == 0 && data.last_end > 0
6222              && !RExC_seen_zerolen
6223              && !(RExC_seen & REG_SEEN_VERBARG)
6224              && (!(RExC_seen & REG_SEEN_GPOS) || (r->extflags & RXf_ANCH_GPOS)))
6225             r->extflags |= RXf_CHECK_ALL;
6226         scan_commit(pRExC_state, &data,&minlen,0);
6227         SvREFCNT_dec(data.last_found);
6228
6229         longest_float_length = CHR_SVLEN(data.longest_float);
6230
6231         if (! ((SvCUR(data.longest_fixed)  /* ok to leave SvCUR */
6232                    && data.offset_fixed == data.offset_float_min
6233                    && SvCUR(data.longest_fixed) == SvCUR(data.longest_float)))
6234             && S_setup_longest (aTHX_ pRExC_state,
6235                                     data.longest_float,
6236                                     &(r->float_utf8),
6237                                     &(r->float_substr),
6238                                     &(r->float_end_shift),
6239                                     data.lookbehind_float,
6240                                     data.offset_float_min,
6241                                     data.minlen_float,
6242                                     longest_float_length,
6243                                     data.flags & SF_FL_BEFORE_EOL,
6244                                     data.flags & SF_FL_BEFORE_MEOL))
6245         {
6246             r->float_min_offset = data.offset_float_min - data.lookbehind_float;
6247             r->float_max_offset = data.offset_float_max;
6248             if (data.offset_float_max < I32_MAX) /* Don't offset infinity */
6249                 r->float_max_offset -= data.lookbehind_float;
6250         }
6251         else {
6252             r->float_substr = r->float_utf8 = NULL;
6253             SvREFCNT_dec(data.longest_float);
6254             longest_float_length = 0;
6255         }
6256
6257         longest_fixed_length = CHR_SVLEN(data.longest_fixed);
6258
6259         if (S_setup_longest (aTHX_ pRExC_state,
6260                                 data.longest_fixed,
6261                                 &(r->anchored_utf8),
6262                                 &(r->anchored_substr),
6263                                 &(r->anchored_end_shift),
6264                                 data.lookbehind_fixed,
6265                                 data.offset_fixed,
6266                                 data.minlen_fixed,
6267                                 longest_fixed_length,
6268                                 data.flags & SF_FIX_BEFORE_EOL,
6269                                 data.flags & SF_FIX_BEFORE_MEOL))
6270         {
6271             r->anchored_offset = data.offset_fixed - data.lookbehind_fixed;
6272         }
6273         else {
6274             r->anchored_substr = r->anchored_utf8 = NULL;
6275             SvREFCNT_dec(data.longest_fixed);
6276             longest_fixed_length = 0;
6277         }
6278
6279         if (ri->regstclass
6280             && (OP(ri->regstclass) == REG_ANY || OP(ri->regstclass) == SANY))
6281             ri->regstclass = NULL;
6282
6283         if ((!(r->anchored_substr || r->anchored_utf8) || r->anchored_offset)
6284             && stclass_flag
6285             && !(data.start_class->flags & ANYOF_EOS)
6286             && !cl_is_anything(data.start_class))
6287         {
6288             const U32 n = add_data(pRExC_state, 1, "f");
6289             data.start_class->flags |= ANYOF_IS_SYNTHETIC;
6290
6291             Newx(RExC_rxi->data->data[n], 1,
6292                 struct regnode_charclass_class);
6293             StructCopy(data.start_class,
6294                        (struct regnode_charclass_class*)RExC_rxi->data->data[n],
6295                        struct regnode_charclass_class);
6296             ri->regstclass = (regnode*)RExC_rxi->data->data[n];
6297             r->intflags &= ~PREGf_SKIP; /* Used in find_byclass(). */
6298             DEBUG_COMPILE_r({ SV *sv = sv_newmortal();
6299                       regprop(r, sv, (regnode*)data.start_class);
6300                       PerlIO_printf(Perl_debug_log,
6301                                     "synthetic stclass \"%s\".\n",
6302                                     SvPVX_const(sv));});
6303         }
6304
6305         /* A temporary algorithm prefers floated substr to fixed one to dig more info. */
6306         if (longest_fixed_length > longest_float_length) {
6307             r->check_end_shift = r->anchored_end_shift;
6308             r->check_substr = r->anchored_substr;
6309             r->check_utf8 = r->anchored_utf8;
6310             r->check_offset_min = r->check_offset_max = r->anchored_offset;
6311             if (r->extflags & RXf_ANCH_SINGLE)
6312                 r->extflags |= RXf_NOSCAN;
6313         }
6314         else {
6315             r->check_end_shift = r->float_end_shift;
6316             r->check_substr = r->float_substr;
6317             r->check_utf8 = r->float_utf8;
6318             r->check_offset_min = r->float_min_offset;
6319             r->check_offset_max = r->float_max_offset;
6320         }
6321         /* XXXX Currently intuiting is not compatible with ANCH_GPOS.
6322            This should be changed ASAP!  */
6323         if ((r->check_substr || r->check_utf8) && !(r->extflags & RXf_ANCH_GPOS)) {
6324             r->extflags |= RXf_USE_INTUIT;
6325             if (SvTAIL(r->check_substr ? r->check_substr : r->check_utf8))
6326                 r->extflags |= RXf_INTUIT_TAIL;
6327         }
6328         /* XXX Unneeded? dmq (shouldn't as this is handled elsewhere)
6329         if ( (STRLEN)minlen < longest_float_length )
6330             minlen= longest_float_length;
6331         if ( (STRLEN)minlen < longest_fixed_length )
6332             minlen= longest_fixed_length;     
6333         */
6334     }
6335     else {
6336         /* Several toplevels. Best we can is to set minlen. */
6337         I32 fake;
6338         struct regnode_charclass_class ch_class;
6339         I32 last_close = 0;
6340
6341         DEBUG_PARSE_r(PerlIO_printf(Perl_debug_log, "\nMulti Top Level\n"));
6342
6343         scan = ri->program + 1;
6344         cl_init(pRExC_state, &ch_class);
6345         data.start_class = &ch_class;
6346         data.last_closep = &last_close;
6347
6348         
6349         minlen = study_chunk(pRExC_state, &scan, &minlen, &fake, scan + RExC_size,
6350             &data, -1, NULL, NULL, SCF_DO_STCLASS_AND|SCF_WHILEM_VISITED_POS,0);
6351         
6352         CHECK_RESTUDY_GOTO;
6353
6354         r->check_substr = r->check_utf8 = r->anchored_substr = r->anchored_utf8
6355                 = r->float_substr = r->float_utf8 = NULL;
6356
6357         if (!(data.start_class->flags & ANYOF_EOS)
6358             && !cl_is_anything(data.start_class))
6359         {
6360             const U32 n = add_data(pRExC_state, 1, "f");
6361             data.start_class->flags |= ANYOF_IS_SYNTHETIC;
6362
6363             Newx(RExC_rxi->data->data[n], 1,
6364                 struct regnode_charclass_class);
6365             StructCopy(data.start_class,
6366                        (struct regnode_charclass_class*)RExC_rxi->data->data[n],
6367                        struct regnode_charclass_class);
6368             ri->regstclass = (regnode*)RExC_rxi->data->data[n];
6369             r->intflags &= ~PREGf_SKIP; /* Used in find_byclass(). */
6370             DEBUG_COMPILE_r({ SV* sv = sv_newmortal();
6371                       regprop(r, sv, (regnode*)data.start_class);
6372                       PerlIO_printf(Perl_debug_log,
6373                                     "synthetic stclass \"%s\".\n",
6374                                     SvPVX_const(sv));});
6375         }
6376     }
6377
6378     /* Guard against an embedded (?=) or (?<=) with a longer minlen than
6379        the "real" pattern. */
6380     DEBUG_OPTIMISE_r({
6381         PerlIO_printf(Perl_debug_log,"minlen: %"IVdf" r->minlen:%"IVdf"\n",
6382                       (IV)minlen, (IV)r->minlen);
6383     });
6384     r->minlenret = minlen;
6385     if (r->minlen < minlen) 
6386         r->minlen = minlen;
6387     
6388     if (RExC_seen & REG_SEEN_GPOS)
6389         r->extflags |= RXf_GPOS_SEEN;
6390     if (RExC_seen & REG_SEEN_LOOKBEHIND)
6391         r->extflags |= RXf_LOOKBEHIND_SEEN;
6392     if (pRExC_state->num_code_blocks)
6393         r->extflags |= RXf_EVAL_SEEN;
6394     if (RExC_seen & REG_SEEN_CANY)
6395         r->extflags |= RXf_CANY_SEEN;
6396     if (RExC_seen & REG_SEEN_VERBARG)
6397         r->intflags |= PREGf_VERBARG_SEEN;
6398     if (RExC_seen & REG_SEEN_CUTGROUP)
6399         r->intflags |= PREGf_CUTGROUP_SEEN;
6400     if (pm_flags & PMf_USE_RE_EVAL)
6401         r->intflags |= PREGf_USE_RE_EVAL;
6402     if (RExC_paren_names)
6403         RXp_PAREN_NAMES(r) = MUTABLE_HV(SvREFCNT_inc(RExC_paren_names));
6404     else
6405         RXp_PAREN_NAMES(r) = NULL;
6406
6407 #ifdef STUPID_PATTERN_CHECKS            
6408     if (RX_PRELEN(rx) == 0)
6409         r->extflags |= RXf_NULL;
6410     if (RX_PRELEN(rx) == 3 && memEQ("\\s+", RX_PRECOMP(rx), 3))
6411         r->extflags |= RXf_WHITE;
6412     else if (RX_PRELEN(rx) == 1 && RXp_PRECOMP(rx)[0] == '^')
6413         r->extflags |= RXf_START_ONLY;
6414 #else
6415     {
6416         regnode *first = ri->program + 1;
6417         U8 fop = OP(first);
6418
6419         if (PL_regkind[fop] == NOTHING && OP(NEXTOPER(first)) == END)
6420             r->extflags |= RXf_NULL;
6421         else if (PL_regkind[fop] == BOL && OP(NEXTOPER(first)) == END)
6422             r->extflags |= RXf_START_ONLY;
6423         else if (fop == PLUS && OP(NEXTOPER(first)) == SPACE
6424                              && OP(regnext(first)) == END)
6425             r->extflags |= RXf_WHITE;    
6426     }
6427 #endif
6428 #ifdef DEBUGGING
6429     if (RExC_paren_names) {
6430         ri->name_list_idx = add_data( pRExC_state, 1, "a" );
6431         ri->data->data[ri->name_list_idx] = (void*)SvREFCNT_inc(RExC_paren_name_list);
6432     } else
6433 #endif
6434         ri->name_list_idx = 0;
6435
6436     if (RExC_recurse_count) {
6437         for ( ; RExC_recurse_count ; RExC_recurse_count-- ) {
6438             const regnode *scan = RExC_recurse[RExC_recurse_count-1];
6439             ARG2L_SET( scan, RExC_open_parens[ARG(scan)-1] - scan );
6440         }
6441     }
6442     Newxz(r->offs, RExC_npar, regexp_paren_pair);
6443     /* assume we don't need to swap parens around before we match */
6444
6445     DEBUG_DUMP_r({
6446         PerlIO_printf(Perl_debug_log,"Final program:\n");
6447         regdump(r);
6448     });
6449 #ifdef RE_TRACK_PATTERN_OFFSETS
6450     DEBUG_OFFSETS_r(if (ri->u.offsets) {
6451         const U32 len = ri->u.offsets[0];
6452         U32 i;
6453         GET_RE_DEBUG_FLAGS_DECL;
6454         PerlIO_printf(Perl_debug_log, "Offsets: [%"UVuf"]\n\t", (UV)ri->u.offsets[0]);
6455         for (i = 1; i <= len; i++) {
6456             if (ri->u.offsets[i*2-1] || ri->u.offsets[i*2])
6457                 PerlIO_printf(Perl_debug_log, "%"UVuf":%"UVuf"[%"UVuf"] ",
6458                 (UV)i, (UV)ri->u.offsets[i*2-1], (UV)ri->u.offsets[i*2]);
6459             }
6460         PerlIO_printf(Perl_debug_log, "\n");
6461     });
6462 #endif
6463     return rx;
6464 }
6465
6466
6467 SV*
6468 Perl_reg_named_buff(pTHX_ REGEXP * const rx, SV * const key, SV * const value,
6469                     const U32 flags)
6470 {
6471     PERL_ARGS_ASSERT_REG_NAMED_BUFF;
6472
6473     PERL_UNUSED_ARG(value);
6474
6475     if (flags & RXapif_FETCH) {
6476         return reg_named_buff_fetch(rx, key, flags);
6477     } else if (flags & (RXapif_STORE | RXapif_DELETE | RXapif_CLEAR)) {
6478         Perl_croak_no_modify(aTHX);
6479         return NULL;
6480     } else if (flags & RXapif_EXISTS) {
6481         return reg_named_buff_exists(rx, key, flags)
6482             ? &PL_sv_yes
6483             : &PL_sv_no;
6484     } else if (flags & RXapif_REGNAMES) {
6485         return reg_named_buff_all(rx, flags);
6486     } else if (flags & (RXapif_SCALAR | RXapif_REGNAMES_COUNT)) {
6487         return reg_named_buff_scalar(rx, flags);
6488     } else {
6489         Perl_croak(aTHX_ "panic: Unknown flags %d in named_buff", (int)flags);
6490         return NULL;
6491     }
6492 }
6493
6494 SV*
6495 Perl_reg_named_buff_iter(pTHX_ REGEXP * const rx, const SV * const lastkey,
6496                          const U32 flags)
6497 {
6498     PERL_ARGS_ASSERT_REG_NAMED_BUFF_ITER;
6499     PERL_UNUSED_ARG(lastkey);
6500
6501     if (flags & RXapif_FIRSTKEY)
6502         return reg_named_buff_firstkey(rx, flags);
6503     else if (flags & RXapif_NEXTKEY)
6504         return reg_named_buff_nextkey(rx, flags);
6505     else {
6506         Perl_croak(aTHX_ "panic: Unknown flags %d in named_buff_iter", (int)flags);
6507         return NULL;
6508     }
6509 }
6510
6511 SV*
6512 Perl_reg_named_buff_fetch(pTHX_ REGEXP * const r, SV * const namesv,
6513                           const U32 flags)
6514 {
6515     AV *retarray = NULL;
6516     SV *ret;
6517     struct regexp *const rx = (struct regexp *)SvANY(r);
6518
6519     PERL_ARGS_ASSERT_REG_NAMED_BUFF_FETCH;
6520
6521     if (flags & RXapif_ALL)
6522         retarray=newAV();
6523
6524     if (rx && RXp_PAREN_NAMES(rx)) {
6525         HE *he_str = hv_fetch_ent( RXp_PAREN_NAMES(rx), namesv, 0, 0 );
6526         if (he_str) {
6527             IV i;
6528             SV* sv_dat=HeVAL(he_str);
6529             I32 *nums=(I32*)SvPVX(sv_dat);
6530             for ( i=0; i<SvIVX(sv_dat); i++ ) {
6531                 if ((I32)(rx->nparens) >= nums[i]
6532                     && rx->offs[nums[i]].start != -1
6533                     && rx->offs[nums[i]].end != -1)
6534                 {
6535                     ret = newSVpvs("");
6536                     CALLREG_NUMBUF_FETCH(r,nums[i],ret);
6537                     if (!retarray)
6538                         return ret;
6539                 } else {
6540                     if (retarray)
6541                         ret = newSVsv(&PL_sv_undef);
6542                 }
6543                 if (retarray)
6544                     av_push(retarray, ret);
6545             }
6546             if (retarray)
6547                 return newRV_noinc(MUTABLE_SV(retarray));
6548         }
6549     }
6550     return NULL;
6551 }
6552
6553 bool
6554 Perl_reg_named_buff_exists(pTHX_ REGEXP * const r, SV * const key,
6555                            const U32 flags)
6556 {
6557     struct regexp *const rx = (struct regexp *)SvANY(r);
6558
6559     PERL_ARGS_ASSERT_REG_NAMED_BUFF_EXISTS;
6560
6561     if (rx && RXp_PAREN_NAMES(rx)) {
6562         if (flags & RXapif_ALL) {
6563             return hv_exists_ent(RXp_PAREN_NAMES(rx), key, 0);
6564         } else {
6565             SV *sv = CALLREG_NAMED_BUFF_FETCH(r, key, flags);
6566             if (sv) {
6567                 SvREFCNT_dec(sv);
6568                 return TRUE;
6569             } else {
6570                 return FALSE;
6571             }
6572         }
6573     } else {
6574         return FALSE;
6575     }
6576 }
6577
6578 SV*
6579 Perl_reg_named_buff_firstkey(pTHX_ REGEXP * const r, const U32 flags)
6580 {
6581     struct regexp *const rx = (struct regexp *)SvANY(r);
6582
6583     PERL_ARGS_ASSERT_REG_NAMED_BUFF_FIRSTKEY;
6584
6585     if ( rx && RXp_PAREN_NAMES(rx) ) {
6586         (void)hv_iterinit(RXp_PAREN_NAMES(rx));
6587
6588         return CALLREG_NAMED_BUFF_NEXTKEY(r, NULL, flags & ~RXapif_FIRSTKEY);
6589     } else {
6590         return FALSE;
6591     }
6592 }
6593
6594 SV*
6595 Perl_reg_named_buff_nextkey(pTHX_ REGEXP * const r, const U32 flags)
6596 {
6597     struct regexp *const rx = (struct regexp *)SvANY(r);
6598     GET_RE_DEBUG_FLAGS_DECL;
6599
6600     PERL_ARGS_ASSERT_REG_NAMED_BUFF_NEXTKEY;
6601
6602     if (rx && RXp_PAREN_NAMES(rx)) {
6603         HV *hv = RXp_PAREN_NAMES(rx);
6604         HE *temphe;
6605         while ( (temphe = hv_iternext_flags(hv,0)) ) {
6606             IV i;
6607             IV parno = 0;
6608             SV* sv_dat = HeVAL(temphe);
6609             I32 *nums = (I32*)SvPVX(sv_dat);
6610             for ( i = 0; i < SvIVX(sv_dat); i++ ) {
6611                 if ((I32)(rx->lastparen) >= nums[i] &&
6612                     rx->offs[nums[i]].start != -1 &&
6613                     rx->offs[nums[i]].end != -1)
6614                 {
6615                     parno = nums[i];
6616                     break;
6617                 }
6618             }
6619             if (parno || flags & RXapif_ALL) {
6620                 return newSVhek(HeKEY_hek(temphe));
6621             }
6622         }
6623     }
6624     return NULL;
6625 }
6626
6627 SV*
6628 Perl_reg_named_buff_scalar(pTHX_ REGEXP * const r, const U32 flags)
6629 {
6630     SV *ret;
6631     AV *av;
6632     I32 length;
6633     struct regexp *const rx = (struct regexp *)SvANY(r);
6634
6635     PERL_ARGS_ASSERT_REG_NAMED_BUFF_SCALAR;
6636
6637     if (rx && RXp_PAREN_NAMES(rx)) {
6638         if (flags & (RXapif_ALL | RXapif_REGNAMES_COUNT)) {
6639             return newSViv(HvTOTALKEYS(RXp_PAREN_NAMES(rx)));
6640         } else if (flags & RXapif_ONE) {
6641             ret = CALLREG_NAMED_BUFF_ALL(r, (flags | RXapif_REGNAMES));
6642             av = MUTABLE_AV(SvRV(ret));
6643             length = av_len(av);
6644             SvREFCNT_dec(ret);
6645             return newSViv(length + 1);
6646         } else {
6647             Perl_croak(aTHX_ "panic: Unknown flags %d in named_buff_scalar", (int)flags);
6648             return NULL;
6649         }
6650     }
6651     return &PL_sv_undef;
6652 }
6653
6654 SV*
6655 Perl_reg_named_buff_all(pTHX_ REGEXP * const r, const U32 flags)
6656 {
6657     struct regexp *const rx = (struct regexp *)SvANY(r);
6658     AV *av = newAV();
6659
6660     PERL_ARGS_ASSERT_REG_NAMED_BUFF_ALL;
6661
6662     if (rx && RXp_PAREN_NAMES(rx)) {
6663         HV *hv= RXp_PAREN_NAMES(rx);
6664         HE *temphe;
6665         (void)hv_iterinit(hv);
6666         while ( (temphe = hv_iternext_flags(hv,0)) ) {
6667             IV i;
6668             IV parno = 0;
6669             SV* sv_dat = HeVAL(temphe);
6670             I32 *nums = (I32*)SvPVX(sv_dat);
6671             for ( i = 0; i < SvIVX(sv_dat); i++ ) {
6672                 if ((I32)(rx->lastparen) >= nums[i] &&
6673                     rx->offs[nums[i]].start != -1 &&
6674                     rx->offs[nums[i]].end != -1)
6675                 {
6676                     parno = nums[i];
6677                     break;
6678                 }
6679             }
6680             if (parno || flags & RXapif_ALL) {
6681                 av_push(av, newSVhek(HeKEY_hek(temphe)));
6682             }
6683         }
6684     }
6685
6686     return newRV_noinc(MUTABLE_SV(av));
6687 }
6688
6689 void
6690 Perl_reg_numbered_buff_fetch(pTHX_ REGEXP * const r, const I32 paren,
6691                              SV * const sv)
6692 {
6693     struct regexp *const rx = (struct regexp *)SvANY(r);
6694     char *s = NULL;
6695     I32 i = 0;
6696     I32 s1, t1;
6697     I32 n = paren;
6698
6699     PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_FETCH;
6700         
6701     if ( (    n == RX_BUFF_IDX_CARET_PREMATCH
6702            || n == RX_BUFF_IDX_CARET_FULLMATCH
6703            || n == RX_BUFF_IDX_CARET_POSTMATCH
6704          )
6705          && !(rx->extflags & RXf_PMf_KEEPCOPY)
6706     )
6707         goto ret_undef;
6708
6709     if (!rx->subbeg)
6710         goto ret_undef;
6711
6712     if (n == RX_BUFF_IDX_CARET_FULLMATCH)
6713         /* no need to distinguish between them any more */
6714         n = RX_BUFF_IDX_FULLMATCH;
6715
6716     if ((n == RX_BUFF_IDX_PREMATCH || n == RX_BUFF_IDX_CARET_PREMATCH)
6717         && rx->offs[0].start != -1)
6718     {
6719         /* $`, ${^PREMATCH} */
6720         i = rx->offs[0].start;
6721         s = rx->subbeg;
6722     }
6723     else 
6724     if ((n == RX_BUFF_IDX_POSTMATCH || n == RX_BUFF_IDX_CARET_POSTMATCH)
6725         && rx->offs[0].end != -1)
6726     {
6727         /* $', ${^POSTMATCH} */
6728         s = rx->subbeg - rx->suboffset + rx->offs[0].end;
6729         i = rx->sublen + rx->suboffset - rx->offs[0].end;
6730     } 
6731     else
6732     if ( 0 <= n && n <= (I32)rx->nparens &&
6733         (s1 = rx->offs[n].start) != -1 &&
6734         (t1 = rx->offs[n].end) != -1)
6735     {
6736         /* $&, ${^MATCH},  $1 ... */
6737         i = t1 - s1;
6738         s = rx->subbeg + s1 - rx->suboffset;
6739     } else {
6740         goto ret_undef;
6741     }          
6742
6743     assert(s >= rx->subbeg);
6744     assert(rx->sublen >= (s - rx->subbeg) + i );
6745     if (i >= 0) {
6746         const int oldtainted = PL_tainted;
6747         TAINT_NOT;
6748         sv_setpvn(sv, s, i);
6749         PL_tainted = oldtainted;
6750         if ( (rx->extflags & RXf_CANY_SEEN)
6751             ? (RXp_MATCH_UTF8(rx)
6752                         && (!i || is_utf8_string((U8*)s, i)))
6753             : (RXp_MATCH_UTF8(rx)) )
6754         {
6755             SvUTF8_on(sv);
6756         }
6757         else
6758             SvUTF8_off(sv);
6759         if (PL_tainting) {
6760             if (RXp_MATCH_TAINTED(rx)) {
6761                 if (SvTYPE(sv) >= SVt_PVMG) {
6762                     MAGIC* const mg = SvMAGIC(sv);
6763                     MAGIC* mgt;
6764                     PL_tainted = 1;
6765                     SvMAGIC_set(sv, mg->mg_moremagic);
6766                     SvTAINT(sv);
6767                     if ((mgt = SvMAGIC(sv))) {
6768                         mg->mg_moremagic = mgt;
6769                         SvMAGIC_set(sv, mg);
6770                     }
6771                 } else {
6772                     PL_tainted = 1;
6773                     SvTAINT(sv);
6774                 }
6775             } else 
6776                 SvTAINTED_off(sv);
6777         }
6778     } else {
6779       ret_undef:
6780         sv_setsv(sv,&PL_sv_undef);
6781         return;
6782     }
6783 }
6784
6785 void
6786 Perl_reg_numbered_buff_store(pTHX_ REGEXP * const rx, const I32 paren,
6787                                                          SV const * const value)
6788 {
6789     PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_STORE;
6790
6791     PERL_UNUSED_ARG(rx);
6792     PERL_UNUSED_ARG(paren);
6793     PERL_UNUSED_ARG(value);
6794
6795     if (!PL_localizing)
6796         Perl_croak_no_modify(aTHX);
6797 }
6798
6799 I32
6800 Perl_reg_numbered_buff_length(pTHX_ REGEXP * const r, const SV * const sv,
6801                               const I32 paren)
6802 {
6803     struct regexp *const rx = (struct regexp *)SvANY(r);
6804     I32 i;
6805     I32 s1, t1;
6806
6807     PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_LENGTH;
6808
6809     /* Some of this code was originally in C<Perl_magic_len> in F<mg.c> */
6810     switch (paren) {
6811       case RX_BUFF_IDX_CARET_PREMATCH: /* ${^PREMATCH} */
6812          if (!(rx->extflags & RXf_PMf_KEEPCOPY))
6813             goto warn_undef;
6814         /*FALLTHROUGH*/
6815
6816       case RX_BUFF_IDX_PREMATCH:       /* $` */
6817         if (rx->offs[0].start != -1) {
6818                         i = rx->offs[0].start;
6819                         if (i > 0) {
6820                                 s1 = 0;
6821                                 t1 = i;
6822                                 goto getlen;
6823                         }
6824             }
6825         return 0;
6826
6827       case RX_BUFF_IDX_CARET_POSTMATCH: /* ${^POSTMATCH} */
6828          if (!(rx->extflags & RXf_PMf_KEEPCOPY))
6829             goto warn_undef;
6830       case RX_BUFF_IDX_POSTMATCH:       /* $' */
6831             if (rx->offs[0].end != -1) {
6832                         i = rx->sublen - rx->offs[0].end;
6833                         if (i > 0) {
6834                                 s1 = rx->offs[0].end;
6835                                 t1 = rx->sublen;
6836                                 goto getlen;
6837                         }
6838             }
6839         return 0;
6840
6841       case RX_BUFF_IDX_CARET_FULLMATCH: /* ${^MATCH} */
6842          if (!(rx->extflags & RXf_PMf_KEEPCOPY))
6843             goto warn_undef;
6844         /*FALLTHROUGH*/
6845
6846       /* $& / ${^MATCH}, $1, $2, ... */
6847       default:
6848             if (paren <= (I32)rx->nparens &&
6849             (s1 = rx->offs[paren].start) != -1 &&
6850             (t1 = rx->offs[paren].end) != -1)
6851             {
6852             i = t1 - s1;
6853             goto getlen;
6854         } else {
6855           warn_undef:
6856             if (ckWARN(WARN_UNINITIALIZED))
6857                 report_uninit((const SV *)sv);
6858             return 0;
6859         }
6860     }
6861   getlen:
6862     if (i > 0 && RXp_MATCH_UTF8(rx)) {
6863         const char * const s = rx->subbeg - rx->suboffset + s1;
6864         const U8 *ep;
6865         STRLEN el;
6866
6867         i = t1 - s1;
6868         if (is_utf8_string_loclen((U8*)s, i, &ep, &el))
6869                         i = el;
6870     }
6871     return i;
6872 }
6873
6874 SV*
6875 Perl_reg_qr_package(pTHX_ REGEXP * const rx)
6876 {
6877     PERL_ARGS_ASSERT_REG_QR_PACKAGE;
6878         PERL_UNUSED_ARG(rx);
6879         if (0)
6880             return NULL;
6881         else
6882             return newSVpvs("Regexp");
6883 }
6884
6885 /* Scans the name of a named buffer from the pattern.
6886  * If flags is REG_RSN_RETURN_NULL returns null.
6887  * If flags is REG_RSN_RETURN_NAME returns an SV* containing the name
6888  * If flags is REG_RSN_RETURN_DATA returns the data SV* corresponding
6889  * to the parsed name as looked up in the RExC_paren_names hash.
6890  * If there is an error throws a vFAIL().. type exception.
6891  */
6892
6893 #define REG_RSN_RETURN_NULL    0
6894 #define REG_RSN_RETURN_NAME    1
6895 #define REG_RSN_RETURN_DATA    2
6896
6897 STATIC SV*
6898 S_reg_scan_name(pTHX_ RExC_state_t *pRExC_state, U32 flags)
6899 {
6900     char *name_start = RExC_parse;
6901
6902     PERL_ARGS_ASSERT_REG_SCAN_NAME;
6903
6904     if (isIDFIRST_lazy_if(RExC_parse, UTF)) {
6905          /* skip IDFIRST by using do...while */
6906         if (UTF)
6907             do {
6908                 RExC_parse += UTF8SKIP(RExC_parse);
6909             } while (isALNUM_utf8((U8*)RExC_parse));
6910         else
6911             do {
6912                 RExC_parse++;
6913             } while (isALNUM(*RExC_parse));
6914     } else {
6915         RExC_parse++; /* so the <- from the vFAIL is after the offending character */
6916         vFAIL("Group name must start with a non-digit word character");
6917     }
6918     if ( flags ) {
6919         SV* sv_name
6920             = newSVpvn_flags(name_start, (int)(RExC_parse - name_start),
6921                              SVs_TEMP | (UTF ? SVf_UTF8 : 0));
6922         if ( flags == REG_RSN_RETURN_NAME)
6923             return sv_name;
6924         else if (flags==REG_RSN_RETURN_DATA) {
6925             HE *he_str = NULL;
6926             SV *sv_dat = NULL;
6927             if ( ! sv_name )      /* should not happen*/
6928                 Perl_croak(aTHX_ "panic: no svname in reg_scan_name");
6929             if (RExC_paren_names)
6930                 he_str = hv_fetch_ent( RExC_paren_names, sv_name, 0, 0 );
6931             if ( he_str )
6932                 sv_dat = HeVAL(he_str);
6933             if ( ! sv_dat )
6934                 vFAIL("Reference to nonexistent named group");
6935             return sv_dat;
6936         }
6937         else {
6938             Perl_croak(aTHX_ "panic: bad flag %lx in reg_scan_name",
6939                        (unsigned long) flags);
6940         }
6941         assert(0); /* NOT REACHED */
6942     }
6943     return NULL;
6944 }
6945
6946 #define DEBUG_PARSE_MSG(funcname)     DEBUG_PARSE_r({           \
6947     int rem=(int)(RExC_end - RExC_parse);                       \
6948     int cut;                                                    \
6949     int num;                                                    \
6950     int iscut=0;                                                \
6951     if (rem>10) {                                               \
6952         rem=10;                                                 \
6953         iscut=1;                                                \
6954     }                                                           \
6955     cut=10-rem;                                                 \
6956     if (RExC_lastparse!=RExC_parse)                             \
6957         PerlIO_printf(Perl_debug_log," >%.*s%-*s",              \
6958             rem, RExC_parse,                                    \
6959             cut + 4,                                            \
6960             iscut ? "..." : "<"                                 \
6961         );                                                      \
6962     else                                                        \
6963         PerlIO_printf(Perl_debug_log,"%16s","");                \
6964                                                                 \
6965     if (SIZE_ONLY)                                              \
6966        num = RExC_size + 1;                                     \
6967     else                                                        \
6968        num=REG_NODE_NUM(RExC_emit);                             \
6969     if (RExC_lastnum!=num)                                      \
6970        PerlIO_printf(Perl_debug_log,"|%4d",num);                \
6971     else                                                        \
6972        PerlIO_printf(Perl_debug_log,"|%4s","");                 \
6973     PerlIO_printf(Perl_debug_log,"|%*s%-4s",                    \
6974         (int)((depth*2)), "",                                   \
6975         (funcname)                                              \
6976     );                                                          \
6977     RExC_lastnum=num;                                           \
6978     RExC_lastparse=RExC_parse;                                  \
6979 })
6980
6981
6982
6983 #define DEBUG_PARSE(funcname)     DEBUG_PARSE_r({           \
6984     DEBUG_PARSE_MSG((funcname));                            \
6985     PerlIO_printf(Perl_debug_log,"%4s","\n");               \
6986 })
6987 #define DEBUG_PARSE_FMT(funcname,fmt,args)     DEBUG_PARSE_r({           \
6988     DEBUG_PARSE_MSG((funcname));                            \
6989     PerlIO_printf(Perl_debug_log,fmt "\n",args);               \
6990 })
6991
6992 /* This section of code defines the inversion list object and its methods.  The
6993  * interfaces are highly subject to change, so as much as possible is static to
6994  * this file.  An inversion list is here implemented as a malloc'd C UV array
6995  * with some added info that is placed as UVs at the beginning in a header
6996  * portion.  An inversion list for Unicode is an array of code points, sorted
6997  * by ordinal number.  The zeroth element is the first code point in the list.
6998  * The 1th element is the first element beyond that not in the list.  In other
6999  * words, the first range is
7000  *  invlist[0]..(invlist[1]-1)
7001  * The other ranges follow.  Thus every element whose index is divisible by two
7002  * marks the beginning of a range that is in the list, and every element not
7003  * divisible by two marks the beginning of a range not in the list.  A single
7004  * element inversion list that contains the single code point N generally
7005  * consists of two elements
7006  *  invlist[0] == N
7007  *  invlist[1] == N+1
7008  * (The exception is when N is the highest representable value on the
7009  * machine, in which case the list containing just it would be a single
7010  * element, itself.  By extension, if the last range in the list extends to
7011  * infinity, then the first element of that range will be in the inversion list
7012  * at a position that is divisible by two, and is the final element in the
7013  * list.)
7014  * Taking the complement (inverting) an inversion list is quite simple, if the
7015  * first element is 0, remove it; otherwise add a 0 element at the beginning.
7016  * This implementation reserves an element at the beginning of each inversion
7017  * list to contain 0 when the list contains 0, and contains 1 otherwise.  The
7018  * actual beginning of the list is either that element if 0, or the next one if
7019  * 1.
7020  *
7021  * More about inversion lists can be found in "Unicode Demystified"
7022  * Chapter 13 by Richard Gillam, published by Addison-Wesley.
7023  * More will be coming when functionality is added later.
7024  *
7025  * The inversion list data structure is currently implemented as an SV pointing
7026  * to an array of UVs that the SV thinks are bytes.  This allows us to have an
7027  * array of UV whose memory management is automatically handled by the existing
7028  * facilities for SV's.
7029  *
7030  * Some of the methods should always be private to the implementation, and some
7031  * should eventually be made public */
7032
7033 /* The header definitions are in F<inline_invlist.c> */
7034
7035 #define TO_INTERNAL_SIZE(x) ((x + HEADER_LENGTH) * sizeof(UV))
7036 #define FROM_INTERNAL_SIZE(x) ((x / sizeof(UV)) - HEADER_LENGTH)
7037
7038 #define INVLIST_INITIAL_LEN 10
7039
7040 PERL_STATIC_INLINE UV*
7041 S__invlist_array_init(pTHX_ SV* const invlist, const bool will_have_0)
7042 {
7043     /* Returns a pointer to the first element in the inversion list's array.
7044      * This is called upon initialization of an inversion list.  Where the
7045      * array begins depends on whether the list has the code point U+0000
7046      * in it or not.  The other parameter tells it whether the code that
7047      * follows this call is about to put a 0 in the inversion list or not.
7048      * The first element is either the element with 0, if 0, or the next one,
7049      * if 1 */
7050
7051     UV* zero = get_invlist_zero_addr(invlist);
7052
7053     PERL_ARGS_ASSERT__INVLIST_ARRAY_INIT;
7054
7055     /* Must be empty */
7056     assert(! *_get_invlist_len_addr(invlist));
7057
7058     /* 1^1 = 0; 1^0 = 1 */
7059     *zero = 1 ^ will_have_0;
7060     return zero + *zero;
7061 }
7062
7063 PERL_STATIC_INLINE UV*
7064 S_invlist_array(pTHX_ SV* const invlist)
7065 {
7066     /* Returns the pointer to the inversion list's array.  Every time the
7067      * length changes, this needs to be called in case malloc or realloc moved
7068      * it */
7069
7070     PERL_ARGS_ASSERT_INVLIST_ARRAY;
7071
7072     /* Must not be empty.  If these fail, you probably didn't check for <len>
7073      * being non-zero before trying to get the array */
7074     assert(*_get_invlist_len_addr(invlist));
7075     assert(*get_invlist_zero_addr(invlist) == 0
7076            || *get_invlist_zero_addr(invlist) == 1);
7077
7078     /* The array begins either at the element reserved for zero if the
7079      * list contains 0 (that element will be set to 0), or otherwise the next
7080      * element (in which case the reserved element will be set to 1). */
7081     return (UV *) (get_invlist_zero_addr(invlist)
7082                    + *get_invlist_zero_addr(invlist));
7083 }
7084
7085 PERL_STATIC_INLINE void
7086 S_invlist_set_len(pTHX_ SV* const invlist, const UV len)
7087 {
7088     /* Sets the current number of elements stored in the inversion list */
7089
7090     PERL_ARGS_ASSERT_INVLIST_SET_LEN;
7091
7092     *_get_invlist_len_addr(invlist) = len;
7093
7094     assert(len <= SvLEN(invlist));
7095
7096     SvCUR_set(invlist, TO_INTERNAL_SIZE(len));
7097     /* If the list contains U+0000, that element is part of the header,
7098      * and should not be counted as part of the array.  It will contain
7099      * 0 in that case, and 1 otherwise.  So we could flop 0=>1, 1=>0 and
7100      * subtract:
7101      *  SvCUR_set(invlist,
7102      *            TO_INTERNAL_SIZE(len
7103      *                             - (*get_invlist_zero_addr(inv_list) ^ 1)));
7104      * But, this is only valid if len is not 0.  The consequences of not doing
7105      * this is that the memory allocation code may think that 1 more UV is
7106      * being used than actually is, and so might do an unnecessary grow.  That
7107      * seems worth not bothering to make this the precise amount.
7108      *
7109      * Note that when inverting, SvCUR shouldn't change */
7110 }
7111
7112 PERL_STATIC_INLINE IV*
7113 S_get_invlist_previous_index_addr(pTHX_ SV* invlist)
7114 {
7115     /* Return the address of the UV that is reserved to hold the cached index
7116      * */
7117
7118     PERL_ARGS_ASSERT_GET_INVLIST_PREVIOUS_INDEX_ADDR;
7119
7120     return (IV *) (SvPVX(invlist) + (INVLIST_PREVIOUS_INDEX_OFFSET * sizeof (UV)));
7121 }
7122
7123 PERL_STATIC_INLINE IV
7124 S_invlist_previous_index(pTHX_ SV* const invlist)
7125 {
7126     /* Returns cached index of previous search */
7127
7128     PERL_ARGS_ASSERT_INVLIST_PREVIOUS_INDEX;
7129
7130     return *get_invlist_previous_index_addr(invlist);
7131 }
7132
7133 PERL_STATIC_INLINE void
7134 S_invlist_set_previous_index(pTHX_ SV* const invlist, const IV index)
7135 {
7136     /* Caches <index> for later retrieval */
7137
7138     PERL_ARGS_ASSERT_INVLIST_SET_PREVIOUS_INDEX;
7139
7140     assert(index == 0 || index < (int) _invlist_len(invlist));
7141
7142     *get_invlist_previous_index_addr(invlist) = index;
7143 }
7144
7145 PERL_STATIC_INLINE UV
7146 S_invlist_max(pTHX_ SV* const invlist)
7147 {
7148     /* Returns the maximum number of elements storable in the inversion list's
7149      * array, without having to realloc() */
7150
7151     PERL_ARGS_ASSERT_INVLIST_MAX;
7152
7153     return FROM_INTERNAL_SIZE(SvLEN(invlist));
7154 }
7155
7156 PERL_STATIC_INLINE UV*
7157 S_get_invlist_zero_addr(pTHX_ SV* invlist)
7158 {
7159     /* Return the address of the UV that is reserved to hold 0 if the inversion
7160      * list contains 0.  This has to be the last element of the heading, as the
7161      * list proper starts with either it if 0, or the next element if not.
7162      * (But we force it to contain either 0 or 1) */
7163
7164     PERL_ARGS_ASSERT_GET_INVLIST_ZERO_ADDR;
7165
7166     return (UV *) (SvPVX(invlist) + (INVLIST_ZERO_OFFSET * sizeof (UV)));
7167 }
7168
7169 #ifndef PERL_IN_XSUB_RE
7170 SV*
7171 Perl__new_invlist(pTHX_ IV initial_size)
7172 {
7173
7174     /* Return a pointer to a newly constructed inversion list, with enough
7175      * space to store 'initial_size' elements.  If that number is negative, a
7176      * system default is used instead */
7177
7178     SV* new_list;
7179
7180     if (initial_size < 0) {
7181         initial_size = INVLIST_INITIAL_LEN;
7182     }
7183
7184     /* Allocate the initial space */
7185     new_list = newSV(TO_INTERNAL_SIZE(initial_size));
7186     invlist_set_len(new_list, 0);
7187
7188     /* Force iterinit() to be used to get iteration to work */
7189     *get_invlist_iter_addr(new_list) = UV_MAX;
7190
7191     /* This should force a segfault if a method doesn't initialize this
7192      * properly */
7193     *get_invlist_zero_addr(new_list) = UV_MAX;
7194
7195     *get_invlist_previous_index_addr(new_list) = 0;
7196     *get_invlist_version_id_addr(new_list) = INVLIST_VERSION_ID;
7197 #if HEADER_LENGTH != 5
7198 #   error Need to regenerate VERSION_ID by running perl -E 'say int(rand 2**31-1)', and then changing the #if to the new length
7199 #endif
7200
7201     return new_list;
7202 }
7203 #endif
7204
7205 STATIC SV*
7206 S__new_invlist_C_array(pTHX_ UV* list)
7207 {
7208     /* Return a pointer to a newly constructed inversion list, initialized to
7209      * point to <list>, which has to be in the exact correct inversion list
7210      * form, including internal fields.  Thus this is a dangerous routine that
7211      * should not be used in the wrong hands */
7212
7213     SV* invlist = newSV_type(SVt_PV);
7214
7215     PERL_ARGS_ASSERT__NEW_INVLIST_C_ARRAY;
7216
7217     SvPV_set(invlist, (char *) list);
7218     SvLEN_set(invlist, 0);  /* Means we own the contents, and the system
7219                                shouldn't touch it */
7220     SvCUR_set(invlist, TO_INTERNAL_SIZE(_invlist_len(invlist)));
7221
7222     if (*get_invlist_version_id_addr(invlist) != INVLIST_VERSION_ID) {
7223         Perl_croak(aTHX_ "panic: Incorrect version for previously generated inversion list");
7224     }
7225
7226     return invlist;
7227 }
7228
7229 STATIC void
7230 S_invlist_extend(pTHX_ SV* const invlist, const UV new_max)
7231 {
7232     /* Grow the maximum size of an inversion list */
7233
7234     PERL_ARGS_ASSERT_INVLIST_EXTEND;
7235
7236     SvGROW((SV *)invlist, TO_INTERNAL_SIZE(new_max));
7237 }
7238
7239 PERL_STATIC_INLINE void
7240 S_invlist_trim(pTHX_ SV* const invlist)
7241 {
7242     PERL_ARGS_ASSERT_INVLIST_TRIM;
7243
7244     /* Change the length of the inversion list to how many entries it currently
7245      * has */
7246
7247     SvPV_shrink_to_cur((SV *) invlist);
7248 }
7249
7250 #define _invlist_union_complement_2nd(a, b, output) _invlist_union_maybe_complement_2nd(a, b, TRUE, output)
7251
7252 STATIC void
7253 S__append_range_to_invlist(pTHX_ SV* const invlist, const UV start, const UV end)
7254 {
7255    /* Subject to change or removal.  Append the range from 'start' to 'end' at
7256     * the end of the inversion list.  The range must be above any existing
7257     * ones. */
7258
7259     UV* array;
7260     UV max = invlist_max(invlist);
7261     UV len = _invlist_len(invlist);
7262
7263     PERL_ARGS_ASSERT__APPEND_RANGE_TO_INVLIST;
7264
7265     if (len == 0) { /* Empty lists must be initialized */
7266         array = _invlist_array_init(invlist, start == 0);
7267     }
7268     else {
7269         /* Here, the existing list is non-empty. The current max entry in the
7270          * list is generally the first value not in the set, except when the
7271          * set extends to the end of permissible values, in which case it is
7272          * the first entry in that final set, and so this call is an attempt to
7273          * append out-of-order */
7274
7275         UV final_element = len - 1;
7276         array = invlist_array(invlist);
7277         if (array[final_element] > start
7278             || ELEMENT_RANGE_MATCHES_INVLIST(final_element))
7279         {
7280             Perl_croak(aTHX_ "panic: attempting to append to an inversion list, but wasn't at the end of the list, final=%"UVuf", start=%"UVuf", match=%c",
7281                        array[final_element], start,
7282                        ELEMENT_RANGE_MATCHES_INVLIST(final_element) ? 't' : 'f');
7283         }
7284
7285         /* Here, it is a legal append.  If the new range begins with the first
7286          * value not in the set, it is extending the set, so the new first
7287          * value not in the set is one greater than the newly extended range.
7288          * */
7289         if (array[final_element] == start) {
7290             if (end != UV_MAX) {
7291                 array[final_element] = end + 1;
7292             }
7293             else {
7294                 /* But if the end is the maximum representable on the machine,
7295                  * just let the range that this would extend to have no end */
7296                 invlist_set_len(invlist, len - 1);
7297             }
7298             return;
7299         }
7300     }
7301
7302     /* Here the new range doesn't extend any existing set.  Add it */
7303
7304     len += 2;   /* Includes an element each for the start and end of range */
7305
7306     /* If overflows the existing space, extend, which may cause the array to be
7307      * moved */
7308     if (max < len) {
7309         invlist_extend(invlist, len);
7310         invlist_set_len(invlist, len);  /* Have to set len here to avoid assert
7311                                            failure in invlist_array() */
7312         array = invlist_array(invlist);
7313     }
7314     else {
7315         invlist_set_len(invlist, len);
7316     }
7317
7318     /* The next item on the list starts the range, the one after that is
7319      * one past the new range.  */
7320     array[len - 2] = start;
7321     if (end != UV_MAX) {
7322         array[len - 1] = end + 1;
7323     }
7324     else {
7325         /* But if the end is the maximum representable on the machine, just let
7326          * the range have no end */
7327         invlist_set_len(invlist, len - 1);
7328     }
7329 }
7330
7331 #ifndef PERL_IN_XSUB_RE
7332
7333 IV
7334 Perl__invlist_search(pTHX_ SV* const invlist, const UV cp)
7335 {
7336     /* Searches the inversion list for the entry that contains the input code
7337      * point <cp>.  If <cp> is not in the list, -1 is returned.  Otherwise, the
7338      * return value is the index into the list's array of the range that
7339      * contains <cp> */
7340
7341     IV low = 0;
7342     IV mid;
7343     IV high = _invlist_len(invlist);
7344     const IV highest_element = high - 1;
7345     const UV* array;
7346
7347     PERL_ARGS_ASSERT__INVLIST_SEARCH;
7348
7349     /* If list is empty, return failure. */
7350     if (high == 0) {
7351         return -1;
7352     }
7353
7354     /* If the code point is before the first element, return failure.  (We
7355      * can't combine this with the test above, because we can't get the array
7356      * unless we know the list is non-empty) */
7357     array = invlist_array(invlist);
7358
7359     mid = invlist_previous_index(invlist);
7360     assert(mid >=0 && mid <= highest_element);
7361
7362     /* <mid> contains the cache of the result of the previous call to this
7363      * function (0 the first time).  See if this call is for the same result,
7364      * or if it is for mid-1.  This is under the theory that calls to this
7365      * function will often be for related code points that are near each other.
7366      * And benchmarks show that caching gives better results.  We also test
7367      * here if the code point is within the bounds of the list.  These tests
7368      * replace others that would have had to be made anyway to make sure that
7369      * the array bounds were not exceeded, and give us extra information at the
7370      * same time */
7371     if (cp >= array[mid]) {
7372         if (cp >= array[highest_element]) {
7373             return highest_element;
7374         }
7375
7376         /* Here, array[mid] <= cp < array[highest_element].  This means that
7377          * the final element is not the answer, so can exclude it; it also
7378          * means that <mid> is not the final element, so can refer to 'mid + 1'
7379          * safely */
7380         if (cp < array[mid + 1]) {
7381             return mid;
7382         }
7383         high--;
7384         low = mid + 1;
7385     }
7386     else { /* cp < aray[mid] */
7387         if (cp < array[0]) { /* Fail if outside the array */
7388             return -1;
7389         }
7390         high = mid;
7391         if (cp >= array[mid - 1]) {
7392             goto found_entry;
7393         }
7394     }
7395
7396     /* Binary search.  What we are looking for is <i> such that
7397      *  array[i] <= cp < array[i+1]
7398      * The loop below converges on the i+1.  Note that there may not be an
7399      * (i+1)th element in the array, and things work nonetheless */
7400     while (low < high) {
7401         mid = (low + high) / 2;
7402         assert(mid <= highest_element);
7403         if (array[mid] <= cp) { /* cp >= array[mid] */
7404             low = mid + 1;
7405
7406             /* We could do this extra test to exit the loop early.
7407             if (cp < array[low]) {
7408                 return mid;
7409             }
7410             */
7411         }
7412         else { /* cp < array[mid] */
7413             high = mid;
7414         }
7415     }
7416
7417   found_entry:
7418     high--;
7419     invlist_set_previous_index(invlist, high);
7420     return high;
7421 }
7422
7423 void
7424 Perl__invlist_populate_swatch(pTHX_ SV* const invlist, const UV start, const UV end, U8* swatch)
7425 {
7426     /* populates a swatch of a swash the same way swatch_get() does in utf8.c,
7427      * but is used when the swash has an inversion list.  This makes this much
7428      * faster, as it uses a binary search instead of a linear one.  This is
7429      * intimately tied to that function, and perhaps should be in utf8.c,
7430      * except it is intimately tied to inversion lists as well.  It assumes
7431      * that <swatch> is all 0's on input */
7432
7433     UV current = start;
7434     const IV len = _invlist_len(invlist);
7435     IV i;
7436     const UV * array;
7437
7438     PERL_ARGS_ASSERT__INVLIST_POPULATE_SWATCH;
7439
7440     if (len == 0) { /* Empty inversion list */
7441         return;
7442     }
7443
7444     array = invlist_array(invlist);
7445
7446     /* Find which element it is */
7447     i = _invlist_search(invlist, start);
7448
7449     /* We populate from <start> to <end> */
7450     while (current < end) {
7451         UV upper;
7452
7453         /* The inversion list gives the results for every possible code point
7454          * after the first one in the list.  Only those ranges whose index is
7455          * even are ones that the inversion list matches.  For the odd ones,
7456          * and if the initial code point is not in the list, we have to skip
7457          * forward to the next element */
7458         if (i == -1 || ! ELEMENT_RANGE_MATCHES_INVLIST(i)) {
7459             i++;
7460             if (i >= len) { /* Finished if beyond the end of the array */
7461                 return;
7462             }
7463             current = array[i];
7464             if (current >= end) {   /* Finished if beyond the end of what we
7465                                        are populating */
7466                 if (LIKELY(end < UV_MAX)) {
7467                     return;
7468                 }
7469
7470                 /* We get here when the upper bound is the maximum
7471                  * representable on the machine, and we are looking for just
7472                  * that code point.  Have to special case it */
7473                 i = len;
7474                 goto join_end_of_list;
7475             }
7476         }
7477         assert(current >= start);
7478
7479         /* The current range ends one below the next one, except don't go past
7480          * <end> */
7481         i++;
7482         upper = (i < len && array[i] < end) ? array[i] : end;
7483
7484         /* Here we are in a range that matches.  Populate a bit in the 3-bit U8
7485          * for each code point in it */
7486         for (; current < upper; current++) {
7487             const STRLEN offset = (STRLEN)(current - start);
7488             swatch[offset >> 3] |= 1 << (offset & 7);
7489         }
7490
7491     join_end_of_list:
7492
7493         /* Quit if at the end of the list */
7494         if (i >= len) {
7495
7496             /* But first, have to deal with the highest possible code point on
7497              * the platform.  The previous code assumes that <end> is one
7498              * beyond where we want to populate, but that is impossible at the
7499              * platform's infinity, so have to handle it specially */
7500             if (UNLIKELY(end == UV_MAX && ELEMENT_RANGE_MATCHES_INVLIST(len-1)))
7501             {
7502                 const STRLEN offset = (STRLEN)(end - start);
7503                 swatch[offset >> 3] |= 1 << (offset & 7);
7504             }
7505             return;
7506         }
7507
7508         /* Advance to the next range, which will be for code points not in the
7509          * inversion list */
7510         current = array[i];
7511     }
7512
7513     return;
7514 }
7515
7516 void
7517 Perl__invlist_union_maybe_complement_2nd(pTHX_ SV* const a, SV* const b, bool complement_b, SV** output)
7518 {
7519     /* Take the union of two inversion lists and point <output> to it.  *output
7520      * should be defined upon input, and if it points to one of the two lists,
7521      * the reference count to that list will be decremented.  The first list,
7522      * <a>, may be NULL, in which case a copy of the second list is returned.
7523      * If <complement_b> is TRUE, the union is taken of the complement
7524      * (inversion) of <b> instead of b itself.
7525      *
7526      * The basis for this comes from "Unicode Demystified" Chapter 13 by
7527      * Richard Gillam, published by Addison-Wesley, and explained at some
7528      * length there.  The preface says to incorporate its examples into your
7529      * code at your own risk.
7530      *
7531      * The algorithm is like a merge sort.
7532      *
7533      * XXX A potential performance improvement is to keep track as we go along
7534      * if only one of the inputs contributes to the result, meaning the other
7535      * is a subset of that one.  In that case, we can skip the final copy and
7536      * return the larger of the input lists, but then outside code might need
7537      * to keep track of whether to free the input list or not */
7538
7539     UV* array_a;    /* a's array */
7540     UV* array_b;
7541     UV len_a;       /* length of a's array */
7542     UV len_b;
7543
7544     SV* u;                      /* the resulting union */
7545     UV* array_u;
7546     UV len_u;
7547
7548     UV i_a = 0;             /* current index into a's array */
7549     UV i_b = 0;
7550     UV i_u = 0;
7551
7552     /* running count, as explained in the algorithm source book; items are
7553      * stopped accumulating and are output when the count changes to/from 0.
7554      * The count is incremented when we start a range that's in the set, and
7555      * decremented when we start a range that's not in the set.  So its range
7556      * is 0 to 2.  Only when the count is zero is something not in the set.
7557      */
7558     UV count = 0;
7559
7560     PERL_ARGS_ASSERT__INVLIST_UNION_MAYBE_COMPLEMENT_2ND;
7561     assert(a != b);
7562
7563     /* If either one is empty, the union is the other one */
7564     if (a == NULL || ((len_a = _invlist_len(a)) == 0)) {
7565         if (*output == a) {
7566             if (a != NULL) {
7567                 SvREFCNT_dec(a);
7568             }
7569         }
7570         if (*output != b) {
7571             *output = invlist_clone(b);
7572             if (complement_b) {
7573                 _invlist_invert(*output);
7574             }
7575         } /* else *output already = b; */
7576         return;
7577     }
7578     else if ((len_b = _invlist_len(b)) == 0) {
7579         if (*output == b) {
7580             SvREFCNT_dec(b);
7581         }
7582
7583         /* The complement of an empty list is a list that has everything in it,
7584          * so the union with <a> includes everything too */
7585         if (complement_b) {
7586             if (a == *output) {
7587                 SvREFCNT_dec(a);
7588             }
7589             *output = _new_invlist(1);
7590             _append_range_to_invlist(*output, 0, UV_MAX);
7591         }
7592         else if (*output != a) {
7593             *output = invlist_clone(a);
7594         }
7595         /* else *output already = a; */
7596         return;
7597     }
7598
7599     /* Here both lists exist and are non-empty */
7600     array_a = invlist_array(a);
7601     array_b = invlist_array(b);
7602
7603     /* If are to take the union of 'a' with the complement of b, set it
7604      * up so are looking at b's complement. */
7605     if (complement_b) {
7606
7607         /* To complement, we invert: if the first element is 0, remove it.  To
7608          * do this, we just pretend the array starts one later, and clear the
7609          * flag as we don't have to do anything else later */
7610         if (array_b[0] == 0) {
7611             array_b++;
7612             len_b--;
7613             complement_b = FALSE;
7614         }
7615         else {
7616
7617             /* But if the first element is not zero, we unshift a 0 before the
7618              * array.  The data structure reserves a space for that 0 (which
7619              * should be a '1' right now), so physical shifting is unneeded,
7620              * but temporarily change that element to 0.  Before exiting the
7621              * routine, we must restore the element to '1' */
7622             array_b--;
7623             len_b++;
7624             array_b[0] = 0;
7625         }
7626     }
7627
7628     /* Size the union for the worst case: that the sets are completely
7629      * disjoint */
7630     u = _new_invlist(len_a + len_b);
7631
7632     /* Will contain U+0000 if either component does */
7633     array_u = _invlist_array_init(u, (len_a > 0 && array_a[0] == 0)
7634                                       || (len_b > 0 && array_b[0] == 0));
7635
7636     /* Go through each list item by item, stopping when exhausted one of
7637      * them */
7638     while (i_a < len_a && i_b < len_b) {
7639         UV cp;      /* The element to potentially add to the union's array */
7640         bool cp_in_set;   /* is it in the the input list's set or not */
7641
7642         /* We need to take one or the other of the two inputs for the union.
7643          * Since we are merging two sorted lists, we take the smaller of the
7644          * next items.  In case of a tie, we take the one that is in its set
7645          * first.  If we took one not in the set first, it would decrement the
7646          * count, possibly to 0 which would cause it to be output as ending the
7647          * range, and the next time through we would take the same number, and
7648          * output it again as beginning the next range.  By doing it the
7649          * opposite way, there is no possibility that the count will be
7650          * momentarily decremented to 0, and thus the two adjoining ranges will
7651          * be seamlessly merged.  (In a tie and both are in the set or both not
7652          * in the set, it doesn't matter which we take first.) */
7653         if (array_a[i_a] < array_b[i_b]
7654             || (array_a[i_a] == array_b[i_b]
7655                 && ELEMENT_RANGE_MATCHES_INVLIST(i_a)))
7656         {
7657             cp_in_set = ELEMENT_RANGE_MATCHES_INVLIST(i_a);
7658             cp= array_a[i_a++];
7659         }
7660         else {
7661             cp_in_set = ELEMENT_RANGE_MATCHES_INVLIST(i_b);
7662             cp= array_b[i_b++];
7663         }
7664
7665         /* Here, have chosen which of the two inputs to look at.  Only output
7666          * if the running count changes to/from 0, which marks the
7667          * beginning/end of a range in that's in the set */
7668         if (cp_in_set) {
7669             if (count == 0) {
7670                 array_u[i_u++] = cp;
7671             }
7672             count++;
7673         }
7674         else {
7675             count--;
7676             if (count == 0) {
7677                 array_u[i_u++] = cp;
7678             }
7679         }
7680     }
7681
7682     /* Here, we are finished going through at least one of the lists, which
7683      * means there is something remaining in at most one.  We check if the list
7684      * that hasn't been exhausted is positioned such that we are in the middle
7685      * of a range in its set or not.  (i_a and i_b point to the element beyond
7686      * the one we care about.) If in the set, we decrement 'count'; if 0, there
7687      * is potentially more to output.
7688      * There are four cases:
7689      *  1) Both weren't in their sets, count is 0, and remains 0.  What's left
7690      *     in the union is entirely from the non-exhausted set.
7691      *  2) Both were in their sets, count is 2.  Nothing further should
7692      *     be output, as everything that remains will be in the exhausted
7693      *     list's set, hence in the union; decrementing to 1 but not 0 insures
7694      *     that
7695      *  3) the exhausted was in its set, non-exhausted isn't, count is 1.
7696      *     Nothing further should be output because the union includes
7697      *     everything from the exhausted set.  Not decrementing ensures that.
7698      *  4) the exhausted wasn't in its set, non-exhausted is, count is 1;
7699      *     decrementing to 0 insures that we look at the remainder of the
7700      *     non-exhausted set */
7701     if ((i_a != len_a && PREV_RANGE_MATCHES_INVLIST(i_a))
7702         || (i_b != len_b && PREV_RANGE_MATCHES_INVLIST(i_b)))
7703     {
7704         count--;
7705     }
7706
7707     /* The final length is what we've output so far, plus what else is about to
7708      * be output.  (If 'count' is non-zero, then the input list we exhausted
7709      * has everything remaining up to the machine's limit in its set, and hence
7710      * in the union, so there will be no further output. */
7711     len_u = i_u;
7712     if (count == 0) {
7713         /* At most one of the subexpressions will be non-zero */
7714         len_u += (len_a - i_a) + (len_b - i_b);
7715     }
7716
7717     /* Set result to final length, which can change the pointer to array_u, so
7718      * re-find it */
7719     if (len_u != _invlist_len(u)) {
7720         invlist_set_len(u, len_u);
7721         invlist_trim(u);
7722         array_u = invlist_array(u);
7723     }
7724
7725     /* When 'count' is 0, the list that was exhausted (if one was shorter than
7726      * the other) ended with everything above it not in its set.  That means
7727      * that the remaining part of the union is precisely the same as the
7728      * non-exhausted list, so can just copy it unchanged.  (If both list were
7729      * exhausted at the same time, then the operations below will be both 0.)
7730      */
7731     if (count == 0) {
7732         IV copy_count; /* At most one will have a non-zero copy count */
7733         if ((copy_count = len_a - i_a) > 0) {
7734             Copy(array_a + i_a, array_u + i_u, copy_count, UV);
7735         }
7736         else if ((copy_count = len_b - i_b) > 0) {
7737             Copy(array_b + i_b, array_u + i_u, copy_count, UV);
7738         }
7739     }
7740
7741     /*  We may be removing a reference to one of the inputs */
7742     if (a == *output || b == *output) {
7743         SvREFCNT_dec(*output);
7744     }
7745
7746     /* If we've changed b, restore it */
7747     if (complement_b) {
7748         array_b[0] = 1;
7749     }
7750
7751     *output = u;
7752     return;
7753 }
7754
7755 void
7756 Perl__invlist_intersection_maybe_complement_2nd(pTHX_ SV* const a, SV* const b, bool complement_b, SV** i)
7757 {
7758     /* Take the intersection of two inversion lists and point <i> to it.  *i
7759      * should be defined upon input, and if it points to one of the two lists,
7760      * the reference count to that list will be decremented.
7761      * If <complement_b> is TRUE, the result will be the intersection of <a>
7762      * and the complement (or inversion) of <b> instead of <b> directly.
7763      *
7764      * The basis for this comes from "Unicode Demystified" Chapter 13 by
7765      * Richard Gillam, published by Addison-Wesley, and explained at some
7766      * length there.  The preface says to incorporate its examples into your
7767      * code at your own risk.  In fact, it had bugs
7768      *
7769      * The algorithm is like a merge sort, and is essentially the same as the
7770      * union above
7771      */
7772
7773     UV* array_a;                /* a's array */
7774     UV* array_b;
7775     UV len_a;   /* length of a's array */
7776     UV len_b;
7777
7778     SV* r;                   /* the resulting intersection */
7779     UV* array_r;
7780     UV len_r;
7781
7782     UV i_a = 0;             /* current index into a's array */
7783     UV i_b = 0;
7784     UV i_r = 0;
7785
7786     /* running count, as explained in the algorithm source book; items are
7787      * stopped accumulating and are output when the count changes to/from 2.
7788      * The count is incremented when we start a range that's in the set, and
7789      * decremented when we start a range that's not in the set.  So its range
7790      * is 0 to 2.  Only when the count is 2 is something in the intersection.
7791      */
7792     UV count = 0;
7793
7794     PERL_ARGS_ASSERT__INVLIST_INTERSECTION_MAYBE_COMPLEMENT_2ND;
7795     assert(a != b);
7796
7797     /* Special case if either one is empty */
7798     len_a = _invlist_len(a);
7799     if ((len_a == 0) || ((len_b = _invlist_len(b)) == 0)) {
7800
7801         if (len_a != 0 && complement_b) {
7802
7803             /* Here, 'a' is not empty, therefore from the above 'if', 'b' must
7804              * be empty.  Here, also we are using 'b's complement, which hence
7805              * must be every possible code point.  Thus the intersection is
7806              * simply 'a'. */
7807             if (*i != a) {
7808                 *i = invlist_clone(a);
7809
7810                 if (*i == b) {
7811                     SvREFCNT_dec(b);
7812                 }
7813             }
7814             /* else *i is already 'a' */
7815             return;
7816         }
7817
7818         /* Here, 'a' or 'b' is empty and not using the complement of 'b'.  The
7819          * intersection must be empty */
7820         if (*i == a) {
7821             SvREFCNT_dec(a);
7822         }
7823         else if (*i == b) {
7824             SvREFCNT_dec(b);
7825         }
7826         *i = _new_invlist(0);
7827         return;
7828     }
7829
7830     /* Here both lists exist and are non-empty */
7831     array_a = invlist_array(a);
7832     array_b = invlist_array(b);
7833
7834     /* If are to take the intersection of 'a' with the complement of b, set it
7835      * up so are looking at b's complement. */
7836     if (complement_b) {
7837
7838         /* To complement, we invert: if the first element is 0, remove it.  To
7839          * do this, we just pretend the array starts one later, and clear the
7840          * flag as we don't have to do anything else later */
7841         if (array_b[0] == 0) {
7842             array_b++;
7843             len_b--;
7844             complement_b = FALSE;
7845         }
7846         else {
7847
7848             /* But if the first element is not zero, we unshift a 0 before the
7849              * array.  The data structure reserves a space for that 0 (which
7850              * should be a '1' right now), so physical shifting is unneeded,
7851              * but temporarily change that element to 0.  Before exiting the
7852              * routine, we must restore the element to '1' */
7853             array_b--;
7854             len_b++;
7855             array_b[0] = 0;
7856         }
7857     }
7858
7859     /* Size the intersection for the worst case: that the intersection ends up
7860      * fragmenting everything to be completely disjoint */
7861     r= _new_invlist(len_a + len_b);
7862
7863     /* Will contain U+0000 iff both components do */
7864     array_r = _invlist_array_init(r, len_a > 0 && array_a[0] == 0
7865                                      && len_b > 0 && array_b[0] == 0);
7866
7867     /* Go through each list item by item, stopping when exhausted one of
7868      * them */
7869     while (i_a < len_a && i_b < len_b) {
7870         UV cp;      /* The element to potentially add to the intersection's
7871                        array */
7872         bool cp_in_set; /* Is it in the input list's set or not */
7873
7874         /* We need to take one or the other of the two inputs for the
7875          * intersection.  Since we are merging two sorted lists, we take the
7876          * smaller of the next items.  In case of a tie, we take the one that
7877          * is not in its set first (a difference from the union algorithm).  If
7878          * we took one in the set first, it would increment the count, possibly
7879          * to 2 which would cause it to be output as starting a range in the
7880          * intersection, and the next time through we would take that same
7881          * number, and output it again as ending the set.  By doing it the
7882          * opposite of this, there is no possibility that the count will be
7883          * momentarily incremented to 2.  (In a tie and both are in the set or
7884          * both not in the set, it doesn't matter which we take first.) */
7885         if (array_a[i_a] < array_b[i_b]
7886             || (array_a[i_a] == array_b[i_b]
7887                 && ! ELEMENT_RANGE_MATCHES_INVLIST(i_a)))
7888         {
7889             cp_in_set = ELEMENT_RANGE_MATCHES_INVLIST(i_a);
7890             cp= array_a[i_a++];
7891         }
7892         else {
7893             cp_in_set = ELEMENT_RANGE_MATCHES_INVLIST(i_b);
7894             cp= array_b[i_b++];
7895         }
7896
7897         /* Here, have chosen which of the two inputs to look at.  Only output
7898          * if the running count changes to/from 2, which marks the
7899          * beginning/end of a range that's in the intersection */
7900         if (cp_in_set) {
7901             count++;
7902             if (count == 2) {
7903                 array_r[i_r++] = cp;
7904             }
7905         }
7906         else {
7907             if (count == 2) {
7908                 array_r[i_r++] = cp;
7909             }
7910             count--;
7911         }
7912     }
7913
7914     /* Here, we are finished going through at least one of the lists, which
7915      * means there is something remaining in at most one.  We check if the list
7916      * that has been exhausted is positioned such that we are in the middle
7917      * of a range in its set or not.  (i_a and i_b point to elements 1 beyond
7918      * the ones we care about.)  There are four cases:
7919      *  1) Both weren't in their sets, count is 0, and remains 0.  There's
7920      *     nothing left in the intersection.
7921      *  2) Both were in their sets, count is 2 and perhaps is incremented to
7922      *     above 2.  What should be output is exactly that which is in the
7923      *     non-exhausted set, as everything it has is also in the intersection
7924      *     set, and everything it doesn't have can't be in the intersection
7925      *  3) The exhausted was in its set, non-exhausted isn't, count is 1, and
7926      *     gets incremented to 2.  Like the previous case, the intersection is
7927      *     everything that remains in the non-exhausted set.
7928      *  4) the exhausted wasn't in its set, non-exhausted is, count is 1, and
7929      *     remains 1.  And the intersection has nothing more. */
7930     if ((i_a == len_a && PREV_RANGE_MATCHES_INVLIST(i_a))
7931         || (i_b == len_b && PREV_RANGE_MATCHES_INVLIST(i_b)))
7932     {
7933         count++;
7934     }
7935
7936     /* The final length is what we've output so far plus what else is in the
7937      * intersection.  At most one of the subexpressions below will be non-zero */
7938     len_r = i_r;
7939     if (count >= 2) {
7940         len_r += (len_a - i_a) + (len_b - i_b);
7941     }
7942
7943     /* Set result to final length, which can change the pointer to array_r, so
7944      * re-find it */
7945     if (len_r != _invlist_len(r)) {
7946         invlist_set_len(r, len_r);
7947         invlist_trim(r);
7948         array_r = invlist_array(r);
7949     }
7950
7951     /* Finish outputting any remaining */
7952     if (count >= 2) { /* At most one will have a non-zero copy count */
7953         IV copy_count;
7954         if ((copy_count = len_a - i_a) > 0) {
7955             Copy(array_a + i_a, array_r + i_r, copy_count, UV);
7956         }
7957         else if ((copy_count = len_b - i_b) > 0) {
7958             Copy(array_b + i_b, array_r + i_r, copy_count, UV);
7959         }
7960     }
7961
7962     /*  We may be removing a reference to one of the inputs */
7963     if (a == *i || b == *i) {
7964         SvREFCNT_dec(*i);
7965     }
7966
7967     /* If we've changed b, restore it */
7968     if (complement_b) {
7969         array_b[0] = 1;
7970     }
7971
7972     *i = r;
7973     return;
7974 }
7975
7976 SV*
7977 Perl__add_range_to_invlist(pTHX_ SV* invlist, const UV start, const UV end)
7978 {
7979     /* Add the range from 'start' to 'end' inclusive to the inversion list's
7980      * set.  A pointer to the inversion list is returned.  This may actually be
7981      * a new list, in which case the passed in one has been destroyed.  The
7982      * passed in inversion list can be NULL, in which case a new one is created
7983      * with just the one range in it */
7984
7985     SV* range_invlist;
7986     UV len;
7987
7988     if (invlist == NULL) {
7989         invlist = _new_invlist(2);
7990         len = 0;
7991     }
7992     else {
7993         len = _invlist_len(invlist);
7994     }
7995
7996     /* If comes after the final entry, can just append it to the end */
7997     if (len == 0
7998         || start >= invlist_array(invlist)
7999                                     [_invlist_len(invlist) - 1])
8000     {
8001         _append_range_to_invlist(invlist, start, end);
8002         return invlist;
8003     }
8004
8005     /* Here, can't just append things, create and return a new inversion list
8006      * which is the union of this range and the existing inversion list */
8007     range_invlist = _new_invlist(2);
8008     _append_range_to_invlist(range_invlist, start, end);
8009
8010     _invlist_union(invlist, range_invlist, &invlist);
8011
8012     /* The temporary can be freed */
8013     SvREFCNT_dec(range_invlist);
8014
8015     return invlist;
8016 }
8017
8018 #endif
8019
8020 PERL_STATIC_INLINE SV*
8021 S_add_cp_to_invlist(pTHX_ SV* invlist, const UV cp) {
8022     return _add_range_to_invlist(invlist, cp, cp);
8023 }
8024
8025 #ifndef PERL_IN_XSUB_RE
8026 void
8027 Perl__invlist_invert(pTHX_ SV* const invlist)
8028 {
8029     /* Complement the input inversion list.  This adds a 0 if the list didn't
8030      * have a zero; removes it otherwise.  As described above, the data
8031      * structure is set up so that this is very efficient */
8032
8033     UV* len_pos = _get_invlist_len_addr(invlist);
8034
8035     PERL_ARGS_ASSERT__INVLIST_INVERT;
8036
8037     /* The inverse of matching nothing is matching everything */
8038     if (*len_pos == 0) {
8039         _append_range_to_invlist(invlist, 0, UV_MAX);
8040         return;
8041     }
8042
8043     /* The exclusive or complents 0 to 1; and 1 to 0.  If the result is 1, the
8044      * zero element was a 0, so it is being removed, so the length decrements
8045      * by 1; and vice-versa.  SvCUR is unaffected */
8046     if (*get_invlist_zero_addr(invlist) ^= 1) {
8047         (*len_pos)--;
8048     }
8049     else {
8050         (*len_pos)++;
8051     }
8052 }
8053
8054 void
8055 Perl__invlist_invert_prop(pTHX_ SV* const invlist)
8056 {
8057     /* Complement the input inversion list (which must be a Unicode property,
8058      * all of which don't match above the Unicode maximum code point.)  And
8059      * Perl has chosen to not have the inversion match above that either.  This
8060      * adds a 0x110000 if the list didn't end with it, and removes it if it did
8061      */
8062
8063     UV len;
8064     UV* array;
8065
8066     PERL_ARGS_ASSERT__INVLIST_INVERT_PROP;
8067
8068     _invlist_invert(invlist);
8069
8070     len = _invlist_len(invlist);
8071
8072     if (len != 0) { /* If empty do nothing */
8073         array = invlist_array(invlist);
8074         if (array[len - 1] != PERL_UNICODE_MAX + 1) {
8075             /* Add 0x110000.  First, grow if necessary */
8076             len++;
8077             if (invlist_max(invlist) < len) {
8078                 invlist_extend(invlist, len);
8079                 array = invlist_array(invlist);
8080             }
8081             invlist_set_len(invlist, len);
8082             array[len - 1] = PERL_UNICODE_MAX + 1;
8083         }
8084         else {  /* Remove the 0x110000 */
8085             invlist_set_len(invlist, len - 1);
8086         }
8087     }
8088
8089     return;
8090 }
8091 #endif
8092
8093 PERL_STATIC_INLINE SV*
8094 S_invlist_clone(pTHX_ SV* const invlist)
8095 {
8096
8097     /* Return a new inversion list that is a copy of the input one, which is
8098      * unchanged */
8099
8100     /* Need to allocate extra space to accommodate Perl's addition of a
8101      * trailing NUL to SvPV's, since it thinks they are always strings */
8102     SV* new_invlist = _new_invlist(_invlist_len(invlist) + 1);
8103     STRLEN length = SvCUR(invlist);
8104
8105     PERL_ARGS_ASSERT_INVLIST_CLONE;
8106
8107     SvCUR_set(new_invlist, length); /* This isn't done automatically */
8108     Copy(SvPVX(invlist), SvPVX(new_invlist), length, char);
8109
8110     return new_invlist;
8111 }
8112
8113 PERL_STATIC_INLINE UV*
8114 S_get_invlist_iter_addr(pTHX_ SV* invlist)
8115 {
8116     /* Return the address of the UV that contains the current iteration
8117      * position */
8118
8119     PERL_ARGS_ASSERT_GET_INVLIST_ITER_ADDR;
8120
8121     return (UV *) (SvPVX(invlist) + (INVLIST_ITER_OFFSET * sizeof (UV)));
8122 }
8123
8124 PERL_STATIC_INLINE UV*
8125 S_get_invlist_version_id_addr(pTHX_ SV* invlist)
8126 {
8127     /* Return the address of the UV that contains the version id. */
8128
8129     PERL_ARGS_ASSERT_GET_INVLIST_VERSION_ID_ADDR;
8130
8131     return (UV *) (SvPVX(invlist) + (INVLIST_VERSION_ID_OFFSET * sizeof (UV)));
8132 }
8133
8134 PERL_STATIC_INLINE void
8135 S_invlist_iterinit(pTHX_ SV* invlist)   /* Initialize iterator for invlist */
8136 {
8137     PERL_ARGS_ASSERT_INVLIST_ITERINIT;
8138
8139     *get_invlist_iter_addr(invlist) = 0;
8140 }
8141
8142 STATIC bool
8143 S_invlist_iternext(pTHX_ SV* invlist, UV* start, UV* end)
8144 {
8145     /* An C<invlist_iterinit> call on <invlist> must be used to set this up.
8146      * This call sets in <*start> and <*end>, the next range in <invlist>.
8147      * Returns <TRUE> if successful and the next call will return the next
8148      * range; <FALSE> if was already at the end of the list.  If the latter,
8149      * <*start> and <*end> are unchanged, and the next call to this function
8150      * will start over at the beginning of the list */
8151
8152     UV* pos = get_invlist_iter_addr(invlist);
8153     UV len = _invlist_len(invlist);
8154     UV *array;
8155
8156     PERL_ARGS_ASSERT_INVLIST_ITERNEXT;
8157
8158     if (*pos >= len) {
8159         *pos = UV_MAX;  /* Force iternit() to be required next time */
8160         return FALSE;
8161     }
8162
8163     array = invlist_array(invlist);
8164
8165     *start = array[(*pos)++];
8166
8167     if (*pos >= len) {
8168         *end = UV_MAX;
8169     }
8170     else {
8171         *end = array[(*pos)++] - 1;
8172     }
8173
8174     return TRUE;
8175 }
8176
8177 PERL_STATIC_INLINE UV
8178 S_invlist_highest(pTHX_ SV* const invlist)
8179 {
8180     /* Returns the highest code point that matches an inversion list.  This API
8181      * has an ambiguity, as it returns 0 under either the highest is actually
8182      * 0, or if the list is empty.  If this distinction matters to you, check
8183      * for emptiness before calling this function */
8184
8185     UV len = _invlist_len(invlist);
8186     UV *array;
8187
8188     PERL_ARGS_ASSERT_INVLIST_HIGHEST;
8189
8190     if (len == 0) {
8191         return 0;
8192     }
8193
8194     array = invlist_array(invlist);
8195
8196     /* The last element in the array in the inversion list always starts a
8197      * range that goes to infinity.  That range may be for code points that are
8198      * matched in the inversion list, or it may be for ones that aren't
8199      * matched.  In the latter case, the highest code point in the set is one
8200      * less than the beginning of this range; otherwise it is the final element
8201      * of this range: infinity */
8202     return (ELEMENT_RANGE_MATCHES_INVLIST(len - 1))
8203            ? UV_MAX
8204            : array[len - 1] - 1;
8205 }
8206
8207 #ifndef PERL_IN_XSUB_RE
8208 SV *
8209 Perl__invlist_contents(pTHX_ SV* const invlist)
8210 {
8211     /* Get the contents of an inversion list into a string SV so that they can
8212      * be printed out.  It uses the format traditionally done for debug tracing
8213      */
8214
8215     UV start, end;
8216     SV* output = newSVpvs("\n");
8217
8218     PERL_ARGS_ASSERT__INVLIST_CONTENTS;
8219
8220     invlist_iterinit(invlist);
8221     while (invlist_iternext(invlist, &start, &end)) {
8222         if (end == UV_MAX) {
8223             Perl_sv_catpvf(aTHX_ output, "%04"UVXf"\tINFINITY\n", start);
8224         }
8225         else if (end != start) {
8226             Perl_sv_catpvf(aTHX_ output, "%04"UVXf"\t%04"UVXf"\n",
8227                     start,       end);
8228         }
8229         else {
8230             Perl_sv_catpvf(aTHX_ output, "%04"UVXf"\n", start);
8231         }
8232     }
8233
8234     return output;
8235 }
8236 #endif
8237
8238 #if 0
8239 void
8240 S_invlist_dump(pTHX_ SV* const invlist, const char * const header)
8241 {
8242     /* Dumps out the ranges in an inversion list.  The string 'header'
8243      * if present is output on a line before the first range */
8244
8245     UV start, end;
8246
8247     if (header && strlen(header)) {
8248         PerlIO_printf(Perl_debug_log, "%s\n", header);
8249     }
8250     invlist_iterinit(invlist);
8251     while (invlist_iternext(invlist, &start, &end)) {
8252         if (end == UV_MAX) {
8253             PerlIO_printf(Perl_debug_log, "0x%04"UVXf" .. INFINITY\n", start);
8254         }
8255         else {
8256             PerlIO_printf(Perl_debug_log, "0x%04"UVXf" .. 0x%04"UVXf"\n", start, end);
8257         }
8258     }
8259 }
8260 #endif
8261
8262 #if 0
8263 bool
8264 S__invlistEQ(pTHX_ SV* const a, SV* const b, bool complement_b)
8265 {
8266     /* Return a boolean as to if the two passed in inversion lists are
8267      * identical.  The final argument, if TRUE, says to take the complement of
8268      * the second inversion list before doing the comparison */
8269
8270     UV* array_a = invlist_array(a);
8271     UV* array_b = invlist_array(b);
8272     UV len_a = _invlist_len(a);
8273     UV len_b = _invlist_len(b);
8274
8275     UV i = 0;               /* current index into the arrays */
8276     bool retval = TRUE;     /* Assume are identical until proven otherwise */
8277
8278     PERL_ARGS_ASSERT__INVLISTEQ;
8279
8280     /* If are to compare 'a' with the complement of b, set it
8281      * up so are looking at b's complement. */
8282     if (complement_b) {
8283
8284         /* The complement of nothing is everything, so <a> would have to have
8285          * just one element, starting at zero (ending at infinity) */
8286         if (len_b == 0) {
8287             return (len_a == 1 && array_a[0] == 0);
8288         }
8289         else if (array_b[0] == 0) {
8290
8291             /* Otherwise, to complement, we invert.  Here, the first element is
8292              * 0, just remove it.  To do this, we just pretend the array starts
8293              * one later, and clear the flag as we don't have to do anything
8294              * else later */
8295
8296             array_b++;
8297             len_b--;
8298             complement_b = FALSE;
8299         }
8300         else {
8301
8302             /* But if the first element is not zero, we unshift a 0 before the
8303              * array.  The data structure reserves a space for that 0 (which
8304              * should be a '1' right now), so physical shifting is unneeded,
8305              * but temporarily change that element to 0.  Before exiting the
8306              * routine, we must restore the element to '1' */
8307             array_b--;
8308             len_b++;
8309             array_b[0] = 0;
8310         }
8311     }
8312
8313     /* Make sure that the lengths are the same, as well as the final element
8314      * before looping through the remainder.  (Thus we test the length, final,
8315      * and first elements right off the bat) */
8316     if (len_a != len_b || array_a[len_a-1] != array_b[len_a-1]) {
8317         retval = FALSE;
8318     }
8319     else for (i = 0; i < len_a - 1; i++) {
8320         if (array_a[i] != array_b[i]) {
8321             retval = FALSE;
8322             break;
8323         }
8324     }
8325
8326     if (complement_b) {
8327         array_b[0] = 1;
8328     }
8329     return retval;
8330 }
8331 #endif
8332
8333 #undef HEADER_LENGTH
8334 #undef INVLIST_INITIAL_LENGTH
8335 #undef TO_INTERNAL_SIZE
8336 #undef FROM_INTERNAL_SIZE
8337 #undef INVLIST_LEN_OFFSET
8338 #undef INVLIST_ZERO_OFFSET
8339 #undef INVLIST_ITER_OFFSET
8340 #undef INVLIST_VERSION_ID
8341
8342 /* End of inversion list object */
8343
8344 /*
8345  - reg - regular expression, i.e. main body or parenthesized thing
8346  *
8347  * Caller must absorb opening parenthesis.
8348  *
8349  * Combining parenthesis handling with the base level of regular expression
8350  * is a trifle forced, but the need to tie the tails of the branches to what
8351  * follows makes it hard to avoid.
8352  */
8353 #define REGTAIL(x,y,z) regtail((x),(y),(z),depth+1)
8354 #ifdef DEBUGGING
8355 #define REGTAIL_STUDY(x,y,z) regtail_study((x),(y),(z),depth+1)
8356 #else
8357 #define REGTAIL_STUDY(x,y,z) regtail((x),(y),(z),depth+1)
8358 #endif
8359
8360 STATIC regnode *
8361 S_reg(pTHX_ RExC_state_t *pRExC_state, I32 paren, I32 *flagp,U32 depth)
8362     /* paren: Parenthesized? 0=top, 1=(, inside: changed to letter. */
8363 {
8364     dVAR;
8365     regnode *ret;               /* Will be the head of the group. */
8366     regnode *br;
8367     regnode *lastbr;
8368     regnode *ender = NULL;
8369     I32 parno = 0;
8370     I32 flags;
8371     U32 oregflags = RExC_flags;
8372     bool have_branch = 0;
8373     bool is_open = 0;
8374     I32 freeze_paren = 0;
8375     I32 after_freeze = 0;
8376
8377     /* for (?g), (?gc), and (?o) warnings; warning
8378        about (?c) will warn about (?g) -- japhy    */
8379
8380 #define WASTED_O  0x01
8381 #define WASTED_G  0x02
8382 #define WASTED_C  0x04
8383 #define WASTED_GC (0x02|0x04)
8384     I32 wastedflags = 0x00;
8385
8386     char * parse_start = RExC_parse; /* MJD */
8387     char * const oregcomp_parse = RExC_parse;
8388
8389     GET_RE_DEBUG_FLAGS_DECL;
8390
8391     PERL_ARGS_ASSERT_REG;
8392     DEBUG_PARSE("reg ");
8393
8394     *flagp = 0;                         /* Tentatively. */
8395
8396
8397     /* Make an OPEN node, if parenthesized. */
8398     if (paren) {
8399         if ( *RExC_parse == '*') { /* (*VERB:ARG) */
8400             char *start_verb = RExC_parse;
8401             STRLEN verb_len = 0;
8402             char *start_arg = NULL;
8403             unsigned char op = 0;
8404             int argok = 1;
8405             int internal_argval = 0; /* internal_argval is only useful if !argok */
8406             while ( *RExC_parse && *RExC_parse != ')' ) {
8407                 if ( *RExC_parse == ':' ) {
8408                     start_arg = RExC_parse + 1;
8409                     break;
8410                 }
8411                 RExC_parse++;
8412             }
8413             ++start_verb;
8414             verb_len = RExC_parse - start_verb;
8415             if ( start_arg ) {
8416                 RExC_parse++;
8417                 while ( *RExC_parse && *RExC_parse != ')' ) 
8418                     RExC_parse++;
8419                 if ( *RExC_parse != ')' ) 
8420                     vFAIL("Unterminated verb pattern argument");
8421                 if ( RExC_parse == start_arg )
8422                     start_arg = NULL;
8423             } else {
8424                 if ( *RExC_parse != ')' )
8425                     vFAIL("Unterminated verb pattern");
8426             }
8427             
8428             switch ( *start_verb ) {
8429             case 'A':  /* (*ACCEPT) */
8430                 if ( memEQs(start_verb,verb_len,"ACCEPT") ) {
8431                     op = ACCEPT;
8432                     internal_argval = RExC_nestroot;
8433                 }
8434                 break;
8435             case 'C':  /* (*COMMIT) */
8436                 if ( memEQs(start_verb,verb_len,"COMMIT") )
8437                     op = COMMIT;
8438                 break;
8439             case 'F':  /* (*FAIL) */
8440                 if ( verb_len==1 || memEQs(start_verb,verb_len,"FAIL") ) {
8441                     op = OPFAIL;
8442                     argok = 0;
8443                 }
8444                 break;
8445             case ':':  /* (*:NAME) */
8446             case 'M':  /* (*MARK:NAME) */
8447                 if ( verb_len==0 || memEQs(start_verb,verb_len,"MARK") ) {
8448                     op = MARKPOINT;
8449                     argok = -1;
8450                 }
8451                 break;
8452             case 'P':  /* (*PRUNE) */
8453                 if ( memEQs(start_verb,verb_len,"PRUNE") )
8454                     op = PRUNE;
8455                 break;
8456             case 'S':   /* (*SKIP) */  
8457                 if ( memEQs(start_verb,verb_len,"SKIP") ) 
8458                     op = SKIP;
8459                 break;
8460             case 'T':  /* (*THEN) */
8461                 /* [19:06] <TimToady> :: is then */
8462                 if ( memEQs(start_verb,verb_len,"THEN") ) {
8463                     op = CUTGROUP;
8464                     RExC_seen |= REG_SEEN_CUTGROUP;
8465                 }
8466                 break;
8467             }
8468             if ( ! op ) {
8469                 RExC_parse++;
8470                 vFAIL3("Unknown verb pattern '%.*s'",
8471                     verb_len, start_verb);
8472             }
8473             if ( argok ) {
8474                 if ( start_arg && internal_argval ) {
8475                     vFAIL3("Verb pattern '%.*s' may not have an argument",
8476                         verb_len, start_verb); 
8477                 } else if ( argok < 0 && !start_arg ) {
8478                     vFAIL3("Verb pattern '%.*s' has a mandatory argument",
8479                         verb_len, start_verb);    
8480                 } else {
8481                     ret = reganode(pRExC_state, op, internal_argval);
8482                     if ( ! internal_argval && ! SIZE_ONLY ) {
8483                         if (start_arg) {
8484                             SV *sv = newSVpvn( start_arg, RExC_parse - start_arg);
8485                             ARG(ret) = add_data( pRExC_state, 1, "S" );
8486                             RExC_rxi->data->data[ARG(ret)]=(void*)sv;
8487                             ret->flags = 0;
8488                         } else {
8489                             ret->flags = 1; 
8490                         }
8491                     }               
8492                 }
8493                 if (!internal_argval)
8494                     RExC_seen |= REG_SEEN_VERBARG;
8495             } else if ( start_arg ) {
8496                 vFAIL3("Verb pattern '%.*s' may not have an argument",
8497                         verb_len, start_verb);    
8498             } else {
8499                 ret = reg_node(pRExC_state, op);
8500             }
8501             nextchar(pRExC_state);
8502             return ret;
8503         } else 
8504         if (*RExC_parse == '?') { /* (?...) */
8505             bool is_logical = 0;
8506             const char * const seqstart = RExC_parse;
8507             bool has_use_defaults = FALSE;
8508
8509             RExC_parse++;
8510             paren = *RExC_parse++;
8511             ret = NULL;                 /* For look-ahead/behind. */
8512             switch (paren) {
8513
8514             case 'P':   /* (?P...) variants for those used to PCRE/Python */
8515                 paren = *RExC_parse++;
8516                 if ( paren == '<')         /* (?P<...>) named capture */
8517                     goto named_capture;
8518                 else if (paren == '>') {   /* (?P>name) named recursion */
8519                     goto named_recursion;
8520                 }
8521                 else if (paren == '=') {   /* (?P=...)  named backref */
8522                     /* this pretty much dupes the code for \k<NAME> in regatom(), if
8523                        you change this make sure you change that */
8524                     char* name_start = RExC_parse;
8525                     U32 num = 0;
8526                     SV *sv_dat = reg_scan_name(pRExC_state,
8527                         SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
8528                     if (RExC_parse == name_start || *RExC_parse != ')')
8529                         vFAIL2("Sequence %.3s... not terminated",parse_start);
8530
8531                     if (!SIZE_ONLY) {
8532                         num = add_data( pRExC_state, 1, "S" );
8533                         RExC_rxi->data->data[num]=(void*)sv_dat;
8534                         SvREFCNT_inc_simple_void(sv_dat);
8535                     }
8536                     RExC_sawback = 1;
8537                     ret = reganode(pRExC_state,
8538                                    ((! FOLD)
8539                                      ? NREF
8540                                      : (ASCII_FOLD_RESTRICTED)
8541                                        ? NREFFA
8542                                        : (AT_LEAST_UNI_SEMANTICS)
8543                                          ? NREFFU
8544                                          : (LOC)
8545                                            ? NREFFL
8546                                            : NREFF),
8547                                     num);
8548                     *flagp |= HASWIDTH;
8549
8550                     Set_Node_Offset(ret, parse_start+1);
8551                     Set_Node_Cur_Length(ret); /* MJD */
8552
8553                     nextchar(pRExC_state);
8554                     return ret;
8555                 }
8556                 RExC_parse++;
8557                 vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
8558                 /*NOTREACHED*/
8559             case '<':           /* (?<...) */
8560                 if (*RExC_parse == '!')
8561                     paren = ',';
8562                 else if (*RExC_parse != '=') 
8563               named_capture:
8564                 {               /* (?<...>) */
8565                     char *name_start;
8566                     SV *svname;
8567                     paren= '>';
8568             case '\'':          /* (?'...') */
8569                     name_start= RExC_parse;
8570                     svname = reg_scan_name(pRExC_state,
8571                         SIZE_ONLY ?  /* reverse test from the others */
8572                         REG_RSN_RETURN_NAME : 
8573                         REG_RSN_RETURN_NULL);
8574                     if (RExC_parse == name_start) {
8575                         RExC_parse++;
8576                         vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
8577                         /*NOTREACHED*/
8578                     }
8579                     if (*RExC_parse != paren)
8580                         vFAIL2("Sequence (?%c... not terminated",
8581                             paren=='>' ? '<' : paren);
8582                     if (SIZE_ONLY) {
8583                         HE *he_str;
8584                         SV *sv_dat = NULL;
8585                         if (!svname) /* shouldn't happen */
8586                             Perl_croak(aTHX_
8587                                 "panic: reg_scan_name returned NULL");
8588                         if (!RExC_paren_names) {
8589                             RExC_paren_names= newHV();
8590                             sv_2mortal(MUTABLE_SV(RExC_paren_names));
8591 #ifdef DEBUGGING
8592                             RExC_paren_name_list= newAV();
8593                             sv_2mortal(MUTABLE_SV(RExC_paren_name_list));
8594 #endif
8595                         }
8596                         he_str = hv_fetch_ent( RExC_paren_names, svname, 1, 0 );
8597                         if ( he_str )
8598                             sv_dat = HeVAL(he_str);
8599                         if ( ! sv_dat ) {
8600                             /* croak baby croak */
8601                             Perl_croak(aTHX_
8602                                 "panic: paren_name hash element allocation failed");
8603                         } else if ( SvPOK(sv_dat) ) {
8604                             /* (?|...) can mean we have dupes so scan to check
8605                                its already been stored. Maybe a flag indicating
8606                                we are inside such a construct would be useful,
8607                                but the arrays are likely to be quite small, so
8608                                for now we punt -- dmq */
8609                             IV count = SvIV(sv_dat);
8610                             I32 *pv = (I32*)SvPVX(sv_dat);
8611                             IV i;
8612                             for ( i = 0 ; i < count ; i++ ) {
8613                                 if ( pv[i] == RExC_npar ) {
8614                                     count = 0;
8615                                     break;
8616                                 }
8617                             }
8618                             if ( count ) {
8619                                 pv = (I32*)SvGROW(sv_dat, SvCUR(sv_dat) + sizeof(I32)+1);
8620                                 SvCUR_set(sv_dat, SvCUR(sv_dat) + sizeof(I32));
8621                                 pv[count] = RExC_npar;
8622                                 SvIV_set(sv_dat, SvIVX(sv_dat) + 1);
8623                             }
8624                         } else {
8625                             (void)SvUPGRADE(sv_dat,SVt_PVNV);
8626                             sv_setpvn(sv_dat, (char *)&(RExC_npar), sizeof(I32));
8627                             SvIOK_on(sv_dat);
8628                             SvIV_set(sv_dat, 1);
8629                         }
8630 #ifdef DEBUGGING
8631                         /* Yes this does cause a memory leak in debugging Perls */
8632                         if (!av_store(RExC_paren_name_list, RExC_npar, SvREFCNT_inc(svname)))
8633                             SvREFCNT_dec(svname);
8634 #endif
8635
8636                         /*sv_dump(sv_dat);*/
8637                     }
8638                     nextchar(pRExC_state);
8639                     paren = 1;
8640                     goto capturing_parens;
8641                 }
8642                 RExC_seen |= REG_SEEN_LOOKBEHIND;
8643                 RExC_in_lookbehind++;
8644                 RExC_parse++;
8645             case '=':           /* (?=...) */
8646                 RExC_seen_zerolen++;
8647                 break;
8648             case '!':           /* (?!...) */
8649                 RExC_seen_zerolen++;
8650                 if (*RExC_parse == ')') {
8651                     ret=reg_node(pRExC_state, OPFAIL);
8652                     nextchar(pRExC_state);
8653                     return ret;
8654                 }
8655                 break;
8656             case '|':           /* (?|...) */
8657                 /* branch reset, behave like a (?:...) except that
8658                    buffers in alternations share the same numbers */
8659                 paren = ':'; 
8660                 after_freeze = freeze_paren = RExC_npar;
8661                 break;
8662             case ':':           /* (?:...) */
8663             case '>':           /* (?>...) */
8664                 break;
8665             case '$':           /* (?$...) */
8666             case '@':           /* (?@...) */
8667                 vFAIL2("Sequence (?%c...) not implemented", (int)paren);
8668                 break;
8669             case '#':           /* (?#...) */
8670                 while (*RExC_parse && *RExC_parse != ')')
8671                     RExC_parse++;
8672                 if (*RExC_parse != ')')
8673                     FAIL("Sequence (?#... not terminated");
8674                 nextchar(pRExC_state);
8675                 *flagp = TRYAGAIN;
8676                 return NULL;
8677             case '0' :           /* (?0) */
8678             case 'R' :           /* (?R) */
8679                 if (*RExC_parse != ')')
8680                     FAIL("Sequence (?R) not terminated");
8681                 ret = reg_node(pRExC_state, GOSTART);
8682                 *flagp |= POSTPONED;
8683                 nextchar(pRExC_state);
8684                 return ret;
8685                 /*notreached*/
8686             { /* named and numeric backreferences */
8687                 I32 num;
8688             case '&':            /* (?&NAME) */
8689                 parse_start = RExC_parse - 1;
8690               named_recursion:
8691                 {
8692                     SV *sv_dat = reg_scan_name(pRExC_state,
8693                         SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
8694                      num = sv_dat ? *((I32 *)SvPVX(sv_dat)) : 0;
8695                 }
8696                 goto gen_recurse_regop;
8697                 assert(0); /* NOT REACHED */
8698             case '+':
8699                 if (!(RExC_parse[0] >= '1' && RExC_parse[0] <= '9')) {
8700                     RExC_parse++;
8701                     vFAIL("Illegal pattern");
8702                 }
8703                 goto parse_recursion;
8704                 /* NOT REACHED*/
8705             case '-': /* (?-1) */
8706                 if (!(RExC_parse[0] >= '1' && RExC_parse[0] <= '9')) {
8707                     RExC_parse--; /* rewind to let it be handled later */
8708                     goto parse_flags;
8709                 } 
8710                 /*FALLTHROUGH */
8711             case '1': case '2': case '3': case '4': /* (?1) */
8712             case '5': case '6': case '7': case '8': case '9':
8713                 RExC_parse--;
8714               parse_recursion:
8715                 num = atoi(RExC_parse);
8716                 parse_start = RExC_parse - 1; /* MJD */
8717                 if (*RExC_parse == '-')
8718                     RExC_parse++;
8719                 while (isDIGIT(*RExC_parse))
8720                         RExC_parse++;
8721                 if (*RExC_parse!=')') 
8722                     vFAIL("Expecting close bracket");
8723
8724               gen_recurse_regop:
8725                 if ( paren == '-' ) {
8726                     /*
8727                     Diagram of capture buffer numbering.
8728                     Top line is the normal capture buffer numbers
8729                     Bottom line is the negative indexing as from
8730                     the X (the (?-2))
8731
8732                     +   1 2    3 4 5 X          6 7
8733                        /(a(x)y)(a(b(c(?-2)d)e)f)(g(h))/
8734                     -   5 4    3 2 1 X          x x
8735
8736                     */
8737                     num = RExC_npar + num;
8738                     if (num < 1)  {
8739                         RExC_parse++;
8740                         vFAIL("Reference to nonexistent group");
8741                     }
8742                 } else if ( paren == '+' ) {
8743                     num = RExC_npar + num - 1;
8744                 }
8745
8746                 ret = reganode(pRExC_state, GOSUB, num);
8747                 if (!SIZE_ONLY) {
8748                     if (num > (I32)RExC_rx->nparens) {
8749                         RExC_parse++;
8750                         vFAIL("Reference to nonexistent group");
8751                     }
8752                     ARG2L_SET( ret, RExC_recurse_count++);
8753                     RExC_emit++;
8754                     DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log,
8755                         "Recurse #%"UVuf" to %"IVdf"\n", (UV)ARG(ret), (IV)ARG2L(ret)));
8756                 } else {
8757                     RExC_size++;
8758                 }
8759                 RExC_seen |= REG_SEEN_RECURSE;
8760                 Set_Node_Length(ret, 1 + regarglen[OP(ret)]); /* MJD */
8761                 Set_Node_Offset(ret, parse_start); /* MJD */
8762
8763                 *flagp |= POSTPONED;
8764                 nextchar(pRExC_state);
8765                 return ret;
8766             } /* named and numeric backreferences */
8767             assert(0); /* NOT REACHED */
8768
8769             case '?':           /* (??...) */
8770                 is_logical = 1;
8771                 if (*RExC_parse != '{') {
8772                     RExC_parse++;
8773                     vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
8774                     /*NOTREACHED*/
8775                 }
8776                 *flagp |= POSTPONED;
8777                 paren = *RExC_parse++;
8778                 /* FALL THROUGH */
8779             case '{':           /* (?{...}) */
8780             {
8781                 U32 n = 0;
8782                 struct reg_code_block *cb;
8783
8784                 RExC_seen_zerolen++;
8785
8786                 if (   !pRExC_state->num_code_blocks
8787                     || pRExC_state->code_index >= pRExC_state->num_code_blocks
8788                     || pRExC_state->code_blocks[pRExC_state->code_index].start
8789                         != (STRLEN)((RExC_parse -3 - (is_logical ? 1 : 0))
8790                             - RExC_start)
8791                 ) {
8792                     if (RExC_pm_flags & PMf_USE_RE_EVAL)
8793                         FAIL("panic: Sequence (?{...}): no code block found\n");
8794                     FAIL("Eval-group not allowed at runtime, use re 'eval'");
8795                 }
8796                 /* this is a pre-compiled code block (?{...}) */
8797                 cb = &pRExC_state->code_blocks[pRExC_state->code_index];
8798                 RExC_parse = RExC_start + cb->end;
8799                 if (!SIZE_ONLY) {
8800                     OP *o = cb->block;
8801                     if (cb->src_regex) {
8802                         n = add_data(pRExC_state, 2, "rl");
8803                         RExC_rxi->data->data[n] =
8804                             (void*)SvREFCNT_inc((SV*)cb->src_regex);
8805                         RExC_rxi->data->data[n+1] = (void*)o;
8806                     }
8807                     else {
8808                         n = add_data(pRExC_state, 1,
8809                                (RExC_pm_flags & PMf_HAS_CV) ? "L" : "l");
8810                         RExC_rxi->data->data[n] = (void*)o;
8811                     }
8812                 }
8813                 pRExC_state->code_index++;
8814                 nextchar(pRExC_state);
8815
8816                 if (is_logical) {
8817                     regnode *eval;
8818                     ret = reg_node(pRExC_state, LOGICAL);
8819                     eval = reganode(pRExC_state, EVAL, n);
8820                     if (!SIZE_ONLY) {
8821                         ret->flags = 2;
8822                         /* for later propagation into (??{}) return value */
8823                         eval->flags = (U8) (RExC_flags & RXf_PMf_COMPILETIME);
8824                     }
8825                     REGTAIL(pRExC_state, ret, eval);
8826                     /* deal with the length of this later - MJD */
8827                     return ret;
8828                 }
8829                 ret = reganode(pRExC_state, EVAL, n);
8830                 Set_Node_Length(ret, RExC_parse - parse_start + 1);
8831                 Set_Node_Offset(ret, parse_start);
8832                 return ret;
8833             }
8834             case '(':           /* (?(?{...})...) and (?(?=...)...) */
8835             {
8836                 int is_define= 0;
8837                 if (RExC_parse[0] == '?') {        /* (?(?...)) */
8838                     if (RExC_parse[1] == '=' || RExC_parse[1] == '!'
8839                         || RExC_parse[1] == '<'
8840                         || RExC_parse[1] == '{') { /* Lookahead or eval. */
8841                         I32 flag;
8842
8843                         ret = reg_node(pRExC_state, LOGICAL);
8844                         if (!SIZE_ONLY)
8845                             ret->flags = 1;
8846                         REGTAIL(pRExC_state, ret, reg(pRExC_state, 1, &flag,depth+1));
8847                         goto insert_if;
8848                     }
8849                 }
8850                 else if ( RExC_parse[0] == '<'     /* (?(<NAME>)...) */
8851                          || RExC_parse[0] == '\'' ) /* (?('NAME')...) */
8852                 {
8853                     char ch = RExC_parse[0] == '<' ? '>' : '\'';
8854                     char *name_start= RExC_parse++;
8855                     U32 num = 0;
8856                     SV *sv_dat=reg_scan_name(pRExC_state,
8857                         SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
8858                     if (RExC_parse == name_start || *RExC_parse != ch)
8859                         vFAIL2("Sequence (?(%c... not terminated",
8860                             (ch == '>' ? '<' : ch));
8861                     RExC_parse++;
8862                     if (!SIZE_ONLY) {
8863                         num = add_data( pRExC_state, 1, "S" );
8864                         RExC_rxi->data->data[num]=(void*)sv_dat;
8865                         SvREFCNT_inc_simple_void(sv_dat);
8866                     }
8867                     ret = reganode(pRExC_state,NGROUPP,num);
8868                     goto insert_if_check_paren;
8869                 }
8870                 else if (RExC_parse[0] == 'D' &&
8871                          RExC_parse[1] == 'E' &&
8872                          RExC_parse[2] == 'F' &&
8873                          RExC_parse[3] == 'I' &&
8874                          RExC_parse[4] == 'N' &&
8875                          RExC_parse[5] == 'E')
8876                 {
8877                     ret = reganode(pRExC_state,DEFINEP,0);
8878                     RExC_parse +=6 ;
8879                     is_define = 1;
8880                     goto insert_if_check_paren;
8881                 }
8882                 else if (RExC_parse[0] == 'R') {
8883                     RExC_parse++;
8884                     parno = 0;
8885                     if (RExC_parse[0] >= '1' && RExC_parse[0] <= '9' ) {
8886                         parno = atoi(RExC_parse++);
8887                         while (isDIGIT(*RExC_parse))
8888                             RExC_parse++;
8889                     } else if (RExC_parse[0] == '&') {
8890                         SV *sv_dat;
8891                         RExC_parse++;
8892                         sv_dat = reg_scan_name(pRExC_state,
8893                             SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
8894                         parno = sv_dat ? *((I32 *)SvPVX(sv_dat)) : 0;
8895                     }
8896                     ret = reganode(pRExC_state,INSUBP,parno); 
8897                     goto insert_if_check_paren;
8898                 }
8899                 else if (RExC_parse[0] >= '1' && RExC_parse[0] <= '9' ) {
8900                     /* (?(1)...) */
8901                     char c;
8902                     parno = atoi(RExC_parse++);
8903
8904                     while (isDIGIT(*RExC_parse))
8905                         RExC_parse++;
8906                     ret = reganode(pRExC_state, GROUPP, parno);
8907
8908                  insert_if_check_paren:
8909                     if ((c = *nextchar(pRExC_state)) != ')')
8910                         vFAIL("Switch condition not recognized");
8911                   insert_if:
8912                     REGTAIL(pRExC_state, ret, reganode(pRExC_state, IFTHEN, 0));
8913                     br = regbranch(pRExC_state, &flags, 1,depth+1);
8914                     if (br == NULL)
8915                         br = reganode(pRExC_state, LONGJMP, 0);
8916                     else
8917                         REGTAIL(pRExC_state, br, reganode(pRExC_state, LONGJMP, 0));
8918                     c = *nextchar(pRExC_state);
8919                     if (flags&HASWIDTH)
8920                         *flagp |= HASWIDTH;
8921                     if (c == '|') {
8922                         if (is_define) 
8923                             vFAIL("(?(DEFINE)....) does not allow branches");
8924                         lastbr = reganode(pRExC_state, IFTHEN, 0); /* Fake one for optimizer. */
8925                         regbranch(pRExC_state, &flags, 1,depth+1);
8926                         REGTAIL(pRExC_state, ret, lastbr);
8927                         if (flags&HASWIDTH)
8928                             *flagp |= HASWIDTH;
8929                         c = *nextchar(pRExC_state);
8930                     }
8931                     else
8932                         lastbr = NULL;
8933                     if (c != ')')
8934                         vFAIL("Switch (?(condition)... contains too many branches");
8935                     ender = reg_node(pRExC_state, TAIL);
8936                     REGTAIL(pRExC_state, br, ender);
8937                     if (lastbr) {
8938                         REGTAIL(pRExC_state, lastbr, ender);
8939                         REGTAIL(pRExC_state, NEXTOPER(NEXTOPER(lastbr)), ender);
8940                     }
8941                     else
8942                         REGTAIL(pRExC_state, ret, ender);
8943                     RExC_size++; /* XXX WHY do we need this?!!
8944                                     For large programs it seems to be required
8945                                     but I can't figure out why. -- dmq*/
8946                     return ret;
8947                 }
8948                 else {
8949                     vFAIL2("Unknown switch condition (?(%.2s", RExC_parse);
8950                 }
8951             }
8952             case 0:
8953                 RExC_parse--; /* for vFAIL to print correctly */
8954                 vFAIL("Sequence (? incomplete");
8955                 break;
8956             case DEFAULT_PAT_MOD:   /* Use default flags with the exceptions
8957                                        that follow */
8958                 has_use_defaults = TRUE;
8959                 STD_PMMOD_FLAGS_CLEAR(&RExC_flags);
8960                 set_regex_charset(&RExC_flags, (RExC_utf8 || RExC_uni_semantics)
8961                                                 ? REGEX_UNICODE_CHARSET
8962                                                 : REGEX_DEPENDS_CHARSET);
8963                 goto parse_flags;
8964             default:
8965                 --RExC_parse;
8966                 parse_flags:      /* (?i) */  
8967             {
8968                 U32 posflags = 0, negflags = 0;
8969                 U32 *flagsp = &posflags;
8970                 char has_charset_modifier = '\0';
8971                 regex_charset cs = get_regex_charset(RExC_flags);
8972                 if (cs == REGEX_DEPENDS_CHARSET
8973                     && (RExC_utf8 || RExC_uni_semantics))
8974                 {
8975                     cs = REGEX_UNICODE_CHARSET;
8976                 }
8977
8978                 while (*RExC_parse) {
8979                     /* && strchr("iogcmsx", *RExC_parse) */
8980                     /* (?g), (?gc) and (?o) are useless here
8981                        and must be globally applied -- japhy */
8982                     switch (*RExC_parse) {
8983                     CASE_STD_PMMOD_FLAGS_PARSE_SET(flagsp);
8984                     case LOCALE_PAT_MOD:
8985                         if (has_charset_modifier) {
8986                             goto excess_modifier;
8987                         }
8988                         else if (flagsp == &negflags) {
8989                             goto neg_modifier;
8990                         }
8991                         cs = REGEX_LOCALE_CHARSET;
8992                         has_charset_modifier = LOCALE_PAT_MOD;
8993                         RExC_contains_locale = 1;
8994                         break;
8995                     case UNICODE_PAT_MOD:
8996                         if (has_charset_modifier) {
8997                             goto excess_modifier;
8998                         }
8999                         else if (flagsp == &negflags) {
9000                             goto neg_modifier;
9001                         }
9002                         cs = REGEX_UNICODE_CHARSET;
9003                         has_charset_modifier = UNICODE_PAT_MOD;
9004                         break;
9005                     case ASCII_RESTRICT_PAT_MOD:
9006                         if (flagsp == &negflags) {
9007                             goto neg_modifier;
9008                         }
9009                         if (has_charset_modifier) {
9010                             if (cs != REGEX_ASCII_RESTRICTED_CHARSET) {
9011                                 goto excess_modifier;
9012                             }
9013                             /* Doubled modifier implies more restricted */
9014                             cs = REGEX_ASCII_MORE_RESTRICTED_CHARSET;
9015                         }
9016                         else {
9017                             cs = REGEX_ASCII_RESTRICTED_CHARSET;
9018                         }
9019                         has_charset_modifier = ASCII_RESTRICT_PAT_MOD;
9020                         break;
9021                     case DEPENDS_PAT_MOD:
9022                         if (has_use_defaults) {
9023                             goto fail_modifiers;
9024                         }
9025                         else if (flagsp == &negflags) {
9026                             goto neg_modifier;
9027                         }
9028                         else if (has_charset_modifier) {
9029                             goto excess_modifier;
9030                         }
9031
9032                         /* The dual charset means unicode semantics if the
9033                          * pattern (or target, not known until runtime) are
9034                          * utf8, or something in the pattern indicates unicode
9035                          * semantics */
9036                         cs = (RExC_utf8 || RExC_uni_semantics)
9037                              ? REGEX_UNICODE_CHARSET
9038                              : REGEX_DEPENDS_CHARSET;
9039                         has_charset_modifier = DEPENDS_PAT_MOD;
9040                         break;
9041                     excess_modifier:
9042                         RExC_parse++;
9043                         if (has_charset_modifier == ASCII_RESTRICT_PAT_MOD) {
9044                             vFAIL2("Regexp modifier \"%c\" may appear a maximum of twice", ASCII_RESTRICT_PAT_MOD);
9045                         }
9046                         else if (has_charset_modifier == *(RExC_parse - 1)) {
9047                             vFAIL2("Regexp modifier \"%c\" may not appear twice", *(RExC_parse - 1));
9048                         }
9049                         else {
9050                             vFAIL3("Regexp modifiers \"%c\" and \"%c\" are mutually exclusive", has_charset_modifier, *(RExC_parse - 1));
9051                         }
9052                         /*NOTREACHED*/
9053                     neg_modifier:
9054                         RExC_parse++;
9055                         vFAIL2("Regexp modifier \"%c\" may not appear after the \"-\"", *(RExC_parse - 1));
9056                         /*NOTREACHED*/
9057                     case ONCE_PAT_MOD: /* 'o' */
9058                     case GLOBAL_PAT_MOD: /* 'g' */
9059                         if (SIZE_ONLY && ckWARN(WARN_REGEXP)) {
9060                             const I32 wflagbit = *RExC_parse == 'o' ? WASTED_O : WASTED_G;
9061                             if (! (wastedflags & wflagbit) ) {
9062                                 wastedflags |= wflagbit;
9063                                 vWARN5(
9064                                     RExC_parse + 1,
9065                                     "Useless (%s%c) - %suse /%c modifier",
9066                                     flagsp == &negflags ? "?-" : "?",
9067                                     *RExC_parse,
9068                                     flagsp == &negflags ? "don't " : "",
9069                                     *RExC_parse
9070                                 );
9071                             }
9072                         }
9073                         break;
9074                         
9075                     case CONTINUE_PAT_MOD: /* 'c' */
9076                         if (SIZE_ONLY && ckWARN(WARN_REGEXP)) {
9077                             if (! (wastedflags & WASTED_C) ) {
9078                                 wastedflags |= WASTED_GC;
9079                                 vWARN3(
9080                                     RExC_parse + 1,
9081                                     "Useless (%sc) - %suse /gc modifier",
9082                                     flagsp == &negflags ? "?-" : "?",
9083                                     flagsp == &negflags ? "don't " : ""
9084                                 );
9085                             }
9086                         }
9087                         break;
9088                     case KEEPCOPY_PAT_MOD: /* 'p' */
9089                         if (flagsp == &negflags) {
9090                             if (SIZE_ONLY)
9091                                 ckWARNreg(RExC_parse + 1,"Useless use of (?-p)");
9092                         } else {
9093                             *flagsp |= RXf_PMf_KEEPCOPY;
9094                         }
9095                         break;
9096                     case '-':
9097                         /* A flag is a default iff it is following a minus, so
9098                          * if there is a minus, it means will be trying to
9099                          * re-specify a default which is an error */
9100                         if (has_use_defaults || flagsp == &negflags) {
9101             fail_modifiers:
9102                             RExC_parse++;
9103                             vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
9104                             /*NOTREACHED*/
9105                         }
9106                         flagsp = &negflags;
9107                         wastedflags = 0;  /* reset so (?g-c) warns twice */
9108                         break;
9109                     case ':':
9110                         paren = ':';
9111                         /*FALLTHROUGH*/
9112                     case ')':
9113                         RExC_flags |= posflags;
9114                         RExC_flags &= ~negflags;
9115                         set_regex_charset(&RExC_flags, cs);
9116                         if (paren != ':') {
9117                             oregflags |= posflags;
9118                             oregflags &= ~negflags;
9119                             set_regex_charset(&oregflags, cs);
9120                         }
9121                         nextchar(pRExC_state);
9122                         if (paren != ':') {
9123                             *flagp = TRYAGAIN;
9124                             return NULL;
9125                         } else {
9126                             ret = NULL;
9127                             goto parse_rest;
9128                         }
9129                         /*NOTREACHED*/
9130                     default:
9131                         RExC_parse++;
9132                         vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
9133                         /*NOTREACHED*/
9134                     }                           
9135                     ++RExC_parse;
9136                 }
9137             }} /* one for the default block, one for the switch */
9138         }
9139         else {                  /* (...) */
9140           capturing_parens:
9141             parno = RExC_npar;
9142             RExC_npar++;
9143             
9144             ret = reganode(pRExC_state, OPEN, parno);
9145             if (!SIZE_ONLY ){
9146                 if (!RExC_nestroot) 
9147                     RExC_nestroot = parno;
9148                 if (RExC_seen & REG_SEEN_RECURSE
9149                     && !RExC_open_parens[parno-1])
9150                 {
9151                     DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log,
9152                         "Setting open paren #%"IVdf" to %d\n", 
9153                         (IV)parno, REG_NODE_NUM(ret)));
9154                     RExC_open_parens[parno-1]= ret;
9155                 }
9156             }
9157             Set_Node_Length(ret, 1); /* MJD */
9158             Set_Node_Offset(ret, RExC_parse); /* MJD */
9159             is_open = 1;
9160         }
9161     }
9162     else                        /* ! paren */
9163         ret = NULL;
9164    
9165    parse_rest:
9166     /* Pick up the branches, linking them together. */
9167     parse_start = RExC_parse;   /* MJD */
9168     br = regbranch(pRExC_state, &flags, 1,depth+1);
9169
9170     /*     branch_len = (paren != 0); */
9171
9172     if (br == NULL)
9173         return(NULL);
9174     if (*RExC_parse == '|') {
9175         if (!SIZE_ONLY && RExC_extralen) {
9176             reginsert(pRExC_state, BRANCHJ, br, depth+1);
9177         }
9178         else {                  /* MJD */
9179             reginsert(pRExC_state, BRANCH, br, depth+1);
9180             Set_Node_Length(br, paren != 0);
9181             Set_Node_Offset_To_R(br-RExC_emit_start, parse_start-RExC_start);
9182         }
9183         have_branch = 1;
9184         if (SIZE_ONLY)
9185             RExC_extralen += 1;         /* For BRANCHJ-BRANCH. */
9186     }
9187     else if (paren == ':') {
9188         *flagp |= flags&SIMPLE;
9189     }
9190     if (is_open) {                              /* Starts with OPEN. */
9191         REGTAIL(pRExC_state, ret, br);          /* OPEN -> first. */
9192     }
9193     else if (paren != '?')              /* Not Conditional */
9194         ret = br;
9195     *flagp |= flags & (SPSTART | HASWIDTH | POSTPONED);
9196     lastbr = br;
9197     while (*RExC_parse == '|') {
9198         if (!SIZE_ONLY && RExC_extralen) {
9199             ender = reganode(pRExC_state, LONGJMP,0);
9200             REGTAIL(pRExC_state, NEXTOPER(NEXTOPER(lastbr)), ender); /* Append to the previous. */
9201         }
9202         if (SIZE_ONLY)
9203             RExC_extralen += 2;         /* Account for LONGJMP. */
9204         nextchar(pRExC_state);
9205         if (freeze_paren) {
9206             if (RExC_npar > after_freeze)
9207                 after_freeze = RExC_npar;
9208             RExC_npar = freeze_paren;       
9209         }
9210         br = regbranch(pRExC_state, &flags, 0, depth+1);
9211
9212         if (br == NULL)
9213             return(NULL);
9214         REGTAIL(pRExC_state, lastbr, br);               /* BRANCH -> BRANCH. */
9215         lastbr = br;
9216         *flagp |= flags & (SPSTART | HASWIDTH | POSTPONED);
9217     }
9218
9219     if (have_branch || paren != ':') {
9220         /* Make a closing node, and hook it on the end. */
9221         switch (paren) {
9222         case ':':
9223             ender = reg_node(pRExC_state, TAIL);
9224             break;
9225         case 1:
9226             ender = reganode(pRExC_state, CLOSE, parno);
9227             if (!SIZE_ONLY && RExC_seen & REG_SEEN_RECURSE) {
9228                 DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log,
9229                         "Setting close paren #%"IVdf" to %d\n", 
9230                         (IV)parno, REG_NODE_NUM(ender)));
9231                 RExC_close_parens[parno-1]= ender;
9232                 if (RExC_nestroot == parno) 
9233                     RExC_nestroot = 0;
9234             }       
9235             Set_Node_Offset(ender,RExC_parse+1); /* MJD */
9236             Set_Node_Length(ender,1); /* MJD */
9237             break;
9238         case '<':
9239         case ',':
9240         case '=':
9241         case '!':
9242             *flagp &= ~HASWIDTH;
9243             /* FALL THROUGH */
9244         case '>':
9245             ender = reg_node(pRExC_state, SUCCEED);
9246             break;
9247         case 0:
9248             ender = reg_node(pRExC_state, END);
9249             if (!SIZE_ONLY) {
9250                 assert(!RExC_opend); /* there can only be one! */
9251                 RExC_opend = ender;
9252             }
9253             break;
9254         }
9255         DEBUG_PARSE_r(if (!SIZE_ONLY) {
9256             SV * const mysv_val1=sv_newmortal();
9257             SV * const mysv_val2=sv_newmortal();
9258             DEBUG_PARSE_MSG("lsbr");
9259             regprop(RExC_rx, mysv_val1, lastbr);
9260             regprop(RExC_rx, mysv_val2, ender);
9261             PerlIO_printf(Perl_debug_log, "~ tying lastbr %s (%"IVdf") to ender %s (%"IVdf") offset %"IVdf"\n",
9262                           SvPV_nolen_const(mysv_val1),
9263                           (IV)REG_NODE_NUM(lastbr),
9264                           SvPV_nolen_const(mysv_val2),
9265                           (IV)REG_NODE_NUM(ender),
9266                           (IV)(ender - lastbr)
9267             );
9268         });
9269         REGTAIL(pRExC_state, lastbr, ender);
9270
9271         if (have_branch && !SIZE_ONLY) {
9272             char is_nothing= 1;
9273             if (depth==1)
9274                 RExC_seen |= REG_TOP_LEVEL_BRANCHES;
9275
9276             /* Hook the tails of the branches to the closing node. */
9277             for (br = ret; br; br = regnext(br)) {
9278                 const U8 op = PL_regkind[OP(br)];
9279                 if (op == BRANCH) {
9280                     REGTAIL_STUDY(pRExC_state, NEXTOPER(br), ender);
9281                     if (OP(NEXTOPER(br)) != NOTHING || regnext(NEXTOPER(br)) != ender)
9282                         is_nothing= 0;
9283                 }
9284                 else if (op == BRANCHJ) {
9285                     REGTAIL_STUDY(pRExC_state, NEXTOPER(NEXTOPER(br)), ender);
9286                     /* for now we always disable this optimisation * /
9287                     if (OP(NEXTOPER(NEXTOPER(br))) != NOTHING || regnext(NEXTOPER(NEXTOPER(br))) != ender)
9288                     */
9289                         is_nothing= 0;
9290                 }
9291             }
9292             if (is_nothing) {
9293                 br= PL_regkind[OP(ret)] != BRANCH ? regnext(ret) : ret;
9294                 DEBUG_PARSE_r(if (!SIZE_ONLY) {
9295                     SV * const mysv_val1=sv_newmortal();
9296                     SV * const mysv_val2=sv_newmortal();
9297                     DEBUG_PARSE_MSG("NADA");
9298                     regprop(RExC_rx, mysv_val1, ret);
9299                     regprop(RExC_rx, mysv_val2, ender);
9300                     PerlIO_printf(Perl_debug_log, "~ converting ret %s (%"IVdf") to ender %s (%"IVdf") offset %"IVdf"\n",
9301                                   SvPV_nolen_const(mysv_val1),
9302                                   (IV)REG_NODE_NUM(ret),
9303                                   SvPV_nolen_const(mysv_val2),
9304                                   (IV)REG_NODE_NUM(ender),
9305                                   (IV)(ender - ret)
9306                     );
9307                 });
9308                 OP(br)= NOTHING;
9309                 if (OP(ender) == TAIL) {
9310                     NEXT_OFF(br)= 0;
9311                     RExC_emit= br + 1;
9312                 } else {
9313                     regnode *opt;
9314                     for ( opt= br + 1; opt < ender ; opt++ )
9315                         OP(opt)= OPTIMIZED;
9316                     NEXT_OFF(br)= ender - br;
9317                 }
9318             }
9319         }
9320     }
9321
9322     {
9323         const char *p;
9324         static const char parens[] = "=!<,>";
9325
9326         if (paren && (p = strchr(parens, paren))) {
9327             U8 node = ((p - parens) % 2) ? UNLESSM : IFMATCH;
9328             int flag = (p - parens) > 1;
9329
9330             if (paren == '>')
9331                 node = SUSPEND, flag = 0;
9332             reginsert(pRExC_state, node,ret, depth+1);
9333             Set_Node_Cur_Length(ret);
9334             Set_Node_Offset(ret, parse_start + 1);
9335             ret->flags = flag;
9336             REGTAIL_STUDY(pRExC_state, ret, reg_node(pRExC_state, TAIL));
9337         }
9338     }
9339
9340     /* Check for proper termination. */
9341     if (paren) {
9342         RExC_flags = oregflags;
9343         if (RExC_parse >= RExC_end || *nextchar(pRExC_state) != ')') {
9344             RExC_parse = oregcomp_parse;
9345             vFAIL("Unmatched (");
9346         }
9347     }
9348     else if (!paren && RExC_parse < RExC_end) {
9349         if (*RExC_parse == ')') {
9350             RExC_parse++;
9351             vFAIL("Unmatched )");
9352         }
9353         else
9354             FAIL("Junk on end of regexp");      /* "Can't happen". */
9355         assert(0); /* NOTREACHED */
9356     }
9357
9358     if (RExC_in_lookbehind) {
9359         RExC_in_lookbehind--;
9360     }
9361     if (after_freeze > RExC_npar)
9362         RExC_npar = after_freeze;
9363     return(ret);
9364 }
9365
9366 /*
9367  - regbranch - one alternative of an | operator
9368  *
9369  * Implements the concatenation operator.
9370  */
9371 STATIC regnode *
9372 S_regbranch(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, I32 first, U32 depth)
9373 {
9374     dVAR;
9375     regnode *ret;
9376     regnode *chain = NULL;
9377     regnode *latest;
9378     I32 flags = 0, c = 0;
9379     GET_RE_DEBUG_FLAGS_DECL;
9380
9381     PERL_ARGS_ASSERT_REGBRANCH;
9382
9383     DEBUG_PARSE("brnc");
9384
9385     if (first)
9386         ret = NULL;
9387     else {
9388         if (!SIZE_ONLY && RExC_extralen)
9389             ret = reganode(pRExC_state, BRANCHJ,0);
9390         else {
9391             ret = reg_node(pRExC_state, BRANCH);
9392             Set_Node_Length(ret, 1);
9393         }
9394     }
9395
9396     if (!first && SIZE_ONLY)
9397         RExC_extralen += 1;                     /* BRANCHJ */
9398
9399     *flagp = WORST;                     /* Tentatively. */
9400
9401     RExC_parse--;
9402     nextchar(pRExC_state);
9403     while (RExC_parse < RExC_end && *RExC_parse != '|' && *RExC_parse != ')') {
9404         flags &= ~TRYAGAIN;
9405         latest = regpiece(pRExC_state, &flags,depth+1);
9406         if (latest == NULL) {
9407             if (flags & TRYAGAIN)
9408                 continue;
9409             return(NULL);
9410         }
9411         else if (ret == NULL)
9412             ret = latest;
9413         *flagp |= flags&(HASWIDTH|POSTPONED);
9414         if (chain == NULL)      /* First piece. */
9415             *flagp |= flags&SPSTART;
9416         else {
9417             RExC_naughty++;
9418             REGTAIL(pRExC_state, chain, latest);
9419         }
9420         chain = latest;
9421         c++;
9422     }
9423     if (chain == NULL) {        /* Loop ran zero times. */
9424         chain = reg_node(pRExC_state, NOTHING);
9425         if (ret == NULL)
9426             ret = chain;
9427     }
9428     if (c == 1) {
9429         *flagp |= flags&SIMPLE;
9430     }
9431
9432     return ret;
9433 }
9434
9435 /*
9436  - regpiece - something followed by possible [*+?]
9437  *
9438  * Note that the branching code sequences used for ? and the general cases
9439  * of * and + are somewhat optimized:  they use the same NOTHING node as
9440  * both the endmarker for their branch list and the body of the last branch.
9441  * It might seem that this node could be dispensed with entirely, but the
9442  * endmarker role is not redundant.
9443  */
9444 STATIC regnode *
9445 S_regpiece(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth)
9446 {
9447     dVAR;
9448     regnode *ret;
9449     char op;
9450     char *next;
9451     I32 flags;
9452     const char * const origparse = RExC_parse;
9453     I32 min;
9454     I32 max = REG_INFTY;
9455 #ifdef RE_TRACK_PATTERN_OFFSETS
9456     char *parse_start;
9457 #endif
9458     const char *maxpos = NULL;
9459
9460     /* Save the original in case we change the emitted regop to a FAIL. */
9461     regnode * const orig_emit = RExC_emit;
9462
9463     GET_RE_DEBUG_FLAGS_DECL;
9464
9465     PERL_ARGS_ASSERT_REGPIECE;
9466
9467     DEBUG_PARSE("piec");
9468
9469     ret = regatom(pRExC_state, &flags,depth+1);
9470     if (ret == NULL) {
9471         if (flags & TRYAGAIN)
9472             *flagp |= TRYAGAIN;
9473         return(NULL);
9474     }
9475
9476     op = *RExC_parse;
9477
9478     if (op == '{' && regcurly(RExC_parse)) {
9479         maxpos = NULL;
9480 #ifdef RE_TRACK_PATTERN_OFFSETS
9481         parse_start = RExC_parse; /* MJD */
9482 #endif
9483         next = RExC_parse + 1;
9484         while (isDIGIT(*next) || *next == ',') {
9485             if (*next == ',') {
9486                 if (maxpos)
9487                     break;
9488                 else
9489                     maxpos = next;
9490             }
9491             next++;
9492         }
9493         if (*next == '}') {             /* got one */
9494             if (!maxpos)
9495                 maxpos = next;
9496             RExC_parse++;
9497             min = atoi(RExC_parse);
9498             if (*maxpos == ',')
9499                 maxpos++;
9500             else
9501                 maxpos = RExC_parse;
9502             max = atoi(maxpos);
9503             if (!max && *maxpos != '0')
9504                 max = REG_INFTY;                /* meaning "infinity" */
9505             else if (max >= REG_INFTY)
9506                 vFAIL2("Quantifier in {,} bigger than %d", REG_INFTY - 1);
9507             RExC_parse = next;
9508             nextchar(pRExC_state);
9509             if (max < min) {    /* If can't match, warn and optimize to fail
9510                                    unconditionally */
9511                 if (SIZE_ONLY) {
9512                     ckWARNreg(RExC_parse, "Quantifier {n,m} with n > m can't match");
9513
9514                     /* We can't back off the size because we have to reserve
9515                      * enough space for all the things we are about to throw
9516                      * away, but we can shrink it by the ammount we are about
9517                      * to re-use here */
9518                     RExC_size = PREVOPER(RExC_size) - regarglen[(U8)OPFAIL];
9519                 }
9520                 else {
9521                     RExC_emit = orig_emit;
9522                 }
9523                 ret = reg_node(pRExC_state, OPFAIL);
9524                 return ret;
9525             }
9526
9527         do_curly:
9528             if ((flags&SIMPLE)) {
9529                 RExC_naughty += 2 + RExC_naughty / 2;
9530                 reginsert(pRExC_state, CURLY, ret, depth+1);
9531                 Set_Node_Offset(ret, parse_start+1); /* MJD */
9532                 Set_Node_Cur_Length(ret);
9533             }
9534             else {
9535                 regnode * const w = reg_node(pRExC_state, WHILEM);
9536
9537                 w->flags = 0;
9538                 REGTAIL(pRExC_state, ret, w);
9539                 if (!SIZE_ONLY && RExC_extralen) {
9540                     reginsert(pRExC_state, LONGJMP,ret, depth+1);
9541                     reginsert(pRExC_state, NOTHING,ret, depth+1);
9542                     NEXT_OFF(ret) = 3;  /* Go over LONGJMP. */
9543                 }
9544                 reginsert(pRExC_state, CURLYX,ret, depth+1);
9545                                 /* MJD hk */
9546                 Set_Node_Offset(ret, parse_start+1);
9547                 Set_Node_Length(ret,
9548                                 op == '{' ? (RExC_parse - parse_start) : 1);
9549
9550                 if (!SIZE_ONLY && RExC_extralen)
9551                     NEXT_OFF(ret) = 3;  /* Go over NOTHING to LONGJMP. */
9552                 REGTAIL(pRExC_state, ret, reg_node(pRExC_state, NOTHING));
9553                 if (SIZE_ONLY)
9554                     RExC_whilem_seen++, RExC_extralen += 3;
9555                 RExC_naughty += 4 + RExC_naughty;       /* compound interest */
9556             }
9557             ret->flags = 0;
9558
9559             if (min > 0)
9560                 *flagp = WORST;
9561             if (max > 0)
9562                 *flagp |= HASWIDTH;
9563             if (!SIZE_ONLY) {
9564                 ARG1_SET(ret, (U16)min);
9565                 ARG2_SET(ret, (U16)max);
9566             }
9567
9568             goto nest_check;
9569         }
9570     }
9571
9572     if (!ISMULT1(op)) {
9573         *flagp = flags;
9574         return(ret);
9575     }
9576
9577 #if 0                           /* Now runtime fix should be reliable. */
9578
9579     /* if this is reinstated, don't forget to put this back into perldiag:
9580
9581             =item Regexp *+ operand could be empty at {#} in regex m/%s/
9582
9583            (F) The part of the regexp subject to either the * or + quantifier
9584            could match an empty string. The {#} shows in the regular
9585            expression about where the problem was discovered.
9586
9587     */
9588
9589     if (!(flags&HASWIDTH) && op != '?')
9590       vFAIL("Regexp *+ operand could be empty");
9591 #endif
9592
9593 #ifdef RE_TRACK_PATTERN_OFFSETS
9594     parse_start = RExC_parse;
9595 #endif
9596     nextchar(pRExC_state);
9597
9598     *flagp = (op != '+') ? (WORST|SPSTART|HASWIDTH) : (WORST|HASWIDTH);
9599
9600     if (op == '*' && (flags&SIMPLE)) {
9601         reginsert(pRExC_state, STAR, ret, depth+1);
9602         ret->flags = 0;
9603         RExC_naughty += 4;
9604     }
9605     else if (op == '*') {
9606         min = 0;
9607         goto do_curly;
9608     }
9609     else if (op == '+' && (flags&SIMPLE)) {
9610         reginsert(pRExC_state, PLUS, ret, depth+1);
9611         ret->flags = 0;
9612         RExC_naughty += 3;
9613     }
9614     else if (op == '+') {
9615         min = 1;
9616         goto do_curly;
9617     }
9618     else if (op == '?') {
9619         min = 0; max = 1;
9620         goto do_curly;
9621     }
9622   nest_check:
9623     if (!SIZE_ONLY && !(flags&(HASWIDTH|POSTPONED)) && max > REG_INFTY/3) {
9624         ckWARN3reg(RExC_parse,
9625                    "%.*s matches null string many times",
9626                    (int)(RExC_parse >= origparse ? RExC_parse - origparse : 0),
9627                    origparse);
9628     }
9629
9630     if (RExC_parse < RExC_end && *RExC_parse == '?') {
9631         nextchar(pRExC_state);
9632         reginsert(pRExC_state, MINMOD, ret, depth+1);
9633         REGTAIL(pRExC_state, ret, ret + NODE_STEP_REGNODE);
9634     }
9635 #ifndef REG_ALLOW_MINMOD_SUSPEND
9636     else
9637 #endif
9638     if (RExC_parse < RExC_end && *RExC_parse == '+') {
9639         regnode *ender;
9640         nextchar(pRExC_state);
9641         ender = reg_node(pRExC_state, SUCCEED);
9642         REGTAIL(pRExC_state, ret, ender);
9643         reginsert(pRExC_state, SUSPEND, ret, depth+1);
9644         ret->flags = 0;
9645         ender = reg_node(pRExC_state, TAIL);
9646         REGTAIL(pRExC_state, ret, ender);
9647         /*ret= ender;*/
9648     }
9649
9650     if (RExC_parse < RExC_end && ISMULT2(RExC_parse)) {
9651         RExC_parse++;
9652         vFAIL("Nested quantifiers");
9653     }
9654
9655     return(ret);
9656 }
9657
9658 STATIC bool
9659 S_grok_bslash_N(pTHX_ RExC_state_t *pRExC_state, regnode** node_p, UV *valuep, I32 *flagp, U32 depth, bool in_char_class)
9660 {
9661    
9662  /* This is expected to be called by a parser routine that has recognized '\N'
9663    and needs to handle the rest. RExC_parse is expected to point at the first
9664    char following the N at the time of the call.  On successful return,
9665    RExC_parse has been updated to point to just after the sequence identified
9666    by this routine, and <*flagp> has been updated.
9667
9668    The \N may be inside (indicated by the boolean <in_char_class>) or outside a
9669    character class.
9670
9671    \N may begin either a named sequence, or if outside a character class, mean
9672    to match a non-newline.  For non single-quoted regexes, the tokenizer has
9673    attempted to decide which, and in the case of a named sequence, converted it
9674    into one of the forms: \N{} (if the sequence is null), or \N{U+c1.c2...},
9675    where c1... are the characters in the sequence.  For single-quoted regexes,
9676    the tokenizer passes the \N sequence through unchanged; this code will not
9677    attempt to determine this nor expand those, instead raising a syntax error.
9678    The net effect is that if the beginning of the passed-in pattern isn't '{U+'
9679    or there is no '}', it signals that this \N occurrence means to match a
9680    non-newline.
9681
9682    Only the \N{U+...} form should occur in a character class, for the same
9683    reason that '.' inside a character class means to just match a period: it
9684    just doesn't make sense.
9685
9686    The function raises an error (via vFAIL), and doesn't return for various
9687    syntax errors.  Otherwise it returns TRUE and sets <node_p> or <valuep> on
9688    success; it returns FALSE otherwise.
9689
9690    If <valuep> is non-null, it means the caller can accept an input sequence
9691    consisting of a just a single code point; <*valuep> is set to that value
9692    if the input is such.
9693
9694    If <node_p> is non-null it signifies that the caller can accept any other
9695    legal sequence (i.e., one that isn't just a single code point).  <*node_p>
9696    is set as follows:
9697     1) \N means not-a-NL: points to a newly created REG_ANY node;
9698     2) \N{}:              points to a new NOTHING node;
9699     3) otherwise:         points to a new EXACT node containing the resolved
9700                           string.
9701    Note that FALSE is returned for single code point sequences if <valuep> is
9702    null.
9703  */
9704
9705     char * endbrace;    /* '}' following the name */
9706     char* p;
9707     char *endchar;      /* Points to '.' or '}' ending cur char in the input
9708                            stream */
9709     bool has_multiple_chars; /* true if the input stream contains a sequence of
9710                                 more than one character */
9711
9712     GET_RE_DEBUG_FLAGS_DECL;
9713  
9714     PERL_ARGS_ASSERT_GROK_BSLASH_N;
9715
9716     GET_RE_DEBUG_FLAGS;
9717
9718     assert(cBOOL(node_p) ^ cBOOL(valuep));  /* Exactly one should be set */
9719
9720     /* The [^\n] meaning of \N ignores spaces and comments under the /x
9721      * modifier.  The other meaning does not */
9722     p = (RExC_flags & RXf_PMf_EXTENDED)
9723         ? regwhite( pRExC_state, RExC_parse )
9724         : RExC_parse;
9725
9726     /* Disambiguate between \N meaning a named character versus \N meaning
9727      * [^\n].  The former is assumed when it can't be the latter. */
9728     if (*p != '{' || regcurly(p)) {
9729         RExC_parse = p;
9730         if (! node_p) {
9731             /* no bare \N in a charclass */
9732             if (in_char_class) {
9733                 vFAIL("\\N in a character class must be a named character: \\N{...}");
9734             }
9735             return FALSE;
9736         }
9737         nextchar(pRExC_state);
9738         *node_p = reg_node(pRExC_state, REG_ANY);
9739         *flagp |= HASWIDTH|SIMPLE;
9740         RExC_naughty++;
9741         RExC_parse--;
9742         Set_Node_Length(*node_p, 1); /* MJD */
9743         return TRUE;
9744     }
9745
9746     /* Here, we have decided it should be a named character or sequence */
9747
9748     /* The test above made sure that the next real character is a '{', but
9749      * under the /x modifier, it could be separated by space (or a comment and
9750      * \n) and this is not allowed (for consistency with \x{...} and the
9751      * tokenizer handling of \N{NAME}). */
9752     if (*RExC_parse != '{') {
9753         vFAIL("Missing braces on \\N{}");
9754     }
9755
9756     RExC_parse++;       /* Skip past the '{' */
9757
9758     if (! (endbrace = strchr(RExC_parse, '}')) /* no trailing brace */
9759         || ! (endbrace == RExC_parse            /* nothing between the {} */
9760               || (endbrace - RExC_parse >= 2    /* U+ (bad hex is checked below */
9761                   && strnEQ(RExC_parse, "U+", 2)))) /* for a better error msg) */
9762     {
9763         if (endbrace) RExC_parse = endbrace;    /* position msg's '<--HERE' */
9764         vFAIL("\\N{NAME} must be resolved by the lexer");
9765     }
9766
9767     if (endbrace == RExC_parse) {   /* empty: \N{} */
9768         bool ret = TRUE;
9769         if (node_p) {
9770             *node_p = reg_node(pRExC_state,NOTHING);
9771         }
9772         else if (in_char_class) {
9773             if (SIZE_ONLY && in_char_class) {
9774                 ckWARNreg(RExC_parse,
9775                         "Ignoring zero length \\N{} in character class"
9776                 );
9777             }
9778             ret = FALSE;
9779         }
9780         else {
9781             return FALSE;
9782         }
9783         nextchar(pRExC_state);
9784         return ret;
9785     }
9786
9787     RExC_uni_semantics = 1; /* Unicode named chars imply Unicode semantics */
9788     RExC_parse += 2;    /* Skip past the 'U+' */
9789
9790     endchar = RExC_parse + strcspn(RExC_parse, ".}");
9791
9792     /* Code points are separated by dots.  If none, there is only one code
9793      * point, and is terminated by the brace */
9794     has_multiple_chars = (endchar < endbrace);
9795
9796     if (valuep && (! has_multiple_chars || in_char_class)) {
9797         /* We only pay attention to the first char of
9798         multichar strings being returned in char classes. I kinda wonder
9799         if this makes sense as it does change the behaviour
9800         from earlier versions, OTOH that behaviour was broken
9801         as well. XXX Solution is to recharacterize as
9802         [rest-of-class]|multi1|multi2... */
9803
9804         STRLEN length_of_hex = (STRLEN)(endchar - RExC_parse);
9805         I32 grok_hex_flags = PERL_SCAN_ALLOW_UNDERSCORES
9806             | PERL_SCAN_DISALLOW_PREFIX
9807             | (SIZE_ONLY ? PERL_SCAN_SILENT_ILLDIGIT : 0);
9808
9809         *valuep = grok_hex(RExC_parse, &length_of_hex, &grok_hex_flags, NULL);
9810
9811         /* The tokenizer should have guaranteed validity, but it's possible to
9812          * bypass it by using single quoting, so check */
9813         if (length_of_hex == 0
9814             || length_of_hex != (STRLEN)(endchar - RExC_parse) )
9815         {
9816             RExC_parse += length_of_hex;        /* Includes all the valid */
9817             RExC_parse += (RExC_orig_utf8)      /* point to after 1st invalid */
9818                             ? UTF8SKIP(RExC_parse)
9819                             : 1;
9820             /* Guard against malformed utf8 */
9821             if (RExC_parse >= endchar) {
9822                 RExC_parse = endchar;
9823             }
9824             vFAIL("Invalid hexadecimal number in \\N{U+...}");
9825         }
9826
9827         if (in_char_class && has_multiple_chars) {
9828             ckWARNreg(endchar, "Using just the first character returned by \\N{} in character class");
9829         }
9830         RExC_parse = endbrace + 1;
9831     }
9832     else if (! node_p || ! has_multiple_chars) {
9833
9834         /* Here, the input is legal, but not according to the caller's
9835          * options.  We fail without advancing the parse, so that the
9836          * caller can try again */
9837         RExC_parse = p;
9838         return FALSE;
9839     }
9840     else {
9841
9842         /* What is done here is to convert this to a sub-pattern of the form
9843          * (?:\x{char1}\x{char2}...)
9844          * and then call reg recursively.  That way, it retains its atomicness,
9845          * while not having to worry about special handling that some code
9846          * points may have.  toke.c has converted the original Unicode values
9847          * to native, so that we can just pass on the hex values unchanged.  We
9848          * do have to set a flag to keep recoding from happening in the
9849          * recursion */
9850
9851         SV * substitute_parse = newSVpvn_flags("?:", 2, SVf_UTF8|SVs_TEMP);
9852         STRLEN len;
9853         char *orig_end = RExC_end;
9854         I32 flags;
9855
9856         while (RExC_parse < endbrace) {
9857
9858             /* Convert to notation the rest of the code understands */
9859             sv_catpv(substitute_parse, "\\x{");
9860             sv_catpvn(substitute_parse, RExC_parse, endchar - RExC_parse);
9861             sv_catpv(substitute_parse, "}");
9862
9863             /* Point to the beginning of the next character in the sequence. */
9864             RExC_parse = endchar + 1;
9865             endchar = RExC_parse + strcspn(RExC_parse, ".}");
9866         }
9867         sv_catpv(substitute_parse, ")");
9868
9869         RExC_parse = SvPV(substitute_parse, len);
9870
9871         /* Don't allow empty number */
9872         if (len < 8) {
9873             vFAIL("Invalid hexadecimal number in \\N{U+...}");
9874         }
9875         RExC_end = RExC_parse + len;
9876
9877         /* The values are Unicode, and therefore not subject to recoding */
9878         RExC_override_recoding = 1;
9879
9880         *node_p = reg(pRExC_state, 1, &flags, depth+1);
9881         *flagp |= flags&(HASWIDTH|SPSTART|SIMPLE|POSTPONED);
9882
9883         RExC_parse = endbrace;
9884         RExC_end = orig_end;
9885         RExC_override_recoding = 0;
9886
9887         nextchar(pRExC_state);
9888     }
9889
9890     return TRUE;
9891 }
9892
9893
9894 /*
9895  * reg_recode
9896  *
9897  * It returns the code point in utf8 for the value in *encp.
9898  *    value: a code value in the source encoding
9899  *    encp:  a pointer to an Encode object
9900  *
9901  * If the result from Encode is not a single character,
9902  * it returns U+FFFD (Replacement character) and sets *encp to NULL.
9903  */
9904 STATIC UV
9905 S_reg_recode(pTHX_ const char value, SV **encp)
9906 {
9907     STRLEN numlen = 1;
9908     SV * const sv = newSVpvn_flags(&value, numlen, SVs_TEMP);
9909     const char * const s = *encp ? sv_recode_to_utf8(sv, *encp) : SvPVX(sv);
9910     const STRLEN newlen = SvCUR(sv);
9911     UV uv = UNICODE_REPLACEMENT;
9912
9913     PERL_ARGS_ASSERT_REG_RECODE;
9914
9915     if (newlen)
9916         uv = SvUTF8(sv)
9917              ? utf8n_to_uvchr((U8*)s, newlen, &numlen, UTF8_ALLOW_DEFAULT)
9918              : *(U8*)s;
9919
9920     if (!newlen || numlen != newlen) {
9921         uv = UNICODE_REPLACEMENT;
9922         *encp = NULL;
9923     }
9924     return uv;
9925 }
9926
9927 PERL_STATIC_INLINE U8
9928 S_compute_EXACTish(pTHX_ RExC_state_t *pRExC_state)
9929 {
9930     U8 op;
9931
9932     PERL_ARGS_ASSERT_COMPUTE_EXACTISH;
9933
9934     if (! FOLD) {
9935         return EXACT;
9936     }
9937
9938     op = get_regex_charset(RExC_flags);
9939     if (op >= REGEX_ASCII_RESTRICTED_CHARSET) {
9940         op--; /* /a is same as /u, and map /aa's offset to what /a's would have
9941                  been, so there is no hole */
9942     }
9943
9944     return op + EXACTF;
9945 }
9946
9947 PERL_STATIC_INLINE void
9948 S_alloc_maybe_populate_EXACT(pTHX_ RExC_state_t *pRExC_state, regnode *node, I32* flagp, STRLEN len, UV code_point)
9949 {
9950     /* This knows the details about sizing an EXACTish node, setting flags for
9951      * it (by setting <*flagp>, and potentially populating it with a single
9952      * character.
9953      *
9954      * If <len> is non-zero, this function assumes that the node has already
9955      * been populated, and just does the sizing.  In this case <code_point>
9956      * should be the final code point that has already been placed into the
9957      * node.  This value will be ignored except that under some circumstances
9958      * <*flagp> is set based on it.
9959      *
9960      * If <len is zero, the function assumes that the node is to contain only
9961      * the single character given by <code_point> and calculates what <len>
9962      * should be.  In pass 1, it sizes the node appropriately.  In pass 2, it
9963      * additionally will populate the node's STRING with <code_point>, if <len>
9964      * is 0.  In both cases <*flagp> is appropriately set
9965      *
9966      * It knows that under FOLD, UTF characters and the Latin Sharp S must be
9967      * folded (the latter only when the rules indicate it can match 'ss') */
9968
9969     bool len_passed_in = cBOOL(len != 0);
9970     U8 character[UTF8_MAXBYTES_CASE+1];
9971
9972     PERL_ARGS_ASSERT_ALLOC_MAYBE_POPULATE_EXACT;
9973
9974     if (! len_passed_in) {
9975         if (UTF) {
9976             if (FOLD) {
9977                 to_uni_fold(NATIVE_TO_UNI(code_point), character, &len);
9978             }
9979             else {
9980                 uvchr_to_utf8( character, code_point);
9981                 len = UTF8SKIP(character);
9982             }
9983         }
9984         else if (! FOLD
9985                  || code_point != LATIN_SMALL_LETTER_SHARP_S
9986                  || ASCII_FOLD_RESTRICTED
9987                  || ! AT_LEAST_UNI_SEMANTICS)
9988         {
9989             *character = (U8) code_point;
9990             len = 1;
9991         }
9992         else {
9993             *character = 's';
9994             *(character + 1) = 's';
9995             len = 2;
9996         }
9997     }
9998
9999     if (SIZE_ONLY) {
10000         RExC_size += STR_SZ(len);
10001     }
10002     else {
10003         RExC_emit += STR_SZ(len);
10004         STR_LEN(node) = len;
10005         if (! len_passed_in) {
10006             Copy((char *) character, STRING(node), len, char);
10007         }
10008     }
10009
10010     *flagp |= HASWIDTH;
10011     if (len == 1 && UNI_IS_INVARIANT(code_point))
10012         *flagp |= SIMPLE;
10013 }
10014
10015 /*
10016  - regatom - the lowest level
10017
10018    Try to identify anything special at the start of the pattern. If there
10019    is, then handle it as required. This may involve generating a single regop,
10020    such as for an assertion; or it may involve recursing, such as to
10021    handle a () structure.
10022
10023    If the string doesn't start with something special then we gobble up
10024    as much literal text as we can.
10025
10026    Once we have been able to handle whatever type of thing started the
10027    sequence, we return.
10028
10029    Note: we have to be careful with escapes, as they can be both literal
10030    and special, and in the case of \10 and friends, context determines which.
10031
10032    A summary of the code structure is:
10033
10034    switch (first_byte) {
10035         cases for each special:
10036             handle this special;
10037             break;
10038         case '\\':
10039             switch (2nd byte) {
10040                 cases for each unambiguous special:
10041                     handle this special;
10042                     break;
10043                 cases for each ambigous special/literal:
10044                     disambiguate;
10045                     if (special)  handle here
10046                     else goto defchar;
10047                 default: // unambiguously literal:
10048                     goto defchar;
10049             }
10050         default:  // is a literal char
10051             // FALL THROUGH
10052         defchar:
10053             create EXACTish node for literal;
10054             while (more input and node isn't full) {
10055                 switch (input_byte) {
10056                    cases for each special;
10057                        make sure parse pointer is set so that the next call to
10058                            regatom will see this special first
10059                        goto loopdone; // EXACTish node terminated by prev. char
10060                    default:
10061                        append char to EXACTISH node;
10062                 }
10063                 get next input byte;
10064             }
10065         loopdone:
10066    }
10067    return the generated node;
10068
10069    Specifically there are two separate switches for handling
10070    escape sequences, with the one for handling literal escapes requiring
10071    a dummy entry for all of the special escapes that are actually handled
10072    by the other.
10073 */
10074
10075 STATIC regnode *
10076 S_regatom(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth)
10077 {
10078     dVAR;
10079     regnode *ret = NULL;
10080     I32 flags;
10081     char *parse_start = RExC_parse;
10082     U8 op;
10083     GET_RE_DEBUG_FLAGS_DECL;
10084     DEBUG_PARSE("atom");
10085     *flagp = WORST;             /* Tentatively. */
10086
10087     PERL_ARGS_ASSERT_REGATOM;
10088
10089 tryagain:
10090     switch ((U8)*RExC_parse) {
10091     case '^':
10092         RExC_seen_zerolen++;
10093         nextchar(pRExC_state);
10094         if (RExC_flags & RXf_PMf_MULTILINE)
10095             ret = reg_node(pRExC_state, MBOL);
10096         else if (RExC_flags & RXf_PMf_SINGLELINE)
10097             ret = reg_node(pRExC_state, SBOL);
10098         else
10099             ret = reg_node(pRExC_state, BOL);
10100         Set_Node_Length(ret, 1); /* MJD */
10101         break;
10102     case '$':
10103         nextchar(pRExC_state);
10104         if (*RExC_parse)
10105             RExC_seen_zerolen++;
10106         if (RExC_flags & RXf_PMf_MULTILINE)
10107             ret = reg_node(pRExC_state, MEOL);
10108         else if (RExC_flags & RXf_PMf_SINGLELINE)
10109             ret = reg_node(pRExC_state, SEOL);
10110         else
10111             ret = reg_node(pRExC_state, EOL);
10112         Set_Node_Length(ret, 1); /* MJD */
10113         break;
10114     case '.':
10115         nextchar(pRExC_state);
10116         if (RExC_flags & RXf_PMf_SINGLELINE)
10117             ret = reg_node(pRExC_state, SANY);
10118         else
10119             ret = reg_node(pRExC_state, REG_ANY);
10120         *flagp |= HASWIDTH|SIMPLE;
10121         RExC_naughty++;
10122         Set_Node_Length(ret, 1); /* MJD */
10123         break;
10124     case '[':
10125     {
10126         char * const oregcomp_parse = ++RExC_parse;
10127         ret = regclass(pRExC_state, flagp,depth+1);
10128         if (*RExC_parse != ']') {
10129             RExC_parse = oregcomp_parse;
10130             vFAIL("Unmatched [");
10131         }
10132         nextchar(pRExC_state);
10133         Set_Node_Length(ret, RExC_parse - oregcomp_parse + 1); /* MJD */
10134         break;
10135     }
10136     case '(':
10137         nextchar(pRExC_state);
10138         ret = reg(pRExC_state, 1, &flags,depth+1);
10139         if (ret == NULL) {
10140                 if (flags & TRYAGAIN) {
10141                     if (RExC_parse == RExC_end) {
10142                          /* Make parent create an empty node if needed. */
10143                         *flagp |= TRYAGAIN;
10144                         return(NULL);
10145                     }
10146                     goto tryagain;
10147                 }
10148                 return(NULL);
10149         }
10150         *flagp |= flags&(HASWIDTH|SPSTART|SIMPLE|POSTPONED);
10151         break;
10152     case '|':
10153     case ')':
10154         if (flags & TRYAGAIN) {
10155             *flagp |= TRYAGAIN;
10156             return NULL;
10157         }
10158         vFAIL("Internal urp");
10159                                 /* Supposed to be caught earlier. */
10160         break;
10161     case '?':
10162     case '+':
10163     case '*':
10164         RExC_parse++;
10165         vFAIL("Quantifier follows nothing");
10166         break;
10167     case '\\':
10168         /* Special Escapes
10169
10170            This switch handles escape sequences that resolve to some kind
10171            of special regop and not to literal text. Escape sequnces that
10172            resolve to literal text are handled below in the switch marked
10173            "Literal Escapes".
10174
10175            Every entry in this switch *must* have a corresponding entry
10176            in the literal escape switch. However, the opposite is not
10177            required, as the default for this switch is to jump to the
10178            literal text handling code.
10179         */
10180         switch ((U8)*++RExC_parse) {
10181         /* Special Escapes */
10182         case 'A':
10183             RExC_seen_zerolen++;
10184             ret = reg_node(pRExC_state, SBOL);
10185             *flagp |= SIMPLE;
10186             goto finish_meta_pat;
10187         case 'G':
10188             ret = reg_node(pRExC_state, GPOS);
10189             RExC_seen |= REG_SEEN_GPOS;
10190             *flagp |= SIMPLE;
10191             goto finish_meta_pat;
10192         case 'K':
10193             RExC_seen_zerolen++;
10194             ret = reg_node(pRExC_state, KEEPS);
10195             *flagp |= SIMPLE;
10196             /* XXX:dmq : disabling in-place substitution seems to
10197              * be necessary here to avoid cases of memory corruption, as
10198              * with: C<$_="x" x 80; s/x\K/y/> -- rgs
10199              */
10200             RExC_seen |= REG_SEEN_LOOKBEHIND;
10201             goto finish_meta_pat;
10202         case 'Z':
10203             ret = reg_node(pRExC_state, SEOL);
10204             *flagp |= SIMPLE;
10205             RExC_seen_zerolen++;                /* Do not optimize RE away */
10206             goto finish_meta_pat;
10207         case 'z':
10208             ret = reg_node(pRExC_state, EOS);
10209             *flagp |= SIMPLE;
10210             RExC_seen_zerolen++;                /* Do not optimize RE away */
10211             goto finish_meta_pat;
10212         case 'C':
10213             ret = reg_node(pRExC_state, CANY);
10214             RExC_seen |= REG_SEEN_CANY;
10215             *flagp |= HASWIDTH|SIMPLE;
10216             goto finish_meta_pat;
10217         case 'X':
10218             ret = reg_node(pRExC_state, CLUMP);
10219             *flagp |= HASWIDTH;
10220             goto finish_meta_pat;
10221         case 'w':
10222             op = ALNUM + get_regex_charset(RExC_flags);
10223             if (op > ALNUMA) {  /* /aa is same as /a */
10224                 op = ALNUMA;
10225             }
10226             ret = reg_node(pRExC_state, op);
10227             *flagp |= HASWIDTH|SIMPLE;
10228             goto finish_meta_pat;
10229         case 'W':
10230             op = NALNUM + get_regex_charset(RExC_flags);
10231             if (op > NALNUMA) { /* /aa is same as /a */
10232                 op = NALNUMA;
10233             }
10234             ret = reg_node(pRExC_state, op);
10235             *flagp |= HASWIDTH|SIMPLE;
10236             goto finish_meta_pat;
10237         case 'b':
10238             RExC_seen_zerolen++;
10239             RExC_seen |= REG_SEEN_LOOKBEHIND;
10240             op = BOUND + get_regex_charset(RExC_flags);
10241             if (op > BOUNDA) {  /* /aa is same as /a */
10242                 op = BOUNDA;
10243             }
10244             ret = reg_node(pRExC_state, op);
10245             FLAGS(ret) = get_regex_charset(RExC_flags);
10246             *flagp |= SIMPLE;
10247             goto finish_meta_pat;
10248         case 'B':
10249             RExC_seen_zerolen++;
10250             RExC_seen |= REG_SEEN_LOOKBEHIND;
10251             op = NBOUND + get_regex_charset(RExC_flags);
10252             if (op > NBOUNDA) { /* /aa is same as /a */
10253                 op = NBOUNDA;
10254             }
10255             ret = reg_node(pRExC_state, op);
10256             FLAGS(ret) = get_regex_charset(RExC_flags);
10257             *flagp |= SIMPLE;
10258             goto finish_meta_pat;
10259         case 's':
10260             op = SPACE + get_regex_charset(RExC_flags);
10261             if (op > SPACEA) {  /* /aa is same as /a */
10262                 op = SPACEA;
10263             }
10264             ret = reg_node(pRExC_state, op);
10265             *flagp |= HASWIDTH|SIMPLE;
10266             goto finish_meta_pat;
10267         case 'S':
10268             op = NSPACE + get_regex_charset(RExC_flags);
10269             if (op > NSPACEA) { /* /aa is same as /a */
10270                 op = NSPACEA;
10271             }
10272             ret = reg_node(pRExC_state, op);
10273             *flagp |= HASWIDTH|SIMPLE;
10274             goto finish_meta_pat;
10275         case 'D':
10276             op = NDIGIT;
10277             goto join_D_and_d;
10278         case 'd':
10279             op = DIGIT;
10280         join_D_and_d:
10281             {
10282                 U8 offset = get_regex_charset(RExC_flags);
10283                 if (offset == REGEX_UNICODE_CHARSET) {
10284                     offset = REGEX_DEPENDS_CHARSET;
10285                 }
10286                 else if (offset == REGEX_ASCII_MORE_RESTRICTED_CHARSET) {
10287                     offset = REGEX_ASCII_RESTRICTED_CHARSET;
10288                 }
10289                 op += offset;
10290             }
10291             ret = reg_node(pRExC_state, op);
10292             *flagp |= HASWIDTH|SIMPLE;
10293             goto finish_meta_pat;
10294         case 'R':
10295             ret = reg_node(pRExC_state, LNBREAK);
10296             *flagp |= HASWIDTH|SIMPLE;
10297             goto finish_meta_pat;
10298         case 'h':
10299             ret = reg_node(pRExC_state, HORIZWS);
10300             *flagp |= HASWIDTH|SIMPLE;
10301             goto finish_meta_pat;
10302         case 'H':
10303             ret = reg_node(pRExC_state, NHORIZWS);
10304             *flagp |= HASWIDTH|SIMPLE;
10305             goto finish_meta_pat;
10306         case 'v':
10307             ret = reg_node(pRExC_state, VERTWS);
10308             *flagp |= HASWIDTH|SIMPLE;
10309             goto finish_meta_pat;
10310         case 'V':
10311             ret = reg_node(pRExC_state, NVERTWS);
10312             *flagp |= HASWIDTH|SIMPLE;
10313          finish_meta_pat:           
10314             nextchar(pRExC_state);
10315             Set_Node_Length(ret, 2); /* MJD */
10316             break;          
10317         case 'p':
10318         case 'P':
10319             {
10320                 char* const oldregxend = RExC_end;
10321 #ifdef DEBUGGING
10322                 char* parse_start = RExC_parse - 2;
10323 #endif
10324
10325                 if (RExC_parse[1] == '{') {
10326                   /* a lovely hack--pretend we saw [\pX] instead */
10327                     RExC_end = strchr(RExC_parse, '}');
10328                     if (!RExC_end) {
10329                         const U8 c = (U8)*RExC_parse;
10330                         RExC_parse += 2;
10331                         RExC_end = oldregxend;
10332                         vFAIL2("Missing right brace on \\%c{}", c);
10333                     }
10334                     RExC_end++;
10335                 }
10336                 else {
10337                     RExC_end = RExC_parse + 2;
10338                     if (RExC_end > oldregxend)
10339                         RExC_end = oldregxend;
10340                 }
10341                 RExC_parse--;
10342
10343                 ret = regclass(pRExC_state, flagp,depth+1);
10344
10345                 RExC_end = oldregxend;
10346                 RExC_parse--;
10347
10348                 Set_Node_Offset(ret, parse_start + 2);
10349                 Set_Node_Cur_Length(ret);
10350                 nextchar(pRExC_state);
10351             }
10352             break;
10353         case 'N': 
10354             /* Handle \N and \N{NAME} with multiple code points here and not
10355              * below because it can be multicharacter. join_exact() will join
10356              * them up later on.  Also this makes sure that things like
10357              * /\N{BLAH}+/ and \N{BLAH} being multi char Just Happen. dmq.
10358              * The options to the grok function call causes it to fail if the
10359              * sequence is just a single code point.  We then go treat it as
10360              * just another character in the current EXACT node, and hence it
10361              * gets uniform treatment with all the other characters.  The
10362              * special treatment for quantifiers is not needed for such single
10363              * character sequences */
10364             ++RExC_parse;
10365             if (! grok_bslash_N(pRExC_state, &ret, NULL, flagp, depth, FALSE)) {
10366                 RExC_parse--;
10367                 goto defchar;
10368             }
10369             break;
10370         case 'k':    /* Handle \k<NAME> and \k'NAME' */
10371         parse_named_seq:
10372         {   
10373             char ch= RExC_parse[1];         
10374             if (ch != '<' && ch != '\'' && ch != '{') {
10375                 RExC_parse++;
10376                 vFAIL2("Sequence %.2s... not terminated",parse_start);
10377             } else {
10378                 /* this pretty much dupes the code for (?P=...) in reg(), if
10379                    you change this make sure you change that */
10380                 char* name_start = (RExC_parse += 2);
10381                 U32 num = 0;
10382                 SV *sv_dat = reg_scan_name(pRExC_state,
10383                     SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
10384                 ch= (ch == '<') ? '>' : (ch == '{') ? '}' : '\'';
10385                 if (RExC_parse == name_start || *RExC_parse != ch)
10386                     vFAIL2("Sequence %.3s... not terminated",parse_start);
10387
10388                 if (!SIZE_ONLY) {
10389                     num = add_data( pRExC_state, 1, "S" );
10390                     RExC_rxi->data->data[num]=(void*)sv_dat;
10391                     SvREFCNT_inc_simple_void(sv_dat);
10392                 }
10393
10394                 RExC_sawback = 1;
10395                 ret = reganode(pRExC_state,
10396                                ((! FOLD)
10397                                  ? NREF
10398                                  : (ASCII_FOLD_RESTRICTED)
10399                                    ? NREFFA
10400                                    : (AT_LEAST_UNI_SEMANTICS)
10401                                      ? NREFFU
10402                                      : (LOC)
10403                                        ? NREFFL
10404                                        : NREFF),
10405                                 num);
10406                 *flagp |= HASWIDTH;
10407
10408                 /* override incorrect value set in reganode MJD */
10409                 Set_Node_Offset(ret, parse_start+1);
10410                 Set_Node_Cur_Length(ret); /* MJD */
10411                 nextchar(pRExC_state);
10412
10413             }
10414             break;
10415         }
10416         case 'g': 
10417         case '1': case '2': case '3': case '4':
10418         case '5': case '6': case '7': case '8': case '9':
10419             {
10420                 I32 num;
10421                 bool isg = *RExC_parse == 'g';
10422                 bool isrel = 0; 
10423                 bool hasbrace = 0;
10424                 if (isg) {
10425                     RExC_parse++;
10426                     if (*RExC_parse == '{') {
10427                         RExC_parse++;
10428                         hasbrace = 1;
10429                     }
10430                     if (*RExC_parse == '-') {
10431                         RExC_parse++;
10432                         isrel = 1;
10433                     }
10434                     if (hasbrace && !isDIGIT(*RExC_parse)) {
10435                         if (isrel) RExC_parse--;
10436                         RExC_parse -= 2;                            
10437                         goto parse_named_seq;
10438                 }   }
10439                 num = atoi(RExC_parse);
10440                 if (isg && num == 0)
10441                     vFAIL("Reference to invalid group 0");
10442                 if (isrel) {
10443                     num = RExC_npar - num;
10444                     if (num < 1)
10445                         vFAIL("Reference to nonexistent or unclosed group");
10446                 }
10447                 if (!isg && num > 9 && num >= RExC_npar)
10448                     /* Probably a character specified in octal, e.g. \35 */
10449                     goto defchar;
10450                 else {
10451                     char * const parse_start = RExC_parse - 1; /* MJD */
10452                     while (isDIGIT(*RExC_parse))
10453                         RExC_parse++;
10454                     if (parse_start == RExC_parse - 1) 
10455                         vFAIL("Unterminated \\g... pattern");
10456                     if (hasbrace) {
10457                         if (*RExC_parse != '}') 
10458                             vFAIL("Unterminated \\g{...} pattern");
10459                         RExC_parse++;
10460                     }    
10461                     if (!SIZE_ONLY) {
10462                         if (num > (I32)RExC_rx->nparens)
10463                             vFAIL("Reference to nonexistent group");
10464                     }
10465                     RExC_sawback = 1;
10466                     ret = reganode(pRExC_state,
10467                                    ((! FOLD)
10468                                      ? REF
10469                                      : (ASCII_FOLD_RESTRICTED)
10470                                        ? REFFA
10471                                        : (AT_LEAST_UNI_SEMANTICS)
10472                                          ? REFFU
10473                                          : (LOC)
10474                                            ? REFFL
10475                                            : REFF),
10476                                     num);
10477                     *flagp |= HASWIDTH;
10478
10479                     /* override incorrect value set in reganode MJD */
10480                     Set_Node_Offset(ret, parse_start+1);
10481                     Set_Node_Cur_Length(ret); /* MJD */
10482                     RExC_parse--;
10483                     nextchar(pRExC_state);
10484                 }
10485             }
10486             break;
10487         case '\0':
10488             if (RExC_parse >= RExC_end)
10489                 FAIL("Trailing \\");
10490             /* FALL THROUGH */
10491         default:
10492             /* Do not generate "unrecognized" warnings here, we fall
10493                back into the quick-grab loop below */
10494             parse_start--;
10495             goto defchar;
10496         }
10497         break;
10498
10499     case '#':
10500         if (RExC_flags & RXf_PMf_EXTENDED) {
10501             if ( reg_skipcomment( pRExC_state ) )
10502                 goto tryagain;
10503         }
10504         /* FALL THROUGH */
10505
10506     default:
10507
10508             parse_start = RExC_parse - 1;
10509
10510             RExC_parse++;
10511
10512         defchar: {
10513             STRLEN len = 0;
10514             UV ender;
10515             char *p;
10516             char *s;
10517 #define MAX_NODE_STRING_SIZE 127
10518             char foldbuf[MAX_NODE_STRING_SIZE+UTF8_MAXBYTES_CASE];
10519             char *s0;
10520             U8 upper_parse = MAX_NODE_STRING_SIZE;
10521             STRLEN foldlen;
10522             U8 node_type;
10523             bool next_is_quantifier;
10524             char * oldp = NULL;
10525
10526             ender = 0;
10527             node_type = compute_EXACTish(pRExC_state);
10528             ret = reg_node(pRExC_state, node_type);
10529
10530             /* In pass1, folded, we use a temporary buffer instead of the
10531              * actual node, as the node doesn't exist yet */
10532             s = (SIZE_ONLY && FOLD) ? foldbuf : STRING(ret);
10533
10534             s0 = s;
10535
10536         reparse:
10537
10538             /* XXX The node can hold up to 255 bytes, yet this only goes to
10539              * 127.  I (khw) do not know why.  Keeping it somewhat less than
10540              * 255 allows us to not have to worry about overflow due to
10541              * converting to utf8 and fold expansion, but that value is
10542              * 255-UTF8_MAXBYTES_CASE.  join_exact() may join adjacent nodes
10543              * split up by this limit into a single one using the real max of
10544              * 255.  Even at 127, this breaks under rare circumstances.  If
10545              * folding, we do not want to split a node at a character that is a
10546              * non-final in a multi-char fold, as an input string could just
10547              * happen to want to match across the node boundary.  The join
10548              * would solve that problem if the join actually happens.  But a
10549              * series of more than two nodes in a row each of 127 would cause
10550              * the first join to succeed to get to 254, but then there wouldn't
10551              * be room for the next one, which could at be one of those split
10552              * multi-char folds.  I don't know of any fool-proof solution.  One
10553              * could back off to end with only a code point that isn't such a
10554              * non-final, but it is possible for there not to be any in the
10555              * entire node. */
10556             for (p = RExC_parse - 1;
10557                  len < upper_parse && p < RExC_end;
10558                  len++)
10559             {
10560                 oldp = p;
10561
10562                 if (RExC_flags & RXf_PMf_EXTENDED)
10563                     p = regwhite( pRExC_state, p );
10564                 switch ((U8)*p) {
10565                 case '^':
10566                 case '$':
10567                 case '.':
10568                 case '[':
10569                 case '(':
10570                 case ')':
10571                 case '|':
10572                     goto loopdone;
10573                 case '\\':
10574                     /* Literal Escapes Switch
10575
10576                        This switch is meant to handle escape sequences that
10577                        resolve to a literal character.
10578
10579                        Every escape sequence that represents something
10580                        else, like an assertion or a char class, is handled
10581                        in the switch marked 'Special Escapes' above in this
10582                        routine, but also has an entry here as anything that
10583                        isn't explicitly mentioned here will be treated as
10584                        an unescaped equivalent literal.
10585                     */
10586
10587                     switch ((U8)*++p) {
10588                     /* These are all the special escapes. */
10589                     case 'A':             /* Start assertion */
10590                     case 'b': case 'B':   /* Word-boundary assertion*/
10591                     case 'C':             /* Single char !DANGEROUS! */
10592                     case 'd': case 'D':   /* digit class */
10593                     case 'g': case 'G':   /* generic-backref, pos assertion */
10594                     case 'h': case 'H':   /* HORIZWS */
10595                     case 'k': case 'K':   /* named backref, keep marker */
10596                     case 'p': case 'P':   /* Unicode property */
10597                               case 'R':   /* LNBREAK */
10598                     case 's': case 'S':   /* space class */
10599                     case 'v': case 'V':   /* VERTWS */
10600                     case 'w': case 'W':   /* word class */
10601                     case 'X':             /* eXtended Unicode "combining character sequence" */
10602                     case 'z': case 'Z':   /* End of line/string assertion */
10603                         --p;
10604                         goto loopdone;
10605
10606                     /* Anything after here is an escape that resolves to a
10607                        literal. (Except digits, which may or may not)
10608                      */
10609                     case 'n':
10610                         ender = '\n';
10611                         p++;
10612                         break;
10613                     case 'N': /* Handle a single-code point named character. */
10614                         /* The options cause it to fail if a multiple code
10615                          * point sequence.  Handle those in the switch() above
10616                          * */
10617                         RExC_parse = p + 1;
10618                         if (! grok_bslash_N(pRExC_state, NULL, &ender,
10619                                             flagp, depth, FALSE))
10620                         {
10621                             RExC_parse = p = oldp;
10622                             goto loopdone;
10623                         }
10624                         p = RExC_parse;
10625                         if (ender > 0xff) {
10626                             REQUIRE_UTF8;
10627                         }
10628                         break;
10629                     case 'r':
10630                         ender = '\r';
10631                         p++;
10632                         break;
10633                     case 't':
10634                         ender = '\t';
10635                         p++;
10636                         break;
10637                     case 'f':
10638                         ender = '\f';
10639                         p++;
10640                         break;
10641                     case 'e':
10642                           ender = ASCII_TO_NATIVE('\033');
10643                         p++;
10644                         break;
10645                     case 'a':
10646                           ender = ASCII_TO_NATIVE('\007');
10647                         p++;
10648                         break;
10649                     case 'o':
10650                         {
10651                             STRLEN brace_len = len;
10652                             UV result;
10653                             const char* error_msg;
10654
10655                             bool valid = grok_bslash_o(p,
10656                                                        &result,
10657                                                        &brace_len,
10658                                                        &error_msg,
10659                                                        1);
10660                             p += brace_len;
10661                             if (! valid) {
10662                                 RExC_parse = p; /* going to die anyway; point
10663                                                    to exact spot of failure */
10664                                 vFAIL(error_msg);
10665                             }
10666                             else
10667                             {
10668                                 ender = result;
10669                             }
10670                             if (PL_encoding && ender < 0x100) {
10671                                 goto recode_encoding;
10672                             }
10673                             if (ender > 0xff) {
10674                                 REQUIRE_UTF8;
10675                             }
10676                             break;
10677                         }
10678                     case 'x':
10679                         {
10680                             STRLEN brace_len = len;
10681                             UV result;
10682                             const char* error_msg;
10683
10684                             bool valid = grok_bslash_x(p,
10685                                                        &result,
10686                                                        &brace_len,
10687                                                        &error_msg,
10688                                                        1);
10689                             p += brace_len;
10690                             if (! valid) {
10691                                 RExC_parse = p; /* going to die anyway; point
10692                                                    to exact spot of failure */
10693                                 vFAIL(error_msg);
10694                             }
10695                             else {
10696                                 ender = result;
10697                             }
10698                             if (PL_encoding && ender < 0x100) {
10699                                 goto recode_encoding;
10700                             }
10701                             if (ender > 0xff) {
10702                                 REQUIRE_UTF8;
10703                             }
10704                             break;
10705                         }
10706                     case 'c':
10707                         p++;
10708                         ender = grok_bslash_c(*p++, UTF, SIZE_ONLY);
10709                         break;
10710                     case '0': case '1': case '2': case '3':case '4':
10711                     case '5': case '6': case '7':
10712                         if (*p == '0' ||
10713                             (isDIGIT(p[1]) && atoi(p) >= RExC_npar))
10714                         {
10715                             I32 flags = PERL_SCAN_SILENT_ILLDIGIT;
10716                             STRLEN numlen = 3;
10717                             ender = grok_oct(p, &numlen, &flags, NULL);
10718                             if (ender > 0xff) {
10719                                 REQUIRE_UTF8;
10720                             }
10721                             p += numlen;
10722                         }
10723                         else {
10724                             --p;
10725                             goto loopdone;
10726                         }
10727                         if (PL_encoding && ender < 0x100)
10728                             goto recode_encoding;
10729                         break;
10730                     recode_encoding:
10731                         if (! RExC_override_recoding) {
10732                             SV* enc = PL_encoding;
10733                             ender = reg_recode((const char)(U8)ender, &enc);
10734                             if (!enc && SIZE_ONLY)
10735                                 ckWARNreg(p, "Invalid escape in the specified encoding");
10736                             REQUIRE_UTF8;
10737                         }
10738                         break;
10739                     case '\0':
10740                         if (p >= RExC_end)
10741                             FAIL("Trailing \\");
10742                         /* FALL THROUGH */
10743                     default:
10744                         if (!SIZE_ONLY&& isALNUMC(*p)) {
10745                             ckWARN2reg(p + 1, "Unrecognized escape \\%.1s passed through", p);
10746                         }
10747                         goto normal_default;
10748                     }
10749                     break;
10750                 case '{':
10751                     /* Currently we don't warn when the lbrace is at the start
10752                      * of a construct.  This catches it in the middle of a
10753                      * literal string, or when its the first thing after
10754                      * something like "\b" */
10755                     if (! SIZE_ONLY
10756                         && (len || (p > RExC_start && isALPHA_A(*(p -1)))))
10757                     {
10758                         ckWARNregdep(p + 1, "Unescaped left brace in regex is deprecated, passed through");
10759                     }
10760                     /*FALLTHROUGH*/
10761                 default:
10762                   normal_default:
10763                     if (UTF8_IS_START(*p) && UTF) {
10764                         STRLEN numlen;
10765                         ender = utf8n_to_uvchr((U8*)p, RExC_end - p,
10766                                                &numlen, UTF8_ALLOW_DEFAULT);
10767                         p += numlen;
10768                     }
10769                     else
10770                         ender = (U8) *p++;
10771                     break;
10772                 } /* End of switch on the literal */
10773
10774                 /* Here, have looked at the literal character and <ender>
10775                  * contains its ordinal, <p> points to the character after it
10776                  */
10777
10778                 if ( RExC_flags & RXf_PMf_EXTENDED)
10779                     p = regwhite( pRExC_state, p );
10780
10781                 /* If the next thing is a quantifier, it applies to this
10782                  * character only, which means that this character has to be in
10783                  * its own node and can't just be appended to the string in an
10784                  * existing node, so if there are already other characters in
10785                  * the node, close the node with just them, and set up to do
10786                  * this character again next time through, when it will be the
10787                  * only thing in its new node */
10788                 if ((next_is_quantifier = (p < RExC_end && ISMULT2(p))) && len)
10789                 {
10790                     p = oldp;
10791                     goto loopdone;
10792                 }
10793
10794                 if (FOLD) {
10795                     if (UTF
10796                             /* See comments for join_exact() as to why we fold
10797                              * this non-UTF at compile time */
10798                         || (node_type == EXACTFU
10799                             && ender == LATIN_SMALL_LETTER_SHARP_S))
10800                     {
10801
10802
10803                         /* Prime the casefolded buffer.  Locale rules, which
10804                          * apply only to code points < 256, aren't known until
10805                          * execution, so for them, just output the original
10806                          * character using utf8.  If we start to fold non-UTF
10807                          * patterns, be sure to update join_exact() */
10808                         if (LOC && ender < 256) {
10809                             if (UNI_IS_INVARIANT(ender)) {
10810                                 *s = (U8) ender;
10811                                 foldlen = 1;
10812                             } else {
10813                                 *s = UTF8_TWO_BYTE_HI(ender);
10814                                 *(s + 1) = UTF8_TWO_BYTE_LO(ender);
10815                                 foldlen = 2;
10816                             }
10817                         }
10818                         else {
10819                             ender = _to_uni_fold_flags(ender, (U8 *) s, &foldlen,
10820                                     FOLD_FLAGS_FULL
10821                                      | ((LOC) ?  FOLD_FLAGS_LOCALE
10822                                               : (ASCII_FOLD_RESTRICTED)
10823                                                 ? FOLD_FLAGS_NOMIX_ASCII
10824                                                 : 0)
10825                                 );
10826                         }
10827                         s += foldlen;
10828
10829                         /* The loop increments <len> each time, as all but this
10830                          * path (and the one just below for UTF) through it add
10831                          * a single byte to the EXACTish node.  But this one
10832                          * has changed len to be the correct final value, so
10833                          * subtract one to cancel out the increment that
10834                          * follows */
10835                         len += foldlen - 1;
10836                     }
10837                     else {
10838                         *(s++) = ender;
10839                     }
10840                 }
10841                 else if (UTF) {
10842                     const STRLEN unilen = reguni(pRExC_state, ender, s);
10843                     if (unilen > 0) {
10844                        s   += unilen;
10845                        len += unilen;
10846                     }
10847
10848                     /* See comment just above for - 1 */
10849                     len--;
10850                 }
10851                 else {
10852                     REGC((char)ender, s++);
10853                 }
10854
10855                 if (next_is_quantifier) {
10856
10857                     /* Here, the next input is a quantifier, and to get here,
10858                      * the current character is the only one in the node.
10859                      * Also, here <len> doesn't include the final byte for this
10860                      * character */
10861                     len++;
10862                     goto loopdone;
10863                 }
10864
10865             } /* End of loop through literal characters */
10866
10867             /* Here we have either exhausted the input or ran out of room in
10868              * the node.  (If we encountered a character that can't be in the
10869              * node, transfer is made directly to <loopdone>, and so we
10870              * wouldn't have fallen off the end of the loop.)  In the latter
10871              * case, we artificially have to split the node into two, because
10872              * we just don't have enough space to hold everything.  This
10873              * creates a problem if the final character participates in a
10874              * multi-character fold in the non-final position, as a match that
10875              * should have occurred won't, due to the way nodes are matched,
10876              * and our artificial boundary.  So back off until we find a non-
10877              * problematic character -- one that isn't at the beginning or
10878              * middle of such a fold.  (Either it doesn't participate in any
10879              * folds, or appears only in the final position of all the folds it
10880              * does participate in.)  A better solution with far fewer false
10881              * positives, and that would fill the nodes more completely, would
10882              * be to actually have available all the multi-character folds to
10883              * test against, and to back-off only far enough to be sure that
10884              * this node isn't ending with a partial one.  <upper_parse> is set
10885              * further below (if we need to reparse the node) to include just
10886              * up through that final non-problematic character that this code
10887              * identifies, so when it is set to less than the full node, we can
10888              * skip the rest of this */
10889             if (FOLD && p < RExC_end && upper_parse == MAX_NODE_STRING_SIZE) {
10890
10891                 const STRLEN full_len = len;
10892
10893                 assert(len >= MAX_NODE_STRING_SIZE);
10894
10895                 /* Here, <s> points to the final byte of the final character.
10896                  * Look backwards through the string until find a non-
10897                  * problematic character */
10898
10899                 if (! UTF) {
10900
10901                     /* These two have no multi-char folds to non-UTF characters
10902                      */
10903                     if (ASCII_FOLD_RESTRICTED || LOC) {
10904                         goto loopdone;
10905                     }
10906
10907                     while (--s >= s0 && IS_NON_FINAL_FOLD(*s)) { }
10908                     len = s - s0 + 1;
10909                 }
10910                 else {
10911                     if (!  PL_NonL1NonFinalFold) {
10912                         PL_NonL1NonFinalFold = _new_invlist_C_array(
10913                                         NonL1_Perl_Non_Final_Folds_invlist);
10914                     }
10915
10916                     /* Point to the first byte of the final character */
10917                     s = (char *) utf8_hop((U8 *) s, -1);
10918
10919                     while (s >= s0) {   /* Search backwards until find
10920                                            non-problematic char */
10921                         if (UTF8_IS_INVARIANT(*s)) {
10922
10923                             /* There are no ascii characters that participate
10924                              * in multi-char folds under /aa.  In EBCDIC, the
10925                              * non-ascii invariants are all control characters,
10926                              * so don't ever participate in any folds. */
10927                             if (ASCII_FOLD_RESTRICTED
10928                                 || ! IS_NON_FINAL_FOLD(*s))
10929                             {
10930                                 break;
10931                             }
10932                         }
10933                         else if (UTF8_IS_DOWNGRADEABLE_START(*s)) {
10934
10935                             /* No Latin1 characters participate in multi-char
10936                              * folds under /l */
10937                             if (LOC
10938                                 || ! IS_NON_FINAL_FOLD(TWO_BYTE_UTF8_TO_UNI(
10939                                                                 *s, *(s+1))))
10940                             {
10941                                 break;
10942                             }
10943                         }
10944                         else if (! _invlist_contains_cp(
10945                                         PL_NonL1NonFinalFold,
10946                                         valid_utf8_to_uvchr((U8 *) s, NULL)))
10947                         {
10948                             break;
10949                         }
10950
10951                         /* Here, the current character is problematic in that
10952                          * it does occur in the non-final position of some
10953                          * fold, so try the character before it, but have to
10954                          * special case the very first byte in the string, so
10955                          * we don't read outside the string */
10956                         s = (s == s0) ? s -1 : (char *) utf8_hop((U8 *) s, -1);
10957                     } /* End of loop backwards through the string */
10958
10959                     /* If there were only problematic characters in the string,
10960                      * <s> will point to before s0, in which case the length
10961                      * should be 0, otherwise include the length of the
10962                      * non-problematic character just found */
10963                     len = (s < s0) ? 0 : s - s0 + UTF8SKIP(s);
10964                 }
10965
10966                 /* Here, have found the final character, if any, that is
10967                  * non-problematic as far as ending the node without splitting
10968                  * it across a potential multi-char fold.  <len> contains the
10969                  * number of bytes in the node up-to and including that
10970                  * character, or is 0 if there is no such character, meaning
10971                  * the whole node contains only problematic characters.  In
10972                  * this case, give up and just take the node as-is.  We can't
10973                  * do any better */
10974                 if (len == 0) {
10975                     len = full_len;
10976                 } else {
10977
10978                     /* Here, the node does contain some characters that aren't
10979                      * problematic.  If one such is the final character in the
10980                      * node, we are done */
10981                     if (len == full_len) {
10982                         goto loopdone;
10983                     }
10984                     else if (len + ((UTF) ? UTF8SKIP(s) : 1) == full_len) {
10985
10986                         /* If the final character is problematic, but the
10987                          * penultimate is not, back-off that last character to
10988                          * later start a new node with it */
10989                         p = oldp;
10990                         goto loopdone;
10991                     }
10992
10993                     /* Here, the final non-problematic character is earlier
10994                      * in the input than the penultimate character.  What we do
10995                      * is reparse from the beginning, going up only as far as
10996                      * this final ok one, thus guaranteeing that the node ends
10997                      * in an acceptable character.  The reason we reparse is
10998                      * that we know how far in the character is, but we don't
10999                      * know how to correlate its position with the input parse.
11000                      * An alternate implementation would be to build that
11001                      * correlation as we go along during the original parse,
11002                      * but that would entail extra work for every node, whereas
11003                      * this code gets executed only when the string is too
11004                      * large for the node, and the final two characters are
11005                      * problematic, an infrequent occurrence.  Yet another
11006                      * possible strategy would be to save the tail of the
11007                      * string, and the next time regatom is called, initialize
11008                      * with that.  The problem with this is that unless you
11009                      * back off one more character, you won't be guaranteed
11010                      * regatom will get called again, unless regbranch,
11011                      * regpiece ... are also changed.  If you do back off that
11012                      * extra character, so that there is input guaranteed to
11013                      * force calling regatom, you can't handle the case where
11014                      * just the first character in the node is acceptable.  I
11015                      * (khw) decided to try this method which doesn't have that
11016                      * pitfall; if performance issues are found, we can do a
11017                      * combination of the current approach plus that one */
11018                     upper_parse = len;
11019                     len = 0;
11020                     s = s0;
11021                     goto reparse;
11022                 }
11023             }   /* End of verifying node ends with an appropriate char */
11024
11025         loopdone:   /* Jumped to when encounters something that shouldn't be in
11026                        the node */
11027
11028             /* I (khw) don't know if you can get here with zero length, but the
11029              * old code handled this situation by creating a zero-length EXACT
11030              * node.  Might as well be NOTHING instead */
11031             if (len == 0) {
11032                 OP(ret) = NOTHING;
11033             }
11034             else{
11035                 alloc_maybe_populate_EXACT(pRExC_state, ret, flagp, len, ender);
11036             }
11037
11038             RExC_parse = p - 1;
11039             Set_Node_Cur_Length(ret); /* MJD */
11040             nextchar(pRExC_state);
11041             {
11042                 /* len is STRLEN which is unsigned, need to copy to signed */
11043                 IV iv = len;
11044                 if (iv < 0)
11045                     vFAIL("Internal disaster");
11046             }
11047
11048         } /* End of label 'defchar:' */
11049         break;
11050     } /* End of giant switch on input character */
11051
11052     return(ret);
11053 }
11054
11055 STATIC char *
11056 S_regwhite( RExC_state_t *pRExC_state, char *p )
11057 {
11058     const char *e = RExC_end;
11059
11060     PERL_ARGS_ASSERT_REGWHITE;
11061
11062     while (p < e) {
11063         if (isSPACE(*p))
11064             ++p;
11065         else if (*p == '#') {
11066             bool ended = 0;
11067             do {
11068                 if (*p++ == '\n') {
11069                     ended = 1;
11070                     break;
11071                 }
11072             } while (p < e);
11073             if (!ended)
11074                 RExC_seen |= REG_SEEN_RUN_ON_COMMENT;
11075         }
11076         else
11077             break;
11078     }
11079     return p;
11080 }
11081
11082 /* Parse POSIX character classes: [[:foo:]], [[=foo=]], [[.foo.]].
11083    Character classes ([:foo:]) can also be negated ([:^foo:]).
11084    Returns a named class id (ANYOF_XXX) if successful, -1 otherwise.
11085    Equivalence classes ([=foo=]) and composites ([.foo.]) are parsed,
11086    but trigger failures because they are currently unimplemented. */
11087
11088 #define POSIXCC_DONE(c)   ((c) == ':')
11089 #define POSIXCC_NOTYET(c) ((c) == '=' || (c) == '.')
11090 #define POSIXCC(c) (POSIXCC_DONE(c) || POSIXCC_NOTYET(c))
11091
11092 STATIC I32
11093 S_regpposixcc(pTHX_ RExC_state_t *pRExC_state, I32 value)
11094 {
11095     dVAR;
11096     I32 namedclass = OOB_NAMEDCLASS;
11097
11098     PERL_ARGS_ASSERT_REGPPOSIXCC;
11099
11100     if (value == '[' && RExC_parse + 1 < RExC_end &&
11101         /* I smell either [: or [= or [. -- POSIX has been here, right? */
11102         POSIXCC(UCHARAT(RExC_parse))) {
11103         const char c = UCHARAT(RExC_parse);
11104         char* const s = RExC_parse++;
11105
11106         while (RExC_parse < RExC_end && UCHARAT(RExC_parse) != c)
11107             RExC_parse++;
11108         if (RExC_parse == RExC_end)
11109             /* Grandfather lone [:, [=, [. */
11110             RExC_parse = s;
11111         else {
11112             const char* const t = RExC_parse++; /* skip over the c */
11113             assert(*t == c);
11114
11115             if (UCHARAT(RExC_parse) == ']') {
11116                 const char *posixcc = s + 1;
11117                 RExC_parse++; /* skip over the ending ] */
11118
11119                 if (*s == ':') {
11120                     const I32 complement = *posixcc == '^' ? *posixcc++ : 0;
11121                     const I32 skip = t - posixcc;
11122
11123                     /* Initially switch on the length of the name.  */
11124                     switch (skip) {
11125                     case 4:
11126                         if (memEQ(posixcc, "word", 4)) /* this is not POSIX, this is the Perl \w */
11127                             namedclass = ANYOF_WORDCHAR;
11128                         break;
11129                     case 5:
11130                         /* Names all of length 5.  */
11131                         /* alnum alpha ascii blank cntrl digit graph lower
11132                            print punct space upper  */
11133                         /* Offset 4 gives the best switch position.  */
11134                         switch (posixcc[4]) {
11135                         case 'a':
11136                             if (memEQ(posixcc, "alph", 4)) /* alpha */
11137                                 namedclass = ANYOF_ALPHA;
11138                             break;
11139                         case 'e':
11140                             if (memEQ(posixcc, "spac", 4)) /* space */
11141                                 namedclass = ANYOF_PSXSPC;
11142                             break;
11143                         case 'h':
11144                             if (memEQ(posixcc, "grap", 4)) /* graph */
11145                                 namedclass = ANYOF_GRAPH;
11146                             break;
11147                         case 'i':
11148                             if (memEQ(posixcc, "asci", 4)) /* ascii */
11149                                 namedclass = ANYOF_ASCII;
11150                             break;
11151                         case 'k':
11152                             if (memEQ(posixcc, "blan", 4)) /* blank */
11153                                 namedclass = ANYOF_BLANK;
11154                             break;
11155                         case 'l':
11156                             if (memEQ(posixcc, "cntr", 4)) /* cntrl */
11157                                 namedclass = ANYOF_CNTRL;
11158                             break;
11159                         case 'm':
11160                             if (memEQ(posixcc, "alnu", 4)) /* alnum */
11161                                 namedclass = ANYOF_ALNUMC;
11162                             break;
11163                         case 'r':
11164                             if (memEQ(posixcc, "lowe", 4)) /* lower */
11165                                 namedclass = ANYOF_LOWER;
11166                             else if (memEQ(posixcc, "uppe", 4)) /* upper */
11167                                 namedclass = ANYOF_UPPER;
11168                             break;
11169                         case 't':
11170                             if (memEQ(posixcc, "digi", 4)) /* digit */
11171                                 namedclass = ANYOF_DIGIT;
11172                             else if (memEQ(posixcc, "prin", 4)) /* print */
11173                                 namedclass = ANYOF_PRINT;
11174                             else if (memEQ(posixcc, "punc", 4)) /* punct */
11175                                 namedclass = ANYOF_PUNCT;
11176                             break;
11177                         }
11178                         break;
11179                     case 6:
11180                         if (memEQ(posixcc, "xdigit", 6))
11181                             namedclass = ANYOF_XDIGIT;
11182                         break;
11183                     }
11184
11185                     if (namedclass == OOB_NAMEDCLASS)
11186                         Simple_vFAIL3("POSIX class [:%.*s:] unknown",
11187                                       t - s - 1, s + 1);
11188
11189                     /* The #defines are structured so each complement is +1 to
11190                      * the normal one */
11191                     if (complement) {
11192                         namedclass++;
11193                     }
11194                     assert (posixcc[skip] == ':');
11195                     assert (posixcc[skip+1] == ']');
11196                 } else if (!SIZE_ONLY) {
11197                     /* [[=foo=]] and [[.foo.]] are still future. */
11198
11199                     /* adjust RExC_parse so the warning shows after
11200                        the class closes */
11201                     while (UCHARAT(RExC_parse) && UCHARAT(RExC_parse) != ']')
11202                         RExC_parse++;
11203                     Simple_vFAIL3("POSIX syntax [%c %c] is reserved for future extensions", c, c);
11204                 }
11205             } else {
11206                 /* Maternal grandfather:
11207                  * "[:" ending in ":" but not in ":]" */
11208                 RExC_parse = s;
11209             }
11210         }
11211     }
11212
11213     return namedclass;
11214 }
11215
11216 STATIC void
11217 S_checkposixcc(pTHX_ RExC_state_t *pRExC_state)
11218 {
11219     dVAR;
11220
11221     PERL_ARGS_ASSERT_CHECKPOSIXCC;
11222
11223     if (POSIXCC(UCHARAT(RExC_parse))) {
11224         const char *s = RExC_parse;
11225         const char  c = *s++;
11226
11227         while (isALNUM(*s))
11228             s++;
11229         if (*s && c == *s && s[1] == ']') {
11230             ckWARN3reg(s+2,
11231                        "POSIX syntax [%c %c] belongs inside character classes",
11232                        c, c);
11233
11234             /* [[=foo=]] and [[.foo.]] are still future. */
11235             if (POSIXCC_NOTYET(c)) {
11236                 /* adjust RExC_parse so the error shows after
11237                    the class closes */
11238                 while (UCHARAT(RExC_parse) && UCHARAT(RExC_parse++) != ']')
11239                     NOOP;
11240                 Simple_vFAIL3("POSIX syntax [%c %c] is reserved for future extensions", c, c);
11241             }
11242         }
11243     }
11244 }
11245
11246 /* Generate the code to add a full posix character <class> to the bracketed
11247  * character class given by <node>.  (<node> is needed only under locale rules)
11248  * destlist     is the inversion list for non-locale rules that this class is
11249  *              to be added to
11250  * sourcelist   is the ASCII-range inversion list to add under /a rules
11251  * Xsourcelist  is the full Unicode range list to use otherwise. */
11252 #define DO_POSIX(node, class, destlist, sourcelist, Xsourcelist)           \
11253     if (LOC) {                                                             \
11254         SV* scratch_list = NULL;                                           \
11255                                                                            \
11256         /* Set this class in the node for runtime matching */              \
11257         ANYOF_CLASS_SET(node, class);                                      \
11258                                                                            \
11259         /* For above Latin1 code points, we use the full Unicode range */  \
11260         _invlist_intersection(PL_AboveLatin1,                              \
11261                               Xsourcelist,                                 \
11262                               &scratch_list);                              \
11263         /* And set the output to it, adding instead if there already is an \
11264          * output.  Checking if <destlist> is NULL first saves an extra    \
11265          * clone.  Its reference count will be decremented at the next     \
11266          * union, etc, or if this is the only instance, at the end of the  \
11267          * routine */                                                      \
11268         if (! destlist) {                                                  \
11269             destlist = scratch_list;                                       \
11270         }                                                                  \
11271         else {                                                             \
11272             _invlist_union(destlist, scratch_list, &destlist);             \
11273             SvREFCNT_dec(scratch_list);                                    \
11274         }                                                                  \
11275     }                                                                      \
11276     else {                                                                 \
11277         /* For non-locale, just add it to any existing list */             \
11278         _invlist_union(destlist,                                           \
11279                        (AT_LEAST_ASCII_RESTRICTED)                         \
11280                            ? sourcelist                                    \
11281                            : Xsourcelist,                                  \
11282                        &destlist);                                         \
11283     }
11284
11285 /* Like DO_POSIX, but matches the complement of <sourcelist> and <Xsourcelist>.
11286  */
11287 #define DO_N_POSIX(node, class, destlist, sourcelist, Xsourcelist)         \
11288     if (LOC) {                                                             \
11289         SV* scratch_list = NULL;                                           \
11290         ANYOF_CLASS_SET(node, class);                                      \
11291         _invlist_subtract(PL_AboveLatin1, Xsourcelist, &scratch_list);     \
11292         if (! destlist) {                                                  \
11293             destlist = scratch_list;                                       \
11294         }                                                                  \
11295         else {                                                             \
11296             _invlist_union(destlist, scratch_list, &destlist);             \
11297             SvREFCNT_dec(scratch_list);                                    \
11298         }                                                                  \
11299     }                                                                      \
11300     else {                                                                 \
11301         _invlist_union_complement_2nd(destlist,                            \
11302                                     (AT_LEAST_ASCII_RESTRICTED)            \
11303                                         ? sourcelist                       \
11304                                         : Xsourcelist,                     \
11305                                     &destlist);                            \
11306         /* Under /d, everything in the upper half of the Latin1 range      \
11307          * matches this complement */                                      \
11308         if (DEPENDS_SEMANTICS) {                                           \
11309             ANYOF_FLAGS(node) |= ANYOF_NON_UTF8_LATIN1_ALL;                \
11310         }                                                                  \
11311     }
11312
11313 /* Generate the code to add a posix character <class> to the bracketed
11314  * character class given by <node>.  (<node> is needed only under locale rules)
11315  * destlist       is the inversion list for non-locale rules that this class is
11316  *                to be added to
11317  * sourcelist     is the ASCII-range inversion list to add under /a rules
11318  * l1_sourcelist  is the Latin1 range list to use otherwise.
11319  * Xpropertyname  is the name to add to <run_time_list> of the property to
11320  *                specify the code points above Latin1 that will have to be
11321  *                determined at run-time
11322  * run_time_list  is a SV* that contains text names of properties that are to
11323  *                be computed at run time.  This concatenates <Xpropertyname>
11324  *                to it, appropriately
11325  * This is essentially DO_POSIX, but we know only the Latin1 values at compile
11326  * time */
11327 #define DO_POSIX_LATIN1_ONLY_KNOWN(node, class, destlist, sourcelist,      \
11328                               l1_sourcelist, Xpropertyname, run_time_list) \
11329         /* First, resolve whether to use the ASCII-only list or the L1     \
11330          * list */                                                         \
11331         DO_POSIX_LATIN1_ONLY_KNOWN_L1_RESOLVED(node, class, destlist,      \
11332                 ((AT_LEAST_ASCII_RESTRICTED) ? sourcelist : l1_sourcelist),\
11333                 Xpropertyname, run_time_list)
11334
11335 #define DO_POSIX_LATIN1_ONLY_KNOWN_L1_RESOLVED(node, class, destlist, sourcelist, \
11336                 Xpropertyname, run_time_list)                              \
11337     /* If not /a matching, there are going to be code points we will have  \
11338      * to defer to runtime to look-up */                                   \
11339     if (! AT_LEAST_ASCII_RESTRICTED) {                                     \
11340         Perl_sv_catpvf(aTHX_ run_time_list, "+utf8::%s\n", Xpropertyname); \
11341     }                                                                      \
11342     if (LOC) {                                                             \
11343         ANYOF_CLASS_SET(node, class);                                      \
11344     }                                                                      \
11345     else {                                                                 \
11346         _invlist_union(destlist, sourcelist, &destlist);                   \
11347     }
11348
11349 /* Like DO_POSIX_LATIN1_ONLY_KNOWN, but for the complement.  A combination of
11350  * this and DO_N_POSIX.  Sets <matches_above_unicode> only if it can; unchanged
11351  * otherwise */
11352 #define DO_N_POSIX_LATIN1_ONLY_KNOWN(node, class, destlist, sourcelist,    \
11353        l1_sourcelist, Xpropertyname, run_time_list, matches_above_unicode) \
11354     if (AT_LEAST_ASCII_RESTRICTED) {                                       \
11355         _invlist_union_complement_2nd(destlist, sourcelist, &destlist);    \
11356     }                                                                      \
11357     else {                                                                 \
11358         Perl_sv_catpvf(aTHX_ run_time_list, "!utf8::%s\n", Xpropertyname); \
11359         matches_above_unicode = TRUE;                                      \
11360         if (LOC) {                                                         \
11361             ANYOF_CLASS_SET(node, namedclass);                             \
11362         }                                                                  \
11363         else {                                                             \
11364             SV* scratch_list = NULL;                                       \
11365             _invlist_subtract(PL_Latin1, l1_sourcelist, &scratch_list);    \
11366             if (! destlist) {                                              \
11367                 destlist = scratch_list;                                   \
11368             }                                                              \
11369             else {                                                         \
11370                 _invlist_union(destlist, scratch_list, &destlist);         \
11371                 SvREFCNT_dec(scratch_list);                                \
11372             }                                                              \
11373             if (DEPENDS_SEMANTICS) {                                       \
11374                 ANYOF_FLAGS(node) |= ANYOF_NON_UTF8_LATIN1_ALL;            \
11375             }                                                              \
11376         }                                                                  \
11377     }
11378
11379 STATIC void
11380 S_add_alternate(pTHX_ AV** alternate_ptr, U8* string, STRLEN len)
11381 {
11382     /* Adds input 'string' with length 'len' to the ANYOF node's unicode
11383      * alternate list, pointed to by 'alternate_ptr'.  This is an array of
11384      * the multi-character folds of characters in the node */
11385     SV *sv;
11386
11387     PERL_ARGS_ASSERT_ADD_ALTERNATE;
11388
11389     if (! *alternate_ptr) {
11390         *alternate_ptr = newAV();
11391     }
11392     sv = newSVpvn_utf8((char*)string, len, TRUE);
11393     av_push(*alternate_ptr, sv);
11394     return;
11395 }
11396
11397 /* The names of properties whose definitions are not known at compile time are
11398  * stored in this SV, after a constant heading.  So if the length has been
11399  * changed since initialization, then there is a run-time definition. */
11400 #define HAS_NONLOCALE_RUNTIME_PROPERTY_DEFINITION (SvCUR(listsv) != initial_listsv_len)
11401
11402 /* This converts the named class defined in regcomp.h to its equivalent class
11403  * number defined in handy.h. */
11404 #define namedclass_to_classnum(class)  ((class) / 2)
11405
11406 /*
11407    parse a class specification and produce either an ANYOF node that
11408    matches the pattern or perhaps will be optimized into an EXACTish node
11409    instead. The node contains a bit map for the first 256 characters, with the
11410    corresponding bit set if that character is in the list.  For characters
11411    above 255, a range list is used */
11412
11413 STATIC regnode *
11414 S_regclass(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth)
11415 {
11416     dVAR;
11417     UV nextvalue;
11418     UV prevvalue = OOB_UNICODE;
11419     IV range = 0;
11420     UV value = 0;
11421     regnode *ret;
11422     STRLEN numlen;
11423     IV namedclass = OOB_NAMEDCLASS;
11424     char *rangebegin = NULL;
11425     bool need_class = 0;
11426     bool allow_full_fold = TRUE;   /* Assume wants multi-char folding */
11427     SV *listsv = NULL;
11428     STRLEN initial_listsv_len = 0; /* Kind of a kludge to see if it is more
11429                                       than just initialized.  */
11430     SV* properties = NULL;    /* Code points that match \p{} \P{} */
11431     SV* posixes = NULL;     /* Code points that match classes like, [:word:],
11432                                extended beyond the Latin1 range */
11433     UV element_count = 0;   /* Number of distinct elements in the class.
11434                                Optimizations may be possible if this is tiny */
11435     UV n;
11436
11437     /* Unicode properties are stored in a swash; this holds the current one
11438      * being parsed.  If this swash is the only above-latin1 component of the
11439      * character class, an optimization is to pass it directly on to the
11440      * execution engine.  Otherwise, it is set to NULL to indicate that there
11441      * are other things in the class that have to be dealt with at execution
11442      * time */
11443     SV* swash = NULL;           /* Code points that match \p{} \P{} */
11444
11445     /* Set if a component of this character class is user-defined; just passed
11446      * on to the engine */
11447     bool has_user_defined_property = FALSE;
11448
11449     /* inversion list of code points this node matches only when the target
11450      * string is in UTF-8.  (Because is under /d) */
11451     SV* depends_list = NULL;
11452
11453     /* inversion list of code points this node matches.  For much of the
11454      * function, it includes only those that match regardless of the utf8ness
11455      * of the target string */
11456     SV* cp_list = NULL;
11457
11458     /* List of multi-character folds that are matched by this node */
11459     AV* unicode_alternate  = NULL;
11460 #ifdef EBCDIC
11461     /* In a range, counts how many 0-2 of the ends of it came from literals,
11462      * not escapes.  Thus we can tell if 'A' was input vs \x{C1} */
11463     UV literal_endpoint = 0;
11464 #endif
11465     bool invert = FALSE;    /* Is this class to be complemented */
11466
11467     /* Is there any thing like \W or [:^digit:] that matches above the legal
11468      * Unicode range? */
11469     bool runtime_posix_matches_above_Unicode = FALSE;
11470
11471     regnode * const orig_emit = RExC_emit; /* Save the original RExC_emit in
11472         case we need to change the emitted regop to an EXACT. */
11473     const char * orig_parse = RExC_parse;
11474     const I32 orig_size = RExC_size;
11475     GET_RE_DEBUG_FLAGS_DECL;
11476
11477     PERL_ARGS_ASSERT_REGCLASS;
11478 #ifndef DEBUGGING
11479     PERL_UNUSED_ARG(depth);
11480 #endif
11481
11482     DEBUG_PARSE("clas");
11483
11484     /* Assume we are going to generate an ANYOF node. */
11485     ret = reganode(pRExC_state, ANYOF, 0);
11486
11487
11488     if (!SIZE_ONLY) {
11489         ANYOF_FLAGS(ret) = 0;
11490     }
11491
11492     if (UCHARAT(RExC_parse) == '^') {   /* Complement of range. */
11493         RExC_naughty++;
11494         RExC_parse++;
11495         invert = TRUE;
11496
11497         /* We have decided to not allow multi-char folds in inverted character
11498          * classes, due to the confusion that can happen, especially with
11499          * classes that are designed for a non-Unicode world:  You have the
11500          * peculiar case that:
11501             "s s" =~ /^[^\xDF]+$/i => Y
11502             "ss"  =~ /^[^\xDF]+$/i => N
11503          *
11504          * See [perl #89750] */
11505         allow_full_fold = FALSE;
11506     }
11507
11508     if (SIZE_ONLY) {
11509         RExC_size += ANYOF_SKIP;
11510         listsv = &PL_sv_undef; /* For code scanners: listsv always non-NULL. */
11511     }
11512     else {
11513         RExC_emit += ANYOF_SKIP;
11514         if (LOC) {
11515             ANYOF_FLAGS(ret) |= ANYOF_LOCALE;
11516         }
11517         listsv = newSVpvs("# comment\n");
11518         initial_listsv_len = SvCUR(listsv);
11519     }
11520
11521     nextvalue = RExC_parse < RExC_end ? UCHARAT(RExC_parse) : 0;
11522
11523     if (!SIZE_ONLY && POSIXCC(nextvalue))
11524         checkposixcc(pRExC_state);
11525
11526     /* allow 1st char to be ] (allowing it to be - is dealt with later) */
11527     if (UCHARAT(RExC_parse) == ']')
11528         goto charclassloop;
11529
11530 parseit:
11531     while (RExC_parse < RExC_end && UCHARAT(RExC_parse) != ']') {
11532
11533     charclassloop:
11534
11535         namedclass = OOB_NAMEDCLASS; /* initialize as illegal */
11536
11537         if (!range) {
11538             rangebegin = RExC_parse;
11539             element_count++;
11540         }
11541         if (UTF) {
11542             value = utf8n_to_uvchr((U8*)RExC_parse,
11543                                    RExC_end - RExC_parse,
11544                                    &numlen, UTF8_ALLOW_DEFAULT);
11545             RExC_parse += numlen;
11546         }
11547         else
11548             value = UCHARAT(RExC_parse++);
11549
11550         nextvalue = RExC_parse < RExC_end ? UCHARAT(RExC_parse) : 0;
11551         if (value == '[' && POSIXCC(nextvalue))
11552             namedclass = regpposixcc(pRExC_state, value);
11553         else if (value == '\\') {
11554             if (UTF) {
11555                 value = utf8n_to_uvchr((U8*)RExC_parse,
11556                                    RExC_end - RExC_parse,
11557                                    &numlen, UTF8_ALLOW_DEFAULT);
11558                 RExC_parse += numlen;
11559             }
11560             else
11561                 value = UCHARAT(RExC_parse++);
11562             /* Some compilers cannot handle switching on 64-bit integer
11563              * values, therefore value cannot be an UV.  Yes, this will
11564              * be a problem later if we want switch on Unicode.
11565              * A similar issue a little bit later when switching on
11566              * namedclass. --jhi */
11567             switch ((I32)value) {
11568             case 'w':   namedclass = ANYOF_WORDCHAR;    break;
11569             case 'W':   namedclass = ANYOF_NWORDCHAR;   break;
11570             case 's':   namedclass = ANYOF_SPACE;       break;
11571             case 'S':   namedclass = ANYOF_NSPACE;      break;
11572             case 'd':   namedclass = ANYOF_DIGIT;       break;
11573             case 'D':   namedclass = ANYOF_NDIGIT;      break;
11574             case 'v':   namedclass = ANYOF_VERTWS;      break;
11575             case 'V':   namedclass = ANYOF_NVERTWS;     break;
11576             case 'h':   namedclass = ANYOF_HORIZWS;     break;
11577             case 'H':   namedclass = ANYOF_NHORIZWS;    break;
11578             case 'N':  /* Handle \N{NAME} in class */
11579                 {
11580                     /* We only pay attention to the first char of 
11581                     multichar strings being returned. I kinda wonder
11582                     if this makes sense as it does change the behaviour
11583                     from earlier versions, OTOH that behaviour was broken
11584                     as well. */
11585                     if (! grok_bslash_N(pRExC_state, NULL, &value, flagp, depth,
11586                                       TRUE /* => charclass */))
11587                     {
11588                         goto parseit;
11589                     }
11590                 }
11591                 break;
11592             case 'p':
11593             case 'P':
11594                 {
11595                 char *e;
11596
11597                 /* This routine will handle any undefined properties */
11598                 U8 swash_init_flags = _CORE_SWASH_INIT_RETURN_IF_UNDEF;
11599
11600                 if (RExC_parse >= RExC_end)
11601                     vFAIL2("Empty \\%c{}", (U8)value);
11602                 if (*RExC_parse == '{') {
11603                     const U8 c = (U8)value;
11604                     e = strchr(RExC_parse++, '}');
11605                     if (!e)
11606                         vFAIL2("Missing right brace on \\%c{}", c);
11607                     while (isSPACE(UCHARAT(RExC_parse)))
11608                         RExC_parse++;
11609                     if (e == RExC_parse)
11610                         vFAIL2("Empty \\%c{}", c);
11611                     n = e - RExC_parse;
11612                     while (isSPACE(UCHARAT(RExC_parse + n - 1)))
11613                         n--;
11614                 }
11615                 else {
11616                     e = RExC_parse;
11617                     n = 1;
11618                 }
11619                 if (!SIZE_ONLY) {
11620                     SV* invlist;
11621                     char* name;
11622
11623                     if (UCHARAT(RExC_parse) == '^') {
11624                          RExC_parse++;
11625                          n--;
11626                          value = value == 'p' ? 'P' : 'p'; /* toggle */
11627                          while (isSPACE(UCHARAT(RExC_parse))) {
11628                               RExC_parse++;
11629                               n--;
11630                          }
11631                     }
11632                     /* Try to get the definition of the property into
11633                      * <invlist>.  If /i is in effect, the effective property
11634                      * will have its name be <__NAME_i>.  The design is
11635                      * discussed in commit
11636                      * 2f833f5208e26b208886e51e09e2c072b5eabb46 */
11637                     Newx(name, n + sizeof("_i__\n"), char);
11638
11639                     sprintf(name, "%s%.*s%s\n",
11640                                     (FOLD) ? "__" : "",
11641                                     (int)n,
11642                                     RExC_parse,
11643                                     (FOLD) ? "_i" : ""
11644                     );
11645
11646                     /* Look up the property name, and get its swash and
11647                      * inversion list, if the property is found  */
11648                     if (swash) {
11649                         SvREFCNT_dec(swash);
11650                     }
11651                     swash = _core_swash_init("utf8", name, &PL_sv_undef,
11652                                              1, /* binary */
11653                                              0, /* not tr/// */
11654                                              NULL, /* No inversion list */
11655                                              &swash_init_flags
11656                                             );
11657                     if (! swash || ! (invlist = _get_swash_invlist(swash))) {
11658                         if (swash) {
11659                             SvREFCNT_dec(swash);
11660                             swash = NULL;
11661                         }
11662
11663                         /* Here didn't find it.  It could be a user-defined
11664                          * property that will be available at run-time.  Add it
11665                          * to the list to look up then */
11666                         Perl_sv_catpvf(aTHX_ listsv, "%cutf8::%s\n",
11667                                         (value == 'p' ? '+' : '!'),
11668                                         name);
11669                         has_user_defined_property = TRUE;
11670
11671                         /* We don't know yet, so have to assume that the
11672                          * property could match something in the Latin1 range,
11673                          * hence something that isn't utf8.  Note that this
11674                          * would cause things in <depends_list> to match
11675                          * inappropriately, except that any \p{}, including
11676                          * this one forces Unicode semantics, which means there
11677                          * is <no depends_list> */
11678                         ANYOF_FLAGS(ret) |= ANYOF_NONBITMAP_NON_UTF8;
11679                     }
11680                     else {
11681
11682                         /* Here, did get the swash and its inversion list.  If
11683                          * the swash is from a user-defined property, then this
11684                          * whole character class should be regarded as such */
11685                         has_user_defined_property =
11686                                     (swash_init_flags
11687                                      & _CORE_SWASH_INIT_USER_DEFINED_PROPERTY);
11688
11689                         /* Invert if asking for the complement */
11690                         if (value == 'P') {
11691                             _invlist_union_complement_2nd(properties,
11692                                                           invlist,
11693                                                           &properties);
11694
11695                             /* The swash can't be used as-is, because we've
11696                              * inverted things; delay removing it to here after
11697                              * have copied its invlist above */
11698                             SvREFCNT_dec(swash);
11699                             swash = NULL;
11700                         }
11701                         else {
11702                             _invlist_union(properties, invlist, &properties);
11703                         }
11704                     }
11705                     Safefree(name);
11706                 }
11707                 RExC_parse = e + 1;
11708                 namedclass = ANYOF_MAX;  /* no official name, but it's named */
11709
11710                 /* \p means they want Unicode semantics */
11711                 RExC_uni_semantics = 1;
11712                 }
11713                 break;
11714             case 'n':   value = '\n';                   break;
11715             case 'r':   value = '\r';                   break;
11716             case 't':   value = '\t';                   break;
11717             case 'f':   value = '\f';                   break;
11718             case 'b':   value = '\b';                   break;
11719             case 'e':   value = ASCII_TO_NATIVE('\033');break;
11720             case 'a':   value = ASCII_TO_NATIVE('\007');break;
11721             case 'o':
11722                 RExC_parse--;   /* function expects to be pointed at the 'o' */
11723                 {
11724                     const char* error_msg;
11725                     bool valid = grok_bslash_o(RExC_parse,
11726                                                &value,
11727                                                &numlen,
11728                                                &error_msg,
11729                                                SIZE_ONLY);
11730                     RExC_parse += numlen;
11731                     if (! valid) {
11732                         vFAIL(error_msg);
11733                     }
11734                 }
11735                 if (PL_encoding && value < 0x100) {
11736                     goto recode_encoding;
11737                 }
11738                 break;
11739             case 'x':
11740                 RExC_parse--;   /* function expects to be pointed at the 'x' */
11741                 {
11742                     const char* error_msg;
11743                     bool valid = grok_bslash_x(RExC_parse,
11744                                                &value,
11745                                                &numlen,
11746                                                &error_msg,
11747                                                1);
11748                     RExC_parse += numlen;
11749                     if (! valid) {
11750                         vFAIL(error_msg);
11751                     }
11752                 }
11753                 if (PL_encoding && value < 0x100)
11754                     goto recode_encoding;
11755                 break;
11756             case 'c':
11757                 value = grok_bslash_c(*RExC_parse++, UTF, SIZE_ONLY);
11758                 break;
11759             case '0': case '1': case '2': case '3': case '4':
11760             case '5': case '6': case '7':
11761                 {
11762                     /* Take 1-3 octal digits */
11763                     I32 flags = PERL_SCAN_SILENT_ILLDIGIT;
11764                     numlen = 3;
11765                     value = grok_oct(--RExC_parse, &numlen, &flags, NULL);
11766                     RExC_parse += numlen;
11767                     if (PL_encoding && value < 0x100)
11768                         goto recode_encoding;
11769                     break;
11770                 }
11771             recode_encoding:
11772                 if (! RExC_override_recoding) {
11773                     SV* enc = PL_encoding;
11774                     value = reg_recode((const char)(U8)value, &enc);
11775                     if (!enc && SIZE_ONLY)
11776                         ckWARNreg(RExC_parse,
11777                                   "Invalid escape in the specified encoding");
11778                     break;
11779                 }
11780             default:
11781                 /* Allow \_ to not give an error */
11782                 if (!SIZE_ONLY && isALNUM(value) && value != '_') {
11783                     ckWARN2reg(RExC_parse,
11784                                "Unrecognized escape \\%c in character class passed through",
11785                                (int)value);
11786                 }
11787                 break;
11788             }
11789         } /* end of \blah */
11790 #ifdef EBCDIC
11791         else
11792             literal_endpoint++;
11793 #endif
11794
11795             /* What matches in a locale is not known until runtime.  This
11796              * includes what the Posix classes (like \w, [:space:]) match.
11797              * Room must be reserved (one time per class) to store such
11798              * classes, either if Perl is compiled so that locale nodes always
11799              * should have this space, or if there is such class info to be
11800              * stored.  The space will contain a bit for each named class that
11801              * is to be matched against.  This isn't needed for \p{} and
11802              * pseudo-classes, as they are not affected by locale, and hence
11803              * are dealt with separately */
11804             if (LOC
11805                 && ! need_class
11806                 && (ANYOF_LOCALE == ANYOF_CLASS
11807                     || (namedclass > OOB_NAMEDCLASS && namedclass < ANYOF_MAX)))
11808             {
11809                 need_class = 1;
11810                 if (SIZE_ONLY) {
11811                     RExC_size += ANYOF_CLASS_SKIP - ANYOF_SKIP;
11812                 }
11813                 else {
11814                     RExC_emit += ANYOF_CLASS_SKIP - ANYOF_SKIP;
11815                     ANYOF_CLASS_ZERO(ret);
11816                 }
11817                 ANYOF_FLAGS(ret) |= ANYOF_CLASS;
11818             }
11819
11820         if (namedclass > OOB_NAMEDCLASS) { /* this is a named class \blah */
11821
11822             /* a bad range like a-\d, a-[:digit:].  The '-' is taken as a
11823              * literal, as is the character that began the false range, i.e.
11824              * the 'a' in the examples */
11825             if (range) {
11826                 if (!SIZE_ONLY) {
11827                     const int w =
11828                         RExC_parse >= rangebegin ?
11829                         RExC_parse - rangebegin : 0;
11830                     ckWARN4reg(RExC_parse,
11831                                "False [] range \"%*.*s\"",
11832                                w, w, rangebegin);
11833                     cp_list = add_cp_to_invlist(cp_list, '-');
11834                     cp_list = add_cp_to_invlist(cp_list, prevvalue);
11835                 }
11836
11837                 range = 0; /* this was not a true range */
11838                 element_count += 2; /* So counts for three values */
11839             }
11840
11841             if (! SIZE_ONLY) {
11842                 switch ((I32)namedclass) {
11843
11844                 case ANYOF_ALNUMC: /* C's alnum, in contrast to \w */
11845                     DO_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass, posixes,
11846                         PL_PosixAlnum, PL_L1PosixAlnum, "XPosixAlnum", listsv);
11847                     break;
11848                 case ANYOF_NALNUMC:
11849                     DO_N_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass, posixes,
11850                         PL_PosixAlnum, PL_L1PosixAlnum, "XPosixAlnum", listsv,
11851                         runtime_posix_matches_above_Unicode);
11852                     break;
11853                 case ANYOF_ALPHA:
11854                     DO_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass, posixes,
11855                         PL_PosixAlpha, PL_L1PosixAlpha, "XPosixAlpha", listsv);
11856                     break;
11857                 case ANYOF_NALPHA:
11858                     DO_N_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass, posixes,
11859                         PL_PosixAlpha, PL_L1PosixAlpha, "XPosixAlpha", listsv,
11860                         runtime_posix_matches_above_Unicode);
11861                     break;
11862                 case ANYOF_ASCII:
11863 #ifdef HAS_ISASCII
11864                     if (LOC) {
11865                         ANYOF_CLASS_SET(ret, namedclass);
11866                     }
11867                     else
11868 #endif  /* Not isascii(); just use the hard-coded definition for it */
11869                         _invlist_union(posixes, PL_ASCII, &posixes);
11870                     break;
11871                 case ANYOF_NASCII:
11872 #ifdef HAS_ISASCII
11873                     if (LOC) {
11874                         ANYOF_CLASS_SET(ret, namedclass);
11875                     }
11876                     else {
11877 #endif
11878                         _invlist_union_complement_2nd(posixes,
11879                                                     PL_ASCII, &posixes);
11880                         if (DEPENDS_SEMANTICS) {
11881                             ANYOF_FLAGS(ret) |= ANYOF_NON_UTF8_LATIN1_ALL;
11882                         }
11883 #ifdef HAS_ISASCII
11884                     }
11885 #endif
11886                     break;
11887                 case ANYOF_BLANK:
11888                     if (hasISBLANK || ! LOC) {
11889                         DO_POSIX(ret, namedclass, posixes,
11890                                             PL_PosixBlank, PL_XPosixBlank);
11891                     }
11892                     else { /* There is no isblank() and we are in locale:  We
11893                               use the ASCII range and the above-Latin1 range
11894                               code points */
11895                         SV* scratch_list = NULL;
11896
11897                         /* Include all above-Latin1 blanks */
11898                         _invlist_intersection(PL_AboveLatin1,
11899                                               PL_XPosixBlank,
11900                                               &scratch_list);
11901                         /* Add it to the running total of posix classes */
11902                         if (! posixes) {
11903                             posixes = scratch_list;
11904                         }
11905                         else {
11906                             _invlist_union(posixes, scratch_list, &posixes);
11907                             SvREFCNT_dec(scratch_list);
11908                         }
11909                         /* Add the ASCII-range blanks to the running total. */
11910                         _invlist_union(posixes, PL_PosixBlank, &posixes);
11911                     }
11912                     break;
11913                 case ANYOF_NBLANK:
11914                     if (hasISBLANK || ! LOC) {
11915                         DO_N_POSIX(ret, namedclass, posixes,
11916                                                 PL_PosixBlank, PL_XPosixBlank);
11917                     }
11918                     else { /* There is no isblank() and we are in locale */
11919                         SV* scratch_list = NULL;
11920
11921                         /* Include all above-Latin1 non-blanks */
11922                         _invlist_subtract(PL_AboveLatin1, PL_XPosixBlank, &scratch_list);
11923
11924                         /* Add them to the running total of posix classes */
11925                         _invlist_subtract(PL_AboveLatin1, PL_XPosixBlank, &scratch_list);
11926                         if (! posixes) {
11927                             posixes = scratch_list;
11928                         }
11929                         else {
11930                             _invlist_union(posixes, scratch_list, &posixes);
11931                             SvREFCNT_dec(scratch_list);
11932                         }
11933
11934                         /* Get the list of all non-ASCII-blanks in Latin 1, and
11935                          * add them to the running total */
11936                         _invlist_subtract(PL_Latin1, PL_PosixBlank, &scratch_list);
11937                         _invlist_union(posixes, scratch_list, &posixes);
11938                         SvREFCNT_dec(scratch_list);
11939                     }
11940                     break;
11941                 case ANYOF_CNTRL:
11942                     DO_POSIX(ret, namedclass, posixes,
11943                                             PL_PosixCntrl, PL_XPosixCntrl);
11944                     break;
11945                 case ANYOF_NCNTRL:
11946                     DO_N_POSIX(ret, namedclass, posixes,
11947                                             PL_PosixCntrl, PL_XPosixCntrl);
11948                     break;
11949                 case ANYOF_DIGIT:
11950                     /* There are no digits in the Latin1 range outside of
11951                      * ASCII, so call the macro that doesn't have to resolve
11952                      * them */
11953                     DO_POSIX_LATIN1_ONLY_KNOWN_L1_RESOLVED(ret, namedclass, posixes,
11954                         PL_PosixDigit, "XPosixDigit", listsv);
11955                     break;
11956                 case ANYOF_NDIGIT:
11957                     DO_N_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass, posixes,
11958                         PL_PosixDigit, PL_PosixDigit, "XPosixDigit", listsv,
11959                         runtime_posix_matches_above_Unicode);
11960                     break;
11961                 case ANYOF_GRAPH:
11962                     DO_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass, posixes,
11963                         PL_PosixGraph, PL_L1PosixGraph, "XPosixGraph", listsv);
11964                     break;
11965                 case ANYOF_NGRAPH:
11966                     DO_N_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass, posixes,
11967                         PL_PosixGraph, PL_L1PosixGraph, "XPosixGraph", listsv,
11968                         runtime_posix_matches_above_Unicode);
11969                     break;
11970                 case ANYOF_HORIZWS:
11971                     /* For these, we use the cp_list, as /d doesn't make a
11972                      * difference in what these match.  There would be problems
11973                      * if these characters had folds other than themselves, as
11974                      * cp_list is subject to folding.  It turns out that \h
11975                      * is just a synonym for XPosixBlank */
11976                     _invlist_union(cp_list, PL_XPosixBlank, &cp_list);
11977                     break;
11978                 case ANYOF_NHORIZWS:
11979                     _invlist_union_complement_2nd(cp_list,
11980                                                  PL_XPosixBlank, &cp_list);
11981                     break;
11982                 case ANYOF_LOWER:
11983                 case ANYOF_NLOWER:
11984                 {   /* These require special handling, as they differ under
11985                        folding, matching Cased there (which in the ASCII range
11986                        is the same as Alpha */
11987
11988                     SV* ascii_source;
11989                     SV* l1_source;
11990                     const char *Xname;
11991
11992                     if (FOLD && ! LOC) {
11993                         ascii_source = PL_PosixAlpha;
11994                         l1_source = PL_L1Cased;
11995                         Xname = "Cased";
11996                     }
11997                     else {
11998                         ascii_source = PL_PosixLower;
11999                         l1_source = PL_L1PosixLower;
12000                         Xname = "XPosixLower";
12001                     }
12002                     if (namedclass == ANYOF_LOWER) {
12003                         DO_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass, posixes,
12004                                     ascii_source, l1_source, Xname, listsv);
12005                     }
12006                     else {
12007                         DO_N_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass,
12008                             posixes, ascii_source, l1_source, Xname, listsv,
12009                             runtime_posix_matches_above_Unicode);
12010                     }
12011                     break;
12012                 }
12013                 case ANYOF_PRINT:
12014                     DO_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass, posixes,
12015                         PL_PosixPrint, PL_L1PosixPrint, "XPosixPrint", listsv);
12016                     break;
12017                 case ANYOF_NPRINT:
12018                     DO_N_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass, posixes,
12019                         PL_PosixPrint, PL_L1PosixPrint, "XPosixPrint", listsv,
12020                         runtime_posix_matches_above_Unicode);
12021                     break;
12022                 case ANYOF_PUNCT:
12023                     DO_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass, posixes,
12024                         PL_PosixPunct, PL_L1PosixPunct, "XPosixPunct", listsv);
12025                     break;
12026                 case ANYOF_NPUNCT:
12027                     DO_N_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass, posixes,
12028                         PL_PosixPunct, PL_L1PosixPunct, "XPosixPunct", listsv,
12029                         runtime_posix_matches_above_Unicode);
12030                     break;
12031                 case ANYOF_PSXSPC:
12032                     DO_POSIX(ret, namedclass, posixes,
12033                                             PL_PosixSpace, PL_XPosixSpace);
12034                     break;
12035                 case ANYOF_NPSXSPC:
12036                     DO_N_POSIX(ret, namedclass, posixes,
12037                                             PL_PosixSpace, PL_XPosixSpace);
12038                     break;
12039                 case ANYOF_SPACE:
12040                     DO_POSIX(ret, namedclass, posixes,
12041                                             PL_PerlSpace, PL_XPerlSpace);
12042                     break;
12043                 case ANYOF_NSPACE:
12044                     DO_N_POSIX(ret, namedclass, posixes,
12045                                             PL_PerlSpace, PL_XPerlSpace);
12046                     break;
12047                 case ANYOF_UPPER:   /* Same as LOWER, above */
12048                 case ANYOF_NUPPER:
12049                 {
12050                     SV* ascii_source;
12051                     SV* l1_source;
12052                     const char *Xname;
12053
12054                     if (FOLD && ! LOC) {
12055                         ascii_source = PL_PosixAlpha;
12056                         l1_source = PL_L1Cased;
12057                         Xname = "Cased";
12058                     }
12059                     else {
12060                         ascii_source = PL_PosixUpper;
12061                         l1_source = PL_L1PosixUpper;
12062                         Xname = "XPosixUpper";
12063                     }
12064                     if (namedclass == ANYOF_UPPER) {
12065                         DO_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass, posixes,
12066                                     ascii_source, l1_source, Xname, listsv);
12067                     }
12068                     else {
12069                         DO_N_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass,
12070                         posixes, ascii_source, l1_source, Xname, listsv,
12071                         runtime_posix_matches_above_Unicode);
12072                     }
12073                     break;
12074                 }
12075                 case ANYOF_WORDCHAR:
12076                     DO_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass, posixes,
12077                             PL_PosixWord, PL_L1PosixWord, "XPosixWord", listsv);
12078                     break;
12079                 case ANYOF_NWORDCHAR:
12080                     DO_N_POSIX_LATIN1_ONLY_KNOWN(ret, namedclass, posixes,
12081                             PL_PosixWord, PL_L1PosixWord, "XPosixWord", listsv,
12082                             runtime_posix_matches_above_Unicode);
12083                     break;
12084                 case ANYOF_VERTWS:
12085                     /* For these, we use the cp_list, as /d doesn't make a
12086                      * difference in what these match.  There would be problems
12087                      * if these characters had folds other than themselves, as
12088                      * cp_list is subject to folding */
12089                     _invlist_union(cp_list, PL_VertSpace, &cp_list);
12090                     break;
12091                 case ANYOF_NVERTWS:
12092                     _invlist_union_complement_2nd(cp_list,
12093                                                     PL_VertSpace, &cp_list);
12094                     break;
12095                 case ANYOF_XDIGIT:
12096                     DO_POSIX(ret, namedclass, posixes,
12097                                             PL_PosixXDigit, PL_XPosixXDigit);
12098                     break;
12099                 case ANYOF_NXDIGIT:
12100                     DO_N_POSIX(ret, namedclass, posixes,
12101                                             PL_PosixXDigit, PL_XPosixXDigit);
12102                     break;
12103                 case ANYOF_MAX:
12104                     /* this is to handle \p and \P */
12105                     break;
12106                 default:
12107                     vFAIL("Invalid [::] class");
12108                     break;
12109                 }
12110
12111                 continue;   /* Go get next character */
12112             }
12113         } /* end of namedclass \blah */
12114
12115         if (range) {
12116             if (prevvalue > value) /* b-a */ {
12117                 const int w = RExC_parse - rangebegin;
12118                 Simple_vFAIL4("Invalid [] range \"%*.*s\"", w, w, rangebegin);
12119                 range = 0; /* not a valid range */
12120             }
12121         }
12122         else {
12123             prevvalue = value; /* save the beginning of the potential range */
12124             if (RExC_parse+1 < RExC_end
12125                 && *RExC_parse == '-'
12126                 && RExC_parse[1] != ']')
12127             {
12128                 RExC_parse++;
12129
12130                 /* a bad range like \w-, [:word:]- ? */
12131                 if (namedclass > OOB_NAMEDCLASS) {
12132                     if (ckWARN(WARN_REGEXP)) {
12133                         const int w =
12134                             RExC_parse >= rangebegin ?
12135                             RExC_parse - rangebegin : 0;
12136                         vWARN4(RExC_parse,
12137                                "False [] range \"%*.*s\"",
12138                                w, w, rangebegin);
12139                     }
12140                     if (!SIZE_ONLY) {
12141                         cp_list = add_cp_to_invlist(cp_list, '-');
12142                     }
12143                     element_count++;
12144                 } else
12145                     range = 1;  /* yeah, it's a range! */
12146                 continue;       /* but do it the next time */
12147             }
12148         }
12149
12150         /* Here, <prevvalue> is the beginning of the range, if any; or <value>
12151          * if not */
12152
12153         /* non-Latin1 code point implies unicode semantics.  Must be set in
12154          * pass1 so is there for the whole of pass 2 */
12155         if (value > 255) {
12156             RExC_uni_semantics = 1;
12157         }
12158
12159         /* Ready to process either the single value, or the completed range */
12160         if (!SIZE_ONLY) {
12161 #ifndef EBCDIC
12162             cp_list = _add_range_to_invlist(cp_list, prevvalue, value);
12163 #else
12164             UV* this_range = _new_invlist(1);
12165             _append_range_to_invlist(this_range, prevvalue, value);
12166
12167             /* In EBCDIC, the ranges 'A-Z' and 'a-z' are each not contiguous.
12168              * If this range was specified using something like 'i-j', we want
12169              * to include only the 'i' and the 'j', and not anything in
12170              * between, so exclude non-ASCII, non-alphabetics from it.
12171              * However, if the range was specified with something like
12172              * [\x89-\x91] or [\x89-j], all code points within it should be
12173              * included.  literal_endpoint==2 means both ends of the range used
12174              * a literal character, not \x{foo} */
12175             if (literal_endpoint == 2
12176                 && (prevvalue >= 'a' && value <= 'z')
12177                     || (prevvalue >= 'A' && value <= 'Z'))
12178             {
12179                 _invlist_intersection(this_range, PL_ASCII, &this_range, );
12180                 _invlist_intersection(this_range, PL_Alpha, &this_range, );
12181             }
12182             _invlist_union(cp_list, this_range, &cp_list);
12183             literal_endpoint = 0;
12184 #endif
12185         }
12186
12187         range = 0; /* this range (if it was one) is done now */
12188     } /* End of loop through all the text within the brackets */
12189
12190     /* If the character class contains only a single element, it may be
12191      * optimizable into another node type which is smaller and runs faster.
12192      * Check if this is the case for this class */
12193     if (element_count == 1) {
12194         U8 op = END;
12195         U8 arg = 0;
12196
12197         if (namedclass > OOB_NAMEDCLASS) { /* this is a named class, like \w or
12198                                               [:digit:] or \p{foo} */
12199
12200             /* Certain named classes have equivalents that can appear outside a
12201              * character class, e.g. \w, \H.  We use these instead of a
12202              * character class. */
12203             switch ((I32)namedclass) {
12204                 U8 offset;
12205
12206                 /* The first group is for node types that depend on the charset
12207                  * modifier to the regex.  We first calculate the base node
12208                  * type, and if it should be inverted */
12209
12210                 case ANYOF_NWORDCHAR:
12211                     invert = ! invert;
12212                     /* FALLTHROUGH */
12213                 case ANYOF_WORDCHAR:
12214                     op = ALNUM;
12215                     goto join_charset_classes;
12216
12217                 case ANYOF_NSPACE:
12218                     invert = ! invert;
12219                     /* FALLTHROUGH */
12220                 case ANYOF_SPACE:
12221                     op = SPACE;
12222                     goto join_charset_classes;
12223
12224                 case ANYOF_NDIGIT:
12225                     invert = ! invert;
12226                     /* FALLTHROUGH */
12227                 case ANYOF_DIGIT:
12228                     op = DIGIT;
12229
12230                   join_charset_classes:
12231
12232                     /* Now that we have the base node type, we take advantage
12233                      * of the enum ordering of the charset modifiers to get the
12234                      * exact node type,  For example the base SPACE also has
12235                      * SPACEL, SPACEU, and SPACEA */
12236
12237                     offset = get_regex_charset(RExC_flags);
12238
12239                     /* /aa is the same as /a for these */
12240                     if (offset == REGEX_ASCII_MORE_RESTRICTED_CHARSET) {
12241                         offset = REGEX_ASCII_RESTRICTED_CHARSET;
12242                     }
12243                     else if (op == DIGIT && offset == REGEX_UNICODE_CHARSET) {
12244                         offset = REGEX_DEPENDS_CHARSET; /* There is no DIGITU */
12245                     }
12246
12247                     op += offset;
12248
12249                     /* The number of varieties of each of these is the same,
12250                      * hence, so is the delta between the normal and
12251                      * complemented nodes */
12252                     if (invert) {
12253                         op += NALNUM - ALNUM;
12254                     }
12255                     *flagp |= HASWIDTH|SIMPLE;
12256                     break;
12257
12258                 /* The second group doesn't depend of the charset modifiers.
12259                  * We just have normal and complemented */
12260                 case ANYOF_NHORIZWS:
12261                     invert = ! invert;
12262                     /* FALLTHROUGH */
12263                 case ANYOF_HORIZWS:
12264                   is_horizws:
12265                     op = (invert) ? NHORIZWS : HORIZWS;
12266                     *flagp |= HASWIDTH|SIMPLE;
12267                     break;
12268
12269                 case ANYOF_NVERTWS:
12270                     invert = ! invert;
12271                     /* FALLTHROUGH */
12272                 case ANYOF_VERTWS:
12273                     op = (invert) ? NVERTWS : VERTWS;
12274                     *flagp |= HASWIDTH|SIMPLE;
12275                     break;
12276
12277                 case ANYOF_MAX:
12278                     break;
12279
12280                 case ANYOF_NBLANK:
12281                     invert = ! invert;
12282                     /* FALLTHROUGH */
12283                 case ANYOF_BLANK:
12284                     if (AT_LEAST_UNI_SEMANTICS && ! AT_LEAST_ASCII_RESTRICTED) {
12285                         goto is_horizws;
12286                     }
12287                     /* FALLTHROUGH */
12288                 default:
12289                     /* A generic posix class.  All the /a ones can be handled
12290                      * by the POSIXA opcode.  And all are closed under folding
12291                      * in the ASCII range, so FOLD doesn't matter */
12292                     if (AT_LEAST_ASCII_RESTRICTED
12293                         || (! LOC && namedclass == ANYOF_ASCII))
12294                     {
12295                         /* The odd numbered ones are the complements of the
12296                          * next-lower even number one */
12297                         if (namedclass % 2 == 1) {
12298                             invert = ! invert;
12299                             namedclass--;
12300                         }
12301                         arg = namedclass_to_classnum(namedclass);
12302                         op = (invert) ? NPOSIXA : POSIXA;
12303                     }
12304                     break;
12305             }
12306         }
12307         else if (value == prevvalue) {
12308
12309             /* Here, the class consists of just a single code point */
12310
12311             if (invert) {
12312                 if (! LOC && value == '\n') {
12313                     op = REG_ANY; /* Optimize [^\n] */
12314                     *flagp |= HASWIDTH|SIMPLE;
12315                     RExC_naughty++;
12316                 }
12317             }
12318             else if (value < 256 || UTF) {
12319
12320                 /* Optimize a single value into an EXACTish node, but not if it
12321                  * would require converting the pattern to UTF-8. */
12322                 op = compute_EXACTish(pRExC_state);
12323             }
12324         } /* Otherwise is a range */
12325         else if (! LOC) {   /* locale could vary these */
12326             if (prevvalue == '0') {
12327                 if (value == '9') {
12328                     op = (invert) ? NDIGITA : DIGITA;
12329                     *flagp |= HASWIDTH|SIMPLE;
12330                 }
12331             }
12332         }
12333
12334         /* Here, we have changed <op> away from its initial value iff we found
12335          * an optimization */
12336         if (op != END) {
12337
12338             /* Throw away this ANYOF regnode, and emit the calculated one,
12339              * which should correspond to the beginning, not current, state of
12340              * the parse */
12341             const char * cur_parse = RExC_parse;
12342             RExC_parse = (char *)orig_parse;
12343             if ( SIZE_ONLY) {
12344                 if (! LOC) {
12345
12346                     /* To get locale nodes to not use the full ANYOF size would
12347                      * require moving the code above that writes the portions
12348                      * of it that aren't in other nodes to after this point.
12349                      * e.g.  ANYOF_CLASS_SET */
12350                     RExC_size = orig_size;
12351                 }
12352             }
12353             else {
12354                 RExC_emit = (regnode *)orig_emit;
12355             }
12356
12357             ret = reg_node(pRExC_state, op);
12358
12359             if (PL_regkind[op] == POSIXD) {
12360                 if (! SIZE_ONLY) {
12361                     FLAGS(ret) = arg;
12362                 }
12363                 *flagp |= HASWIDTH|SIMPLE;
12364             }
12365             else if (PL_regkind[op] == EXACT) {
12366                 alloc_maybe_populate_EXACT(pRExC_state, ret, flagp, 0, value);
12367             }
12368
12369             RExC_parse = (char *) cur_parse;
12370
12371             SvREFCNT_dec(listsv);
12372             return ret;
12373         }
12374     }
12375
12376     if (SIZE_ONLY)
12377         return ret;
12378     /****** !SIZE_ONLY (Pass 2) AFTER HERE *********/
12379
12380     /* If folding, we calculate all characters that could fold to or from the
12381      * ones already on the list */
12382     if (FOLD && cp_list) {
12383         UV start, end;  /* End points of code point ranges */
12384
12385         SV* fold_intersection = NULL;
12386
12387         /* In the Latin1 range, the characters that can be folded-to or -from
12388          * are precisely the alphabetic characters.  If the highest code point
12389          * is within Latin1, we can use the compiled-in list, and not have to
12390          * go out to disk. */
12391         if (invlist_highest(cp_list) < 256) {
12392             _invlist_intersection(PL_L1PosixAlpha, cp_list, &fold_intersection);
12393         }
12394         else {
12395
12396             /* Here, there are non-Latin1 code points, so we will have to go
12397              * fetch the list of all the characters that participate in folds
12398              */
12399             if (! PL_utf8_foldable) {
12400                 SV* swash = swash_init("utf8", "_Perl_Any_Folds",
12401                                        &PL_sv_undef, 1, 0);
12402                 PL_utf8_foldable = _get_swash_invlist(swash);
12403                 SvREFCNT_dec(swash);
12404             }
12405
12406             /* This is a hash that for a particular fold gives all characters
12407              * that are involved in it */
12408             if (! PL_utf8_foldclosures) {
12409
12410                 /* If we were unable to find any folds, then we likely won't be
12411                  * able to find the closures.  So just create an empty list.
12412                  * Folding will effectively be restricted to the non-Unicode
12413                  * rules hard-coded into Perl.  (This case happens legitimately
12414                  * during compilation of Perl itself before the Unicode tables
12415                  * are generated) */
12416                 if (_invlist_len(PL_utf8_foldable) == 0) {
12417                     PL_utf8_foldclosures = newHV();
12418                 }
12419                 else {
12420                     /* If the folds haven't been read in, call a fold function
12421                      * to force that */
12422                     if (! PL_utf8_tofold) {
12423                         U8 dummy[UTF8_MAXBYTES+1];
12424                         STRLEN dummy_len;
12425
12426                         /* This string is just a short named one above \xff */
12427                         to_utf8_fold((U8*) HYPHEN_UTF8, dummy, &dummy_len);
12428                         assert(PL_utf8_tofold); /* Verify that worked */
12429                     }
12430                     PL_utf8_foldclosures =
12431                                         _swash_inversion_hash(PL_utf8_tofold);
12432                 }
12433             }
12434
12435             /* Only the characters in this class that participate in folds need
12436              * be checked.  Get the intersection of this class and all the
12437              * possible characters that are foldable.  This can quickly narrow
12438              * down a large class */
12439             _invlist_intersection(PL_utf8_foldable, cp_list,
12440                                   &fold_intersection);
12441         }
12442
12443         /* Now look at the foldable characters in this class individually */
12444         invlist_iterinit(fold_intersection);
12445         while (invlist_iternext(fold_intersection, &start, &end)) {
12446             UV j;
12447
12448             /* Locale folding for Latin1 characters is deferred until runtime */
12449             if (LOC && start < 256) {
12450                 start = 256;
12451             }
12452
12453             /* Look at every character in the range */
12454             for (j = start; j <= end; j++) {
12455
12456                 U8 foldbuf[UTF8_MAXBYTES_CASE+1];
12457                 STRLEN foldlen;
12458                 UV f;
12459
12460                 if (j < 256) {
12461
12462                     /* We have the latin1 folding rules hard-coded here so that
12463                      * an innocent-looking character class, like /[ks]/i won't
12464                      * have to go out to disk to find the possible matches.
12465                      * XXX It would be better to generate these via regen, in
12466                      * case a new version of the Unicode standard adds new
12467                      * mappings, though that is not really likely, and may be
12468                      * caught by the default: case of the switch below. */
12469
12470                     if (PL_fold_latin1[j] != j) {
12471
12472                         /* ASCII is always matched; non-ASCII is matched only
12473                          * under Unicode rules */
12474                         if (isASCII(j) || AT_LEAST_UNI_SEMANTICS) {
12475                             cp_list =
12476                                 add_cp_to_invlist(cp_list, PL_fold_latin1[j]);
12477                         }
12478                         else {
12479                             depends_list =
12480                              add_cp_to_invlist(depends_list, PL_fold_latin1[j]);
12481                         }
12482                     }
12483
12484                     if (HAS_NONLATIN1_FOLD_CLOSURE(j)
12485                         && (! isASCII(j) || ! ASCII_FOLD_RESTRICTED))
12486                     {
12487                         /* Certain Latin1 characters have matches outside
12488                          * Latin1, or are multi-character.  To get here, 'j' is
12489                          * one of those characters.   None of these matches is
12490                          * valid for ASCII characters under /aa, which is why
12491                          * the 'if' just above excludes those.  The matches
12492                          * fall into three categories:
12493                          * 1) They are singly folded-to or -from an above 255
12494                          *    character, e.g., LATIN SMALL LETTER Y WITH
12495                          *    DIAERESIS and LATIN CAPITAL LETTER Y WITH
12496                          *    DIAERESIS;
12497                          * 2) They are part of a multi-char fold with another
12498                          *    latin1 character; only LATIN SMALL LETTER
12499                          *    SHARP S => "ss" fits this;
12500                          * 3) They are part of a multi-char fold with a
12501                          *    character outside of Latin1, such as various
12502                          *    ligatures.
12503                         * We aren't dealing fully with multi-char folds, except
12504                         * we do deal with the pattern containing a character
12505                         * that has a multi-char fold (not so much the inverse).
12506                         * For types 1) and 3), the matches only happen when the
12507                         * target string is utf8; that's not true for 2), and we
12508                         * set a flag for it.
12509                         *
12510                         * The code below adds the single fold closures for 'j'
12511                         * to the inversion list. */
12512                         switch (j) {
12513                             case 'k':
12514                             case 'K':
12515                                 cp_list =
12516                                     add_cp_to_invlist(cp_list, KELVIN_SIGN);
12517                                 break;
12518                             case 's':
12519                             case 'S':
12520                                 cp_list = add_cp_to_invlist(cp_list,
12521                                                     LATIN_SMALL_LETTER_LONG_S);
12522                                 break;
12523                             case MICRO_SIGN:
12524                                 cp_list = add_cp_to_invlist(cp_list,
12525                                                     GREEK_CAPITAL_LETTER_MU);
12526                                 cp_list = add_cp_to_invlist(cp_list,
12527                                                     GREEK_SMALL_LETTER_MU);
12528                                 break;
12529                             case LATIN_CAPITAL_LETTER_A_WITH_RING_ABOVE:
12530                             case LATIN_SMALL_LETTER_A_WITH_RING_ABOVE:
12531                                 cp_list =
12532                                     add_cp_to_invlist(cp_list, ANGSTROM_SIGN);
12533                                 break;
12534                             case LATIN_SMALL_LETTER_Y_WITH_DIAERESIS:
12535                                 cp_list = add_cp_to_invlist(cp_list,
12536                                         LATIN_CAPITAL_LETTER_Y_WITH_DIAERESIS);
12537                                 break;
12538                             case LATIN_SMALL_LETTER_SHARP_S:
12539                                 cp_list = add_cp_to_invlist(cp_list,
12540                                                 LATIN_CAPITAL_LETTER_SHARP_S);
12541
12542                                 /* Under /a, /d, and /u, this can match the two
12543                                  * chars "ss" */
12544                                 if (! ASCII_FOLD_RESTRICTED) {
12545                                     add_alternate(&unicode_alternate,
12546                                                   (U8 *) "ss", 2);
12547
12548                                     /* And under /u or /a, it can match even if
12549                                      * the target is not utf8 */
12550                                     if (AT_LEAST_UNI_SEMANTICS) {
12551                                         ANYOF_FLAGS(ret) |=
12552                                                     ANYOF_NONBITMAP_NON_UTF8;
12553                                     }
12554                                 }
12555                                 break;
12556                             case 'F': case 'f':
12557                             case 'I': case 'i':
12558                             case 'L': case 'l':
12559                             case 'T': case 't':
12560                             case 'A': case 'a':
12561                             case 'H': case 'h':
12562                             case 'J': case 'j':
12563                             case 'N': case 'n':
12564                             case 'W': case 'w':
12565                             case 'Y': case 'y':
12566                                 /* These all are targets of multi-character
12567                                  * folds from code points that require UTF8 to
12568                                  * express, so they can't match unless the
12569                                  * target string is in UTF-8, so no action here
12570                                  * is necessary, as regexec.c properly handles
12571                                  * the general case for UTF-8 matching */
12572                                 break;
12573                             default:
12574                                 /* Use deprecated warning to increase the
12575                                  * chances of this being output */
12576                                 ckWARN2regdep(RExC_parse, "Perl folding rules are not up-to-date for 0x%"UVXf"; please use the perlbug utility to report;", j);
12577                                 break;
12578                         }
12579                     }
12580                     continue;
12581                 }
12582
12583                 /* Here is an above Latin1 character.  We don't have the rules
12584                  * hard-coded for it.  First, get its fold */
12585                 f = _to_uni_fold_flags(j, foldbuf, &foldlen,
12586                                     ((allow_full_fold) ? FOLD_FLAGS_FULL : 0)
12587                                     | ((LOC)
12588                                         ? FOLD_FLAGS_LOCALE
12589                                         : (ASCII_FOLD_RESTRICTED)
12590                                             ? FOLD_FLAGS_NOMIX_ASCII
12591                                             : 0));
12592
12593                 if (foldlen > (STRLEN)UNISKIP(f)) {
12594
12595                     /* Any multicharacter foldings (disallowed in lookbehind
12596                      * patterns) require the following transform: [ABCDEF] ->
12597                      * (?:[ABCabcDEFd]|pq|rst) where E folds into "pq" and F
12598                      * folds into "rst", all other characters fold to single
12599                      * characters.  We save away these multicharacter foldings,
12600                      * to be later saved as part of the additional "s" data. */
12601                     if (! RExC_in_lookbehind) {
12602                         U8* loc = foldbuf;
12603                         U8* e = foldbuf + foldlen;
12604
12605                         /* If any of the folded characters of this are in the
12606                          * Latin1 range, tell the regex engine that this can
12607                          * match a non-utf8 target string.  */
12608                         while (loc < e) {
12609                             if (UTF8_IS_INVARIANT(*loc)
12610                                 || UTF8_IS_DOWNGRADEABLE_START(*loc))
12611                             {
12612                                 ANYOF_FLAGS(ret)
12613                                         |= ANYOF_NONBITMAP_NON_UTF8;
12614                                 break;
12615                             }
12616                             loc += UTF8SKIP(loc);
12617                         }
12618
12619                         add_alternate(&unicode_alternate, foldbuf, foldlen);
12620                     }
12621                 }
12622                 else {
12623                     /* Single character fold of above Latin1.  Add everything
12624                      * in its fold closure to the list that this node should
12625                      * match */
12626                     SV** listp;
12627
12628                     /* The fold closures data structure is a hash with the keys
12629                      * being every character that is folded to, like 'k', and
12630                      * the values each an array of everything that folds to its
12631                      * key.  e.g. [ 'k', 'K', KELVIN_SIGN ] */
12632                     if ((listp = hv_fetch(PL_utf8_foldclosures,
12633                                     (char *) foldbuf, foldlen, FALSE)))
12634                     {
12635                         AV* list = (AV*) *listp;
12636                         IV k;
12637                         for (k = 0; k <= av_len(list); k++) {
12638                             SV** c_p = av_fetch(list, k, FALSE);
12639                             UV c;
12640                             if (c_p == NULL) {
12641                                 Perl_croak(aTHX_ "panic: invalid PL_utf8_foldclosures structure");
12642                             }
12643                             c = SvUV(*c_p);
12644
12645                             /* /aa doesn't allow folds between ASCII and non-;
12646                              * /l doesn't allow them between above and below
12647                              * 256 */
12648                             if ((ASCII_FOLD_RESTRICTED
12649                                       && (isASCII(c) != isASCII(j)))
12650                                 || (LOC && ((c < 256) != (j < 256))))
12651                             {
12652                                 continue;
12653                             }
12654
12655                             /* Folds involving non-ascii Latin1 characters
12656                              * under /d are added to a separate list */
12657                             if (isASCII(c) || c > 255 || AT_LEAST_UNI_SEMANTICS)
12658                             {
12659                                 cp_list = add_cp_to_invlist(cp_list, c);
12660                             }
12661                             else {
12662                               depends_list = add_cp_to_invlist(depends_list, c);
12663                             }
12664                         }
12665                     }
12666                 }
12667             }
12668         }
12669         SvREFCNT_dec(fold_intersection);
12670     }
12671
12672     /* And combine the result (if any) with any inversion list from posix
12673      * classes.  The lists are kept separate up to now because we don't want to
12674      * fold the classes (folding of those is automatically handled by the swash
12675      * fetching code) */
12676     if (posixes) {
12677         if (! DEPENDS_SEMANTICS) {
12678             if (cp_list) {
12679                 _invlist_union(cp_list, posixes, &cp_list);
12680                 SvREFCNT_dec(posixes);
12681             }
12682             else {
12683                 cp_list = posixes;
12684             }
12685         }
12686         else {
12687             /* Under /d, we put into a separate list the Latin1 things that
12688              * match only when the target string is utf8 */
12689             SV* nonascii_but_latin1_properties = NULL;
12690             _invlist_intersection(posixes, PL_Latin1,
12691                                   &nonascii_but_latin1_properties);
12692             _invlist_subtract(nonascii_but_latin1_properties, PL_ASCII,
12693                               &nonascii_but_latin1_properties);
12694             _invlist_subtract(posixes, nonascii_but_latin1_properties,
12695                               &posixes);
12696             if (cp_list) {
12697                 _invlist_union(cp_list, posixes, &cp_list);
12698                 SvREFCNT_dec(posixes);
12699             }
12700             else {
12701                 cp_list = posixes;
12702             }
12703
12704             if (depends_list) {
12705                 _invlist_union(depends_list, nonascii_but_latin1_properties,
12706                                &depends_list);
12707                 SvREFCNT_dec(nonascii_but_latin1_properties);
12708             }
12709             else {
12710                 depends_list = nonascii_but_latin1_properties;
12711             }
12712         }
12713     }
12714
12715     /* And combine the result (if any) with any inversion list from properties.
12716      * The lists are kept separate up to now so that we can distinguish the two
12717      * in regards to matching above-Unicode.  A run-time warning is generated
12718      * if a Unicode property is matched against a non-Unicode code point. But,
12719      * we allow user-defined properties to match anything, without any warning,
12720      * and we also suppress the warning if there is a portion of the character
12721      * class that isn't a Unicode property, and which matches above Unicode, \W
12722      * or [\x{110000}] for example.
12723      * (Note that in this case, unlike the Posix one above, there is no
12724      * <depends_list>, because having a Unicode property forces Unicode
12725      * semantics */
12726     if (properties) {
12727         bool warn_super = ! has_user_defined_property;
12728         if (cp_list) {
12729
12730             /* If it matters to the final outcome, see if a non-property
12731              * component of the class matches above Unicode.  If so, the
12732              * warning gets suppressed.  This is true even if just a single
12733              * such code point is specified, as though not strictly correct if
12734              * another such code point is matched against, the fact that they
12735              * are using above-Unicode code points indicates they should know
12736              * the issues involved */
12737             if (warn_super) {
12738                 bool non_prop_matches_above_Unicode =
12739                             runtime_posix_matches_above_Unicode
12740                             | (invlist_highest(cp_list) > PERL_UNICODE_MAX);
12741                 if (invert) {
12742                     non_prop_matches_above_Unicode =
12743                                             !  non_prop_matches_above_Unicode;
12744                 }
12745                 warn_super = ! non_prop_matches_above_Unicode;
12746             }
12747
12748             _invlist_union(properties, cp_list, &cp_list);
12749             SvREFCNT_dec(properties);
12750         }
12751         else {
12752             cp_list = properties;
12753         }
12754
12755         if (warn_super) {
12756             ANYOF_FLAGS(ret) |= ANYOF_WARN_SUPER;
12757         }
12758     }
12759
12760     /* Here, we have calculated what code points should be in the character
12761      * class.
12762      *
12763      * Now we can see about various optimizations.  Fold calculation (which we
12764      * did above) needs to take place before inversion.  Otherwise /[^k]/i
12765      * would invert to include K, which under /i would match k, which it
12766      * shouldn't.  Therefore we can't invert folded locale now, as it won't be
12767      * folded until runtime */
12768
12769     /* Optimize inverted simple patterns (e.g. [^a-z]) when everything is known
12770      * at compile time.  Besides not inverting folded locale now, we can't invert
12771      * if there are things such as \w, which aren't known until runtime */
12772     if (invert
12773         && ! (LOC && (FOLD || (ANYOF_FLAGS(ret) & ANYOF_CLASS)))
12774         && ! depends_list
12775         && ! unicode_alternate
12776         && ! HAS_NONLOCALE_RUNTIME_PROPERTY_DEFINITION)
12777     {
12778         _invlist_invert(cp_list);
12779
12780         /* Any swash can't be used as-is, because we've inverted things */
12781         if (swash) {
12782             SvREFCNT_dec(swash);
12783             swash = NULL;
12784         }
12785
12786         /* Clear the invert flag since have just done it here */
12787         invert = FALSE;
12788     }
12789
12790     /* If we didn't do folding, it's because some information isn't available
12791      * until runtime; set the run-time fold flag for these.  (We don't have to
12792      * worry about properties folding, as that is taken care of by the swash
12793      * fetching) */
12794     if (FOLD && (LOC || unicode_alternate))
12795     {
12796        ANYOF_FLAGS(ret) |= ANYOF_LOC_NONBITMAP_FOLD;
12797     }
12798
12799     /* Some character classes are equivalent to other nodes.  Such nodes take
12800      * up less room and generally fewer operations to execute than ANYOF nodes.
12801      * Above, we checked for and optimized into some such equivalents for
12802      * certain common classes that are easy to test.  Getting to this point in
12803      * the code means that the class didn't get optimized there.  Since this
12804      * code is only executed in Pass 2, it is too late to save space--it has
12805      * been allocated in Pass 1, and currently isn't given back.  But turning
12806      * things into an EXACTish node can allow the optimizer to join it to any
12807      * adjacent such nodes.  And if the class is equivalent to things like /./,
12808      * expensive run-time swashes can be avoided.  Now that we have more
12809      * complete information, we can find things necessarily missed by the
12810      * earlier code.  I (khw) am not sure how much to look for here.  It would
12811      * be easy, but perhaps too slow, to check any candidates against all the
12812      * node types they could possibly match using _invlistEQ(). */
12813
12814     if (cp_list
12815         && ! unicode_alternate
12816         && ! invert
12817         && ! depends_list
12818         && ! (ANYOF_FLAGS(ret) & ANYOF_CLASS)
12819         && ! HAS_NONLOCALE_RUNTIME_PROPERTY_DEFINITION)
12820     {
12821        UV start, end;
12822        U8 op = END;  /* The optimzation node-type */
12823         const char * cur_parse= RExC_parse;
12824
12825        invlist_iterinit(cp_list);
12826        if (! invlist_iternext(cp_list, &start, &end)) {
12827
12828             /* Here, the list is empty.  This happens, for example, when a
12829              * Unicode property is the only thing in the character class, and
12830              * it doesn't match anything.  (perluniprops.pod notes such
12831              * properties) */
12832             op = OPFAIL;
12833             *flagp |= HASWIDTH|SIMPLE;
12834         }
12835         else if (start == end) {    /* The range is a single code point */
12836             if (! invlist_iternext(cp_list, &start, &end)
12837
12838                     /* Don't do this optimization if it would require changing
12839                      * the pattern to UTF-8 */
12840                 && (start < 256 || UTF))
12841             {
12842                 /* Here, the list contains a single code point.  Can optimize
12843                  * into an EXACT node */
12844
12845                 value = start;
12846
12847                 if (! FOLD) {
12848                     op = EXACT;
12849                 }
12850                 else if (LOC) {
12851
12852                     /* A locale node under folding with one code point can be
12853                      * an EXACTFL, as its fold won't be calculated until
12854                      * runtime */
12855                     op = EXACTFL;
12856                 }
12857                 else {
12858
12859                     /* Here, we are generally folding, but there is only one
12860                      * code point to match.  If we have to, we use an EXACT
12861                      * node, but it would be better for joining with adjacent
12862                      * nodes in the optimization pass if we used the same
12863                      * EXACTFish node that any such are likely to be.  We can
12864                      * do this iff the code point doesn't participate in any
12865                      * folds.  For example, an EXACTF of a colon is the same as
12866                      * an EXACT one, since nothing folds to or from a colon.
12867                      * In the Latin1 range, being an alpha means that the
12868                      * character participates in a fold (except for the
12869                      * feminine and masculine ordinals, which I (khw) don't
12870                      * think are worrying about optimizing for). */
12871                     if (value < 256) {
12872                         if (isALPHA_L1(value)) {
12873                             op = EXACT;
12874                         }
12875                     }
12876                     else {
12877                         if (! PL_utf8_foldable) {
12878                             SV* swash = swash_init("utf8", "_Perl_Any_Folds",
12879                                                 &PL_sv_undef, 1, 0);
12880                             PL_utf8_foldable = _get_swash_invlist(swash);
12881                             SvREFCNT_dec(swash);
12882                         }
12883                         if (_invlist_contains_cp(PL_utf8_foldable, value)) {
12884                             op = EXACT;
12885                         }
12886                     }
12887
12888                     /* If we haven't found the node type, above, it means we
12889                      * can use the prevailing one */
12890                     if (op == END) {
12891                         op = compute_EXACTish(pRExC_state);
12892                     }
12893                 }
12894             }
12895         }
12896         else if (start == 0) {
12897             if (end == UV_MAX) {
12898                 op = SANY;
12899                 *flagp |= HASWIDTH|SIMPLE;
12900                 RExC_naughty++;
12901             }
12902             else if (end == '\n' - 1
12903                     && invlist_iternext(cp_list, &start, &end)
12904                     && start == '\n' + 1 && end == UV_MAX)
12905             {
12906                 op = REG_ANY;
12907                 *flagp |= HASWIDTH|SIMPLE;
12908                 RExC_naughty++;
12909             }
12910         }
12911
12912         if (op != END) {
12913             RExC_parse = (char *)orig_parse;
12914             RExC_emit = (regnode *)orig_emit;
12915
12916             ret = reg_node(pRExC_state, op);
12917
12918             RExC_parse = (char *)cur_parse;
12919
12920             if (PL_regkind[op] == EXACT) {
12921                 alloc_maybe_populate_EXACT(pRExC_state, ret, flagp, 0, value);
12922             }
12923
12924             SvREFCNT_dec(listsv);
12925             return ret;
12926         }
12927     }
12928
12929     /* Here, <cp_list> contains all the code points we can determine at
12930      * compile time that match under all conditions.  Go through it, and
12931      * for things that belong in the bitmap, put them there, and delete from
12932      * <cp_list>.  While we are at it, see if everything above 255 is in the
12933      * list, and if so, set a flag to speed up execution */
12934     ANYOF_BITMAP_ZERO(ret);
12935     if (cp_list) {
12936
12937         /* This gets set if we actually need to modify things */
12938         bool change_invlist = FALSE;
12939
12940         UV start, end;
12941
12942         /* Start looking through <cp_list> */
12943         invlist_iterinit(cp_list);
12944         while (invlist_iternext(cp_list, &start, &end)) {
12945             UV high;
12946             int i;
12947
12948             if (end == UV_MAX && start <= 256) {
12949                 ANYOF_FLAGS(ret) |= ANYOF_UNICODE_ALL;
12950             }
12951
12952             /* Quit if are above what we should change */
12953             if (start > 255) {
12954                 break;
12955             }
12956
12957             change_invlist = TRUE;
12958
12959             /* Set all the bits in the range, up to the max that we are doing */
12960             high = (end < 255) ? end : 255;
12961             for (i = start; i <= (int) high; i++) {
12962                 if (! ANYOF_BITMAP_TEST(ret, i)) {
12963                     ANYOF_BITMAP_SET(ret, i);
12964                     prevvalue = value;
12965                     value = i;
12966                 }
12967             }
12968         }
12969
12970         /* Done with loop; remove any code points that are in the bitmap from
12971          * <cp_list> */
12972         if (change_invlist) {
12973             _invlist_subtract(cp_list, PL_Latin1, &cp_list);
12974         }
12975
12976         /* If have completely emptied it, remove it completely */
12977         if (_invlist_len(cp_list) == 0) {
12978             SvREFCNT_dec(cp_list);
12979             cp_list = NULL;
12980         }
12981     }
12982
12983     if (invert) {
12984         ANYOF_FLAGS(ret) |= ANYOF_INVERT;
12985     }
12986
12987     /* Here, the bitmap has been populated with all the Latin1 code points that
12988      * always match.  Can now add to the overall list those that match only
12989      * when the target string is UTF-8 (<depends_list>). */
12990     if (depends_list) {
12991         if (cp_list) {
12992             _invlist_union(cp_list, depends_list, &cp_list);
12993             SvREFCNT_dec(depends_list);
12994         }
12995         else {
12996             cp_list = depends_list;
12997         }
12998     }
12999
13000     /* If there is a swash and more than one element, we can't use the swash in
13001      * the optimization below. */
13002     if (swash && element_count > 1) {
13003         SvREFCNT_dec(swash);
13004         swash = NULL;
13005     }
13006
13007     if (! cp_list
13008         && ! HAS_NONLOCALE_RUNTIME_PROPERTY_DEFINITION
13009         && ! unicode_alternate)
13010     {
13011         ARG_SET(ret, ANYOF_NONBITMAP_EMPTY);
13012         SvREFCNT_dec(listsv);
13013         SvREFCNT_dec(unicode_alternate);
13014     }
13015     else {
13016         /* av[0] stores the character class description in its textual form:
13017          *       used later (regexec.c:Perl_regclass_swash()) to initialize the
13018          *       appropriate swash, and is also useful for dumping the regnode.
13019          * av[1] if NULL, is a placeholder to later contain the swash computed
13020          *       from av[0].  But if no further computation need be done, the
13021          *       swash is stored there now.
13022          * av[2] stores the multicharacter foldings, used later in
13023          *       regexec.c:S_reginclass().
13024          * av[3] stores the cp_list inversion list for use in addition or
13025          *       instead of av[0]; used only if av[1] is NULL
13026          * av[4] is set if any component of the class is from a user-defined
13027          *       property; used only if av[1] is NULL */
13028         AV * const av = newAV();
13029         SV *rv;
13030
13031         av_store(av, 0, (HAS_NONLOCALE_RUNTIME_PROPERTY_DEFINITION)
13032                         ? listsv
13033                         : &PL_sv_undef);
13034         if (swash) {
13035             av_store(av, 1, swash);
13036             SvREFCNT_dec(cp_list);
13037         }
13038         else {
13039             av_store(av, 1, NULL);
13040             if (cp_list) {
13041                 av_store(av, 3, cp_list);
13042                 av_store(av, 4, newSVuv(has_user_defined_property));
13043             }
13044         }
13045
13046         /* Store any computed multi-char folds only if we are allowing
13047          * them */
13048         if (allow_full_fold) {
13049             av_store(av, 2, MUTABLE_SV(unicode_alternate));
13050             if (unicode_alternate) { /* This node is variable length */
13051                 OP(ret) = ANYOFV;
13052             }
13053         }
13054         else {
13055             av_store(av, 2, NULL);
13056         }
13057         rv = newRV_noinc(MUTABLE_SV(av));
13058         n = add_data(pRExC_state, 1, "s");
13059         RExC_rxi->data->data[n] = (void*)rv;
13060         ARG_SET(ret, n);
13061     }
13062
13063     *flagp |= HASWIDTH|SIMPLE;
13064     return ret;
13065 }
13066 #undef HAS_NONLOCALE_RUNTIME_PROPERTY_DEFINITION
13067
13068
13069 /* reg_skipcomment()
13070
13071    Absorbs an /x style # comments from the input stream.
13072    Returns true if there is more text remaining in the stream.
13073    Will set the REG_SEEN_RUN_ON_COMMENT flag if the comment
13074    terminates the pattern without including a newline.
13075
13076    Note its the callers responsibility to ensure that we are
13077    actually in /x mode
13078
13079 */
13080
13081 STATIC bool
13082 S_reg_skipcomment(pTHX_ RExC_state_t *pRExC_state)
13083 {
13084     bool ended = 0;
13085
13086     PERL_ARGS_ASSERT_REG_SKIPCOMMENT;
13087
13088     while (RExC_parse < RExC_end)
13089         if (*RExC_parse++ == '\n') {
13090             ended = 1;
13091             break;
13092         }
13093     if (!ended) {
13094         /* we ran off the end of the pattern without ending
13095            the comment, so we have to add an \n when wrapping */
13096         RExC_seen |= REG_SEEN_RUN_ON_COMMENT;
13097         return 0;
13098     } else
13099         return 1;
13100 }
13101
13102 /* nextchar()
13103
13104    Advances the parse position, and optionally absorbs
13105    "whitespace" from the inputstream.
13106
13107    Without /x "whitespace" means (?#...) style comments only,
13108    with /x this means (?#...) and # comments and whitespace proper.
13109
13110    Returns the RExC_parse point from BEFORE the scan occurs.
13111
13112    This is the /x friendly way of saying RExC_parse++.
13113 */
13114
13115 STATIC char*
13116 S_nextchar(pTHX_ RExC_state_t *pRExC_state)
13117 {
13118     char* const retval = RExC_parse++;
13119
13120     PERL_ARGS_ASSERT_NEXTCHAR;
13121
13122     for (;;) {
13123         if (RExC_end - RExC_parse >= 3
13124             && *RExC_parse == '('
13125             && RExC_parse[1] == '?'
13126             && RExC_parse[2] == '#')
13127         {
13128             while (*RExC_parse != ')') {
13129                 if (RExC_parse == RExC_end)
13130                     FAIL("Sequence (?#... not terminated");
13131                 RExC_parse++;
13132             }
13133             RExC_parse++;
13134             continue;
13135         }
13136         if (RExC_flags & RXf_PMf_EXTENDED) {
13137             if (isSPACE(*RExC_parse)) {
13138                 RExC_parse++;
13139                 continue;
13140             }
13141             else if (*RExC_parse == '#') {
13142                 if ( reg_skipcomment( pRExC_state ) )
13143                     continue;
13144             }
13145         }
13146         return retval;
13147     }
13148 }
13149
13150 /*
13151 - reg_node - emit a node
13152 */
13153 STATIC regnode *                        /* Location. */
13154 S_reg_node(pTHX_ RExC_state_t *pRExC_state, U8 op)
13155 {
13156     dVAR;
13157     regnode *ptr;
13158     regnode * const ret = RExC_emit;
13159     GET_RE_DEBUG_FLAGS_DECL;
13160
13161     PERL_ARGS_ASSERT_REG_NODE;
13162
13163     if (SIZE_ONLY) {
13164         SIZE_ALIGN(RExC_size);
13165         RExC_size += 1;
13166         return(ret);
13167     }
13168     if (RExC_emit >= RExC_emit_bound)
13169         Perl_croak(aTHX_ "panic: reg_node overrun trying to emit %d, %p>=%p",
13170                    op, RExC_emit, RExC_emit_bound);
13171
13172     NODE_ALIGN_FILL(ret);
13173     ptr = ret;
13174     FILL_ADVANCE_NODE(ptr, op);
13175 #ifdef RE_TRACK_PATTERN_OFFSETS
13176     if (RExC_offsets) {         /* MJD */
13177         MJD_OFFSET_DEBUG(("%s:%d: (op %s) %s %"UVuf" (len %"UVuf") (max %"UVuf").\n", 
13178               "reg_node", __LINE__, 
13179               PL_reg_name[op],
13180               (UV)(RExC_emit - RExC_emit_start) > RExC_offsets[0] 
13181                 ? "Overwriting end of array!\n" : "OK",
13182               (UV)(RExC_emit - RExC_emit_start),
13183               (UV)(RExC_parse - RExC_start),
13184               (UV)RExC_offsets[0])); 
13185         Set_Node_Offset(RExC_emit, RExC_parse + (op == END));
13186     }
13187 #endif
13188     RExC_emit = ptr;
13189     return(ret);
13190 }
13191
13192 /*
13193 - reganode - emit a node with an argument
13194 */
13195 STATIC regnode *                        /* Location. */
13196 S_reganode(pTHX_ RExC_state_t *pRExC_state, U8 op, U32 arg)
13197 {
13198     dVAR;
13199     regnode *ptr;
13200     regnode * const ret = RExC_emit;
13201     GET_RE_DEBUG_FLAGS_DECL;
13202
13203     PERL_ARGS_ASSERT_REGANODE;
13204
13205     if (SIZE_ONLY) {
13206         SIZE_ALIGN(RExC_size);
13207         RExC_size += 2;
13208         /* 
13209            We can't do this:
13210            
13211            assert(2==regarglen[op]+1); 
13212
13213            Anything larger than this has to allocate the extra amount.
13214            If we changed this to be:
13215            
13216            RExC_size += (1 + regarglen[op]);
13217            
13218            then it wouldn't matter. Its not clear what side effect
13219            might come from that so its not done so far.
13220            -- dmq
13221         */
13222         return(ret);
13223     }
13224     if (RExC_emit >= RExC_emit_bound)
13225         Perl_croak(aTHX_ "panic: reg_node overrun trying to emit %d, %p>=%p",
13226                    op, RExC_emit, RExC_emit_bound);
13227
13228     NODE_ALIGN_FILL(ret);
13229     ptr = ret;
13230     FILL_ADVANCE_NODE_ARG(ptr, op, arg);
13231 #ifdef RE_TRACK_PATTERN_OFFSETS
13232     if (RExC_offsets) {         /* MJD */
13233         MJD_OFFSET_DEBUG(("%s(%d): (op %s) %s %"UVuf" <- %"UVuf" (max %"UVuf").\n", 
13234               "reganode",
13235               __LINE__,
13236               PL_reg_name[op],
13237               (UV)(RExC_emit - RExC_emit_start) > RExC_offsets[0] ? 
13238               "Overwriting end of array!\n" : "OK",
13239               (UV)(RExC_emit - RExC_emit_start),
13240               (UV)(RExC_parse - RExC_start),
13241               (UV)RExC_offsets[0])); 
13242         Set_Cur_Node_Offset;
13243     }
13244 #endif            
13245     RExC_emit = ptr;
13246     return(ret);
13247 }
13248
13249 /*
13250 - reguni - emit (if appropriate) a Unicode character
13251 */
13252 STATIC STRLEN
13253 S_reguni(pTHX_ const RExC_state_t *pRExC_state, UV uv, char* s)
13254 {
13255     dVAR;
13256
13257     PERL_ARGS_ASSERT_REGUNI;
13258
13259     return SIZE_ONLY ? UNISKIP(uv) : (uvchr_to_utf8((U8*)s, uv) - (U8*)s);
13260 }
13261
13262 /*
13263 - reginsert - insert an operator in front of already-emitted operand
13264 *
13265 * Means relocating the operand.
13266 */
13267 STATIC void
13268 S_reginsert(pTHX_ RExC_state_t *pRExC_state, U8 op, regnode *opnd, U32 depth)
13269 {
13270     dVAR;
13271     regnode *src;
13272     regnode *dst;
13273     regnode *place;
13274     const int offset = regarglen[(U8)op];
13275     const int size = NODE_STEP_REGNODE + offset;
13276     GET_RE_DEBUG_FLAGS_DECL;
13277
13278     PERL_ARGS_ASSERT_REGINSERT;
13279     PERL_UNUSED_ARG(depth);
13280 /* (PL_regkind[(U8)op] == CURLY ? EXTRA_STEP_2ARGS : 0); */
13281     DEBUG_PARSE_FMT("inst"," - %s",PL_reg_name[op]);
13282     if (SIZE_ONLY) {
13283         RExC_size += size;
13284         return;
13285     }
13286
13287     src = RExC_emit;
13288     RExC_emit += size;
13289     dst = RExC_emit;
13290     if (RExC_open_parens) {
13291         int paren;
13292         /*DEBUG_PARSE_FMT("inst"," - %"IVdf, (IV)RExC_npar);*/
13293         for ( paren=0 ; paren < RExC_npar ; paren++ ) {
13294             if ( RExC_open_parens[paren] >= opnd ) {
13295                 /*DEBUG_PARSE_FMT("open"," - %d",size);*/
13296                 RExC_open_parens[paren] += size;
13297             } else {
13298                 /*DEBUG_PARSE_FMT("open"," - %s","ok");*/
13299             }
13300             if ( RExC_close_parens[paren] >= opnd ) {
13301                 /*DEBUG_PARSE_FMT("close"," - %d",size);*/
13302                 RExC_close_parens[paren] += size;
13303             } else {
13304                 /*DEBUG_PARSE_FMT("close"," - %s","ok");*/
13305             }
13306         }
13307     }
13308
13309     while (src > opnd) {
13310         StructCopy(--src, --dst, regnode);
13311 #ifdef RE_TRACK_PATTERN_OFFSETS
13312         if (RExC_offsets) {     /* MJD 20010112 */
13313             MJD_OFFSET_DEBUG(("%s(%d): (op %s) %s copy %"UVuf" -> %"UVuf" (max %"UVuf").\n",
13314                   "reg_insert",
13315                   __LINE__,
13316                   PL_reg_name[op],
13317                   (UV)(dst - RExC_emit_start) > RExC_offsets[0] 
13318                     ? "Overwriting end of array!\n" : "OK",
13319                   (UV)(src - RExC_emit_start),
13320                   (UV)(dst - RExC_emit_start),
13321                   (UV)RExC_offsets[0])); 
13322             Set_Node_Offset_To_R(dst-RExC_emit_start, Node_Offset(src));
13323             Set_Node_Length_To_R(dst-RExC_emit_start, Node_Length(src));
13324         }
13325 #endif
13326     }
13327     
13328
13329     place = opnd;               /* Op node, where operand used to be. */
13330 #ifdef RE_TRACK_PATTERN_OFFSETS
13331     if (RExC_offsets) {         /* MJD */
13332         MJD_OFFSET_DEBUG(("%s(%d): (op %s) %s %"UVuf" <- %"UVuf" (max %"UVuf").\n", 
13333               "reginsert",
13334               __LINE__,
13335               PL_reg_name[op],
13336               (UV)(place - RExC_emit_start) > RExC_offsets[0] 
13337               ? "Overwriting end of array!\n" : "OK",
13338               (UV)(place - RExC_emit_start),
13339               (UV)(RExC_parse - RExC_start),
13340               (UV)RExC_offsets[0]));
13341         Set_Node_Offset(place, RExC_parse);
13342         Set_Node_Length(place, 1);
13343     }
13344 #endif    
13345     src = NEXTOPER(place);
13346     FILL_ADVANCE_NODE(place, op);
13347     Zero(src, offset, regnode);
13348 }
13349
13350 /*
13351 - regtail - set the next-pointer at the end of a node chain of p to val.
13352 - SEE ALSO: regtail_study
13353 */
13354 /* TODO: All three parms should be const */
13355 STATIC void
13356 S_regtail(pTHX_ RExC_state_t *pRExC_state, regnode *p, const regnode *val,U32 depth)
13357 {
13358     dVAR;
13359     regnode *scan;
13360     GET_RE_DEBUG_FLAGS_DECL;
13361
13362     PERL_ARGS_ASSERT_REGTAIL;
13363 #ifndef DEBUGGING
13364     PERL_UNUSED_ARG(depth);
13365 #endif
13366
13367     if (SIZE_ONLY)
13368         return;
13369
13370     /* Find last node. */
13371     scan = p;
13372     for (;;) {
13373         regnode * const temp = regnext(scan);
13374         DEBUG_PARSE_r({
13375             SV * const mysv=sv_newmortal();
13376             DEBUG_PARSE_MSG((scan==p ? "tail" : ""));
13377             regprop(RExC_rx, mysv, scan);
13378             PerlIO_printf(Perl_debug_log, "~ %s (%d) %s %s\n",
13379                 SvPV_nolen_const(mysv), REG_NODE_NUM(scan),
13380                     (temp == NULL ? "->" : ""),
13381                     (temp == NULL ? PL_reg_name[OP(val)] : "")
13382             );
13383         });
13384         if (temp == NULL)
13385             break;
13386         scan = temp;
13387     }
13388
13389     if (reg_off_by_arg[OP(scan)]) {
13390         ARG_SET(scan, val - scan);
13391     }
13392     else {
13393         NEXT_OFF(scan) = val - scan;
13394     }
13395 }
13396
13397 #ifdef DEBUGGING
13398 /*
13399 - regtail_study - set the next-pointer at the end of a node chain of p to val.
13400 - Look for optimizable sequences at the same time.
13401 - currently only looks for EXACT chains.
13402
13403 This is experimental code. The idea is to use this routine to perform 
13404 in place optimizations on branches and groups as they are constructed,
13405 with the long term intention of removing optimization from study_chunk so
13406 that it is purely analytical.
13407
13408 Currently only used when in DEBUG mode. The macro REGTAIL_STUDY() is used
13409 to control which is which.
13410
13411 */
13412 /* TODO: All four parms should be const */
13413
13414 STATIC U8
13415 S_regtail_study(pTHX_ RExC_state_t *pRExC_state, regnode *p, const regnode *val,U32 depth)
13416 {
13417     dVAR;
13418     regnode *scan;
13419     U8 exact = PSEUDO;
13420 #ifdef EXPERIMENTAL_INPLACESCAN
13421     I32 min = 0;
13422 #endif
13423     GET_RE_DEBUG_FLAGS_DECL;
13424
13425     PERL_ARGS_ASSERT_REGTAIL_STUDY;
13426
13427
13428     if (SIZE_ONLY)
13429         return exact;
13430
13431     /* Find last node. */
13432
13433     scan = p;
13434     for (;;) {
13435         regnode * const temp = regnext(scan);
13436 #ifdef EXPERIMENTAL_INPLACESCAN
13437         if (PL_regkind[OP(scan)] == EXACT) {
13438             bool has_exactf_sharp_s;    /* Unexamined in this routine */
13439             if (join_exact(pRExC_state,scan,&min, &has_exactf_sharp_s, 1,val,depth+1))
13440                 return EXACT;
13441         }
13442 #endif
13443         if ( exact ) {
13444             switch (OP(scan)) {
13445                 case EXACT:
13446                 case EXACTF:
13447                 case EXACTFA:
13448                 case EXACTFU:
13449                 case EXACTFU_SS:
13450                 case EXACTFU_TRICKYFOLD:
13451                 case EXACTFL:
13452                         if( exact == PSEUDO )
13453                             exact= OP(scan);
13454                         else if ( exact != OP(scan) )
13455                             exact= 0;
13456                 case NOTHING:
13457                     break;
13458                 default:
13459                     exact= 0;
13460             }
13461         }
13462         DEBUG_PARSE_r({
13463             SV * const mysv=sv_newmortal();
13464             DEBUG_PARSE_MSG((scan==p ? "tsdy" : ""));
13465             regprop(RExC_rx, mysv, scan);
13466             PerlIO_printf(Perl_debug_log, "~ %s (%d) -> %s\n",
13467                 SvPV_nolen_const(mysv),
13468                 REG_NODE_NUM(scan),
13469                 PL_reg_name[exact]);
13470         });
13471         if (temp == NULL)
13472             break;
13473         scan = temp;
13474     }
13475     DEBUG_PARSE_r({
13476         SV * const mysv_val=sv_newmortal();
13477         DEBUG_PARSE_MSG("");
13478         regprop(RExC_rx, mysv_val, val);
13479         PerlIO_printf(Perl_debug_log, "~ attach to %s (%"IVdf") offset to %"IVdf"\n",
13480                       SvPV_nolen_const(mysv_val),
13481                       (IV)REG_NODE_NUM(val),
13482                       (IV)(val - scan)
13483         );
13484     });
13485     if (reg_off_by_arg[OP(scan)]) {
13486         ARG_SET(scan, val - scan);
13487     }
13488     else {
13489         NEXT_OFF(scan) = val - scan;
13490     }
13491
13492     return exact;
13493 }
13494 #endif
13495
13496 /*
13497  - regdump - dump a regexp onto Perl_debug_log in vaguely comprehensible form
13498  */
13499 #ifdef DEBUGGING
13500 static void 
13501 S_regdump_extflags(pTHX_ const char *lead, const U32 flags)
13502 {
13503     int bit;
13504     int set=0;
13505     regex_charset cs;
13506
13507     for (bit=0; bit<32; bit++) {
13508         if (flags & (1<<bit)) {
13509             if ((1<<bit) & RXf_PMf_CHARSET) {   /* Output separately, below */
13510                 continue;
13511             }
13512             if (!set++ && lead) 
13513                 PerlIO_printf(Perl_debug_log, "%s",lead);
13514             PerlIO_printf(Perl_debug_log, "%s ",PL_reg_extflags_name[bit]);
13515         }               
13516     }      
13517     if ((cs = get_regex_charset(flags)) != REGEX_DEPENDS_CHARSET) {
13518             if (!set++ && lead) {
13519                 PerlIO_printf(Perl_debug_log, "%s",lead);
13520             }
13521             switch (cs) {
13522                 case REGEX_UNICODE_CHARSET:
13523                     PerlIO_printf(Perl_debug_log, "UNICODE");
13524                     break;
13525                 case REGEX_LOCALE_CHARSET:
13526                     PerlIO_printf(Perl_debug_log, "LOCALE");
13527                     break;
13528                 case REGEX_ASCII_RESTRICTED_CHARSET:
13529                     PerlIO_printf(Perl_debug_log, "ASCII-RESTRICTED");
13530                     break;
13531                 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
13532                     PerlIO_printf(Perl_debug_log, "ASCII-MORE_RESTRICTED");
13533                     break;
13534                 default:
13535                     PerlIO_printf(Perl_debug_log, "UNKNOWN CHARACTER SET");
13536                     break;
13537             }
13538     }
13539     if (lead)  {
13540         if (set) 
13541             PerlIO_printf(Perl_debug_log, "\n");
13542         else 
13543             PerlIO_printf(Perl_debug_log, "%s[none-set]\n",lead);
13544     }            
13545 }   
13546 #endif
13547
13548 void
13549 Perl_regdump(pTHX_ const regexp *r)
13550 {
13551 #ifdef DEBUGGING
13552     dVAR;
13553     SV * const sv = sv_newmortal();
13554     SV *dsv= sv_newmortal();
13555     RXi_GET_DECL(r,ri);
13556     GET_RE_DEBUG_FLAGS_DECL;
13557
13558     PERL_ARGS_ASSERT_REGDUMP;
13559
13560     (void)dumpuntil(r, ri->program, ri->program + 1, NULL, NULL, sv, 0, 0);
13561
13562     /* Header fields of interest. */
13563     if (r->anchored_substr) {
13564         RE_PV_QUOTED_DECL(s, 0, dsv, SvPVX_const(r->anchored_substr), 
13565             RE_SV_DUMPLEN(r->anchored_substr), 30);
13566         PerlIO_printf(Perl_debug_log,
13567                       "anchored %s%s at %"IVdf" ",
13568                       s, RE_SV_TAIL(r->anchored_substr),
13569                       (IV)r->anchored_offset);
13570     } else if (r->anchored_utf8) {
13571         RE_PV_QUOTED_DECL(s, 1, dsv, SvPVX_const(r->anchored_utf8), 
13572             RE_SV_DUMPLEN(r->anchored_utf8), 30);
13573         PerlIO_printf(Perl_debug_log,
13574                       "anchored utf8 %s%s at %"IVdf" ",
13575                       s, RE_SV_TAIL(r->anchored_utf8),
13576                       (IV)r->anchored_offset);
13577     }                 
13578     if (r->float_substr) {
13579         RE_PV_QUOTED_DECL(s, 0, dsv, SvPVX_const(r->float_substr), 
13580             RE_SV_DUMPLEN(r->float_substr), 30);
13581         PerlIO_printf(Perl_debug_log,
13582                       "floating %s%s at %"IVdf"..%"UVuf" ",
13583                       s, RE_SV_TAIL(r->float_substr),
13584                       (IV)r->float_min_offset, (UV)r->float_max_offset);
13585     } else if (r->float_utf8) {
13586         RE_PV_QUOTED_DECL(s, 1, dsv, SvPVX_const(r->float_utf8), 
13587             RE_SV_DUMPLEN(r->float_utf8), 30);
13588         PerlIO_printf(Perl_debug_log,
13589                       "floating utf8 %s%s at %"IVdf"..%"UVuf" ",
13590                       s, RE_SV_TAIL(r->float_utf8),
13591                       (IV)r->float_min_offset, (UV)r->float_max_offset);
13592     }
13593     if (r->check_substr || r->check_utf8)
13594         PerlIO_printf(Perl_debug_log,
13595                       (const char *)
13596                       (r->check_substr == r->float_substr
13597                        && r->check_utf8 == r->float_utf8
13598                        ? "(checking floating" : "(checking anchored"));
13599     if (r->extflags & RXf_NOSCAN)
13600         PerlIO_printf(Perl_debug_log, " noscan");
13601     if (r->extflags & RXf_CHECK_ALL)
13602         PerlIO_printf(Perl_debug_log, " isall");
13603     if (r->check_substr || r->check_utf8)
13604         PerlIO_printf(Perl_debug_log, ") ");
13605
13606     if (ri->regstclass) {
13607         regprop(r, sv, ri->regstclass);
13608         PerlIO_printf(Perl_debug_log, "stclass %s ", SvPVX_const(sv));
13609     }
13610     if (r->extflags & RXf_ANCH) {
13611         PerlIO_printf(Perl_debug_log, "anchored");
13612         if (r->extflags & RXf_ANCH_BOL)
13613             PerlIO_printf(Perl_debug_log, "(BOL)");
13614         if (r->extflags & RXf_ANCH_MBOL)
13615             PerlIO_printf(Perl_debug_log, "(MBOL)");
13616         if (r->extflags & RXf_ANCH_SBOL)
13617             PerlIO_printf(Perl_debug_log, "(SBOL)");
13618         if (r->extflags & RXf_ANCH_GPOS)
13619             PerlIO_printf(Perl_debug_log, "(GPOS)");
13620         PerlIO_putc(Perl_debug_log, ' ');
13621     }
13622     if (r->extflags & RXf_GPOS_SEEN)
13623         PerlIO_printf(Perl_debug_log, "GPOS:%"UVuf" ", (UV)r->gofs);
13624     if (r->intflags & PREGf_SKIP)
13625         PerlIO_printf(Perl_debug_log, "plus ");
13626     if (r->intflags & PREGf_IMPLICIT)
13627         PerlIO_printf(Perl_debug_log, "implicit ");
13628     PerlIO_printf(Perl_debug_log, "minlen %"IVdf" ", (IV)r->minlen);
13629     if (r->extflags & RXf_EVAL_SEEN)
13630         PerlIO_printf(Perl_debug_log, "with eval ");
13631     PerlIO_printf(Perl_debug_log, "\n");
13632     DEBUG_FLAGS_r(regdump_extflags("r->extflags: ",r->extflags));            
13633 #else
13634     PERL_ARGS_ASSERT_REGDUMP;
13635     PERL_UNUSED_CONTEXT;
13636     PERL_UNUSED_ARG(r);
13637 #endif  /* DEBUGGING */
13638 }
13639
13640 /*
13641 - regprop - printable representation of opcode
13642 */
13643 #define EMIT_ANYOF_TEST_SEPARATOR(do_sep,sv,flags) \
13644 STMT_START { \
13645         if (do_sep) {                           \
13646             Perl_sv_catpvf(aTHX_ sv,"%s][%s",PL_colors[1],PL_colors[0]); \
13647             if (flags & ANYOF_INVERT)           \
13648                 /*make sure the invert info is in each */ \
13649                 sv_catpvs(sv, "^");             \
13650             do_sep = 0;                         \
13651         }                                       \
13652 } STMT_END
13653
13654 void
13655 Perl_regprop(pTHX_ const regexp *prog, SV *sv, const regnode *o)
13656 {
13657 #ifdef DEBUGGING
13658     dVAR;
13659     int k;
13660
13661     /* Should be synchronized with * ANYOF_ #xdefines in regcomp.h */
13662     static const char * const anyofs[] = {
13663         "\\w",
13664         "\\W",
13665         "\\s",
13666         "\\S",
13667         "\\d",
13668         "\\D",
13669         "[:alnum:]",
13670         "[:^alnum:]",
13671         "[:alpha:]",
13672         "[:^alpha:]",
13673         "[:ascii:]",
13674         "[:^ascii:]",
13675         "[:cntrl:]",
13676         "[:^cntrl:]",
13677         "[:graph:]",
13678         "[:^graph:]",
13679         "[:lower:]",
13680         "[:^lower:]",
13681         "[:print:]",
13682         "[:^print:]",
13683         "[:punct:]",
13684         "[:^punct:]",
13685         "[:upper:]",
13686         "[:^upper:]",
13687         "[:xdigit:]",
13688         "[:^xdigit:]",
13689         "[:space:]",
13690         "[:^space:]",
13691         "[:blank:]",
13692         "[:^blank:]"
13693     };
13694     RXi_GET_DECL(prog,progi);
13695     GET_RE_DEBUG_FLAGS_DECL;
13696     
13697     PERL_ARGS_ASSERT_REGPROP;
13698
13699     sv_setpvs(sv, "");
13700
13701     if (OP(o) > REGNODE_MAX)            /* regnode.type is unsigned */
13702         /* It would be nice to FAIL() here, but this may be called from
13703            regexec.c, and it would be hard to supply pRExC_state. */
13704         Perl_croak(aTHX_ "Corrupted regexp opcode %d > %d", (int)OP(o), (int)REGNODE_MAX);
13705     sv_catpv(sv, PL_reg_name[OP(o)]); /* Take off const! */
13706
13707     k = PL_regkind[OP(o)];
13708
13709     if (k == EXACT) {
13710         sv_catpvs(sv, " ");
13711         /* Using is_utf8_string() (via PERL_PV_UNI_DETECT) 
13712          * is a crude hack but it may be the best for now since 
13713          * we have no flag "this EXACTish node was UTF-8" 
13714          * --jhi */
13715         pv_pretty(sv, STRING(o), STR_LEN(o), 60, PL_colors[0], PL_colors[1],
13716                   PERL_PV_ESCAPE_UNI_DETECT |
13717                   PERL_PV_ESCAPE_NONASCII   |
13718                   PERL_PV_PRETTY_ELLIPSES   |
13719                   PERL_PV_PRETTY_LTGT       |
13720                   PERL_PV_PRETTY_NOCLEAR
13721                   );
13722     } else if (k == TRIE) {
13723         /* print the details of the trie in dumpuntil instead, as
13724          * progi->data isn't available here */
13725         const char op = OP(o);
13726         const U32 n = ARG(o);
13727         const reg_ac_data * const ac = IS_TRIE_AC(op) ?
13728                (reg_ac_data *)progi->data->data[n] :
13729                NULL;
13730         const reg_trie_data * const trie
13731             = (reg_trie_data*)progi->data->data[!IS_TRIE_AC(op) ? n : ac->trie];
13732         
13733         Perl_sv_catpvf(aTHX_ sv, "-%s",PL_reg_name[o->flags]);
13734         DEBUG_TRIE_COMPILE_r(
13735             Perl_sv_catpvf(aTHX_ sv,
13736                 "<S:%"UVuf"/%"IVdf" W:%"UVuf" L:%"UVuf"/%"UVuf" C:%"UVuf"/%"UVuf">",
13737                 (UV)trie->startstate,
13738                 (IV)trie->statecount-1, /* -1 because of the unused 0 element */
13739                 (UV)trie->wordcount,
13740                 (UV)trie->minlen,
13741                 (UV)trie->maxlen,
13742                 (UV)TRIE_CHARCOUNT(trie),
13743                 (UV)trie->uniquecharcount
13744             )
13745         );
13746         if ( IS_ANYOF_TRIE(op) || trie->bitmap ) {
13747             int i;
13748             int rangestart = -1;
13749             U8* bitmap = IS_ANYOF_TRIE(op) ? (U8*)ANYOF_BITMAP(o) : (U8*)TRIE_BITMAP(trie);
13750             sv_catpvs(sv, "[");
13751             for (i = 0; i <= 256; i++) {
13752                 if (i < 256 && BITMAP_TEST(bitmap,i)) {
13753                     if (rangestart == -1)
13754                         rangestart = i;
13755                 } else if (rangestart != -1) {
13756                     if (i <= rangestart + 3)
13757                         for (; rangestart < i; rangestart++)
13758                             put_byte(sv, rangestart);
13759                     else {
13760                         put_byte(sv, rangestart);
13761                         sv_catpvs(sv, "-");
13762                         put_byte(sv, i - 1);
13763                     }
13764                     rangestart = -1;
13765                 }
13766             }
13767             sv_catpvs(sv, "]");
13768         } 
13769          
13770     } else if (k == CURLY) {
13771         if (OP(o) == CURLYM || OP(o) == CURLYN || OP(o) == CURLYX)
13772             Perl_sv_catpvf(aTHX_ sv, "[%d]", o->flags); /* Parenth number */
13773         Perl_sv_catpvf(aTHX_ sv, " {%d,%d}", ARG1(o), ARG2(o));
13774     }
13775     else if (k == WHILEM && o->flags)                   /* Ordinal/of */
13776         Perl_sv_catpvf(aTHX_ sv, "[%d/%d]", o->flags & 0xf, o->flags>>4);
13777     else if (k == REF || k == OPEN || k == CLOSE || k == GROUPP || OP(o)==ACCEPT) {
13778         Perl_sv_catpvf(aTHX_ sv, "%d", (int)ARG(o));    /* Parenth number */
13779         if ( RXp_PAREN_NAMES(prog) ) {
13780             if ( k != REF || (OP(o) < NREF)) {
13781                 AV *list= MUTABLE_AV(progi->data->data[progi->name_list_idx]);
13782                 SV **name= av_fetch(list, ARG(o), 0 );
13783                 if (name)
13784                     Perl_sv_catpvf(aTHX_ sv, " '%"SVf"'", SVfARG(*name));
13785             }       
13786             else {
13787                 AV *list= MUTABLE_AV(progi->data->data[ progi->name_list_idx ]);
13788                 SV *sv_dat= MUTABLE_SV(progi->data->data[ ARG( o ) ]);
13789                 I32 *nums=(I32*)SvPVX(sv_dat);
13790                 SV **name= av_fetch(list, nums[0], 0 );
13791                 I32 n;
13792                 if (name) {
13793                     for ( n=0; n<SvIVX(sv_dat); n++ ) {
13794                         Perl_sv_catpvf(aTHX_ sv, "%s%"IVdf,
13795                                     (n ? "," : ""), (IV)nums[n]);
13796                     }
13797                     Perl_sv_catpvf(aTHX_ sv, " '%"SVf"'", SVfARG(*name));
13798                 }
13799             }
13800         }            
13801     } else if (k == GOSUB) 
13802         Perl_sv_catpvf(aTHX_ sv, "%d[%+d]", (int)ARG(o),(int)ARG2L(o)); /* Paren and offset */
13803     else if (k == VERB) {
13804         if (!o->flags) 
13805             Perl_sv_catpvf(aTHX_ sv, ":%"SVf, 
13806                            SVfARG((MUTABLE_SV(progi->data->data[ ARG( o ) ]))));
13807     } else if (k == LOGICAL)
13808         Perl_sv_catpvf(aTHX_ sv, "[%d]", o->flags);     /* 2: embedded, otherwise 1 */
13809     else if (k == ANYOF) {
13810         int i, rangestart = -1;
13811         const U8 flags = ANYOF_FLAGS(o);
13812         int do_sep = 0;
13813
13814
13815         if (flags & ANYOF_LOCALE)
13816             sv_catpvs(sv, "{loc}");
13817         if (flags & ANYOF_LOC_NONBITMAP_FOLD)
13818             sv_catpvs(sv, "{i}");
13819         Perl_sv_catpvf(aTHX_ sv, "[%s", PL_colors[0]);
13820         if (flags & ANYOF_INVERT)
13821             sv_catpvs(sv, "^");
13822
13823         /* output what the standard cp 0-255 bitmap matches */
13824         for (i = 0; i <= 256; i++) {
13825             if (i < 256 && ANYOF_BITMAP_TEST(o,i)) {
13826                 if (rangestart == -1)
13827                     rangestart = i;
13828             } else if (rangestart != -1) {
13829                 if (i <= rangestart + 3)
13830                     for (; rangestart < i; rangestart++)
13831                         put_byte(sv, rangestart);
13832                 else {
13833                     put_byte(sv, rangestart);
13834                     sv_catpvs(sv, "-");
13835                     put_byte(sv, i - 1);
13836                 }
13837                 do_sep = 1;
13838                 rangestart = -1;
13839             }
13840         }
13841         
13842         EMIT_ANYOF_TEST_SEPARATOR(do_sep,sv,flags);
13843         /* output any special charclass tests (used entirely under use locale) */
13844         if (ANYOF_CLASS_TEST_ANY_SET(o))
13845             for (i = 0; i < (int)(sizeof(anyofs)/sizeof(char*)); i++)
13846                 if (ANYOF_CLASS_TEST(o,i)) {
13847                     sv_catpv(sv, anyofs[i]);
13848                     do_sep = 1;
13849                 }
13850         
13851         EMIT_ANYOF_TEST_SEPARATOR(do_sep,sv,flags);
13852         
13853         if (flags & ANYOF_NON_UTF8_LATIN1_ALL) {
13854             sv_catpvs(sv, "{non-utf8-latin1-all}");
13855         }
13856
13857         /* output information about the unicode matching */
13858         if (flags & ANYOF_UNICODE_ALL)
13859             sv_catpvs(sv, "{unicode_all}");
13860         else if (ANYOF_NONBITMAP(o))
13861             sv_catpvs(sv, "{unicode}");
13862         if (flags & ANYOF_NONBITMAP_NON_UTF8)
13863             sv_catpvs(sv, "{outside bitmap}");
13864
13865         if (ANYOF_NONBITMAP(o)) {
13866             SV *lv; /* Set if there is something outside the bit map */
13867             SV * const sw = regclass_swash(prog, o, FALSE, &lv, 0);
13868             bool byte_output = FALSE;   /* If something in the bitmap has been
13869                                            output */
13870
13871             if (lv && lv != &PL_sv_undef) {
13872                 if (sw) {
13873                     U8 s[UTF8_MAXBYTES_CASE+1];
13874
13875                     for (i = 0; i <= 256; i++) { /* Look at chars in bitmap */
13876                         uvchr_to_utf8(s, i);
13877
13878                         if (i < 256
13879                             && ! ANYOF_BITMAP_TEST(o, i)    /* Don't duplicate
13880                                                                things already
13881                                                                output as part
13882                                                                of the bitmap */
13883                             && swash_fetch(sw, s, TRUE))
13884                         {
13885                             if (rangestart == -1)
13886                                 rangestart = i;
13887                         } else if (rangestart != -1) {
13888                             byte_output = TRUE;
13889                             if (i <= rangestart + 3)
13890                                 for (; rangestart < i; rangestart++) {
13891                                     put_byte(sv, rangestart);
13892                                 }
13893                             else {
13894                                 put_byte(sv, rangestart);
13895                                 sv_catpvs(sv, "-");
13896                                 put_byte(sv, i-1);
13897                             }
13898                             rangestart = -1;
13899                         }
13900                     }
13901                 }
13902
13903                 {
13904                     char *s = savesvpv(lv);
13905                     char * const origs = s;
13906
13907                     while (*s && *s != '\n')
13908                         s++;
13909
13910                     if (*s == '\n') {
13911                         const char * const t = ++s;
13912
13913                         if (byte_output) {
13914                             sv_catpvs(sv, " ");
13915                         }
13916
13917                         while (*s) {
13918                             if (*s == '\n') {
13919
13920                                 /* Truncate very long output */
13921                                 if (s - origs > 256) {
13922                                     Perl_sv_catpvf(aTHX_ sv,
13923                                                    "%.*s...",
13924                                                    (int) (s - origs - 1),
13925                                                    t);
13926                                     goto out_dump;
13927                                 }
13928                                 *s = ' ';
13929                             }
13930                             else if (*s == '\t') {
13931                                 *s = '-';
13932                             }
13933                             s++;
13934                         }
13935                         if (s[-1] == ' ')
13936                             s[-1] = 0;
13937
13938                         sv_catpv(sv, t);
13939                     }
13940
13941                 out_dump:
13942
13943                     Safefree(origs);
13944                 }
13945                 SvREFCNT_dec(lv);
13946             }
13947         }
13948
13949         Perl_sv_catpvf(aTHX_ sv, "%s]", PL_colors[1]);
13950     }
13951     else if (k == POSIXD) {
13952         U8 index = FLAGS(o) * 2;
13953         if (index > (sizeof(anyofs) / sizeof(anyofs[0]))) {
13954             Perl_sv_catpvf(aTHX_ sv, "[illegal type=%d])", index);
13955         }
13956         else {
13957             sv_catpv(sv, anyofs[index]);
13958         }
13959     }
13960     else if (k == BRANCHJ && (OP(o) == UNLESSM || OP(o) == IFMATCH))
13961         Perl_sv_catpvf(aTHX_ sv, "[%d]", -(o->flags));
13962 #else
13963     PERL_UNUSED_CONTEXT;
13964     PERL_UNUSED_ARG(sv);
13965     PERL_UNUSED_ARG(o);
13966     PERL_UNUSED_ARG(prog);
13967 #endif  /* DEBUGGING */
13968 }
13969
13970 SV *
13971 Perl_re_intuit_string(pTHX_ REGEXP * const r)
13972 {                               /* Assume that RE_INTUIT is set */
13973     dVAR;
13974     struct regexp *const prog = (struct regexp *)SvANY(r);
13975     GET_RE_DEBUG_FLAGS_DECL;
13976
13977     PERL_ARGS_ASSERT_RE_INTUIT_STRING;
13978     PERL_UNUSED_CONTEXT;
13979
13980     DEBUG_COMPILE_r(
13981         {
13982             const char * const s = SvPV_nolen_const(prog->check_substr
13983                       ? prog->check_substr : prog->check_utf8);
13984
13985             if (!PL_colorset) reginitcolors();
13986             PerlIO_printf(Perl_debug_log,
13987                       "%sUsing REx %ssubstr:%s \"%s%.60s%s%s\"\n",
13988                       PL_colors[4],
13989                       prog->check_substr ? "" : "utf8 ",
13990                       PL_colors[5],PL_colors[0],
13991                       s,
13992                       PL_colors[1],
13993                       (strlen(s) > 60 ? "..." : ""));
13994         } );
13995
13996     return prog->check_substr ? prog->check_substr : prog->check_utf8;
13997 }
13998
13999 /* 
14000    pregfree() 
14001    
14002    handles refcounting and freeing the perl core regexp structure. When 
14003    it is necessary to actually free the structure the first thing it 
14004    does is call the 'free' method of the regexp_engine associated to
14005    the regexp, allowing the handling of the void *pprivate; member 
14006    first. (This routine is not overridable by extensions, which is why 
14007    the extensions free is called first.)
14008    
14009    See regdupe and regdupe_internal if you change anything here. 
14010 */
14011 #ifndef PERL_IN_XSUB_RE
14012 void
14013 Perl_pregfree(pTHX_ REGEXP *r)
14014 {
14015     SvREFCNT_dec(r);
14016 }
14017
14018 void
14019 Perl_pregfree2(pTHX_ REGEXP *rx)
14020 {
14021     dVAR;
14022     struct regexp *const r = (struct regexp *)SvANY(rx);
14023     GET_RE_DEBUG_FLAGS_DECL;
14024
14025     PERL_ARGS_ASSERT_PREGFREE2;
14026
14027     if (r->mother_re) {
14028         ReREFCNT_dec(r->mother_re);
14029     } else {
14030         CALLREGFREE_PVT(rx); /* free the private data */
14031         SvREFCNT_dec(RXp_PAREN_NAMES(r));
14032     }        
14033     if (r->substrs) {
14034         SvREFCNT_dec(r->anchored_substr);
14035         SvREFCNT_dec(r->anchored_utf8);
14036         SvREFCNT_dec(r->float_substr);
14037         SvREFCNT_dec(r->float_utf8);
14038         Safefree(r->substrs);
14039     }
14040     RX_MATCH_COPY_FREE(rx);
14041 #ifdef PERL_OLD_COPY_ON_WRITE
14042     SvREFCNT_dec(r->saved_copy);
14043 #endif
14044     Safefree(r->offs);
14045     SvREFCNT_dec(r->qr_anoncv);
14046 }
14047
14048 /*  reg_temp_copy()
14049     
14050     This is a hacky workaround to the structural issue of match results
14051     being stored in the regexp structure which is in turn stored in
14052     PL_curpm/PL_reg_curpm. The problem is that due to qr// the pattern
14053     could be PL_curpm in multiple contexts, and could require multiple
14054     result sets being associated with the pattern simultaneously, such
14055     as when doing a recursive match with (??{$qr})
14056     
14057     The solution is to make a lightweight copy of the regexp structure 
14058     when a qr// is returned from the code executed by (??{$qr}) this
14059     lightweight copy doesn't actually own any of its data except for
14060     the starp/end and the actual regexp structure itself. 
14061     
14062 */    
14063     
14064     
14065 REGEXP *
14066 Perl_reg_temp_copy (pTHX_ REGEXP *ret_x, REGEXP *rx)
14067 {
14068     struct regexp *ret;
14069     struct regexp *const r = (struct regexp *)SvANY(rx);
14070
14071     PERL_ARGS_ASSERT_REG_TEMP_COPY;
14072
14073     if (!ret_x)
14074         ret_x = (REGEXP*) newSV_type(SVt_REGEXP);
14075     ret = (struct regexp *)SvANY(ret_x);
14076     
14077     (void)ReREFCNT_inc(rx);
14078     /* We can take advantage of the existing "copied buffer" mechanism in SVs
14079        by pointing directly at the buffer, but flagging that the allocated
14080        space in the copy is zero. As we've just done a struct copy, it's now
14081        a case of zero-ing that, rather than copying the current length.  */
14082     SvPV_set(ret_x, RX_WRAPPED(rx));
14083     SvFLAGS(ret_x) |= SvFLAGS(rx) & (SVf_POK|SVp_POK|SVf_UTF8);
14084     memcpy(&(ret->xpv_cur), &(r->xpv_cur),
14085            sizeof(regexp) - STRUCT_OFFSET(regexp, xpv_cur));
14086     SvLEN_set(ret_x, 0);
14087     SvSTASH_set(ret_x, NULL);
14088     SvMAGIC_set(ret_x, NULL);
14089     if (r->offs) {
14090         const I32 npar = r->nparens+1;
14091         Newx(ret->offs, npar, regexp_paren_pair);
14092         Copy(r->offs, ret->offs, npar, regexp_paren_pair);
14093     }
14094     if (r->substrs) {
14095         Newx(ret->substrs, 1, struct reg_substr_data);
14096         StructCopy(r->substrs, ret->substrs, struct reg_substr_data);
14097
14098         SvREFCNT_inc_void(ret->anchored_substr);
14099         SvREFCNT_inc_void(ret->anchored_utf8);
14100         SvREFCNT_inc_void(ret->float_substr);
14101         SvREFCNT_inc_void(ret->float_utf8);
14102
14103         /* check_substr and check_utf8, if non-NULL, point to either their
14104            anchored or float namesakes, and don't hold a second reference.  */
14105     }
14106     RX_MATCH_COPIED_off(ret_x);
14107 #ifdef PERL_OLD_COPY_ON_WRITE
14108     ret->saved_copy = NULL;
14109 #endif
14110     ret->mother_re = rx;
14111     SvREFCNT_inc_void(ret->qr_anoncv);
14112     
14113     return ret_x;
14114 }
14115 #endif
14116
14117 /* regfree_internal() 
14118
14119    Free the private data in a regexp. This is overloadable by 
14120    extensions. Perl takes care of the regexp structure in pregfree(), 
14121    this covers the *pprivate pointer which technically perl doesn't 
14122    know about, however of course we have to handle the 
14123    regexp_internal structure when no extension is in use. 
14124    
14125    Note this is called before freeing anything in the regexp 
14126    structure. 
14127  */
14128  
14129 void
14130 Perl_regfree_internal(pTHX_ REGEXP * const rx)
14131 {
14132     dVAR;
14133     struct regexp *const r = (struct regexp *)SvANY(rx);
14134     RXi_GET_DECL(r,ri);
14135     GET_RE_DEBUG_FLAGS_DECL;
14136
14137     PERL_ARGS_ASSERT_REGFREE_INTERNAL;
14138
14139     DEBUG_COMPILE_r({
14140         if (!PL_colorset)
14141             reginitcolors();
14142         {
14143             SV *dsv= sv_newmortal();
14144             RE_PV_QUOTED_DECL(s, RX_UTF8(rx),
14145                 dsv, RX_PRECOMP(rx), RX_PRELEN(rx), 60);
14146             PerlIO_printf(Perl_debug_log,"%sFreeing REx:%s %s\n", 
14147                 PL_colors[4],PL_colors[5],s);
14148         }
14149     });
14150 #ifdef RE_TRACK_PATTERN_OFFSETS
14151     if (ri->u.offsets)
14152         Safefree(ri->u.offsets);             /* 20010421 MJD */
14153 #endif
14154     if (ri->code_blocks) {
14155         int n;
14156         for (n = 0; n < ri->num_code_blocks; n++)
14157             SvREFCNT_dec(ri->code_blocks[n].src_regex);
14158         Safefree(ri->code_blocks);
14159     }
14160
14161     if (ri->data) {
14162         int n = ri->data->count;
14163
14164         while (--n >= 0) {
14165           /* If you add a ->what type here, update the comment in regcomp.h */
14166             switch (ri->data->what[n]) {
14167             case 'a':
14168             case 'r':
14169             case 's':
14170             case 'S':
14171             case 'u':
14172                 SvREFCNT_dec(MUTABLE_SV(ri->data->data[n]));
14173                 break;
14174             case 'f':
14175                 Safefree(ri->data->data[n]);
14176                 break;
14177             case 'l':
14178             case 'L':
14179                 break;
14180             case 'T':           
14181                 { /* Aho Corasick add-on structure for a trie node.
14182                      Used in stclass optimization only */
14183                     U32 refcount;
14184                     reg_ac_data *aho=(reg_ac_data*)ri->data->data[n];
14185                     OP_REFCNT_LOCK;
14186                     refcount = --aho->refcount;
14187                     OP_REFCNT_UNLOCK;
14188                     if ( !refcount ) {
14189                         PerlMemShared_free(aho->states);
14190                         PerlMemShared_free(aho->fail);
14191                          /* do this last!!!! */
14192                         PerlMemShared_free(ri->data->data[n]);
14193                         PerlMemShared_free(ri->regstclass);
14194                     }
14195                 }
14196                 break;
14197             case 't':
14198                 {
14199                     /* trie structure. */
14200                     U32 refcount;
14201                     reg_trie_data *trie=(reg_trie_data*)ri->data->data[n];
14202                     OP_REFCNT_LOCK;
14203                     refcount = --trie->refcount;
14204                     OP_REFCNT_UNLOCK;
14205                     if ( !refcount ) {
14206                         PerlMemShared_free(trie->charmap);
14207                         PerlMemShared_free(trie->states);
14208                         PerlMemShared_free(trie->trans);
14209                         if (trie->bitmap)
14210                             PerlMemShared_free(trie->bitmap);
14211                         if (trie->jump)
14212                             PerlMemShared_free(trie->jump);
14213                         PerlMemShared_free(trie->wordinfo);
14214                         /* do this last!!!! */
14215                         PerlMemShared_free(ri->data->data[n]);
14216                     }
14217                 }
14218                 break;
14219             default:
14220                 Perl_croak(aTHX_ "panic: regfree data code '%c'", ri->data->what[n]);
14221             }
14222         }
14223         Safefree(ri->data->what);
14224         Safefree(ri->data);
14225     }
14226
14227     Safefree(ri);
14228 }
14229
14230 #define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
14231 #define hv_dup_inc(s,t) MUTABLE_HV(sv_dup_inc((const SV *)s,t))
14232 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
14233
14234 /* 
14235    re_dup - duplicate a regexp. 
14236    
14237    This routine is expected to clone a given regexp structure. It is only
14238    compiled under USE_ITHREADS.
14239
14240    After all of the core data stored in struct regexp is duplicated
14241    the regexp_engine.dupe method is used to copy any private data
14242    stored in the *pprivate pointer. This allows extensions to handle
14243    any duplication it needs to do.
14244
14245    See pregfree() and regfree_internal() if you change anything here. 
14246 */
14247 #if defined(USE_ITHREADS)
14248 #ifndef PERL_IN_XSUB_RE
14249 void
14250 Perl_re_dup_guts(pTHX_ const REGEXP *sstr, REGEXP *dstr, CLONE_PARAMS *param)
14251 {
14252     dVAR;
14253     I32 npar;
14254     const struct regexp *r = (const struct regexp *)SvANY(sstr);
14255     struct regexp *ret = (struct regexp *)SvANY(dstr);
14256     
14257     PERL_ARGS_ASSERT_RE_DUP_GUTS;
14258
14259     npar = r->nparens+1;
14260     Newx(ret->offs, npar, regexp_paren_pair);
14261     Copy(r->offs, ret->offs, npar, regexp_paren_pair);
14262     if(ret->swap) {
14263         /* no need to copy these */
14264         Newx(ret->swap, npar, regexp_paren_pair);
14265     }
14266
14267     if (ret->substrs) {
14268         /* Do it this way to avoid reading from *r after the StructCopy().
14269            That way, if any of the sv_dup_inc()s dislodge *r from the L1
14270            cache, it doesn't matter.  */
14271         const bool anchored = r->check_substr
14272             ? r->check_substr == r->anchored_substr
14273             : r->check_utf8 == r->anchored_utf8;
14274         Newx(ret->substrs, 1, struct reg_substr_data);
14275         StructCopy(r->substrs, ret->substrs, struct reg_substr_data);
14276
14277         ret->anchored_substr = sv_dup_inc(ret->anchored_substr, param);
14278         ret->anchored_utf8 = sv_dup_inc(ret->anchored_utf8, param);
14279         ret->float_substr = sv_dup_inc(ret->float_substr, param);
14280         ret->float_utf8 = sv_dup_inc(ret->float_utf8, param);
14281
14282         /* check_substr and check_utf8, if non-NULL, point to either their
14283            anchored or float namesakes, and don't hold a second reference.  */
14284
14285         if (ret->check_substr) {
14286             if (anchored) {
14287                 assert(r->check_utf8 == r->anchored_utf8);
14288                 ret->check_substr = ret->anchored_substr;
14289                 ret->check_utf8 = ret->anchored_utf8;
14290             } else {
14291                 assert(r->check_substr == r->float_substr);
14292                 assert(r->check_utf8 == r->float_utf8);
14293                 ret->check_substr = ret->float_substr;
14294                 ret->check_utf8 = ret->float_utf8;
14295             }
14296         } else if (ret->check_utf8) {
14297             if (anchored) {
14298                 ret->check_utf8 = ret->anchored_utf8;
14299             } else {
14300                 ret->check_utf8 = ret->float_utf8;
14301             }
14302         }
14303     }
14304
14305     RXp_PAREN_NAMES(ret) = hv_dup_inc(RXp_PAREN_NAMES(ret), param);
14306     ret->qr_anoncv = MUTABLE_CV(sv_dup_inc((const SV *)ret->qr_anoncv, param));
14307
14308     if (ret->pprivate)
14309         RXi_SET(ret,CALLREGDUPE_PVT(dstr,param));
14310
14311     if (RX_MATCH_COPIED(dstr))
14312         ret->subbeg  = SAVEPVN(ret->subbeg, ret->sublen);
14313     else
14314         ret->subbeg = NULL;
14315 #ifdef PERL_OLD_COPY_ON_WRITE
14316     ret->saved_copy = NULL;
14317 #endif
14318
14319     if (ret->mother_re) {
14320         if (SvPVX_const(dstr) == SvPVX_const(ret->mother_re)) {
14321             /* Our storage points directly to our mother regexp, but that's
14322                1: a buffer in a different thread
14323                2: something we no longer hold a reference on
14324                so we need to copy it locally.  */
14325             /* Note we need to use SvCUR(), rather than
14326                SvLEN(), on our mother_re, because it, in
14327                turn, may well be pointing to its own mother_re.  */
14328             SvPV_set(dstr, SAVEPVN(SvPVX_const(ret->mother_re),
14329                                    SvCUR(ret->mother_re)+1));
14330             SvLEN_set(dstr, SvCUR(ret->mother_re)+1);
14331         }
14332         ret->mother_re      = NULL;
14333     }
14334     ret->gofs = 0;
14335 }
14336 #endif /* PERL_IN_XSUB_RE */
14337
14338 /*
14339    regdupe_internal()
14340    
14341    This is the internal complement to regdupe() which is used to copy
14342    the structure pointed to by the *pprivate pointer in the regexp.
14343    This is the core version of the extension overridable cloning hook.
14344    The regexp structure being duplicated will be copied by perl prior
14345    to this and will be provided as the regexp *r argument, however 
14346    with the /old/ structures pprivate pointer value. Thus this routine
14347    may override any copying normally done by perl.
14348    
14349    It returns a pointer to the new regexp_internal structure.
14350 */
14351
14352 void *
14353 Perl_regdupe_internal(pTHX_ REGEXP * const rx, CLONE_PARAMS *param)
14354 {
14355     dVAR;
14356     struct regexp *const r = (struct regexp *)SvANY(rx);
14357     regexp_internal *reti;
14358     int len;
14359     RXi_GET_DECL(r,ri);
14360
14361     PERL_ARGS_ASSERT_REGDUPE_INTERNAL;
14362     
14363     len = ProgLen(ri);
14364     
14365     Newxc(reti, sizeof(regexp_internal) + len*sizeof(regnode), char, regexp_internal);
14366     Copy(ri->program, reti->program, len+1, regnode);
14367
14368     reti->num_code_blocks = ri->num_code_blocks;
14369     if (ri->code_blocks) {
14370         int n;
14371         Newxc(reti->code_blocks, ri->num_code_blocks, struct reg_code_block,
14372                 struct reg_code_block);
14373         Copy(ri->code_blocks, reti->code_blocks, ri->num_code_blocks,
14374                 struct reg_code_block);
14375         for (n = 0; n < ri->num_code_blocks; n++)
14376              reti->code_blocks[n].src_regex = (REGEXP*)
14377                     sv_dup_inc((SV*)(ri->code_blocks[n].src_regex), param);
14378     }
14379     else
14380         reti->code_blocks = NULL;
14381
14382     reti->regstclass = NULL;
14383
14384     if (ri->data) {
14385         struct reg_data *d;
14386         const int count = ri->data->count;
14387         int i;
14388
14389         Newxc(d, sizeof(struct reg_data) + count*sizeof(void *),
14390                 char, struct reg_data);
14391         Newx(d->what, count, U8);
14392
14393         d->count = count;
14394         for (i = 0; i < count; i++) {
14395             d->what[i] = ri->data->what[i];
14396             switch (d->what[i]) {
14397                 /* see also regcomp.h and regfree_internal() */
14398             case 'a': /* actually an AV, but the dup function is identical.  */
14399             case 'r':
14400             case 's':
14401             case 'S':
14402             case 'u': /* actually an HV, but the dup function is identical.  */
14403                 d->data[i] = sv_dup_inc((const SV *)ri->data->data[i], param);
14404                 break;
14405             case 'f':
14406                 /* This is cheating. */
14407                 Newx(d->data[i], 1, struct regnode_charclass_class);
14408                 StructCopy(ri->data->data[i], d->data[i],
14409                             struct regnode_charclass_class);
14410                 reti->regstclass = (regnode*)d->data[i];
14411                 break;
14412             case 'T':
14413                 /* Trie stclasses are readonly and can thus be shared
14414                  * without duplication. We free the stclass in pregfree
14415                  * when the corresponding reg_ac_data struct is freed.
14416                  */
14417                 reti->regstclass= ri->regstclass;
14418                 /* Fall through */
14419             case 't':
14420                 OP_REFCNT_LOCK;
14421                 ((reg_trie_data*)ri->data->data[i])->refcount++;
14422                 OP_REFCNT_UNLOCK;
14423                 /* Fall through */
14424             case 'l':
14425             case 'L':
14426                 d->data[i] = ri->data->data[i];
14427                 break;
14428             default:
14429                 Perl_croak(aTHX_ "panic: re_dup unknown data code '%c'", ri->data->what[i]);
14430             }
14431         }
14432
14433         reti->data = d;
14434     }
14435     else
14436         reti->data = NULL;
14437
14438     reti->name_list_idx = ri->name_list_idx;
14439
14440 #ifdef RE_TRACK_PATTERN_OFFSETS
14441     if (ri->u.offsets) {
14442         Newx(reti->u.offsets, 2*len+1, U32);
14443         Copy(ri->u.offsets, reti->u.offsets, 2*len+1, U32);
14444     }
14445 #else
14446     SetProgLen(reti,len);
14447 #endif
14448
14449     return (void*)reti;
14450 }
14451
14452 #endif    /* USE_ITHREADS */
14453
14454 #ifndef PERL_IN_XSUB_RE
14455
14456 /*
14457  - regnext - dig the "next" pointer out of a node
14458  */
14459 regnode *
14460 Perl_regnext(pTHX_ register regnode *p)
14461 {
14462     dVAR;
14463     I32 offset;
14464
14465     if (!p)
14466         return(NULL);
14467
14468     if (OP(p) > REGNODE_MAX) {          /* regnode.type is unsigned */
14469         Perl_croak(aTHX_ "Corrupted regexp opcode %d > %d", (int)OP(p), (int)REGNODE_MAX);
14470     }
14471
14472     offset = (reg_off_by_arg[OP(p)] ? ARG(p) : NEXT_OFF(p));
14473     if (offset == 0)
14474         return(NULL);
14475
14476     return(p+offset);
14477 }
14478 #endif
14479
14480 STATIC void
14481 S_re_croak2(pTHX_ const char* pat1,const char* pat2,...)
14482 {
14483     va_list args;
14484     STRLEN l1 = strlen(pat1);
14485     STRLEN l2 = strlen(pat2);
14486     char buf[512];
14487     SV *msv;
14488     const char *message;
14489
14490     PERL_ARGS_ASSERT_RE_CROAK2;
14491
14492     if (l1 > 510)
14493         l1 = 510;
14494     if (l1 + l2 > 510)
14495         l2 = 510 - l1;
14496     Copy(pat1, buf, l1 , char);
14497     Copy(pat2, buf + l1, l2 , char);
14498     buf[l1 + l2] = '\n';
14499     buf[l1 + l2 + 1] = '\0';
14500 #ifdef I_STDARG
14501     /* ANSI variant takes additional second argument */
14502     va_start(args, pat2);
14503 #else
14504     va_start(args);
14505 #endif
14506     msv = vmess(buf, &args);
14507     va_end(args);
14508     message = SvPV_const(msv,l1);
14509     if (l1 > 512)
14510         l1 = 512;
14511     Copy(message, buf, l1 , char);
14512     buf[l1-1] = '\0';                   /* Overwrite \n */
14513     Perl_croak(aTHX_ "%s", buf);
14514 }
14515
14516 /* XXX Here's a total kludge.  But we need to re-enter for swash routines. */
14517
14518 #ifndef PERL_IN_XSUB_RE
14519 void
14520 Perl_save_re_context(pTHX)
14521 {
14522     dVAR;
14523
14524     struct re_save_state *state;
14525
14526     SAVEVPTR(PL_curcop);
14527     SSGROW(SAVESTACK_ALLOC_FOR_RE_SAVE_STATE + 1);
14528
14529     state = (struct re_save_state *)(PL_savestack + PL_savestack_ix);
14530     PL_savestack_ix += SAVESTACK_ALLOC_FOR_RE_SAVE_STATE;
14531     SSPUSHUV(SAVEt_RE_STATE);
14532
14533     Copy(&PL_reg_state, state, 1, struct re_save_state);
14534
14535     PL_reg_oldsaved = NULL;
14536     PL_reg_oldsavedlen = 0;
14537     PL_reg_oldsavedoffset = 0;
14538     PL_reg_oldsavedcoffset = 0;
14539     PL_reg_maxiter = 0;
14540     PL_reg_leftiter = 0;
14541     PL_reg_poscache = NULL;
14542     PL_reg_poscache_size = 0;
14543 #ifdef PERL_OLD_COPY_ON_WRITE
14544     PL_nrs = NULL;
14545 #endif
14546
14547     /* Save $1..$n (#18107: UTF-8 s/(\w+)/uc($1)/e); AMS 20021106. */
14548     if (PL_curpm) {
14549         const REGEXP * const rx = PM_GETRE(PL_curpm);
14550         if (rx) {
14551             U32 i;
14552             for (i = 1; i <= RX_NPARENS(rx); i++) {
14553                 char digits[TYPE_CHARS(long)];
14554                 const STRLEN len = my_snprintf(digits, sizeof(digits), "%lu", (long)i);
14555                 GV *const *const gvp
14556                     = (GV**)hv_fetch(PL_defstash, digits, len, 0);
14557
14558                 if (gvp) {
14559                     GV * const gv = *gvp;
14560                     if (SvTYPE(gv) == SVt_PVGV && GvSV(gv))
14561                         save_scalar(gv);
14562                 }
14563             }
14564         }
14565     }
14566 }
14567 #endif
14568
14569 static void
14570 clear_re(pTHX_ void *r)
14571 {
14572     dVAR;
14573     ReREFCNT_dec((REGEXP *)r);
14574 }
14575
14576 #ifdef DEBUGGING
14577
14578 STATIC void
14579 S_put_byte(pTHX_ SV *sv, int c)
14580 {
14581     PERL_ARGS_ASSERT_PUT_BYTE;
14582
14583     /* Our definition of isPRINT() ignores locales, so only bytes that are
14584        not part of UTF-8 are considered printable. I assume that the same
14585        holds for UTF-EBCDIC.
14586        Also, code point 255 is not printable in either (it's E0 in EBCDIC,
14587        which Wikipedia says:
14588
14589        EO, or Eight Ones, is an 8-bit EBCDIC character code represented as all
14590        ones (binary 1111 1111, hexadecimal FF). It is similar, but not
14591        identical, to the ASCII delete (DEL) or rubout control character.
14592        ) So the old condition can be simplified to !isPRINT(c)  */
14593     if (!isPRINT(c)) {
14594         if (c < 256) {
14595             Perl_sv_catpvf(aTHX_ sv, "\\x%02x", c);
14596         }
14597         else {
14598             Perl_sv_catpvf(aTHX_ sv, "\\x{%x}", c);
14599         }
14600     }
14601     else {
14602         const char string = c;
14603         if (c == '-' || c == ']' || c == '\\' || c == '^')
14604             sv_catpvs(sv, "\\");
14605         sv_catpvn(sv, &string, 1);
14606     }
14607 }
14608
14609
14610 #define CLEAR_OPTSTART \
14611     if (optstart) STMT_START { \
14612             DEBUG_OPTIMISE_r(PerlIO_printf(Perl_debug_log, " (%"IVdf" nodes)\n", (IV)(node - optstart))); \
14613             optstart=NULL; \
14614     } STMT_END
14615
14616 #define DUMPUNTIL(b,e) CLEAR_OPTSTART; node=dumpuntil(r,start,(b),(e),last,sv,indent+1,depth+1);
14617
14618 STATIC const regnode *
14619 S_dumpuntil(pTHX_ const regexp *r, const regnode *start, const regnode *node,
14620             const regnode *last, const regnode *plast, 
14621             SV* sv, I32 indent, U32 depth)
14622 {
14623     dVAR;
14624     U8 op = PSEUDO;     /* Arbitrary non-END op. */
14625     const regnode *next;
14626     const regnode *optstart= NULL;
14627     
14628     RXi_GET_DECL(r,ri);
14629     GET_RE_DEBUG_FLAGS_DECL;
14630
14631     PERL_ARGS_ASSERT_DUMPUNTIL;
14632
14633 #ifdef DEBUG_DUMPUNTIL
14634     PerlIO_printf(Perl_debug_log, "--- %d : %d - %d - %d\n",indent,node-start,
14635         last ? last-start : 0,plast ? plast-start : 0);
14636 #endif
14637             
14638     if (plast && plast < last) 
14639         last= plast;
14640
14641     while (PL_regkind[op] != END && (!last || node < last)) {
14642         /* While that wasn't END last time... */
14643         NODE_ALIGN(node);
14644         op = OP(node);
14645         if (op == CLOSE || op == WHILEM)
14646             indent--;
14647         next = regnext((regnode *)node);
14648
14649         /* Where, what. */
14650         if (OP(node) == OPTIMIZED) {
14651             if (!optstart && RE_DEBUG_FLAG(RE_DEBUG_COMPILE_OPTIMISE))
14652                 optstart = node;
14653             else
14654                 goto after_print;
14655         } else
14656             CLEAR_OPTSTART;
14657
14658         regprop(r, sv, node);
14659         PerlIO_printf(Perl_debug_log, "%4"IVdf":%*s%s", (IV)(node - start),
14660                       (int)(2*indent + 1), "", SvPVX_const(sv));
14661         
14662         if (OP(node) != OPTIMIZED) {                  
14663             if (next == NULL)           /* Next ptr. */
14664                 PerlIO_printf(Perl_debug_log, " (0)");
14665             else if (PL_regkind[(U8)op] == BRANCH && PL_regkind[OP(next)] != BRANCH )
14666                 PerlIO_printf(Perl_debug_log, " (FAIL)");
14667             else 
14668                 PerlIO_printf(Perl_debug_log, " (%"IVdf")", (IV)(next - start));
14669             (void)PerlIO_putc(Perl_debug_log, '\n'); 
14670         }
14671         
14672       after_print:
14673         if (PL_regkind[(U8)op] == BRANCHJ) {
14674             assert(next);
14675             {
14676                 const regnode *nnode = (OP(next) == LONGJMP
14677                                        ? regnext((regnode *)next)
14678                                        : next);
14679                 if (last && nnode > last)
14680                     nnode = last;
14681                 DUMPUNTIL(NEXTOPER(NEXTOPER(node)), nnode);
14682             }
14683         }
14684         else if (PL_regkind[(U8)op] == BRANCH) {
14685             assert(next);
14686             DUMPUNTIL(NEXTOPER(node), next);
14687         }
14688         else if ( PL_regkind[(U8)op]  == TRIE ) {
14689             const regnode *this_trie = node;
14690             const char op = OP(node);
14691             const U32 n = ARG(node);
14692             const reg_ac_data * const ac = op>=AHOCORASICK ?
14693                (reg_ac_data *)ri->data->data[n] :
14694                NULL;
14695             const reg_trie_data * const trie =
14696                 (reg_trie_data*)ri->data->data[op<AHOCORASICK ? n : ac->trie];
14697 #ifdef DEBUGGING
14698             AV *const trie_words = MUTABLE_AV(ri->data->data[n + TRIE_WORDS_OFFSET]);
14699 #endif
14700             const regnode *nextbranch= NULL;
14701             I32 word_idx;
14702             sv_setpvs(sv, "");
14703             for (word_idx= 0; word_idx < (I32)trie->wordcount; word_idx++) {
14704                 SV ** const elem_ptr = av_fetch(trie_words,word_idx,0);
14705
14706                 PerlIO_printf(Perl_debug_log, "%*s%s ",
14707                    (int)(2*(indent+3)), "",
14708                     elem_ptr ? pv_pretty(sv, SvPV_nolen_const(*elem_ptr), SvCUR(*elem_ptr), 60,
14709                             PL_colors[0], PL_colors[1],
14710                             (SvUTF8(*elem_ptr) ? PERL_PV_ESCAPE_UNI : 0) |
14711                             PERL_PV_PRETTY_ELLIPSES    |
14712                             PERL_PV_PRETTY_LTGT
14713                             )
14714                             : "???"
14715                 );
14716                 if (trie->jump) {
14717                     U16 dist= trie->jump[word_idx+1];
14718                     PerlIO_printf(Perl_debug_log, "(%"UVuf")\n",
14719                                   (UV)((dist ? this_trie + dist : next) - start));
14720                     if (dist) {
14721                         if (!nextbranch)
14722                             nextbranch= this_trie + trie->jump[0];    
14723                         DUMPUNTIL(this_trie + dist, nextbranch);
14724                     }
14725                     if (nextbranch && PL_regkind[OP(nextbranch)]==BRANCH)
14726                         nextbranch= regnext((regnode *)nextbranch);
14727                 } else {
14728                     PerlIO_printf(Perl_debug_log, "\n");
14729                 }
14730             }
14731             if (last && next > last)
14732                 node= last;
14733             else
14734                 node= next;
14735         }
14736         else if ( op == CURLY ) {   /* "next" might be very big: optimizer */
14737             DUMPUNTIL(NEXTOPER(node) + EXTRA_STEP_2ARGS,
14738                     NEXTOPER(node) + EXTRA_STEP_2ARGS + 1);
14739         }
14740         else if (PL_regkind[(U8)op] == CURLY && op != CURLYX) {
14741             assert(next);
14742             DUMPUNTIL(NEXTOPER(node) + EXTRA_STEP_2ARGS, next);
14743         }
14744         else if ( op == PLUS || op == STAR) {
14745             DUMPUNTIL(NEXTOPER(node), NEXTOPER(node) + 1);
14746         }
14747         else if (PL_regkind[(U8)op] == ANYOF) {
14748             /* arglen 1 + class block */
14749             node += 1 + ((ANYOF_FLAGS(node) & ANYOF_CLASS)
14750                     ? ANYOF_CLASS_SKIP : ANYOF_SKIP);
14751             node = NEXTOPER(node);
14752         }
14753         else if (PL_regkind[(U8)op] == EXACT) {
14754             /* Literal string, where present. */
14755             node += NODE_SZ_STR(node) - 1;
14756             node = NEXTOPER(node);
14757         }
14758         else {
14759             node = NEXTOPER(node);
14760             node += regarglen[(U8)op];
14761         }
14762         if (op == CURLYX || op == OPEN)
14763             indent++;
14764     }
14765     CLEAR_OPTSTART;
14766 #ifdef DEBUG_DUMPUNTIL    
14767     PerlIO_printf(Perl_debug_log, "--- %d\n", (int)indent);
14768 #endif
14769     return node;
14770 }
14771
14772 #endif  /* DEBUGGING */
14773
14774 /*
14775  * Local variables:
14776  * c-indentation-style: bsd
14777  * c-basic-offset: 4
14778  * indent-tabs-mode: nil
14779  * End:
14780  *
14781  * ex: set ts=8 sts=4 sw=4 et:
14782  */