This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
pp_sys.c:pp_fttext: Don’t extend the stack after popping
[perl5.git] / regcomp.c
1 /*    regcomp.c
2  */
3
4 /*
5  * 'A fair jaw-cracker dwarf-language must be.'            --Samwise Gamgee
6  *
7  *     [p.285 of _The Lord of the Rings_, II/iii: "The Ring Goes South"]
8  */
9
10 /* This file contains functions for compiling a regular expression.  See
11  * also regexec.c which funnily enough, contains functions for executing
12  * a regular expression.
13  *
14  * This file is also copied at build time to ext/re/re_comp.c, where
15  * it's built with -DPERL_EXT_RE_BUILD -DPERL_EXT_RE_DEBUG -DPERL_EXT.
16  * This causes the main functions to be compiled under new names and with
17  * debugging support added, which makes "use re 'debug'" work.
18  */
19
20 /* NOTE: this is derived from Henry Spencer's regexp code, and should not
21  * confused with the original package (see point 3 below).  Thanks, Henry!
22  */
23
24 /* Additional note: this code is very heavily munged from Henry's version
25  * in places.  In some spots I've traded clarity for efficiency, so don't
26  * blame Henry for some of the lack of readability.
27  */
28
29 /* The names of the functions have been changed from regcomp and
30  * regexec to pregcomp and pregexec in order to avoid conflicts
31  * with the POSIX routines of the same names.
32 */
33
34 #ifdef PERL_EXT_RE_BUILD
35 #include "re_top.h"
36 #endif
37
38 /*
39  * pregcomp and pregexec -- regsub and regerror are not used in perl
40  *
41  *      Copyright (c) 1986 by University of Toronto.
42  *      Written by Henry Spencer.  Not derived from licensed software.
43  *
44  *      Permission is granted to anyone to use this software for any
45  *      purpose on any computer system, and to redistribute it freely,
46  *      subject to the following restrictions:
47  *
48  *      1. The author is not responsible for the consequences of use of
49  *              this software, no matter how awful, even if they arise
50  *              from defects in it.
51  *
52  *      2. The origin of this software must not be misrepresented, either
53  *              by explicit claim or by omission.
54  *
55  *      3. Altered versions must be plainly marked as such, and must not
56  *              be misrepresented as being the original software.
57  *
58  *
59  ****    Alterations to Henry's code are...
60  ****
61  ****    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
62  ****    2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
63  ****    by Larry Wall and others
64  ****
65  ****    You may distribute under the terms of either the GNU General Public
66  ****    License or the Artistic License, as specified in the README file.
67
68  *
69  * Beware that some of this code is subtly aware of the way operator
70  * precedence is structured in regular expressions.  Serious changes in
71  * regular-expression syntax might require a total rethink.
72  */
73 #include "EXTERN.h"
74 #define PERL_IN_REGCOMP_C
75 #include "perl.h"
76
77 #ifndef PERL_IN_XSUB_RE
78 #  include "INTERN.h"
79 #endif
80
81 #define REG_COMP_C
82 #ifdef PERL_IN_XSUB_RE
83 #  include "re_comp.h"
84 #else
85 #  include "regcomp.h"
86 #endif
87
88 #include "dquote_static.c"
89
90 #ifdef op
91 #undef op
92 #endif /* op */
93
94 #ifdef MSDOS
95 #  if defined(BUGGY_MSC6)
96  /* MSC 6.00A breaks on op/regexp.t test 85 unless we turn this off */
97 #    pragma optimize("a",off)
98  /* But MSC 6.00A is happy with 'w', for aliases only across function calls*/
99 #    pragma optimize("w",on )
100 #  endif /* BUGGY_MSC6 */
101 #endif /* MSDOS */
102
103 #ifndef STATIC
104 #define STATIC  static
105 #endif
106
107 typedef struct RExC_state_t {
108     U32         flags;                  /* are we folding, multilining? */
109     char        *precomp;               /* uncompiled string. */
110     REGEXP      *rx_sv;                 /* The SV that is the regexp. */
111     regexp      *rx;                    /* perl core regexp structure */
112     regexp_internal     *rxi;           /* internal data for regexp object pprivate field */        
113     char        *start;                 /* Start of input for compile */
114     char        *end;                   /* End of input for compile */
115     char        *parse;                 /* Input-scan pointer. */
116     I32         whilem_seen;            /* number of WHILEM in this expr */
117     regnode     *emit_start;            /* Start of emitted-code area */
118     regnode     *emit_bound;            /* First regnode outside of the allocated space */
119     regnode     *emit;                  /* Code-emit pointer; &regdummy = don't = compiling */
120     I32         naughty;                /* How bad is this pattern? */
121     I32         sawback;                /* Did we see \1, ...? */
122     U32         seen;
123     I32         size;                   /* Code size. */
124     I32         npar;                   /* Capture buffer count, (OPEN). */
125     I32         cpar;                   /* Capture buffer count, (CLOSE). */
126     I32         nestroot;               /* root parens we are in - used by accept */
127     I32         extralen;
128     I32         seen_zerolen;
129     I32         seen_evals;
130     regnode     **open_parens;          /* pointers to open parens */
131     regnode     **close_parens;         /* pointers to close parens */
132     regnode     *opend;                 /* END node in program */
133     I32         utf8;           /* whether the pattern is utf8 or not */
134     I32         orig_utf8;      /* whether the pattern was originally in utf8 */
135                                 /* XXX use this for future optimisation of case
136                                  * where pattern must be upgraded to utf8. */
137     I32         uni_semantics;  /* If a d charset modifier should use unicode
138                                    rules, even if the pattern is not in
139                                    utf8 */
140     HV          *paren_names;           /* Paren names */
141     
142     regnode     **recurse;              /* Recurse regops */
143     I32         recurse_count;          /* Number of recurse regops */
144     I32         in_lookbehind;
145     I32         contains_locale;
146     I32         override_recoding;
147 #if ADD_TO_REGEXEC
148     char        *starttry;              /* -Dr: where regtry was called. */
149 #define RExC_starttry   (pRExC_state->starttry)
150 #endif
151 #ifdef DEBUGGING
152     const char  *lastparse;
153     I32         lastnum;
154     AV          *paren_name_list;       /* idx -> name */
155 #define RExC_lastparse  (pRExC_state->lastparse)
156 #define RExC_lastnum    (pRExC_state->lastnum)
157 #define RExC_paren_name_list    (pRExC_state->paren_name_list)
158 #endif
159 } RExC_state_t;
160
161 #define RExC_flags      (pRExC_state->flags)
162 #define RExC_precomp    (pRExC_state->precomp)
163 #define RExC_rx_sv      (pRExC_state->rx_sv)
164 #define RExC_rx         (pRExC_state->rx)
165 #define RExC_rxi        (pRExC_state->rxi)
166 #define RExC_start      (pRExC_state->start)
167 #define RExC_end        (pRExC_state->end)
168 #define RExC_parse      (pRExC_state->parse)
169 #define RExC_whilem_seen        (pRExC_state->whilem_seen)
170 #ifdef RE_TRACK_PATTERN_OFFSETS
171 #define RExC_offsets    (pRExC_state->rxi->u.offsets) /* I am not like the others */
172 #endif
173 #define RExC_emit       (pRExC_state->emit)
174 #define RExC_emit_start (pRExC_state->emit_start)
175 #define RExC_emit_bound (pRExC_state->emit_bound)
176 #define RExC_naughty    (pRExC_state->naughty)
177 #define RExC_sawback    (pRExC_state->sawback)
178 #define RExC_seen       (pRExC_state->seen)
179 #define RExC_size       (pRExC_state->size)
180 #define RExC_npar       (pRExC_state->npar)
181 #define RExC_nestroot   (pRExC_state->nestroot)
182 #define RExC_extralen   (pRExC_state->extralen)
183 #define RExC_seen_zerolen       (pRExC_state->seen_zerolen)
184 #define RExC_seen_evals (pRExC_state->seen_evals)
185 #define RExC_utf8       (pRExC_state->utf8)
186 #define RExC_uni_semantics      (pRExC_state->uni_semantics)
187 #define RExC_orig_utf8  (pRExC_state->orig_utf8)
188 #define RExC_open_parens        (pRExC_state->open_parens)
189 #define RExC_close_parens       (pRExC_state->close_parens)
190 #define RExC_opend      (pRExC_state->opend)
191 #define RExC_paren_names        (pRExC_state->paren_names)
192 #define RExC_recurse    (pRExC_state->recurse)
193 #define RExC_recurse_count      (pRExC_state->recurse_count)
194 #define RExC_in_lookbehind      (pRExC_state->in_lookbehind)
195 #define RExC_contains_locale    (pRExC_state->contains_locale)
196 #define RExC_override_recoding  (pRExC_state->override_recoding)
197
198
199 #define ISMULT1(c)      ((c) == '*' || (c) == '+' || (c) == '?')
200 #define ISMULT2(s)      ((*s) == '*' || (*s) == '+' || (*s) == '?' || \
201         ((*s) == '{' && regcurly(s)))
202
203 #ifdef SPSTART
204 #undef SPSTART          /* dratted cpp namespace... */
205 #endif
206 /*
207  * Flags to be passed up and down.
208  */
209 #define WORST           0       /* Worst case. */
210 #define HASWIDTH        0x01    /* Known to match non-null strings. */
211
212 /* Simple enough to be STAR/PLUS operand, in an EXACT node must be a single
213  * character, and if utf8, must be invariant.  Note that this is not the same thing as REGNODE_SIMPLE */
214 #define SIMPLE          0x02
215 #define SPSTART         0x04    /* Starts with * or +. */
216 #define TRYAGAIN        0x08    /* Weeded out a declaration. */
217 #define POSTPONED       0x10    /* (?1),(?&name), (??{...}) or similar */
218
219 #define REG_NODE_NUM(x) ((x) ? (int)((x)-RExC_emit_start) : -1)
220
221 /* whether trie related optimizations are enabled */
222 #if PERL_ENABLE_EXTENDED_TRIE_OPTIMISATION
223 #define TRIE_STUDY_OPT
224 #define FULL_TRIE_STUDY
225 #define TRIE_STCLASS
226 #endif
227
228
229
230 #define PBYTE(u8str,paren) ((U8*)(u8str))[(paren) >> 3]
231 #define PBITVAL(paren) (1 << ((paren) & 7))
232 #define PAREN_TEST(u8str,paren) ( PBYTE(u8str,paren) & PBITVAL(paren))
233 #define PAREN_SET(u8str,paren) PBYTE(u8str,paren) |= PBITVAL(paren)
234 #define PAREN_UNSET(u8str,paren) PBYTE(u8str,paren) &= (~PBITVAL(paren))
235
236 /* If not already in utf8, do a longjmp back to the beginning */
237 #define UTF8_LONGJMP 42 /* Choose a value not likely to ever conflict */
238 #define REQUIRE_UTF8    STMT_START {                                       \
239                                      if (! UTF) JMPENV_JUMP(UTF8_LONGJMP); \
240                         } STMT_END
241
242 /* About scan_data_t.
243
244   During optimisation we recurse through the regexp program performing
245   various inplace (keyhole style) optimisations. In addition study_chunk
246   and scan_commit populate this data structure with information about
247   what strings MUST appear in the pattern. We look for the longest 
248   string that must appear at a fixed location, and we look for the
249   longest string that may appear at a floating location. So for instance
250   in the pattern:
251   
252     /FOO[xX]A.*B[xX]BAR/
253     
254   Both 'FOO' and 'A' are fixed strings. Both 'B' and 'BAR' are floating
255   strings (because they follow a .* construct). study_chunk will identify
256   both FOO and BAR as being the longest fixed and floating strings respectively.
257   
258   The strings can be composites, for instance
259   
260      /(f)(o)(o)/
261      
262   will result in a composite fixed substring 'foo'.
263   
264   For each string some basic information is maintained:
265   
266   - offset or min_offset
267     This is the position the string must appear at, or not before.
268     It also implicitly (when combined with minlenp) tells us how many
269     characters must match before the string we are searching for.
270     Likewise when combined with minlenp and the length of the string it
271     tells us how many characters must appear after the string we have 
272     found.
273   
274   - max_offset
275     Only used for floating strings. This is the rightmost point that
276     the string can appear at. If set to I32 max it indicates that the
277     string can occur infinitely far to the right.
278   
279   - minlenp
280     A pointer to the minimum length of the pattern that the string 
281     was found inside. This is important as in the case of positive 
282     lookahead or positive lookbehind we can have multiple patterns 
283     involved. Consider
284     
285     /(?=FOO).*F/
286     
287     The minimum length of the pattern overall is 3, the minimum length
288     of the lookahead part is 3, but the minimum length of the part that
289     will actually match is 1. So 'FOO's minimum length is 3, but the 
290     minimum length for the F is 1. This is important as the minimum length
291     is used to determine offsets in front of and behind the string being 
292     looked for.  Since strings can be composites this is the length of the
293     pattern at the time it was committed with a scan_commit. Note that
294     the length is calculated by study_chunk, so that the minimum lengths
295     are not known until the full pattern has been compiled, thus the 
296     pointer to the value.
297   
298   - lookbehind
299   
300     In the case of lookbehind the string being searched for can be
301     offset past the start point of the final matching string. 
302     If this value was just blithely removed from the min_offset it would
303     invalidate some of the calculations for how many chars must match
304     before or after (as they are derived from min_offset and minlen and
305     the length of the string being searched for). 
306     When the final pattern is compiled and the data is moved from the
307     scan_data_t structure into the regexp structure the information
308     about lookbehind is factored in, with the information that would 
309     have been lost precalculated in the end_shift field for the 
310     associated string.
311
312   The fields pos_min and pos_delta are used to store the minimum offset
313   and the delta to the maximum offset at the current point in the pattern.    
314
315 */
316
317 typedef struct scan_data_t {
318     /*I32 len_min;      unused */
319     /*I32 len_delta;    unused */
320     I32 pos_min;
321     I32 pos_delta;
322     SV *last_found;
323     I32 last_end;           /* min value, <0 unless valid. */
324     I32 last_start_min;
325     I32 last_start_max;
326     SV **longest;           /* Either &l_fixed, or &l_float. */
327     SV *longest_fixed;      /* longest fixed string found in pattern */
328     I32 offset_fixed;       /* offset where it starts */
329     I32 *minlen_fixed;      /* pointer to the minlen relevant to the string */
330     I32 lookbehind_fixed;   /* is the position of the string modfied by LB */
331     SV *longest_float;      /* longest floating string found in pattern */
332     I32 offset_float_min;   /* earliest point in string it can appear */
333     I32 offset_float_max;   /* latest point in string it can appear */
334     I32 *minlen_float;      /* pointer to the minlen relevant to the string */
335     I32 lookbehind_float;   /* is the position of the string modified by LB */
336     I32 flags;
337     I32 whilem_c;
338     I32 *last_closep;
339     struct regnode_charclass_class *start_class;
340 } scan_data_t;
341
342 /*
343  * Forward declarations for pregcomp()'s friends.
344  */
345
346 static const scan_data_t zero_scan_data =
347   { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ,0};
348
349 #define SF_BEFORE_EOL           (SF_BEFORE_SEOL|SF_BEFORE_MEOL)
350 #define SF_BEFORE_SEOL          0x0001
351 #define SF_BEFORE_MEOL          0x0002
352 #define SF_FIX_BEFORE_EOL       (SF_FIX_BEFORE_SEOL|SF_FIX_BEFORE_MEOL)
353 #define SF_FL_BEFORE_EOL        (SF_FL_BEFORE_SEOL|SF_FL_BEFORE_MEOL)
354
355 #ifdef NO_UNARY_PLUS
356 #  define SF_FIX_SHIFT_EOL      (0+2)
357 #  define SF_FL_SHIFT_EOL               (0+4)
358 #else
359 #  define SF_FIX_SHIFT_EOL      (+2)
360 #  define SF_FL_SHIFT_EOL               (+4)
361 #endif
362
363 #define SF_FIX_BEFORE_SEOL      (SF_BEFORE_SEOL << SF_FIX_SHIFT_EOL)
364 #define SF_FIX_BEFORE_MEOL      (SF_BEFORE_MEOL << SF_FIX_SHIFT_EOL)
365
366 #define SF_FL_BEFORE_SEOL       (SF_BEFORE_SEOL << SF_FL_SHIFT_EOL)
367 #define SF_FL_BEFORE_MEOL       (SF_BEFORE_MEOL << SF_FL_SHIFT_EOL) /* 0x20 */
368 #define SF_IS_INF               0x0040
369 #define SF_HAS_PAR              0x0080
370 #define SF_IN_PAR               0x0100
371 #define SF_HAS_EVAL             0x0200
372 #define SCF_DO_SUBSTR           0x0400
373 #define SCF_DO_STCLASS_AND      0x0800
374 #define SCF_DO_STCLASS_OR       0x1000
375 #define SCF_DO_STCLASS          (SCF_DO_STCLASS_AND|SCF_DO_STCLASS_OR)
376 #define SCF_WHILEM_VISITED_POS  0x2000
377
378 #define SCF_TRIE_RESTUDY        0x4000 /* Do restudy? */
379 #define SCF_SEEN_ACCEPT         0x8000 
380
381 #define UTF cBOOL(RExC_utf8)
382 #define LOC (get_regex_charset(RExC_flags) == REGEX_LOCALE_CHARSET)
383 #define UNI_SEMANTICS (get_regex_charset(RExC_flags) == REGEX_UNICODE_CHARSET)
384 #define DEPENDS_SEMANTICS (get_regex_charset(RExC_flags) == REGEX_DEPENDS_CHARSET)
385 #define AT_LEAST_UNI_SEMANTICS (get_regex_charset(RExC_flags) >= REGEX_UNICODE_CHARSET)
386 #define ASCII_RESTRICTED (get_regex_charset(RExC_flags) == REGEX_ASCII_RESTRICTED_CHARSET)
387 #define MORE_ASCII_RESTRICTED (get_regex_charset(RExC_flags) == REGEX_ASCII_MORE_RESTRICTED_CHARSET)
388 #define AT_LEAST_ASCII_RESTRICTED (get_regex_charset(RExC_flags) >= REGEX_ASCII_RESTRICTED_CHARSET)
389
390 #define FOLD cBOOL(RExC_flags & RXf_PMf_FOLD)
391
392 #define OOB_UNICODE             12345678
393 #define OOB_NAMEDCLASS          -1
394
395 #define CHR_SVLEN(sv) (UTF ? sv_len_utf8(sv) : SvCUR(sv))
396 #define CHR_DIST(a,b) (UTF ? utf8_distance(a,b) : a - b)
397
398
399 /* length of regex to show in messages that don't mark a position within */
400 #define RegexLengthToShowInErrorMessages 127
401
402 /*
403  * If MARKER[12] are adjusted, be sure to adjust the constants at the top
404  * of t/op/regmesg.t, the tests in t/op/re_tests, and those in
405  * op/pragma/warn/regcomp.
406  */
407 #define MARKER1 "<-- HERE"    /* marker as it appears in the description */
408 #define MARKER2 " <-- HERE "  /* marker as it appears within the regex */
409
410 #define REPORT_LOCATION " in regex; marked by " MARKER1 " in m/%.*s" MARKER2 "%s/"
411
412 /*
413  * Calls SAVEDESTRUCTOR_X if needed, then calls Perl_croak with the given
414  * arg. Show regex, up to a maximum length. If it's too long, chop and add
415  * "...".
416  */
417 #define _FAIL(code) STMT_START {                                        \
418     const char *ellipses = "";                                          \
419     IV len = RExC_end - RExC_precomp;                                   \
420                                                                         \
421     if (!SIZE_ONLY)                                                     \
422         SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx_sv);                   \
423     if (len > RegexLengthToShowInErrorMessages) {                       \
424         /* chop 10 shorter than the max, to ensure meaning of "..." */  \
425         len = RegexLengthToShowInErrorMessages - 10;                    \
426         ellipses = "...";                                               \
427     }                                                                   \
428     code;                                                               \
429 } STMT_END
430
431 #define FAIL(msg) _FAIL(                            \
432     Perl_croak(aTHX_ "%s in regex m/%.*s%s/",       \
433             msg, (int)len, RExC_precomp, ellipses))
434
435 #define FAIL2(msg,arg) _FAIL(                       \
436     Perl_croak(aTHX_ msg " in regex m/%.*s%s/",     \
437             arg, (int)len, RExC_precomp, ellipses))
438
439 /*
440  * Simple_vFAIL -- like FAIL, but marks the current location in the scan
441  */
442 #define Simple_vFAIL(m) STMT_START {                                    \
443     const IV offset = RExC_parse - RExC_precomp;                        \
444     Perl_croak(aTHX_ "%s" REPORT_LOCATION,                              \
445             m, (int)offset, RExC_precomp, RExC_precomp + offset);       \
446 } STMT_END
447
448 /*
449  * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL()
450  */
451 #define vFAIL(m) STMT_START {                           \
452     if (!SIZE_ONLY)                                     \
453         SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx_sv);   \
454     Simple_vFAIL(m);                                    \
455 } STMT_END
456
457 /*
458  * Like Simple_vFAIL(), but accepts two arguments.
459  */
460 #define Simple_vFAIL2(m,a1) STMT_START {                        \
461     const IV offset = RExC_parse - RExC_precomp;                        \
462     S_re_croak2(aTHX_ m, REPORT_LOCATION, a1,                   \
463             (int)offset, RExC_precomp, RExC_precomp + offset);  \
464 } STMT_END
465
466 /*
467  * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL2().
468  */
469 #define vFAIL2(m,a1) STMT_START {                       \
470     if (!SIZE_ONLY)                                     \
471         SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx_sv);   \
472     Simple_vFAIL2(m, a1);                               \
473 } STMT_END
474
475
476 /*
477  * Like Simple_vFAIL(), but accepts three arguments.
478  */
479 #define Simple_vFAIL3(m, a1, a2) STMT_START {                   \
480     const IV offset = RExC_parse - RExC_precomp;                \
481     S_re_croak2(aTHX_ m, REPORT_LOCATION, a1, a2,               \
482             (int)offset, RExC_precomp, RExC_precomp + offset);  \
483 } STMT_END
484
485 /*
486  * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL3().
487  */
488 #define vFAIL3(m,a1,a2) STMT_START {                    \
489     if (!SIZE_ONLY)                                     \
490         SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx_sv);   \
491     Simple_vFAIL3(m, a1, a2);                           \
492 } STMT_END
493
494 /*
495  * Like Simple_vFAIL(), but accepts four arguments.
496  */
497 #define Simple_vFAIL4(m, a1, a2, a3) STMT_START {               \
498     const IV offset = RExC_parse - RExC_precomp;                \
499     S_re_croak2(aTHX_ m, REPORT_LOCATION, a1, a2, a3,           \
500             (int)offset, RExC_precomp, RExC_precomp + offset);  \
501 } STMT_END
502
503 #define ckWARNreg(loc,m) STMT_START {                                   \
504     const IV offset = loc - RExC_precomp;                               \
505     Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,      \
506             (int)offset, RExC_precomp, RExC_precomp + offset);          \
507 } STMT_END
508
509 #define ckWARNregdep(loc,m) STMT_START {                                \
510     const IV offset = loc - RExC_precomp;                               \
511     Perl_ck_warner_d(aTHX_ packWARN2(WARN_DEPRECATED, WARN_REGEXP),     \
512             m REPORT_LOCATION,                                          \
513             (int)offset, RExC_precomp, RExC_precomp + offset);          \
514 } STMT_END
515
516 #define ckWARN2regdep(loc,m, a1) STMT_START {                           \
517     const IV offset = loc - RExC_precomp;                               \
518     Perl_ck_warner_d(aTHX_ packWARN2(WARN_DEPRECATED, WARN_REGEXP),     \
519             m REPORT_LOCATION,                                          \
520             a1, (int)offset, RExC_precomp, RExC_precomp + offset);      \
521 } STMT_END
522
523 #define ckWARN2reg(loc, m, a1) STMT_START {                             \
524     const IV offset = loc - RExC_precomp;                               \
525     Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,      \
526             a1, (int)offset, RExC_precomp, RExC_precomp + offset);      \
527 } STMT_END
528
529 #define vWARN3(loc, m, a1, a2) STMT_START {                             \
530     const IV offset = loc - RExC_precomp;                               \
531     Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,         \
532             a1, a2, (int)offset, RExC_precomp, RExC_precomp + offset);  \
533 } STMT_END
534
535 #define ckWARN3reg(loc, m, a1, a2) STMT_START {                         \
536     const IV offset = loc - RExC_precomp;                               \
537     Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,      \
538             a1, a2, (int)offset, RExC_precomp, RExC_precomp + offset);  \
539 } STMT_END
540
541 #define vWARN4(loc, m, a1, a2, a3) STMT_START {                         \
542     const IV offset = loc - RExC_precomp;                               \
543     Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,         \
544             a1, a2, a3, (int)offset, RExC_precomp, RExC_precomp + offset); \
545 } STMT_END
546
547 #define ckWARN4reg(loc, m, a1, a2, a3) STMT_START {                     \
548     const IV offset = loc - RExC_precomp;                               \
549     Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,      \
550             a1, a2, a3, (int)offset, RExC_precomp, RExC_precomp + offset); \
551 } STMT_END
552
553 #define vWARN5(loc, m, a1, a2, a3, a4) STMT_START {                     \
554     const IV offset = loc - RExC_precomp;                               \
555     Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION,         \
556             a1, a2, a3, a4, (int)offset, RExC_precomp, RExC_precomp + offset); \
557 } STMT_END
558
559
560 /* Allow for side effects in s */
561 #define REGC(c,s) STMT_START {                  \
562     if (!SIZE_ONLY) *(s) = (c); else (void)(s); \
563 } STMT_END
564
565 /* Macros for recording node offsets.   20001227 mjd@plover.com 
566  * Nodes are numbered 1, 2, 3, 4.  Node #n's position is recorded in
567  * element 2*n-1 of the array.  Element #2n holds the byte length node #n.
568  * Element 0 holds the number n.
569  * Position is 1 indexed.
570  */
571 #ifndef RE_TRACK_PATTERN_OFFSETS
572 #define Set_Node_Offset_To_R(node,byte)
573 #define Set_Node_Offset(node,byte)
574 #define Set_Cur_Node_Offset
575 #define Set_Node_Length_To_R(node,len)
576 #define Set_Node_Length(node,len)
577 #define Set_Node_Cur_Length(node)
578 #define Node_Offset(n) 
579 #define Node_Length(n) 
580 #define Set_Node_Offset_Length(node,offset,len)
581 #define ProgLen(ri) ri->u.proglen
582 #define SetProgLen(ri,x) ri->u.proglen = x
583 #else
584 #define ProgLen(ri) ri->u.offsets[0]
585 #define SetProgLen(ri,x) ri->u.offsets[0] = x
586 #define Set_Node_Offset_To_R(node,byte) STMT_START {                    \
587     if (! SIZE_ONLY) {                                                  \
588         MJD_OFFSET_DEBUG(("** (%d) offset of node %d is %d.\n",         \
589                     __LINE__, (int)(node), (int)(byte)));               \
590         if((node) < 0) {                                                \
591             Perl_croak(aTHX_ "value of node is %d in Offset macro", (int)(node)); \
592         } else {                                                        \
593             RExC_offsets[2*(node)-1] = (byte);                          \
594         }                                                               \
595     }                                                                   \
596 } STMT_END
597
598 #define Set_Node_Offset(node,byte) \
599     Set_Node_Offset_To_R((node)-RExC_emit_start, (byte)-RExC_start)
600 #define Set_Cur_Node_Offset Set_Node_Offset(RExC_emit, RExC_parse)
601
602 #define Set_Node_Length_To_R(node,len) STMT_START {                     \
603     if (! SIZE_ONLY) {                                                  \
604         MJD_OFFSET_DEBUG(("** (%d) size of node %d is %d.\n",           \
605                 __LINE__, (int)(node), (int)(len)));                    \
606         if((node) < 0) {                                                \
607             Perl_croak(aTHX_ "value of node is %d in Length macro", (int)(node)); \
608         } else {                                                        \
609             RExC_offsets[2*(node)] = (len);                             \
610         }                                                               \
611     }                                                                   \
612 } STMT_END
613
614 #define Set_Node_Length(node,len) \
615     Set_Node_Length_To_R((node)-RExC_emit_start, len)
616 #define Set_Cur_Node_Length(len) Set_Node_Length(RExC_emit, len)
617 #define Set_Node_Cur_Length(node) \
618     Set_Node_Length(node, RExC_parse - parse_start)
619
620 /* Get offsets and lengths */
621 #define Node_Offset(n) (RExC_offsets[2*((n)-RExC_emit_start)-1])
622 #define Node_Length(n) (RExC_offsets[2*((n)-RExC_emit_start)])
623
624 #define Set_Node_Offset_Length(node,offset,len) STMT_START {    \
625     Set_Node_Offset_To_R((node)-RExC_emit_start, (offset));     \
626     Set_Node_Length_To_R((node)-RExC_emit_start, (len));        \
627 } STMT_END
628 #endif
629
630 #if PERL_ENABLE_EXPERIMENTAL_REGEX_OPTIMISATIONS
631 #define EXPERIMENTAL_INPLACESCAN
632 #endif /*PERL_ENABLE_EXPERIMENTAL_REGEX_OPTIMISATIONS*/
633
634 #define DEBUG_STUDYDATA(str,data,depth)                              \
635 DEBUG_OPTIMISE_MORE_r(if(data){                                      \
636     PerlIO_printf(Perl_debug_log,                                    \
637         "%*s" str "Pos:%"IVdf"/%"IVdf                                \
638         " Flags: 0x%"UVXf" Whilem_c: %"IVdf" Lcp: %"IVdf" %s",       \
639         (int)(depth)*2, "",                                          \
640         (IV)((data)->pos_min),                                       \
641         (IV)((data)->pos_delta),                                     \
642         (UV)((data)->flags),                                         \
643         (IV)((data)->whilem_c),                                      \
644         (IV)((data)->last_closep ? *((data)->last_closep) : -1),     \
645         is_inf ? "INF " : ""                                         \
646     );                                                               \
647     if ((data)->last_found)                                          \
648         PerlIO_printf(Perl_debug_log,                                \
649             "Last:'%s' %"IVdf":%"IVdf"/%"IVdf" %sFixed:'%s' @ %"IVdf \
650             " %sFloat: '%s' @ %"IVdf"/%"IVdf"",                      \
651             SvPVX_const((data)->last_found),                         \
652             (IV)((data)->last_end),                                  \
653             (IV)((data)->last_start_min),                            \
654             (IV)((data)->last_start_max),                            \
655             ((data)->longest &&                                      \
656              (data)->longest==&((data)->longest_fixed)) ? "*" : "",  \
657             SvPVX_const((data)->longest_fixed),                      \
658             (IV)((data)->offset_fixed),                              \
659             ((data)->longest &&                                      \
660              (data)->longest==&((data)->longest_float)) ? "*" : "",  \
661             SvPVX_const((data)->longest_float),                      \
662             (IV)((data)->offset_float_min),                          \
663             (IV)((data)->offset_float_max)                           \
664         );                                                           \
665     PerlIO_printf(Perl_debug_log,"\n");                              \
666 });
667
668 static void clear_re(pTHX_ void *r);
669
670 /* Mark that we cannot extend a found fixed substring at this point.
671    Update the longest found anchored substring and the longest found
672    floating substrings if needed. */
673
674 STATIC void
675 S_scan_commit(pTHX_ const RExC_state_t *pRExC_state, scan_data_t *data, I32 *minlenp, int is_inf)
676 {
677     const STRLEN l = CHR_SVLEN(data->last_found);
678     const STRLEN old_l = CHR_SVLEN(*data->longest);
679     GET_RE_DEBUG_FLAGS_DECL;
680
681     PERL_ARGS_ASSERT_SCAN_COMMIT;
682
683     if ((l >= old_l) && ((l > old_l) || (data->flags & SF_BEFORE_EOL))) {
684         SvSetMagicSV(*data->longest, data->last_found);
685         if (*data->longest == data->longest_fixed) {
686             data->offset_fixed = l ? data->last_start_min : data->pos_min;
687             if (data->flags & SF_BEFORE_EOL)
688                 data->flags
689                     |= ((data->flags & SF_BEFORE_EOL) << SF_FIX_SHIFT_EOL);
690             else
691                 data->flags &= ~SF_FIX_BEFORE_EOL;
692             data->minlen_fixed=minlenp;
693             data->lookbehind_fixed=0;
694         }
695         else { /* *data->longest == data->longest_float */
696             data->offset_float_min = l ? data->last_start_min : data->pos_min;
697             data->offset_float_max = (l
698                                       ? data->last_start_max
699                                       : data->pos_min + data->pos_delta);
700             if (is_inf || (U32)data->offset_float_max > (U32)I32_MAX)
701                 data->offset_float_max = I32_MAX;
702             if (data->flags & SF_BEFORE_EOL)
703                 data->flags
704                     |= ((data->flags & SF_BEFORE_EOL) << SF_FL_SHIFT_EOL);
705             else
706                 data->flags &= ~SF_FL_BEFORE_EOL;
707             data->minlen_float=minlenp;
708             data->lookbehind_float=0;
709         }
710     }
711     SvCUR_set(data->last_found, 0);
712     {
713         SV * const sv = data->last_found;
714         if (SvUTF8(sv) && SvMAGICAL(sv)) {
715             MAGIC * const mg = mg_find(sv, PERL_MAGIC_utf8);
716             if (mg)
717                 mg->mg_len = 0;
718         }
719     }
720     data->last_end = -1;
721     data->flags &= ~SF_BEFORE_EOL;
722     DEBUG_STUDYDATA("commit: ",data,0);
723 }
724
725 /* Can match anything (initialization) */
726 STATIC void
727 S_cl_anything(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl)
728 {
729     PERL_ARGS_ASSERT_CL_ANYTHING;
730
731     ANYOF_BITMAP_SETALL(cl);
732     cl->flags = ANYOF_CLASS|ANYOF_EOS|ANYOF_UNICODE_ALL
733                 |ANYOF_LOC_NONBITMAP_FOLD|ANYOF_NON_UTF8_LATIN1_ALL;
734
735     /* If any portion of the regex is to operate under locale rules,
736      * initialization includes it.  The reason this isn't done for all regexes
737      * is that the optimizer was written under the assumption that locale was
738      * all-or-nothing.  Given the complexity and lack of documentation in the
739      * optimizer, and that there are inadequate test cases for locale, so many
740      * parts of it may not work properly, it is safest to avoid locale unless
741      * necessary. */
742     if (RExC_contains_locale) {
743         ANYOF_CLASS_SETALL(cl);     /* /l uses class */
744         cl->flags |= ANYOF_LOCALE;
745     }
746     else {
747         ANYOF_CLASS_ZERO(cl);       /* Only /l uses class now */
748     }
749 }
750
751 /* Can match anything (initialization) */
752 STATIC int
753 S_cl_is_anything(const struct regnode_charclass_class *cl)
754 {
755     int value;
756
757     PERL_ARGS_ASSERT_CL_IS_ANYTHING;
758
759     for (value = 0; value <= ANYOF_MAX; value += 2)
760         if (ANYOF_CLASS_TEST(cl, value) && ANYOF_CLASS_TEST(cl, value + 1))
761             return 1;
762     if (!(cl->flags & ANYOF_UNICODE_ALL))
763         return 0;
764     if (!ANYOF_BITMAP_TESTALLSET((const void*)cl))
765         return 0;
766     return 1;
767 }
768
769 /* Can match anything (initialization) */
770 STATIC void
771 S_cl_init(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl)
772 {
773     PERL_ARGS_ASSERT_CL_INIT;
774
775     Zero(cl, 1, struct regnode_charclass_class);
776     cl->type = ANYOF;
777     cl_anything(pRExC_state, cl);
778     ARG_SET(cl, ANYOF_NONBITMAP_EMPTY);
779 }
780
781 /* These two functions currently do the exact same thing */
782 #define cl_init_zero            S_cl_init
783
784 /* 'AND' a given class with another one.  Can create false positives.  'cl'
785  * should not be inverted.  'and_with->flags & ANYOF_CLASS' should be 0 if
786  * 'and_with' is a regnode_charclass instead of a regnode_charclass_class. */
787 STATIC void
788 S_cl_and(struct regnode_charclass_class *cl,
789         const struct regnode_charclass_class *and_with)
790 {
791     PERL_ARGS_ASSERT_CL_AND;
792
793     assert(and_with->type == ANYOF);
794
795     /* I (khw) am not sure all these restrictions are necessary XXX */
796     if (!(ANYOF_CLASS_TEST_ANY_SET(and_with))
797         && !(ANYOF_CLASS_TEST_ANY_SET(cl))
798         && (and_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
799         && !(and_with->flags & ANYOF_LOC_NONBITMAP_FOLD)
800         && !(cl->flags & ANYOF_LOC_NONBITMAP_FOLD)) {
801         int i;
802
803         if (and_with->flags & ANYOF_INVERT)
804             for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
805                 cl->bitmap[i] &= ~and_with->bitmap[i];
806         else
807             for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
808                 cl->bitmap[i] &= and_with->bitmap[i];
809     } /* XXXX: logic is complicated otherwise, leave it along for a moment. */
810
811     if (and_with->flags & ANYOF_INVERT) {
812
813         /* Here, the and'ed node is inverted.  Get the AND of the flags that
814          * aren't affected by the inversion.  Those that are affected are
815          * handled individually below */
816         U8 affected_flags = cl->flags & ~INVERSION_UNAFFECTED_FLAGS;
817         cl->flags &= (and_with->flags & INVERSION_UNAFFECTED_FLAGS);
818         cl->flags |= affected_flags;
819
820         /* We currently don't know how to deal with things that aren't in the
821          * bitmap, but we know that the intersection is no greater than what
822          * is already in cl, so let there be false positives that get sorted
823          * out after the synthetic start class succeeds, and the node is
824          * matched for real. */
825
826         /* The inversion of these two flags indicate that the resulting
827          * intersection doesn't have them */
828         if (and_with->flags & ANYOF_UNICODE_ALL) {
829             cl->flags &= ~ANYOF_UNICODE_ALL;
830         }
831         if (and_with->flags & ANYOF_NON_UTF8_LATIN1_ALL) {
832             cl->flags &= ~ANYOF_NON_UTF8_LATIN1_ALL;
833         }
834     }
835     else {   /* and'd node is not inverted */
836         U8 outside_bitmap_but_not_utf8; /* Temp variable */
837
838         if (! ANYOF_NONBITMAP(and_with)) {
839
840             /* Here 'and_with' doesn't match anything outside the bitmap
841              * (except possibly ANYOF_UNICODE_ALL), which means the
842              * intersection can't either, except for ANYOF_UNICODE_ALL, in
843              * which case we don't know what the intersection is, but it's no
844              * greater than what cl already has, so can just leave it alone,
845              * with possible false positives */
846             if (! (and_with->flags & ANYOF_UNICODE_ALL)) {
847                 ARG_SET(cl, ANYOF_NONBITMAP_EMPTY);
848                 cl->flags &= ~ANYOF_NONBITMAP_NON_UTF8;
849             }
850         }
851         else if (! ANYOF_NONBITMAP(cl)) {
852
853             /* Here, 'and_with' does match something outside the bitmap, and cl
854              * doesn't have a list of things to match outside the bitmap.  If
855              * cl can match all code points above 255, the intersection will
856              * be those above-255 code points that 'and_with' matches.  If cl
857              * can't match all Unicode code points, it means that it can't
858              * match anything outside the bitmap (since the 'if' that got us
859              * into this block tested for that), so we leave the bitmap empty.
860              */
861             if (cl->flags & ANYOF_UNICODE_ALL) {
862                 ARG_SET(cl, ARG(and_with));
863
864                 /* and_with's ARG may match things that don't require UTF8.
865                  * And now cl's will too, in spite of this being an 'and'.  See
866                  * the comments below about the kludge */
867                 cl->flags |= and_with->flags & ANYOF_NONBITMAP_NON_UTF8;
868             }
869         }
870         else {
871             /* Here, both 'and_with' and cl match something outside the
872              * bitmap.  Currently we do not do the intersection, so just match
873              * whatever cl had at the beginning.  */
874         }
875
876
877         /* Take the intersection of the two sets of flags.  However, the
878          * ANYOF_NONBITMAP_NON_UTF8 flag is treated as an 'or'.  This is a
879          * kludge around the fact that this flag is not treated like the others
880          * which are initialized in cl_anything().  The way the optimizer works
881          * is that the synthetic start class (SSC) is initialized to match
882          * anything, and then the first time a real node is encountered, its
883          * values are AND'd with the SSC's with the result being the values of
884          * the real node.  However, there are paths through the optimizer where
885          * the AND never gets called, so those initialized bits are set
886          * inappropriately, which is not usually a big deal, as they just cause
887          * false positives in the SSC, which will just mean a probably
888          * imperceptible slow down in execution.  However this bit has a
889          * higher false positive consequence in that it can cause utf8.pm,
890          * utf8_heavy.pl ... to be loaded when not necessary, which is a much
891          * bigger slowdown and also causes significant extra memory to be used.
892          * In order to prevent this, the code now takes a different tack.  The
893          * bit isn't set unless some part of the regular expression needs it,
894          * but once set it won't get cleared.  This means that these extra
895          * modules won't get loaded unless there was some path through the
896          * pattern that would have required them anyway, and  so any false
897          * positives that occur by not ANDing them out when they could be
898          * aren't as severe as they would be if we treated this bit like all
899          * the others */
900         outside_bitmap_but_not_utf8 = (cl->flags | and_with->flags)
901                                       & ANYOF_NONBITMAP_NON_UTF8;
902         cl->flags &= and_with->flags;
903         cl->flags |= outside_bitmap_but_not_utf8;
904     }
905 }
906
907 /* 'OR' a given class with another one.  Can create false positives.  'cl'
908  * should not be inverted.  'or_with->flags & ANYOF_CLASS' should be 0 if
909  * 'or_with' is a regnode_charclass instead of a regnode_charclass_class. */
910 STATIC void
911 S_cl_or(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl, const struct regnode_charclass_class *or_with)
912 {
913     PERL_ARGS_ASSERT_CL_OR;
914
915     if (or_with->flags & ANYOF_INVERT) {
916
917         /* Here, the or'd node is to be inverted.  This means we take the
918          * complement of everything not in the bitmap, but currently we don't
919          * know what that is, so give up and match anything */
920         if (ANYOF_NONBITMAP(or_with)) {
921             cl_anything(pRExC_state, cl);
922         }
923         /* We do not use
924          * (B1 | CL1) | (!B2 & !CL2) = (B1 | !B2 & !CL2) | (CL1 | (!B2 & !CL2))
925          *   <= (B1 | !B2) | (CL1 | !CL2)
926          * which is wasteful if CL2 is small, but we ignore CL2:
927          *   (B1 | CL1) | (!B2 & !CL2) <= (B1 | CL1) | !B2 = (B1 | !B2) | CL1
928          * XXXX Can we handle case-fold?  Unclear:
929          *   (OK1(i) | OK1(i')) | !(OK1(i) | OK1(i')) =
930          *   (OK1(i) | OK1(i')) | (!OK1(i) & !OK1(i'))
931          */
932         else if ( (or_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
933              && !(or_with->flags & ANYOF_LOC_NONBITMAP_FOLD)
934              && !(cl->flags & ANYOF_LOC_NONBITMAP_FOLD) ) {
935             int i;
936
937             for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
938                 cl->bitmap[i] |= ~or_with->bitmap[i];
939         } /* XXXX: logic is complicated otherwise */
940         else {
941             cl_anything(pRExC_state, cl);
942         }
943
944         /* And, we can just take the union of the flags that aren't affected
945          * by the inversion */
946         cl->flags |= or_with->flags & INVERSION_UNAFFECTED_FLAGS;
947
948         /* For the remaining flags:
949             ANYOF_UNICODE_ALL and inverted means to not match anything above
950                     255, which means that the union with cl should just be
951                     what cl has in it, so can ignore this flag
952             ANYOF_NON_UTF8_LATIN1_ALL and inverted means if not utf8 and ord
953                     is 127-255 to match them, but then invert that, so the
954                     union with cl should just be what cl has in it, so can
955                     ignore this flag
956          */
957     } else {    /* 'or_with' is not inverted */
958         /* (B1 | CL1) | (B2 | CL2) = (B1 | B2) | (CL1 | CL2)) */
959         if ( (or_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
960              && (!(or_with->flags & ANYOF_LOC_NONBITMAP_FOLD)
961                  || (cl->flags & ANYOF_LOC_NONBITMAP_FOLD)) ) {
962             int i;
963
964             /* OR char bitmap and class bitmap separately */
965             for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
966                 cl->bitmap[i] |= or_with->bitmap[i];
967             if (ANYOF_CLASS_TEST_ANY_SET(or_with)) {
968                 for (i = 0; i < ANYOF_CLASSBITMAP_SIZE; i++)
969                     cl->classflags[i] |= or_with->classflags[i];
970                 cl->flags |= ANYOF_CLASS;
971             }
972         }
973         else { /* XXXX: logic is complicated, leave it along for a moment. */
974             cl_anything(pRExC_state, cl);
975         }
976
977         if (ANYOF_NONBITMAP(or_with)) {
978
979             /* Use the added node's outside-the-bit-map match if there isn't a
980              * conflict.  If there is a conflict (both nodes match something
981              * outside the bitmap, but what they match outside is not the same
982              * pointer, and hence not easily compared until XXX we extend
983              * inversion lists this far), give up and allow the start class to
984              * match everything outside the bitmap.  If that stuff is all above
985              * 255, can just set UNICODE_ALL, otherwise caould be anything. */
986             if (! ANYOF_NONBITMAP(cl)) {
987                 ARG_SET(cl, ARG(or_with));
988             }
989             else if (ARG(cl) != ARG(or_with)) {
990
991                 if ((or_with->flags & ANYOF_NONBITMAP_NON_UTF8)) {
992                     cl_anything(pRExC_state, cl);
993                 }
994                 else {
995                     cl->flags |= ANYOF_UNICODE_ALL;
996                 }
997             }
998         }
999
1000         /* Take the union */
1001         cl->flags |= or_with->flags;
1002     }
1003 }
1004
1005 #define TRIE_LIST_ITEM(state,idx) (trie->states[state].trans.list)[ idx ]
1006 #define TRIE_LIST_CUR(state)  ( TRIE_LIST_ITEM( state, 0 ).forid )
1007 #define TRIE_LIST_LEN(state) ( TRIE_LIST_ITEM( state, 0 ).newstate )
1008 #define TRIE_LIST_USED(idx)  ( trie->states[state].trans.list ? (TRIE_LIST_CUR( idx ) - 1) : 0 )
1009
1010
1011 #ifdef DEBUGGING
1012 /*
1013    dump_trie(trie,widecharmap,revcharmap)
1014    dump_trie_interim_list(trie,widecharmap,revcharmap,next_alloc)
1015    dump_trie_interim_table(trie,widecharmap,revcharmap,next_alloc)
1016
1017    These routines dump out a trie in a somewhat readable format.
1018    The _interim_ variants are used for debugging the interim
1019    tables that are used to generate the final compressed
1020    representation which is what dump_trie expects.
1021
1022    Part of the reason for their existence is to provide a form
1023    of documentation as to how the different representations function.
1024
1025 */
1026
1027 /*
1028   Dumps the final compressed table form of the trie to Perl_debug_log.
1029   Used for debugging make_trie().
1030 */
1031
1032 STATIC void
1033 S_dump_trie(pTHX_ const struct _reg_trie_data *trie, HV *widecharmap,
1034             AV *revcharmap, U32 depth)
1035 {
1036     U32 state;
1037     SV *sv=sv_newmortal();
1038     int colwidth= widecharmap ? 6 : 4;
1039     U16 word;
1040     GET_RE_DEBUG_FLAGS_DECL;
1041
1042     PERL_ARGS_ASSERT_DUMP_TRIE;
1043
1044     PerlIO_printf( Perl_debug_log, "%*sChar : %-6s%-6s%-4s ",
1045         (int)depth * 2 + 2,"",
1046         "Match","Base","Ofs" );
1047
1048     for( state = 0 ; state < trie->uniquecharcount ; state++ ) {
1049         SV ** const tmp = av_fetch( revcharmap, state, 0);
1050         if ( tmp ) {
1051             PerlIO_printf( Perl_debug_log, "%*s", 
1052                 colwidth,
1053                 pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth, 
1054                             PL_colors[0], PL_colors[1],
1055                             (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
1056                             PERL_PV_ESCAPE_FIRSTCHAR 
1057                 ) 
1058             );
1059         }
1060     }
1061     PerlIO_printf( Perl_debug_log, "\n%*sState|-----------------------",
1062         (int)depth * 2 + 2,"");
1063
1064     for( state = 0 ; state < trie->uniquecharcount ; state++ )
1065         PerlIO_printf( Perl_debug_log, "%.*s", colwidth, "--------");
1066     PerlIO_printf( Perl_debug_log, "\n");
1067
1068     for( state = 1 ; state < trie->statecount ; state++ ) {
1069         const U32 base = trie->states[ state ].trans.base;
1070
1071         PerlIO_printf( Perl_debug_log, "%*s#%4"UVXf"|", (int)depth * 2 + 2,"", (UV)state);
1072
1073         if ( trie->states[ state ].wordnum ) {
1074             PerlIO_printf( Perl_debug_log, " W%4X", trie->states[ state ].wordnum );
1075         } else {
1076             PerlIO_printf( Perl_debug_log, "%6s", "" );
1077         }
1078
1079         PerlIO_printf( Perl_debug_log, " @%4"UVXf" ", (UV)base );
1080
1081         if ( base ) {
1082             U32 ofs = 0;
1083
1084             while( ( base + ofs  < trie->uniquecharcount ) ||
1085                    ( base + ofs - trie->uniquecharcount < trie->lasttrans
1086                      && trie->trans[ base + ofs - trie->uniquecharcount ].check != state))
1087                     ofs++;
1088
1089             PerlIO_printf( Perl_debug_log, "+%2"UVXf"[ ", (UV)ofs);
1090
1091             for ( ofs = 0 ; ofs < trie->uniquecharcount ; ofs++ ) {
1092                 if ( ( base + ofs >= trie->uniquecharcount ) &&
1093                      ( base + ofs - trie->uniquecharcount < trie->lasttrans ) &&
1094                      trie->trans[ base + ofs - trie->uniquecharcount ].check == state )
1095                 {
1096                    PerlIO_printf( Perl_debug_log, "%*"UVXf,
1097                     colwidth,
1098                     (UV)trie->trans[ base + ofs - trie->uniquecharcount ].next );
1099                 } else {
1100                     PerlIO_printf( Perl_debug_log, "%*s",colwidth,"   ." );
1101                 }
1102             }
1103
1104             PerlIO_printf( Perl_debug_log, "]");
1105
1106         }
1107         PerlIO_printf( Perl_debug_log, "\n" );
1108     }
1109     PerlIO_printf(Perl_debug_log, "%*sword_info N:(prev,len)=", (int)depth*2, "");
1110     for (word=1; word <= trie->wordcount; word++) {
1111         PerlIO_printf(Perl_debug_log, " %d:(%d,%d)",
1112             (int)word, (int)(trie->wordinfo[word].prev),
1113             (int)(trie->wordinfo[word].len));
1114     }
1115     PerlIO_printf(Perl_debug_log, "\n" );
1116 }    
1117 /*
1118   Dumps a fully constructed but uncompressed trie in list form.
1119   List tries normally only are used for construction when the number of 
1120   possible chars (trie->uniquecharcount) is very high.
1121   Used for debugging make_trie().
1122 */
1123 STATIC void
1124 S_dump_trie_interim_list(pTHX_ const struct _reg_trie_data *trie,
1125                          HV *widecharmap, AV *revcharmap, U32 next_alloc,
1126                          U32 depth)
1127 {
1128     U32 state;
1129     SV *sv=sv_newmortal();
1130     int colwidth= widecharmap ? 6 : 4;
1131     GET_RE_DEBUG_FLAGS_DECL;
1132
1133     PERL_ARGS_ASSERT_DUMP_TRIE_INTERIM_LIST;
1134
1135     /* print out the table precompression.  */
1136     PerlIO_printf( Perl_debug_log, "%*sState :Word | Transition Data\n%*s%s",
1137         (int)depth * 2 + 2,"", (int)depth * 2 + 2,"",
1138         "------:-----+-----------------\n" );
1139     
1140     for( state=1 ; state < next_alloc ; state ++ ) {
1141         U16 charid;
1142     
1143         PerlIO_printf( Perl_debug_log, "%*s %4"UVXf" :",
1144             (int)depth * 2 + 2,"", (UV)state  );
1145         if ( ! trie->states[ state ].wordnum ) {
1146             PerlIO_printf( Perl_debug_log, "%5s| ","");
1147         } else {
1148             PerlIO_printf( Perl_debug_log, "W%4x| ",
1149                 trie->states[ state ].wordnum
1150             );
1151         }
1152         for( charid = 1 ; charid <= TRIE_LIST_USED( state ) ; charid++ ) {
1153             SV ** const tmp = av_fetch( revcharmap, TRIE_LIST_ITEM(state,charid).forid, 0);
1154             if ( tmp ) {
1155                 PerlIO_printf( Perl_debug_log, "%*s:%3X=%4"UVXf" | ",
1156                     colwidth,
1157                     pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth, 
1158                             PL_colors[0], PL_colors[1],
1159                             (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
1160                             PERL_PV_ESCAPE_FIRSTCHAR 
1161                     ) ,
1162                     TRIE_LIST_ITEM(state,charid).forid,
1163                     (UV)TRIE_LIST_ITEM(state,charid).newstate
1164                 );
1165                 if (!(charid % 10)) 
1166                     PerlIO_printf(Perl_debug_log, "\n%*s| ",
1167                         (int)((depth * 2) + 14), "");
1168             }
1169         }
1170         PerlIO_printf( Perl_debug_log, "\n");
1171     }
1172 }    
1173
1174 /*
1175   Dumps a fully constructed but uncompressed trie in table form.
1176   This is the normal DFA style state transition table, with a few 
1177   twists to facilitate compression later. 
1178   Used for debugging make_trie().
1179 */
1180 STATIC void
1181 S_dump_trie_interim_table(pTHX_ const struct _reg_trie_data *trie,
1182                           HV *widecharmap, AV *revcharmap, U32 next_alloc,
1183                           U32 depth)
1184 {
1185     U32 state;
1186     U16 charid;
1187     SV *sv=sv_newmortal();
1188     int colwidth= widecharmap ? 6 : 4;
1189     GET_RE_DEBUG_FLAGS_DECL;
1190
1191     PERL_ARGS_ASSERT_DUMP_TRIE_INTERIM_TABLE;
1192     
1193     /*
1194        print out the table precompression so that we can do a visual check
1195        that they are identical.
1196      */
1197     
1198     PerlIO_printf( Perl_debug_log, "%*sChar : ",(int)depth * 2 + 2,"" );
1199
1200     for( charid = 0 ; charid < trie->uniquecharcount ; charid++ ) {
1201         SV ** const tmp = av_fetch( revcharmap, charid, 0);
1202         if ( tmp ) {
1203             PerlIO_printf( Perl_debug_log, "%*s", 
1204                 colwidth,
1205                 pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth, 
1206                             PL_colors[0], PL_colors[1],
1207                             (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
1208                             PERL_PV_ESCAPE_FIRSTCHAR 
1209                 ) 
1210             );
1211         }
1212     }
1213
1214     PerlIO_printf( Perl_debug_log, "\n%*sState+-",(int)depth * 2 + 2,"" );
1215
1216     for( charid=0 ; charid < trie->uniquecharcount ; charid++ ) {
1217         PerlIO_printf( Perl_debug_log, "%.*s", colwidth,"--------");
1218     }
1219
1220     PerlIO_printf( Perl_debug_log, "\n" );
1221
1222     for( state=1 ; state < next_alloc ; state += trie->uniquecharcount ) {
1223
1224         PerlIO_printf( Perl_debug_log, "%*s%4"UVXf" : ", 
1225             (int)depth * 2 + 2,"",
1226             (UV)TRIE_NODENUM( state ) );
1227
1228         for( charid = 0 ; charid < trie->uniquecharcount ; charid++ ) {
1229             UV v=(UV)SAFE_TRIE_NODENUM( trie->trans[ state + charid ].next );
1230             if (v)
1231                 PerlIO_printf( Perl_debug_log, "%*"UVXf, colwidth, v );
1232             else
1233                 PerlIO_printf( Perl_debug_log, "%*s", colwidth, "." );
1234         }
1235         if ( ! trie->states[ TRIE_NODENUM( state ) ].wordnum ) {
1236             PerlIO_printf( Perl_debug_log, " (%4"UVXf")\n", (UV)trie->trans[ state ].check );
1237         } else {
1238             PerlIO_printf( Perl_debug_log, " (%4"UVXf") W%4X\n", (UV)trie->trans[ state ].check,
1239             trie->states[ TRIE_NODENUM( state ) ].wordnum );
1240         }
1241     }
1242 }
1243
1244 #endif
1245
1246
1247 /* make_trie(startbranch,first,last,tail,word_count,flags,depth)
1248   startbranch: the first branch in the whole branch sequence
1249   first      : start branch of sequence of branch-exact nodes.
1250                May be the same as startbranch
1251   last       : Thing following the last branch.
1252                May be the same as tail.
1253   tail       : item following the branch sequence
1254   count      : words in the sequence
1255   flags      : currently the OP() type we will be building one of /EXACT(|F|Fl)/
1256   depth      : indent depth
1257
1258 Inplace optimizes a sequence of 2 or more Branch-Exact nodes into a TRIE node.
1259
1260 A trie is an N'ary tree where the branches are determined by digital
1261 decomposition of the key. IE, at the root node you look up the 1st character and
1262 follow that branch repeat until you find the end of the branches. Nodes can be
1263 marked as "accepting" meaning they represent a complete word. Eg:
1264
1265   /he|she|his|hers/
1266
1267 would convert into the following structure. Numbers represent states, letters
1268 following numbers represent valid transitions on the letter from that state, if
1269 the number is in square brackets it represents an accepting state, otherwise it
1270 will be in parenthesis.
1271
1272       +-h->+-e->[3]-+-r->(8)-+-s->[9]
1273       |    |
1274       |   (2)
1275       |    |
1276      (1)   +-i->(6)-+-s->[7]
1277       |
1278       +-s->(3)-+-h->(4)-+-e->[5]
1279
1280       Accept Word Mapping: 3=>1 (he),5=>2 (she), 7=>3 (his), 9=>4 (hers)
1281
1282 This shows that when matching against the string 'hers' we will begin at state 1
1283 read 'h' and move to state 2, read 'e' and move to state 3 which is accepting,
1284 then read 'r' and go to state 8 followed by 's' which takes us to state 9 which
1285 is also accepting. Thus we know that we can match both 'he' and 'hers' with a
1286 single traverse. We store a mapping from accepting to state to which word was
1287 matched, and then when we have multiple possibilities we try to complete the
1288 rest of the regex in the order in which they occured in the alternation.
1289
1290 The only prior NFA like behaviour that would be changed by the TRIE support is
1291 the silent ignoring of duplicate alternations which are of the form:
1292
1293  / (DUPE|DUPE) X? (?{ ... }) Y /x
1294
1295 Thus EVAL blocks following a trie may be called a different number of times with
1296 and without the optimisation. With the optimisations dupes will be silently
1297 ignored. This inconsistent behaviour of EVAL type nodes is well established as
1298 the following demonstrates:
1299
1300  'words'=~/(word|word|word)(?{ print $1 })[xyz]/
1301
1302 which prints out 'word' three times, but
1303
1304  'words'=~/(word|word|word)(?{ print $1 })S/
1305
1306 which doesnt print it out at all. This is due to other optimisations kicking in.
1307
1308 Example of what happens on a structural level:
1309
1310 The regexp /(ac|ad|ab)+/ will produce the following debug output:
1311
1312    1: CURLYM[1] {1,32767}(18)
1313    5:   BRANCH(8)
1314    6:     EXACT <ac>(16)
1315    8:   BRANCH(11)
1316    9:     EXACT <ad>(16)
1317   11:   BRANCH(14)
1318   12:     EXACT <ab>(16)
1319   16:   SUCCEED(0)
1320   17:   NOTHING(18)
1321   18: END(0)
1322
1323 This would be optimizable with startbranch=5, first=5, last=16, tail=16
1324 and should turn into:
1325
1326    1: CURLYM[1] {1,32767}(18)
1327    5:   TRIE(16)
1328         [Words:3 Chars Stored:6 Unique Chars:4 States:5 NCP:1]
1329           <ac>
1330           <ad>
1331           <ab>
1332   16:   SUCCEED(0)
1333   17:   NOTHING(18)
1334   18: END(0)
1335
1336 Cases where tail != last would be like /(?foo|bar)baz/:
1337
1338    1: BRANCH(4)
1339    2:   EXACT <foo>(8)
1340    4: BRANCH(7)
1341    5:   EXACT <bar>(8)
1342    7: TAIL(8)
1343    8: EXACT <baz>(10)
1344   10: END(0)
1345
1346 which would be optimizable with startbranch=1, first=1, last=7, tail=8
1347 and would end up looking like:
1348
1349     1: TRIE(8)
1350       [Words:2 Chars Stored:6 Unique Chars:5 States:7 NCP:1]
1351         <foo>
1352         <bar>
1353    7: TAIL(8)
1354    8: EXACT <baz>(10)
1355   10: END(0)
1356
1357     d = uvuni_to_utf8_flags(d, uv, 0);
1358
1359 is the recommended Unicode-aware way of saying
1360
1361     *(d++) = uv;
1362 */
1363
1364 #define TRIE_STORE_REVCHAR                                                 \
1365     STMT_START {                                                           \
1366         if (UTF) {                                                         \
1367             SV *zlopp = newSV(2);                                          \
1368             unsigned char *flrbbbbb = (unsigned char *) SvPVX(zlopp);      \
1369             unsigned const char *const kapow = uvuni_to_utf8(flrbbbbb, uvc & 0xFF); \
1370             SvCUR_set(zlopp, kapow - flrbbbbb);                            \
1371             SvPOK_on(zlopp);                                               \
1372             SvUTF8_on(zlopp);                                              \
1373             av_push(revcharmap, zlopp);                                    \
1374         } else {                                                           \
1375             char ooooff = (char)uvc;                                               \
1376             av_push(revcharmap, newSVpvn(&ooooff, 1));                     \
1377         }                                                                  \
1378         } STMT_END
1379
1380 #define TRIE_READ_CHAR STMT_START {                                           \
1381     wordlen++;                                                                \
1382     if ( UTF ) {                                                              \
1383         if ( folder ) {                                                       \
1384             if ( foldlen > 0 ) {                                              \
1385                uvc = utf8n_to_uvuni( scan, UTF8_MAXLEN, &len, uniflags );     \
1386                foldlen -= len;                                                \
1387                scan += len;                                                   \
1388                len = 0;                                                       \
1389             } else {                                                          \
1390                 len = UTF8SKIP(uc);\
1391                 uvc = to_utf8_fold( uc, foldbuf, &foldlen);                   \
1392                 foldlen -= UNISKIP( uvc );                                    \
1393                 scan = foldbuf + UNISKIP( uvc );                              \
1394             }                                                                 \
1395         } else {                                                              \
1396             uvc = utf8n_to_uvuni( (const U8*)uc, UTF8_MAXLEN, &len, uniflags);\
1397         }                                                                     \
1398     } else {                                                                  \
1399         uvc = (U32)*uc;                                                       \
1400         len = 1;                                                              \
1401     }                                                                         \
1402 } STMT_END
1403
1404
1405
1406 #define TRIE_LIST_PUSH(state,fid,ns) STMT_START {               \
1407     if ( TRIE_LIST_CUR( state ) >=TRIE_LIST_LEN( state ) ) {    \
1408         U32 ging = TRIE_LIST_LEN( state ) *= 2;                 \
1409         Renew( trie->states[ state ].trans.list, ging, reg_trie_trans_le ); \
1410     }                                                           \
1411     TRIE_LIST_ITEM( state, TRIE_LIST_CUR( state ) ).forid = fid;     \
1412     TRIE_LIST_ITEM( state, TRIE_LIST_CUR( state ) ).newstate = ns;   \
1413     TRIE_LIST_CUR( state )++;                                   \
1414 } STMT_END
1415
1416 #define TRIE_LIST_NEW(state) STMT_START {                       \
1417     Newxz( trie->states[ state ].trans.list,               \
1418         4, reg_trie_trans_le );                                 \
1419      TRIE_LIST_CUR( state ) = 1;                                \
1420      TRIE_LIST_LEN( state ) = 4;                                \
1421 } STMT_END
1422
1423 #define TRIE_HANDLE_WORD(state) STMT_START {                    \
1424     U16 dupe= trie->states[ state ].wordnum;                    \
1425     regnode * const noper_next = regnext( noper );              \
1426                                                                 \
1427     DEBUG_r({                                                   \
1428         /* store the word for dumping */                        \
1429         SV* tmp;                                                \
1430         if (OP(noper) != NOTHING)                               \
1431             tmp = newSVpvn_utf8(STRING(noper), STR_LEN(noper), UTF);    \
1432         else                                                    \
1433             tmp = newSVpvn_utf8( "", 0, UTF );                  \
1434         av_push( trie_words, tmp );                             \
1435     });                                                         \
1436                                                                 \
1437     curword++;                                                  \
1438     trie->wordinfo[curword].prev   = 0;                         \
1439     trie->wordinfo[curword].len    = wordlen;                   \
1440     trie->wordinfo[curword].accept = state;                     \
1441                                                                 \
1442     if ( noper_next < tail ) {                                  \
1443         if (!trie->jump)                                        \
1444             trie->jump = (U16 *) PerlMemShared_calloc( word_count + 1, sizeof(U16) ); \
1445         trie->jump[curword] = (U16)(noper_next - convert);      \
1446         if (!jumper)                                            \
1447             jumper = noper_next;                                \
1448         if (!nextbranch)                                        \
1449             nextbranch= regnext(cur);                           \
1450     }                                                           \
1451                                                                 \
1452     if ( dupe ) {                                               \
1453         /* It's a dupe. Pre-insert into the wordinfo[].prev   */\
1454         /* chain, so that when the bits of chain are later    */\
1455         /* linked together, the dups appear in the chain      */\
1456         trie->wordinfo[curword].prev = trie->wordinfo[dupe].prev; \
1457         trie->wordinfo[dupe].prev = curword;                    \
1458     } else {                                                    \
1459         /* we haven't inserted this word yet.                */ \
1460         trie->states[ state ].wordnum = curword;                \
1461     }                                                           \
1462 } STMT_END
1463
1464
1465 #define TRIE_TRANS_STATE(state,base,ucharcount,charid,special)          \
1466      ( ( base + charid >=  ucharcount                                   \
1467          && base + charid < ubound                                      \
1468          && state == trie->trans[ base - ucharcount + charid ].check    \
1469          && trie->trans[ base - ucharcount + charid ].next )            \
1470            ? trie->trans[ base - ucharcount + charid ].next             \
1471            : ( state==1 ? special : 0 )                                 \
1472       )
1473
1474 #define MADE_TRIE       1
1475 #define MADE_JUMP_TRIE  2
1476 #define MADE_EXACT_TRIE 4
1477
1478 STATIC I32
1479 S_make_trie(pTHX_ RExC_state_t *pRExC_state, regnode *startbranch, regnode *first, regnode *last, regnode *tail, U32 word_count, U32 flags, U32 depth)
1480 {
1481     dVAR;
1482     /* first pass, loop through and scan words */
1483     reg_trie_data *trie;
1484     HV *widecharmap = NULL;
1485     AV *revcharmap = newAV();
1486     regnode *cur;
1487     const U32 uniflags = UTF8_ALLOW_DEFAULT;
1488     STRLEN len = 0;
1489     UV uvc = 0;
1490     U16 curword = 0;
1491     U32 next_alloc = 0;
1492     regnode *jumper = NULL;
1493     regnode *nextbranch = NULL;
1494     regnode *convert = NULL;
1495     U32 *prev_states; /* temp array mapping each state to previous one */
1496     /* we just use folder as a flag in utf8 */
1497     const U8 * folder = NULL;
1498
1499 #ifdef DEBUGGING
1500     const U32 data_slot = add_data( pRExC_state, 4, "tuuu" );
1501     AV *trie_words = NULL;
1502     /* along with revcharmap, this only used during construction but both are
1503      * useful during debugging so we store them in the struct when debugging.
1504      */
1505 #else
1506     const U32 data_slot = add_data( pRExC_state, 2, "tu" );
1507     STRLEN trie_charcount=0;
1508 #endif
1509     SV *re_trie_maxbuff;
1510     GET_RE_DEBUG_FLAGS_DECL;
1511
1512     PERL_ARGS_ASSERT_MAKE_TRIE;
1513 #ifndef DEBUGGING
1514     PERL_UNUSED_ARG(depth);
1515 #endif
1516
1517     switch (flags) {
1518         case EXACTFA:
1519         case EXACTFU: folder = PL_fold_latin1; break;
1520         case EXACTF:  folder = PL_fold; break;
1521         case EXACTFL: folder = PL_fold_locale; break;
1522     }
1523
1524     trie = (reg_trie_data *) PerlMemShared_calloc( 1, sizeof(reg_trie_data) );
1525     trie->refcount = 1;
1526     trie->startstate = 1;
1527     trie->wordcount = word_count;
1528     RExC_rxi->data->data[ data_slot ] = (void*)trie;
1529     trie->charmap = (U16 *) PerlMemShared_calloc( 256, sizeof(U16) );
1530     if (!(UTF && folder))
1531         trie->bitmap = (char *) PerlMemShared_calloc( ANYOF_BITMAP_SIZE, 1 );
1532     trie->wordinfo = (reg_trie_wordinfo *) PerlMemShared_calloc(
1533                        trie->wordcount+1, sizeof(reg_trie_wordinfo));
1534
1535     DEBUG_r({
1536         trie_words = newAV();
1537     });
1538
1539     re_trie_maxbuff = get_sv(RE_TRIE_MAXBUF_NAME, 1);
1540     if (!SvIOK(re_trie_maxbuff)) {
1541         sv_setiv(re_trie_maxbuff, RE_TRIE_MAXBUF_INIT);
1542     }
1543     DEBUG_OPTIMISE_r({
1544                 PerlIO_printf( Perl_debug_log,
1545                   "%*smake_trie start==%d, first==%d, last==%d, tail==%d depth=%d\n",
1546                   (int)depth * 2 + 2, "", 
1547                   REG_NODE_NUM(startbranch),REG_NODE_NUM(first), 
1548                   REG_NODE_NUM(last), REG_NODE_NUM(tail),
1549                   (int)depth);
1550     });
1551    
1552    /* Find the node we are going to overwrite */
1553     if ( first == startbranch && OP( last ) != BRANCH ) {
1554         /* whole branch chain */
1555         convert = first;
1556     } else {
1557         /* branch sub-chain */
1558         convert = NEXTOPER( first );
1559     }
1560         
1561     /*  -- First loop and Setup --
1562
1563        We first traverse the branches and scan each word to determine if it
1564        contains widechars, and how many unique chars there are, this is
1565        important as we have to build a table with at least as many columns as we
1566        have unique chars.
1567
1568        We use an array of integers to represent the character codes 0..255
1569        (trie->charmap) and we use a an HV* to store Unicode characters. We use the
1570        native representation of the character value as the key and IV's for the
1571        coded index.
1572
1573        *TODO* If we keep track of how many times each character is used we can
1574        remap the columns so that the table compression later on is more
1575        efficient in terms of memory by ensuring the most common value is in the
1576        middle and the least common are on the outside.  IMO this would be better
1577        than a most to least common mapping as theres a decent chance the most
1578        common letter will share a node with the least common, meaning the node
1579        will not be compressible. With a middle is most common approach the worst
1580        case is when we have the least common nodes twice.
1581
1582      */
1583
1584     for ( cur = first ; cur < last ; cur = regnext( cur ) ) {
1585         regnode * const noper = NEXTOPER( cur );
1586         const U8 *uc = (U8*)STRING( noper );
1587         const U8 * const e  = uc + STR_LEN( noper );
1588         STRLEN foldlen = 0;
1589         U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
1590         const U8 *scan = (U8*)NULL;
1591         U32 wordlen      = 0;         /* required init */
1592         STRLEN chars = 0;
1593         bool set_bit = trie->bitmap ? 1 : 0; /*store the first char in the bitmap?*/
1594
1595         if (OP(noper) == NOTHING) {
1596             trie->minlen= 0;
1597             continue;
1598         }
1599         if ( set_bit ) /* bitmap only alloced when !(UTF&&Folding) */
1600             TRIE_BITMAP_SET(trie,*uc); /* store the raw first byte
1601                                           regardless of encoding */
1602
1603         for ( ; uc < e ; uc += len ) {
1604             TRIE_CHARCOUNT(trie)++;
1605             TRIE_READ_CHAR;
1606             chars++;
1607             if ( uvc < 256 ) {
1608                 if ( !trie->charmap[ uvc ] ) {
1609                     trie->charmap[ uvc ]=( ++trie->uniquecharcount );
1610                     if ( folder )
1611                         trie->charmap[ folder[ uvc ] ] = trie->charmap[ uvc ];
1612                     TRIE_STORE_REVCHAR;
1613                 }
1614                 if ( set_bit ) {
1615                     /* store the codepoint in the bitmap, and its folded
1616                      * equivalent. */
1617                     TRIE_BITMAP_SET(trie,uvc);
1618
1619                     /* store the folded codepoint */
1620                     if ( folder ) TRIE_BITMAP_SET(trie,folder[ uvc ]);
1621
1622                     if ( !UTF ) {
1623                         /* store first byte of utf8 representation of
1624                            variant codepoints */
1625                         if (! UNI_IS_INVARIANT(uvc)) {
1626                             TRIE_BITMAP_SET(trie, UTF8_TWO_BYTE_HI(uvc));
1627                         }
1628                     }
1629                     set_bit = 0; /* We've done our bit :-) */
1630                 }
1631             } else {
1632                 SV** svpp;
1633                 if ( !widecharmap )
1634                     widecharmap = newHV();
1635
1636                 svpp = hv_fetch( widecharmap, (char*)&uvc, sizeof( UV ), 1 );
1637
1638                 if ( !svpp )
1639                     Perl_croak( aTHX_ "error creating/fetching widecharmap entry for 0x%"UVXf, uvc );
1640
1641                 if ( !SvTRUE( *svpp ) ) {
1642                     sv_setiv( *svpp, ++trie->uniquecharcount );
1643                     TRIE_STORE_REVCHAR;
1644                 }
1645             }
1646         }
1647         if( cur == first ) {
1648             trie->minlen=chars;
1649             trie->maxlen=chars;
1650         } else if (chars < trie->minlen) {
1651             trie->minlen=chars;
1652         } else if (chars > trie->maxlen) {
1653             trie->maxlen=chars;
1654         }
1655
1656     } /* end first pass */
1657     DEBUG_TRIE_COMPILE_r(
1658         PerlIO_printf( Perl_debug_log, "%*sTRIE(%s): W:%d C:%d Uq:%d Min:%d Max:%d\n",
1659                 (int)depth * 2 + 2,"",
1660                 ( widecharmap ? "UTF8" : "NATIVE" ), (int)word_count,
1661                 (int)TRIE_CHARCOUNT(trie), trie->uniquecharcount,
1662                 (int)trie->minlen, (int)trie->maxlen )
1663     );
1664
1665     /*
1666         We now know what we are dealing with in terms of unique chars and
1667         string sizes so we can calculate how much memory a naive
1668         representation using a flat table  will take. If it's over a reasonable
1669         limit (as specified by ${^RE_TRIE_MAXBUF}) we use a more memory
1670         conservative but potentially much slower representation using an array
1671         of lists.
1672
1673         At the end we convert both representations into the same compressed
1674         form that will be used in regexec.c for matching with. The latter
1675         is a form that cannot be used to construct with but has memory
1676         properties similar to the list form and access properties similar
1677         to the table form making it both suitable for fast searches and
1678         small enough that its feasable to store for the duration of a program.
1679
1680         See the comment in the code where the compressed table is produced
1681         inplace from the flat tabe representation for an explanation of how
1682         the compression works.
1683
1684     */
1685
1686
1687     Newx(prev_states, TRIE_CHARCOUNT(trie) + 2, U32);
1688     prev_states[1] = 0;
1689
1690     if ( (IV)( ( TRIE_CHARCOUNT(trie) + 1 ) * trie->uniquecharcount + 1) > SvIV(re_trie_maxbuff) ) {
1691         /*
1692             Second Pass -- Array Of Lists Representation
1693
1694             Each state will be represented by a list of charid:state records
1695             (reg_trie_trans_le) the first such element holds the CUR and LEN
1696             points of the allocated array. (See defines above).
1697
1698             We build the initial structure using the lists, and then convert
1699             it into the compressed table form which allows faster lookups
1700             (but cant be modified once converted).
1701         */
1702
1703         STRLEN transcount = 1;
1704
1705         DEBUG_TRIE_COMPILE_MORE_r( PerlIO_printf( Perl_debug_log, 
1706             "%*sCompiling trie using list compiler\n",
1707             (int)depth * 2 + 2, ""));
1708
1709         trie->states = (reg_trie_state *)
1710             PerlMemShared_calloc( TRIE_CHARCOUNT(trie) + 2,
1711                                   sizeof(reg_trie_state) );
1712         TRIE_LIST_NEW(1);
1713         next_alloc = 2;
1714
1715         for ( cur = first ; cur < last ; cur = regnext( cur ) ) {
1716
1717             regnode * const noper = NEXTOPER( cur );
1718             U8 *uc           = (U8*)STRING( noper );
1719             const U8 * const e = uc + STR_LEN( noper );
1720             U32 state        = 1;         /* required init */
1721             U16 charid       = 0;         /* sanity init */
1722             U8 *scan         = (U8*)NULL; /* sanity init */
1723             STRLEN foldlen   = 0;         /* required init */
1724             U32 wordlen      = 0;         /* required init */
1725             U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
1726
1727             if (OP(noper) != NOTHING) {
1728                 for ( ; uc < e ; uc += len ) {
1729
1730                     TRIE_READ_CHAR;
1731
1732                     if ( uvc < 256 ) {
1733                         charid = trie->charmap[ uvc ];
1734                     } else {
1735                         SV** const svpp = hv_fetch( widecharmap, (char*)&uvc, sizeof( UV ), 0);
1736                         if ( !svpp ) {
1737                             charid = 0;
1738                         } else {
1739                             charid=(U16)SvIV( *svpp );
1740                         }
1741                     }
1742                     /* charid is now 0 if we dont know the char read, or nonzero if we do */
1743                     if ( charid ) {
1744
1745                         U16 check;
1746                         U32 newstate = 0;
1747
1748                         charid--;
1749                         if ( !trie->states[ state ].trans.list ) {
1750                             TRIE_LIST_NEW( state );
1751                         }
1752                         for ( check = 1; check <= TRIE_LIST_USED( state ); check++ ) {
1753                             if ( TRIE_LIST_ITEM( state, check ).forid == charid ) {
1754                                 newstate = TRIE_LIST_ITEM( state, check ).newstate;
1755                                 break;
1756                             }
1757                         }
1758                         if ( ! newstate ) {
1759                             newstate = next_alloc++;
1760                             prev_states[newstate] = state;
1761                             TRIE_LIST_PUSH( state, charid, newstate );
1762                             transcount++;
1763                         }
1764                         state = newstate;
1765                     } else {
1766                         Perl_croak( aTHX_ "panic! In trie construction, no char mapping for %"IVdf, uvc );
1767                     }
1768                 }
1769             }
1770             TRIE_HANDLE_WORD(state);
1771
1772         } /* end second pass */
1773
1774         /* next alloc is the NEXT state to be allocated */
1775         trie->statecount = next_alloc; 
1776         trie->states = (reg_trie_state *)
1777             PerlMemShared_realloc( trie->states,
1778                                    next_alloc
1779                                    * sizeof(reg_trie_state) );
1780
1781         /* and now dump it out before we compress it */
1782         DEBUG_TRIE_COMPILE_MORE_r(dump_trie_interim_list(trie, widecharmap,
1783                                                          revcharmap, next_alloc,
1784                                                          depth+1)
1785         );
1786
1787         trie->trans = (reg_trie_trans *)
1788             PerlMemShared_calloc( transcount, sizeof(reg_trie_trans) );
1789         {
1790             U32 state;
1791             U32 tp = 0;
1792             U32 zp = 0;
1793
1794
1795             for( state=1 ; state < next_alloc ; state ++ ) {
1796                 U32 base=0;
1797
1798                 /*
1799                 DEBUG_TRIE_COMPILE_MORE_r(
1800                     PerlIO_printf( Perl_debug_log, "tp: %d zp: %d ",tp,zp)
1801                 );
1802                 */
1803
1804                 if (trie->states[state].trans.list) {
1805                     U16 minid=TRIE_LIST_ITEM( state, 1).forid;
1806                     U16 maxid=minid;
1807                     U16 idx;
1808
1809                     for( idx = 2 ; idx <= TRIE_LIST_USED( state ) ; idx++ ) {
1810                         const U16 forid = TRIE_LIST_ITEM( state, idx).forid;
1811                         if ( forid < minid ) {
1812                             minid=forid;
1813                         } else if ( forid > maxid ) {
1814                             maxid=forid;
1815                         }
1816                     }
1817                     if ( transcount < tp + maxid - minid + 1) {
1818                         transcount *= 2;
1819                         trie->trans = (reg_trie_trans *)
1820                             PerlMemShared_realloc( trie->trans,
1821                                                      transcount
1822                                                      * sizeof(reg_trie_trans) );
1823                         Zero( trie->trans + (transcount / 2), transcount / 2 , reg_trie_trans );
1824                     }
1825                     base = trie->uniquecharcount + tp - minid;
1826                     if ( maxid == minid ) {
1827                         U32 set = 0;
1828                         for ( ; zp < tp ; zp++ ) {
1829                             if ( ! trie->trans[ zp ].next ) {
1830                                 base = trie->uniquecharcount + zp - minid;
1831                                 trie->trans[ zp ].next = TRIE_LIST_ITEM( state, 1).newstate;
1832                                 trie->trans[ zp ].check = state;
1833                                 set = 1;
1834                                 break;
1835                             }
1836                         }
1837                         if ( !set ) {
1838                             trie->trans[ tp ].next = TRIE_LIST_ITEM( state, 1).newstate;
1839                             trie->trans[ tp ].check = state;
1840                             tp++;
1841                             zp = tp;
1842                         }
1843                     } else {
1844                         for ( idx=1; idx <= TRIE_LIST_USED( state ) ; idx++ ) {
1845                             const U32 tid = base -  trie->uniquecharcount + TRIE_LIST_ITEM( state, idx ).forid;
1846                             trie->trans[ tid ].next = TRIE_LIST_ITEM( state, idx ).newstate;
1847                             trie->trans[ tid ].check = state;
1848                         }
1849                         tp += ( maxid - minid + 1 );
1850                     }
1851                     Safefree(trie->states[ state ].trans.list);
1852                 }
1853                 /*
1854                 DEBUG_TRIE_COMPILE_MORE_r(
1855                     PerlIO_printf( Perl_debug_log, " base: %d\n",base);
1856                 );
1857                 */
1858                 trie->states[ state ].trans.base=base;
1859             }
1860             trie->lasttrans = tp + 1;
1861         }
1862     } else {
1863         /*
1864            Second Pass -- Flat Table Representation.
1865
1866            we dont use the 0 slot of either trans[] or states[] so we add 1 to each.
1867            We know that we will need Charcount+1 trans at most to store the data
1868            (one row per char at worst case) So we preallocate both structures
1869            assuming worst case.
1870
1871            We then construct the trie using only the .next slots of the entry
1872            structs.
1873
1874            We use the .check field of the first entry of the node temporarily to
1875            make compression both faster and easier by keeping track of how many non
1876            zero fields are in the node.
1877
1878            Since trans are numbered from 1 any 0 pointer in the table is a FAIL
1879            transition.
1880
1881            There are two terms at use here: state as a TRIE_NODEIDX() which is a
1882            number representing the first entry of the node, and state as a
1883            TRIE_NODENUM() which is the trans number. state 1 is TRIE_NODEIDX(1) and
1884            TRIE_NODENUM(1), state 2 is TRIE_NODEIDX(2) and TRIE_NODENUM(3) if there
1885            are 2 entrys per node. eg:
1886
1887              A B       A B
1888           1. 2 4    1. 3 7
1889           2. 0 3    3. 0 5
1890           3. 0 0    5. 0 0
1891           4. 0 0    7. 0 0
1892
1893            The table is internally in the right hand, idx form. However as we also
1894            have to deal with the states array which is indexed by nodenum we have to
1895            use TRIE_NODENUM() to convert.
1896
1897         */
1898         DEBUG_TRIE_COMPILE_MORE_r( PerlIO_printf( Perl_debug_log, 
1899             "%*sCompiling trie using table compiler\n",
1900             (int)depth * 2 + 2, ""));
1901
1902         trie->trans = (reg_trie_trans *)
1903             PerlMemShared_calloc( ( TRIE_CHARCOUNT(trie) + 1 )
1904                                   * trie->uniquecharcount + 1,
1905                                   sizeof(reg_trie_trans) );
1906         trie->states = (reg_trie_state *)
1907             PerlMemShared_calloc( TRIE_CHARCOUNT(trie) + 2,
1908                                   sizeof(reg_trie_state) );
1909         next_alloc = trie->uniquecharcount + 1;
1910
1911
1912         for ( cur = first ; cur < last ; cur = regnext( cur ) ) {
1913
1914             regnode * const noper   = NEXTOPER( cur );
1915             const U8 *uc     = (U8*)STRING( noper );
1916             const U8 * const e = uc + STR_LEN( noper );
1917
1918             U32 state        = 1;         /* required init */
1919
1920             U16 charid       = 0;         /* sanity init */
1921             U32 accept_state = 0;         /* sanity init */
1922             U8 *scan         = (U8*)NULL; /* sanity init */
1923
1924             STRLEN foldlen   = 0;         /* required init */
1925             U32 wordlen      = 0;         /* required init */
1926             U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
1927
1928             if ( OP(noper) != NOTHING ) {
1929                 for ( ; uc < e ; uc += len ) {
1930
1931                     TRIE_READ_CHAR;
1932
1933                     if ( uvc < 256 ) {
1934                         charid = trie->charmap[ uvc ];
1935                     } else {
1936                         SV* const * const svpp = hv_fetch( widecharmap, (char*)&uvc, sizeof( UV ), 0);
1937                         charid = svpp ? (U16)SvIV(*svpp) : 0;
1938                     }
1939                     if ( charid ) {
1940                         charid--;
1941                         if ( !trie->trans[ state + charid ].next ) {
1942                             trie->trans[ state + charid ].next = next_alloc;
1943                             trie->trans[ state ].check++;
1944                             prev_states[TRIE_NODENUM(next_alloc)]
1945                                     = TRIE_NODENUM(state);
1946                             next_alloc += trie->uniquecharcount;
1947                         }
1948                         state = trie->trans[ state + charid ].next;
1949                     } else {
1950                         Perl_croak( aTHX_ "panic! In trie construction, no char mapping for %"IVdf, uvc );
1951                     }
1952                     /* charid is now 0 if we dont know the char read, or nonzero if we do */
1953                 }
1954             }
1955             accept_state = TRIE_NODENUM( state );
1956             TRIE_HANDLE_WORD(accept_state);
1957
1958         } /* end second pass */
1959
1960         /* and now dump it out before we compress it */
1961         DEBUG_TRIE_COMPILE_MORE_r(dump_trie_interim_table(trie, widecharmap,
1962                                                           revcharmap,
1963                                                           next_alloc, depth+1));
1964
1965         {
1966         /*
1967            * Inplace compress the table.*
1968
1969            For sparse data sets the table constructed by the trie algorithm will
1970            be mostly 0/FAIL transitions or to put it another way mostly empty.
1971            (Note that leaf nodes will not contain any transitions.)
1972
1973            This algorithm compresses the tables by eliminating most such
1974            transitions, at the cost of a modest bit of extra work during lookup:
1975
1976            - Each states[] entry contains a .base field which indicates the
1977            index in the state[] array wheres its transition data is stored.
1978
1979            - If .base is 0 there are no valid transitions from that node.
1980
1981            - If .base is nonzero then charid is added to it to find an entry in
1982            the trans array.
1983
1984            -If trans[states[state].base+charid].check!=state then the
1985            transition is taken to be a 0/Fail transition. Thus if there are fail
1986            transitions at the front of the node then the .base offset will point
1987            somewhere inside the previous nodes data (or maybe even into a node
1988            even earlier), but the .check field determines if the transition is
1989            valid.
1990
1991            XXX - wrong maybe?
1992            The following process inplace converts the table to the compressed
1993            table: We first do not compress the root node 1,and mark all its
1994            .check pointers as 1 and set its .base pointer as 1 as well. This
1995            allows us to do a DFA construction from the compressed table later,
1996            and ensures that any .base pointers we calculate later are greater
1997            than 0.
1998
1999            - We set 'pos' to indicate the first entry of the second node.
2000
2001            - We then iterate over the columns of the node, finding the first and
2002            last used entry at l and m. We then copy l..m into pos..(pos+m-l),
2003            and set the .check pointers accordingly, and advance pos
2004            appropriately and repreat for the next node. Note that when we copy
2005            the next pointers we have to convert them from the original
2006            NODEIDX form to NODENUM form as the former is not valid post
2007            compression.
2008
2009            - If a node has no transitions used we mark its base as 0 and do not
2010            advance the pos pointer.
2011
2012            - If a node only has one transition we use a second pointer into the
2013            structure to fill in allocated fail transitions from other states.
2014            This pointer is independent of the main pointer and scans forward
2015            looking for null transitions that are allocated to a state. When it
2016            finds one it writes the single transition into the "hole".  If the
2017            pointer doesnt find one the single transition is appended as normal.
2018
2019            - Once compressed we can Renew/realloc the structures to release the
2020            excess space.
2021
2022            See "Table-Compression Methods" in sec 3.9 of the Red Dragon,
2023            specifically Fig 3.47 and the associated pseudocode.
2024
2025            demq
2026         */
2027         const U32 laststate = TRIE_NODENUM( next_alloc );
2028         U32 state, charid;
2029         U32 pos = 0, zp=0;
2030         trie->statecount = laststate;
2031
2032         for ( state = 1 ; state < laststate ; state++ ) {
2033             U8 flag = 0;
2034             const U32 stateidx = TRIE_NODEIDX( state );
2035             const U32 o_used = trie->trans[ stateidx ].check;
2036             U32 used = trie->trans[ stateidx ].check;
2037             trie->trans[ stateidx ].check = 0;
2038
2039             for ( charid = 0 ; used && charid < trie->uniquecharcount ; charid++ ) {
2040                 if ( flag || trie->trans[ stateidx + charid ].next ) {
2041                     if ( trie->trans[ stateidx + charid ].next ) {
2042                         if (o_used == 1) {
2043                             for ( ; zp < pos ; zp++ ) {
2044                                 if ( ! trie->trans[ zp ].next ) {
2045                                     break;
2046                                 }
2047                             }
2048                             trie->states[ state ].trans.base = zp + trie->uniquecharcount - charid ;
2049                             trie->trans[ zp ].next = SAFE_TRIE_NODENUM( trie->trans[ stateidx + charid ].next );
2050                             trie->trans[ zp ].check = state;
2051                             if ( ++zp > pos ) pos = zp;
2052                             break;
2053                         }
2054                         used--;
2055                     }
2056                     if ( !flag ) {
2057                         flag = 1;
2058                         trie->states[ state ].trans.base = pos + trie->uniquecharcount - charid ;
2059                     }
2060                     trie->trans[ pos ].next = SAFE_TRIE_NODENUM( trie->trans[ stateidx + charid ].next );
2061                     trie->trans[ pos ].check = state;
2062                     pos++;
2063                 }
2064             }
2065         }
2066         trie->lasttrans = pos + 1;
2067         trie->states = (reg_trie_state *)
2068             PerlMemShared_realloc( trie->states, laststate
2069                                    * sizeof(reg_trie_state) );
2070         DEBUG_TRIE_COMPILE_MORE_r(
2071                 PerlIO_printf( Perl_debug_log,
2072                     "%*sAlloc: %d Orig: %"IVdf" elements, Final:%"IVdf". Savings of %%%5.2f\n",
2073                     (int)depth * 2 + 2,"",
2074                     (int)( ( TRIE_CHARCOUNT(trie) + 1 ) * trie->uniquecharcount + 1 ),
2075                     (IV)next_alloc,
2076                     (IV)pos,
2077                     ( ( next_alloc - pos ) * 100 ) / (double)next_alloc );
2078             );
2079
2080         } /* end table compress */
2081     }
2082     DEBUG_TRIE_COMPILE_MORE_r(
2083             PerlIO_printf(Perl_debug_log, "%*sStatecount:%"UVxf" Lasttrans:%"UVxf"\n",
2084                 (int)depth * 2 + 2, "",
2085                 (UV)trie->statecount,
2086                 (UV)trie->lasttrans)
2087     );
2088     /* resize the trans array to remove unused space */
2089     trie->trans = (reg_trie_trans *)
2090         PerlMemShared_realloc( trie->trans, trie->lasttrans
2091                                * sizeof(reg_trie_trans) );
2092
2093     {   /* Modify the program and insert the new TRIE node */ 
2094         U8 nodetype =(U8)(flags & 0xFF);
2095         char *str=NULL;
2096         
2097 #ifdef DEBUGGING
2098         regnode *optimize = NULL;
2099 #ifdef RE_TRACK_PATTERN_OFFSETS
2100
2101         U32 mjd_offset = 0;
2102         U32 mjd_nodelen = 0;
2103 #endif /* RE_TRACK_PATTERN_OFFSETS */
2104 #endif /* DEBUGGING */
2105         /*
2106            This means we convert either the first branch or the first Exact,
2107            depending on whether the thing following (in 'last') is a branch
2108            or not and whther first is the startbranch (ie is it a sub part of
2109            the alternation or is it the whole thing.)
2110            Assuming its a sub part we convert the EXACT otherwise we convert
2111            the whole branch sequence, including the first.
2112          */
2113         /* Find the node we are going to overwrite */
2114         if ( first != startbranch || OP( last ) == BRANCH ) {
2115             /* branch sub-chain */
2116             NEXT_OFF( first ) = (U16)(last - first);
2117 #ifdef RE_TRACK_PATTERN_OFFSETS
2118             DEBUG_r({
2119                 mjd_offset= Node_Offset((convert));
2120                 mjd_nodelen= Node_Length((convert));
2121             });
2122 #endif
2123             /* whole branch chain */
2124         }
2125 #ifdef RE_TRACK_PATTERN_OFFSETS
2126         else {
2127             DEBUG_r({
2128                 const  regnode *nop = NEXTOPER( convert );
2129                 mjd_offset= Node_Offset((nop));
2130                 mjd_nodelen= Node_Length((nop));
2131             });
2132         }
2133         DEBUG_OPTIMISE_r(
2134             PerlIO_printf(Perl_debug_log, "%*sMJD offset:%"UVuf" MJD length:%"UVuf"\n",
2135                 (int)depth * 2 + 2, "",
2136                 (UV)mjd_offset, (UV)mjd_nodelen)
2137         );
2138 #endif
2139         /* But first we check to see if there is a common prefix we can 
2140            split out as an EXACT and put in front of the TRIE node.  */
2141         trie->startstate= 1;
2142         if ( trie->bitmap && !widecharmap && !trie->jump  ) {
2143             U32 state;
2144             for ( state = 1 ; state < trie->statecount-1 ; state++ ) {
2145                 U32 ofs = 0;
2146                 I32 idx = -1;
2147                 U32 count = 0;
2148                 const U32 base = trie->states[ state ].trans.base;
2149
2150                 if ( trie->states[state].wordnum )
2151                         count = 1;
2152
2153                 for ( ofs = 0 ; ofs < trie->uniquecharcount ; ofs++ ) {
2154                     if ( ( base + ofs >= trie->uniquecharcount ) &&
2155                          ( base + ofs - trie->uniquecharcount < trie->lasttrans ) &&
2156                          trie->trans[ base + ofs - trie->uniquecharcount ].check == state )
2157                     {
2158                         if ( ++count > 1 ) {
2159                             SV **tmp = av_fetch( revcharmap, ofs, 0);
2160                             const U8 *ch = (U8*)SvPV_nolen_const( *tmp );
2161                             if ( state == 1 ) break;
2162                             if ( count == 2 ) {
2163                                 Zero(trie->bitmap, ANYOF_BITMAP_SIZE, char);
2164                                 DEBUG_OPTIMISE_r(
2165                                     PerlIO_printf(Perl_debug_log,
2166                                         "%*sNew Start State=%"UVuf" Class: [",
2167                                         (int)depth * 2 + 2, "",
2168                                         (UV)state));
2169                                 if (idx >= 0) {
2170                                     SV ** const tmp = av_fetch( revcharmap, idx, 0);
2171                                     const U8 * const ch = (U8*)SvPV_nolen_const( *tmp );
2172
2173                                     TRIE_BITMAP_SET(trie,*ch);
2174                                     if ( folder )
2175                                         TRIE_BITMAP_SET(trie, folder[ *ch ]);
2176                                     DEBUG_OPTIMISE_r(
2177                                         PerlIO_printf(Perl_debug_log, "%s", (char*)ch)
2178                                     );
2179                                 }
2180                             }
2181                             TRIE_BITMAP_SET(trie,*ch);
2182                             if ( folder )
2183                                 TRIE_BITMAP_SET(trie,folder[ *ch ]);
2184                             DEBUG_OPTIMISE_r(PerlIO_printf( Perl_debug_log,"%s", ch));
2185                         }
2186                         idx = ofs;
2187                     }
2188                 }
2189                 if ( count == 1 ) {
2190                     SV **tmp = av_fetch( revcharmap, idx, 0);
2191                     STRLEN len;
2192                     char *ch = SvPV( *tmp, len );
2193                     DEBUG_OPTIMISE_r({
2194                         SV *sv=sv_newmortal();
2195                         PerlIO_printf( Perl_debug_log,
2196                             "%*sPrefix State: %"UVuf" Idx:%"UVuf" Char='%s'\n",
2197                             (int)depth * 2 + 2, "",
2198                             (UV)state, (UV)idx, 
2199                             pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), 6, 
2200                                 PL_colors[0], PL_colors[1],
2201                                 (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
2202                                 PERL_PV_ESCAPE_FIRSTCHAR 
2203                             )
2204                         );
2205                     });
2206                     if ( state==1 ) {
2207                         OP( convert ) = nodetype;
2208                         str=STRING(convert);
2209                         STR_LEN(convert)=0;
2210                     }
2211                     STR_LEN(convert) += len;
2212                     while (len--)
2213                         *str++ = *ch++;
2214                 } else {
2215 #ifdef DEBUGGING            
2216                     if (state>1)
2217                         DEBUG_OPTIMISE_r(PerlIO_printf( Perl_debug_log,"]\n"));
2218 #endif
2219                     break;
2220                 }
2221             }
2222             trie->prefixlen = (state-1);
2223             if (str) {
2224                 regnode *n = convert+NODE_SZ_STR(convert);
2225                 NEXT_OFF(convert) = NODE_SZ_STR(convert);
2226                 trie->startstate = state;
2227                 trie->minlen -= (state - 1);
2228                 trie->maxlen -= (state - 1);
2229 #ifdef DEBUGGING
2230                /* At least the UNICOS C compiler choked on this
2231                 * being argument to DEBUG_r(), so let's just have
2232                 * it right here. */
2233                if (
2234 #ifdef PERL_EXT_RE_BUILD
2235                    1
2236 #else
2237                    DEBUG_r_TEST
2238 #endif
2239                    ) {
2240                    regnode *fix = convert;
2241                    U32 word = trie->wordcount;
2242                    mjd_nodelen++;
2243                    Set_Node_Offset_Length(convert, mjd_offset, state - 1);
2244                    while( ++fix < n ) {
2245                        Set_Node_Offset_Length(fix, 0, 0);
2246                    }
2247                    while (word--) {
2248                        SV ** const tmp = av_fetch( trie_words, word, 0 );
2249                        if (tmp) {
2250                            if ( STR_LEN(convert) <= SvCUR(*tmp) )
2251                                sv_chop(*tmp, SvPV_nolen(*tmp) + STR_LEN(convert));
2252                            else
2253                                sv_chop(*tmp, SvPV_nolen(*tmp) + SvCUR(*tmp));
2254                        }
2255                    }
2256                }
2257 #endif
2258                 if (trie->maxlen) {
2259                     convert = n;
2260                 } else {
2261                     NEXT_OFF(convert) = (U16)(tail - convert);
2262                     DEBUG_r(optimize= n);
2263                 }
2264             }
2265         }
2266         if (!jumper) 
2267             jumper = last; 
2268         if ( trie->maxlen ) {
2269             NEXT_OFF( convert ) = (U16)(tail - convert);
2270             ARG_SET( convert, data_slot );
2271             /* Store the offset to the first unabsorbed branch in 
2272                jump[0], which is otherwise unused by the jump logic. 
2273                We use this when dumping a trie and during optimisation. */
2274             if (trie->jump) 
2275                 trie->jump[0] = (U16)(nextbranch - convert);
2276             
2277             /* If the start state is not accepting (meaning there is no empty string/NOTHING)
2278              *   and there is a bitmap
2279              *   and the first "jump target" node we found leaves enough room
2280              * then convert the TRIE node into a TRIEC node, with the bitmap
2281              * embedded inline in the opcode - this is hypothetically faster.
2282              */
2283             if ( !trie->states[trie->startstate].wordnum
2284                  && trie->bitmap
2285                  && ( (char *)jumper - (char *)convert) >= (int)sizeof(struct regnode_charclass) )
2286             {
2287                 OP( convert ) = TRIEC;
2288                 Copy(trie->bitmap, ((struct regnode_charclass *)convert)->bitmap, ANYOF_BITMAP_SIZE, char);
2289                 PerlMemShared_free(trie->bitmap);
2290                 trie->bitmap= NULL;
2291             } else 
2292                 OP( convert ) = TRIE;
2293
2294             /* store the type in the flags */
2295             convert->flags = nodetype;
2296             DEBUG_r({
2297             optimize = convert 
2298                       + NODE_STEP_REGNODE 
2299                       + regarglen[ OP( convert ) ];
2300             });
2301             /* XXX We really should free up the resource in trie now, 
2302                    as we won't use them - (which resources?) dmq */
2303         }
2304         /* needed for dumping*/
2305         DEBUG_r(if (optimize) {
2306             regnode *opt = convert;
2307
2308             while ( ++opt < optimize) {
2309                 Set_Node_Offset_Length(opt,0,0);
2310             }
2311             /* 
2312                 Try to clean up some of the debris left after the 
2313                 optimisation.
2314              */
2315             while( optimize < jumper ) {
2316                 mjd_nodelen += Node_Length((optimize));
2317                 OP( optimize ) = OPTIMIZED;
2318                 Set_Node_Offset_Length(optimize,0,0);
2319                 optimize++;
2320             }
2321             Set_Node_Offset_Length(convert,mjd_offset,mjd_nodelen);
2322         });
2323     } /* end node insert */
2324
2325     /*  Finish populating the prev field of the wordinfo array.  Walk back
2326      *  from each accept state until we find another accept state, and if
2327      *  so, point the first word's .prev field at the second word. If the
2328      *  second already has a .prev field set, stop now. This will be the
2329      *  case either if we've already processed that word's accept state,
2330      *  or that state had multiple words, and the overspill words were
2331      *  already linked up earlier.
2332      */
2333     {
2334         U16 word;
2335         U32 state;
2336         U16 prev;
2337
2338         for (word=1; word <= trie->wordcount; word++) {
2339             prev = 0;
2340             if (trie->wordinfo[word].prev)
2341                 continue;
2342             state = trie->wordinfo[word].accept;
2343             while (state) {
2344                 state = prev_states[state];
2345                 if (!state)
2346                     break;
2347                 prev = trie->states[state].wordnum;
2348                 if (prev)
2349                     break;
2350             }
2351             trie->wordinfo[word].prev = prev;
2352         }
2353         Safefree(prev_states);
2354     }
2355
2356
2357     /* and now dump out the compressed format */
2358     DEBUG_TRIE_COMPILE_r(dump_trie(trie, widecharmap, revcharmap, depth+1));
2359
2360     RExC_rxi->data->data[ data_slot + 1 ] = (void*)widecharmap;
2361 #ifdef DEBUGGING
2362     RExC_rxi->data->data[ data_slot + TRIE_WORDS_OFFSET ] = (void*)trie_words;
2363     RExC_rxi->data->data[ data_slot + 3 ] = (void*)revcharmap;
2364 #else
2365     SvREFCNT_dec(revcharmap);
2366 #endif
2367     return trie->jump 
2368            ? MADE_JUMP_TRIE 
2369            : trie->startstate>1 
2370              ? MADE_EXACT_TRIE 
2371              : MADE_TRIE;
2372 }
2373
2374 STATIC void
2375 S_make_trie_failtable(pTHX_ RExC_state_t *pRExC_state, regnode *source,  regnode *stclass, U32 depth)
2376 {
2377 /* The Trie is constructed and compressed now so we can build a fail array if it's needed
2378
2379    This is basically the Aho-Corasick algorithm. Its from exercise 3.31 and 3.32 in the
2380    "Red Dragon" -- Compilers, principles, techniques, and tools. Aho, Sethi, Ullman 1985/88
2381    ISBN 0-201-10088-6
2382
2383    We find the fail state for each state in the trie, this state is the longest proper
2384    suffix of the current state's 'word' that is also a proper prefix of another word in our
2385    trie. State 1 represents the word '' and is thus the default fail state. This allows
2386    the DFA not to have to restart after its tried and failed a word at a given point, it
2387    simply continues as though it had been matching the other word in the first place.
2388    Consider
2389       'abcdgu'=~/abcdefg|cdgu/
2390    When we get to 'd' we are still matching the first word, we would encounter 'g' which would
2391    fail, which would bring us to the state representing 'd' in the second word where we would
2392    try 'g' and succeed, proceeding to match 'cdgu'.
2393  */
2394  /* add a fail transition */
2395     const U32 trie_offset = ARG(source);
2396     reg_trie_data *trie=(reg_trie_data *)RExC_rxi->data->data[trie_offset];
2397     U32 *q;
2398     const U32 ucharcount = trie->uniquecharcount;
2399     const U32 numstates = trie->statecount;
2400     const U32 ubound = trie->lasttrans + ucharcount;
2401     U32 q_read = 0;
2402     U32 q_write = 0;
2403     U32 charid;
2404     U32 base = trie->states[ 1 ].trans.base;
2405     U32 *fail;
2406     reg_ac_data *aho;
2407     const U32 data_slot = add_data( pRExC_state, 1, "T" );
2408     GET_RE_DEBUG_FLAGS_DECL;
2409
2410     PERL_ARGS_ASSERT_MAKE_TRIE_FAILTABLE;
2411 #ifndef DEBUGGING
2412     PERL_UNUSED_ARG(depth);
2413 #endif
2414
2415
2416     ARG_SET( stclass, data_slot );
2417     aho = (reg_ac_data *) PerlMemShared_calloc( 1, sizeof(reg_ac_data) );
2418     RExC_rxi->data->data[ data_slot ] = (void*)aho;
2419     aho->trie=trie_offset;
2420     aho->states=(reg_trie_state *)PerlMemShared_malloc( numstates * sizeof(reg_trie_state) );
2421     Copy( trie->states, aho->states, numstates, reg_trie_state );
2422     Newxz( q, numstates, U32);
2423     aho->fail = (U32 *) PerlMemShared_calloc( numstates, sizeof(U32) );
2424     aho->refcount = 1;
2425     fail = aho->fail;
2426     /* initialize fail[0..1] to be 1 so that we always have
2427        a valid final fail state */
2428     fail[ 0 ] = fail[ 1 ] = 1;
2429
2430     for ( charid = 0; charid < ucharcount ; charid++ ) {
2431         const U32 newstate = TRIE_TRANS_STATE( 1, base, ucharcount, charid, 0 );
2432         if ( newstate ) {
2433             q[ q_write ] = newstate;
2434             /* set to point at the root */
2435             fail[ q[ q_write++ ] ]=1;
2436         }
2437     }
2438     while ( q_read < q_write) {
2439         const U32 cur = q[ q_read++ % numstates ];
2440         base = trie->states[ cur ].trans.base;
2441
2442         for ( charid = 0 ; charid < ucharcount ; charid++ ) {
2443             const U32 ch_state = TRIE_TRANS_STATE( cur, base, ucharcount, charid, 1 );
2444             if (ch_state) {
2445                 U32 fail_state = cur;
2446                 U32 fail_base;
2447                 do {
2448                     fail_state = fail[ fail_state ];
2449                     fail_base = aho->states[ fail_state ].trans.base;
2450                 } while ( !TRIE_TRANS_STATE( fail_state, fail_base, ucharcount, charid, 1 ) );
2451
2452                 fail_state = TRIE_TRANS_STATE( fail_state, fail_base, ucharcount, charid, 1 );
2453                 fail[ ch_state ] = fail_state;
2454                 if ( !aho->states[ ch_state ].wordnum && aho->states[ fail_state ].wordnum )
2455                 {
2456                         aho->states[ ch_state ].wordnum =  aho->states[ fail_state ].wordnum;
2457                 }
2458                 q[ q_write++ % numstates] = ch_state;
2459             }
2460         }
2461     }
2462     /* restore fail[0..1] to 0 so that we "fall out" of the AC loop
2463        when we fail in state 1, this allows us to use the
2464        charclass scan to find a valid start char. This is based on the principle
2465        that theres a good chance the string being searched contains lots of stuff
2466        that cant be a start char.
2467      */
2468     fail[ 0 ] = fail[ 1 ] = 0;
2469     DEBUG_TRIE_COMPILE_r({
2470         PerlIO_printf(Perl_debug_log,
2471                       "%*sStclass Failtable (%"UVuf" states): 0", 
2472                       (int)(depth * 2), "", (UV)numstates
2473         );
2474         for( q_read=1; q_read<numstates; q_read++ ) {
2475             PerlIO_printf(Perl_debug_log, ", %"UVuf, (UV)fail[q_read]);
2476         }
2477         PerlIO_printf(Perl_debug_log, "\n");
2478     });
2479     Safefree(q);
2480     /*RExC_seen |= REG_SEEN_TRIEDFA;*/
2481 }
2482
2483
2484 /*
2485  * There are strange code-generation bugs caused on sparc64 by gcc-2.95.2.
2486  * These need to be revisited when a newer toolchain becomes available.
2487  */
2488 #if defined(__sparc64__) && defined(__GNUC__)
2489 #   if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 96)
2490 #       undef  SPARC64_GCC_WORKAROUND
2491 #       define SPARC64_GCC_WORKAROUND 1
2492 #   endif
2493 #endif
2494
2495 #define DEBUG_PEEP(str,scan,depth) \
2496     DEBUG_OPTIMISE_r({if (scan){ \
2497        SV * const mysv=sv_newmortal(); \
2498        regnode *Next = regnext(scan); \
2499        regprop(RExC_rx, mysv, scan); \
2500        PerlIO_printf(Perl_debug_log, "%*s" str ">%3d: %s (%d)\n", \
2501        (int)depth*2, "", REG_NODE_NUM(scan), SvPV_nolen_const(mysv),\
2502        Next ? (REG_NODE_NUM(Next)) : 0 ); \
2503    }});
2504
2505
2506
2507
2508
2509 #define JOIN_EXACT(scan,min,flags) \
2510     if (PL_regkind[OP(scan)] == EXACT) \
2511         join_exact(pRExC_state,(scan),(min),(flags),NULL,depth+1)
2512
2513 STATIC U32
2514 S_join_exact(pTHX_ RExC_state_t *pRExC_state, regnode *scan, I32 *min, U32 flags,regnode *val, U32 depth) {
2515     /* Merge several consecutive EXACTish nodes into one. */
2516     regnode *n = regnext(scan);
2517     U32 stringok = 1;
2518     regnode *next = scan + NODE_SZ_STR(scan);
2519     U32 merged = 0;
2520     U32 stopnow = 0;
2521 #ifdef DEBUGGING
2522     regnode *stop = scan;
2523     GET_RE_DEBUG_FLAGS_DECL;
2524 #else
2525     PERL_UNUSED_ARG(depth);
2526 #endif
2527
2528     PERL_ARGS_ASSERT_JOIN_EXACT;
2529 #ifndef EXPERIMENTAL_INPLACESCAN
2530     PERL_UNUSED_ARG(flags);
2531     PERL_UNUSED_ARG(val);
2532 #endif
2533     DEBUG_PEEP("join",scan,depth);
2534     
2535     /* Skip NOTHING, merge EXACT*. */
2536     while (n &&
2537            ( PL_regkind[OP(n)] == NOTHING ||
2538              (stringok && (OP(n) == OP(scan))))
2539            && NEXT_OFF(n)
2540            && NEXT_OFF(scan) + NEXT_OFF(n) < I16_MAX) {
2541         
2542         if (OP(n) == TAIL || n > next)
2543             stringok = 0;
2544         if (PL_regkind[OP(n)] == NOTHING) {
2545             DEBUG_PEEP("skip:",n,depth);
2546             NEXT_OFF(scan) += NEXT_OFF(n);
2547             next = n + NODE_STEP_REGNODE;
2548 #ifdef DEBUGGING
2549             if (stringok)
2550                 stop = n;
2551 #endif
2552             n = regnext(n);
2553         }
2554         else if (stringok) {
2555             const unsigned int oldl = STR_LEN(scan);
2556             regnode * const nnext = regnext(n);
2557             
2558             DEBUG_PEEP("merg",n,depth);
2559             
2560             merged++;
2561             if (oldl + STR_LEN(n) > U8_MAX)
2562                 break;
2563             NEXT_OFF(scan) += NEXT_OFF(n);
2564             STR_LEN(scan) += STR_LEN(n);
2565             next = n + NODE_SZ_STR(n);
2566             /* Now we can overwrite *n : */
2567             Move(STRING(n), STRING(scan) + oldl, STR_LEN(n), char);
2568 #ifdef DEBUGGING
2569             stop = next - 1;
2570 #endif
2571             n = nnext;
2572             if (stopnow) break;
2573         }
2574
2575 #ifdef EXPERIMENTAL_INPLACESCAN
2576         if (flags && !NEXT_OFF(n)) {
2577             DEBUG_PEEP("atch", val, depth);
2578             if (reg_off_by_arg[OP(n)]) {
2579                 ARG_SET(n, val - n);
2580             }
2581             else {
2582                 NEXT_OFF(n) = val - n;
2583             }
2584             stopnow = 1;
2585         }
2586 #endif
2587     }
2588 #define GREEK_SMALL_LETTER_IOTA_WITH_DIALYTIKA_AND_TONOS   0x0390
2589 #define IOTA_D_T        GREEK_SMALL_LETTER_IOTA_WITH_DIALYTIKA_AND_TONOS
2590 #define GREEK_SMALL_LETTER_UPSILON_WITH_DIALYTIKA_AND_TONOS     0x03B0
2591 #define UPSILON_D_T     GREEK_SMALL_LETTER_UPSILON_WITH_DIALYTIKA_AND_TONOS
2592
2593     if (UTF
2594         && ( OP(scan) == EXACTF || OP(scan) == EXACTFU || OP(scan) == EXACTFA)
2595         && ( STR_LEN(scan) >= 6 ) )
2596     {
2597     /*
2598     Two problematic code points in Unicode casefolding of EXACT nodes:
2599     
2600     U+0390 - GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS
2601     U+03B0 - GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS
2602     
2603     which casefold to
2604     
2605     Unicode                      UTF-8
2606     
2607     U+03B9 U+0308 U+0301         0xCE 0xB9 0xCC 0x88 0xCC 0x81
2608     U+03C5 U+0308 U+0301         0xCF 0x85 0xCC 0x88 0xCC 0x81
2609     
2610     This means that in case-insensitive matching (or "loose matching",
2611     as Unicode calls it), an EXACTF of length six (the UTF-8 encoded byte
2612     length of the above casefolded versions) can match a target string
2613     of length two (the byte length of UTF-8 encoded U+0390 or U+03B0).
2614     This would rather mess up the minimum length computation.
2615     
2616     What we'll do is to look for the tail four bytes, and then peek
2617     at the preceding two bytes to see whether we need to decrease
2618     the minimum length by four (six minus two).
2619     
2620     Thanks to the design of UTF-8, there cannot be false matches:
2621     A sequence of valid UTF-8 bytes cannot be a subsequence of
2622     another valid sequence of UTF-8 bytes.
2623     
2624     */
2625          char * const s0 = STRING(scan), *s, *t;
2626          char * const s1 = s0 + STR_LEN(scan) - 1;
2627          char * const s2 = s1 - 4;
2628 #ifdef EBCDIC /* RD tunifold greek 0390 and 03B0 */
2629          const char t0[] = "\xaf\x49\xaf\x42";
2630 #else
2631          const char t0[] = "\xcc\x88\xcc\x81";
2632 #endif
2633          const char * const t1 = t0 + 3;
2634     
2635          for (s = s0 + 2;
2636               s < s2 && (t = ninstr(s, s1, t0, t1));
2637               s = t + 4) {
2638 #ifdef EBCDIC
2639               if (((U8)t[-1] == 0x68 && (U8)t[-2] == 0xB4) ||
2640                   ((U8)t[-1] == 0x46 && (U8)t[-2] == 0xB5))
2641 #else
2642               if (((U8)t[-1] == 0xB9 && (U8)t[-2] == 0xCE) ||
2643                   ((U8)t[-1] == 0x85 && (U8)t[-2] == 0xCF))
2644 #endif
2645                    *min -= 4;
2646          }
2647     }
2648     
2649 #ifdef DEBUGGING
2650     /* Allow dumping but overwriting the collection of skipped
2651      * ops and/or strings with fake optimized ops */
2652     n = scan + NODE_SZ_STR(scan);
2653     while (n <= stop) {
2654         OP(n) = OPTIMIZED;
2655         FLAGS(n) = 0;
2656         NEXT_OFF(n) = 0;
2657         n++;
2658     }
2659 #endif
2660     DEBUG_OPTIMISE_r(if (merged){DEBUG_PEEP("finl",scan,depth)});
2661     return stopnow;
2662 }
2663
2664 /* REx optimizer.  Converts nodes into quicker variants "in place".
2665    Finds fixed substrings.  */
2666
2667 /* Stops at toplevel WHILEM as well as at "last". At end *scanp is set
2668    to the position after last scanned or to NULL. */
2669
2670 #define INIT_AND_WITHP \
2671     assert(!and_withp); \
2672     Newx(and_withp,1,struct regnode_charclass_class); \
2673     SAVEFREEPV(and_withp)
2674
2675 /* this is a chain of data about sub patterns we are processing that
2676    need to be handled separately/specially in study_chunk. Its so
2677    we can simulate recursion without losing state.  */
2678 struct scan_frame;
2679 typedef struct scan_frame {
2680     regnode *last;  /* last node to process in this frame */
2681     regnode *next;  /* next node to process when last is reached */
2682     struct scan_frame *prev; /*previous frame*/
2683     I32 stop; /* what stopparen do we use */
2684 } scan_frame;
2685
2686
2687 #define SCAN_COMMIT(s, data, m) scan_commit(s, data, m, is_inf)
2688
2689 #define CASE_SYNST_FNC(nAmE)                                       \
2690 case nAmE:                                                         \
2691     if (flags & SCF_DO_STCLASS_AND) {                              \
2692             for (value = 0; value < 256; value++)                  \
2693                 if (!is_ ## nAmE ## _cp(value))                       \
2694                     ANYOF_BITMAP_CLEAR(data->start_class, value);  \
2695     }                                                              \
2696     else {                                                         \
2697             for (value = 0; value < 256; value++)                  \
2698                 if (is_ ## nAmE ## _cp(value))                        \
2699                     ANYOF_BITMAP_SET(data->start_class, value);    \
2700     }                                                              \
2701     break;                                                         \
2702 case N ## nAmE:                                                    \
2703     if (flags & SCF_DO_STCLASS_AND) {                              \
2704             for (value = 0; value < 256; value++)                   \
2705                 if (is_ ## nAmE ## _cp(value))                         \
2706                     ANYOF_BITMAP_CLEAR(data->start_class, value);   \
2707     }                                                               \
2708     else {                                                          \
2709             for (value = 0; value < 256; value++)                   \
2710                 if (!is_ ## nAmE ## _cp(value))                        \
2711                     ANYOF_BITMAP_SET(data->start_class, value);     \
2712     }                                                               \
2713     break
2714
2715
2716
2717 STATIC I32
2718 S_study_chunk(pTHX_ RExC_state_t *pRExC_state, regnode **scanp,
2719                         I32 *minlenp, I32 *deltap,
2720                         regnode *last,
2721                         scan_data_t *data,
2722                         I32 stopparen,
2723                         U8* recursed,
2724                         struct regnode_charclass_class *and_withp,
2725                         U32 flags, U32 depth)
2726                         /* scanp: Start here (read-write). */
2727                         /* deltap: Write maxlen-minlen here. */
2728                         /* last: Stop before this one. */
2729                         /* data: string data about the pattern */
2730                         /* stopparen: treat close N as END */
2731                         /* recursed: which subroutines have we recursed into */
2732                         /* and_withp: Valid if flags & SCF_DO_STCLASS_OR */
2733 {
2734     dVAR;
2735     I32 min = 0, pars = 0, code;
2736     regnode *scan = *scanp, *next;
2737     I32 delta = 0;
2738     int is_inf = (flags & SCF_DO_SUBSTR) && (data->flags & SF_IS_INF);
2739     int is_inf_internal = 0;            /* The studied chunk is infinite */
2740     I32 is_par = OP(scan) == OPEN ? ARG(scan) : 0;
2741     scan_data_t data_fake;
2742     SV *re_trie_maxbuff = NULL;
2743     regnode *first_non_open = scan;
2744     I32 stopmin = I32_MAX;
2745     scan_frame *frame = NULL;
2746     GET_RE_DEBUG_FLAGS_DECL;
2747
2748     PERL_ARGS_ASSERT_STUDY_CHUNK;
2749
2750 #ifdef DEBUGGING
2751     StructCopy(&zero_scan_data, &data_fake, scan_data_t);
2752 #endif
2753
2754     if ( depth == 0 ) {
2755         while (first_non_open && OP(first_non_open) == OPEN)
2756             first_non_open=regnext(first_non_open);
2757     }
2758
2759
2760   fake_study_recurse:
2761     while ( scan && OP(scan) != END && scan < last ){
2762         /* Peephole optimizer: */
2763         DEBUG_STUDYDATA("Peep:", data,depth);
2764         DEBUG_PEEP("Peep",scan,depth);
2765         JOIN_EXACT(scan,&min,0);
2766
2767         /* Follow the next-chain of the current node and optimize
2768            away all the NOTHINGs from it.  */
2769         if (OP(scan) != CURLYX) {
2770             const int max = (reg_off_by_arg[OP(scan)]
2771                        ? I32_MAX
2772                        /* I32 may be smaller than U16 on CRAYs! */
2773                        : (I32_MAX < U16_MAX ? I32_MAX : U16_MAX));
2774             int off = (reg_off_by_arg[OP(scan)] ? ARG(scan) : NEXT_OFF(scan));
2775             int noff;
2776             regnode *n = scan;
2777
2778             /* Skip NOTHING and LONGJMP. */
2779             while ((n = regnext(n))
2780                    && ((PL_regkind[OP(n)] == NOTHING && (noff = NEXT_OFF(n)))
2781                        || ((OP(n) == LONGJMP) && (noff = ARG(n))))
2782                    && off + noff < max)
2783                 off += noff;
2784             if (reg_off_by_arg[OP(scan)])
2785                 ARG(scan) = off;
2786             else
2787                 NEXT_OFF(scan) = off;
2788         }
2789
2790
2791
2792         /* The principal pseudo-switch.  Cannot be a switch, since we
2793            look into several different things.  */
2794         if (OP(scan) == BRANCH || OP(scan) == BRANCHJ
2795                    || OP(scan) == IFTHEN) {
2796             next = regnext(scan);
2797             code = OP(scan);
2798             /* demq: the op(next)==code check is to see if we have "branch-branch" AFAICT */
2799
2800             if (OP(next) == code || code == IFTHEN) {
2801                 /* NOTE - There is similar code to this block below for handling
2802                    TRIE nodes on a re-study.  If you change stuff here check there
2803                    too. */
2804                 I32 max1 = 0, min1 = I32_MAX, num = 0;
2805                 struct regnode_charclass_class accum;
2806                 regnode * const startbranch=scan;
2807
2808                 if (flags & SCF_DO_SUBSTR)
2809                     SCAN_COMMIT(pRExC_state, data, minlenp); /* Cannot merge strings after this. */
2810                 if (flags & SCF_DO_STCLASS)
2811                     cl_init_zero(pRExC_state, &accum);
2812
2813                 while (OP(scan) == code) {
2814                     I32 deltanext, minnext, f = 0, fake;
2815                     struct regnode_charclass_class this_class;
2816
2817                     num++;
2818                     data_fake.flags = 0;
2819                     if (data) {
2820                         data_fake.whilem_c = data->whilem_c;
2821                         data_fake.last_closep = data->last_closep;
2822                     }
2823                     else
2824                         data_fake.last_closep = &fake;
2825
2826                     data_fake.pos_delta = delta;
2827                     next = regnext(scan);
2828                     scan = NEXTOPER(scan);
2829                     if (code != BRANCH)
2830                         scan = NEXTOPER(scan);
2831                     if (flags & SCF_DO_STCLASS) {
2832                         cl_init(pRExC_state, &this_class);
2833                         data_fake.start_class = &this_class;
2834                         f = SCF_DO_STCLASS_AND;
2835                     }
2836                     if (flags & SCF_WHILEM_VISITED_POS)
2837                         f |= SCF_WHILEM_VISITED_POS;
2838
2839                     /* we suppose the run is continuous, last=next...*/
2840                     minnext = study_chunk(pRExC_state, &scan, minlenp, &deltanext,
2841                                           next, &data_fake,
2842                                           stopparen, recursed, NULL, f,depth+1);
2843                     if (min1 > minnext)
2844                         min1 = minnext;
2845                     if (max1 < minnext + deltanext)
2846                         max1 = minnext + deltanext;
2847                     if (deltanext == I32_MAX)
2848                         is_inf = is_inf_internal = 1;
2849                     scan = next;
2850                     if (data_fake.flags & (SF_HAS_PAR|SF_IN_PAR))
2851                         pars++;
2852                     if (data_fake.flags & SCF_SEEN_ACCEPT) {
2853                         if ( stopmin > minnext) 
2854                             stopmin = min + min1;
2855                         flags &= ~SCF_DO_SUBSTR;
2856                         if (data)
2857                             data->flags |= SCF_SEEN_ACCEPT;
2858                     }
2859                     if (data) {
2860                         if (data_fake.flags & SF_HAS_EVAL)
2861                             data->flags |= SF_HAS_EVAL;
2862                         data->whilem_c = data_fake.whilem_c;
2863                     }
2864                     if (flags & SCF_DO_STCLASS)
2865                         cl_or(pRExC_state, &accum, &this_class);
2866                 }
2867                 if (code == IFTHEN && num < 2) /* Empty ELSE branch */
2868                     min1 = 0;
2869                 if (flags & SCF_DO_SUBSTR) {
2870                     data->pos_min += min1;
2871                     data->pos_delta += max1 - min1;
2872                     if (max1 != min1 || is_inf)
2873                         data->longest = &(data->longest_float);
2874                 }
2875                 min += min1;
2876                 delta += max1 - min1;
2877                 if (flags & SCF_DO_STCLASS_OR) {
2878                     cl_or(pRExC_state, data->start_class, &accum);
2879                     if (min1) {
2880                         cl_and(data->start_class, and_withp);
2881                         flags &= ~SCF_DO_STCLASS;
2882                     }
2883                 }
2884                 else if (flags & SCF_DO_STCLASS_AND) {
2885                     if (min1) {
2886                         cl_and(data->start_class, &accum);
2887                         flags &= ~SCF_DO_STCLASS;
2888                     }
2889                     else {
2890                         /* Switch to OR mode: cache the old value of
2891                          * data->start_class */
2892                         INIT_AND_WITHP;
2893                         StructCopy(data->start_class, and_withp,
2894                                    struct regnode_charclass_class);
2895                         flags &= ~SCF_DO_STCLASS_AND;
2896                         StructCopy(&accum, data->start_class,
2897                                    struct regnode_charclass_class);
2898                         flags |= SCF_DO_STCLASS_OR;
2899                         data->start_class->flags |= ANYOF_EOS;
2900                     }
2901                 }
2902
2903                 if (PERL_ENABLE_TRIE_OPTIMISATION && OP( startbranch ) == BRANCH ) {
2904                 /* demq.
2905
2906                    Assuming this was/is a branch we are dealing with: 'scan' now
2907                    points at the item that follows the branch sequence, whatever
2908                    it is. We now start at the beginning of the sequence and look
2909                    for subsequences of
2910
2911                    BRANCH->EXACT=>x1
2912                    BRANCH->EXACT=>x2
2913                    tail
2914
2915                    which would be constructed from a pattern like /A|LIST|OF|WORDS/
2916
2917                    If we can find such a subsequence we need to turn the first
2918                    element into a trie and then add the subsequent branch exact
2919                    strings to the trie.
2920
2921                    We have two cases
2922
2923                      1. patterns where the whole set of branches can be converted. 
2924
2925                      2. patterns where only a subset can be converted.
2926
2927                    In case 1 we can replace the whole set with a single regop
2928                    for the trie. In case 2 we need to keep the start and end
2929                    branches so
2930
2931                      'BRANCH EXACT; BRANCH EXACT; BRANCH X'
2932                      becomes BRANCH TRIE; BRANCH X;
2933
2934                   There is an additional case, that being where there is a 
2935                   common prefix, which gets split out into an EXACT like node
2936                   preceding the TRIE node.
2937
2938                   If x(1..n)==tail then we can do a simple trie, if not we make
2939                   a "jump" trie, such that when we match the appropriate word
2940                   we "jump" to the appropriate tail node. Essentially we turn
2941                   a nested if into a case structure of sorts.
2942
2943                 */
2944
2945                     int made=0;
2946                     if (!re_trie_maxbuff) {
2947                         re_trie_maxbuff = get_sv(RE_TRIE_MAXBUF_NAME, 1);
2948                         if (!SvIOK(re_trie_maxbuff))
2949                             sv_setiv(re_trie_maxbuff, RE_TRIE_MAXBUF_INIT);
2950                     }
2951                     if ( SvIV(re_trie_maxbuff)>=0  ) {
2952                         regnode *cur;
2953                         regnode *first = (regnode *)NULL;
2954                         regnode *last = (regnode *)NULL;
2955                         regnode *tail = scan;
2956                         U8 optype = 0;
2957                         U32 count=0;
2958
2959 #ifdef DEBUGGING
2960                         SV * const mysv = sv_newmortal();       /* for dumping */
2961 #endif
2962                         /* var tail is used because there may be a TAIL
2963                            regop in the way. Ie, the exacts will point to the
2964                            thing following the TAIL, but the last branch will
2965                            point at the TAIL. So we advance tail. If we
2966                            have nested (?:) we may have to move through several
2967                            tails.
2968                          */
2969
2970                         while ( OP( tail ) == TAIL ) {
2971                             /* this is the TAIL generated by (?:) */
2972                             tail = regnext( tail );
2973                         }
2974
2975                         
2976                         DEBUG_OPTIMISE_r({
2977                             regprop(RExC_rx, mysv, tail );
2978                             PerlIO_printf( Perl_debug_log, "%*s%s%s\n",
2979                                 (int)depth * 2 + 2, "", 
2980                                 "Looking for TRIE'able sequences. Tail node is: ", 
2981                                 SvPV_nolen_const( mysv )
2982                             );
2983                         });
2984                         
2985                         /*
2986
2987                            step through the branches, cur represents each
2988                            branch, noper is the first thing to be matched
2989                            as part of that branch and noper_next is the
2990                            regnext() of that node. if noper is an EXACT
2991                            and noper_next is the same as scan (our current
2992                            position in the regex) then the EXACT branch is
2993                            a possible optimization target. Once we have
2994                            two or more consecutive such branches we can
2995                            create a trie of the EXACT's contents and stich
2996                            it in place. If the sequence represents all of
2997                            the branches we eliminate the whole thing and
2998                            replace it with a single TRIE. If it is a
2999                            subsequence then we need to stitch it in. This
3000                            means the first branch has to remain, and needs
3001                            to be repointed at the item on the branch chain
3002                            following the last branch optimized. This could
3003                            be either a BRANCH, in which case the
3004                            subsequence is internal, or it could be the
3005                            item following the branch sequence in which
3006                            case the subsequence is at the end.
3007
3008                         */
3009
3010                         /* dont use tail as the end marker for this traverse */
3011                         for ( cur = startbranch ; cur != scan ; cur = regnext( cur ) ) {
3012                             regnode * const noper = NEXTOPER( cur );
3013 #if defined(DEBUGGING) || defined(NOJUMPTRIE)
3014                             regnode * const noper_next = regnext( noper );
3015 #endif
3016
3017                             DEBUG_OPTIMISE_r({
3018                                 regprop(RExC_rx, mysv, cur);
3019                                 PerlIO_printf( Perl_debug_log, "%*s- %s (%d)",
3020                                    (int)depth * 2 + 2,"", SvPV_nolen_const( mysv ), REG_NODE_NUM(cur) );
3021
3022                                 regprop(RExC_rx, mysv, noper);
3023                                 PerlIO_printf( Perl_debug_log, " -> %s",
3024                                     SvPV_nolen_const(mysv));
3025
3026                                 if ( noper_next ) {
3027                                   regprop(RExC_rx, mysv, noper_next );
3028                                   PerlIO_printf( Perl_debug_log,"\t=> %s\t",
3029                                     SvPV_nolen_const(mysv));
3030                                 }
3031                                 PerlIO_printf( Perl_debug_log, "(First==%d,Last==%d,Cur==%d)\n",
3032                                    REG_NODE_NUM(first), REG_NODE_NUM(last), REG_NODE_NUM(cur) );
3033                             });
3034                             if ( (((first && optype!=NOTHING) ? OP( noper ) == optype
3035                                          : PL_regkind[ OP( noper ) ] == EXACT )
3036                                   || OP(noper) == NOTHING )
3037 #ifdef NOJUMPTRIE
3038                                   && noper_next == tail
3039 #endif
3040                                   && count < U16_MAX)
3041                             {
3042                                 count++;
3043                                 if ( !first || optype == NOTHING ) {
3044                                     if (!first) first = cur;
3045                                     optype = OP( noper );
3046                                 } else {
3047                                     last = cur;
3048                                 }
3049                             } else {
3050 /* 
3051     Currently the trie logic handles case insensitive matching properly only
3052     when the pattern is UTF-8 and the node is EXACTFU (thus forcing unicode
3053     semantics).
3054
3055     If/when this is fixed the following define can be swapped
3056     in below to fully enable trie logic.
3057
3058 #define TRIE_TYPE_IS_SAFE 1
3059
3060 */
3061 #define TRIE_TYPE_IS_SAFE ((UTF && optype == EXACTFU) || optype==EXACT)
3062
3063                                 if ( last && TRIE_TYPE_IS_SAFE ) {
3064                                     make_trie( pRExC_state, 
3065                                             startbranch, first, cur, tail, count, 
3066                                             optype, depth+1 );
3067                                 }
3068                                 if ( PL_regkind[ OP( noper ) ] == EXACT
3069 #ifdef NOJUMPTRIE
3070                                      && noper_next == tail
3071 #endif
3072                                 ){
3073                                     count = 1;
3074                                     first = cur;
3075                                     optype = OP( noper );
3076                                 } else {
3077                                     count = 0;
3078                                     first = NULL;
3079                                     optype = 0;
3080                                 }
3081                                 last = NULL;
3082                             }
3083                         }
3084                         DEBUG_OPTIMISE_r({
3085                             regprop(RExC_rx, mysv, cur);
3086                             PerlIO_printf( Perl_debug_log,
3087                               "%*s- %s (%d) <SCAN FINISHED>\n", (int)depth * 2 + 2,
3088                               "", SvPV_nolen_const( mysv ),REG_NODE_NUM(cur));
3089
3090                         });
3091                         
3092                         if ( last && TRIE_TYPE_IS_SAFE ) {
3093                             made= make_trie( pRExC_state, startbranch, first, scan, tail, count, optype, depth+1 );
3094 #ifdef TRIE_STUDY_OPT
3095                             if ( ((made == MADE_EXACT_TRIE && 
3096                                  startbranch == first) 
3097                                  || ( first_non_open == first )) && 
3098                                  depth==0 ) {
3099                                 flags |= SCF_TRIE_RESTUDY;
3100                                 if ( startbranch == first 
3101                                      && scan == tail ) 
3102                                 {
3103                                     RExC_seen &=~REG_TOP_LEVEL_BRANCHES;
3104                                 }
3105                             }
3106 #endif
3107                         }
3108                     }
3109                     
3110                 } /* do trie */
3111                 
3112             }
3113             else if ( code == BRANCHJ ) {  /* single branch is optimized. */
3114                 scan = NEXTOPER(NEXTOPER(scan));
3115             } else                      /* single branch is optimized. */
3116                 scan = NEXTOPER(scan);
3117             continue;
3118         } else if (OP(scan) == SUSPEND || OP(scan) == GOSUB || OP(scan) == GOSTART) {
3119             scan_frame *newframe = NULL;
3120             I32 paren;
3121             regnode *start;
3122             regnode *end;
3123
3124             if (OP(scan) != SUSPEND) {
3125             /* set the pointer */
3126                 if (OP(scan) == GOSUB) {
3127                     paren = ARG(scan);
3128                     RExC_recurse[ARG2L(scan)] = scan;
3129                     start = RExC_open_parens[paren-1];
3130                     end   = RExC_close_parens[paren-1];
3131                 } else {
3132                     paren = 0;
3133                     start = RExC_rxi->program + 1;
3134                     end   = RExC_opend;
3135                 }
3136                 if (!recursed) {
3137                     Newxz(recursed, (((RExC_npar)>>3) +1), U8);
3138                     SAVEFREEPV(recursed);
3139                 }
3140                 if (!PAREN_TEST(recursed,paren+1)) {
3141                     PAREN_SET(recursed,paren+1);
3142                     Newx(newframe,1,scan_frame);
3143                 } else {
3144                     if (flags & SCF_DO_SUBSTR) {
3145                         SCAN_COMMIT(pRExC_state,data,minlenp);
3146                         data->longest = &(data->longest_float);
3147                     }
3148                     is_inf = is_inf_internal = 1;
3149                     if (flags & SCF_DO_STCLASS_OR) /* Allow everything */
3150                         cl_anything(pRExC_state, data->start_class);
3151                     flags &= ~SCF_DO_STCLASS;
3152                 }
3153             } else {
3154                 Newx(newframe,1,scan_frame);
3155                 paren = stopparen;
3156                 start = scan+2;
3157                 end = regnext(scan);
3158             }
3159             if (newframe) {
3160                 assert(start);
3161                 assert(end);
3162                 SAVEFREEPV(newframe);
3163                 newframe->next = regnext(scan);
3164                 newframe->last = last;
3165                 newframe->stop = stopparen;
3166                 newframe->prev = frame;
3167
3168                 frame = newframe;
3169                 scan =  start;
3170                 stopparen = paren;
3171                 last = end;
3172
3173                 continue;
3174             }
3175         }
3176         else if (OP(scan) == EXACT) {
3177             I32 l = STR_LEN(scan);
3178             UV uc;
3179             if (UTF) {
3180                 const U8 * const s = (U8*)STRING(scan);
3181                 l = utf8_length(s, s + l);
3182                 uc = utf8_to_uvchr(s, NULL);
3183             } else {
3184                 uc = *((U8*)STRING(scan));
3185             }
3186             min += l;
3187             if (flags & SCF_DO_SUBSTR) { /* Update longest substr. */
3188                 /* The code below prefers earlier match for fixed
3189                    offset, later match for variable offset.  */
3190                 if (data->last_end == -1) { /* Update the start info. */
3191                     data->last_start_min = data->pos_min;
3192                     data->last_start_max = is_inf
3193                         ? I32_MAX : data->pos_min + data->pos_delta;
3194                 }
3195                 sv_catpvn(data->last_found, STRING(scan), STR_LEN(scan));
3196                 if (UTF)
3197                     SvUTF8_on(data->last_found);
3198                 {
3199                     SV * const sv = data->last_found;
3200                     MAGIC * const mg = SvUTF8(sv) && SvMAGICAL(sv) ?
3201                         mg_find(sv, PERL_MAGIC_utf8) : NULL;
3202                     if (mg && mg->mg_len >= 0)
3203                         mg->mg_len += utf8_length((U8*)STRING(scan),
3204                                                   (U8*)STRING(scan)+STR_LEN(scan));
3205                 }
3206                 data->last_end = data->pos_min + l;
3207                 data->pos_min += l; /* As in the first entry. */
3208                 data->flags &= ~SF_BEFORE_EOL;
3209             }
3210             if (flags & SCF_DO_STCLASS_AND) {
3211                 /* Check whether it is compatible with what we know already! */
3212                 int compat = 1;
3213
3214
3215                 /* If compatible, we or it in below.  It is compatible if is
3216                  * in the bitmp and either 1) its bit or its fold is set, or 2)
3217                  * it's for a locale.  Even if there isn't unicode semantics
3218                  * here, at runtime there may be because of matching against a
3219                  * utf8 string, so accept a possible false positive for
3220                  * latin1-range folds */
3221                 if (uc >= 0x100 ||
3222                     (!(data->start_class->flags & (ANYOF_CLASS | ANYOF_LOCALE))
3223                     && !ANYOF_BITMAP_TEST(data->start_class, uc)
3224                     && (!(data->start_class->flags & ANYOF_LOC_NONBITMAP_FOLD)
3225                         || !ANYOF_BITMAP_TEST(data->start_class, PL_fold_latin1[uc])))
3226                     )
3227                 {
3228                     compat = 0;
3229                 }
3230                 ANYOF_CLASS_ZERO(data->start_class);
3231                 ANYOF_BITMAP_ZERO(data->start_class);
3232                 if (compat)
3233                     ANYOF_BITMAP_SET(data->start_class, uc);
3234                 else if (uc >= 0x100) {
3235                     int i;
3236
3237                     /* Some Unicode code points fold to the Latin1 range; as
3238                      * XXX temporary code, instead of figuring out if this is
3239                      * one, just assume it is and set all the start class bits
3240                      * that could be some such above 255 code point's fold
3241                      * which will generate fals positives.  As the code
3242                      * elsewhere that does compute the fold settles down, it
3243                      * can be extracted out and re-used here */
3244                     for (i = 0; i < 256; i++){
3245                         if (_HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(i)) {
3246                             ANYOF_BITMAP_SET(data->start_class, i);
3247                         }
3248                     }
3249                 }
3250                 data->start_class->flags &= ~ANYOF_EOS;
3251                 if (uc < 0x100)
3252                   data->start_class->flags &= ~ANYOF_UNICODE_ALL;
3253             }
3254             else if (flags & SCF_DO_STCLASS_OR) {
3255                 /* false positive possible if the class is case-folded */
3256                 if (uc < 0x100)
3257                     ANYOF_BITMAP_SET(data->start_class, uc);
3258                 else
3259                     data->start_class->flags |= ANYOF_UNICODE_ALL;
3260                 data->start_class->flags &= ~ANYOF_EOS;
3261                 cl_and(data->start_class, and_withp);
3262             }
3263             flags &= ~SCF_DO_STCLASS;
3264         }
3265         else if (PL_regkind[OP(scan)] == EXACT) { /* But OP != EXACT! */
3266             I32 l = STR_LEN(scan);
3267             UV uc = *((U8*)STRING(scan));
3268
3269             /* Search for fixed substrings supports EXACT only. */
3270             if (flags & SCF_DO_SUBSTR) {
3271                 assert(data);
3272                 SCAN_COMMIT(pRExC_state, data, minlenp);
3273             }
3274             if (UTF) {
3275                 const U8 * const s = (U8 *)STRING(scan);
3276                 l = utf8_length(s, s + l);
3277                 uc = utf8_to_uvchr(s, NULL);
3278             }
3279             min += l;
3280             if (flags & SCF_DO_SUBSTR)
3281                 data->pos_min += l;
3282             if (flags & SCF_DO_STCLASS_AND) {
3283                 /* Check whether it is compatible with what we know already! */
3284                 int compat = 1;
3285                 if (uc >= 0x100 ||
3286                  (!(data->start_class->flags & (ANYOF_CLASS | ANYOF_LOCALE))
3287                   && !ANYOF_BITMAP_TEST(data->start_class, uc)
3288                   && !ANYOF_BITMAP_TEST(data->start_class, PL_fold_latin1[uc])))
3289                 {
3290                     compat = 0;
3291                 }
3292                 ANYOF_CLASS_ZERO(data->start_class);
3293                 ANYOF_BITMAP_ZERO(data->start_class);
3294                 if (compat) {
3295                     ANYOF_BITMAP_SET(data->start_class, uc);
3296                     data->start_class->flags &= ~ANYOF_EOS;
3297                     data->start_class->flags |= ANYOF_LOC_NONBITMAP_FOLD;
3298                     if (OP(scan) == EXACTFL) {
3299                         /* XXX This set is probably no longer necessary, and
3300                          * probably wrong as LOCALE now is on in the initial
3301                          * state */
3302                         data->start_class->flags |= ANYOF_LOCALE;
3303                     }
3304                     else {
3305
3306                         /* Also set the other member of the fold pair.  In case
3307                          * that unicode semantics is called for at runtime, use
3308                          * the full latin1 fold.  (Can't do this for locale,
3309                          * because not known until runtime */
3310                         ANYOF_BITMAP_SET(data->start_class, PL_fold_latin1[uc]);
3311                     }
3312                 }
3313                 else if (uc >= 0x100) {
3314                     int i;
3315                     for (i = 0; i < 256; i++){
3316                         if (_HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(i)) {
3317                             ANYOF_BITMAP_SET(data->start_class, i);
3318                         }
3319                     }
3320                 }
3321             }
3322             else if (flags & SCF_DO_STCLASS_OR) {
3323                 if (data->start_class->flags & ANYOF_LOC_NONBITMAP_FOLD) {
3324                     /* false positive possible if the class is case-folded.
3325                        Assume that the locale settings are the same... */
3326                     if (uc < 0x100) {
3327                         ANYOF_BITMAP_SET(data->start_class, uc);
3328                         if (OP(scan) != EXACTFL) {
3329
3330                             /* And set the other member of the fold pair, but
3331                              * can't do that in locale because not known until
3332                              * run-time */
3333                             ANYOF_BITMAP_SET(data->start_class,
3334                                              PL_fold_latin1[uc]);
3335                         }
3336                     }
3337                     data->start_class->flags &= ~ANYOF_EOS;
3338                 }
3339                 cl_and(data->start_class, and_withp);
3340             }
3341             flags &= ~SCF_DO_STCLASS;
3342         }
3343         else if (REGNODE_VARIES(OP(scan))) {
3344             I32 mincount, maxcount, minnext, deltanext, fl = 0;
3345             I32 f = flags, pos_before = 0;
3346             regnode * const oscan = scan;
3347             struct regnode_charclass_class this_class;
3348             struct regnode_charclass_class *oclass = NULL;
3349             I32 next_is_eval = 0;
3350
3351             switch (PL_regkind[OP(scan)]) {
3352             case WHILEM:                /* End of (?:...)* . */
3353                 scan = NEXTOPER(scan);
3354                 goto finish;
3355             case PLUS:
3356                 if (flags & (SCF_DO_SUBSTR | SCF_DO_STCLASS)) {
3357                     next = NEXTOPER(scan);
3358                     if (OP(next) == EXACT || (flags & SCF_DO_STCLASS)) {
3359                         mincount = 1;
3360                         maxcount = REG_INFTY;
3361                         next = regnext(scan);
3362                         scan = NEXTOPER(scan);
3363                         goto do_curly;
3364                     }
3365                 }
3366                 if (flags & SCF_DO_SUBSTR)
3367                     data->pos_min++;
3368                 min++;
3369                 /* Fall through. */
3370             case STAR:
3371                 if (flags & SCF_DO_STCLASS) {
3372                     mincount = 0;
3373                     maxcount = REG_INFTY;
3374                     next = regnext(scan);
3375                     scan = NEXTOPER(scan);
3376                     goto do_curly;
3377                 }
3378                 is_inf = is_inf_internal = 1;
3379                 scan = regnext(scan);
3380                 if (flags & SCF_DO_SUBSTR) {
3381                     SCAN_COMMIT(pRExC_state, data, minlenp); /* Cannot extend fixed substrings */
3382                     data->longest = &(data->longest_float);
3383                 }
3384                 goto optimize_curly_tail;
3385             case CURLY:
3386                 if (stopparen>0 && (OP(scan)==CURLYN || OP(scan)==CURLYM)
3387                     && (scan->flags == stopparen))
3388                 {
3389                     mincount = 1;
3390                     maxcount = 1;
3391                 } else {
3392                     mincount = ARG1(scan);
3393                     maxcount = ARG2(scan);
3394                 }
3395                 next = regnext(scan);
3396                 if (OP(scan) == CURLYX) {
3397                     I32 lp = (data ? *(data->last_closep) : 0);
3398                     scan->flags = ((lp <= (I32)U8_MAX) ? (U8)lp : U8_MAX);
3399                 }
3400                 scan = NEXTOPER(scan) + EXTRA_STEP_2ARGS;
3401                 next_is_eval = (OP(scan) == EVAL);
3402               do_curly:
3403                 if (flags & SCF_DO_SUBSTR) {
3404                     if (mincount == 0) SCAN_COMMIT(pRExC_state,data,minlenp); /* Cannot extend fixed substrings */
3405                     pos_before = data->pos_min;
3406                 }
3407                 if (data) {
3408                     fl = data->flags;
3409                     data->flags &= ~(SF_HAS_PAR|SF_IN_PAR|SF_HAS_EVAL);
3410                     if (is_inf)
3411                         data->flags |= SF_IS_INF;
3412                 }
3413                 if (flags & SCF_DO_STCLASS) {
3414                     cl_init(pRExC_state, &this_class);
3415                     oclass = data->start_class;
3416                     data->start_class = &this_class;
3417                     f |= SCF_DO_STCLASS_AND;
3418                     f &= ~SCF_DO_STCLASS_OR;
3419                 }
3420                 /* Exclude from super-linear cache processing any {n,m}
3421                    regops for which the combination of input pos and regex
3422                    pos is not enough information to determine if a match
3423                    will be possible.
3424
3425                    For example, in the regex /foo(bar\s*){4,8}baz/ with the
3426                    regex pos at the \s*, the prospects for a match depend not
3427                    only on the input position but also on how many (bar\s*)
3428                    repeats into the {4,8} we are. */
3429                if ((mincount > 1) || (maxcount > 1 && maxcount != REG_INFTY))
3430                     f &= ~SCF_WHILEM_VISITED_POS;
3431
3432                 /* This will finish on WHILEM, setting scan, or on NULL: */
3433                 minnext = study_chunk(pRExC_state, &scan, minlenp, &deltanext, 
3434                                       last, data, stopparen, recursed, NULL,
3435                                       (mincount == 0
3436                                         ? (f & ~SCF_DO_SUBSTR) : f),depth+1);
3437
3438                 if (flags & SCF_DO_STCLASS)
3439                     data->start_class = oclass;
3440                 if (mincount == 0 || minnext == 0) {
3441                     if (flags & SCF_DO_STCLASS_OR) {
3442                         cl_or(pRExC_state, data->start_class, &this_class);
3443                     }
3444                     else if (flags & SCF_DO_STCLASS_AND) {
3445                         /* Switch to OR mode: cache the old value of
3446                          * data->start_class */
3447                         INIT_AND_WITHP;
3448                         StructCopy(data->start_class, and_withp,
3449                                    struct regnode_charclass_class);
3450                         flags &= ~SCF_DO_STCLASS_AND;
3451                         StructCopy(&this_class, data->start_class,
3452                                    struct regnode_charclass_class);
3453                         flags |= SCF_DO_STCLASS_OR;
3454                         data->start_class->flags |= ANYOF_EOS;
3455                     }
3456                 } else {                /* Non-zero len */
3457                     if (flags & SCF_DO_STCLASS_OR) {
3458                         cl_or(pRExC_state, data->start_class, &this_class);
3459                         cl_and(data->start_class, and_withp);
3460                     }
3461                     else if (flags & SCF_DO_STCLASS_AND)
3462                         cl_and(data->start_class, &this_class);
3463                     flags &= ~SCF_DO_STCLASS;
3464                 }
3465                 if (!scan)              /* It was not CURLYX, but CURLY. */
3466                     scan = next;
3467                 if ( /* ? quantifier ok, except for (?{ ... }) */
3468                     (next_is_eval || !(mincount == 0 && maxcount == 1))
3469                     && (minnext == 0) && (deltanext == 0)
3470                     && data && !(data->flags & (SF_HAS_PAR|SF_IN_PAR))
3471                     && maxcount <= REG_INFTY/3) /* Complement check for big count */
3472                 {
3473                     ckWARNreg(RExC_parse,
3474                               "Quantifier unexpected on zero-length expression");
3475                 }
3476
3477                 min += minnext * mincount;
3478                 is_inf_internal |= ((maxcount == REG_INFTY
3479                                      && (minnext + deltanext) > 0)
3480                                     || deltanext == I32_MAX);
3481                 is_inf |= is_inf_internal;
3482                 delta += (minnext + deltanext) * maxcount - minnext * mincount;
3483
3484                 /* Try powerful optimization CURLYX => CURLYN. */
3485                 if (  OP(oscan) == CURLYX && data
3486                       && data->flags & SF_IN_PAR
3487                       && !(data->flags & SF_HAS_EVAL)
3488                       && !deltanext && minnext == 1 ) {
3489                     /* Try to optimize to CURLYN.  */
3490                     regnode *nxt = NEXTOPER(oscan) + EXTRA_STEP_2ARGS;
3491                     regnode * const nxt1 = nxt;
3492 #ifdef DEBUGGING
3493                     regnode *nxt2;
3494 #endif
3495
3496                     /* Skip open. */
3497                     nxt = regnext(nxt);
3498                     if (!REGNODE_SIMPLE(OP(nxt))
3499                         && !(PL_regkind[OP(nxt)] == EXACT
3500                              && STR_LEN(nxt) == 1))
3501                         goto nogo;
3502 #ifdef DEBUGGING
3503                     nxt2 = nxt;
3504 #endif
3505                     nxt = regnext(nxt);
3506                     if (OP(nxt) != CLOSE)
3507                         goto nogo;
3508                     if (RExC_open_parens) {
3509                         RExC_open_parens[ARG(nxt1)-1]=oscan; /*open->CURLYM*/
3510                         RExC_close_parens[ARG(nxt1)-1]=nxt+2; /*close->while*/
3511                     }
3512                     /* Now we know that nxt2 is the only contents: */
3513                     oscan->flags = (U8)ARG(nxt);
3514                     OP(oscan) = CURLYN;
3515                     OP(nxt1) = NOTHING; /* was OPEN. */
3516
3517 #ifdef DEBUGGING
3518                     OP(nxt1 + 1) = OPTIMIZED; /* was count. */
3519                     NEXT_OFF(nxt1+ 1) = 0; /* just for consistency. */
3520                     NEXT_OFF(nxt2) = 0; /* just for consistency with CURLY. */
3521                     OP(nxt) = OPTIMIZED;        /* was CLOSE. */
3522                     OP(nxt + 1) = OPTIMIZED; /* was count. */
3523                     NEXT_OFF(nxt+ 1) = 0; /* just for consistency. */
3524 #endif
3525                 }
3526               nogo:
3527
3528                 /* Try optimization CURLYX => CURLYM. */
3529                 if (  OP(oscan) == CURLYX && data
3530                       && !(data->flags & SF_HAS_PAR)
3531                       && !(data->flags & SF_HAS_EVAL)
3532                       && !deltanext     /* atom is fixed width */
3533                       && minnext != 0   /* CURLYM can't handle zero width */
3534                 ) {
3535                     /* XXXX How to optimize if data == 0? */
3536                     /* Optimize to a simpler form.  */
3537                     regnode *nxt = NEXTOPER(oscan) + EXTRA_STEP_2ARGS; /* OPEN */
3538                     regnode *nxt2;
3539
3540                     OP(oscan) = CURLYM;
3541                     while ( (nxt2 = regnext(nxt)) /* skip over embedded stuff*/
3542                             && (OP(nxt2) != WHILEM))
3543                         nxt = nxt2;
3544                     OP(nxt2)  = SUCCEED; /* Whas WHILEM */
3545                     /* Need to optimize away parenths. */
3546                     if ((data->flags & SF_IN_PAR) && OP(nxt) == CLOSE) {
3547                         /* Set the parenth number.  */
3548                         regnode *nxt1 = NEXTOPER(oscan) + EXTRA_STEP_2ARGS; /* OPEN*/
3549
3550                         oscan->flags = (U8)ARG(nxt);
3551                         if (RExC_open_parens) {
3552                             RExC_open_parens[ARG(nxt1)-1]=oscan; /*open->CURLYM*/
3553                             RExC_close_parens[ARG(nxt1)-1]=nxt2+1; /*close->NOTHING*/
3554                         }
3555                         OP(nxt1) = OPTIMIZED;   /* was OPEN. */
3556                         OP(nxt) = OPTIMIZED;    /* was CLOSE. */
3557
3558 #ifdef DEBUGGING
3559                         OP(nxt1 + 1) = OPTIMIZED; /* was count. */
3560                         OP(nxt + 1) = OPTIMIZED; /* was count. */
3561                         NEXT_OFF(nxt1 + 1) = 0; /* just for consistency. */
3562                         NEXT_OFF(nxt + 1) = 0; /* just for consistency. */
3563 #endif
3564 #if 0
3565                         while ( nxt1 && (OP(nxt1) != WHILEM)) {
3566                             regnode *nnxt = regnext(nxt1);
3567                             if (nnxt == nxt) {
3568                                 if (reg_off_by_arg[OP(nxt1)])
3569                                     ARG_SET(nxt1, nxt2 - nxt1);
3570                                 else if (nxt2 - nxt1 < U16_MAX)
3571                                     NEXT_OFF(nxt1) = nxt2 - nxt1;
3572                                 else
3573                                     OP(nxt) = NOTHING;  /* Cannot beautify */
3574                             }
3575                             nxt1 = nnxt;
3576                         }
3577 #endif
3578                         /* Optimize again: */
3579                         study_chunk(pRExC_state, &nxt1, minlenp, &deltanext, nxt,
3580                                     NULL, stopparen, recursed, NULL, 0,depth+1);
3581                     }
3582                     else
3583                         oscan->flags = 0;
3584                 }
3585                 else if ((OP(oscan) == CURLYX)
3586                          && (flags & SCF_WHILEM_VISITED_POS)
3587                          /* See the comment on a similar expression above.
3588                             However, this time it's not a subexpression
3589                             we care about, but the expression itself. */
3590                          && (maxcount == REG_INFTY)
3591                          && data && ++data->whilem_c < 16) {
3592                     /* This stays as CURLYX, we can put the count/of pair. */
3593                     /* Find WHILEM (as in regexec.c) */
3594                     regnode *nxt = oscan + NEXT_OFF(oscan);
3595
3596                     if (OP(PREVOPER(nxt)) == NOTHING) /* LONGJMP */
3597                         nxt += ARG(nxt);
3598                     PREVOPER(nxt)->flags = (U8)(data->whilem_c
3599                         | (RExC_whilem_seen << 4)); /* On WHILEM */
3600                 }
3601                 if (data && fl & (SF_HAS_PAR|SF_IN_PAR))
3602                     pars++;
3603                 if (flags & SCF_DO_SUBSTR) {
3604                     SV *last_str = NULL;
3605                     int counted = mincount != 0;
3606
3607                     if (data->last_end > 0 && mincount != 0) { /* Ends with a string. */
3608 #if defined(SPARC64_GCC_WORKAROUND)
3609                         I32 b = 0;
3610                         STRLEN l = 0;
3611                         const char *s = NULL;
3612                         I32 old = 0;
3613
3614                         if (pos_before >= data->last_start_min)
3615                             b = pos_before;
3616                         else
3617                             b = data->last_start_min;
3618
3619                         l = 0;
3620                         s = SvPV_const(data->last_found, l);
3621                         old = b - data->last_start_min;
3622
3623 #else
3624                         I32 b = pos_before >= data->last_start_min
3625                             ? pos_before : data->last_start_min;
3626                         STRLEN l;
3627                         const char * const s = SvPV_const(data->last_found, l);
3628                         I32 old = b - data->last_start_min;
3629 #endif
3630
3631                         if (UTF)
3632                             old = utf8_hop((U8*)s, old) - (U8*)s;
3633                         l -= old;
3634                         /* Get the added string: */
3635                         last_str = newSVpvn_utf8(s  + old, l, UTF);
3636                         if (deltanext == 0 && pos_before == b) {
3637                             /* What was added is a constant string */
3638                             if (mincount > 1) {
3639                                 SvGROW(last_str, (mincount * l) + 1);
3640                                 repeatcpy(SvPVX(last_str) + l,
3641                                           SvPVX_const(last_str), l, mincount - 1);
3642                                 SvCUR_set(last_str, SvCUR(last_str) * mincount);
3643                                 /* Add additional parts. */
3644                                 SvCUR_set(data->last_found,
3645                                           SvCUR(data->last_found) - l);
3646                                 sv_catsv(data->last_found, last_str);
3647                                 {
3648                                     SV * sv = data->last_found;
3649                                     MAGIC *mg =
3650                                         SvUTF8(sv) && SvMAGICAL(sv) ?
3651                                         mg_find(sv, PERL_MAGIC_utf8) : NULL;
3652                                     if (mg && mg->mg_len >= 0)
3653                                         mg->mg_len += CHR_SVLEN(last_str) - l;
3654                                 }
3655                                 data->last_end += l * (mincount - 1);
3656                             }
3657                         } else {
3658                             /* start offset must point into the last copy */
3659                             data->last_start_min += minnext * (mincount - 1);
3660                             data->last_start_max += is_inf ? I32_MAX
3661                                 : (maxcount - 1) * (minnext + data->pos_delta);
3662                         }
3663                     }
3664                     /* It is counted once already... */
3665                     data->pos_min += minnext * (mincount - counted);
3666                     data->pos_delta += - counted * deltanext +
3667                         (minnext + deltanext) * maxcount - minnext * mincount;
3668                     if (mincount != maxcount) {
3669                          /* Cannot extend fixed substrings found inside
3670                             the group.  */
3671                         SCAN_COMMIT(pRExC_state,data,minlenp);
3672                         if (mincount && last_str) {
3673                             SV * const sv = data->last_found;
3674                             MAGIC * const mg = SvUTF8(sv) && SvMAGICAL(sv) ?
3675                                 mg_find(sv, PERL_MAGIC_utf8) : NULL;
3676
3677                             if (mg)
3678                                 mg->mg_len = -1;
3679                             sv_setsv(sv, last_str);
3680                             data->last_end = data->pos_min;
3681                             data->last_start_min =
3682                                 data->pos_min - CHR_SVLEN(last_str);
3683                             data->last_start_max = is_inf
3684                                 ? I32_MAX
3685                                 : data->pos_min + data->pos_delta
3686                                 - CHR_SVLEN(last_str);
3687                         }
3688                         data->longest = &(data->longest_float);
3689                     }
3690                     SvREFCNT_dec(last_str);
3691                 }
3692                 if (data && (fl & SF_HAS_EVAL))
3693                     data->flags |= SF_HAS_EVAL;
3694               optimize_curly_tail:
3695                 if (OP(oscan) != CURLYX) {
3696                     while (PL_regkind[OP(next = regnext(oscan))] == NOTHING
3697                            && NEXT_OFF(next))
3698                         NEXT_OFF(oscan) += NEXT_OFF(next);
3699                 }
3700                 continue;
3701             default:                    /* REF, ANYOFV, and CLUMP only? */
3702                 if (flags & SCF_DO_SUBSTR) {
3703                     SCAN_COMMIT(pRExC_state,data,minlenp);      /* Cannot expect anything... */
3704                     data->longest = &(data->longest_float);
3705                 }
3706                 is_inf = is_inf_internal = 1;
3707                 if (flags & SCF_DO_STCLASS_OR)
3708                     cl_anything(pRExC_state, data->start_class);
3709                 flags &= ~SCF_DO_STCLASS;
3710                 break;
3711             }
3712         }
3713         else if (OP(scan) == LNBREAK) {
3714             if (flags & SCF_DO_STCLASS) {
3715                 int value = 0;
3716                 data->start_class->flags &= ~ANYOF_EOS; /* No match on empty */
3717                 if (flags & SCF_DO_STCLASS_AND) {
3718                     for (value = 0; value < 256; value++)
3719                         if (!is_VERTWS_cp(value))
3720                             ANYOF_BITMAP_CLEAR(data->start_class, value);
3721                 }
3722                 else {
3723                     for (value = 0; value < 256; value++)
3724                         if (is_VERTWS_cp(value))
3725                             ANYOF_BITMAP_SET(data->start_class, value);
3726                 }
3727                 if (flags & SCF_DO_STCLASS_OR)
3728                     cl_and(data->start_class, and_withp);
3729                 flags &= ~SCF_DO_STCLASS;
3730             }
3731             min += 1;
3732             delta += 1;
3733             if (flags & SCF_DO_SUBSTR) {
3734                 SCAN_COMMIT(pRExC_state,data,minlenp);  /* Cannot expect anything... */
3735                 data->pos_min += 1;
3736                 data->pos_delta += 1;
3737                 data->longest = &(data->longest_float);
3738             }
3739         }
3740         else if (OP(scan) == FOLDCHAR) {
3741             int d = ARG(scan) == LATIN_SMALL_LETTER_SHARP_S ? 1 : 2;
3742             flags &= ~SCF_DO_STCLASS;
3743             min += 1;
3744             delta += d;
3745             if (flags & SCF_DO_SUBSTR) {
3746                 SCAN_COMMIT(pRExC_state,data,minlenp);  /* Cannot expect anything... */
3747                 data->pos_min += 1;
3748                 data->pos_delta += d;
3749                 data->longest = &(data->longest_float);
3750             }
3751         }
3752         else if (REGNODE_SIMPLE(OP(scan))) {
3753             int value = 0;
3754
3755             if (flags & SCF_DO_SUBSTR) {
3756                 SCAN_COMMIT(pRExC_state,data,minlenp);
3757                 data->pos_min++;
3758             }
3759             min++;
3760             if (flags & SCF_DO_STCLASS) {
3761                 data->start_class->flags &= ~ANYOF_EOS; /* No match on empty */
3762
3763                 /* Some of the logic below assumes that switching
3764                    locale on will only add false positives. */
3765                 switch (PL_regkind[OP(scan)]) {
3766                 case SANY:
3767                 default:
3768                   do_default:
3769                     /* Perl_croak(aTHX_ "panic: unexpected simple REx opcode %d", OP(scan)); */
3770                     if (flags & SCF_DO_STCLASS_OR) /* Allow everything */
3771                         cl_anything(pRExC_state, data->start_class);
3772                     break;
3773                 case REG_ANY:
3774                     if (OP(scan) == SANY)
3775                         goto do_default;
3776                     if (flags & SCF_DO_STCLASS_OR) { /* Everything but \n */
3777                         value = (ANYOF_BITMAP_TEST(data->start_class,'\n')
3778                                  || ANYOF_CLASS_TEST_ANY_SET(data->start_class));
3779                         cl_anything(pRExC_state, data->start_class);
3780                     }
3781                     if (flags & SCF_DO_STCLASS_AND || !value)
3782                         ANYOF_BITMAP_CLEAR(data->start_class,'\n');
3783                     break;
3784                 case ANYOF:
3785                     if (flags & SCF_DO_STCLASS_AND)
3786                         cl_and(data->start_class,
3787                                (struct regnode_charclass_class*)scan);
3788                     else
3789                         cl_or(pRExC_state, data->start_class,
3790                               (struct regnode_charclass_class*)scan);
3791                     break;
3792                 case ALNUM:
3793                     if (flags & SCF_DO_STCLASS_AND) {
3794                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
3795                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_NALNUM);
3796                             if (OP(scan) == ALNUMU) {
3797                                 for (value = 0; value < 256; value++) {
3798                                     if (!isWORDCHAR_L1(value)) {
3799                                         ANYOF_BITMAP_CLEAR(data->start_class, value);
3800                                     }
3801                                 }
3802                             } else {
3803                                 for (value = 0; value < 256; value++) {
3804                                     if (!isALNUM(value)) {
3805                                         ANYOF_BITMAP_CLEAR(data->start_class, value);
3806                                     }
3807                                 }
3808                             }
3809                         }
3810                     }
3811                     else {
3812                         if (data->start_class->flags & ANYOF_LOCALE)
3813                             ANYOF_CLASS_SET(data->start_class,ANYOF_ALNUM);
3814
3815                         /* Even if under locale, set the bits for non-locale
3816                          * in case it isn't a true locale-node.  This will
3817                          * create false positives if it truly is locale */
3818                         if (OP(scan) == ALNUMU) {
3819                             for (value = 0; value < 256; value++) {
3820                                 if (isWORDCHAR_L1(value)) {
3821                                     ANYOF_BITMAP_SET(data->start_class, value);
3822                                 }
3823                             }
3824                         } else {
3825                             for (value = 0; value < 256; value++) {
3826                                 if (isALNUM(value)) {
3827                                     ANYOF_BITMAP_SET(data->start_class, value);
3828                                 }
3829                             }
3830                         }
3831                     }
3832                     break;
3833                 case NALNUM:
3834                     if (flags & SCF_DO_STCLASS_AND) {
3835                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
3836                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_ALNUM);
3837                             if (OP(scan) == NALNUMU) {
3838                                 for (value = 0; value < 256; value++) {
3839                                     if (isWORDCHAR_L1(value)) {
3840                                         ANYOF_BITMAP_CLEAR(data->start_class, value);
3841                                     }
3842                                 }
3843                             } else {
3844                                 for (value = 0; value < 256; value++) {
3845                                     if (isALNUM(value)) {
3846                                         ANYOF_BITMAP_CLEAR(data->start_class, value);
3847                                     }
3848                                 }
3849                             }
3850                         }
3851                     }
3852                     else {
3853                         if (data->start_class->flags & ANYOF_LOCALE)
3854                             ANYOF_CLASS_SET(data->start_class,ANYOF_NALNUM);
3855
3856                         /* Even if under locale, set the bits for non-locale in
3857                          * case it isn't a true locale-node.  This will create
3858                          * false positives if it truly is locale */
3859                         if (OP(scan) == NALNUMU) {
3860                             for (value = 0; value < 256; value++) {
3861                                 if (! isWORDCHAR_L1(value)) {
3862                                     ANYOF_BITMAP_SET(data->start_class, value);
3863                                 }
3864                             }
3865                         } else {
3866                             for (value = 0; value < 256; value++) {
3867                                 if (! isALNUM(value)) {
3868                                     ANYOF_BITMAP_SET(data->start_class, value);
3869                                 }
3870                             }
3871                         }
3872                     }
3873                     break;
3874                 case SPACE:
3875                     if (flags & SCF_DO_STCLASS_AND) {
3876                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
3877                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_NSPACE);
3878                             if (OP(scan) == SPACEU) {
3879                                 for (value = 0; value < 256; value++) {
3880                                     if (!isSPACE_L1(value)) {
3881                                         ANYOF_BITMAP_CLEAR(data->start_class, value);
3882                                     }
3883                                 }
3884                             } else {
3885                                 for (value = 0; value < 256; value++) {
3886                                     if (!isSPACE(value)) {
3887                                         ANYOF_BITMAP_CLEAR(data->start_class, value);
3888                                     }
3889                                 }
3890                             }
3891                         }
3892                     }
3893                     else {
3894                         if (data->start_class->flags & ANYOF_LOCALE) {
3895                             ANYOF_CLASS_SET(data->start_class,ANYOF_SPACE);
3896                         }
3897                         if (OP(scan) == SPACEU) {
3898                             for (value = 0; value < 256; value++) {
3899                                 if (isSPACE_L1(value)) {
3900                                     ANYOF_BITMAP_SET(data->start_class, value);
3901                                 }
3902                             }
3903                         } else {
3904                             for (value = 0; value < 256; value++) {
3905                                 if (isSPACE(value)) {
3906                                     ANYOF_BITMAP_SET(data->start_class, value);
3907                                 }
3908                             }
3909                         }
3910                     }
3911                     break;
3912                 case NSPACE:
3913                     if (flags & SCF_DO_STCLASS_AND) {
3914                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
3915                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_SPACE);
3916                             if (OP(scan) == NSPACEU) {
3917                                 for (value = 0; value < 256; value++) {
3918                                     if (isSPACE_L1(value)) {
3919                                         ANYOF_BITMAP_CLEAR(data->start_class, value);
3920                                     }
3921                                 }
3922                             } else {
3923                                 for (value = 0; value < 256; value++) {
3924                                     if (isSPACE(value)) {
3925                                         ANYOF_BITMAP_CLEAR(data->start_class, value);
3926                                     }
3927                                 }
3928                             }
3929                         }
3930                     }
3931                     else {
3932                         if (data->start_class->flags & ANYOF_LOCALE)
3933                             ANYOF_CLASS_SET(data->start_class,ANYOF_NSPACE);
3934                         if (OP(scan) == NSPACEU) {
3935                             for (value = 0; value < 256; value++) {
3936                                 if (!isSPACE_L1(value)) {
3937                                     ANYOF_BITMAP_SET(data->start_class, value);
3938                                 }
3939                             }
3940                         }
3941                         else {
3942                             for (value = 0; value < 256; value++) {
3943                                 if (!isSPACE(value)) {
3944                                     ANYOF_BITMAP_SET(data->start_class, value);
3945                                 }
3946                             }
3947                         }
3948                     }
3949                     break;
3950                 case DIGIT:
3951                     if (flags & SCF_DO_STCLASS_AND) {
3952                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
3953                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_NDIGIT);
3954                             for (value = 0; value < 256; value++)
3955                                 if (!isDIGIT(value))
3956                                     ANYOF_BITMAP_CLEAR(data->start_class, value);
3957                         }
3958                     }
3959                     else {
3960                         if (data->start_class->flags & ANYOF_LOCALE)
3961                             ANYOF_CLASS_SET(data->start_class,ANYOF_DIGIT);
3962                         for (value = 0; value < 256; value++)
3963                             if (isDIGIT(value))
3964                                 ANYOF_BITMAP_SET(data->start_class, value);
3965                     }
3966                     break;
3967                 case NDIGIT:
3968                     if (flags & SCF_DO_STCLASS_AND) {
3969                         if (!(data->start_class->flags & ANYOF_LOCALE))
3970                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_DIGIT);
3971                         for (value = 0; value < 256; value++)
3972                             if (isDIGIT(value))
3973                                 ANYOF_BITMAP_CLEAR(data->start_class, value);
3974                     }
3975                     else {
3976                         if (data->start_class->flags & ANYOF_LOCALE)
3977                             ANYOF_CLASS_SET(data->start_class,ANYOF_NDIGIT);
3978                         for (value = 0; value < 256; value++)
3979                             if (!isDIGIT(value))
3980                                 ANYOF_BITMAP_SET(data->start_class, value);
3981                     }
3982                     break;
3983                 CASE_SYNST_FNC(VERTWS);
3984                 CASE_SYNST_FNC(HORIZWS);
3985
3986                 }
3987                 if (flags & SCF_DO_STCLASS_OR)
3988                     cl_and(data->start_class, and_withp);
3989                 flags &= ~SCF_DO_STCLASS;
3990             }
3991         }
3992         else if (PL_regkind[OP(scan)] == EOL && flags & SCF_DO_SUBSTR) {
3993             data->flags |= (OP(scan) == MEOL
3994                             ? SF_BEFORE_MEOL
3995                             : SF_BEFORE_SEOL);
3996         }
3997         else if (  PL_regkind[OP(scan)] == BRANCHJ
3998                  /* Lookbehind, or need to calculate parens/evals/stclass: */
3999                    && (scan->flags || data || (flags & SCF_DO_STCLASS))
4000                    && (OP(scan) == IFMATCH || OP(scan) == UNLESSM)) {
4001             if ( !PERL_ENABLE_POSITIVE_ASSERTION_STUDY 
4002                 || OP(scan) == UNLESSM )
4003             {
4004                 /* Negative Lookahead/lookbehind
4005                    In this case we can't do fixed string optimisation.
4006                 */
4007
4008                 I32 deltanext, minnext, fake = 0;
4009                 regnode *nscan;
4010                 struct regnode_charclass_class intrnl;
4011                 int f = 0;
4012
4013                 data_fake.flags = 0;
4014                 if (data) {
4015                     data_fake.whilem_c = data->whilem_c;
4016                     data_fake.last_closep = data->last_closep;
4017                 }
4018                 else
4019                     data_fake.last_closep = &fake;
4020                 data_fake.pos_delta = delta;
4021                 if ( flags & SCF_DO_STCLASS && !scan->flags
4022                      && OP(scan) == IFMATCH ) { /* Lookahead */
4023                     cl_init(pRExC_state, &intrnl);
4024                     data_fake.start_class = &intrnl;
4025                     f |= SCF_DO_STCLASS_AND;
4026                 }
4027                 if (flags & SCF_WHILEM_VISITED_POS)
4028                     f |= SCF_WHILEM_VISITED_POS;
4029                 next = regnext(scan);
4030                 nscan = NEXTOPER(NEXTOPER(scan));
4031                 minnext = study_chunk(pRExC_state, &nscan, minlenp, &deltanext, 
4032                     last, &data_fake, stopparen, recursed, NULL, f, depth+1);
4033                 if (scan->flags) {
4034                     if (deltanext) {
4035                         FAIL("Variable length lookbehind not implemented");
4036                     }
4037                     else if (minnext > (I32)U8_MAX) {
4038                         FAIL2("Lookbehind longer than %"UVuf" not implemented", (UV)U8_MAX);
4039                     }
4040                     scan->flags = (U8)minnext;
4041                 }
4042                 if (data) {
4043                     if (data_fake.flags & (SF_HAS_PAR|SF_IN_PAR))
4044                         pars++;
4045                     if (data_fake.flags & SF_HAS_EVAL)
4046                         data->flags |= SF_HAS_EVAL;
4047                     data->whilem_c = data_fake.whilem_c;
4048                 }
4049                 if (f & SCF_DO_STCLASS_AND) {
4050                     if (flags & SCF_DO_STCLASS_OR) {
4051                         /* OR before, AND after: ideally we would recurse with
4052                          * data_fake to get the AND applied by study of the
4053                          * remainder of the pattern, and then derecurse;
4054                          * *** HACK *** for now just treat as "no information".
4055                          * See [perl #56690].
4056                          */
4057                         cl_init(pRExC_state, data->start_class);
4058                     }  else {
4059                         /* AND before and after: combine and continue */
4060                         const int was = (data->start_class->flags & ANYOF_EOS);
4061
4062                         cl_and(data->start_class, &intrnl);
4063                         if (was)
4064                             data->start_class->flags |= ANYOF_EOS;
4065                     }
4066                 }
4067             }
4068 #if PERL_ENABLE_POSITIVE_ASSERTION_STUDY
4069             else {
4070                 /* Positive Lookahead/lookbehind
4071                    In this case we can do fixed string optimisation,
4072                    but we must be careful about it. Note in the case of
4073                    lookbehind the positions will be offset by the minimum
4074                    length of the pattern, something we won't know about
4075                    until after the recurse.
4076                 */
4077                 I32 deltanext, fake = 0;
4078                 regnode *nscan;
4079                 struct regnode_charclass_class intrnl;
4080                 int f = 0;
4081                 /* We use SAVEFREEPV so that when the full compile 
4082                     is finished perl will clean up the allocated 
4083                     minlens when it's all done. This way we don't
4084                     have to worry about freeing them when we know
4085                     they wont be used, which would be a pain.
4086                  */
4087                 I32 *minnextp;
4088                 Newx( minnextp, 1, I32 );
4089                 SAVEFREEPV(minnextp);
4090
4091                 if (data) {
4092                     StructCopy(data, &data_fake, scan_data_t);
4093                     if ((flags & SCF_DO_SUBSTR) && data->last_found) {
4094                         f |= SCF_DO_SUBSTR;
4095                         if (scan->flags) 
4096                             SCAN_COMMIT(pRExC_state, &data_fake,minlenp);
4097                         data_fake.last_found=newSVsv(data->last_found);
4098                     }
4099                 }
4100                 else
4101                     data_fake.last_closep = &fake;
4102                 data_fake.flags = 0;
4103                 data_fake.pos_delta = delta;
4104                 if (is_inf)
4105                     data_fake.flags |= SF_IS_INF;
4106                 if ( flags & SCF_DO_STCLASS && !scan->flags
4107                      && OP(scan) == IFMATCH ) { /* Lookahead */
4108                     cl_init(pRExC_state, &intrnl);
4109                     data_fake.start_class = &intrnl;
4110                     f |= SCF_DO_STCLASS_AND;
4111                 }
4112                 if (flags & SCF_WHILEM_VISITED_POS)
4113                     f |= SCF_WHILEM_VISITED_POS;
4114                 next = regnext(scan);
4115                 nscan = NEXTOPER(NEXTOPER(scan));
4116
4117                 *minnextp = study_chunk(pRExC_state, &nscan, minnextp, &deltanext, 
4118                     last, &data_fake, stopparen, recursed, NULL, f,depth+1);
4119                 if (scan->flags) {
4120                     if (deltanext) {
4121                         FAIL("Variable length lookbehind not implemented");
4122                     }
4123                     else if (*minnextp > (I32)U8_MAX) {
4124                         FAIL2("Lookbehind longer than %"UVuf" not implemented", (UV)U8_MAX);
4125                     }
4126                     scan->flags = (U8)*minnextp;
4127                 }
4128
4129                 *minnextp += min;
4130
4131                 if (f & SCF_DO_STCLASS_AND) {
4132                     const int was = (data->start_class->flags & ANYOF_EOS);
4133
4134                     cl_and(data->start_class, &intrnl);
4135                     if (was)
4136                         data->start_class->flags |= ANYOF_EOS;
4137                 }
4138                 if (data) {
4139                     if (data_fake.flags & (SF_HAS_PAR|SF_IN_PAR))
4140                         pars++;
4141                     if (data_fake.flags & SF_HAS_EVAL)
4142                         data->flags |= SF_HAS_EVAL;
4143                     data->whilem_c = data_fake.whilem_c;
4144                     if ((flags & SCF_DO_SUBSTR) && data_fake.last_found) {
4145                         if (RExC_rx->minlen<*minnextp)
4146                             RExC_rx->minlen=*minnextp;
4147                         SCAN_COMMIT(pRExC_state, &data_fake, minnextp);
4148                         SvREFCNT_dec(data_fake.last_found);
4149                         
4150                         if ( data_fake.minlen_fixed != minlenp ) 
4151                         {
4152                             data->offset_fixed= data_fake.offset_fixed;
4153                             data->minlen_fixed= data_fake.minlen_fixed;
4154                             data->lookbehind_fixed+= scan->flags;
4155                         }
4156                         if ( data_fake.minlen_float != minlenp )
4157                         {
4158                             data->minlen_float= data_fake.minlen_float;
4159                             data->offset_float_min=data_fake.offset_float_min;
4160                             data->offset_float_max=data_fake.offset_float_max;
4161                             data->lookbehind_float+= scan->flags;
4162                         }
4163                     }
4164                 }
4165
4166
4167             }
4168 #endif
4169         }
4170         else if (OP(scan) == OPEN) {
4171             if (stopparen != (I32)ARG(scan))
4172                 pars++;
4173         }
4174         else if (OP(scan) == CLOSE) {
4175             if (stopparen == (I32)ARG(scan)) {
4176                 break;
4177             }
4178             if ((I32)ARG(scan) == is_par) {
4179                 next = regnext(scan);
4180
4181                 if ( next && (OP(next) != WHILEM) && next < last)
4182                     is_par = 0;         /* Disable optimization */
4183             }
4184             if (data)
4185                 *(data->last_closep) = ARG(scan);
4186         }
4187         else if (OP(scan) == EVAL) {
4188                 if (data)
4189                     data->flags |= SF_HAS_EVAL;
4190         }
4191         else if ( PL_regkind[OP(scan)] == ENDLIKE ) {
4192             if (flags & SCF_DO_SUBSTR) {
4193                 SCAN_COMMIT(pRExC_state,data,minlenp);
4194                 flags &= ~SCF_DO_SUBSTR;
4195             }
4196             if (data && OP(scan)==ACCEPT) {
4197                 data->flags |= SCF_SEEN_ACCEPT;
4198                 if (stopmin > min)
4199                     stopmin = min;
4200             }
4201         }
4202         else if (OP(scan) == LOGICAL && scan->flags == 2) /* Embedded follows */
4203         {
4204                 if (flags & SCF_DO_SUBSTR) {
4205                     SCAN_COMMIT(pRExC_state,data,minlenp);
4206                     data->longest = &(data->longest_float);
4207                 }
4208                 is_inf = is_inf_internal = 1;
4209                 if (flags & SCF_DO_STCLASS_OR) /* Allow everything */
4210                     cl_anything(pRExC_state, data->start_class);
4211                 flags &= ~SCF_DO_STCLASS;
4212         }
4213         else if (OP(scan) == GPOS) {
4214             if (!(RExC_rx->extflags & RXf_GPOS_FLOAT) &&
4215                 !(delta || is_inf || (data && data->pos_delta))) 
4216             {
4217                 if (!(RExC_rx->extflags & RXf_ANCH) && (flags & SCF_DO_SUBSTR))
4218                     RExC_rx->extflags |= RXf_ANCH_GPOS;
4219                 if (RExC_rx->gofs < (U32)min)
4220                     RExC_rx->gofs = min;
4221             } else {
4222                 RExC_rx->extflags |= RXf_GPOS_FLOAT;
4223                 RExC_rx->gofs = 0;
4224             }       
4225         }
4226 #ifdef TRIE_STUDY_OPT
4227 #ifdef FULL_TRIE_STUDY
4228         else if (PL_regkind[OP(scan)] == TRIE) {
4229             /* NOTE - There is similar code to this block above for handling
4230                BRANCH nodes on the initial study.  If you change stuff here
4231                check there too. */
4232             regnode *trie_node= scan;
4233             regnode *tail= regnext(scan);
4234             reg_trie_data *trie = (reg_trie_data*)RExC_rxi->data->data[ ARG(scan) ];
4235             I32 max1 = 0, min1 = I32_MAX;
4236             struct regnode_charclass_class accum;
4237
4238             if (flags & SCF_DO_SUBSTR) /* XXXX Add !SUSPEND? */
4239                 SCAN_COMMIT(pRExC_state, data,minlenp); /* Cannot merge strings after this. */
4240             if (flags & SCF_DO_STCLASS)
4241                 cl_init_zero(pRExC_state, &accum);
4242                 
4243             if (!trie->jump) {
4244                 min1= trie->minlen;
4245                 max1= trie->maxlen;
4246             } else {
4247                 const regnode *nextbranch= NULL;
4248                 U32 word;
4249                 
4250                 for ( word=1 ; word <= trie->wordcount ; word++) 
4251                 {
4252                     I32 deltanext=0, minnext=0, f = 0, fake;
4253                     struct regnode_charclass_class this_class;
4254                     
4255                     data_fake.flags = 0;
4256                     if (data) {
4257                         data_fake.whilem_c = data->whilem_c;
4258                         data_fake.last_closep = data->last_closep;
4259                     }
4260                     else
4261                         data_fake.last_closep = &fake;
4262                     data_fake.pos_delta = delta;
4263                     if (flags & SCF_DO_STCLASS) {
4264                         cl_init(pRExC_state, &this_class);
4265                         data_fake.start_class = &this_class;
4266                         f = SCF_DO_STCLASS_AND;
4267                     }
4268                     if (flags & SCF_WHILEM_VISITED_POS)
4269                         f |= SCF_WHILEM_VISITED_POS;
4270     
4271                     if (trie->jump[word]) {
4272                         if (!nextbranch)
4273                             nextbranch = trie_node + trie->jump[0];
4274                         scan= trie_node + trie->jump[word];
4275                         /* We go from the jump point to the branch that follows
4276                            it. Note this means we need the vestigal unused branches
4277                            even though they arent otherwise used.
4278                          */
4279                         minnext = study_chunk(pRExC_state, &scan, minlenp, 
4280                             &deltanext, (regnode *)nextbranch, &data_fake, 
4281                             stopparen, recursed, NULL, f,depth+1);
4282                     }
4283                     if (nextbranch && PL_regkind[OP(nextbranch)]==BRANCH)
4284                         nextbranch= regnext((regnode*)nextbranch);
4285                     
4286                     if (min1 > (I32)(minnext + trie->minlen))
4287                         min1 = minnext + trie->minlen;
4288                     if (max1 < (I32)(minnext + deltanext + trie->maxlen))
4289                         max1 = minnext + deltanext + trie->maxlen;
4290                     if (deltanext == I32_MAX)
4291                         is_inf = is_inf_internal = 1;
4292                     
4293                     if (data_fake.flags & (SF_HAS_PAR|SF_IN_PAR))
4294                         pars++;
4295                     if (data_fake.flags & SCF_SEEN_ACCEPT) {
4296                         if ( stopmin > min + min1) 
4297                             stopmin = min + min1;
4298                         flags &= ~SCF_DO_SUBSTR;
4299                         if (data)
4300                             data->flags |= SCF_SEEN_ACCEPT;
4301                     }
4302                     if (data) {
4303                         if (data_fake.flags & SF_HAS_EVAL)
4304                             data->flags |= SF_HAS_EVAL;
4305                         data->whilem_c = data_fake.whilem_c;
4306                     }
4307                     if (flags & SCF_DO_STCLASS)
4308                         cl_or(pRExC_state, &accum, &this_class);
4309                 }
4310             }
4311             if (flags & SCF_DO_SUBSTR) {
4312                 data->pos_min += min1;
4313                 data->pos_delta += max1 - min1;
4314                 if (max1 != min1 || is_inf)
4315                     data->longest = &(data->longest_float);
4316             }
4317             min += min1;
4318             delta += max1 - min1;
4319             if (flags & SCF_DO_STCLASS_OR) {
4320                 cl_or(pRExC_state, data->start_class, &accum);
4321                 if (min1) {
4322                     cl_and(data->start_class, and_withp);
4323                     flags &= ~SCF_DO_STCLASS;
4324                 }
4325             }
4326             else if (flags & SCF_DO_STCLASS_AND) {
4327                 if (min1) {
4328                     cl_and(data->start_class, &accum);
4329                     flags &= ~SCF_DO_STCLASS;
4330                 }
4331                 else {
4332                     /* Switch to OR mode: cache the old value of
4333                      * data->start_class */
4334                     INIT_AND_WITHP;
4335                     StructCopy(data->start_class, and_withp,
4336                                struct regnode_charclass_class);
4337                     flags &= ~SCF_DO_STCLASS_AND;
4338                     StructCopy(&accum, data->start_class,
4339                                struct regnode_charclass_class);
4340                     flags |= SCF_DO_STCLASS_OR;
4341                     data->start_class->flags |= ANYOF_EOS;
4342                 }
4343             }
4344             scan= tail;
4345             continue;
4346         }
4347 #else
4348         else if (PL_regkind[OP(scan)] == TRIE) {
4349             reg_trie_data *trie = (reg_trie_data*)RExC_rxi->data->data[ ARG(scan) ];
4350             U8*bang=NULL;
4351             
4352             min += trie->minlen;
4353             delta += (trie->maxlen - trie->minlen);
4354             flags &= ~SCF_DO_STCLASS; /* xxx */
4355             if (flags & SCF_DO_SUBSTR) {
4356                 SCAN_COMMIT(pRExC_state,data,minlenp);  /* Cannot expect anything... */
4357                 data->pos_min += trie->minlen;
4358                 data->pos_delta += (trie->maxlen - trie->minlen);
4359                 if (trie->maxlen != trie->minlen)
4360                     data->longest = &(data->longest_float);
4361             }
4362             if (trie->jump) /* no more substrings -- for now /grr*/
4363                 flags &= ~SCF_DO_SUBSTR; 
4364         }
4365 #endif /* old or new */
4366 #endif /* TRIE_STUDY_OPT */
4367
4368         /* Else: zero-length, ignore. */
4369         scan = regnext(scan);
4370     }
4371     if (frame) {
4372         last = frame->last;
4373         scan = frame->next;
4374         stopparen = frame->stop;
4375         frame = frame->prev;
4376         goto fake_study_recurse;
4377     }
4378
4379   finish:
4380     assert(!frame);
4381     DEBUG_STUDYDATA("pre-fin:",data,depth);
4382
4383     *scanp = scan;
4384     *deltap = is_inf_internal ? I32_MAX : delta;
4385     if (flags & SCF_DO_SUBSTR && is_inf)
4386         data->pos_delta = I32_MAX - data->pos_min;
4387     if (is_par > (I32)U8_MAX)
4388         is_par = 0;
4389     if (is_par && pars==1 && data) {
4390         data->flags |= SF_IN_PAR;
4391         data->flags &= ~SF_HAS_PAR;
4392     }
4393     else if (pars && data) {
4394         data->flags |= SF_HAS_PAR;
4395         data->flags &= ~SF_IN_PAR;
4396     }
4397     if (flags & SCF_DO_STCLASS_OR)
4398         cl_and(data->start_class, and_withp);
4399     if (flags & SCF_TRIE_RESTUDY)
4400         data->flags |=  SCF_TRIE_RESTUDY;
4401     
4402     DEBUG_STUDYDATA("post-fin:",data,depth);
4403     
4404     return min < stopmin ? min : stopmin;
4405 }
4406
4407 STATIC U32
4408 S_add_data(RExC_state_t *pRExC_state, U32 n, const char *s)
4409 {
4410     U32 count = RExC_rxi->data ? RExC_rxi->data->count : 0;
4411
4412     PERL_ARGS_ASSERT_ADD_DATA;
4413
4414     Renewc(RExC_rxi->data,
4415            sizeof(*RExC_rxi->data) + sizeof(void*) * (count + n - 1),
4416            char, struct reg_data);
4417     if(count)
4418         Renew(RExC_rxi->data->what, count + n, U8);
4419     else
4420         Newx(RExC_rxi->data->what, n, U8);
4421     RExC_rxi->data->count = count + n;
4422     Copy(s, RExC_rxi->data->what + count, n, U8);
4423     return count;
4424 }
4425
4426 /*XXX: todo make this not included in a non debugging perl */
4427 #ifndef PERL_IN_XSUB_RE
4428 void
4429 Perl_reginitcolors(pTHX)
4430 {
4431     dVAR;
4432     const char * const s = PerlEnv_getenv("PERL_RE_COLORS");
4433     if (s) {
4434         char *t = savepv(s);
4435         int i = 0;
4436         PL_colors[0] = t;
4437         while (++i < 6) {
4438             t = strchr(t, '\t');
4439             if (t) {
4440                 *t = '\0';
4441                 PL_colors[i] = ++t;
4442             }
4443             else
4444                 PL_colors[i] = t = (char *)"";
4445         }
4446     } else {
4447         int i = 0;
4448         while (i < 6)
4449             PL_colors[i++] = (char *)"";
4450     }
4451     PL_colorset = 1;
4452 }
4453 #endif
4454
4455
4456 #ifdef TRIE_STUDY_OPT
4457 #define CHECK_RESTUDY_GOTO                                  \
4458         if (                                                \
4459               (data.flags & SCF_TRIE_RESTUDY)               \
4460               && ! restudied++                              \
4461         )     goto reStudy
4462 #else
4463 #define CHECK_RESTUDY_GOTO
4464 #endif        
4465
4466 /*
4467  - pregcomp - compile a regular expression into internal code
4468  *
4469  * We can't allocate space until we know how big the compiled form will be,
4470  * but we can't compile it (and thus know how big it is) until we've got a
4471  * place to put the code.  So we cheat:  we compile it twice, once with code
4472  * generation turned off and size counting turned on, and once "for real".
4473  * This also means that we don't allocate space until we are sure that the
4474  * thing really will compile successfully, and we never have to move the
4475  * code and thus invalidate pointers into it.  (Note that it has to be in
4476  * one piece because free() must be able to free it all.) [NB: not true in perl]
4477  *
4478  * Beware that the optimization-preparation code in here knows about some
4479  * of the structure of the compiled regexp.  [I'll say.]
4480  */
4481
4482
4483
4484 #ifndef PERL_IN_XSUB_RE
4485 #define RE_ENGINE_PTR &PL_core_reg_engine
4486 #else
4487 extern const struct regexp_engine my_reg_engine;
4488 #define RE_ENGINE_PTR &my_reg_engine
4489 #endif
4490
4491 #ifndef PERL_IN_XSUB_RE 
4492 REGEXP *
4493 Perl_pregcomp(pTHX_ SV * const pattern, const U32 flags)
4494 {
4495     dVAR;
4496     HV * const table = GvHV(PL_hintgv);
4497
4498     PERL_ARGS_ASSERT_PREGCOMP;
4499
4500     /* Dispatch a request to compile a regexp to correct 
4501        regexp engine. */
4502     if (table) {
4503         SV **ptr= hv_fetchs(table, "regcomp", FALSE);
4504         GET_RE_DEBUG_FLAGS_DECL;
4505         if (ptr && SvIOK(*ptr) && SvIV(*ptr)) {
4506             const regexp_engine *eng=INT2PTR(regexp_engine*,SvIV(*ptr));
4507             DEBUG_COMPILE_r({
4508                 PerlIO_printf(Perl_debug_log, "Using engine %"UVxf"\n",
4509                     SvIV(*ptr));
4510             });            
4511             return CALLREGCOMP_ENG(eng, pattern, flags);
4512         } 
4513     }
4514     return Perl_re_compile(aTHX_ pattern, flags);
4515 }
4516 #endif
4517
4518 REGEXP *
4519 Perl_re_compile(pTHX_ SV * const pattern, U32 orig_pm_flags)
4520 {
4521     dVAR;
4522     REGEXP *rx;
4523     struct regexp *r;
4524     register regexp_internal *ri;
4525     STRLEN plen;
4526     char* VOL exp;
4527     char* xend;
4528     regnode *scan;
4529     I32 flags;
4530     I32 minlen = 0;
4531     U32 pm_flags;
4532
4533     /* these are all flags - maybe they should be turned
4534      * into a single int with different bit masks */
4535     I32 sawlookahead = 0;
4536     I32 sawplus = 0;
4537     I32 sawopen = 0;
4538     bool used_setjump = FALSE;
4539     regex_charset initial_charset = get_regex_charset(orig_pm_flags);
4540
4541     U8 jump_ret = 0;
4542     dJMPENV;
4543     scan_data_t data;
4544     RExC_state_t RExC_state;
4545     RExC_state_t * const pRExC_state = &RExC_state;
4546 #ifdef TRIE_STUDY_OPT    
4547     int restudied;
4548     RExC_state_t copyRExC_state;
4549 #endif    
4550     GET_RE_DEBUG_FLAGS_DECL;
4551
4552     PERL_ARGS_ASSERT_RE_COMPILE;
4553
4554     DEBUG_r(if (!PL_colorset) reginitcolors());
4555
4556     exp = SvPV(pattern, plen);
4557
4558     if (plen == 0) { /* ignore the utf8ness if the pattern is 0 length */
4559         RExC_utf8 = RExC_orig_utf8 = 0;
4560     }
4561     else {
4562         RExC_utf8 = RExC_orig_utf8 = SvUTF8(pattern);
4563     }
4564     RExC_uni_semantics = 0;
4565     RExC_contains_locale = 0;
4566
4567     /****************** LONG JUMP TARGET HERE***********************/
4568     /* Longjmp back to here if have to switch in midstream to utf8 */
4569     if (! RExC_orig_utf8) {
4570         JMPENV_PUSH(jump_ret);
4571         used_setjump = TRUE;
4572     }
4573
4574     if (jump_ret == 0) {    /* First time through */
4575         xend = exp + plen;
4576
4577         DEBUG_COMPILE_r({
4578             SV *dsv= sv_newmortal();
4579             RE_PV_QUOTED_DECL(s, RExC_utf8,
4580                 dsv, exp, plen, 60);
4581             PerlIO_printf(Perl_debug_log, "%sCompiling REx%s %s\n",
4582                            PL_colors[4],PL_colors[5],s);
4583         });
4584     }
4585     else {  /* longjumped back */
4586         STRLEN len = plen;
4587
4588         /* If the cause for the longjmp was other than changing to utf8, pop
4589          * our own setjmp, and longjmp to the correct handler */
4590         if (jump_ret != UTF8_LONGJMP) {
4591             JMPENV_POP;
4592             JMPENV_JUMP(jump_ret);
4593         }
4594
4595         GET_RE_DEBUG_FLAGS;
4596
4597         /* It's possible to write a regexp in ascii that represents Unicode
4598         codepoints outside of the byte range, such as via \x{100}. If we
4599         detect such a sequence we have to convert the entire pattern to utf8
4600         and then recompile, as our sizing calculation will have been based
4601         on 1 byte == 1 character, but we will need to use utf8 to encode
4602         at least some part of the pattern, and therefore must convert the whole
4603         thing.
4604         -- dmq */
4605         DEBUG_PARSE_r(PerlIO_printf(Perl_debug_log,
4606             "UTF8 mismatch! Converting to utf8 for resizing and compile\n"));
4607         exp = (char*)Perl_bytes_to_utf8(aTHX_
4608                                         (U8*)SvPV_nomg(pattern, plen),
4609                                         &len);
4610         xend = exp + len;
4611         RExC_orig_utf8 = RExC_utf8 = 1;
4612         SAVEFREEPV(exp);
4613     }
4614
4615 #ifdef TRIE_STUDY_OPT
4616     restudied = 0;
4617 #endif
4618
4619     pm_flags = orig_pm_flags;
4620
4621     if (initial_charset == REGEX_LOCALE_CHARSET) {
4622         RExC_contains_locale = 1;
4623     }
4624     else if (RExC_utf8 && initial_charset == REGEX_DEPENDS_CHARSET) {
4625
4626         /* Set to use unicode semantics if the pattern is in utf8 and has the
4627          * 'depends' charset specified, as it means unicode when utf8  */
4628         set_regex_charset(&pm_flags, REGEX_UNICODE_CHARSET);
4629     }
4630
4631     RExC_precomp = exp;
4632     RExC_flags = pm_flags;
4633     RExC_sawback = 0;
4634
4635     RExC_seen = 0;
4636     RExC_in_lookbehind = 0;
4637     RExC_seen_zerolen = *exp == '^' ? -1 : 0;
4638     RExC_seen_evals = 0;
4639     RExC_extralen = 0;
4640     RExC_override_recoding = 0;
4641
4642     /* First pass: determine size, legality. */
4643     RExC_parse = exp;
4644     RExC_start = exp;
4645     RExC_end = xend;
4646     RExC_naughty = 0;
4647     RExC_npar = 1;
4648     RExC_nestroot = 0;
4649     RExC_size = 0L;
4650     RExC_emit = &PL_regdummy;
4651     RExC_whilem_seen = 0;
4652     RExC_open_parens = NULL;
4653     RExC_close_parens = NULL;
4654     RExC_opend = NULL;
4655     RExC_paren_names = NULL;
4656 #ifdef DEBUGGING
4657     RExC_paren_name_list = NULL;
4658 #endif
4659     RExC_recurse = NULL;
4660     RExC_recurse_count = 0;
4661
4662 #if 0 /* REGC() is (currently) a NOP at the first pass.
4663        * Clever compilers notice this and complain. --jhi */
4664     REGC((U8)REG_MAGIC, (char*)RExC_emit);
4665 #endif
4666     DEBUG_PARSE_r(
4667         PerlIO_printf(Perl_debug_log, "Starting first pass (sizing)\n");
4668         RExC_lastnum=0;
4669         RExC_lastparse=NULL;
4670     );
4671     if (reg(pRExC_state, 0, &flags,1) == NULL) {
4672         RExC_precomp = NULL;
4673         return(NULL);
4674     }
4675
4676     /* Here, finished first pass.  Get rid of any added setjmp */
4677     if (used_setjump) {
4678         JMPENV_POP;
4679     }
4680
4681     DEBUG_PARSE_r({
4682         PerlIO_printf(Perl_debug_log, 
4683             "Required size %"IVdf" nodes\n"
4684             "Starting second pass (creation)\n", 
4685             (IV)RExC_size);
4686         RExC_lastnum=0; 
4687         RExC_lastparse=NULL; 
4688     });
4689
4690     /* The first pass could have found things that force Unicode semantics */
4691     if ((RExC_utf8 || RExC_uni_semantics)
4692          && get_regex_charset(pm_flags) == REGEX_DEPENDS_CHARSET)
4693     {
4694         set_regex_charset(&pm_flags, REGEX_UNICODE_CHARSET);
4695     }
4696
4697     /* Small enough for pointer-storage convention?
4698        If extralen==0, this means that we will not need long jumps. */
4699     if (RExC_size >= 0x10000L && RExC_extralen)
4700         RExC_size += RExC_extralen;
4701     else
4702         RExC_extralen = 0;
4703     if (RExC_whilem_seen > 15)
4704         RExC_whilem_seen = 15;
4705
4706     /* Allocate space and zero-initialize. Note, the two step process 
4707        of zeroing when in debug mode, thus anything assigned has to 
4708        happen after that */
4709     rx = (REGEXP*) newSV_type(SVt_REGEXP);
4710     r = (struct regexp*)SvANY(rx);
4711     Newxc(ri, sizeof(regexp_internal) + (unsigned)RExC_size * sizeof(regnode),
4712          char, regexp_internal);
4713     if ( r == NULL || ri == NULL )
4714         FAIL("Regexp out of space");
4715 #ifdef DEBUGGING
4716     /* avoid reading uninitialized memory in DEBUGGING code in study_chunk() */
4717     Zero(ri, sizeof(regexp_internal) + (unsigned)RExC_size * sizeof(regnode), char);
4718 #else 
4719     /* bulk initialize base fields with 0. */
4720     Zero(ri, sizeof(regexp_internal), char);        
4721 #endif
4722
4723     /* non-zero initialization begins here */
4724     RXi_SET( r, ri );
4725     r->engine= RE_ENGINE_PTR;
4726     r->extflags = pm_flags;
4727     {
4728         bool has_p     = ((r->extflags & RXf_PMf_KEEPCOPY) == RXf_PMf_KEEPCOPY);
4729         bool has_charset = (get_regex_charset(r->extflags) != REGEX_DEPENDS_CHARSET);
4730
4731         /* The caret is output if there are any defaults: if not all the STD
4732          * flags are set, or if no character set specifier is needed */
4733         bool has_default =
4734                     (((r->extflags & RXf_PMf_STD_PMMOD) != RXf_PMf_STD_PMMOD)
4735                     || ! has_charset);
4736         bool has_runon = ((RExC_seen & REG_SEEN_RUN_ON_COMMENT)==REG_SEEN_RUN_ON_COMMENT);
4737         U16 reganch = (U16)((r->extflags & RXf_PMf_STD_PMMOD)
4738                             >> RXf_PMf_STD_PMMOD_SHIFT);
4739         const char *fptr = STD_PAT_MODS;        /*"msix"*/
4740         char *p;
4741         /* Allocate for the worst case, which is all the std flags are turned
4742          * on.  If more precision is desired, we could do a population count of
4743          * the flags set.  This could be done with a small lookup table, or by
4744          * shifting, masking and adding, or even, when available, assembly
4745          * language for a machine-language population count.
4746          * We never output a minus, as all those are defaults, so are
4747          * covered by the caret */
4748         const STRLEN wraplen = plen + has_p + has_runon
4749             + has_default       /* If needs a caret */
4750
4751                 /* If needs a character set specifier */
4752             + ((has_charset) ? MAX_CHARSET_NAME_LENGTH : 0)
4753             + (sizeof(STD_PAT_MODS) - 1)
4754             + (sizeof("(?:)") - 1);
4755
4756         p = sv_grow(MUTABLE_SV(rx), wraplen + 1); /* +1 for the ending NUL */
4757         SvPOK_on(rx);
4758         SvFLAGS(rx) |= SvUTF8(pattern);
4759         *p++='('; *p++='?';
4760
4761         /* If a default, cover it using the caret */
4762         if (has_default) {
4763             *p++= DEFAULT_PAT_MOD;
4764         }
4765         if (has_charset) {
4766             STRLEN len;
4767             const char* const name = get_regex_charset_name(r->extflags, &len);
4768             Copy(name, p, len, char);
4769             p += len;
4770         }
4771         if (has_p)
4772             *p++ = KEEPCOPY_PAT_MOD; /*'p'*/
4773         {
4774             char ch;
4775             while((ch = *fptr++)) {
4776                 if(reganch & 1)
4777                     *p++ = ch;
4778                 reganch >>= 1;
4779             }
4780         }
4781
4782         *p++ = ':';
4783         Copy(RExC_precomp, p, plen, char);
4784         assert ((RX_WRAPPED(rx) - p) < 16);
4785         r->pre_prefix = p - RX_WRAPPED(rx);
4786         p += plen;
4787         if (has_runon)
4788             *p++ = '\n';
4789         *p++ = ')';
4790         *p = 0;
4791         SvCUR_set(rx, p - SvPVX_const(rx));
4792     }
4793
4794     r->intflags = 0;
4795     r->nparens = RExC_npar - 1; /* set early to validate backrefs */
4796     
4797     if (RExC_seen & REG_SEEN_RECURSE) {
4798         Newxz(RExC_open_parens, RExC_npar,regnode *);
4799         SAVEFREEPV(RExC_open_parens);
4800         Newxz(RExC_close_parens,RExC_npar,regnode *);
4801         SAVEFREEPV(RExC_close_parens);
4802     }
4803
4804     /* Useful during FAIL. */
4805 #ifdef RE_TRACK_PATTERN_OFFSETS
4806     Newxz(ri->u.offsets, 2*RExC_size+1, U32); /* MJD 20001228 */
4807     DEBUG_OFFSETS_r(PerlIO_printf(Perl_debug_log,
4808                           "%s %"UVuf" bytes for offset annotations.\n",
4809                           ri->u.offsets ? "Got" : "Couldn't get",
4810                           (UV)((2*RExC_size+1) * sizeof(U32))));
4811 #endif
4812     SetProgLen(ri,RExC_size);
4813     RExC_rx_sv = rx;
4814     RExC_rx = r;
4815     RExC_rxi = ri;
4816
4817     /* Second pass: emit code. */
4818     RExC_flags = pm_flags;      /* don't let top level (?i) bleed */
4819     RExC_parse = exp;
4820     RExC_end = xend;
4821     RExC_naughty = 0;
4822     RExC_npar = 1;
4823     RExC_emit_start = ri->program;
4824     RExC_emit = ri->program;
4825     RExC_emit_bound = ri->program + RExC_size + 1;
4826
4827     /* Store the count of eval-groups for security checks: */
4828     RExC_rx->seen_evals = RExC_seen_evals;
4829     REGC((U8)REG_MAGIC, (char*) RExC_emit++);
4830     if (reg(pRExC_state, 0, &flags,1) == NULL) {
4831         ReREFCNT_dec(rx);   
4832         return(NULL);
4833     }
4834     /* XXXX To minimize changes to RE engine we always allocate
4835        3-units-long substrs field. */
4836     Newx(r->substrs, 1, struct reg_substr_data);
4837     if (RExC_recurse_count) {
4838         Newxz(RExC_recurse,RExC_recurse_count,regnode *);
4839         SAVEFREEPV(RExC_recurse);
4840     }
4841
4842 reStudy:
4843     r->minlen = minlen = sawlookahead = sawplus = sawopen = 0;
4844     Zero(r->substrs, 1, struct reg_substr_data);
4845
4846 #ifdef TRIE_STUDY_OPT
4847     if (!restudied) {
4848         StructCopy(&zero_scan_data, &data, scan_data_t);
4849         copyRExC_state = RExC_state;
4850     } else {
4851         U32 seen=RExC_seen;
4852         DEBUG_OPTIMISE_r(PerlIO_printf(Perl_debug_log,"Restudying\n"));
4853         
4854         RExC_state = copyRExC_state;
4855         if (seen & REG_TOP_LEVEL_BRANCHES) 
4856             RExC_seen |= REG_TOP_LEVEL_BRANCHES;
4857         else
4858             RExC_seen &= ~REG_TOP_LEVEL_BRANCHES;
4859         if (data.last_found) {
4860             SvREFCNT_dec(data.longest_fixed);
4861             SvREFCNT_dec(data.longest_float);
4862             SvREFCNT_dec(data.last_found);
4863         }
4864         StructCopy(&zero_scan_data, &data, scan_data_t);
4865     }
4866 #else
4867     StructCopy(&zero_scan_data, &data, scan_data_t);
4868 #endif    
4869
4870     /* Dig out information for optimizations. */
4871     r->extflags = RExC_flags; /* was pm_op */
4872     /*dmq: removed as part of de-PMOP: pm->op_pmflags = RExC_flags; */
4873  
4874     if (UTF)
4875         SvUTF8_on(rx);  /* Unicode in it? */
4876     ri->regstclass = NULL;
4877     if (RExC_naughty >= 10)     /* Probably an expensive pattern. */
4878         r->intflags |= PREGf_NAUGHTY;
4879     scan = ri->program + 1;             /* First BRANCH. */
4880
4881     /* testing for BRANCH here tells us whether there is "must appear"
4882        data in the pattern. If there is then we can use it for optimisations */
4883     if (!(RExC_seen & REG_TOP_LEVEL_BRANCHES)) { /*  Only one top-level choice. */
4884         I32 fake;
4885         STRLEN longest_float_length, longest_fixed_length;
4886         struct regnode_charclass_class ch_class; /* pointed to by data */
4887         int stclass_flag;
4888         I32 last_close = 0; /* pointed to by data */
4889         regnode *first= scan;
4890         regnode *first_next= regnext(first);
4891         /*
4892          * Skip introductions and multiplicators >= 1
4893          * so that we can extract the 'meat' of the pattern that must 
4894          * match in the large if() sequence following.
4895          * NOTE that EXACT is NOT covered here, as it is normally
4896          * picked up by the optimiser separately. 
4897          *
4898          * This is unfortunate as the optimiser isnt handling lookahead
4899          * properly currently.
4900          *
4901          */
4902         while ((OP(first) == OPEN && (sawopen = 1)) ||
4903                /* An OR of *one* alternative - should not happen now. */
4904             (OP(first) == BRANCH && OP(first_next) != BRANCH) ||
4905             /* for now we can't handle lookbehind IFMATCH*/
4906             (OP(first) == IFMATCH && !first->flags && (sawlookahead = 1)) ||
4907             (OP(first) == PLUS) ||
4908             (OP(first) == MINMOD) ||
4909                /* An {n,m} with n>0 */
4910             (PL_regkind[OP(first)] == CURLY && ARG1(first) > 0) ||
4911             (OP(first) == NOTHING && PL_regkind[OP(first_next)] != END ))
4912         {
4913                 /* 
4914                  * the only op that could be a regnode is PLUS, all the rest
4915                  * will be regnode_1 or regnode_2.
4916                  *
4917                  */
4918                 if (OP(first) == PLUS)
4919                     sawplus = 1;
4920                 else
4921                     first += regarglen[OP(first)];
4922
4923                 first = NEXTOPER(first);
4924                 first_next= regnext(first);
4925         }
4926
4927         /* Starting-point info. */
4928       again:
4929         DEBUG_PEEP("first:",first,0);
4930         /* Ignore EXACT as we deal with it later. */
4931         if (PL_regkind[OP(first)] == EXACT) {
4932             if (OP(first) == EXACT)
4933                 NOOP;   /* Empty, get anchored substr later. */
4934             else
4935                 ri->regstclass = first;
4936         }
4937 #ifdef TRIE_STCLASS
4938         else if (PL_regkind[OP(first)] == TRIE &&
4939                 ((reg_trie_data *)ri->data->data[ ARG(first) ])->minlen>0) 
4940         {
4941             regnode *trie_op;
4942             /* this can happen only on restudy */
4943             if ( OP(first) == TRIE ) {
4944                 struct regnode_1 *trieop = (struct regnode_1 *)
4945                     PerlMemShared_calloc(1, sizeof(struct regnode_1));
4946                 StructCopy(first,trieop,struct regnode_1);
4947                 trie_op=(regnode *)trieop;
4948             } else {
4949                 struct regnode_charclass *trieop = (struct regnode_charclass *)
4950                     PerlMemShared_calloc(1, sizeof(struct regnode_charclass));
4951                 StructCopy(first,trieop,struct regnode_charclass);
4952                 trie_op=(regnode *)trieop;
4953             }
4954             OP(trie_op)+=2;
4955             make_trie_failtable(pRExC_state, (regnode *)first, trie_op, 0);
4956             ri->regstclass = trie_op;
4957         }
4958 #endif
4959         else if (REGNODE_SIMPLE(OP(first)))
4960             ri->regstclass = first;
4961         else if (PL_regkind[OP(first)] == BOUND ||
4962                  PL_regkind[OP(first)] == NBOUND)
4963             ri->regstclass = first;
4964         else if (PL_regkind[OP(first)] == BOL) {
4965             r->extflags |= (OP(first) == MBOL
4966                            ? RXf_ANCH_MBOL
4967                            : (OP(first) == SBOL
4968                               ? RXf_ANCH_SBOL
4969                               : RXf_ANCH_BOL));
4970             first = NEXTOPER(first);
4971             goto again;
4972         }
4973         else if (OP(first) == GPOS) {
4974             r->extflags |= RXf_ANCH_GPOS;
4975             first = NEXTOPER(first);
4976             goto again;
4977         }
4978         else if ((!sawopen || !RExC_sawback) &&
4979             (OP(first) == STAR &&
4980             PL_regkind[OP(NEXTOPER(first))] == REG_ANY) &&
4981             !(r->extflags & RXf_ANCH) && !(RExC_seen & REG_SEEN_EVAL))
4982         {
4983             /* turn .* into ^.* with an implied $*=1 */
4984             const int type =
4985                 (OP(NEXTOPER(first)) == REG_ANY)
4986                     ? RXf_ANCH_MBOL
4987                     : RXf_ANCH_SBOL;
4988             r->extflags |= type;
4989             r->intflags |= PREGf_IMPLICIT;
4990             first = NEXTOPER(first);
4991             goto again;
4992         }
4993         if (sawplus && !sawlookahead && (!sawopen || !RExC_sawback)
4994             && !(RExC_seen & REG_SEEN_EVAL)) /* May examine pos and $& */
4995             /* x+ must match at the 1st pos of run of x's */
4996             r->intflags |= PREGf_SKIP;
4997
4998         /* Scan is after the zeroth branch, first is atomic matcher. */
4999 #ifdef TRIE_STUDY_OPT
5000         DEBUG_PARSE_r(
5001             if (!restudied)
5002                 PerlIO_printf(Perl_debug_log, "first at %"IVdf"\n",
5003                               (IV)(first - scan + 1))
5004         );
5005 #else
5006         DEBUG_PARSE_r(
5007             PerlIO_printf(Perl_debug_log, "first at %"IVdf"\n",
5008                 (IV)(first - scan + 1))
5009         );
5010 #endif
5011
5012
5013         /*
5014         * If there's something expensive in the r.e., find the
5015         * longest literal string that must appear and make it the
5016         * regmust.  Resolve ties in favor of later strings, since
5017         * the regstart check works with the beginning of the r.e.
5018         * and avoiding duplication strengthens checking.  Not a
5019         * strong reason, but sufficient in the absence of others.
5020         * [Now we resolve ties in favor of the earlier string if
5021         * it happens that c_offset_min has been invalidated, since the
5022         * earlier string may buy us something the later one won't.]
5023         */
5024
5025         data.longest_fixed = newSVpvs("");
5026         data.longest_float = newSVpvs("");
5027         data.last_found = newSVpvs("");
5028         data.longest = &(data.longest_fixed);
5029         first = scan;
5030         if (!ri->regstclass) {
5031             cl_init(pRExC_state, &ch_class);
5032             data.start_class = &ch_class;
5033             stclass_flag = SCF_DO_STCLASS_AND;
5034         } else                          /* XXXX Check for BOUND? */
5035             stclass_flag = 0;
5036         data.last_closep = &last_close;
5037         
5038         minlen = study_chunk(pRExC_state, &first, &minlen, &fake, scan + RExC_size, /* Up to end */
5039             &data, -1, NULL, NULL,
5040             SCF_DO_SUBSTR | SCF_WHILEM_VISITED_POS | stclass_flag,0);
5041
5042
5043         CHECK_RESTUDY_GOTO;
5044
5045
5046         if ( RExC_npar == 1 && data.longest == &(data.longest_fixed)
5047              && data.last_start_min == 0 && data.last_end > 0
5048              && !RExC_seen_zerolen
5049              && !(RExC_seen & REG_SEEN_VERBARG)
5050              && (!(RExC_seen & REG_SEEN_GPOS) || (r->extflags & RXf_ANCH_GPOS)))
5051             r->extflags |= RXf_CHECK_ALL;
5052         scan_commit(pRExC_state, &data,&minlen,0);
5053         SvREFCNT_dec(data.last_found);
5054
5055         /* Note that code very similar to this but for anchored string 
5056            follows immediately below, changes may need to be made to both. 
5057            Be careful. 
5058          */
5059         longest_float_length = CHR_SVLEN(data.longest_float);
5060         if (longest_float_length
5061             || (data.flags & SF_FL_BEFORE_EOL
5062                 && (!(data.flags & SF_FL_BEFORE_MEOL)
5063                     || (RExC_flags & RXf_PMf_MULTILINE)))) 
5064         {
5065             I32 t,ml;
5066
5067             if (SvCUR(data.longest_fixed)  /* ok to leave SvCUR */
5068                 && data.offset_fixed == data.offset_float_min
5069                 && SvCUR(data.longest_fixed) == SvCUR(data.longest_float))
5070                     goto remove_float;          /* As in (a)+. */
5071
5072             /* copy the information about the longest float from the reg_scan_data
5073                over to the program. */
5074             if (SvUTF8(data.longest_float)) {
5075                 r->float_utf8 = data.longest_float;
5076                 r->float_substr = NULL;
5077             } else {
5078                 r->float_substr = data.longest_float;
5079                 r->float_utf8 = NULL;
5080             }
5081             /* float_end_shift is how many chars that must be matched that 
5082                follow this item. We calculate it ahead of time as once the
5083                lookbehind offset is added in we lose the ability to correctly
5084                calculate it.*/
5085             ml = data.minlen_float ? *(data.minlen_float) 
5086                                    : (I32)longest_float_length;
5087             r->float_end_shift = ml - data.offset_float_min
5088                 - longest_float_length + (SvTAIL(data.longest_float) != 0)
5089                 + data.lookbehind_float;
5090             r->float_min_offset = data.offset_float_min - data.lookbehind_float;
5091             r->float_max_offset = data.offset_float_max;
5092             if (data.offset_float_max < I32_MAX) /* Don't offset infinity */
5093                 r->float_max_offset -= data.lookbehind_float;
5094             
5095             t = (data.flags & SF_FL_BEFORE_EOL /* Can't have SEOL and MULTI */
5096                        && (!(data.flags & SF_FL_BEFORE_MEOL)
5097                            || (RExC_flags & RXf_PMf_MULTILINE)));
5098             fbm_compile(data.longest_float, t ? FBMcf_TAIL : 0);
5099         }
5100         else {
5101           remove_float:
5102             r->float_substr = r->float_utf8 = NULL;
5103             SvREFCNT_dec(data.longest_float);
5104             longest_float_length = 0;
5105         }
5106
5107         /* Note that code very similar to this but for floating string 
5108            is immediately above, changes may need to be made to both. 
5109            Be careful. 
5110          */
5111         longest_fixed_length = CHR_SVLEN(data.longest_fixed);
5112         if (longest_fixed_length
5113             || (data.flags & SF_FIX_BEFORE_EOL /* Cannot have SEOL and MULTI */
5114                 && (!(data.flags & SF_FIX_BEFORE_MEOL)
5115                     || (RExC_flags & RXf_PMf_MULTILINE)))) 
5116         {
5117             I32 t,ml;
5118
5119             /* copy the information about the longest fixed 
5120                from the reg_scan_data over to the program. */
5121             if (SvUTF8(data.longest_fixed)) {
5122                 r->anchored_utf8 = data.longest_fixed;
5123                 r->anchored_substr = NULL;
5124             } else {
5125                 r->anchored_substr = data.longest_fixed;
5126                 r->anchored_utf8 = NULL;
5127             }
5128             /* fixed_end_shift is how many chars that must be matched that 
5129                follow this item. We calculate it ahead of time as once the
5130                lookbehind offset is added in we lose the ability to correctly
5131                calculate it.*/
5132             ml = data.minlen_fixed ? *(data.minlen_fixed) 
5133                                    : (I32)longest_fixed_length;
5134             r->anchored_end_shift = ml - data.offset_fixed
5135                 - longest_fixed_length + (SvTAIL(data.longest_fixed) != 0)
5136                 + data.lookbehind_fixed;
5137             r->anchored_offset = data.offset_fixed - data.lookbehind_fixed;
5138
5139             t = (data.flags & SF_FIX_BEFORE_EOL /* Can't have SEOL and MULTI */
5140                  && (!(data.flags & SF_FIX_BEFORE_MEOL)
5141                      || (RExC_flags & RXf_PMf_MULTILINE)));
5142             fbm_compile(data.longest_fixed, t ? FBMcf_TAIL : 0);
5143         }
5144         else {
5145             r->anchored_substr = r->anchored_utf8 = NULL;
5146             SvREFCNT_dec(data.longest_fixed);
5147             longest_fixed_length = 0;
5148         }
5149         if (ri->regstclass
5150             && (OP(ri->regstclass) == REG_ANY || OP(ri->regstclass) == SANY))
5151             ri->regstclass = NULL;
5152
5153         if ((!(r->anchored_substr || r->anchored_utf8) || r->anchored_offset)
5154             && stclass_flag
5155             && !(data.start_class->flags & ANYOF_EOS)
5156             && !cl_is_anything(data.start_class))
5157         {
5158             const U32 n = add_data(pRExC_state, 1, "f");
5159             data.start_class->flags |= ANYOF_IS_SYNTHETIC;
5160
5161             Newx(RExC_rxi->data->data[n], 1,
5162                 struct regnode_charclass_class);
5163             StructCopy(data.start_class,
5164                        (struct regnode_charclass_class*)RExC_rxi->data->data[n],
5165                        struct regnode_charclass_class);
5166             ri->regstclass = (regnode*)RExC_rxi->data->data[n];
5167             r->intflags &= ~PREGf_SKIP; /* Used in find_byclass(). */
5168             DEBUG_COMPILE_r({ SV *sv = sv_newmortal();
5169                       regprop(r, sv, (regnode*)data.start_class);
5170                       PerlIO_printf(Perl_debug_log,
5171                                     "synthetic stclass \"%s\".\n",
5172                                     SvPVX_const(sv));});
5173         }
5174
5175         /* A temporary algorithm prefers floated substr to fixed one to dig more info. */
5176         if (longest_fixed_length > longest_float_length) {
5177             r->check_end_shift = r->anchored_end_shift;
5178             r->check_substr = r->anchored_substr;
5179             r->check_utf8 = r->anchored_utf8;
5180             r->check_offset_min = r->check_offset_max = r->anchored_offset;
5181             if (r->extflags & RXf_ANCH_SINGLE)
5182                 r->extflags |= RXf_NOSCAN;
5183         }
5184         else {
5185             r->check_end_shift = r->float_end_shift;
5186             r->check_substr = r->float_substr;
5187             r->check_utf8 = r->float_utf8;
5188             r->check_offset_min = r->float_min_offset;
5189             r->check_offset_max = r->float_max_offset;
5190         }
5191         /* XXXX Currently intuiting is not compatible with ANCH_GPOS.
5192            This should be changed ASAP!  */
5193         if ((r->check_substr || r->check_utf8) && !(r->extflags & RXf_ANCH_GPOS)) {
5194             r->extflags |= RXf_USE_INTUIT;
5195             if (SvTAIL(r->check_substr ? r->check_substr : r->check_utf8))
5196                 r->extflags |= RXf_INTUIT_TAIL;
5197         }
5198         /* XXX Unneeded? dmq (shouldn't as this is handled elsewhere)
5199         if ( (STRLEN)minlen < longest_float_length )
5200             minlen= longest_float_length;
5201         if ( (STRLEN)minlen < longest_fixed_length )
5202             minlen= longest_fixed_length;     
5203         */
5204     }
5205     else {
5206         /* Several toplevels. Best we can is to set minlen. */
5207         I32 fake;
5208         struct regnode_charclass_class ch_class;
5209         I32 last_close = 0;
5210
5211         DEBUG_PARSE_r(PerlIO_printf(Perl_debug_log, "\nMulti Top Level\n"));
5212
5213         scan = ri->program + 1;
5214         cl_init(pRExC_state, &ch_class);
5215         data.start_class = &ch_class;
5216         data.last_closep = &last_close;
5217
5218         
5219         minlen = study_chunk(pRExC_state, &scan, &minlen, &fake, scan + RExC_size,
5220             &data, -1, NULL, NULL, SCF_DO_STCLASS_AND|SCF_WHILEM_VISITED_POS,0);
5221         
5222         CHECK_RESTUDY_GOTO;
5223
5224         r->check_substr = r->check_utf8 = r->anchored_substr = r->anchored_utf8
5225                 = r->float_substr = r->float_utf8 = NULL;
5226
5227         if (!(data.start_class->flags & ANYOF_EOS)
5228             && !cl_is_anything(data.start_class))
5229         {
5230             const U32 n = add_data(pRExC_state, 1, "f");
5231             data.start_class->flags |= ANYOF_IS_SYNTHETIC;
5232
5233             Newx(RExC_rxi->data->data[n], 1,
5234                 struct regnode_charclass_class);
5235             StructCopy(data.start_class,
5236                        (struct regnode_charclass_class*)RExC_rxi->data->data[n],
5237                        struct regnode_charclass_class);
5238             ri->regstclass = (regnode*)RExC_rxi->data->data[n];
5239             r->intflags &= ~PREGf_SKIP; /* Used in find_byclass(). */
5240             DEBUG_COMPILE_r({ SV* sv = sv_newmortal();
5241                       regprop(r, sv, (regnode*)data.start_class);
5242                       PerlIO_printf(Perl_debug_log,
5243                                     "synthetic stclass \"%s\".\n",
5244                                     SvPVX_const(sv));});
5245         }
5246     }
5247
5248     /* Guard against an embedded (?=) or (?<=) with a longer minlen than
5249        the "real" pattern. */
5250     DEBUG_OPTIMISE_r({
5251         PerlIO_printf(Perl_debug_log,"minlen: %"IVdf" r->minlen:%"IVdf"\n",
5252                       (IV)minlen, (IV)r->minlen);
5253     });
5254     r->minlenret = minlen;
5255     if (r->minlen < minlen) 
5256         r->minlen = minlen;
5257     
5258     if (RExC_seen & REG_SEEN_GPOS)
5259         r->extflags |= RXf_GPOS_SEEN;
5260     if (RExC_seen & REG_SEEN_LOOKBEHIND)
5261         r->extflags |= RXf_LOOKBEHIND_SEEN;
5262     if (RExC_seen & REG_SEEN_EVAL)
5263         r->extflags |= RXf_EVAL_SEEN;
5264     if (RExC_seen & REG_SEEN_CANY)
5265         r->extflags |= RXf_CANY_SEEN;
5266     if (RExC_seen & REG_SEEN_VERBARG)
5267         r->intflags |= PREGf_VERBARG_SEEN;
5268     if (RExC_seen & REG_SEEN_CUTGROUP)
5269         r->intflags |= PREGf_CUTGROUP_SEEN;
5270     if (RExC_paren_names)
5271         RXp_PAREN_NAMES(r) = MUTABLE_HV(SvREFCNT_inc(RExC_paren_names));
5272     else
5273         RXp_PAREN_NAMES(r) = NULL;
5274
5275 #ifdef STUPID_PATTERN_CHECKS            
5276     if (RX_PRELEN(rx) == 0)
5277         r->extflags |= RXf_NULL;
5278     if (r->extflags & RXf_SPLIT && RX_PRELEN(rx) == 1 && RX_PRECOMP(rx)[0] == ' ')
5279         /* XXX: this should happen BEFORE we compile */
5280         r->extflags |= (RXf_SKIPWHITE|RXf_WHITE); 
5281     else if (RX_PRELEN(rx) == 3 && memEQ("\\s+", RX_PRECOMP(rx), 3))
5282         r->extflags |= RXf_WHITE;
5283     else if (RX_PRELEN(rx) == 1 && RXp_PRECOMP(rx)[0] == '^')
5284         r->extflags |= RXf_START_ONLY;
5285 #else
5286     if (r->extflags & RXf_SPLIT && RX_PRELEN(rx) == 1 && RX_PRECOMP(rx)[0] == ' ')
5287             /* XXX: this should happen BEFORE we compile */
5288             r->extflags |= (RXf_SKIPWHITE|RXf_WHITE); 
5289     else {
5290         regnode *first = ri->program + 1;
5291         U8 fop = OP(first);
5292
5293         if (PL_regkind[fop] == NOTHING && OP(NEXTOPER(first)) == END)
5294             r->extflags |= RXf_NULL;
5295         else if (PL_regkind[fop] == BOL && OP(NEXTOPER(first)) == END)
5296             r->extflags |= RXf_START_ONLY;
5297         else if (fop == PLUS && OP(NEXTOPER(first)) == SPACE
5298                              && OP(regnext(first)) == END)
5299             r->extflags |= RXf_WHITE;    
5300     }
5301 #endif
5302 #ifdef DEBUGGING
5303     if (RExC_paren_names) {
5304         ri->name_list_idx = add_data( pRExC_state, 1, "a" );
5305         ri->data->data[ri->name_list_idx] = (void*)SvREFCNT_inc(RExC_paren_name_list);
5306     } else
5307 #endif
5308         ri->name_list_idx = 0;
5309
5310     if (RExC_recurse_count) {
5311         for ( ; RExC_recurse_count ; RExC_recurse_count-- ) {
5312             const regnode *scan = RExC_recurse[RExC_recurse_count-1];
5313             ARG2L_SET( scan, RExC_open_parens[ARG(scan)-1] - scan );
5314         }
5315     }
5316     Newxz(r->offs, RExC_npar, regexp_paren_pair);
5317     /* assume we don't need to swap parens around before we match */
5318
5319     DEBUG_DUMP_r({
5320         PerlIO_printf(Perl_debug_log,"Final program:\n");
5321         regdump(r);
5322     });
5323 #ifdef RE_TRACK_PATTERN_OFFSETS
5324     DEBUG_OFFSETS_r(if (ri->u.offsets) {
5325         const U32 len = ri->u.offsets[0];
5326         U32 i;
5327         GET_RE_DEBUG_FLAGS_DECL;
5328         PerlIO_printf(Perl_debug_log, "Offsets: [%"UVuf"]\n\t", (UV)ri->u.offsets[0]);
5329         for (i = 1; i <= len; i++) {
5330             if (ri->u.offsets[i*2-1] || ri->u.offsets[i*2])
5331                 PerlIO_printf(Perl_debug_log, "%"UVuf":%"UVuf"[%"UVuf"] ",
5332                 (UV)i, (UV)ri->u.offsets[i*2-1], (UV)ri->u.offsets[i*2]);
5333             }
5334         PerlIO_printf(Perl_debug_log, "\n");
5335     });
5336 #endif
5337     return rx;
5338 }
5339
5340 #undef RE_ENGINE_PTR
5341
5342
5343 SV*
5344 Perl_reg_named_buff(pTHX_ REGEXP * const rx, SV * const key, SV * const value,
5345                     const U32 flags)
5346 {
5347     PERL_ARGS_ASSERT_REG_NAMED_BUFF;
5348
5349     PERL_UNUSED_ARG(value);
5350
5351     if (flags & RXapif_FETCH) {
5352         return reg_named_buff_fetch(rx, key, flags);
5353     } else if (flags & (RXapif_STORE | RXapif_DELETE | RXapif_CLEAR)) {
5354         Perl_croak_no_modify(aTHX);
5355         return NULL;
5356     } else if (flags & RXapif_EXISTS) {
5357         return reg_named_buff_exists(rx, key, flags)
5358             ? &PL_sv_yes
5359             : &PL_sv_no;
5360     } else if (flags & RXapif_REGNAMES) {
5361         return reg_named_buff_all(rx, flags);
5362     } else if (flags & (RXapif_SCALAR | RXapif_REGNAMES_COUNT)) {
5363         return reg_named_buff_scalar(rx, flags);
5364     } else {
5365         Perl_croak(aTHX_ "panic: Unknown flags %d in named_buff", (int)flags);
5366         return NULL;
5367     }
5368 }
5369
5370 SV*
5371 Perl_reg_named_buff_iter(pTHX_ REGEXP * const rx, const SV * const lastkey,
5372                          const U32 flags)
5373 {
5374     PERL_ARGS_ASSERT_REG_NAMED_BUFF_ITER;
5375     PERL_UNUSED_ARG(lastkey);
5376
5377     if (flags & RXapif_FIRSTKEY)
5378         return reg_named_buff_firstkey(rx, flags);
5379     else if (flags & RXapif_NEXTKEY)
5380         return reg_named_buff_nextkey(rx, flags);
5381     else {
5382         Perl_croak(aTHX_ "panic: Unknown flags %d in named_buff_iter", (int)flags);
5383         return NULL;
5384     }
5385 }
5386
5387 SV*
5388 Perl_reg_named_buff_fetch(pTHX_ REGEXP * const r, SV * const namesv,
5389                           const U32 flags)
5390 {
5391     AV *retarray = NULL;
5392     SV *ret;
5393     struct regexp *const rx = (struct regexp *)SvANY(r);
5394
5395     PERL_ARGS_ASSERT_REG_NAMED_BUFF_FETCH;
5396
5397     if (flags & RXapif_ALL)
5398         retarray=newAV();
5399
5400     if (rx && RXp_PAREN_NAMES(rx)) {
5401         HE *he_str = hv_fetch_ent( RXp_PAREN_NAMES(rx), namesv, 0, 0 );
5402         if (he_str) {
5403             IV i;
5404             SV* sv_dat=HeVAL(he_str);
5405             I32 *nums=(I32*)SvPVX(sv_dat);
5406             for ( i=0; i<SvIVX(sv_dat); i++ ) {
5407                 if ((I32)(rx->nparens) >= nums[i]
5408                     && rx->offs[nums[i]].start != -1
5409                     && rx->offs[nums[i]].end != -1)
5410                 {
5411                     ret = newSVpvs("");
5412                     CALLREG_NUMBUF_FETCH(r,nums[i],ret);
5413                     if (!retarray)
5414                         return ret;
5415                 } else {
5416                     if (retarray)
5417                         ret = newSVsv(&PL_sv_undef);
5418                 }
5419                 if (retarray)
5420                     av_push(retarray, ret);
5421             }
5422             if (retarray)
5423                 return newRV_noinc(MUTABLE_SV(retarray));
5424         }
5425     }
5426     return NULL;
5427 }
5428
5429 bool
5430 Perl_reg_named_buff_exists(pTHX_ REGEXP * const r, SV * const key,
5431                            const U32 flags)
5432 {
5433     struct regexp *const rx = (struct regexp *)SvANY(r);
5434
5435     PERL_ARGS_ASSERT_REG_NAMED_BUFF_EXISTS;
5436
5437     if (rx && RXp_PAREN_NAMES(rx)) {
5438         if (flags & RXapif_ALL) {
5439             return hv_exists_ent(RXp_PAREN_NAMES(rx), key, 0);
5440         } else {
5441             SV *sv = CALLREG_NAMED_BUFF_FETCH(r, key, flags);
5442             if (sv) {
5443                 SvREFCNT_dec(sv);
5444                 return TRUE;
5445             } else {
5446                 return FALSE;
5447             }
5448         }
5449     } else {
5450         return FALSE;
5451     }
5452 }
5453
5454 SV*
5455 Perl_reg_named_buff_firstkey(pTHX_ REGEXP * const r, const U32 flags)
5456 {
5457     struct regexp *const rx = (struct regexp *)SvANY(r);
5458
5459     PERL_ARGS_ASSERT_REG_NAMED_BUFF_FIRSTKEY;
5460
5461     if ( rx && RXp_PAREN_NAMES(rx) ) {
5462         (void)hv_iterinit(RXp_PAREN_NAMES(rx));
5463
5464         return CALLREG_NAMED_BUFF_NEXTKEY(r, NULL, flags & ~RXapif_FIRSTKEY);
5465     } else {
5466         return FALSE;
5467     }
5468 }
5469
5470 SV*
5471 Perl_reg_named_buff_nextkey(pTHX_ REGEXP * const r, const U32 flags)
5472 {
5473     struct regexp *const rx = (struct regexp *)SvANY(r);
5474     GET_RE_DEBUG_FLAGS_DECL;
5475
5476     PERL_ARGS_ASSERT_REG_NAMED_BUFF_NEXTKEY;
5477
5478     if (rx && RXp_PAREN_NAMES(rx)) {
5479         HV *hv = RXp_PAREN_NAMES(rx);
5480         HE *temphe;
5481         while ( (temphe = hv_iternext_flags(hv,0)) ) {
5482             IV i;
5483             IV parno = 0;
5484             SV* sv_dat = HeVAL(temphe);
5485             I32 *nums = (I32*)SvPVX(sv_dat);
5486             for ( i = 0; i < SvIVX(sv_dat); i++ ) {
5487                 if ((I32)(rx->lastparen) >= nums[i] &&
5488                     rx->offs[nums[i]].start != -1 &&
5489                     rx->offs[nums[i]].end != -1)
5490                 {
5491                     parno = nums[i];
5492                     break;
5493                 }
5494             }
5495             if (parno || flags & RXapif_ALL) {
5496                 return newSVhek(HeKEY_hek(temphe));
5497             }
5498         }
5499     }
5500     return NULL;
5501 }
5502
5503 SV*
5504 Perl_reg_named_buff_scalar(pTHX_ REGEXP * const r, const U32 flags)
5505 {
5506     SV *ret;
5507     AV *av;
5508     I32 length;
5509     struct regexp *const rx = (struct regexp *)SvANY(r);
5510
5511     PERL_ARGS_ASSERT_REG_NAMED_BUFF_SCALAR;
5512
5513     if (rx && RXp_PAREN_NAMES(rx)) {
5514         if (flags & (RXapif_ALL | RXapif_REGNAMES_COUNT)) {
5515             return newSViv(HvTOTALKEYS(RXp_PAREN_NAMES(rx)));
5516         } else if (flags & RXapif_ONE) {
5517             ret = CALLREG_NAMED_BUFF_ALL(r, (flags | RXapif_REGNAMES));
5518             av = MUTABLE_AV(SvRV(ret));
5519             length = av_len(av);
5520             SvREFCNT_dec(ret);
5521             return newSViv(length + 1);
5522         } else {
5523             Perl_croak(aTHX_ "panic: Unknown flags %d in named_buff_scalar", (int)flags);
5524             return NULL;
5525         }
5526     }
5527     return &PL_sv_undef;
5528 }
5529
5530 SV*
5531 Perl_reg_named_buff_all(pTHX_ REGEXP * const r, const U32 flags)
5532 {
5533     struct regexp *const rx = (struct regexp *)SvANY(r);
5534     AV *av = newAV();
5535
5536     PERL_ARGS_ASSERT_REG_NAMED_BUFF_ALL;
5537
5538     if (rx && RXp_PAREN_NAMES(rx)) {
5539         HV *hv= RXp_PAREN_NAMES(rx);
5540         HE *temphe;
5541         (void)hv_iterinit(hv);
5542         while ( (temphe = hv_iternext_flags(hv,0)) ) {
5543             IV i;
5544             IV parno = 0;
5545             SV* sv_dat = HeVAL(temphe);
5546             I32 *nums = (I32*)SvPVX(sv_dat);
5547             for ( i = 0; i < SvIVX(sv_dat); i++ ) {
5548                 if ((I32)(rx->lastparen) >= nums[i] &&
5549                     rx->offs[nums[i]].start != -1 &&
5550                     rx->offs[nums[i]].end != -1)
5551                 {
5552                     parno = nums[i];
5553                     break;
5554                 }
5555             }
5556             if (parno || flags & RXapif_ALL) {
5557                 av_push(av, newSVhek(HeKEY_hek(temphe)));
5558             }
5559         }
5560     }
5561
5562     return newRV_noinc(MUTABLE_SV(av));
5563 }
5564
5565 void
5566 Perl_reg_numbered_buff_fetch(pTHX_ REGEXP * const r, const I32 paren,
5567                              SV * const sv)
5568 {
5569     struct regexp *const rx = (struct regexp *)SvANY(r);
5570     char *s = NULL;
5571     I32 i = 0;
5572     I32 s1, t1;
5573
5574     PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_FETCH;
5575         
5576     if (!rx->subbeg) {
5577         sv_setsv(sv,&PL_sv_undef);
5578         return;
5579     } 
5580     else               
5581     if (paren == RX_BUFF_IDX_PREMATCH && rx->offs[0].start != -1) {
5582         /* $` */
5583         i = rx->offs[0].start;
5584         s = rx->subbeg;
5585     }
5586     else 
5587     if (paren == RX_BUFF_IDX_POSTMATCH && rx->offs[0].end != -1) {
5588         /* $' */
5589         s = rx->subbeg + rx->offs[0].end;
5590         i = rx->sublen - rx->offs[0].end;
5591     } 
5592     else
5593     if ( 0 <= paren && paren <= (I32)rx->nparens &&
5594         (s1 = rx->offs[paren].start) != -1 &&
5595         (t1 = rx->offs[paren].end) != -1)
5596     {
5597         /* $& $1 ... */
5598         i = t1 - s1;
5599         s = rx->subbeg + s1;
5600     } else {
5601         sv_setsv(sv,&PL_sv_undef);
5602         return;
5603     }          
5604     assert(rx->sublen >= (s - rx->subbeg) + i );
5605     if (i >= 0) {
5606         const int oldtainted = PL_tainted;
5607         TAINT_NOT;
5608         sv_setpvn(sv, s, i);
5609         PL_tainted = oldtainted;
5610         if ( (rx->extflags & RXf_CANY_SEEN)
5611             ? (RXp_MATCH_UTF8(rx)
5612                         && (!i || is_utf8_string((U8*)s, i)))
5613             : (RXp_MATCH_UTF8(rx)) )
5614         {
5615             SvUTF8_on(sv);
5616         }
5617         else
5618             SvUTF8_off(sv);
5619         if (PL_tainting) {
5620             if (RXp_MATCH_TAINTED(rx)) {
5621                 if (SvTYPE(sv) >= SVt_PVMG) {
5622                     MAGIC* const mg = SvMAGIC(sv);
5623                     MAGIC* mgt;
5624                     PL_tainted = 1;
5625                     SvMAGIC_set(sv, mg->mg_moremagic);
5626                     SvTAINT(sv);
5627                     if ((mgt = SvMAGIC(sv))) {
5628                         mg->mg_moremagic = mgt;
5629                         SvMAGIC_set(sv, mg);
5630                     }
5631                 } else {
5632                     PL_tainted = 1;
5633                     SvTAINT(sv);
5634                 }
5635             } else 
5636                 SvTAINTED_off(sv);
5637         }
5638     } else {
5639         sv_setsv(sv,&PL_sv_undef);
5640         return;
5641     }
5642 }
5643
5644 void
5645 Perl_reg_numbered_buff_store(pTHX_ REGEXP * const rx, const I32 paren,
5646                                                          SV const * const value)
5647 {
5648     PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_STORE;
5649
5650     PERL_UNUSED_ARG(rx);
5651     PERL_UNUSED_ARG(paren);
5652     PERL_UNUSED_ARG(value);
5653
5654     if (!PL_localizing)
5655         Perl_croak_no_modify(aTHX);
5656 }
5657
5658 I32
5659 Perl_reg_numbered_buff_length(pTHX_ REGEXP * const r, const SV * const sv,
5660                               const I32 paren)
5661 {
5662     struct regexp *const rx = (struct regexp *)SvANY(r);
5663     I32 i;
5664     I32 s1, t1;
5665
5666     PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_LENGTH;
5667
5668     /* Some of this code was originally in C<Perl_magic_len> in F<mg.c> */
5669         switch (paren) {
5670       /* $` / ${^PREMATCH} */
5671       case RX_BUFF_IDX_PREMATCH:
5672         if (rx->offs[0].start != -1) {
5673                         i = rx->offs[0].start;
5674                         if (i > 0) {
5675                                 s1 = 0;
5676                                 t1 = i;
5677                                 goto getlen;
5678                         }
5679             }
5680         return 0;
5681       /* $' / ${^POSTMATCH} */
5682       case RX_BUFF_IDX_POSTMATCH:
5683             if (rx->offs[0].end != -1) {
5684                         i = rx->sublen - rx->offs[0].end;
5685                         if (i > 0) {
5686                                 s1 = rx->offs[0].end;
5687                                 t1 = rx->sublen;
5688                                 goto getlen;
5689                         }
5690             }
5691         return 0;
5692       /* $& / ${^MATCH}, $1, $2, ... */
5693       default:
5694             if (paren <= (I32)rx->nparens &&
5695             (s1 = rx->offs[paren].start) != -1 &&
5696             (t1 = rx->offs[paren].end) != -1)
5697             {
5698             i = t1 - s1;
5699             goto getlen;
5700         } else {
5701             if (ckWARN(WARN_UNINITIALIZED))
5702                 report_uninit((const SV *)sv);
5703             return 0;
5704         }
5705     }
5706   getlen:
5707     if (i > 0 && RXp_MATCH_UTF8(rx)) {
5708         const char * const s = rx->subbeg + s1;
5709         const U8 *ep;
5710         STRLEN el;
5711
5712         i = t1 - s1;
5713         if (is_utf8_string_loclen((U8*)s, i, &ep, &el))
5714                         i = el;
5715     }
5716     return i;
5717 }
5718
5719 SV*
5720 Perl_reg_qr_package(pTHX_ REGEXP * const rx)
5721 {
5722     PERL_ARGS_ASSERT_REG_QR_PACKAGE;
5723         PERL_UNUSED_ARG(rx);
5724         if (0)
5725             return NULL;
5726         else
5727             return newSVpvs("Regexp");
5728 }
5729
5730 /* Scans the name of a named buffer from the pattern.
5731  * If flags is REG_RSN_RETURN_NULL returns null.
5732  * If flags is REG_RSN_RETURN_NAME returns an SV* containing the name
5733  * If flags is REG_RSN_RETURN_DATA returns the data SV* corresponding
5734  * to the parsed name as looked up in the RExC_paren_names hash.
5735  * If there is an error throws a vFAIL().. type exception.
5736  */
5737
5738 #define REG_RSN_RETURN_NULL    0
5739 #define REG_RSN_RETURN_NAME    1
5740 #define REG_RSN_RETURN_DATA    2
5741
5742 STATIC SV*
5743 S_reg_scan_name(pTHX_ RExC_state_t *pRExC_state, U32 flags)
5744 {
5745     char *name_start = RExC_parse;
5746
5747     PERL_ARGS_ASSERT_REG_SCAN_NAME;
5748
5749     if (isIDFIRST_lazy_if(RExC_parse, UTF)) {
5750          /* skip IDFIRST by using do...while */
5751         if (UTF)
5752             do {
5753                 RExC_parse += UTF8SKIP(RExC_parse);
5754             } while (isALNUM_utf8((U8*)RExC_parse));
5755         else
5756             do {
5757                 RExC_parse++;
5758             } while (isALNUM(*RExC_parse));
5759     }
5760
5761     if ( flags ) {
5762         SV* sv_name
5763             = newSVpvn_flags(name_start, (int)(RExC_parse - name_start),
5764                              SVs_TEMP | (UTF ? SVf_UTF8 : 0));
5765         if ( flags == REG_RSN_RETURN_NAME)
5766             return sv_name;
5767         else if (flags==REG_RSN_RETURN_DATA) {
5768             HE *he_str = NULL;
5769             SV *sv_dat = NULL;
5770             if ( ! sv_name )      /* should not happen*/
5771                 Perl_croak(aTHX_ "panic: no svname in reg_scan_name");
5772             if (RExC_paren_names)
5773                 he_str = hv_fetch_ent( RExC_paren_names, sv_name, 0, 0 );
5774             if ( he_str )
5775                 sv_dat = HeVAL(he_str);
5776             if ( ! sv_dat )
5777                 vFAIL("Reference to nonexistent named group");
5778             return sv_dat;
5779         }
5780         else {
5781             Perl_croak(aTHX_ "panic: bad flag in reg_scan_name");
5782         }
5783         /* NOT REACHED */
5784     }
5785     return NULL;
5786 }
5787
5788 #define DEBUG_PARSE_MSG(funcname)     DEBUG_PARSE_r({           \
5789     int rem=(int)(RExC_end - RExC_parse);                       \
5790     int cut;                                                    \
5791     int num;                                                    \
5792     int iscut=0;                                                \
5793     if (rem>10) {                                               \
5794         rem=10;                                                 \
5795         iscut=1;                                                \
5796     }                                                           \
5797     cut=10-rem;                                                 \
5798     if (RExC_lastparse!=RExC_parse)                             \
5799         PerlIO_printf(Perl_debug_log," >%.*s%-*s",              \
5800             rem, RExC_parse,                                    \
5801             cut + 4,                                            \
5802             iscut ? "..." : "<"                                 \
5803         );                                                      \
5804     else                                                        \
5805         PerlIO_printf(Perl_debug_log,"%16s","");                \
5806                                                                 \
5807     if (SIZE_ONLY)                                              \
5808        num = RExC_size + 1;                                     \
5809     else                                                        \
5810        num=REG_NODE_NUM(RExC_emit);                             \
5811     if (RExC_lastnum!=num)                                      \
5812        PerlIO_printf(Perl_debug_log,"|%4d",num);                \
5813     else                                                        \
5814        PerlIO_printf(Perl_debug_log,"|%4s","");                 \
5815     PerlIO_printf(Perl_debug_log,"|%*s%-4s",                    \
5816         (int)((depth*2)), "",                                   \
5817         (funcname)                                              \
5818     );                                                          \
5819     RExC_lastnum=num;                                           \
5820     RExC_lastparse=RExC_parse;                                  \
5821 })
5822
5823
5824
5825 #define DEBUG_PARSE(funcname)     DEBUG_PARSE_r({           \
5826     DEBUG_PARSE_MSG((funcname));                            \
5827     PerlIO_printf(Perl_debug_log,"%4s","\n");               \
5828 })
5829 #define DEBUG_PARSE_FMT(funcname,fmt,args)     DEBUG_PARSE_r({           \
5830     DEBUG_PARSE_MSG((funcname));                            \
5831     PerlIO_printf(Perl_debug_log,fmt "\n",args);               \
5832 })
5833
5834 /* This section of code defines the inversion list object and its methods.  The
5835  * interfaces are highly subject to change, so as much as possible is static to
5836  * this file.  An inversion list is here implemented as a malloc'd C UV array
5837  * with some added info that is placed as UVs at the beginning in a header
5838  * portion.  An inversion list for Unicode is an array of code points, sorted
5839  * by ordinal number.  The zeroth element is the first code point in the list.
5840  * The 1th element is the first element beyond that not in the list.  In other
5841  * words, the first range is
5842  *  invlist[0]..(invlist[1]-1)
5843  * The other ranges follow.  Thus every element whose index is divisible by two
5844  * marks the beginning of a range that is in the list, and every element not
5845  * divisible by two marks the beginning of a range not in the list.  A single
5846  * element inversion list that contains the single code point N generally
5847  * consists of two elements
5848  *  invlist[0] == N
5849  *  invlist[1] == N+1
5850  * (The exception is when N is the highest representable value on the
5851  * machine, in which case the list containing just it would be a single
5852  * element, itself.  By extension, if the last range in the list extends to
5853  * infinity, then the first element of that range will be in the inversion list
5854  * at a position that is divisible by two, and is the final element in the
5855  * list.)
5856  * Taking the complement (inverting) an inversion list is quite simple, if the
5857  * first element is 0, remove it; otherwise add a 0 element at the beginning.
5858  * This implementation reserves an element at the beginning of each inversion list
5859  * to contain 0 when the list contains 0, and contains 1 otherwise.  The actual
5860  * beginning of the list is either that element if 0, or the next one if 1.
5861  *
5862  * More about inversion lists can be found in "Unicode Demystified"
5863  * Chapter 13 by Richard Gillam, published by Addison-Wesley.
5864  * More will be coming when functionality is added later.
5865  *
5866  * The inversion list data structure is currently implemented as an SV pointing
5867  * to an array of UVs that the SV thinks are bytes.  This allows us to have an
5868  * array of UV whose memory management is automatically handled by the existing
5869  * facilities for SV's.
5870  *
5871  * Some of the methods should always be private to the implementation, and some
5872  * should eventually be made public */
5873
5874 #define INVLIST_LEN_OFFSET 0    /* Number of elements in the inversion list */
5875 #define INVLIST_ITER_OFFSET 1   /* Current iteration position */
5876
5877 #define INVLIST_ZERO_OFFSET 2   /* 0 or 1; must be last element in header */
5878 /* The UV at position ZERO contains either 0 or 1.  If 0, the inversion list
5879  * contains the code point U+00000, and begins here.  If 1, the inversion list
5880  * doesn't contain U+0000, and it begins at the next UV in the array.
5881  * Inverting an inversion list consists of adding or removing the 0 at the
5882  * beginning of it.  By reserving a space for that 0, inversion can be made
5883  * very fast */
5884
5885 #define HEADER_LENGTH (INVLIST_ZERO_OFFSET + 1)
5886
5887 /* Internally things are UVs */
5888 #define TO_INTERNAL_SIZE(x) ((x + HEADER_LENGTH) * sizeof(UV))
5889 #define FROM_INTERNAL_SIZE(x) ((x / sizeof(UV)) - HEADER_LENGTH)
5890
5891 #define INVLIST_INITIAL_LEN 10
5892
5893 PERL_STATIC_INLINE UV*
5894 S__invlist_array_init(pTHX_ SV* const invlist, const bool will_have_0)
5895 {
5896     /* Returns a pointer to the first element in the inversion list's array.
5897      * This is called upon initialization of an inversion list.  Where the
5898      * array begins depends on whether the list has the code point U+0000
5899      * in it or not.  The other parameter tells it whether the code that
5900      * follows this call is about to put a 0 in the inversion list or not.
5901      * The first element is either the element with 0, if 0, or the next one,
5902      * if 1 */
5903
5904     UV* zero = get_invlist_zero_addr(invlist);
5905
5906     PERL_ARGS_ASSERT__INVLIST_ARRAY_INIT;
5907
5908     /* Must be empty */
5909     assert(! *get_invlist_len_addr(invlist));
5910
5911     /* 1^1 = 0; 1^0 = 1 */
5912     *zero = 1 ^ will_have_0;
5913     return zero + *zero;
5914 }
5915
5916 PERL_STATIC_INLINE UV*
5917 S_invlist_array(pTHX_ SV* const invlist)
5918 {
5919     /* Returns the pointer to the inversion list's array.  Every time the
5920      * length changes, this needs to be called in case malloc or realloc moved
5921      * it */
5922
5923     PERL_ARGS_ASSERT_INVLIST_ARRAY;
5924
5925     /* Must not be empty.  If these fail, you probably didn't check for <len>
5926      * being non-zero before trying to get the array */
5927     assert(*get_invlist_len_addr(invlist));
5928     assert(*get_invlist_zero_addr(invlist) == 0
5929            || *get_invlist_zero_addr(invlist) == 1);
5930
5931     /* The array begins either at the element reserved for zero if the
5932      * list contains 0 (that element will be set to 0), or otherwise the next
5933      * element (in which case the reserved element will be set to 1). */
5934     return (UV *) (get_invlist_zero_addr(invlist)
5935                    + *get_invlist_zero_addr(invlist));
5936 }
5937
5938 PERL_STATIC_INLINE UV*
5939 S_get_invlist_len_addr(pTHX_ SV* invlist)
5940 {
5941     /* Return the address of the UV that contains the current number
5942      * of used elements in the inversion list */
5943
5944     PERL_ARGS_ASSERT_GET_INVLIST_LEN_ADDR;
5945
5946     return (UV *) (SvPVX(invlist) + (INVLIST_LEN_OFFSET * sizeof (UV)));
5947 }
5948
5949 PERL_STATIC_INLINE UV
5950 S_invlist_len(pTHX_ SV* const invlist)
5951 {
5952     /* Returns the current number of elements stored in the inversion list's
5953      * array */
5954
5955     PERL_ARGS_ASSERT_INVLIST_LEN;
5956
5957     return *get_invlist_len_addr(invlist);
5958 }
5959
5960 PERL_STATIC_INLINE void
5961 S_invlist_set_len(pTHX_ SV* const invlist, const UV len)
5962 {
5963     /* Sets the current number of elements stored in the inversion list */
5964
5965     PERL_ARGS_ASSERT_INVLIST_SET_LEN;
5966
5967     *get_invlist_len_addr(invlist) = len;
5968
5969     assert(len <= SvLEN(invlist));
5970
5971     SvCUR_set(invlist, TO_INTERNAL_SIZE(len));
5972     /* If the list contains U+0000, that element is part of the header,
5973      * and should not be counted as part of the array.  It will contain
5974      * 0 in that case, and 1 otherwise.  So we could flop 0=>1, 1=>0 and
5975      * subtract:
5976      *  SvCUR_set(invlist,
5977      *            TO_INTERNAL_SIZE(len
5978      *                             - (*get_invlist_zero_addr(inv_list) ^ 1)));
5979      * But, this is only valid if len is not 0.  The consequences of not doing
5980      * this is that the memory allocation code may think that 1 more UV is
5981      * being used than actually is, and so might do an unnecessary grow.  That
5982      * seems worth not bothering to make this the precise amount.
5983      *
5984      * Note that when inverting, SvCUR shouldn't change */
5985 }
5986
5987 PERL_STATIC_INLINE UV
5988 S_invlist_max(pTHX_ SV* const invlist)
5989 {
5990     /* Returns the maximum number of elements storable in the inversion list's
5991      * array, without having to realloc() */
5992
5993     PERL_ARGS_ASSERT_INVLIST_MAX;
5994
5995     return FROM_INTERNAL_SIZE(SvLEN(invlist));
5996 }
5997
5998 PERL_STATIC_INLINE UV*
5999 S_get_invlist_zero_addr(pTHX_ SV* invlist)
6000 {
6001     /* Return the address of the UV that is reserved to hold 0 if the inversion
6002      * list contains 0.  This has to be the last element of the heading, as the
6003      * list proper starts with either it if 0, or the next element if not.
6004      * (But we force it to contain either 0 or 1) */
6005
6006     PERL_ARGS_ASSERT_GET_INVLIST_ZERO_ADDR;
6007
6008     return (UV *) (SvPVX(invlist) + (INVLIST_ZERO_OFFSET * sizeof (UV)));
6009 }
6010
6011 #ifndef PERL_IN_XSUB_RE
6012 SV*
6013 Perl__new_invlist(pTHX_ IV initial_size)
6014 {
6015
6016     /* Return a pointer to a newly constructed inversion list, with enough
6017      * space to store 'initial_size' elements.  If that number is negative, a
6018      * system default is used instead */
6019
6020     SV* new_list;
6021
6022     if (initial_size < 0) {
6023         initial_size = INVLIST_INITIAL_LEN;
6024     }
6025
6026     /* Allocate the initial space */
6027     new_list = newSV(TO_INTERNAL_SIZE(initial_size));
6028     invlist_set_len(new_list, 0);
6029
6030     /* Force iterinit() to be used to get iteration to work */
6031     *get_invlist_iter_addr(new_list) = UV_MAX;
6032
6033     /* This should force a segfault if a method doesn't initialize this
6034      * properly */
6035     *get_invlist_zero_addr(new_list) = UV_MAX;
6036
6037     return new_list;
6038 }
6039 #endif
6040
6041 STATIC void
6042 S_invlist_extend(pTHX_ SV* const invlist, const UV new_max)
6043 {
6044     /* Grow the maximum size of an inversion list */
6045
6046     PERL_ARGS_ASSERT_INVLIST_EXTEND;
6047
6048     SvGROW((SV *)invlist, TO_INTERNAL_SIZE(new_max));
6049 }
6050
6051 PERL_STATIC_INLINE void
6052 S_invlist_trim(pTHX_ SV* const invlist)
6053 {
6054     PERL_ARGS_ASSERT_INVLIST_TRIM;
6055
6056     /* Change the length of the inversion list to how many entries it currently
6057      * has */
6058
6059     SvPV_shrink_to_cur((SV *) invlist);
6060 }
6061
6062 /* An element is in an inversion list iff its index is even numbered: 0, 2, 4,
6063  * etc */
6064 #define ELEMENT_RANGE_MATCHES_INVLIST(i) (! ((i) & 1))
6065 #define PREV_RANGE_MATCHES_INVLIST(i) (! ELEMENT_RANGE_MATCHES_INVLIST(i))
6066
6067 #ifndef PERL_IN_XSUB_RE
6068 void
6069 Perl__append_range_to_invlist(pTHX_ SV* const invlist, const UV start, const UV end)
6070 {
6071    /* Subject to change or removal.  Append the range from 'start' to 'end' at
6072     * the end of the inversion list.  The range must be above any existing
6073     * ones. */
6074
6075     UV* array;
6076     UV max = invlist_max(invlist);
6077     UV len = invlist_len(invlist);
6078
6079     PERL_ARGS_ASSERT__APPEND_RANGE_TO_INVLIST;
6080
6081     if (len == 0) { /* Empty lists must be initialized */
6082         array = _invlist_array_init(invlist, start == 0);
6083     }
6084     else {
6085         /* Here, the existing list is non-empty. The current max entry in the
6086          * list is generally the first value not in the set, except when the
6087          * set extends to the end of permissible values, in which case it is
6088          * the first entry in that final set, and so this call is an attempt to
6089          * append out-of-order */
6090
6091         UV final_element = len - 1;
6092         array = invlist_array(invlist);
6093         if (array[final_element] > start
6094             || ELEMENT_RANGE_MATCHES_INVLIST(final_element))
6095         {
6096             Perl_croak(aTHX_ "panic: attempting to append to an inversion list, but wasn't at the end of the list");
6097         }
6098
6099         /* Here, it is a legal append.  If the new range begins with the first
6100          * value not in the set, it is extending the set, so the new first
6101          * value not in the set is one greater than the newly extended range.
6102          * */
6103         if (array[final_element] == start) {
6104             if (end != UV_MAX) {
6105                 array[final_element] = end + 1;
6106             }
6107             else {
6108                 /* But if the end is the maximum representable on the machine,
6109                  * just let the range that this would extend to have no end */
6110                 invlist_set_len(invlist, len - 1);
6111             }
6112             return;
6113         }
6114     }
6115
6116     /* Here the new range doesn't extend any existing set.  Add it */
6117
6118     len += 2;   /* Includes an element each for the start and end of range */
6119
6120     /* If overflows the existing space, extend, which may cause the array to be
6121      * moved */
6122     if (max < len) {
6123         invlist_extend(invlist, len);
6124         invlist_set_len(invlist, len);  /* Have to set len here to avoid assert
6125                                            failure in invlist_array() */
6126         array = invlist_array(invlist);
6127     }
6128     else {
6129         invlist_set_len(invlist, len);
6130     }
6131
6132     /* The next item on the list starts the range, the one after that is
6133      * one past the new range.  */
6134     array[len - 2] = start;
6135     if (end != UV_MAX) {
6136         array[len - 1] = end + 1;
6137     }
6138     else {
6139         /* But if the end is the maximum representable on the machine, just let
6140          * the range have no end */
6141         invlist_set_len(invlist, len - 1);
6142     }
6143 }
6144
6145 STATIC IV
6146 S_invlist_search(pTHX_ SV* const invlist, const UV cp)
6147 {
6148     /* Searches the inversion list for the entry that contains the input code
6149      * point <cp>.  If <cp> is not in the list, -1 is returned.  Otherwise, the
6150      * return value is the index into the list's array of the range that
6151      * contains <cp> */
6152
6153     IV low = 0;
6154     IV high = invlist_len(invlist);
6155     const UV * const array = invlist_array(invlist);
6156
6157     PERL_ARGS_ASSERT_INVLIST_SEARCH;
6158
6159     /* If list is empty or the code point is before the first element, return
6160      * failure. */
6161     if (high == 0 || cp < array[0]) {
6162         return -1;
6163     }
6164
6165     /* Binary search.  What we are looking for is <i> such that
6166      *  array[i] <= cp < array[i+1]
6167      * The loop below converges on the i+1. */
6168     while (low < high) {
6169         IV mid = (low + high) / 2;
6170         if (array[mid] <= cp) {
6171             low = mid + 1;
6172
6173             /* We could do this extra test to exit the loop early.
6174             if (cp < array[low]) {
6175                 return mid;
6176             }
6177             */
6178         }
6179         else { /* cp < array[mid] */
6180             high = mid;
6181         }
6182     }
6183
6184     return high - 1;
6185 }
6186
6187 void
6188 Perl__invlist_populate_swatch(pTHX_ SV* const invlist, const UV start, const UV end, U8* swatch)
6189 {
6190     /* populates a swatch of a swash the same way swatch_get() does in utf8.c,
6191      * but is used when the swash has an inversion list.  This makes this much
6192      * faster, as it uses a binary search instead of a linear one.  This is
6193      * intimately tied to that function, and perhaps should be in utf8.c,
6194      * except it is intimately tied to inversion lists as well.  It assumes
6195      * that <swatch> is all 0's on input */
6196
6197     UV current = start;
6198     const IV len = invlist_len(invlist);
6199     IV i;
6200     const UV * array;
6201
6202     PERL_ARGS_ASSERT__INVLIST_POPULATE_SWATCH;
6203
6204     if (len == 0) { /* Empty inversion list */
6205         return;
6206     }
6207
6208     array = invlist_array(invlist);
6209
6210     /* Find which element it is */
6211     i = invlist_search(invlist, start);
6212
6213     /* We populate from <start> to <end> */
6214     while (current < end) {
6215         UV upper;
6216
6217         /* The inversion list gives the results for every possible code point
6218          * after the first one in the list.  Only those ranges whose index is
6219          * even are ones that the inversion list matches.  For the odd ones,
6220          * and if the initial code point is not in the list, we have to skip
6221          * forward to the next element */
6222         if (i == -1 || ! ELEMENT_RANGE_MATCHES_INVLIST(i)) {
6223             i++;
6224             if (i >= len) { /* Finished if beyond the end of the array */
6225                 return;
6226             }
6227             current = array[i];
6228             if (current >= end) {   /* Finished if beyond the end of what we
6229                                        are populating */
6230                 return;
6231             }
6232         }
6233         assert(current >= start);
6234
6235         /* The current range ends one below the next one, except don't go past
6236          * <end> */
6237         i++;
6238         upper = (i < len && array[i] < end) ? array[i] : end;
6239
6240         /* Here we are in a range that matches.  Populate a bit in the 3-bit U8
6241          * for each code point in it */
6242         for (; current < upper; current++) {
6243             const STRLEN offset = (STRLEN)(current - start);
6244             swatch[offset >> 3] |= 1 << (offset & 7);
6245         }
6246
6247         /* Quit if at the end of the list */
6248         if (i >= len) {
6249
6250             /* But first, have to deal with the highest possible code point on
6251              * the platform.  The previous code assumes that <end> is one
6252              * beyond where we want to populate, but that is impossible at the
6253              * platform's infinity, so have to handle it specially */
6254             if (UNLIKELY(end == UV_MAX && ELEMENT_RANGE_MATCHES_INVLIST(len-1)))
6255             {
6256                 const STRLEN offset = (STRLEN)(end - start);
6257                 swatch[offset >> 3] |= 1 << (offset & 7);
6258             }
6259             return;
6260         }
6261
6262         /* Advance to the next range, which will be for code points not in the
6263          * inversion list */
6264         current = array[i];
6265     }
6266
6267     return;
6268 }
6269
6270 void
6271 Perl__invlist_union(pTHX_ SV* const a, SV* const b, SV** output)
6272 {
6273     /* Take the union of two inversion lists and point <output> to it.  *output
6274      * should be defined upon input, and if it points to one of the two lists,
6275      * the reference count to that list will be decremented.
6276      * The basis for this comes from "Unicode Demystified" Chapter 13 by
6277      * Richard Gillam, published by Addison-Wesley, and explained at some
6278      * length there.  The preface says to incorporate its examples into your
6279      * code at your own risk.
6280      *
6281      * The algorithm is like a merge sort.
6282      *
6283      * XXX A potential performance improvement is to keep track as we go along
6284      * if only one of the inputs contributes to the result, meaning the other
6285      * is a subset of that one.  In that case, we can skip the final copy and
6286      * return the larger of the input lists, but then outside code might need
6287      * to keep track of whether to free the input list or not */
6288
6289     UV* array_a;    /* a's array */
6290     UV* array_b;
6291     UV len_a;       /* length of a's array */
6292     UV len_b;
6293
6294     SV* u;                      /* the resulting union */
6295     UV* array_u;
6296     UV len_u;
6297
6298     UV i_a = 0;             /* current index into a's array */
6299     UV i_b = 0;
6300     UV i_u = 0;
6301
6302     /* running count, as explained in the algorithm source book; items are
6303      * stopped accumulating and are output when the count changes to/from 0.
6304      * The count is incremented when we start a range that's in the set, and
6305      * decremented when we start a range that's not in the set.  So its range
6306      * is 0 to 2.  Only when the count is zero is something not in the set.
6307      */
6308     UV count = 0;
6309
6310     PERL_ARGS_ASSERT__INVLIST_UNION;
6311     assert(a != b);
6312
6313     /* If either one is empty, the union is the other one */
6314     len_a = invlist_len(a);
6315     if (len_a == 0) {
6316         if (*output == a) {
6317             SvREFCNT_dec(a);
6318         }
6319         if (*output != b) {
6320             *output = invlist_clone(b);
6321         } /* else *output already = b; */
6322         return;
6323     }
6324     else if ((len_b = invlist_len(b)) == 0) {
6325         if (*output == b) {
6326             SvREFCNT_dec(b);
6327         }
6328         if (*output != a) {
6329             *output = invlist_clone(a);
6330         }
6331         /* else *output already = a; */
6332         return;
6333     }
6334
6335     /* Here both lists exist and are non-empty */
6336     array_a = invlist_array(a);
6337     array_b = invlist_array(b);
6338
6339     /* Size the union for the worst case: that the sets are completely
6340      * disjoint */
6341     u = _new_invlist(len_a + len_b);
6342
6343     /* Will contain U+0000 if either component does */
6344     array_u = _invlist_array_init(u, (len_a > 0 && array_a[0] == 0)
6345                                       || (len_b > 0 && array_b[0] == 0));
6346
6347     /* Go through each list item by item, stopping when exhausted one of
6348      * them */
6349     while (i_a < len_a && i_b < len_b) {
6350         UV cp;      /* The element to potentially add to the union's array */
6351         bool cp_in_set;   /* is it in the the input list's set or not */
6352
6353         /* We need to take one or the other of the two inputs for the union.
6354          * Since we are merging two sorted lists, we take the smaller of the
6355          * next items.  In case of a tie, we take the one that is in its set
6356          * first.  If we took one not in the set first, it would decrement the
6357          * count, possibly to 0 which would cause it to be output as ending the
6358          * range, and the next time through we would take the same number, and
6359          * output it again as beginning the next range.  By doing it the
6360          * opposite way, there is no possibility that the count will be
6361          * momentarily decremented to 0, and thus the two adjoining ranges will
6362          * be seamlessly merged.  (In a tie and both are in the set or both not
6363          * in the set, it doesn't matter which we take first.) */
6364         if (array_a[i_a] < array_b[i_b]
6365             || (array_a[i_a] == array_b[i_b]
6366                 && ELEMENT_RANGE_MATCHES_INVLIST(i_a)))
6367         {
6368             cp_in_set = ELEMENT_RANGE_MATCHES_INVLIST(i_a);
6369             cp= array_a[i_a++];
6370         }
6371         else {
6372             cp_in_set = ELEMENT_RANGE_MATCHES_INVLIST(i_b);
6373             cp= array_b[i_b++];
6374         }
6375
6376         /* Here, have chosen which of the two inputs to look at.  Only output
6377          * if the running count changes to/from 0, which marks the
6378          * beginning/end of a range in that's in the set */
6379         if (cp_in_set) {
6380             if (count == 0) {
6381                 array_u[i_u++] = cp;
6382             }
6383             count++;
6384         }
6385         else {
6386             count--;
6387             if (count == 0) {
6388                 array_u[i_u++] = cp;
6389             }
6390         }
6391     }
6392
6393     /* Here, we are finished going through at least one of the lists, which
6394      * means there is something remaining in at most one.  We check if the list
6395      * that hasn't been exhausted is positioned such that we are in the middle
6396      * of a range in its set or not.  (i_a and i_b point to the element beyond
6397      * the one we care about.) If in the set, we decrement 'count'; if 0, there
6398      * is potentially more to output.
6399      * There are four cases:
6400      *  1) Both weren't in their sets, count is 0, and remains 0.  What's left
6401      *     in the union is entirely from the non-exhausted set.
6402      *  2) Both were in their sets, count is 2.  Nothing further should
6403      *     be output, as everything that remains will be in the exhausted
6404      *     list's set, hence in the union; decrementing to 1 but not 0 insures
6405      *     that
6406      *  3) the exhausted was in its set, non-exhausted isn't, count is 1.
6407      *     Nothing further should be output because the union includes
6408      *     everything from the exhausted set.  Not decrementing ensures that.
6409      *  4) the exhausted wasn't in its set, non-exhausted is, count is 1;
6410      *     decrementing to 0 insures that we look at the remainder of the
6411      *     non-exhausted set */
6412     if ((i_a != len_a && PREV_RANGE_MATCHES_INVLIST(i_a))
6413         || (i_b != len_b && PREV_RANGE_MATCHES_INVLIST(i_b)))
6414     {
6415         count--;
6416     }
6417
6418     /* The final length is what we've output so far, plus what else is about to
6419      * be output.  (If 'count' is non-zero, then the input list we exhausted
6420      * has everything remaining up to the machine's limit in its set, and hence
6421      * in the union, so there will be no further output. */
6422     len_u = i_u;
6423     if (count == 0) {
6424         /* At most one of the subexpressions will be non-zero */
6425         len_u += (len_a - i_a) + (len_b - i_b);
6426     }
6427
6428     /* Set result to final length, which can change the pointer to array_u, so
6429      * re-find it */
6430     if (len_u != invlist_len(u)) {
6431         invlist_set_len(u, len_u);
6432         invlist_trim(u);
6433         array_u = invlist_array(u);
6434     }
6435
6436     /* When 'count' is 0, the list that was exhausted (if one was shorter than
6437      * the other) ended with everything above it not in its set.  That means
6438      * that the remaining part of the union is precisely the same as the
6439      * non-exhausted list, so can just copy it unchanged.  (If both list were
6440      * exhausted at the same time, then the operations below will be both 0.)
6441      */
6442     if (count == 0) {
6443         IV copy_count; /* At most one will have a non-zero copy count */
6444         if ((copy_count = len_a - i_a) > 0) {
6445             Copy(array_a + i_a, array_u + i_u, copy_count, UV);
6446         }
6447         else if ((copy_count = len_b - i_b) > 0) {
6448             Copy(array_b + i_b, array_u + i_u, copy_count, UV);
6449         }
6450     }
6451
6452     /*  We may be removing a reference to one of the inputs */
6453     if (a == *output || b == *output) {
6454         SvREFCNT_dec(*output);
6455     }
6456
6457     *output = u;
6458     return;
6459 }
6460
6461 void
6462 Perl__invlist_intersection(pTHX_ SV* const a, SV* const b, SV** i)
6463 {
6464     /* Take the intersection of two inversion lists and point <i> to it.  *i
6465      * should be defined upon input, and if it points to one of the two lists,
6466      * the reference count to that list will be decremented.
6467      * The basis for this comes from "Unicode Demystified" Chapter 13 by
6468      * Richard Gillam, published by Addison-Wesley, and explained at some
6469      * length there.  The preface says to incorporate its examples into your
6470      * code at your own risk.  In fact, it had bugs
6471      *
6472      * The algorithm is like a merge sort, and is essentially the same as the
6473      * union above
6474      */
6475
6476     UV* array_a;                /* a's array */
6477     UV* array_b;
6478     UV len_a;   /* length of a's array */
6479     UV len_b;
6480
6481     SV* r;                   /* the resulting intersection */
6482     UV* array_r;
6483     UV len_r;
6484
6485     UV i_a = 0;             /* current index into a's array */
6486     UV i_b = 0;
6487     UV i_r = 0;
6488
6489     /* running count, as explained in the algorithm source book; items are
6490      * stopped accumulating and are output when the count changes to/from 2.
6491      * The count is incremented when we start a range that's in the set, and
6492      * decremented when we start a range that's not in the set.  So its range
6493      * is 0 to 2.  Only when the count is 2 is something in the intersection.
6494      */
6495     UV count = 0;
6496
6497     PERL_ARGS_ASSERT__INVLIST_INTERSECTION;
6498     assert(a != b);
6499
6500     /* If either one is empty, the intersection is null */
6501     len_a = invlist_len(a);
6502     if ((len_a == 0) || ((len_b = invlist_len(b)) == 0)) {
6503
6504         /* If the result is the same as one of the inputs, the input is being
6505          * overwritten */
6506         if (*i == a) {
6507             SvREFCNT_dec(a);
6508         }
6509         else if (*i == b) {
6510             SvREFCNT_dec(b);
6511         }
6512
6513         *i = _new_invlist(0);
6514         return;
6515     }
6516
6517     /* Here both lists exist and are non-empty */
6518     array_a = invlist_array(a);
6519     array_b = invlist_array(b);
6520
6521     /* Size the intersection for the worst case: that the intersection ends up
6522      * fragmenting everything to be completely disjoint */
6523     r= _new_invlist(len_a + len_b);
6524
6525     /* Will contain U+0000 iff both components do */
6526     array_r = _invlist_array_init(r, len_a > 0 && array_a[0] == 0
6527                                      && len_b > 0 && array_b[0] == 0);
6528
6529     /* Go through each list item by item, stopping when exhausted one of
6530      * them */
6531     while (i_a < len_a && i_b < len_b) {
6532         UV cp;      /* The element to potentially add to the intersection's
6533                        array */
6534         bool cp_in_set; /* Is it in the input list's set or not */
6535
6536         /* We need to take one or the other of the two inputs for the
6537          * intersection.  Since we are merging two sorted lists, we take the
6538          * smaller of the next items.  In case of a tie, we take the one that
6539          * is not in its set first (a difference from the union algorithm).  If
6540          * we took one in the set first, it would increment the count, possibly
6541          * to 2 which would cause it to be output as starting a range in the
6542          * intersection, and the next time through we would take that same
6543          * number, and output it again as ending the set.  By doing it the
6544          * opposite of this, there is no possibility that the count will be
6545          * momentarily incremented to 2.  (In a tie and both are in the set or
6546          * both not in the set, it doesn't matter which we take first.) */
6547         if (array_a[i_a] < array_b[i_b]
6548             || (array_a[i_a] == array_b[i_b]
6549                 && ! ELEMENT_RANGE_MATCHES_INVLIST(i_a)))
6550         {
6551             cp_in_set = ELEMENT_RANGE_MATCHES_INVLIST(i_a);
6552             cp= array_a[i_a++];
6553         }
6554         else {
6555             cp_in_set = ELEMENT_RANGE_MATCHES_INVLIST(i_b);
6556             cp= array_b[i_b++];
6557         }
6558
6559         /* Here, have chosen which of the two inputs to look at.  Only output
6560          * if the running count changes to/from 2, which marks the
6561          * beginning/end of a range that's in the intersection */
6562         if (cp_in_set) {
6563             count++;
6564             if (count == 2) {
6565                 array_r[i_r++] = cp;
6566             }
6567         }
6568         else {
6569             if (count == 2) {
6570                 array_r[i_r++] = cp;
6571             }
6572             count--;
6573         }
6574     }
6575
6576     /* Here, we are finished going through at least one of the lists, which
6577      * means there is something remaining in at most one.  We check if the list
6578      * that has been exhausted is positioned such that we are in the middle
6579      * of a range in its set or not.  (i_a and i_b point to elements 1 beyond
6580      * the ones we care about.)  There are four cases:
6581      *  1) Both weren't in their sets, count is 0, and remains 0.  There's
6582      *     nothing left in the intersection.
6583      *  2) Both were in their sets, count is 2 and perhaps is incremented to
6584      *     above 2.  What should be output is exactly that which is in the
6585      *     non-exhausted set, as everything it has is also in the intersection
6586      *     set, and everything it doesn't have can't be in the intersection
6587      *  3) The exhausted was in its set, non-exhausted isn't, count is 1, and
6588      *     gets incremented to 2.  Like the previous case, the intersection is
6589      *     everything that remains in the non-exhausted set.
6590      *  4) the exhausted wasn't in its set, non-exhausted is, count is 1, and
6591      *     remains 1.  And the intersection has nothing more. */
6592     if ((i_a == len_a && PREV_RANGE_MATCHES_INVLIST(i_a))
6593         || (i_b == len_b && PREV_RANGE_MATCHES_INVLIST(i_b)))
6594     {
6595         count++;
6596     }
6597
6598     /* The final length is what we've output so far plus what else is in the
6599      * intersection.  At most one of the subexpressions below will be non-zero */
6600     len_r = i_r;
6601     if (count >= 2) {
6602         len_r += (len_a - i_a) + (len_b - i_b);
6603     }
6604
6605     /* Set result to final length, which can change the pointer to array_r, so
6606      * re-find it */
6607     if (len_r != invlist_len(r)) {
6608         invlist_set_len(r, len_r);
6609         invlist_trim(r);
6610         array_r = invlist_array(r);
6611     }
6612
6613     /* Finish outputting any remaining */
6614     if (count >= 2) { /* At most one will have a non-zero copy count */
6615         IV copy_count;
6616         if ((copy_count = len_a - i_a) > 0) {
6617             Copy(array_a + i_a, array_r + i_r, copy_count, UV);
6618         }
6619         else if ((copy_count = len_b - i_b) > 0) {
6620             Copy(array_b + i_b, array_r + i_r, copy_count, UV);
6621         }
6622     }
6623
6624     /*  We may be removing a reference to one of the inputs */
6625     if (a == *i || b == *i) {
6626         SvREFCNT_dec(*i);
6627     }
6628
6629     *i = r;
6630     return;
6631 }
6632
6633 #endif
6634
6635 STATIC SV*
6636 S_add_range_to_invlist(pTHX_ SV* invlist, const UV start, const UV end)
6637 {
6638     /* Add the range from 'start' to 'end' inclusive to the inversion list's
6639      * set.  A pointer to the inversion list is returned.  This may actually be
6640      * a new list, in which case the passed in one has been destroyed.  The
6641      * passed in inversion list can be NULL, in which case a new one is created
6642      * with just the one range in it */
6643
6644     SV* range_invlist;
6645     UV len;
6646
6647     if (invlist == NULL) {
6648         invlist = _new_invlist(2);
6649         len = 0;
6650     }
6651     else {
6652         len = invlist_len(invlist);
6653     }
6654
6655     /* If comes after the final entry, can just append it to the end */
6656     if (len == 0
6657         || start >= invlist_array(invlist)
6658                                     [invlist_len(invlist) - 1])
6659     {
6660         _append_range_to_invlist(invlist, start, end);
6661         return invlist;
6662     }
6663
6664     /* Here, can't just append things, create and return a new inversion list
6665      * which is the union of this range and the existing inversion list */
6666     range_invlist = _new_invlist(2);
6667     _append_range_to_invlist(range_invlist, start, end);
6668
6669     _invlist_union(invlist, range_invlist, &invlist);
6670
6671     /* The temporary can be freed */
6672     SvREFCNT_dec(range_invlist);
6673
6674     return invlist;
6675 }
6676
6677 PERL_STATIC_INLINE SV*
6678 S_add_cp_to_invlist(pTHX_ SV* invlist, const UV cp) {
6679     return add_range_to_invlist(invlist, cp, cp);
6680 }
6681
6682 #ifndef PERL_IN_XSUB_RE
6683 void
6684 Perl__invlist_invert(pTHX_ SV* const invlist)
6685 {
6686     /* Complement the input inversion list.  This adds a 0 if the list didn't
6687      * have a zero; removes it otherwise.  As described above, the data
6688      * structure is set up so that this is very efficient */
6689
6690     UV* len_pos = get_invlist_len_addr(invlist);
6691
6692     PERL_ARGS_ASSERT__INVLIST_INVERT;
6693
6694     /* The inverse of matching nothing is matching everything */
6695     if (*len_pos == 0) {
6696         _append_range_to_invlist(invlist, 0, UV_MAX);
6697         return;
6698     }
6699
6700     /* The exclusive or complents 0 to 1; and 1 to 0.  If the result is 1, the
6701      * zero element was a 0, so it is being removed, so the length decrements
6702      * by 1; and vice-versa.  SvCUR is unaffected */
6703     if (*get_invlist_zero_addr(invlist) ^= 1) {
6704         (*len_pos)--;
6705     }
6706     else {
6707         (*len_pos)++;
6708     }
6709 }
6710
6711 void
6712 Perl__invlist_invert_prop(pTHX_ SV* const invlist)
6713 {
6714     /* Complement the input inversion list (which must be a Unicode property,
6715      * all of which don't match above the Unicode maximum code point.)  And
6716      * Perl has chosen to not have the inversion match above that either.  This
6717      * adds a 0x110000 if the list didn't end with it, and removes it if it did
6718      */
6719
6720     UV len;
6721     UV* array;
6722
6723     PERL_ARGS_ASSERT__INVLIST_INVERT_PROP;
6724
6725     _invlist_invert(invlist);
6726
6727     len = invlist_len(invlist);
6728
6729     if (len != 0) { /* If empty do nothing */
6730         array = invlist_array(invlist);
6731         if (array[len - 1] != PERL_UNICODE_MAX + 1) {
6732             /* Add 0x110000.  First, grow if necessary */
6733             len++;
6734             if (invlist_max(invlist) < len) {
6735                 invlist_extend(invlist, len);
6736                 array = invlist_array(invlist);
6737             }
6738             invlist_set_len(invlist, len);
6739             array[len - 1] = PERL_UNICODE_MAX + 1;
6740         }
6741         else {  /* Remove the 0x110000 */
6742             invlist_set_len(invlist, len - 1);
6743         }
6744     }
6745
6746     return;
6747 }
6748 #endif
6749
6750 PERL_STATIC_INLINE SV*
6751 S_invlist_clone(pTHX_ SV* const invlist)
6752 {
6753
6754     /* Return a new inversion list that is a copy of the input one, which is
6755      * unchanged */
6756
6757     /* Need to allocate extra space to accommodate Perl's addition of a
6758      * trailing NUL to SvPV's, since it thinks they are always strings */
6759     SV* new_invlist = _new_invlist(invlist_len(invlist) + 1);
6760     STRLEN length = SvCUR(invlist);
6761
6762     PERL_ARGS_ASSERT_INVLIST_CLONE;
6763
6764     SvCUR_set(new_invlist, length); /* This isn't done automatically */
6765     Copy(SvPVX(invlist), SvPVX(new_invlist), length, char);
6766
6767     return new_invlist;
6768 }
6769
6770 #ifndef PERL_IN_XSUB_RE
6771 void
6772 Perl__invlist_subtract(pTHX_ SV* const a, SV* const b, SV** result)
6773 {
6774     /* Point <result> to an inversion list which consists of all elements in
6775      * <a> that aren't also in <b>.  *result should be defined upon input, and
6776      * if it points to C<b> its reference count will be decremented. */
6777
6778     PERL_ARGS_ASSERT__INVLIST_SUBTRACT;
6779     assert(a != b);
6780
6781     /* Subtracting nothing retains the original */
6782     if (invlist_len(b) == 0) {
6783
6784         if (*result == b) {
6785             SvREFCNT_dec(b);
6786         }
6787
6788         /* If the result is not to be the same variable as the original, create
6789          * a copy */
6790         if (*result != a) {
6791             *result = invlist_clone(a);
6792         }
6793     } else {
6794         SV *b_copy = invlist_clone(b);
6795         _invlist_invert(b_copy);        /* Everything not in 'b' */
6796
6797         if (*result == b) {
6798             SvREFCNT_dec(b);
6799         }
6800
6801         _invlist_intersection(a, b_copy, result);    /* Everything in 'a' not in
6802                                                        'b' */
6803         SvREFCNT_dec(b_copy);
6804     }
6805
6806     return;
6807 }
6808 #endif
6809
6810 PERL_STATIC_INLINE UV*
6811 S_get_invlist_iter_addr(pTHX_ SV* invlist)
6812 {
6813     /* Return the address of the UV that contains the current iteration
6814      * position */
6815
6816     PERL_ARGS_ASSERT_GET_INVLIST_ITER_ADDR;
6817
6818     return (UV *) (SvPVX(invlist) + (INVLIST_ITER_OFFSET * sizeof (UV)));
6819 }
6820
6821 PERL_STATIC_INLINE void
6822 S_invlist_iterinit(pTHX_ SV* invlist)   /* Initialize iterator for invlist */
6823 {
6824     PERL_ARGS_ASSERT_INVLIST_ITERINIT;
6825
6826     *get_invlist_iter_addr(invlist) = 0;
6827 }
6828
6829 STATIC bool
6830 S_invlist_iternext(pTHX_ SV* invlist, UV* start, UV* end)
6831 {
6832     /* An C<invlist_iterinit> call on <invlist> must be used to set this up.
6833      * This call sets in <*start> and <*end>, the next range in <invlist>.
6834      * Returns <TRUE> if successful and the next call will return the next
6835      * range; <FALSE> if was already at the end of the list.  If the latter,
6836      * <*start> and <*end> are unchanged, and the next call to this function
6837      * will start over at the beginning of the list */
6838
6839     UV* pos = get_invlist_iter_addr(invlist);
6840     UV len = invlist_len(invlist);
6841     UV *array;
6842
6843     PERL_ARGS_ASSERT_INVLIST_ITERNEXT;
6844
6845     if (*pos >= len) {
6846         *pos = UV_MAX;  /* Force iternit() to be required next time */
6847         return FALSE;
6848     }
6849
6850     array = invlist_array(invlist);
6851
6852     *start = array[(*pos)++];
6853
6854     if (*pos >= len) {
6855         *end = UV_MAX;
6856     }
6857     else {
6858         *end = array[(*pos)++] - 1;
6859     }
6860
6861     return TRUE;
6862 }
6863
6864 #ifndef PERL_IN_XSUB_RE
6865 SV *
6866 Perl__invlist_contents(pTHX_ SV* const invlist)
6867 {
6868     /* Get the contents of an inversion list into a string SV so that they can
6869      * be printed out.  It uses the format traditionally done for debug tracing
6870      */
6871
6872     UV start, end;
6873     SV* output = newSVpvs("\n");
6874
6875     PERL_ARGS_ASSERT__INVLIST_CONTENTS;
6876
6877     invlist_iterinit(invlist);
6878     while (invlist_iternext(invlist, &start, &end)) {
6879         if (end == UV_MAX) {
6880             Perl_sv_catpvf(aTHX_ output, "%04"UVXf"\tINFINITY\n", start);
6881         }
6882         else if (end != start) {
6883             Perl_sv_catpvf(aTHX_ output, "%04"UVXf"\t%04"UVXf"\n",
6884                     start,       end);
6885         }
6886         else {
6887             Perl_sv_catpvf(aTHX_ output, "%04"UVXf"\n", start);
6888         }
6889     }
6890
6891     return output;
6892 }
6893 #endif
6894
6895 #if 0
6896 void
6897 S_invlist_dump(pTHX_ SV* const invlist, const char * const header)
6898 {
6899     /* Dumps out the ranges in an inversion list.  The string 'header'
6900      * if present is output on a line before the first range */
6901
6902     UV start, end;
6903
6904     if (header && strlen(header)) {
6905         PerlIO_printf(Perl_debug_log, "%s\n", header);
6906     }
6907     invlist_iterinit(invlist);
6908     while (invlist_iternext(invlist, &start, &end)) {
6909         if (end == UV_MAX) {
6910             PerlIO_printf(Perl_debug_log, "0x%04"UVXf" .. INFINITY\n", start);
6911         }
6912         else {
6913             PerlIO_printf(Perl_debug_log, "0x%04"UVXf" .. 0x%04"UVXf"\n", start, end);
6914         }
6915     }
6916 }
6917 #endif
6918
6919 #undef HEADER_LENGTH
6920 #undef INVLIST_INITIAL_LENGTH
6921 #undef TO_INTERNAL_SIZE
6922 #undef FROM_INTERNAL_SIZE
6923 #undef INVLIST_LEN_OFFSET
6924 #undef INVLIST_ZERO_OFFSET
6925 #undef INVLIST_ITER_OFFSET
6926
6927 /* End of inversion list object */
6928
6929 /*
6930  - reg - regular expression, i.e. main body or parenthesized thing
6931  *
6932  * Caller must absorb opening parenthesis.
6933  *
6934  * Combining parenthesis handling with the base level of regular expression
6935  * is a trifle forced, but the need to tie the tails of the branches to what
6936  * follows makes it hard to avoid.
6937  */
6938 #define REGTAIL(x,y,z) regtail((x),(y),(z),depth+1)
6939 #ifdef DEBUGGING
6940 #define REGTAIL_STUDY(x,y,z) regtail_study((x),(y),(z),depth+1)
6941 #else
6942 #define REGTAIL_STUDY(x,y,z) regtail((x),(y),(z),depth+1)
6943 #endif
6944
6945 STATIC regnode *
6946 S_reg(pTHX_ RExC_state_t *pRExC_state, I32 paren, I32 *flagp,U32 depth)
6947     /* paren: Parenthesized? 0=top, 1=(, inside: changed to letter. */
6948 {
6949     dVAR;
6950     register regnode *ret;              /* Will be the head of the group. */
6951     register regnode *br;
6952     register regnode *lastbr;
6953     register regnode *ender = NULL;
6954     register I32 parno = 0;
6955     I32 flags;
6956     U32 oregflags = RExC_flags;
6957     bool have_branch = 0;
6958     bool is_open = 0;
6959     I32 freeze_paren = 0;
6960     I32 after_freeze = 0;
6961
6962     /* for (?g), (?gc), and (?o) warnings; warning
6963        about (?c) will warn about (?g) -- japhy    */
6964
6965 #define WASTED_O  0x01
6966 #define WASTED_G  0x02
6967 #define WASTED_C  0x04
6968 #define WASTED_GC (0x02|0x04)
6969     I32 wastedflags = 0x00;
6970
6971     char * parse_start = RExC_parse; /* MJD */
6972     char * const oregcomp_parse = RExC_parse;
6973
6974     GET_RE_DEBUG_FLAGS_DECL;
6975
6976     PERL_ARGS_ASSERT_REG;
6977     DEBUG_PARSE("reg ");
6978
6979     *flagp = 0;                         /* Tentatively. */
6980
6981
6982     /* Make an OPEN node, if parenthesized. */
6983     if (paren) {
6984         if ( *RExC_parse == '*') { /* (*VERB:ARG) */
6985             char *start_verb = RExC_parse;
6986             STRLEN verb_len = 0;
6987             char *start_arg = NULL;
6988             unsigned char op = 0;
6989             int argok = 1;
6990             int internal_argval = 0; /* internal_argval is only useful if !argok */
6991             while ( *RExC_parse && *RExC_parse != ')' ) {
6992                 if ( *RExC_parse == ':' ) {
6993                     start_arg = RExC_parse + 1;
6994                     break;
6995                 }
6996                 RExC_parse++;
6997             }
6998             ++start_verb;
6999             verb_len = RExC_parse - start_verb;
7000             if ( start_arg ) {
7001                 RExC_parse++;
7002                 while ( *RExC_parse && *RExC_parse != ')' ) 
7003                     RExC_parse++;
7004                 if ( *RExC_parse != ')' ) 
7005                     vFAIL("Unterminated verb pattern argument");
7006                 if ( RExC_parse == start_arg )
7007                     start_arg = NULL;
7008             } else {
7009                 if ( *RExC_parse != ')' )
7010                     vFAIL("Unterminated verb pattern");
7011             }
7012             
7013             switch ( *start_verb ) {
7014             case 'A':  /* (*ACCEPT) */
7015                 if ( memEQs(start_verb,verb_len,"ACCEPT") ) {
7016                     op = ACCEPT;
7017                     internal_argval = RExC_nestroot;
7018                 }
7019                 break;
7020             case 'C':  /* (*COMMIT) */
7021                 if ( memEQs(start_verb,verb_len,"COMMIT") )
7022                     op = COMMIT;
7023                 break;
7024             case 'F':  /* (*FAIL) */
7025                 if ( verb_len==1 || memEQs(start_verb,verb_len,"FAIL") ) {
7026                     op = OPFAIL;
7027                     argok = 0;
7028                 }
7029                 break;
7030             case ':':  /* (*:NAME) */
7031             case 'M':  /* (*MARK:NAME) */
7032                 if ( verb_len==0 || memEQs(start_verb,verb_len,"MARK") ) {
7033                     op = MARKPOINT;
7034                     argok = -1;
7035                 }
7036                 break;
7037             case 'P':  /* (*PRUNE) */
7038                 if ( memEQs(start_verb,verb_len,"PRUNE") )
7039                     op = PRUNE;
7040                 break;
7041             case 'S':   /* (*SKIP) */  
7042                 if ( memEQs(start_verb,verb_len,"SKIP") ) 
7043                     op = SKIP;
7044                 break;
7045             case 'T':  /* (*THEN) */
7046                 /* [19:06] <TimToady> :: is then */
7047                 if ( memEQs(start_verb,verb_len,"THEN") ) {
7048                     op = CUTGROUP;
7049                     RExC_seen |= REG_SEEN_CUTGROUP;
7050                 }
7051                 break;
7052             }
7053             if ( ! op ) {
7054                 RExC_parse++;
7055                 vFAIL3("Unknown verb pattern '%.*s'",
7056                     verb_len, start_verb);
7057             }
7058             if ( argok ) {
7059                 if ( start_arg && internal_argval ) {
7060                     vFAIL3("Verb pattern '%.*s' may not have an argument",
7061                         verb_len, start_verb); 
7062                 } else if ( argok < 0 && !start_arg ) {
7063                     vFAIL3("Verb pattern '%.*s' has a mandatory argument",
7064                         verb_len, start_verb);    
7065                 } else {
7066                     ret = reganode(pRExC_state, op, internal_argval);
7067                     if ( ! internal_argval && ! SIZE_ONLY ) {
7068                         if (start_arg) {
7069                             SV *sv = newSVpvn( start_arg, RExC_parse - start_arg);
7070                             ARG(ret) = add_data( pRExC_state, 1, "S" );
7071                             RExC_rxi->data->data[ARG(ret)]=(void*)sv;
7072                             ret->flags = 0;
7073                         } else {
7074                             ret->flags = 1; 
7075                         }
7076                     }               
7077                 }
7078                 if (!internal_argval)
7079                     RExC_seen |= REG_SEEN_VERBARG;
7080             } else if ( start_arg ) {
7081                 vFAIL3("Verb pattern '%.*s' may not have an argument",
7082                         verb_len, start_verb);    
7083             } else {
7084                 ret = reg_node(pRExC_state, op);
7085             }
7086             nextchar(pRExC_state);
7087             return ret;
7088         } else 
7089         if (*RExC_parse == '?') { /* (?...) */
7090             bool is_logical = 0;
7091             const char * const seqstart = RExC_parse;
7092             bool has_use_defaults = FALSE;
7093
7094             RExC_parse++;
7095             paren = *RExC_parse++;
7096             ret = NULL;                 /* For look-ahead/behind. */
7097             switch (paren) {
7098
7099             case 'P':   /* (?P...) variants for those used to PCRE/Python */
7100                 paren = *RExC_parse++;
7101                 if ( paren == '<')         /* (?P<...>) named capture */
7102                     goto named_capture;
7103                 else if (paren == '>') {   /* (?P>name) named recursion */
7104                     goto named_recursion;
7105                 }
7106                 else if (paren == '=') {   /* (?P=...)  named backref */
7107                     /* this pretty much dupes the code for \k<NAME> in regatom(), if
7108                        you change this make sure you change that */
7109                     char* name_start = RExC_parse;
7110                     U32 num = 0;
7111                     SV *sv_dat = reg_scan_name(pRExC_state,
7112                         SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
7113                     if (RExC_parse == name_start || *RExC_parse != ')')
7114                         vFAIL2("Sequence %.3s... not terminated",parse_start);
7115
7116                     if (!SIZE_ONLY) {
7117                         num = add_data( pRExC_state, 1, "S" );
7118                         RExC_rxi->data->data[num]=(void*)sv_dat;
7119                         SvREFCNT_inc_simple_void(sv_dat);
7120                     }
7121                     RExC_sawback = 1;
7122                     ret = reganode(pRExC_state,
7123                                    ((! FOLD)
7124                                      ? NREF
7125                                      : (MORE_ASCII_RESTRICTED)
7126                                        ? NREFFA
7127                                        : (AT_LEAST_UNI_SEMANTICS)
7128                                          ? NREFFU
7129                                          : (LOC)
7130                                            ? NREFFL
7131                                            : NREFF),
7132                                     num);
7133                     *flagp |= HASWIDTH;
7134
7135                     Set_Node_Offset(ret, parse_start+1);
7136                     Set_Node_Cur_Length(ret); /* MJD */
7137
7138                     nextchar(pRExC_state);
7139                     return ret;
7140                 }
7141                 RExC_parse++;
7142                 vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
7143                 /*NOTREACHED*/
7144             case '<':           /* (?<...) */
7145                 if (*RExC_parse == '!')
7146                     paren = ',';
7147                 else if (*RExC_parse != '=') 
7148               named_capture:
7149                 {               /* (?<...>) */
7150                     char *name_start;
7151                     SV *svname;
7152                     paren= '>';
7153             case '\'':          /* (?'...') */
7154                     name_start= RExC_parse;
7155                     svname = reg_scan_name(pRExC_state,
7156                         SIZE_ONLY ?  /* reverse test from the others */
7157                         REG_RSN_RETURN_NAME : 
7158                         REG_RSN_RETURN_NULL);
7159                     if (RExC_parse == name_start) {
7160                         RExC_parse++;
7161                         vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
7162                         /*NOTREACHED*/
7163                     }
7164                     if (*RExC_parse != paren)
7165                         vFAIL2("Sequence (?%c... not terminated",
7166                             paren=='>' ? '<' : paren);
7167                     if (SIZE_ONLY) {
7168                         HE *he_str;
7169                         SV *sv_dat = NULL;
7170                         if (!svname) /* shouldn't happen */
7171                             Perl_croak(aTHX_
7172                                 "panic: reg_scan_name returned NULL");
7173                         if (!RExC_paren_names) {
7174                             RExC_paren_names= newHV();
7175                             sv_2mortal(MUTABLE_SV(RExC_paren_names));
7176 #ifdef DEBUGGING
7177                             RExC_paren_name_list= newAV();
7178                             sv_2mortal(MUTABLE_SV(RExC_paren_name_list));
7179 #endif
7180                         }
7181                         he_str = hv_fetch_ent( RExC_paren_names, svname, 1, 0 );
7182                         if ( he_str )
7183                             sv_dat = HeVAL(he_str);
7184                         if ( ! sv_dat ) {
7185                             /* croak baby croak */
7186                             Perl_croak(aTHX_
7187                                 "panic: paren_name hash element allocation failed");
7188                         } else if ( SvPOK(sv_dat) ) {
7189                             /* (?|...) can mean we have dupes so scan to check
7190                                its already been stored. Maybe a flag indicating
7191                                we are inside such a construct would be useful,
7192                                but the arrays are likely to be quite small, so
7193                                for now we punt -- dmq */
7194                             IV count = SvIV(sv_dat);
7195                             I32 *pv = (I32*)SvPVX(sv_dat);
7196                             IV i;
7197                             for ( i = 0 ; i < count ; i++ ) {
7198                                 if ( pv[i] == RExC_npar ) {
7199                                     count = 0;
7200                                     break;
7201                                 }
7202                             }
7203                             if ( count ) {
7204                                 pv = (I32*)SvGROW(sv_dat, SvCUR(sv_dat) + sizeof(I32)+1);
7205                                 SvCUR_set(sv_dat, SvCUR(sv_dat) + sizeof(I32));
7206                                 pv[count] = RExC_npar;
7207                                 SvIV_set(sv_dat, SvIVX(sv_dat) + 1);
7208                             }
7209                         } else {
7210                             (void)SvUPGRADE(sv_dat,SVt_PVNV);
7211                             sv_setpvn(sv_dat, (char *)&(RExC_npar), sizeof(I32));
7212                             SvIOK_on(sv_dat);
7213                             SvIV_set(sv_dat, 1);
7214                         }
7215 #ifdef DEBUGGING
7216                         /* Yes this does cause a memory leak in debugging Perls */
7217                         if (!av_store(RExC_paren_name_list, RExC_npar, SvREFCNT_inc(svname)))
7218                             SvREFCNT_dec(svname);
7219 #endif
7220
7221                         /*sv_dump(sv_dat);*/
7222                     }
7223                     nextchar(pRExC_state);
7224                     paren = 1;
7225                     goto capturing_parens;
7226                 }
7227                 RExC_seen |= REG_SEEN_LOOKBEHIND;
7228                 RExC_in_lookbehind++;
7229                 RExC_parse++;
7230             case '=':           /* (?=...) */
7231                 RExC_seen_zerolen++;
7232                 break;
7233             case '!':           /* (?!...) */
7234                 RExC_seen_zerolen++;
7235                 if (*RExC_parse == ')') {
7236                     ret=reg_node(pRExC_state, OPFAIL);
7237                     nextchar(pRExC_state);
7238                     return ret;
7239                 }
7240                 break;
7241             case '|':           /* (?|...) */
7242                 /* branch reset, behave like a (?:...) except that
7243                    buffers in alternations share the same numbers */
7244                 paren = ':'; 
7245                 after_freeze = freeze_paren = RExC_npar;
7246                 break;
7247             case ':':           /* (?:...) */
7248             case '>':           /* (?>...) */
7249                 break;
7250             case '$':           /* (?$...) */
7251             case '@':           /* (?@...) */
7252                 vFAIL2("Sequence (?%c...) not implemented", (int)paren);
7253                 break;
7254             case '#':           /* (?#...) */
7255                 while (*RExC_parse && *RExC_parse != ')')
7256                     RExC_parse++;
7257                 if (*RExC_parse != ')')
7258                     FAIL("Sequence (?#... not terminated");
7259                 nextchar(pRExC_state);
7260                 *flagp = TRYAGAIN;
7261                 return NULL;
7262             case '0' :           /* (?0) */
7263             case 'R' :           /* (?R) */
7264                 if (*RExC_parse != ')')
7265                     FAIL("Sequence (?R) not terminated");
7266                 ret = reg_node(pRExC_state, GOSTART);
7267                 *flagp |= POSTPONED;
7268                 nextchar(pRExC_state);
7269                 return ret;
7270                 /*notreached*/
7271             { /* named and numeric backreferences */
7272                 I32 num;
7273             case '&':            /* (?&NAME) */
7274                 parse_start = RExC_parse - 1;
7275               named_recursion:
7276                 {
7277                     SV *sv_dat = reg_scan_name(pRExC_state,
7278                         SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
7279                      num = sv_dat ? *((I32 *)SvPVX(sv_dat)) : 0;
7280                 }
7281                 goto gen_recurse_regop;
7282                 /* NOT REACHED */
7283             case '+':
7284                 if (!(RExC_parse[0] >= '1' && RExC_parse[0] <= '9')) {
7285                     RExC_parse++;
7286                     vFAIL("Illegal pattern");
7287                 }
7288                 goto parse_recursion;
7289                 /* NOT REACHED*/
7290             case '-': /* (?-1) */
7291                 if (!(RExC_parse[0] >= '1' && RExC_parse[0] <= '9')) {
7292                     RExC_parse--; /* rewind to let it be handled later */
7293                     goto parse_flags;
7294                 } 
7295                 /*FALLTHROUGH */
7296             case '1': case '2': case '3': case '4': /* (?1) */
7297             case '5': case '6': case '7': case '8': case '9':
7298                 RExC_parse--;
7299               parse_recursion:
7300                 num = atoi(RExC_parse);
7301                 parse_start = RExC_parse - 1; /* MJD */
7302                 if (*RExC_parse == '-')
7303                     RExC_parse++;
7304                 while (isDIGIT(*RExC_parse))
7305                         RExC_parse++;
7306                 if (*RExC_parse!=')') 
7307                     vFAIL("Expecting close bracket");
7308
7309               gen_recurse_regop:
7310                 if ( paren == '-' ) {
7311                     /*
7312                     Diagram of capture buffer numbering.
7313                     Top line is the normal capture buffer numbers
7314                     Bottom line is the negative indexing as from
7315                     the X (the (?-2))
7316
7317                     +   1 2    3 4 5 X          6 7
7318                        /(a(x)y)(a(b(c(?-2)d)e)f)(g(h))/
7319                     -   5 4    3 2 1 X          x x
7320
7321                     */
7322                     num = RExC_npar + num;
7323                     if (num < 1)  {
7324                         RExC_parse++;
7325                         vFAIL("Reference to nonexistent group");
7326                     }
7327                 } else if ( paren == '+' ) {
7328                     num = RExC_npar + num - 1;
7329                 }
7330
7331                 ret = reganode(pRExC_state, GOSUB, num);
7332                 if (!SIZE_ONLY) {
7333                     if (num > (I32)RExC_rx->nparens) {
7334                         RExC_parse++;
7335                         vFAIL("Reference to nonexistent group");
7336                     }
7337                     ARG2L_SET( ret, RExC_recurse_count++);
7338                     RExC_emit++;
7339                     DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log,
7340                         "Recurse #%"UVuf" to %"IVdf"\n", (UV)ARG(ret), (IV)ARG2L(ret)));
7341                 } else {
7342                     RExC_size++;
7343                 }
7344                 RExC_seen |= REG_SEEN_RECURSE;
7345                 Set_Node_Length(ret, 1 + regarglen[OP(ret)]); /* MJD */
7346                 Set_Node_Offset(ret, parse_start); /* MJD */
7347
7348                 *flagp |= POSTPONED;
7349                 nextchar(pRExC_state);
7350                 return ret;
7351             } /* named and numeric backreferences */
7352             /* NOT REACHED */
7353
7354             case '?':           /* (??...) */
7355                 is_logical = 1;
7356                 if (*RExC_parse != '{') {
7357                     RExC_parse++;
7358                     vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
7359                     /*NOTREACHED*/
7360                 }
7361                 *flagp |= POSTPONED;
7362                 paren = *RExC_parse++;
7363                 /* FALL THROUGH */
7364             case '{':           /* (?{...}) */
7365             {
7366                 I32 count = 1;
7367                 U32 n = 0;
7368                 char c;
7369                 char *s = RExC_parse;
7370
7371                 RExC_seen_zerolen++;
7372                 RExC_seen |= REG_SEEN_EVAL;
7373                 while (count && (c = *RExC_parse)) {
7374                     if (c == '\\') {
7375                         if (RExC_parse[1])
7376                             RExC_parse++;
7377                     }
7378                     else if (c == '{')
7379                         count++;
7380                     else if (c == '}')
7381                         count--;
7382                     RExC_parse++;
7383                 }
7384                 if (*RExC_parse != ')') {
7385                     RExC_parse = s;
7386                     vFAIL("Sequence (?{...}) not terminated or not {}-balanced");
7387                 }
7388                 if (!SIZE_ONLY) {
7389                     PAD *pad;
7390                     OP_4tree *sop, *rop;
7391                     SV * const sv = newSVpvn(s, RExC_parse - 1 - s);
7392
7393                     ENTER;
7394                     Perl_save_re_context(aTHX);
7395                     rop = Perl_sv_compile_2op_is_broken(aTHX_ sv, &sop, "re", &pad);
7396                     sop->op_private |= OPpREFCOUNTED;
7397                     /* re_dup will OpREFCNT_inc */
7398                     OpREFCNT_set(sop, 1);
7399                     LEAVE;
7400
7401                     n = add_data(pRExC_state, 3, "nop");
7402                     RExC_rxi->data->data[n] = (void*)rop;
7403                     RExC_rxi->data->data[n+1] = (void*)sop;
7404                     RExC_rxi->data->data[n+2] = (void*)pad;
7405                     SvREFCNT_dec(sv);
7406                 }
7407                 else {                                          /* First pass */
7408                     if (PL_reginterp_cnt < ++RExC_seen_evals
7409                         && IN_PERL_RUNTIME)
7410                         /* No compiled RE interpolated, has runtime
7411                            components ===> unsafe.  */
7412                         FAIL("Eval-group not allowed at runtime, use re 'eval'");
7413                     if (PL_tainting && PL_tainted)
7414                         FAIL("Eval-group in insecure regular expression");
7415 #if PERL_VERSION > 8
7416                     if (IN_PERL_COMPILETIME)
7417                         PL_cv_has_eval = 1;
7418 #endif
7419                 }
7420
7421                 nextchar(pRExC_state);
7422                 if (is_logical) {
7423                     ret = reg_node(pRExC_state, LOGICAL);
7424                     if (!SIZE_ONLY)
7425                         ret->flags = 2;
7426                     REGTAIL(pRExC_state, ret, reganode(pRExC_state, EVAL, n));
7427                     /* deal with the length of this later - MJD */
7428                     return ret;
7429                 }
7430                 ret = reganode(pRExC_state, EVAL, n);
7431                 Set_Node_Length(ret, RExC_parse - parse_start + 1);
7432                 Set_Node_Offset(ret, parse_start);
7433                 return ret;
7434             }
7435             case '(':           /* (?(?{...})...) and (?(?=...)...) */
7436             {
7437                 int is_define= 0;
7438                 if (RExC_parse[0] == '?') {        /* (?(?...)) */
7439                     if (RExC_parse[1] == '=' || RExC_parse[1] == '!'
7440                         || RExC_parse[1] == '<'
7441                         || RExC_parse[1] == '{') { /* Lookahead or eval. */
7442                         I32 flag;
7443
7444                         ret = reg_node(pRExC_state, LOGICAL);
7445                         if (!SIZE_ONLY)
7446                             ret->flags = 1;
7447                         REGTAIL(pRExC_state, ret, reg(pRExC_state, 1, &flag,depth+1));
7448                         goto insert_if;
7449                     }
7450                 }
7451                 else if ( RExC_parse[0] == '<'     /* (?(<NAME>)...) */
7452                          || RExC_parse[0] == '\'' ) /* (?('NAME')...) */
7453                 {
7454                     char ch = RExC_parse[0] == '<' ? '>' : '\'';
7455                     char *name_start= RExC_parse++;
7456                     U32 num = 0;
7457                     SV *sv_dat=reg_scan_name(pRExC_state,
7458                         SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
7459                     if (RExC_parse == name_start || *RExC_parse != ch)
7460                         vFAIL2("Sequence (?(%c... not terminated",
7461                             (ch == '>' ? '<' : ch));
7462                     RExC_parse++;
7463                     if (!SIZE_ONLY) {
7464                         num = add_data( pRExC_state, 1, "S" );
7465                         RExC_rxi->data->data[num]=(void*)sv_dat;
7466                         SvREFCNT_inc_simple_void(sv_dat);
7467                     }
7468                     ret = reganode(pRExC_state,NGROUPP,num);
7469                     goto insert_if_check_paren;
7470                 }
7471                 else if (RExC_parse[0] == 'D' &&
7472                          RExC_parse[1] == 'E' &&
7473                          RExC_parse[2] == 'F' &&
7474                          RExC_parse[3] == 'I' &&
7475                          RExC_parse[4] == 'N' &&
7476                          RExC_parse[5] == 'E')
7477                 {
7478                     ret = reganode(pRExC_state,DEFINEP,0);
7479                     RExC_parse +=6 ;
7480                     is_define = 1;
7481                     goto insert_if_check_paren;
7482                 }
7483                 else if (RExC_parse[0] == 'R') {
7484                     RExC_parse++;
7485                     parno = 0;
7486                     if (RExC_parse[0] >= '1' && RExC_parse[0] <= '9' ) {
7487                         parno = atoi(RExC_parse++);
7488                         while (isDIGIT(*RExC_parse))
7489                             RExC_parse++;
7490                     } else if (RExC_parse[0] == '&') {
7491                         SV *sv_dat;
7492                         RExC_parse++;
7493                         sv_dat = reg_scan_name(pRExC_state,
7494                             SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
7495                         parno = sv_dat ? *((I32 *)SvPVX(sv_dat)) : 0;
7496                     }
7497                     ret = reganode(pRExC_state,INSUBP,parno); 
7498                     goto insert_if_check_paren;
7499                 }
7500                 else if (RExC_parse[0] >= '1' && RExC_parse[0] <= '9' ) {
7501                     /* (?(1)...) */
7502                     char c;
7503                     parno = atoi(RExC_parse++);
7504
7505                     while (isDIGIT(*RExC_parse))
7506                         RExC_parse++;
7507                     ret = reganode(pRExC_state, GROUPP, parno);
7508
7509                  insert_if_check_paren:
7510                     if ((c = *nextchar(pRExC_state)) != ')')
7511                         vFAIL("Switch condition not recognized");
7512                   insert_if:
7513                     REGTAIL(pRExC_state, ret, reganode(pRExC_state, IFTHEN, 0));
7514                     br = regbranch(pRExC_state, &flags, 1,depth+1);
7515                     if (br == NULL)
7516                         br = reganode(pRExC_state, LONGJMP, 0);
7517                     else
7518                         REGTAIL(pRExC_state, br, reganode(pRExC_state, LONGJMP, 0));
7519                     c = *nextchar(pRExC_state);
7520                     if (flags&HASWIDTH)
7521                         *flagp |= HASWIDTH;
7522                     if (c == '|') {
7523                         if (is_define) 
7524                             vFAIL("(?(DEFINE)....) does not allow branches");
7525                         lastbr = reganode(pRExC_state, IFTHEN, 0); /* Fake one for optimizer. */
7526                         regbranch(pRExC_state, &flags, 1,depth+1);
7527                         REGTAIL(pRExC_state, ret, lastbr);
7528                         if (flags&HASWIDTH)
7529                             *flagp |= HASWIDTH;
7530                         c = *nextchar(pRExC_state);
7531                     }
7532                     else
7533                         lastbr = NULL;
7534                     if (c != ')')
7535                         vFAIL("Switch (?(condition)... contains too many branches");
7536                     ender = reg_node(pRExC_state, TAIL);
7537                     REGTAIL(pRExC_state, br, ender);
7538                     if (lastbr) {
7539                         REGTAIL(pRExC_state, lastbr, ender);
7540                         REGTAIL(pRExC_state, NEXTOPER(NEXTOPER(lastbr)), ender);
7541                     }
7542                     else
7543                         REGTAIL(pRExC_state, ret, ender);
7544                     RExC_size++; /* XXX WHY do we need this?!!
7545                                     For large programs it seems to be required
7546                                     but I can't figure out why. -- dmq*/
7547                     return ret;
7548                 }
7549                 else {
7550                     vFAIL2("Unknown switch condition (?(%.2s", RExC_parse);
7551                 }
7552             }
7553             case 0:
7554                 RExC_parse--; /* for vFAIL to print correctly */
7555                 vFAIL("Sequence (? incomplete");
7556                 break;
7557             case DEFAULT_PAT_MOD:   /* Use default flags with the exceptions
7558                                        that follow */
7559                 has_use_defaults = TRUE;
7560                 STD_PMMOD_FLAGS_CLEAR(&RExC_flags);
7561                 set_regex_charset(&RExC_flags, (RExC_utf8 || RExC_uni_semantics)
7562                                                 ? REGEX_UNICODE_CHARSET
7563                                                 : REGEX_DEPENDS_CHARSET);
7564                 goto parse_flags;
7565             default:
7566                 --RExC_parse;
7567                 parse_flags:      /* (?i) */  
7568             {
7569                 U32 posflags = 0, negflags = 0;
7570                 U32 *flagsp = &posflags;
7571                 char has_charset_modifier = '\0';
7572                 regex_charset cs = (RExC_utf8 || RExC_uni_semantics)
7573                                     ? REGEX_UNICODE_CHARSET
7574                                     : REGEX_DEPENDS_CHARSET;
7575
7576                 while (*RExC_parse) {
7577                     /* && strchr("iogcmsx", *RExC_parse) */
7578                     /* (?g), (?gc) and (?o) are useless here
7579                        and must be globally applied -- japhy */
7580                     switch (*RExC_parse) {
7581                     CASE_STD_PMMOD_FLAGS_PARSE_SET(flagsp);
7582                     case LOCALE_PAT_MOD:
7583                         if (has_charset_modifier) {
7584                             goto excess_modifier;
7585                         }
7586                         else if (flagsp == &negflags) {
7587                             goto neg_modifier;
7588                         }
7589                         cs = REGEX_LOCALE_CHARSET;
7590                         has_charset_modifier = LOCALE_PAT_MOD;
7591                         RExC_contains_locale = 1;
7592                         break;
7593                     case UNICODE_PAT_MOD:
7594                         if (has_charset_modifier) {
7595                             goto excess_modifier;
7596                         }
7597                         else if (flagsp == &negflags) {
7598                             goto neg_modifier;
7599                         }
7600                         cs = REGEX_UNICODE_CHARSET;
7601                         has_charset_modifier = UNICODE_PAT_MOD;
7602                         break;
7603                     case ASCII_RESTRICT_PAT_MOD:
7604                         if (flagsp == &negflags) {
7605                             goto neg_modifier;
7606                         }
7607                         if (has_charset_modifier) {
7608                             if (cs != REGEX_ASCII_RESTRICTED_CHARSET) {
7609                                 goto excess_modifier;
7610                             }
7611                             /* Doubled modifier implies more restricted */
7612                             cs = REGEX_ASCII_MORE_RESTRICTED_CHARSET;
7613                         }
7614                         else {
7615                             cs = REGEX_ASCII_RESTRICTED_CHARSET;
7616                         }
7617                         has_charset_modifier = ASCII_RESTRICT_PAT_MOD;
7618                         break;
7619                     case DEPENDS_PAT_MOD:
7620                         if (has_use_defaults) {
7621                             goto fail_modifiers;
7622                         }
7623                         else if (flagsp == &negflags) {
7624                             goto neg_modifier;
7625                         }
7626                         else if (has_charset_modifier) {
7627                             goto excess_modifier;
7628                         }
7629
7630                         /* The dual charset means unicode semantics if the
7631                          * pattern (or target, not known until runtime) are
7632                          * utf8, or something in the pattern indicates unicode
7633                          * semantics */
7634                         cs = (RExC_utf8 || RExC_uni_semantics)
7635                              ? REGEX_UNICODE_CHARSET
7636                              : REGEX_DEPENDS_CHARSET;
7637                         has_charset_modifier = DEPENDS_PAT_MOD;
7638                         break;
7639                     excess_modifier:
7640                         RExC_parse++;
7641                         if (has_charset_modifier == ASCII_RESTRICT_PAT_MOD) {
7642                             vFAIL2("Regexp modifier \"%c\" may appear a maximum of twice", ASCII_RESTRICT_PAT_MOD);
7643                         }
7644                         else if (has_charset_modifier == *(RExC_parse - 1)) {
7645                             vFAIL2("Regexp modifier \"%c\" may not appear twice", *(RExC_parse - 1));
7646                         }
7647                         else {
7648                             vFAIL3("Regexp modifiers \"%c\" and \"%c\" are mutually exclusive", has_charset_modifier, *(RExC_parse - 1));
7649                         }
7650                         /*NOTREACHED*/
7651                     neg_modifier:
7652                         RExC_parse++;
7653                         vFAIL2("Regexp modifier \"%c\" may not appear after the \"-\"", *(RExC_parse - 1));
7654                         /*NOTREACHED*/
7655                     case ONCE_PAT_MOD: /* 'o' */
7656                     case GLOBAL_PAT_MOD: /* 'g' */
7657                         if (SIZE_ONLY && ckWARN(WARN_REGEXP)) {
7658                             const I32 wflagbit = *RExC_parse == 'o' ? WASTED_O : WASTED_G;
7659                             if (! (wastedflags & wflagbit) ) {
7660                                 wastedflags |= wflagbit;
7661                                 vWARN5(
7662                                     RExC_parse + 1,
7663                                     "Useless (%s%c) - %suse /%c modifier",
7664                                     flagsp == &negflags ? "?-" : "?",
7665                                     *RExC_parse,
7666                                     flagsp == &negflags ? "don't " : "",
7667                                     *RExC_parse
7668                                 );
7669                             }
7670                         }
7671                         break;
7672                         
7673                     case CONTINUE_PAT_MOD: /* 'c' */
7674                         if (SIZE_ONLY && ckWARN(WARN_REGEXP)) {
7675                             if (! (wastedflags & WASTED_C) ) {
7676                                 wastedflags |= WASTED_GC;
7677                                 vWARN3(
7678                                     RExC_parse + 1,
7679                                     "Useless (%sc) - %suse /gc modifier",
7680                                     flagsp == &negflags ? "?-" : "?",
7681                                     flagsp == &negflags ? "don't " : ""
7682                                 );
7683                             }
7684                         }
7685                         break;
7686                     case KEEPCOPY_PAT_MOD: /* 'p' */
7687                         if (flagsp == &negflags) {
7688                             if (SIZE_ONLY)
7689                                 ckWARNreg(RExC_parse + 1,"Useless use of (?-p)");
7690                         } else {
7691                             *flagsp |= RXf_PMf_KEEPCOPY;
7692                         }
7693                         break;
7694                     case '-':
7695                         /* A flag is a default iff it is following a minus, so
7696                          * if there is a minus, it means will be trying to
7697                          * re-specify a default which is an error */
7698                         if (has_use_defaults || flagsp == &negflags) {
7699             fail_modifiers:
7700                             RExC_parse++;
7701                             vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
7702                             /*NOTREACHED*/
7703                         }
7704                         flagsp = &negflags;
7705                         wastedflags = 0;  /* reset so (?g-c) warns twice */
7706                         break;
7707                     case ':':
7708                         paren = ':';
7709                         /*FALLTHROUGH*/
7710                     case ')':
7711                         RExC_flags |= posflags;
7712                         RExC_flags &= ~negflags;
7713                         set_regex_charset(&RExC_flags, cs);
7714                         if (paren != ':') {
7715                             oregflags |= posflags;
7716                             oregflags &= ~negflags;
7717                             set_regex_charset(&oregflags, cs);
7718                         }
7719                         nextchar(pRExC_state);
7720                         if (paren != ':') {
7721                             *flagp = TRYAGAIN;
7722                             return NULL;
7723                         } else {
7724                             ret = NULL;
7725                             goto parse_rest;
7726                         }
7727                         /*NOTREACHED*/
7728                     default:
7729                         RExC_parse++;
7730                         vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
7731                         /*NOTREACHED*/
7732                     }                           
7733                     ++RExC_parse;
7734                 }
7735             }} /* one for the default block, one for the switch */
7736         }
7737         else {                  /* (...) */
7738           capturing_parens:
7739             parno = RExC_npar;
7740             RExC_npar++;
7741             
7742             ret = reganode(pRExC_state, OPEN, parno);
7743             if (!SIZE_ONLY ){
7744                 if (!RExC_nestroot) 
7745                     RExC_nestroot = parno;
7746                 if (RExC_seen & REG_SEEN_RECURSE
7747                     && !RExC_open_parens[parno-1])
7748                 {
7749                     DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log,
7750                         "Setting open paren #%"IVdf" to %d\n", 
7751                         (IV)parno, REG_NODE_NUM(ret)));
7752                     RExC_open_parens[parno-1]= ret;
7753                 }
7754             }
7755             Set_Node_Length(ret, 1); /* MJD */
7756             Set_Node_Offset(ret, RExC_parse); /* MJD */
7757             is_open = 1;
7758         }
7759     }
7760     else                        /* ! paren */
7761         ret = NULL;
7762    
7763    parse_rest:
7764     /* Pick up the branches, linking them together. */
7765     parse_start = RExC_parse;   /* MJD */
7766     br = regbranch(pRExC_state, &flags, 1,depth+1);
7767
7768     /*     branch_len = (paren != 0); */
7769
7770     if (br == NULL)
7771         return(NULL);
7772     if (*RExC_parse == '|') {
7773         if (!SIZE_ONLY && RExC_extralen) {
7774             reginsert(pRExC_state, BRANCHJ, br, depth+1);
7775         }
7776         else {                  /* MJD */
7777             reginsert(pRExC_state, BRANCH, br, depth+1);
7778             Set_Node_Length(br, paren != 0);
7779             Set_Node_Offset_To_R(br-RExC_emit_start, parse_start-RExC_start);
7780         }
7781         have_branch = 1;
7782         if (SIZE_ONLY)
7783             RExC_extralen += 1;         /* For BRANCHJ-BRANCH. */
7784     }
7785     else if (paren == ':') {
7786         *flagp |= flags&SIMPLE;
7787     }
7788     if (is_open) {                              /* Starts with OPEN. */
7789         REGTAIL(pRExC_state, ret, br);          /* OPEN -> first. */
7790     }
7791     else if (paren != '?')              /* Not Conditional */
7792         ret = br;
7793     *flagp |= flags & (SPSTART | HASWIDTH | POSTPONED);
7794     lastbr = br;
7795     while (*RExC_parse == '|') {
7796         if (!SIZE_ONLY && RExC_extralen) {
7797             ender = reganode(pRExC_state, LONGJMP,0);
7798             REGTAIL(pRExC_state, NEXTOPER(NEXTOPER(lastbr)), ender); /* Append to the previous. */
7799         }
7800         if (SIZE_ONLY)
7801             RExC_extralen += 2;         /* Account for LONGJMP. */
7802         nextchar(pRExC_state);
7803         if (freeze_paren) {
7804             if (RExC_npar > after_freeze)
7805                 after_freeze = RExC_npar;
7806             RExC_npar = freeze_paren;       
7807         }
7808         br = regbranch(pRExC_state, &flags, 0, depth+1);
7809
7810         if (br == NULL)
7811             return(NULL);
7812         REGTAIL(pRExC_state, lastbr, br);               /* BRANCH -> BRANCH. */
7813         lastbr = br;
7814         *flagp |= flags & (SPSTART | HASWIDTH | POSTPONED);
7815     }
7816
7817     if (have_branch || paren != ':') {
7818         /* Make a closing node, and hook it on the end. */
7819         switch (paren) {
7820         case ':':
7821             ender = reg_node(pRExC_state, TAIL);
7822             break;
7823         case 1:
7824             ender = reganode(pRExC_state, CLOSE, parno);
7825             if (!SIZE_ONLY && RExC_seen & REG_SEEN_RECURSE) {
7826                 DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log,
7827                         "Setting close paren #%"IVdf" to %d\n", 
7828                         (IV)parno, REG_NODE_NUM(ender)));
7829                 RExC_close_parens[parno-1]= ender;
7830                 if (RExC_nestroot == parno) 
7831                     RExC_nestroot = 0;
7832             }       
7833             Set_Node_Offset(ender,RExC_parse+1); /* MJD */
7834             Set_Node_Length(ender,1); /* MJD */
7835             break;
7836         case '<':
7837         case ',':
7838         case '=':
7839         case '!':
7840             *flagp &= ~HASWIDTH;
7841             /* FALL THROUGH */
7842         case '>':
7843             ender = reg_node(pRExC_state, SUCCEED);
7844             break;
7845         case 0:
7846             ender = reg_node(pRExC_state, END);
7847             if (!SIZE_ONLY) {
7848                 assert(!RExC_opend); /* there can only be one! */
7849                 RExC_opend = ender;
7850             }
7851             break;
7852         }
7853         REGTAIL(pRExC_state, lastbr, ender);
7854
7855         if (have_branch && !SIZE_ONLY) {
7856             if (depth==1)
7857                 RExC_seen |= REG_TOP_LEVEL_BRANCHES;
7858
7859             /* Hook the tails of the branches to the closing node. */
7860             for (br = ret; br; br = regnext(br)) {
7861                 const U8 op = PL_regkind[OP(br)];
7862                 if (op == BRANCH) {
7863                     REGTAIL_STUDY(pRExC_state, NEXTOPER(br), ender);
7864                 }
7865                 else if (op == BRANCHJ) {
7866                     REGTAIL_STUDY(pRExC_state, NEXTOPER(NEXTOPER(br)), ender);
7867                 }
7868             }
7869         }
7870     }
7871
7872     {
7873         const char *p;
7874         static const char parens[] = "=!<,>";
7875
7876         if (paren && (p = strchr(parens, paren))) {
7877             U8 node = ((p - parens) % 2) ? UNLESSM : IFMATCH;
7878             int flag = (p - parens) > 1;
7879
7880             if (paren == '>')
7881                 node = SUSPEND, flag = 0;
7882             reginsert(pRExC_state, node,ret, depth+1);
7883             Set_Node_Cur_Length(ret);
7884             Set_Node_Offset(ret, parse_start + 1);
7885             ret->flags = flag;
7886             REGTAIL_STUDY(pRExC_state, ret, reg_node(pRExC_state, TAIL));
7887         }
7888     }
7889
7890     /* Check for proper termination. */
7891     if (paren) {
7892         RExC_flags = oregflags;
7893         if (RExC_parse >= RExC_end || *nextchar(pRExC_state) != ')') {
7894             RExC_parse = oregcomp_parse;
7895             vFAIL("Unmatched (");
7896         }
7897     }
7898     else if (!paren && RExC_parse < RExC_end) {
7899         if (*RExC_parse == ')') {
7900             RExC_parse++;
7901             vFAIL("Unmatched )");
7902         }
7903         else
7904             FAIL("Junk on end of regexp");      /* "Can't happen". */
7905         /* NOTREACHED */
7906     }
7907
7908     if (RExC_in_lookbehind) {
7909         RExC_in_lookbehind--;
7910     }
7911     if (after_freeze > RExC_npar)
7912         RExC_npar = after_freeze;
7913     return(ret);
7914 }
7915
7916 /*
7917  - regbranch - one alternative of an | operator
7918  *
7919  * Implements the concatenation operator.
7920  */
7921 STATIC regnode *
7922 S_regbranch(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, I32 first, U32 depth)
7923 {
7924     dVAR;
7925     register regnode *ret;
7926     register regnode *chain = NULL;
7927     register regnode *latest;
7928     I32 flags = 0, c = 0;
7929     GET_RE_DEBUG_FLAGS_DECL;
7930
7931     PERL_ARGS_ASSERT_REGBRANCH;
7932
7933     DEBUG_PARSE("brnc");
7934
7935     if (first)
7936         ret = NULL;
7937     else {
7938         if (!SIZE_ONLY && RExC_extralen)
7939             ret = reganode(pRExC_state, BRANCHJ,0);
7940         else {
7941             ret = reg_node(pRExC_state, BRANCH);
7942             Set_Node_Length(ret, 1);
7943         }
7944     }
7945
7946     if (!first && SIZE_ONLY)
7947         RExC_extralen += 1;                     /* BRANCHJ */
7948
7949     *flagp = WORST;                     /* Tentatively. */
7950
7951     RExC_parse--;
7952     nextchar(pRExC_state);
7953     while (RExC_parse < RExC_end && *RExC_parse != '|' && *RExC_parse != ')') {
7954         flags &= ~TRYAGAIN;
7955         latest = regpiece(pRExC_state, &flags,depth+1);
7956         if (latest == NULL) {
7957             if (flags & TRYAGAIN)
7958                 continue;
7959             return(NULL);
7960         }
7961         else if (ret == NULL)
7962             ret = latest;
7963         *flagp |= flags&(HASWIDTH|POSTPONED);
7964         if (chain == NULL)      /* First piece. */
7965             *flagp |= flags&SPSTART;
7966         else {
7967             RExC_naughty++;
7968             REGTAIL(pRExC_state, chain, latest);
7969         }
7970         chain = latest;
7971         c++;
7972     }
7973     if (chain == NULL) {        /* Loop ran zero times. */
7974         chain = reg_node(pRExC_state, NOTHING);
7975         if (ret == NULL)
7976             ret = chain;
7977     }
7978     if (c == 1) {
7979         *flagp |= flags&SIMPLE;
7980     }
7981
7982     return ret;
7983 }
7984
7985 /*
7986  - regpiece - something followed by possible [*+?]
7987  *
7988  * Note that the branching code sequences used for ? and the general cases
7989  * of * and + are somewhat optimized:  they use the same NOTHING node as
7990  * both the endmarker for their branch list and the body of the last branch.
7991  * It might seem that this node could be dispensed with entirely, but the
7992  * endmarker role is not redundant.
7993  */
7994 STATIC regnode *
7995 S_regpiece(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth)
7996 {
7997     dVAR;
7998     register regnode *ret;
7999     register char op;
8000     register char *next;
8001     I32 flags;
8002     const char * const origparse = RExC_parse;
8003     I32 min;
8004     I32 max = REG_INFTY;
8005 #ifdef RE_TRACK_PATTERN_OFFSETS
8006     char *parse_start;
8007 #endif
8008     const char *maxpos = NULL;
8009     GET_RE_DEBUG_FLAGS_DECL;
8010
8011     PERL_ARGS_ASSERT_REGPIECE;
8012
8013     DEBUG_PARSE("piec");
8014
8015     ret = regatom(pRExC_state, &flags,depth+1);
8016     if (ret == NULL) {
8017         if (flags & TRYAGAIN)
8018             *flagp |= TRYAGAIN;
8019         return(NULL);
8020     }
8021
8022     op = *RExC_parse;
8023
8024     if (op == '{' && regcurly(RExC_parse)) {
8025         maxpos = NULL;
8026 #ifdef RE_TRACK_PATTERN_OFFSETS
8027         parse_start = RExC_parse; /* MJD */
8028 #endif
8029         next = RExC_parse + 1;
8030         while (isDIGIT(*next) || *next == ',') {
8031             if (*next == ',') {
8032                 if (maxpos)
8033                     break;
8034                 else
8035                     maxpos = next;
8036             }
8037             next++;
8038         }
8039         if (*next == '}') {             /* got one */
8040             if (!maxpos)
8041                 maxpos = next;
8042             RExC_parse++;
8043             min = atoi(RExC_parse);
8044             if (*maxpos == ',')
8045                 maxpos++;
8046             else
8047                 maxpos = RExC_parse;
8048             max = atoi(maxpos);
8049             if (!max && *maxpos != '0')
8050                 max = REG_INFTY;                /* meaning "infinity" */
8051             else if (max >= REG_INFTY)
8052                 vFAIL2("Quantifier in {,} bigger than %d", REG_INFTY - 1);
8053             RExC_parse = next;
8054             nextchar(pRExC_state);
8055
8056         do_curly:
8057             if ((flags&SIMPLE)) {
8058                 RExC_naughty += 2 + RExC_naughty / 2;
8059                 reginsert(pRExC_state, CURLY, ret, depth+1);
8060                 Set_Node_Offset(ret, parse_start+1); /* MJD */
8061                 Set_Node_Cur_Length(ret);
8062             }
8063             else {
8064                 regnode * const w = reg_node(pRExC_state, WHILEM);
8065
8066                 w->flags = 0;
8067                 REGTAIL(pRExC_state, ret, w);
8068                 if (!SIZE_ONLY && RExC_extralen) {
8069                     reginsert(pRExC_state, LONGJMP,ret, depth+1);
8070                     reginsert(pRExC_state, NOTHING,ret, depth+1);
8071                     NEXT_OFF(ret) = 3;  /* Go over LONGJMP. */
8072                 }
8073                 reginsert(pRExC_state, CURLYX,ret, depth+1);
8074                                 /* MJD hk */
8075                 Set_Node_Offset(ret, parse_start+1);
8076                 Set_Node_Length(ret,
8077                                 op == '{' ? (RExC_parse - parse_start) : 1);
8078
8079                 if (!SIZE_ONLY && RExC_extralen)
8080                     NEXT_OFF(ret) = 3;  /* Go over NOTHING to LONGJMP. */
8081                 REGTAIL(pRExC_state, ret, reg_node(pRExC_state, NOTHING));
8082                 if (SIZE_ONLY)
8083                     RExC_whilem_seen++, RExC_extralen += 3;
8084                 RExC_naughty += 4 + RExC_naughty;       /* compound interest */
8085             }
8086             ret->flags = 0;
8087
8088             if (min > 0)
8089                 *flagp = WORST;
8090             if (max > 0)
8091                 *flagp |= HASWIDTH;
8092             if (max < min)
8093                 vFAIL("Can't do {n,m} with n > m");
8094             if (!SIZE_ONLY) {
8095                 ARG1_SET(ret, (U16)min);
8096                 ARG2_SET(ret, (U16)max);
8097             }
8098
8099             goto nest_check;
8100         }
8101     }
8102
8103     if (!ISMULT1(op)) {
8104         *flagp = flags;
8105         return(ret);
8106     }
8107
8108 #if 0                           /* Now runtime fix should be reliable. */
8109
8110     /* if this is reinstated, don't forget to put this back into perldiag:
8111
8112             =item Regexp *+ operand could be empty at {#} in regex m/%s/
8113
8114            (F) The part of the regexp subject to either the * or + quantifier
8115            could match an empty string. The {#} shows in the regular
8116            expression about where the problem was discovered.
8117
8118     */
8119
8120     if (!(flags&HASWIDTH) && op != '?')
8121       vFAIL("Regexp *+ operand could be empty");
8122 #endif
8123
8124 #ifdef RE_TRACK_PATTERN_OFFSETS
8125     parse_start = RExC_parse;
8126 #endif
8127     nextchar(pRExC_state);
8128
8129     *flagp = (op != '+') ? (WORST|SPSTART|HASWIDTH) : (WORST|HASWIDTH);
8130
8131     if (op == '*' && (flags&SIMPLE)) {
8132         reginsert(pRExC_state, STAR, ret, depth+1);
8133         ret->flags = 0;
8134         RExC_naughty += 4;
8135     }
8136     else if (op == '*') {
8137         min = 0;
8138         goto do_curly;
8139     }
8140     else if (op == '+' && (flags&SIMPLE)) {
8141         reginsert(pRExC_state, PLUS, ret, depth+1);
8142         ret->flags = 0;
8143         RExC_naughty += 3;
8144     }
8145     else if (op == '+') {
8146         min = 1;
8147         goto do_curly;
8148     }
8149     else if (op == '?') {
8150         min = 0; max = 1;
8151         goto do_curly;
8152     }
8153   nest_check:
8154     if (!SIZE_ONLY && !(flags&(HASWIDTH|POSTPONED)) && max > REG_INFTY/3) {
8155         ckWARN3reg(RExC_parse,
8156                    "%.*s matches null string many times",
8157                    (int)(RExC_parse >= origparse ? RExC_parse - origparse : 0),
8158                    origparse);
8159     }
8160
8161     if (RExC_parse < RExC_end && *RExC_parse == '?') {
8162         nextchar(pRExC_state);
8163         reginsert(pRExC_state, MINMOD, ret, depth+1);
8164         REGTAIL(pRExC_state, ret, ret + NODE_STEP_REGNODE);
8165     }
8166 #ifndef REG_ALLOW_MINMOD_SUSPEND
8167     else
8168 #endif
8169     if (RExC_parse < RExC_end && *RExC_parse == '+') {
8170         regnode *ender;
8171         nextchar(pRExC_state);
8172         ender = reg_node(pRExC_state, SUCCEED);
8173         REGTAIL(pRExC_state, ret, ender);
8174         reginsert(pRExC_state, SUSPEND, ret, depth+1);
8175         ret->flags = 0;
8176         ender = reg_node(pRExC_state, TAIL);
8177         REGTAIL(pRExC_state, ret, ender);
8178         /*ret= ender;*/
8179     }
8180
8181     if (RExC_parse < RExC_end && ISMULT2(RExC_parse)) {
8182         RExC_parse++;
8183         vFAIL("Nested quantifiers");
8184     }
8185
8186     return(ret);
8187 }
8188
8189
8190 /* reg_namedseq(pRExC_state,UVp, UV depth)
8191    
8192    This is expected to be called by a parser routine that has 
8193    recognized '\N' and needs to handle the rest. RExC_parse is
8194    expected to point at the first char following the N at the time
8195    of the call.
8196
8197    The \N may be inside (indicated by valuep not being NULL) or outside a
8198    character class.
8199
8200    \N may begin either a named sequence, or if outside a character class, mean
8201    to match a non-newline.  For non single-quoted regexes, the tokenizer has
8202    attempted to decide which, and in the case of a named sequence converted it
8203    into one of the forms: \N{} (if the sequence is null), or \N{U+c1.c2...},
8204    where c1... are the characters in the sequence.  For single-quoted regexes,
8205    the tokenizer passes the \N sequence through unchanged; this code will not
8206    attempt to determine this nor expand those.  The net effect is that if the
8207    beginning of the passed-in pattern isn't '{U+' or there is no '}', it
8208    signals that this \N occurrence means to match a non-newline.
8209    
8210    Only the \N{U+...} form should occur in a character class, for the same
8211    reason that '.' inside a character class means to just match a period: it
8212    just doesn't make sense.
8213    
8214    If valuep is non-null then it is assumed that we are parsing inside 
8215    of a charclass definition and the first codepoint in the resolved
8216    string is returned via *valuep and the routine will return NULL. 
8217    In this mode if a multichar string is returned from the charnames 
8218    handler, a warning will be issued, and only the first char in the 
8219    sequence will be examined. If the string returned is zero length
8220    then the value of *valuep is undefined and NON-NULL will 
8221    be returned to indicate failure. (This will NOT be a valid pointer 
8222    to a regnode.)
8223    
8224    If valuep is null then it is assumed that we are parsing normal text and a
8225    new EXACT node is inserted into the program containing the resolved string,
8226    and a pointer to the new node is returned.  But if the string is zero length
8227    a NOTHING node is emitted instead.
8228
8229    On success RExC_parse is set to the char following the endbrace.
8230    Parsing failures will generate a fatal error via vFAIL(...)
8231  */
8232 STATIC regnode *
8233 S_reg_namedseq(pTHX_ RExC_state_t *pRExC_state, UV *valuep, I32 *flagp, U32 depth)
8234 {
8235     char * endbrace;    /* '}' following the name */
8236     regnode *ret = NULL;
8237     char* p;
8238
8239     GET_RE_DEBUG_FLAGS_DECL;
8240  
8241     PERL_ARGS_ASSERT_REG_NAMEDSEQ;
8242
8243     GET_RE_DEBUG_FLAGS;
8244
8245     /* The [^\n] meaning of \N ignores spaces and comments under the /x
8246      * modifier.  The other meaning does not */
8247     p = (RExC_flags & RXf_PMf_EXTENDED)
8248         ? regwhite( pRExC_state, RExC_parse )
8249         : RExC_parse;
8250    
8251     /* Disambiguate between \N meaning a named character versus \N meaning
8252      * [^\n].  The former is assumed when it can't be the latter. */
8253     if (*p != '{' || regcurly(p)) {
8254         RExC_parse = p;
8255         if (valuep) {
8256             /* no bare \N in a charclass */
8257             vFAIL("\\N in a character class must be a named character: \\N{...}");
8258         }
8259         nextchar(pRExC_state);
8260         ret = reg_node(pRExC_state, REG_ANY);
8261         *flagp |= HASWIDTH|SIMPLE;
8262         RExC_naughty++;
8263         RExC_parse--;
8264         Set_Node_Length(ret, 1); /* MJD */
8265         return ret;
8266     }
8267
8268     /* Here, we have decided it should be a named sequence */
8269
8270     /* The test above made sure that the next real character is a '{', but
8271      * under the /x modifier, it could be separated by space (or a comment and
8272      * \n) and this is not allowed (for consistency with \x{...} and the
8273      * tokenizer handling of \N{NAME}). */
8274     if (*RExC_parse != '{') {
8275         vFAIL("Missing braces on \\N{}");
8276     }
8277
8278     RExC_parse++;       /* Skip past the '{' */
8279
8280     if (! (endbrace = strchr(RExC_parse, '}')) /* no trailing brace */
8281         || ! (endbrace == RExC_parse            /* nothing between the {} */
8282               || (endbrace - RExC_parse >= 2    /* U+ (bad hex is checked below */
8283                   && strnEQ(RExC_parse, "U+", 2)))) /* for a better error msg) */
8284     {
8285         if (endbrace) RExC_parse = endbrace;    /* position msg's '<--HERE' */
8286         vFAIL("\\N{NAME} must be resolved by the lexer");
8287     }
8288
8289     if (endbrace == RExC_parse) {   /* empty: \N{} */
8290         if (! valuep) {
8291             RExC_parse = endbrace + 1;  
8292             return reg_node(pRExC_state,NOTHING);
8293         }
8294
8295         if (SIZE_ONLY) {
8296             ckWARNreg(RExC_parse,
8297                     "Ignoring zero length \\N{} in character class"
8298             );
8299             RExC_parse = endbrace + 1;  
8300         }
8301         *valuep = 0;
8302         return (regnode *) &RExC_parse; /* Invalid regnode pointer */
8303     }
8304
8305     REQUIRE_UTF8;       /* named sequences imply Unicode semantics */
8306     RExC_parse += 2;    /* Skip past the 'U+' */
8307
8308     if (valuep) {   /* In a bracketed char class */
8309         /* We only pay attention to the first char of 
8310         multichar strings being returned. I kinda wonder
8311         if this makes sense as it does change the behaviour
8312         from earlier versions, OTOH that behaviour was broken
8313         as well. XXX Solution is to recharacterize as
8314         [rest-of-class]|multi1|multi2... */
8315
8316         STRLEN length_of_hex;
8317         I32 flags = PERL_SCAN_ALLOW_UNDERSCORES
8318             | PERL_SCAN_DISALLOW_PREFIX
8319             | (SIZE_ONLY ? PERL_SCAN_SILENT_ILLDIGIT : 0);
8320     
8321         char * endchar = RExC_parse + strcspn(RExC_parse, ".}");
8322         if (endchar < endbrace) {
8323             ckWARNreg(endchar, "Using just the first character returned by \\N{} in character class");
8324         }
8325
8326         length_of_hex = (STRLEN)(endchar - RExC_parse);
8327         *valuep = grok_hex(RExC_parse, &length_of_hex, &flags, NULL);
8328
8329         /* The tokenizer should have guaranteed validity, but it's possible to
8330          * bypass it by using single quoting, so check */
8331         if (length_of_hex == 0
8332             || length_of_hex != (STRLEN)(endchar - RExC_parse) )
8333         {
8334             RExC_parse += length_of_hex;        /* Includes all the valid */
8335             RExC_parse += (RExC_orig_utf8)      /* point to after 1st invalid */
8336                             ? UTF8SKIP(RExC_parse)
8337                             : 1;
8338             /* Guard against malformed utf8 */
8339             if (RExC_parse >= endchar) RExC_parse = endchar;
8340             vFAIL("Invalid hexadecimal number in \\N{U+...}");
8341         }    
8342
8343         RExC_parse = endbrace + 1;
8344         if (endchar == endbrace) return NULL;
8345
8346         ret = (regnode *) &RExC_parse;  /* Invalid regnode pointer */
8347     }
8348     else {      /* Not a char class */
8349
8350         /* What is done here is to convert this to a sub-pattern of the form
8351          * (?:\x{char1}\x{char2}...)
8352          * and then call reg recursively.  That way, it retains its atomicness,
8353          * while not having to worry about special handling that some code
8354          * points may have.  toke.c has converted the original Unicode values
8355          * to native, so that we can just pass on the hex values unchanged.  We
8356          * do have to set a flag to keep recoding from happening in the
8357          * recursion */
8358
8359         SV * substitute_parse = newSVpvn_flags("?:", 2, SVf_UTF8|SVs_TEMP);
8360         STRLEN len;
8361         char *endchar;      /* Points to '.' or '}' ending cur char in the input
8362                                stream */
8363         char *orig_end = RExC_end;
8364
8365         while (RExC_parse < endbrace) {
8366
8367             /* Code points are separated by dots.  If none, there is only one
8368              * code point, and is terminated by the brace */
8369             endchar = RExC_parse + strcspn(RExC_parse, ".}");
8370
8371             /* Convert to notation the rest of the code understands */
8372             sv_catpv(substitute_parse, "\\x{");
8373             sv_catpvn(substitute_parse, RExC_parse, endchar - RExC_parse);
8374             sv_catpv(substitute_parse, "}");
8375
8376             /* Point to the beginning of the next character in the sequence. */
8377             RExC_parse = endchar + 1;
8378         }
8379         sv_catpv(substitute_parse, ")");
8380
8381         RExC_parse = SvPV(substitute_parse, len);
8382
8383         /* Don't allow empty number */
8384         if (len < 8) {
8385             vFAIL("Invalid hexadecimal number in \\N{U+...}");
8386         }
8387         RExC_end = RExC_parse + len;
8388
8389         /* The values are Unicode, and therefore not subject to recoding */
8390         RExC_override_recoding = 1;
8391
8392         ret = reg(pRExC_state, 1, flagp, depth+1);
8393
8394         RExC_parse = endbrace;
8395         RExC_end = orig_end;
8396         RExC_override_recoding = 0;
8397
8398         nextchar(pRExC_state);
8399     }
8400
8401     return ret;
8402 }
8403
8404
8405 /*
8406  * reg_recode
8407  *
8408  * It returns the code point in utf8 for the value in *encp.
8409  *    value: a code value in the source encoding
8410  *    encp:  a pointer to an Encode object
8411  *
8412  * If the result from Encode is not a single character,
8413  * it returns U+FFFD (Replacement character) and sets *encp to NULL.
8414  */
8415 STATIC UV
8416 S_reg_recode(pTHX_ const char value, SV **encp)
8417 {
8418     STRLEN numlen = 1;
8419     SV * const sv = newSVpvn_flags(&value, numlen, SVs_TEMP);
8420     const char * const s = *encp ? sv_recode_to_utf8(sv, *encp) : SvPVX(sv);
8421     const STRLEN newlen = SvCUR(sv);
8422     UV uv = UNICODE_REPLACEMENT;
8423
8424     PERL_ARGS_ASSERT_REG_RECODE;
8425
8426     if (newlen)
8427         uv = SvUTF8(sv)
8428              ? utf8n_to_uvchr((U8*)s, newlen, &numlen, UTF8_ALLOW_DEFAULT)
8429              : *(U8*)s;
8430
8431     if (!newlen || numlen != newlen) {
8432         uv = UNICODE_REPLACEMENT;
8433         *encp = NULL;
8434     }
8435     return uv;
8436 }
8437
8438
8439 /*
8440  - regatom - the lowest level
8441
8442    Try to identify anything special at the start of the pattern. If there
8443    is, then handle it as required. This may involve generating a single regop,
8444    such as for an assertion; or it may involve recursing, such as to
8445    handle a () structure.
8446
8447    If the string doesn't start with something special then we gobble up
8448    as much literal text as we can.
8449
8450    Once we have been able to handle whatever type of thing started the
8451    sequence, we return.
8452
8453    Note: we have to be careful with escapes, as they can be both literal
8454    and special, and in the case of \10 and friends can either, depending
8455    on context. Specifically there are two separate switches for handling
8456    escape sequences, with the one for handling literal escapes requiring
8457    a dummy entry for all of the special escapes that are actually handled
8458    by the other.
8459 */
8460
8461 STATIC regnode *
8462 S_regatom(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth)
8463 {
8464     dVAR;
8465     register regnode *ret = NULL;
8466     I32 flags;
8467     char *parse_start = RExC_parse;
8468     U8 op;
8469     GET_RE_DEBUG_FLAGS_DECL;
8470     DEBUG_PARSE("atom");
8471     *flagp = WORST;             /* Tentatively. */
8472
8473     PERL_ARGS_ASSERT_REGATOM;
8474
8475 tryagain:
8476     switch ((U8)*RExC_parse) {
8477     case '^':
8478         RExC_seen_zerolen++;
8479         nextchar(pRExC_state);
8480         if (RExC_flags & RXf_PMf_MULTILINE)
8481             ret = reg_node(pRExC_state, MBOL);
8482         else if (RExC_flags & RXf_PMf_SINGLELINE)
8483             ret = reg_node(pRExC_state, SBOL);
8484         else
8485             ret = reg_node(pRExC_state, BOL);
8486         Set_Node_Length(ret, 1); /* MJD */
8487         break;
8488     case '$':
8489         nextchar(pRExC_state);
8490         if (*RExC_parse)
8491             RExC_seen_zerolen++;
8492         if (RExC_flags & RXf_PMf_MULTILINE)
8493             ret = reg_node(pRExC_state, MEOL);
8494         else if (RExC_flags & RXf_PMf_SINGLELINE)
8495             ret = reg_node(pRExC_state, SEOL);
8496         else
8497             ret = reg_node(pRExC_state, EOL);
8498         Set_Node_Length(ret, 1); /* MJD */
8499         break;
8500     case '.':
8501         nextchar(pRExC_state);
8502         if (RExC_flags & RXf_PMf_SINGLELINE)
8503             ret = reg_node(pRExC_state, SANY);
8504         else
8505             ret = reg_node(pRExC_state, REG_ANY);
8506         *flagp |= HASWIDTH|SIMPLE;
8507         RExC_naughty++;
8508         Set_Node_Length(ret, 1); /* MJD */
8509         break;
8510     case '[':
8511     {
8512         char * const oregcomp_parse = ++RExC_parse;
8513         ret = regclass(pRExC_state,depth+1);
8514         if (*RExC_parse != ']') {
8515             RExC_parse = oregcomp_parse;
8516             vFAIL("Unmatched [");
8517         }
8518         nextchar(pRExC_state);
8519         *flagp |= HASWIDTH|SIMPLE;
8520         Set_Node_Length(ret, RExC_parse - oregcomp_parse + 1); /* MJD */
8521         break;
8522     }
8523     case '(':
8524         nextchar(pRExC_state);
8525         ret = reg(pRExC_state, 1, &flags,depth+1);
8526         if (ret == NULL) {
8527                 if (flags & TRYAGAIN) {
8528                     if (RExC_parse == RExC_end) {
8529                          /* Make parent create an empty node if needed. */
8530                         *flagp |= TRYAGAIN;
8531                         return(NULL);
8532                     }
8533                     goto tryagain;
8534                 }
8535                 return(NULL);
8536         }
8537         *flagp |= flags&(HASWIDTH|SPSTART|SIMPLE|POSTPONED);
8538         break;
8539     case '|':
8540     case ')':
8541         if (flags & TRYAGAIN) {
8542             *flagp |= TRYAGAIN;
8543             return NULL;
8544         }
8545         vFAIL("Internal urp");
8546                                 /* Supposed to be caught earlier. */
8547         break;
8548     case '{':
8549         if (!regcurly(RExC_parse)) {
8550             RExC_parse++;
8551             goto defchar;
8552         }
8553         /* FALL THROUGH */
8554     case '?':
8555     case '+':
8556     case '*':
8557         RExC_parse++;
8558         vFAIL("Quantifier follows nothing");
8559         break;
8560     case '\\':
8561         /* Special Escapes
8562
8563            This switch handles escape sequences that resolve to some kind
8564            of special regop and not to literal text. Escape sequnces that
8565            resolve to literal text are handled below in the switch marked
8566            "Literal Escapes".
8567
8568            Every entry in this switch *must* have a corresponding entry
8569            in the literal escape switch. However, the opposite is not
8570            required, as the default for this switch is to jump to the
8571            literal text handling code.
8572         */
8573         switch ((U8)*++RExC_parse) {
8574         /* Special Escapes */
8575         case 'A':
8576             RExC_seen_zerolen++;
8577             ret = reg_node(pRExC_state, SBOL);
8578             *flagp |= SIMPLE;
8579             goto finish_meta_pat;
8580         case 'G':
8581             ret = reg_node(pRExC_state, GPOS);
8582             RExC_seen |= REG_SEEN_GPOS;
8583             *flagp |= SIMPLE;
8584             goto finish_meta_pat;
8585         case 'K':
8586             RExC_seen_zerolen++;
8587             ret = reg_node(pRExC_state, KEEPS);
8588             *flagp |= SIMPLE;
8589             /* XXX:dmq : disabling in-place substitution seems to
8590              * be necessary here to avoid cases of memory corruption, as
8591              * with: C<$_="x" x 80; s/x\K/y/> -- rgs
8592              */
8593             RExC_seen |= REG_SEEN_LOOKBEHIND;
8594             goto finish_meta_pat;
8595         case 'Z':
8596             ret = reg_node(pRExC_state, SEOL);
8597             *flagp |= SIMPLE;
8598             RExC_seen_zerolen++;                /* Do not optimize RE away */
8599             goto finish_meta_pat;
8600         case 'z':
8601             ret = reg_node(pRExC_state, EOS);
8602             *flagp |= SIMPLE;
8603             RExC_seen_zerolen++;                /* Do not optimize RE away */
8604             goto finish_meta_pat;
8605         case 'C':
8606             ret = reg_node(pRExC_state, CANY);
8607             RExC_seen |= REG_SEEN_CANY;
8608             *flagp |= HASWIDTH|SIMPLE;
8609             goto finish_meta_pat;
8610         case 'X':
8611             ret = reg_node(pRExC_state, CLUMP);
8612             *flagp |= HASWIDTH;
8613             goto finish_meta_pat;
8614         case 'w':
8615             switch (get_regex_charset(RExC_flags)) {
8616                 case REGEX_LOCALE_CHARSET:
8617                     op = ALNUML;
8618                     break;
8619                 case REGEX_UNICODE_CHARSET:
8620                     op = ALNUMU;
8621                     break;
8622                 case REGEX_ASCII_RESTRICTED_CHARSET:
8623                 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
8624                     op = ALNUMA;
8625                     break;
8626                 case REGEX_DEPENDS_CHARSET:
8627                     op = ALNUM;
8628                     break;
8629                 default:
8630                     goto bad_charset;
8631             }
8632             ret = reg_node(pRExC_state, op);
8633             *flagp |= HASWIDTH|SIMPLE;
8634             goto finish_meta_pat;
8635         case 'W':
8636             switch (get_regex_charset(RExC_flags)) {
8637                 case REGEX_LOCALE_CHARSET:
8638                     op = NALNUML;
8639                     break;
8640                 case REGEX_UNICODE_CHARSET:
8641                     op = NALNUMU;
8642                     break;
8643                 case REGEX_ASCII_RESTRICTED_CHARSET:
8644                 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
8645                     op = NALNUMA;
8646                     break;
8647                 case REGEX_DEPENDS_CHARSET:
8648                     op = NALNUM;
8649                     break;
8650                 default:
8651                     goto bad_charset;
8652             }
8653             ret = reg_node(pRExC_state, op);
8654             *flagp |= HASWIDTH|SIMPLE;
8655             goto finish_meta_pat;
8656         case 'b':
8657             RExC_seen_zerolen++;
8658             RExC_seen |= REG_SEEN_LOOKBEHIND;
8659             switch (get_regex_charset(RExC_flags)) {
8660                 case REGEX_LOCALE_CHARSET:
8661                     op = BOUNDL;
8662                     break;
8663                 case REGEX_UNICODE_CHARSET:
8664                     op = BOUNDU;
8665                     break;
8666                 case REGEX_ASCII_RESTRICTED_CHARSET:
8667                 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
8668                     op = BOUNDA;
8669                     break;
8670                 case REGEX_DEPENDS_CHARSET:
8671                     op = BOUND;
8672                     break;
8673                 default:
8674                     goto bad_charset;
8675             }
8676             ret = reg_node(pRExC_state, op);
8677             FLAGS(ret) = get_regex_charset(RExC_flags);
8678             *flagp |= SIMPLE;
8679             if (! SIZE_ONLY && (U8) *(RExC_parse + 1) == '{') {
8680                 ckWARNregdep(RExC_parse, "\"\\b{\" is deprecated; use \"\\b\\{\" instead");
8681             }
8682             goto finish_meta_pat;
8683         case 'B':
8684             RExC_seen_zerolen++;
8685             RExC_seen |= REG_SEEN_LOOKBEHIND;
8686             switch (get_regex_charset(RExC_flags)) {
8687                 case REGEX_LOCALE_CHARSET:
8688                     op = NBOUNDL;
8689                     break;
8690                 case REGEX_UNICODE_CHARSET:
8691                     op = NBOUNDU;
8692                     break;
8693                 case REGEX_ASCII_RESTRICTED_CHARSET:
8694                 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
8695                     op = NBOUNDA;
8696                     break;
8697                 case REGEX_DEPENDS_CHARSET:
8698                     op = NBOUND;
8699                     break;
8700                 default:
8701                     goto bad_charset;
8702             }
8703             ret = reg_node(pRExC_state, op);
8704             FLAGS(ret) = get_regex_charset(RExC_flags);
8705             *flagp |= SIMPLE;
8706             if (! SIZE_ONLY && (U8) *(RExC_parse + 1) == '{') {
8707                 ckWARNregdep(RExC_parse, "\"\\B{\" is deprecated; use \"\\B\\{\" instead");
8708             }
8709             goto finish_meta_pat;
8710         case 's':
8711             switch (get_regex_charset(RExC_flags)) {
8712                 case REGEX_LOCALE_CHARSET:
8713                     op = SPACEL;
8714                     break;
8715                 case REGEX_UNICODE_CHARSET:
8716                     op = SPACEU;
8717                     break;
8718                 case REGEX_ASCII_RESTRICTED_CHARSET:
8719                 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
8720                     op = SPACEA;
8721                     break;
8722                 case REGEX_DEPENDS_CHARSET:
8723                     op = SPACE;
8724                     break;
8725                 default:
8726                     goto bad_charset;
8727             }
8728             ret = reg_node(pRExC_state, op);
8729             *flagp |= HASWIDTH|SIMPLE;
8730             goto finish_meta_pat;
8731         case 'S':
8732             switch (get_regex_charset(RExC_flags)) {
8733                 case REGEX_LOCALE_CHARSET:
8734                     op = NSPACEL;
8735                     break;
8736                 case REGEX_UNICODE_CHARSET:
8737                     op = NSPACEU;
8738                     break;
8739                 case REGEX_ASCII_RESTRICTED_CHARSET:
8740                 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
8741                     op = NSPACEA;
8742                     break;
8743                 case REGEX_DEPENDS_CHARSET:
8744                     op = NSPACE;
8745                     break;
8746                 default:
8747                     goto bad_charset;
8748             }
8749             ret = reg_node(pRExC_state, op);
8750             *flagp |= HASWIDTH|SIMPLE;
8751             goto finish_meta_pat;
8752         case 'd':
8753             switch (get_regex_charset(RExC_flags)) {
8754                 case REGEX_LOCALE_CHARSET:
8755                     op = DIGITL;
8756                     break;
8757                 case REGEX_ASCII_RESTRICTED_CHARSET:
8758                 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
8759                     op = DIGITA;
8760                     break;
8761                 case REGEX_DEPENDS_CHARSET: /* No difference between these */
8762                 case REGEX_UNICODE_CHARSET:
8763                     op = DIGIT;
8764                     break;
8765                 default:
8766                     goto bad_charset;
8767             }
8768             ret = reg_node(pRExC_state, op);
8769             *flagp |= HASWIDTH|SIMPLE;
8770             goto finish_meta_pat;
8771         case 'D':
8772             switch (get_regex_charset(RExC_flags)) {
8773                 case REGEX_LOCALE_CHARSET:
8774                     op = NDIGITL;
8775                     break;
8776                 case REGEX_ASCII_RESTRICTED_CHARSET:
8777                 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
8778                     op = NDIGITA;
8779                     break;
8780                 case REGEX_DEPENDS_CHARSET: /* No difference between these */
8781                 case REGEX_UNICODE_CHARSET:
8782                     op = NDIGIT;
8783                     break;
8784                 default:
8785                     goto bad_charset;
8786             }
8787             ret = reg_node(pRExC_state, op);
8788             *flagp |= HASWIDTH|SIMPLE;
8789             goto finish_meta_pat;
8790         case 'R':
8791             ret = reg_node(pRExC_state, LNBREAK);
8792             *flagp |= HASWIDTH|SIMPLE;
8793             goto finish_meta_pat;
8794         case 'h':
8795             ret = reg_node(pRExC_state, HORIZWS);
8796             *flagp |= HASWIDTH|SIMPLE;
8797             goto finish_meta_pat;
8798         case 'H':
8799             ret = reg_node(pRExC_state, NHORIZWS);
8800             *flagp |= HASWIDTH|SIMPLE;
8801             goto finish_meta_pat;
8802         case 'v':
8803             ret = reg_node(pRExC_state, VERTWS);
8804             *flagp |= HASWIDTH|SIMPLE;
8805             goto finish_meta_pat;
8806         case 'V':
8807             ret = reg_node(pRExC_state, NVERTWS);
8808             *flagp |= HASWIDTH|SIMPLE;
8809          finish_meta_pat:           
8810             nextchar(pRExC_state);
8811             Set_Node_Length(ret, 2); /* MJD */
8812             break;          
8813         case 'p':
8814         case 'P':
8815             {
8816                 char* const oldregxend = RExC_end;
8817 #ifdef DEBUGGING
8818                 char* parse_start = RExC_parse - 2;
8819 #endif
8820
8821                 if (RExC_parse[1] == '{') {
8822                   /* a lovely hack--pretend we saw [\pX] instead */
8823                     RExC_end = strchr(RExC_parse, '}');
8824                     if (!RExC_end) {
8825                         const U8 c = (U8)*RExC_parse;
8826                         RExC_parse += 2;
8827                         RExC_end = oldregxend;
8828                         vFAIL2("Missing right brace on \\%c{}", c);
8829                     }
8830                     RExC_end++;
8831                 }
8832                 else {
8833                     RExC_end = RExC_parse + 2;
8834                     if (RExC_end > oldregxend)
8835                         RExC_end = oldregxend;
8836                 }
8837                 RExC_parse--;
8838
8839                 ret = regclass(pRExC_state,depth+1);
8840
8841                 RExC_end = oldregxend;
8842                 RExC_parse--;
8843
8844                 Set_Node_Offset(ret, parse_start + 2);
8845                 Set_Node_Cur_Length(ret);
8846                 nextchar(pRExC_state);
8847                 *flagp |= HASWIDTH|SIMPLE;
8848             }
8849             break;
8850         case 'N': 
8851             /* Handle \N and \N{NAME} here and not below because it can be
8852             multicharacter. join_exact() will join them up later on. 
8853             Also this makes sure that things like /\N{BLAH}+/ and 
8854             \N{BLAH} being multi char Just Happen. dmq*/
8855             ++RExC_parse;
8856             ret= reg_namedseq(pRExC_state, NULL, flagp, depth);
8857             break;
8858         case 'k':    /* Handle \k<NAME> and \k'NAME' */
8859         parse_named_seq:
8860         {   
8861             char ch= RExC_parse[1];         
8862             if (ch != '<' && ch != '\'' && ch != '{') {
8863                 RExC_parse++;
8864                 vFAIL2("Sequence %.2s... not terminated",parse_start);
8865             } else {
8866                 /* this pretty much dupes the code for (?P=...) in reg(), if
8867                    you change this make sure you change that */
8868                 char* name_start = (RExC_parse += 2);
8869                 U32 num = 0;
8870                 SV *sv_dat = reg_scan_name(pRExC_state,
8871                     SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
8872                 ch= (ch == '<') ? '>' : (ch == '{') ? '}' : '\'';
8873                 if (RExC_parse == name_start || *RExC_parse != ch)
8874                     vFAIL2("Sequence %.3s... not terminated",parse_start);
8875
8876                 if (!SIZE_ONLY) {
8877                     num = add_data( pRExC_state, 1, "S" );
8878                     RExC_rxi->data->data[num]=(void*)sv_dat;
8879                     SvREFCNT_inc_simple_void(sv_dat);
8880                 }
8881
8882                 RExC_sawback = 1;
8883                 ret = reganode(pRExC_state,
8884                                ((! FOLD)
8885                                  ? NREF
8886                                  : (MORE_ASCII_RESTRICTED)
8887                                    ? NREFFA
8888                                    : (AT_LEAST_UNI_SEMANTICS)
8889                                      ? NREFFU
8890                                      : (LOC)
8891                                        ? NREFFL
8892                                        : NREFF),
8893                                 num);
8894                 *flagp |= HASWIDTH;
8895
8896                 /* override incorrect value set in reganode MJD */
8897                 Set_Node_Offset(ret, parse_start+1);
8898                 Set_Node_Cur_Length(ret); /* MJD */
8899                 nextchar(pRExC_state);
8900
8901             }
8902             break;
8903         }
8904         case 'g': 
8905         case '1': case '2': case '3': case '4':
8906         case '5': case '6': case '7': case '8': case '9':
8907             {
8908                 I32 num;
8909                 bool isg = *RExC_parse == 'g';
8910                 bool isrel = 0; 
8911                 bool hasbrace = 0;
8912                 if (isg) {
8913                     RExC_parse++;
8914                     if (*RExC_parse == '{') {
8915                         RExC_parse++;
8916                         hasbrace = 1;
8917                     }
8918                     if (*RExC_parse == '-') {
8919                         RExC_parse++;
8920                         isrel = 1;
8921                     }
8922                     if (hasbrace && !isDIGIT(*RExC_parse)) {
8923                         if (isrel) RExC_parse--;
8924                         RExC_parse -= 2;                            
8925                         goto parse_named_seq;
8926                 }   }
8927                 num = atoi(RExC_parse);
8928                 if (isg && num == 0)
8929                     vFAIL("Reference to invalid group 0");
8930                 if (isrel) {
8931                     num = RExC_npar - num;
8932                     if (num < 1)
8933                         vFAIL("Reference to nonexistent or unclosed group");
8934                 }
8935                 if (!isg && num > 9 && num >= RExC_npar)
8936                     goto defchar;
8937                 else {
8938                     char * const parse_start = RExC_parse - 1; /* MJD */
8939                     while (isDIGIT(*RExC_parse))
8940                         RExC_parse++;
8941                     if (parse_start == RExC_parse - 1) 
8942                         vFAIL("Unterminated \\g... pattern");
8943                     if (hasbrace) {
8944                         if (*RExC_parse != '}') 
8945                             vFAIL("Unterminated \\g{...} pattern");
8946                         RExC_parse++;
8947                     }    
8948                     if (!SIZE_ONLY) {
8949                         if (num > (I32)RExC_rx->nparens)
8950                             vFAIL("Reference to nonexistent group");
8951                     }
8952                     RExC_sawback = 1;
8953                     ret = reganode(pRExC_state,
8954                                    ((! FOLD)
8955                                      ? REF
8956                                      : (MORE_ASCII_RESTRICTED)
8957                                        ? REFFA
8958                                        : (AT_LEAST_UNI_SEMANTICS)
8959                                          ? REFFU
8960                                          : (LOC)
8961                                            ? REFFL
8962                                            : REFF),
8963                                     num);
8964                     *flagp |= HASWIDTH;
8965
8966                     /* override incorrect value set in reganode MJD */
8967                     Set_Node_Offset(ret, parse_start+1);
8968                     Set_Node_Cur_Length(ret); /* MJD */
8969                     RExC_parse--;
8970                     nextchar(pRExC_state);
8971                 }
8972             }
8973             break;
8974         case '\0':
8975             if (RExC_parse >= RExC_end)
8976                 FAIL("Trailing \\");
8977             /* FALL THROUGH */
8978         default:
8979             /* Do not generate "unrecognized" warnings here, we fall
8980                back into the quick-grab loop below */
8981             parse_start--;
8982             goto defchar;
8983         }
8984         break;
8985
8986     case '#':
8987         if (RExC_flags & RXf_PMf_EXTENDED) {
8988             if ( reg_skipcomment( pRExC_state ) )
8989                 goto tryagain;
8990         }
8991         /* FALL THROUGH */
8992
8993     default:
8994
8995             parse_start = RExC_parse - 1;
8996
8997             RExC_parse++;
8998
8999         defchar: {
9000             typedef enum {
9001                 generic_char = 0,
9002                 char_s,
9003                 upsilon_1,
9004                 upsilon_2,
9005                 iota_1,
9006                 iota_2,
9007             } char_state;
9008             char_state latest_char_state = generic_char;
9009             register STRLEN len;
9010             register UV ender;
9011             register char *p;
9012             char *s;
9013             STRLEN foldlen;
9014             U8 tmpbuf[UTF8_MAXBYTES_CASE+1], *foldbuf;
9015             regnode * orig_emit;
9016
9017             ender = 0;
9018             orig_emit = RExC_emit; /* Save the original output node position in
9019                                       case we need to output a different node
9020                                       type */
9021             ret = reg_node(pRExC_state,
9022                            (U8) ((! FOLD) ? EXACT
9023                                           : (LOC)
9024                                              ? EXACTFL
9025                                              : (MORE_ASCII_RESTRICTED)
9026                                                ? EXACTFA
9027                                                : (AT_LEAST_UNI_SEMANTICS)
9028                                                  ? EXACTFU
9029                                                  : EXACTF)
9030                     );
9031             s = STRING(ret);
9032             for (len = 0, p = RExC_parse - 1;
9033               len < 127 && p < RExC_end;
9034               len++)
9035             {
9036                 char * const oldp = p;
9037
9038                 if (RExC_flags & RXf_PMf_EXTENDED)
9039                     p = regwhite( pRExC_state, p );
9040                 switch ((U8)*p) {
9041                 case '^':
9042                 case '$':
9043                 case '.':
9044                 case '[':
9045                 case '(':
9046                 case ')':
9047                 case '|':
9048                     goto loopdone;
9049                 case '\\':
9050                     /* Literal Escapes Switch
9051
9052                        This switch is meant to handle escape sequences that
9053                        resolve to a literal character.
9054
9055                        Every escape sequence that represents something
9056                        else, like an assertion or a char class, is handled
9057                        in the switch marked 'Special Escapes' above in this
9058                        routine, but also has an entry here as anything that
9059                        isn't explicitly mentioned here will be treated as
9060                        an unescaped equivalent literal.
9061                     */
9062
9063                     switch ((U8)*++p) {
9064                     /* These are all the special escapes. */
9065                     case 'A':             /* Start assertion */
9066                     case 'b': case 'B':   /* Word-boundary assertion*/
9067                     case 'C':             /* Single char !DANGEROUS! */
9068                     case 'd': case 'D':   /* digit class */
9069                     case 'g': case 'G':   /* generic-backref, pos assertion */
9070                     case 'h': case 'H':   /* HORIZWS */
9071                     case 'k': case 'K':   /* named backref, keep marker */
9072                     case 'N':             /* named char sequence */
9073                     case 'p': case 'P':   /* Unicode property */
9074                               case 'R':   /* LNBREAK */
9075                     case 's': case 'S':   /* space class */
9076                     case 'v': case 'V':   /* VERTWS */
9077                     case 'w': case 'W':   /* word class */
9078                     case 'X':             /* eXtended Unicode "combining character sequence" */
9079                     case 'z': case 'Z':   /* End of line/string assertion */
9080                         --p;
9081                         goto loopdone;
9082
9083                     /* Anything after here is an escape that resolves to a
9084                        literal. (Except digits, which may or may not)
9085                      */
9086                     case 'n':
9087                         ender = '\n';
9088                         p++;
9089                         break;
9090                     case 'r':
9091                         ender = '\r';
9092                         p++;
9093                         break;
9094                     case 't':
9095                         ender = '\t';
9096                         p++;
9097                         break;
9098                     case 'f':
9099                         ender = '\f';
9100                         p++;
9101                         break;
9102                     case 'e':
9103                           ender = ASCII_TO_NATIVE('\033');
9104                         p++;
9105                         break;
9106                     case 'a':
9107                           ender = ASCII_TO_NATIVE('\007');
9108                         p++;
9109                         break;
9110                     case 'o':
9111                         {
9112                             STRLEN brace_len = len;
9113                             UV result;
9114                             const char* error_msg;
9115
9116                             bool valid = grok_bslash_o(p,
9117                                                        &result,
9118                                                        &brace_len,
9119                                                        &error_msg,
9120                                                        1);
9121                             p += brace_len;
9122                             if (! valid) {
9123                                 RExC_parse = p; /* going to die anyway; point
9124                                                    to exact spot of failure */
9125                                 vFAIL(error_msg);
9126                             }
9127                             else
9128                             {
9129                                 ender = result;
9130                             }
9131                             if (PL_encoding && ender < 0x100) {
9132                                 goto recode_encoding;
9133                             }
9134                             if (ender > 0xff) {
9135                                 REQUIRE_UTF8;
9136                             }
9137                             break;
9138                         }
9139                     case 'x':
9140                         if (*++p == '{') {
9141                             char* const e = strchr(p, '}');
9142
9143                             if (!e) {
9144                                 RExC_parse = p + 1;
9145                                 vFAIL("Missing right brace on \\x{}");
9146                             }
9147                             else {
9148                                 I32 flags = PERL_SCAN_ALLOW_UNDERSCORES
9149                                     | PERL_SCAN_DISALLOW_PREFIX;
9150                                 STRLEN numlen = e - p - 1;
9151                                 ender = grok_hex(p + 1, &numlen, &flags, NULL);
9152                                 if (ender > 0xff)
9153                                     REQUIRE_UTF8;
9154                                 p = e + 1;
9155                             }
9156                         }
9157                         else {
9158                             I32 flags = PERL_SCAN_DISALLOW_PREFIX;
9159                             STRLEN numlen = 2;
9160                             ender = grok_hex(p, &numlen, &flags, NULL);
9161                             p += numlen;
9162                         }
9163                         if (PL_encoding && ender < 0x100)
9164                             goto recode_encoding;
9165                         break;
9166                     case 'c':
9167                         p++;
9168                         ender = grok_bslash_c(*p++, UTF, SIZE_ONLY);
9169                         break;
9170                     case '0': case '1': case '2': case '3':case '4':
9171                     case '5': case '6': case '7': case '8':case '9':
9172                         if (*p == '0' ||
9173                             (isDIGIT(p[1]) && atoi(p) >= RExC_npar))
9174                         {
9175                             I32 flags = PERL_SCAN_SILENT_ILLDIGIT;
9176                             STRLEN numlen = 3;
9177                             ender = grok_oct(p, &numlen, &flags, NULL);
9178                             if (ender > 0xff) {
9179                                 REQUIRE_UTF8;
9180                             }
9181                             p += numlen;
9182                         }
9183                         else {
9184                             --p;
9185                             goto loopdone;
9186                         }
9187                         if (PL_encoding && ender < 0x100)
9188                             goto recode_encoding;
9189                         break;
9190                     recode_encoding:
9191                         if (! RExC_override_recoding) {
9192                             SV* enc = PL_encoding;
9193                             ender = reg_recode((const char)(U8)ender, &enc);
9194                             if (!enc && SIZE_ONLY)
9195                                 ckWARNreg(p, "Invalid escape in the specified encoding");
9196                             REQUIRE_UTF8;
9197                         }
9198                         break;
9199                     case '\0':
9200                         if (p >= RExC_end)
9201                             FAIL("Trailing \\");
9202                         /* FALL THROUGH */
9203                     default:
9204                         if (!SIZE_ONLY&& isALPHA(*p)) {
9205                             /* Include any { following the alpha to emphasize
9206                              * that it could be part of an escape at some point
9207                              * in the future */
9208                             int len = (*(p + 1) == '{') ? 2 : 1;
9209                             ckWARN3reg(p + len, "Unrecognized escape \\%.*s passed through", len, p);
9210                         }
9211                         goto normal_default;
9212                     }
9213                     break;
9214                 default:
9215                   normal_default:
9216                     if (UTF8_IS_START(*p) && UTF) {
9217                         STRLEN numlen;
9218                         ender = utf8n_to_uvchr((U8*)p, RExC_end - p,
9219                                                &numlen, UTF8_ALLOW_DEFAULT);
9220                         p += numlen;
9221                     }
9222                     else
9223                         ender = (U8) *p++;
9224                     break;
9225                 } /* End of switch on the literal */
9226
9227                 /* Certain characters are problematic because their folded
9228                  * length is so different from their original length that it
9229                  * isn't handleable by the optimizer.  They are therefore not
9230                  * placed in an EXACTish node; and are here handled specially.
9231                  * (Even if the optimizer handled LATIN_SMALL_LETTER_SHARP_S,
9232                  * putting it in a special node keeps regexec from having to
9233                  * deal with a non-utf8 multi-char fold */
9234                 if (FOLD
9235                     && (ender > 255 || (! MORE_ASCII_RESTRICTED && ! LOC)))
9236                 {
9237                     /* We look for either side of the fold.  For example \xDF
9238                      * folds to 'ss'.  We look for both the single character
9239                      * \xDF and the sequence 'ss'.  When we find something that
9240                      * could be one of those, we stop and flush whatever we
9241                      * have output so far into the EXACTish node that was being
9242                      * built.  Then restore the input pointer to what it was.
9243                      * regatom will return that EXACT node, and will be called
9244                      * again, positioned so the first character is the one in
9245                      * question, which we return in a different node type.
9246                      * The multi-char folds are a sequence, so the occurrence
9247                      * of the first character in that sequence doesn't
9248                      * necessarily mean that what follows is the rest of the
9249                      * sequence.  We keep track of that with a state machine,
9250                      * with the state being set to the latest character
9251                      * processed before the current one.  Most characters will
9252                      * set the state to 0, but if one occurs that is part of a
9253                      * potential tricky fold sequence, the state is set to that
9254                      * character, and the next loop iteration sees if the state
9255                      * should progress towards the final folded-from character,
9256                      * or if it was a false alarm.  If it turns out to be a
9257                      * false alarm, the character(s) will be output in a new
9258                      * EXACTish node, and join_exact() will later combine them.
9259                      * In the case of the 'ss' sequence, which is more common
9260                      * and more easily checked, some look-ahead is done to
9261                      * save time by ruling-out some false alarms */
9262                     switch (ender) {
9263                         default:
9264                             latest_char_state = generic_char;
9265                             break;
9266                         case 's':
9267                         case 'S':
9268                         case 0x17F: /* LATIN SMALL LETTER LONG S */
9269                              if (AT_LEAST_UNI_SEMANTICS) {
9270                                 if (latest_char_state == char_s) {  /* 'ss' */
9271                                     ender = LATIN_SMALL_LETTER_SHARP_S;
9272                                     goto do_tricky;
9273                                 }
9274                                 else if (p < RExC_end) {
9275
9276                                     /* Look-ahead at the next character.  If it
9277                                      * is also an s, we handle as a sharp s
9278                                      * tricky regnode.  */
9279                                     if (*p == 's' || *p == 'S') {
9280
9281                                         /* But first flush anything in the
9282                                          * EXACTish buffer */
9283                                         if (len != 0) {
9284                                             p = oldp;
9285                                             goto loopdone;
9286                                         }
9287                                         p++;    /* Account for swallowing this
9288                                                    's' up */
9289                                         ender = LATIN_SMALL_LETTER_SHARP_S;
9290                                         goto do_tricky;
9291                                     }
9292                                         /* Here, the next character is not a
9293                                          * literal 's', but still could
9294                                          * evaluate to one if part of a \o{},
9295                                          * \x or \OCTAL-DIGIT.  The minimum
9296                                          * length required for that is 4, eg
9297                                          * \x53 or \123 */
9298                                     else if (*p == '\\'
9299                                              && p < RExC_end - 4
9300                                              && (isDIGIT(*(p + 1))
9301                                                  || *(p + 1) == 'x'
9302                                                  || *(p + 1) == 'o' ))
9303                                     {
9304
9305                                         /* Here, it could be an 's', too much
9306                                          * bother to figure it out here.  Flush
9307                                          * the buffer if any; when come back
9308                                          * here, set the state so know that the
9309                                          * previous char was an 's' */
9310                                         if (len != 0) {
9311                                             latest_char_state = generic_char;
9312                                             p = oldp;
9313                                             goto loopdone;
9314                                         }
9315                                         latest_char_state = char_s;
9316                                         break;
9317                                     }
9318                                 }
9319                             }
9320
9321                             /* Here, can't be an 'ss' sequence, or at least not
9322                              * one that could fold to/from the sharp ss */
9323                             latest_char_state = generic_char;
9324                             break;
9325                         case 0x03C5:    /* First char in upsilon series */
9326                         case 0x03A5:    /* Also capital UPSILON, which folds to
9327                                            03C5, and hence exhibits the same
9328                                            problem */
9329                             if (p < RExC_end - 4) { /* Need >= 4 bytes left */
9330                                 latest_char_state = upsilon_1;
9331                                 if (len != 0) {
9332                                     p = oldp;
9333                                     goto loopdone;
9334                                 }
9335                             }
9336                             else {
9337                                 latest_char_state = generic_char;
9338                             }
9339                             break;
9340                         case 0x03B9:    /* First char in iota series */
9341                         case 0x0399:    /* Also capital IOTA */
9342                         case 0x1FBE:    /* GREEK PROSGEGRAMMENI folds to 3B9 */
9343                         case 0x0345:    /* COMBINING GREEK YPOGEGRAMMENI folds
9344                                            to 3B9 */
9345                             if (p < RExC_end - 4) {
9346                                 latest_char_state = iota_1;
9347                                 if (len != 0) {
9348                                     p = oldp;
9349                                     goto loopdone;
9350                                 }
9351                             }
9352                             else {
9353                                 latest_char_state = generic_char;
9354                             }
9355                             break;
9356                         case 0x0308:
9357                             if (latest_char_state == upsilon_1) {
9358                                 latest_char_state = upsilon_2;
9359                             }
9360                             else if (latest_char_state == iota_1) {
9361                                 latest_char_state = iota_2;
9362                             }
9363                             else {
9364                                 latest_char_state = generic_char;
9365                             }
9366                             break;
9367                         case 0x301:
9368                             if (latest_char_state == upsilon_2) {
9369                                 ender = GREEK_SMALL_LETTER_UPSILON_WITH_DIALYTIKA_AND_TONOS;
9370                                 goto do_tricky;
9371                             }
9372                             else if (latest_char_state == iota_2) {
9373                                 ender = GREEK_SMALL_LETTER_IOTA_WITH_DIALYTIKA_AND_TONOS;
9374                                 goto do_tricky;
9375                             }
9376                             latest_char_state = generic_char;
9377                             break;
9378
9379                         /* These are the tricky fold characters.  Flush any
9380                          * buffer first. (When adding to this list, also should
9381                          * add them to fold_grind.t to make sure get tested) */
9382                         case GREEK_SMALL_LETTER_UPSILON_WITH_DIALYTIKA_AND_TONOS:
9383                         case GREEK_SMALL_LETTER_IOTA_WITH_DIALYTIKA_AND_TONOS:
9384                         case LATIN_SMALL_LETTER_SHARP_S:
9385                         case LATIN_CAPITAL_LETTER_SHARP_S:
9386                         case 0x1FD3: /* GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA */
9387                         case 0x1FE3: /* GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA */
9388                             if (len != 0) {
9389                                 p = oldp;
9390                                 goto loopdone;
9391                             }
9392                             /* FALL THROUGH */
9393                         do_tricky: {
9394                             char* const oldregxend = RExC_end;
9395                             U8 tmpbuf[UTF8_MAXBYTES+1];
9396
9397                             /* Here, we know we need to generate a special
9398                              * regnode, and 'ender' contains the tricky
9399                              * character.  What's done is to pretend it's in a
9400                              * [bracketed] class, and let the code that deals
9401                              * with those handle it, as that code has all the
9402                              * intelligence necessary.  First save the current
9403                              * parse state, get rid of the already allocated
9404                              * but empty EXACT node that the ANYOFV node will
9405                              * replace, and point the parse to a buffer which
9406                              * we fill with the character we want the regclass
9407                              * code to think is being parsed */
9408                             RExC_emit = orig_emit;
9409                             RExC_parse = (char *) tmpbuf;
9410                             if (UTF) {
9411                                 U8 *d = uvchr_to_utf8(tmpbuf, ender);
9412                                 *d = '\0';
9413                                 RExC_end = (char *) d;
9414                             }
9415                             else {  /* ender above 255 already excluded */
9416                                 tmpbuf[0] = (U8) ender;
9417                                 tmpbuf[1] = '\0';
9418                                 RExC_end = RExC_parse + 1;
9419                             }
9420
9421                             ret = regclass(pRExC_state,depth+1);
9422
9423                             /* Here, have parsed the buffer.  Reset the parse to
9424                              * the actual input, and return */
9425                             RExC_end = oldregxend;
9426                             RExC_parse = p - 1;
9427
9428                             Set_Node_Offset(ret, RExC_parse);
9429                             Set_Node_Cur_Length(ret);
9430                             nextchar(pRExC_state);
9431                             *flagp |= HASWIDTH|SIMPLE;
9432                             return ret;
9433                         }
9434                     }
9435                 }
9436
9437                 if ( RExC_flags & RXf_PMf_EXTENDED)
9438                     p = regwhite( pRExC_state, p );
9439                 if (UTF && FOLD) {
9440                     /* Prime the casefolded buffer.  Locale rules, which apply
9441                      * only to code points < 256, aren't known until execution,
9442                      * so for them, just output the original character using
9443                      * utf8 */
9444                     if (LOC && ender < 256) {
9445                         if (UNI_IS_INVARIANT(ender)) {
9446                             *tmpbuf = (U8) ender;
9447                             foldlen = 1;
9448                         } else {
9449                             *tmpbuf = UTF8_TWO_BYTE_HI(ender);
9450                             *(tmpbuf + 1) = UTF8_TWO_BYTE_LO(ender);
9451                             foldlen = 2;
9452                         }
9453                     }
9454                     else if (isASCII(ender)) {  /* Note: Here can't also be LOC
9455                                                  */
9456                         ender = toLOWER(ender);
9457                         *tmpbuf = (U8) ender;
9458                         foldlen = 1;
9459                     }
9460                     else if (! MORE_ASCII_RESTRICTED && ! LOC) {
9461
9462                         /* Locale and /aa require more selectivity about the
9463                          * fold, so are handled below.  Otherwise, here, just
9464                          * use the fold */
9465                         ender = toFOLD_uni(ender, tmpbuf, &foldlen);
9466                     }
9467                     else {
9468                         /* Under locale rules or /aa we are not to mix,
9469                          * respectively, ords < 256 or ASCII with non-.  So
9470                          * reject folds that mix them, using only the
9471                          * non-folded code point.  So do the fold to a
9472                          * temporary, and inspect each character in it. */
9473                         U8 trialbuf[UTF8_MAXBYTES_CASE+1];
9474                         U8* s = trialbuf;
9475                         UV tmpender = toFOLD_uni(ender, trialbuf, &foldlen);
9476                         U8* e = s + foldlen;
9477                         bool fold_ok = TRUE;
9478
9479                         while (s < e) {
9480                             if (isASCII(*s)
9481                                 || (LOC && (UTF8_IS_INVARIANT(*s)
9482                                            || UTF8_IS_DOWNGRADEABLE_START(*s))))
9483                             {
9484                                 fold_ok = FALSE;
9485                                 break;
9486                             }
9487                             s += UTF8SKIP(s);
9488                         }
9489                         if (fold_ok) {
9490                             Copy(trialbuf, tmpbuf, foldlen, U8);
9491                             ender = tmpender;
9492                         }
9493                         else {
9494                             uvuni_to_utf8(tmpbuf, ender);
9495                             foldlen = UNISKIP(ender);
9496                         }
9497                     }
9498                 }
9499                 if (p < RExC_end && ISMULT2(p)) { /* Back off on ?+*. */
9500                     if (len)
9501                         p = oldp;
9502                     else if (UTF) {
9503                          if (FOLD) {
9504                               /* Emit all the Unicode characters. */
9505                               STRLEN numlen;
9506                               for (foldbuf = tmpbuf;
9507                                    foldlen;
9508                                    foldlen -= numlen) {
9509                                    ender = utf8_to_uvchr(foldbuf, &numlen);
9510                                    if (numlen > 0) {
9511                                         const STRLEN unilen = reguni(pRExC_state, ender, s);
9512                                         s       += unilen;
9513                                         len     += unilen;
9514                                         /* In EBCDIC the numlen
9515                                          * and unilen can differ. */
9516                                         foldbuf += numlen;
9517                                         if (numlen >= foldlen)
9518                                              break;
9519                                    }
9520                                    else
9521                                         break; /* "Can't happen." */
9522                               }
9523                          }
9524                          else {
9525                               const STRLEN unilen = reguni(pRExC_state, ender, s);
9526                               if (unilen > 0) {
9527                                    s   += unilen;
9528                                    len += unilen;
9529                               }
9530                          }
9531                     }
9532                     else {
9533                         len++;
9534                         REGC((char)ender, s++);
9535                     }
9536                     break;
9537                 }
9538                 if (UTF) {
9539                      if (FOLD) {
9540                           /* Emit all the Unicode characters. */
9541                           STRLEN numlen;
9542                           for (foldbuf = tmpbuf;
9543                                foldlen;
9544                                foldlen -= numlen) {
9545                                ender = utf8_to_uvchr(foldbuf, &numlen);
9546                                if (numlen > 0) {
9547                                     const STRLEN unilen = reguni(pRExC_state, ender, s);
9548                                     len     += unilen;
9549                                     s       += unilen;
9550                                     /* In EBCDIC the numlen
9551                                      * and unilen can differ. */
9552                                     foldbuf += numlen;
9553                                     if (numlen >= foldlen)
9554                                          break;
9555                                }
9556                                else
9557                                     break;
9558                           }
9559                      }
9560                      else {
9561                           const STRLEN unilen = reguni(pRExC_state, ender, s);
9562                           if (unilen > 0) {
9563                                s   += unilen;
9564                                len += unilen;
9565                           }
9566                      }
9567                      len--;
9568                 }
9569                 else {
9570                     REGC((char)ender, s++);
9571                 }
9572             }
9573         loopdone:   /* Jumped to when encounters something that shouldn't be in
9574                        the node */
9575             RExC_parse = p - 1;
9576             Set_Node_Cur_Length(ret); /* MJD */
9577             nextchar(pRExC_state);
9578             {
9579                 /* len is STRLEN which is unsigned, need to copy to signed */
9580                 IV iv = len;
9581                 if (iv < 0)
9582                     vFAIL("Internal disaster");
9583             }
9584             if (len > 0)
9585                 *flagp |= HASWIDTH;
9586             if (len == 1 && UNI_IS_INVARIANT(ender))
9587                 *flagp |= SIMPLE;
9588
9589             if (SIZE_ONLY)
9590                 RExC_size += STR_SZ(len);
9591             else {
9592                 STR_LEN(ret) = len;
9593                 RExC_emit += STR_SZ(len);
9594             }
9595         }
9596         break;
9597     }
9598
9599     return(ret);
9600
9601 /* Jumped to when an unrecognized character set is encountered */
9602 bad_charset:
9603     Perl_croak(aTHX_ "panic: Unknown regex character set encoding: %u", get_regex_charset(RExC_flags));
9604     return(NULL);
9605 }
9606
9607 STATIC char *
9608 S_regwhite( RExC_state_t *pRExC_state, char *p )
9609 {
9610     const char *e = RExC_end;
9611
9612     PERL_ARGS_ASSERT_REGWHITE;
9613
9614     while (p < e) {
9615         if (isSPACE(*p))
9616             ++p;
9617         else if (*p == '#') {
9618             bool ended = 0;
9619             do {
9620                 if (*p++ == '\n') {
9621                     ended = 1;
9622                     break;
9623                 }
9624             } while (p < e);
9625             if (!ended)
9626                 RExC_seen |= REG_SEEN_RUN_ON_COMMENT;
9627         }
9628         else
9629             break;
9630     }
9631     return p;
9632 }
9633
9634 /* Parse POSIX character classes: [[:foo:]], [[=foo=]], [[.foo.]].
9635    Character classes ([:foo:]) can also be negated ([:^foo:]).
9636    Returns a named class id (ANYOF_XXX) if successful, -1 otherwise.
9637    Equivalence classes ([=foo=]) and composites ([.foo.]) are parsed,
9638    but trigger failures because they are currently unimplemented. */
9639
9640 #define POSIXCC_DONE(c)   ((c) == ':')
9641 #define POSIXCC_NOTYET(c) ((c) == '=' || (c) == '.')
9642 #define POSIXCC(c) (POSIXCC_DONE(c) || POSIXCC_NOTYET(c))
9643
9644 STATIC I32
9645 S_regpposixcc(pTHX_ RExC_state_t *pRExC_state, I32 value)
9646 {
9647     dVAR;
9648     I32 namedclass = OOB_NAMEDCLASS;
9649
9650     PERL_ARGS_ASSERT_REGPPOSIXCC;
9651
9652     if (value == '[' && RExC_parse + 1 < RExC_end &&
9653         /* I smell either [: or [= or [. -- POSIX has been here, right? */
9654         POSIXCC(UCHARAT(RExC_parse))) {
9655         const char c = UCHARAT(RExC_parse);
9656         char* const s = RExC_parse++;
9657
9658         while (RExC_parse < RExC_end && UCHARAT(RExC_parse) != c)
9659             RExC_parse++;
9660         if (RExC_parse == RExC_end)
9661             /* Grandfather lone [:, [=, [. */
9662             RExC_parse = s;
9663         else {
9664             const char* const t = RExC_parse++; /* skip over the c */
9665             assert(*t == c);
9666
9667             if (UCHARAT(RExC_parse) == ']') {
9668                 const char *posixcc = s + 1;
9669                 RExC_parse++; /* skip over the ending ] */
9670
9671                 if (*s == ':') {
9672                     const I32 complement = *posixcc == '^' ? *posixcc++ : 0;
9673                     const I32 skip = t - posixcc;
9674
9675                     /* Initially switch on the length of the name.  */
9676                     switch (skip) {
9677                     case 4:
9678                         if (memEQ(posixcc, "word", 4)) /* this is not POSIX, this is the Perl \w */
9679                             namedclass = complement ? ANYOF_NALNUM : ANYOF_ALNUM;
9680                         break;
9681                     case 5:
9682                         /* Names all of length 5.  */
9683                         /* alnum alpha ascii blank cntrl digit graph lower
9684                            print punct space upper  */
9685                         /* Offset 4 gives the best switch position.  */
9686                         switch (posixcc[4]) {
9687                         case 'a':
9688                             if (memEQ(posixcc, "alph", 4)) /* alpha */
9689                                 namedclass = complement ? ANYOF_NALPHA : ANYOF_ALPHA;
9690                             break;
9691                         case 'e':
9692                             if (memEQ(posixcc, "spac", 4)) /* space */
9693                                 namedclass = complement ? ANYOF_NPSXSPC : ANYOF_PSXSPC;
9694                             break;
9695                         case 'h':
9696                             if (memEQ(posixcc, "grap", 4)) /* graph */
9697                                 namedclass = complement ? ANYOF_NGRAPH : ANYOF_GRAPH;
9698                             break;
9699                         case 'i':
9700                             if (memEQ(posixcc, "asci", 4)) /* ascii */
9701                                 namedclass = complement ? ANYOF_NASCII : ANYOF_ASCII;
9702                             break;
9703                         case 'k':
9704                             if (memEQ(posixcc, "blan", 4)) /* blank */
9705                                 namedclass = complement ? ANYOF_NBLANK : ANYOF_BLANK;
9706                             break;
9707                         case 'l':
9708                             if (memEQ(posixcc, "cntr", 4)) /* cntrl */
9709                                 namedclass = complement ? ANYOF_NCNTRL : ANYOF_CNTRL;
9710                             break;
9711                         case 'm':
9712                             if (memEQ(posixcc, "alnu", 4)) /* alnum */
9713                                 namedclass = complement ? ANYOF_NALNUMC : ANYOF_ALNUMC;
9714                             break;
9715                         case 'r':
9716                             if (memEQ(posixcc, "lowe", 4)) /* lower */
9717                                 namedclass = complement ? ANYOF_NLOWER : ANYOF_LOWER;
9718                             else if (memEQ(posixcc, "uppe", 4)) /* upper */
9719                                 namedclass = complement ? ANYOF_NUPPER : ANYOF_UPPER;
9720                             break;
9721                         case 't':
9722                             if (memEQ(posixcc, "digi", 4)) /* digit */
9723                                 namedclass = complement ? ANYOF_NDIGIT : ANYOF_DIGIT;
9724                             else if (memEQ(posixcc, "prin", 4)) /* print */
9725                                 namedclass = complement ? ANYOF_NPRINT : ANYOF_PRINT;
9726                             else if (memEQ(posixcc, "punc", 4)) /* punct */
9727                                 namedclass = complement ? ANYOF_NPUNCT : ANYOF_PUNCT;
9728                             break;
9729                         }
9730                         break;
9731                     case 6:
9732                         if (memEQ(posixcc, "xdigit", 6))
9733                             namedclass = complement ? ANYOF_NXDIGIT : ANYOF_XDIGIT;
9734                         break;
9735                     }
9736
9737                     if (namedclass == OOB_NAMEDCLASS)
9738                         Simple_vFAIL3("POSIX class [:%.*s:] unknown",
9739                                       t - s - 1, s + 1);
9740                     assert (posixcc[skip] == ':');
9741                     assert (posixcc[skip+1] == ']');
9742                 } else if (!SIZE_ONLY) {
9743                     /* [[=foo=]] and [[.foo.]] are still future. */
9744
9745                     /* adjust RExC_parse so the warning shows after
9746                        the class closes */
9747                     while (UCHARAT(RExC_parse) && UCHARAT(RExC_parse) != ']')
9748                         RExC_parse++;
9749                     Simple_vFAIL3("POSIX syntax [%c %c] is reserved for future extensions", c, c);
9750                 }
9751             } else {
9752                 /* Maternal grandfather:
9753                  * "[:" ending in ":" but not in ":]" */
9754                 RExC_parse = s;
9755             }
9756         }
9757     }
9758
9759     return namedclass;
9760 }
9761
9762 STATIC void
9763 S_checkposixcc(pTHX_ RExC_state_t *pRExC_state)
9764 {
9765     dVAR;
9766
9767     PERL_ARGS_ASSERT_CHECKPOSIXCC;
9768
9769     if (POSIXCC(UCHARAT(RExC_parse))) {
9770         const char *s = RExC_parse;
9771         const char  c = *s++;
9772
9773         while (isALNUM(*s))
9774             s++;
9775         if (*s && c == *s && s[1] == ']') {
9776             ckWARN3reg(s+2,
9777                        "POSIX syntax [%c %c] belongs inside character classes",
9778                        c, c);
9779
9780             /* [[=foo=]] and [[.foo.]] are still future. */
9781             if (POSIXCC_NOTYET(c)) {
9782                 /* adjust RExC_parse so the error shows after
9783                    the class closes */
9784                 while (UCHARAT(RExC_parse) && UCHARAT(RExC_parse++) != ']')
9785                     NOOP;
9786                 Simple_vFAIL3("POSIX syntax [%c %c] is reserved for future extensions", c, c);
9787             }
9788         }
9789     }
9790 }
9791
9792 /* No locale test, and always Unicode semantics, no ignore-case differences */
9793 #define _C_C_T_NOLOC_(NAME,TEST,WORD)                                          \
9794 ANYOF_##NAME:                                                                  \
9795         for (value = 0; value < 256; value++)                                  \
9796             if (TEST)                                                          \
9797             stored += set_regclass_bit(pRExC_state, ret, (U8) value, &l1_fold_invlist, &unicode_alternate);  \
9798     yesno = '+';                                                               \
9799     what = WORD;                                                               \
9800     break;                                                                     \
9801 case ANYOF_N##NAME:                                                            \
9802         for (value = 0; value < 256; value++)                                  \
9803             if (!TEST)                                                         \
9804             stored += set_regclass_bit(pRExC_state, ret, (U8) value, &l1_fold_invlist, &unicode_alternate);  \
9805     yesno = '!';                                                               \
9806     what = WORD;                                                               \
9807     break
9808
9809 /* Like the above, but there are differences if we are in uni-8-bit or not, so
9810  * there are two tests passed in, to use depending on that. There aren't any
9811  * cases where the label is different from the name, so no need for that
9812  * parameter.
9813  * Sets 'what' to WORD which is the property name for non-bitmap code points;
9814  * But, uses FOLD_WORD instead if /i has been selected, to allow a different
9815  * property name */
9816 #define _C_C_T_(NAME, TEST_8, TEST_7, WORD, FOLD_WORD)                         \
9817 ANYOF_##NAME:                                                                  \
9818     if (LOC) ANYOF_CLASS_SET(ret, ANYOF_##NAME);                               \
9819     else if (UNI_SEMANTICS) {                                                  \
9820         for (value = 0; value < 256; value++) {                                \
9821             if (TEST_8(value)) stored +=                                       \
9822                       set_regclass_bit(pRExC_state, ret, (U8) value, &l1_fold_invlist, &unicode_alternate);  \
9823         }                                                                      \
9824     }                                                                          \
9825     else {                                                                     \
9826         for (value = 0; value < 128; value++) {                                \
9827             if (TEST_7(UNI_TO_NATIVE(value))) stored +=                        \
9828                 set_regclass_bit(pRExC_state, ret,                     \
9829                                    (U8) UNI_TO_NATIVE(value), &l1_fold_invlist, &unicode_alternate);                 \
9830         }                                                                      \
9831     }                                                                          \
9832     yesno = '+';                                                               \
9833     if (FOLD) {                                                                \
9834         what = FOLD_WORD;                                                      \
9835     }                                                                          \
9836     else {                                                                     \
9837         what = WORD;                                                           \
9838     }                                                                          \
9839     break;                                                                     \
9840 case ANYOF_N##NAME:                                                            \
9841     if (LOC) ANYOF_CLASS_SET(ret, ANYOF_N##NAME);                              \
9842     else if (UNI_SEMANTICS) {                                                  \
9843         for (value = 0; value < 256; value++) {                                \
9844             if (! TEST_8(value)) stored +=                                     \
9845                     set_regclass_bit(pRExC_state, ret, (U8) value, &l1_fold_invlist, &unicode_alternate);    \
9846         }                                                                      \
9847     }                                                                          \
9848     else {                                                                     \
9849         for (value = 0; value < 128; value++) {                                \
9850             if (! TEST_7(UNI_TO_NATIVE(value))) stored += set_regclass_bit(  \
9851                         pRExC_state, ret, (U8) UNI_TO_NATIVE(value), &l1_fold_invlist, &unicode_alternate);    \
9852         }                                                                      \
9853         if (AT_LEAST_ASCII_RESTRICTED) {                                       \
9854             for (value = 128; value < 256; value++) {                          \
9855              stored += set_regclass_bit(                                     \
9856                            pRExC_state, ret, (U8) UNI_TO_NATIVE(value), &l1_fold_invlist, &unicode_alternate); \
9857             }                                                                  \
9858             ANYOF_FLAGS(ret) |= ANYOF_UNICODE_ALL;                             \
9859         }                                                                      \
9860         else {                                                                 \
9861             /* For a non-ut8 target string with DEPENDS semantics, all above   \
9862              * ASCII Latin1 code points match the complement of any of the     \
9863              * classes.  But in utf8, they have their Unicode semantics, so    \
9864              * can't just set them in the bitmap, or else regexec.c will think \
9865              * they matched when they shouldn't. */                            \
9866             ANYOF_FLAGS(ret) |= ANYOF_NON_UTF8_LATIN1_ALL;                     \
9867         }                                                                      \
9868     }                                                                          \
9869     yesno = '!';                                                               \
9870     if (FOLD) {                                                                \
9871         what = FOLD_WORD;                                                      \
9872     }                                                                          \
9873     else {                                                                     \
9874         what = WORD;                                                           \
9875     }                                                                          \
9876     break
9877
9878 STATIC U8
9879 S_set_regclass_bit_fold(pTHX_ RExC_state_t *pRExC_state, regnode* node, const U8 value, SV** invlist_ptr, AV** alternate_ptr)
9880 {
9881
9882     /* Handle the setting of folds in the bitmap for non-locale ANYOF nodes.
9883      * Locale folding is done at run-time, so this function should not be
9884      * called for nodes that are for locales.
9885      *
9886      * This function sets the bit corresponding to the fold of the input
9887      * 'value', if not already set.  The fold of 'f' is 'F', and the fold of
9888      * 'F' is 'f'.
9889      *
9890      * It also knows about the characters that are in the bitmap that have
9891      * folds that are matchable only outside it, and sets the appropriate lists
9892      * and flags.
9893      *
9894      * It returns the number of bits that actually changed from 0 to 1 */
9895
9896     U8 stored = 0;
9897     U8 fold;
9898
9899     PERL_ARGS_ASSERT_SET_REGCLASS_BIT_FOLD;
9900
9901     fold = (AT_LEAST_UNI_SEMANTICS) ? PL_fold_latin1[value]
9902                                     : PL_fold[value];
9903
9904     /* It assumes the bit for 'value' has already been set */
9905     if (fold != value && ! ANYOF_BITMAP_TEST(node, fold)) {
9906         ANYOF_BITMAP_SET(node, fold);
9907         stored++;
9908     }
9909     if (_HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(value) && (! isASCII(value) || ! MORE_ASCII_RESTRICTED)) {
9910         /* Certain Latin1 characters have matches outside the bitmap.  To get
9911          * here, 'value' is one of those characters.   None of these matches is
9912          * valid for ASCII characters under /aa, which have been excluded by
9913          * the 'if' above.  The matches fall into three categories:
9914          * 1) They are singly folded-to or -from an above 255 character, as
9915          *    LATIN SMALL LETTER Y WITH DIAERESIS and LATIN CAPITAL LETTER Y
9916          *    WITH DIAERESIS;
9917          * 2) They are part of a multi-char fold with another character in the
9918          *    bitmap, only LATIN SMALL LETTER SHARP S => "ss" fits that bill;
9919          * 3) They are part of a multi-char fold with a character not in the
9920          *    bitmap, such as various ligatures.
9921          * We aren't dealing fully with multi-char folds, except we do deal
9922          * with the pattern containing a character that has a multi-char fold
9923          * (not so much the inverse).
9924          * For types 1) and 3), the matches only happen when the target string
9925          * is utf8; that's not true for 2), and we set a flag for it.
9926          *
9927          * The code below adds to the passed in inversion list the single fold
9928          * closures for 'value'.  The values are hard-coded here so that an
9929          * innocent-looking character class, like /[ks]/i won't have to go out
9930          * to disk to find the possible matches.  XXX It would be better to
9931          * generate these via regen, in case a new version of the Unicode
9932          * standard adds new mappings, though that is not really likely. */
9933         switch (value) {
9934             case 'k':
9935             case 'K':
9936                 /* KELVIN SIGN */
9937                 *invlist_ptr = add_cp_to_invlist(*invlist_ptr, 0x212A);
9938                 break;
9939             case 's':
9940             case 'S':
9941                 /* LATIN SMALL LETTER LONG S */
9942                 *invlist_ptr = add_cp_to_invlist(*invlist_ptr, 0x017F);
9943                 break;
9944             case MICRO_SIGN:
9945                 *invlist_ptr = add_cp_to_invlist(*invlist_ptr,
9946                                                  GREEK_SMALL_LETTER_MU);
9947                 *invlist_ptr = add_cp_to_invlist(*invlist_ptr,
9948                                                  GREEK_CAPITAL_LETTER_MU);
9949                 break;
9950             case LATIN_CAPITAL_LETTER_A_WITH_RING_ABOVE:
9951             case LATIN_SMALL_LETTER_A_WITH_RING_ABOVE:
9952                 /* ANGSTROM SIGN */
9953                 *invlist_ptr = add_cp_to_invlist(*invlist_ptr, 0x212B);
9954                 if (DEPENDS_SEMANTICS) {    /* See DEPENDS comment below */
9955                     *invlist_ptr = add_cp_to_invlist(*invlist_ptr,
9956                                                      PL_fold_latin1[value]);
9957                 }
9958                 break;
9959             case LATIN_SMALL_LETTER_Y_WITH_DIAERESIS:
9960                 *invlist_ptr = add_cp_to_invlist(*invlist_ptr,
9961                                         LATIN_CAPITAL_LETTER_Y_WITH_DIAERESIS);
9962                 break;
9963             case LATIN_SMALL_LETTER_SHARP_S:
9964                 *invlist_ptr = add_cp_to_invlist(*invlist_ptr,
9965                                         LATIN_CAPITAL_LETTER_SHARP_S);
9966
9967                 /* Under /a, /d, and /u, this can match the two chars "ss" */
9968                 if (! MORE_ASCII_RESTRICTED) {
9969                     add_alternate(alternate_ptr, (U8 *) "ss", 2);
9970
9971                     /* And under /u or /a, it can match even if the target is
9972                      * not utf8 */
9973                     if (AT_LEAST_UNI_SEMANTICS) {
9974                         ANYOF_FLAGS(node) |= ANYOF_NONBITMAP_NON_UTF8;
9975                     }
9976                 }
9977                 break;
9978             case 'F': case 'f':
9979             case 'I': case 'i':
9980             case 'L': case 'l':
9981             case 'T': case 't':
9982             case 'A': case 'a':
9983             case 'H': case 'h':
9984             case 'J': case 'j':
9985             case 'N': case 'n':
9986             case 'W': case 'w':
9987             case 'Y': case 'y':
9988                 /* These all are targets of multi-character folds from code
9989                  * points that require UTF8 to express, so they can't match
9990                  * unless the target string is in UTF-8, so no action here is
9991                  * necessary, as regexec.c properly handles the general case
9992                  * for UTF-8 matching */
9993                 break;
9994             default:
9995                 /* Use deprecated warning to increase the chances of this
9996                  * being output */
9997                 ckWARN2regdep(RExC_parse, "Perl folding rules are not up-to-date for 0x%x; please use the perlbug utility to report;", value);
9998                 break;
9999         }
10000     }
10001     else if (DEPENDS_SEMANTICS
10002             && ! isASCII(value)
10003             && PL_fold_latin1[value] != value)
10004     {
10005            /* Under DEPENDS rules, non-ASCII Latin1 characters match their
10006             * folds only when the target string is in UTF-8.  We add the fold
10007             * here to the list of things to match outside the bitmap, which
10008             * won't be looked at unless it is UTF8 (or else if something else
10009             * says to look even if not utf8, but those things better not happen
10010             * under DEPENDS semantics. */
10011         *invlist_ptr = add_cp_to_invlist(*invlist_ptr, PL_fold_latin1[value]);
10012     }
10013
10014     return stored;
10015 }
10016
10017
10018 PERL_STATIC_INLINE U8
10019 S_set_regclass_bit(pTHX_ RExC_state_t *pRExC_state, regnode* node, const U8 value, SV** invlist_ptr, AV** alternate_ptr)
10020 {
10021     /* This inline function sets a bit in the bitmap if not already set, and if
10022      * appropriate, its fold, returning the number of bits that actually
10023      * changed from 0 to 1 */
10024
10025     U8 stored;
10026
10027     PERL_ARGS_ASSERT_SET_REGCLASS_BIT;
10028
10029     if (ANYOF_BITMAP_TEST(node, value)) {   /* Already set */
10030         return 0;
10031     }
10032
10033     ANYOF_BITMAP_SET(node, value);
10034     stored = 1;
10035
10036     if (FOLD && ! LOC) {        /* Locale folds aren't known until runtime */
10037         stored += set_regclass_bit_fold(pRExC_state, node, value, invlist_ptr, alternate_ptr);
10038     }
10039
10040     return stored;
10041 }
10042
10043 STATIC void
10044 S_add_alternate(pTHX_ AV** alternate_ptr, U8* string, STRLEN len)
10045 {
10046     /* Adds input 'string' with length 'len' to the ANYOF node's unicode
10047      * alternate list, pointed to by 'alternate_ptr'.  This is an array of
10048      * the multi-character folds of characters in the node */
10049     SV *sv;
10050
10051     PERL_ARGS_ASSERT_ADD_ALTERNATE;
10052
10053     if (! *alternate_ptr) {
10054         *alternate_ptr = newAV();
10055     }
10056     sv = newSVpvn_utf8((char*)string, len, TRUE);
10057     av_push(*alternate_ptr, sv);
10058     return;
10059 }
10060
10061 /*
10062    parse a class specification and produce either an ANYOF node that
10063    matches the pattern or perhaps will be optimized into an EXACTish node
10064    instead. The node contains a bit map for the first 256 characters, with the
10065    corresponding bit set if that character is in the list.  For characters
10066    above 255, a range list is used */
10067
10068 STATIC regnode *
10069 S_regclass(pTHX_ RExC_state_t *pRExC_state, U32 depth)
10070 {
10071     dVAR;
10072     register UV nextvalue;
10073     register IV prevvalue = OOB_UNICODE;
10074     register IV range = 0;
10075     UV value = 0; /* XXX:dmq: needs to be referenceable (unfortunately) */
10076     register regnode *ret;
10077     STRLEN numlen;
10078     IV namedclass;
10079     char *rangebegin = NULL;
10080     bool need_class = 0;
10081     bool allow_full_fold = TRUE;   /* Assume wants multi-char folding */
10082     SV *listsv = NULL;
10083     STRLEN initial_listsv_len = 0; /* Kind of a kludge to see if it is more
10084                                       than just initialized.  */
10085     SV* properties = NULL;    /* Code points that match \p{} \P{} */
10086     UV element_count = 0;   /* Number of distinct elements in the class.
10087                                Optimizations may be possible if this is tiny */
10088     UV n;
10089
10090     /* Unicode properties are stored in a swash; this holds the current one
10091      * being parsed.  If this swash is the only above-latin1 component of the
10092      * character class, an optimization is to pass it directly on to the
10093      * execution engine.  Otherwise, it is set to NULL to indicate that there
10094      * are other things in the class that have to be dealt with at execution
10095      * time */
10096     SV* swash = NULL;           /* Code points that match \p{} \P{} */
10097
10098     /* Set if a component of this character class is user-defined; just passed
10099      * on to the engine */
10100     UV has_user_defined_property = 0;
10101
10102     /* code points this node matches that can't be stored in the bitmap */
10103     SV* nonbitmap = NULL;
10104
10105     /* The items that are to match that aren't stored in the bitmap, but are a
10106      * result of things that are stored there.  This is the fold closure of
10107      * such a character, either because it has DEPENDS semantics and shouldn't
10108      * be matched unless the target string is utf8, or is a code point that is
10109      * too large for the bit map, as for example, the fold of the MICRO SIGN is
10110      * above 255.  This all is solely for performance reasons.  By having this
10111      * code know the outside-the-bitmap folds that the bitmapped characters are
10112      * involved with, we don't have to go out to disk to find the list of
10113      * matches, unless the character class includes code points that aren't
10114      * storable in the bit map.  That means that a character class with an 's'
10115      * in it, for example, doesn't need to go out to disk to find everything
10116      * that matches.  A 2nd list is used so that the 'nonbitmap' list is kept
10117      * empty unless there is something whose fold we don't know about, and will
10118      * have to go out to the disk to find. */
10119     SV* l1_fold_invlist = NULL;
10120
10121     /* List of multi-character folds that are matched by this node */
10122     AV* unicode_alternate  = NULL;
10123 #ifdef EBCDIC
10124     UV literal_endpoint = 0;
10125 #endif
10126     UV stored = 0;  /* how many chars stored in the bitmap */
10127
10128     regnode * const orig_emit = RExC_emit; /* Save the original RExC_emit in
10129         case we need to change the emitted regop to an EXACT. */
10130     const char * orig_parse = RExC_parse;
10131     GET_RE_DEBUG_FLAGS_DECL;
10132
10133     PERL_ARGS_ASSERT_REGCLASS;
10134 #ifndef DEBUGGING
10135     PERL_UNUSED_ARG(depth);
10136 #endif
10137
10138     DEBUG_PARSE("clas");
10139
10140     /* Assume we are going to generate an ANYOF node. */
10141     ret = reganode(pRExC_state, ANYOF, 0);
10142
10143
10144     if (!SIZE_ONLY) {
10145         ANYOF_FLAGS(ret) = 0;
10146     }
10147
10148     if (UCHARAT(RExC_parse) == '^') {   /* Complement of range. */
10149         RExC_naughty++;
10150         RExC_parse++;
10151         if (!SIZE_ONLY)
10152             ANYOF_FLAGS(ret) |= ANYOF_INVERT;
10153
10154         /* We have decided to not allow multi-char folds in inverted character
10155          * classes, due to the confusion that can happen, especially with
10156          * classes that are designed for a non-Unicode world:  You have the
10157          * peculiar case that:
10158             "s s" =~ /^[^\xDF]+$/i => Y
10159             "ss"  =~ /^[^\xDF]+$/i => N
10160          *
10161          * See [perl #89750] */
10162         allow_full_fold = FALSE;
10163     }
10164
10165     if (SIZE_ONLY) {
10166         RExC_size += ANYOF_SKIP;
10167         listsv = &PL_sv_undef; /* For code scanners: listsv always non-NULL. */
10168     }
10169     else {
10170         RExC_emit += ANYOF_SKIP;
10171         if (LOC) {
10172             ANYOF_FLAGS(ret) |= ANYOF_LOCALE;
10173         }
10174         ANYOF_BITMAP_ZERO(ret);
10175         listsv = newSVpvs("# comment\n");
10176         initial_listsv_len = SvCUR(listsv);
10177     }
10178
10179     nextvalue = RExC_parse < RExC_end ? UCHARAT(RExC_parse) : 0;
10180
10181     if (!SIZE_ONLY && POSIXCC(nextvalue))
10182         checkposixcc(pRExC_state);
10183
10184     /* allow 1st char to be ] (allowing it to be - is dealt with later) */
10185     if (UCHARAT(RExC_parse) == ']')
10186         goto charclassloop;
10187
10188 parseit:
10189     while (RExC_parse < RExC_end && UCHARAT(RExC_parse) != ']') {
10190
10191     charclassloop:
10192
10193         namedclass = OOB_NAMEDCLASS; /* initialize as illegal */
10194
10195         if (!range) {
10196             rangebegin = RExC_parse;
10197             element_count++;
10198         }
10199         if (UTF) {
10200             value = utf8n_to_uvchr((U8*)RExC_parse,
10201                                    RExC_end - RExC_parse,
10202                                    &numlen, UTF8_ALLOW_DEFAULT);
10203             RExC_parse += numlen;
10204         }
10205         else
10206             value = UCHARAT(RExC_parse++);
10207
10208         nextvalue = RExC_parse < RExC_end ? UCHARAT(RExC_parse) : 0;
10209         if (value == '[' && POSIXCC(nextvalue))
10210             namedclass = regpposixcc(pRExC_state, value);
10211         else if (value == '\\') {
10212             if (UTF) {
10213                 value = utf8n_to_uvchr((U8*)RExC_parse,
10214                                    RExC_end - RExC_parse,
10215                                    &numlen, UTF8_ALLOW_DEFAULT);
10216                 RExC_parse += numlen;
10217             }
10218             else
10219                 value = UCHARAT(RExC_parse++);
10220             /* Some compilers cannot handle switching on 64-bit integer
10221              * values, therefore value cannot be an UV.  Yes, this will
10222              * be a problem later if we want switch on Unicode.
10223              * A similar issue a little bit later when switching on
10224              * namedclass. --jhi */
10225             switch ((I32)value) {
10226             case 'w':   namedclass = ANYOF_ALNUM;       break;
10227             case 'W':   namedclass = ANYOF_NALNUM;      break;
10228             case 's':   namedclass = ANYOF_SPACE;       break;
10229             case 'S':   namedclass = ANYOF_NSPACE;      break;
10230             case 'd':   namedclass = ANYOF_DIGIT;       break;
10231             case 'D':   namedclass = ANYOF_NDIGIT;      break;
10232             case 'v':   namedclass = ANYOF_VERTWS;      break;
10233             case 'V':   namedclass = ANYOF_NVERTWS;     break;
10234             case 'h':   namedclass = ANYOF_HORIZWS;     break;
10235             case 'H':   namedclass = ANYOF_NHORIZWS;    break;
10236             case 'N':  /* Handle \N{NAME} in class */
10237                 {
10238                     /* We only pay attention to the first char of 
10239                     multichar strings being returned. I kinda wonder
10240                     if this makes sense as it does change the behaviour
10241                     from earlier versions, OTOH that behaviour was broken
10242                     as well. */
10243                     UV v; /* value is register so we cant & it /grrr */
10244                     if (reg_namedseq(pRExC_state, &v, NULL, depth)) {
10245                         goto parseit;
10246                     }
10247                     value= v; 
10248                 }
10249                 break;
10250             case 'p':
10251             case 'P':
10252                 {
10253                 char *e;
10254                 if (RExC_parse >= RExC_end)
10255                     vFAIL2("Empty \\%c{}", (U8)value);
10256                 if (*RExC_parse == '{') {
10257                     const U8 c = (U8)value;
10258                     e = strchr(RExC_parse++, '}');
10259                     if (!e)
10260                         vFAIL2("Missing right brace on \\%c{}", c);
10261                     while (isSPACE(UCHARAT(RExC_parse)))
10262                         RExC_parse++;
10263                     if (e == RExC_parse)
10264                         vFAIL2("Empty \\%c{}", c);
10265                     n = e - RExC_parse;
10266                     while (isSPACE(UCHARAT(RExC_parse + n - 1)))
10267                         n--;
10268                 }
10269                 else {
10270                     e = RExC_parse;
10271                     n = 1;
10272                 }
10273                 if (!SIZE_ONLY) {
10274                     SV** invlistsvp;
10275                     SV* invlist;
10276                     char* name;
10277                     if (UCHARAT(RExC_parse) == '^') {
10278                          RExC_parse++;
10279                          n--;
10280                          value = value == 'p' ? 'P' : 'p'; /* toggle */
10281                          while (isSPACE(UCHARAT(RExC_parse))) {
10282                               RExC_parse++;
10283                               n--;
10284                          }
10285                     }
10286                     /* Try to get the definition of the property into
10287                      * <invlist>.  If /i is in effect, the effective property
10288                      * will have its name be <__NAME_i>.  The design is
10289                      * discussed in commit
10290                      * 2f833f5208e26b208886e51e09e2c072b5eabb46 */
10291                     Newx(name, n + sizeof("_i__\n"), char);
10292
10293                     sprintf(name, "%s%.*s%s\n",
10294                                     (FOLD) ? "__" : "",
10295                                     (int)n,
10296                                     RExC_parse,
10297                                     (FOLD) ? "_i" : ""
10298                     );
10299
10300                     /* Look up the property name, and get its swash and
10301                      * inversion list, if the property is found  */
10302                     if (swash) {
10303                         SvREFCNT_dec(swash);
10304                     }
10305                     swash = _core_swash_init("utf8", name, &PL_sv_undef,
10306                                              1, /* binary */
10307                                              0, /* not tr/// */
10308                                              TRUE, /* this routine will handle
10309                                                       undefined properties */
10310                                              NULL, FALSE /* No inversion list */
10311                                             );
10312                     if (   ! swash
10313                         || ! SvROK(swash)
10314                         || ! SvTYPE(SvRV(swash)) == SVt_PVHV
10315                         || ! (invlistsvp =
10316                                 hv_fetchs(MUTABLE_HV(SvRV(swash)),
10317                                 "INVLIST", FALSE))
10318                         || ! (invlist = *invlistsvp))
10319                     {
10320                         if (swash) {
10321                             SvREFCNT_dec(swash);
10322                             swash = NULL;
10323                         }
10324
10325                         /* Here didn't find it.  It could be a user-defined
10326                          * property that will be available at run-time.  Add it
10327                          * to the list to look up then */
10328                         Perl_sv_catpvf(aTHX_ listsv, "%cutf8::%s\n",
10329                                         (value == 'p' ? '+' : '!'),
10330                                         name);
10331                         has_user_defined_property = 1;
10332
10333                         /* We don't know yet, so have to assume that the
10334                          * property could match something in the Latin1 range,
10335                          * hence something that isn't utf8 */
10336                         ANYOF_FLAGS(ret) |= ANYOF_NONBITMAP_NON_UTF8;
10337                     }
10338                     else {
10339
10340                         /* Here, did get the swash and its inversion list.  If
10341                          * the swash is from a user-defined property, then this
10342                          * whole character class should be regarded as such */
10343                         SV** user_defined_svp =
10344                                             hv_fetchs(MUTABLE_HV(SvRV(swash)),
10345                                                         "USER_DEFINED", FALSE);
10346                         if (user_defined_svp) {
10347                             has_user_defined_property
10348                                                     |= SvUV(*user_defined_svp);
10349                         }
10350
10351                         /* Invert if asking for the complement */
10352                         if (value == 'P') {
10353
10354                             /* Add to any existing list */
10355                             if (! properties) {
10356                                 properties = invlist_clone(invlist);
10357                                 _invlist_invert(properties);
10358                             }
10359                             else {
10360                                 invlist = invlist_clone(invlist);
10361                                 _invlist_invert(invlist);
10362                                 _invlist_union(properties, invlist, &properties);
10363                                 SvREFCNT_dec(invlist);
10364                             }
10365
10366                             /* The swash can't be used as-is, because we've
10367                              * inverted things; delay removing it to here after
10368                              * have copied its invlist above */
10369                             SvREFCNT_dec(swash);
10370                             swash = NULL;
10371                         }
10372                         else {
10373                             if (! properties) {
10374                                 properties = invlist_clone(invlist);
10375                             }
10376                             else {
10377                                 _invlist_union(properties, invlist, &properties);
10378                             }
10379                         }
10380                     }
10381                     Safefree(name);
10382                 }
10383                 RExC_parse = e + 1;
10384                 namedclass = ANYOF_MAX;  /* no official name, but it's named */
10385
10386                 /* \p means they want Unicode semantics */
10387                 RExC_uni_semantics = 1;
10388                 }
10389                 break;
10390             case 'n':   value = '\n';                   break;
10391             case 'r':   value = '\r';                   break;
10392             case 't':   value = '\t';                   break;
10393             case 'f':   value = '\f';                   break;
10394             case 'b':   value = '\b';                   break;
10395             case 'e':   value = ASCII_TO_NATIVE('\033');break;
10396             case 'a':   value = ASCII_TO_NATIVE('\007');break;
10397             case 'o':
10398                 RExC_parse--;   /* function expects to be pointed at the 'o' */
10399                 {
10400                     const char* error_msg;
10401                     bool valid = grok_bslash_o(RExC_parse,
10402                                                &value,
10403                                                &numlen,
10404                                                &error_msg,
10405                                                SIZE_ONLY);
10406                     RExC_parse += numlen;
10407                     if (! valid) {
10408                         vFAIL(error_msg);
10409                     }
10410                 }
10411                 if (PL_encoding && value < 0x100) {
10412                     goto recode_encoding;
10413                 }
10414                 break;
10415             case 'x':
10416                 if (*RExC_parse == '{') {
10417                     I32 flags = PERL_SCAN_ALLOW_UNDERSCORES
10418                         | PERL_SCAN_DISALLOW_PREFIX;
10419                     char * const e = strchr(RExC_parse++, '}');
10420                     if (!e)
10421                         vFAIL("Missing right brace on \\x{}");
10422
10423                     numlen = e - RExC_parse;
10424                     value = grok_hex(RExC_parse, &numlen, &flags, NULL);
10425                     RExC_parse = e + 1;
10426                 }
10427                 else {
10428                     I32 flags = PERL_SCAN_DISALLOW_PREFIX;
10429                     numlen = 2;
10430                     value = grok_hex(RExC_parse, &numlen, &flags, NULL);
10431                     RExC_parse += numlen;
10432                 }
10433                 if (PL_encoding && value < 0x100)
10434                     goto recode_encoding;
10435                 break;
10436             case 'c':
10437                 value = grok_bslash_c(*RExC_parse++, UTF, SIZE_ONLY);
10438                 break;
10439             case '0': case '1': case '2': case '3': case '4':
10440             case '5': case '6': case '7':
10441                 {
10442                     /* Take 1-3 octal digits */
10443                     I32 flags = PERL_SCAN_SILENT_ILLDIGIT;
10444                     numlen = 3;
10445                     value = grok_oct(--RExC_parse, &numlen, &flags, NULL);
10446                     RExC_parse += numlen;
10447                     if (PL_encoding && value < 0x100)
10448                         goto recode_encoding;
10449                     break;
10450                 }
10451             recode_encoding:
10452                 if (! RExC_override_recoding) {
10453                     SV* enc = PL_encoding;
10454                     value = reg_recode((const char)(U8)value, &enc);
10455                     if (!enc && SIZE_ONLY)
10456                         ckWARNreg(RExC_parse,
10457                                   "Invalid escape in the specified encoding");
10458                     break;
10459                 }
10460             default:
10461                 /* Allow \_ to not give an error */
10462                 if (!SIZE_ONLY && isALNUM(value) && value != '_') {
10463                     ckWARN2reg(RExC_parse,
10464                                "Unrecognized escape \\%c in character class passed through",
10465                                (int)value);
10466                 }
10467                 break;
10468             }
10469         } /* end of \blah */
10470 #ifdef EBCDIC
10471         else
10472             literal_endpoint++;
10473 #endif
10474
10475         if (namedclass > OOB_NAMEDCLASS) { /* this is a named class \blah */
10476
10477             /* What matches in a locale is not known until runtime, so need to
10478              * (one time per class) allocate extra space to pass to regexec.
10479              * The space will contain a bit for each named class that is to be
10480              * matched against.  This isn't needed for \p{} and pseudo-classes,
10481              * as they are not affected by locale, and hence are dealt with
10482              * separately */
10483             if (LOC && namedclass < ANYOF_MAX && ! need_class) {
10484                 need_class = 1;
10485                 if (SIZE_ONLY) {
10486                     RExC_size += ANYOF_CLASS_SKIP - ANYOF_SKIP;
10487                 }
10488                 else {
10489                     RExC_emit += ANYOF_CLASS_SKIP - ANYOF_SKIP;
10490                     ANYOF_CLASS_ZERO(ret);
10491                 }
10492                 ANYOF_FLAGS(ret) |= ANYOF_CLASS;
10493             }
10494
10495             /* a bad range like a-\d, a-[:digit:].  The '-' is taken as a
10496              * literal, as is the character that began the false range, i.e.
10497              * the 'a' in the examples */
10498             if (range) {
10499                 if (!SIZE_ONLY) {
10500                     const int w =
10501                         RExC_parse >= rangebegin ?
10502                         RExC_parse - rangebegin : 0;
10503                     ckWARN4reg(RExC_parse,
10504                                "False [] range \"%*.*s\"",
10505                                w, w, rangebegin);
10506
10507                     stored +=
10508                          set_regclass_bit(pRExC_state, ret, '-', &l1_fold_invlist, &unicode_alternate);
10509                     if (prevvalue < 256) {
10510                         stored +=
10511                          set_regclass_bit(pRExC_state, ret, (U8) prevvalue, &l1_fold_invlist, &unicode_alternate);
10512                     }
10513                     else {
10514                         nonbitmap = add_cp_to_invlist(nonbitmap, prevvalue);
10515                     }
10516                 }
10517
10518                 range = 0; /* this was not a true range */
10519             }
10520
10521             if (!SIZE_ONLY) {
10522                 const char *what = NULL;
10523                 char yesno = 0;
10524
10525                 /* Possible truncation here but in some 64-bit environments
10526                  * the compiler gets heartburn about switch on 64-bit values.
10527                  * A similar issue a little earlier when switching on value.
10528                  * --jhi */
10529                 switch ((I32)namedclass) {
10530                 
10531                 case _C_C_T_(ALNUMC, isALNUMC_L1, isALNUMC, "XPosixAlnum", "XPosixAlnum");
10532                 case _C_C_T_(ALPHA, isALPHA_L1, isALPHA, "XPosixAlpha", "XPosixAlpha");
10533                 case _C_C_T_(BLANK, isBLANK_L1, isBLANK, "XPosixBlank", "XPosixBlank");
10534                 case _C_C_T_(CNTRL, isCNTRL_L1, isCNTRL, "XPosixCntrl", "XPosixCntrl");
10535                 case _C_C_T_(GRAPH, isGRAPH_L1, isGRAPH, "XPosixGraph", "XPosixGraph");
10536                 case _C_C_T_(LOWER, isLOWER_L1, isLOWER, "XPosixLower", "__XPosixLower_i");
10537                 case _C_C_T_(PRINT, isPRINT_L1, isPRINT, "XPosixPrint", "XPosixPrint");
10538                 case _C_C_T_(PSXSPC, isPSXSPC_L1, isPSXSPC, "XPosixSpace", "XPosixSpace");
10539                 case _C_C_T_(PUNCT, isPUNCT_L1, isPUNCT, "XPosixPunct", "XPosixPunct");
10540                 case _C_C_T_(UPPER, isUPPER_L1, isUPPER, "XPosixUpper", "__XPosixUpper_i");
10541                 /* \s, \w match all unicode if utf8. */
10542                 case _C_C_T_(SPACE, isSPACE_L1, isSPACE, "SpacePerl", "SpacePerl");
10543                 case _C_C_T_(ALNUM, isWORDCHAR_L1, isALNUM, "Word", "Word");
10544                 case _C_C_T_(XDIGIT, isXDIGIT_L1, isXDIGIT, "XPosixXDigit", "XPosixXDigit");
10545                 case _C_C_T_NOLOC_(VERTWS, is_VERTWS_latin1(&value), "VertSpace");
10546                 case _C_C_T_NOLOC_(HORIZWS, is_HORIZWS_latin1(&value), "HorizSpace");
10547                 case ANYOF_ASCII:
10548                     if (LOC)
10549                         ANYOF_CLASS_SET(ret, ANYOF_ASCII);
10550                     else {
10551                         for (value = 0; value < 128; value++)
10552                             stored +=
10553                               set_regclass_bit(pRExC_state, ret, (U8) ASCII_TO_NATIVE(value), &l1_fold_invlist, &unicode_alternate);
10554                     }
10555                     yesno = '+';
10556                     what = NULL;        /* Doesn't match outside ascii, so
10557                                            don't want to add +utf8:: */
10558                     break;
10559                 case ANYOF_NASCII:
10560                     if (LOC)
10561                         ANYOF_CLASS_SET(ret, ANYOF_NASCII);
10562                     else {
10563                         for (value = 128; value < 256; value++)
10564                             stored +=
10565                               set_regclass_bit(pRExC_state, ret, (U8) ASCII_TO_NATIVE(value), &l1_fold_invlist, &unicode_alternate);
10566                     }
10567                     ANYOF_FLAGS(ret) |= ANYOF_UNICODE_ALL;
10568                     yesno = '!';
10569                     what = "ASCII";
10570                     break;              
10571                 case ANYOF_DIGIT:
10572                     if (LOC)
10573                         ANYOF_CLASS_SET(ret, ANYOF_DIGIT);
10574                     else {
10575                         /* consecutive digits assumed */
10576                         for (value = '0'; value <= '9'; value++)
10577                             stored +=
10578                               set_regclass_bit(pRExC_state, ret, (U8) value, &l1_fold_invlist, &unicode_alternate);
10579                     }
10580                     yesno = '+';
10581                     what = "Digit";
10582                     break;
10583                 case ANYOF_NDIGIT:
10584                     if (LOC)
10585                         ANYOF_CLASS_SET(ret, ANYOF_NDIGIT);
10586                     else {
10587                         /* consecutive digits assumed */
10588                         for (value = 0; value < '0'; value++)
10589                             stored +=
10590                               set_regclass_bit(pRExC_state, ret, (U8) value, &l1_fold_invlist, &unicode_alternate);
10591                         for (value = '9' + 1; value < 256; value++)
10592                             stored +=
10593                               set_regclass_bit(pRExC_state, ret, (U8) value, &l1_fold_invlist, &unicode_alternate);
10594                     }
10595                     yesno = '!';
10596                     what = "Digit";
10597                     if (AT_LEAST_ASCII_RESTRICTED ) {
10598                         ANYOF_FLAGS(ret) |= ANYOF_UNICODE_ALL;
10599                     }
10600                     break;              
10601                 case ANYOF_MAX:
10602                     /* this is to handle \p and \P */
10603                     break;
10604                 default:
10605                     vFAIL("Invalid [::] class");
10606                     break;
10607                 }
10608                 if (what && ! (AT_LEAST_ASCII_RESTRICTED)) {
10609                     /* Strings such as "+utf8::isWord\n" */
10610                     Perl_sv_catpvf(aTHX_ listsv, "%cutf8::%s\n", yesno, what);
10611                 }
10612
10613                 continue;
10614             }
10615         } /* end of namedclass \blah */
10616
10617         if (range) {
10618             if (prevvalue > (IV)value) /* b-a */ {
10619                 const int w = RExC_parse - rangebegin;
10620                 Simple_vFAIL4("Invalid [] range \"%*.*s\"", w, w, rangebegin);
10621                 range = 0; /* not a valid range */
10622             }
10623         }
10624         else {
10625             prevvalue = value; /* save the beginning of the range */
10626             if (RExC_parse+1 < RExC_end
10627                 && *RExC_parse == '-'
10628                 && RExC_parse[1] != ']')
10629             {
10630                 RExC_parse++;
10631
10632                 /* a bad range like \w-, [:word:]- ? */
10633                 if (namedclass > OOB_NAMEDCLASS) {
10634                     if (ckWARN(WARN_REGEXP)) {
10635                         const int w =
10636                             RExC_parse >= rangebegin ?
10637                             RExC_parse - rangebegin : 0;
10638                         vWARN4(RExC_parse,
10639                                "False [] range \"%*.*s\"",
10640                                w, w, rangebegin);
10641                     }
10642                     if (!SIZE_ONLY)
10643                         stored +=
10644                             set_regclass_bit(pRExC_state, ret, '-', &l1_fold_invlist, &unicode_alternate);
10645                 } else
10646                     range = 1;  /* yeah, it's a range! */
10647                 continue;       /* but do it the next time */
10648             }
10649         }
10650
10651         /* non-Latin1 code point implies unicode semantics.  Must be set in
10652          * pass1 so is there for the whole of pass 2 */
10653         if (value > 255) {
10654             RExC_uni_semantics = 1;
10655         }
10656
10657         /* now is the next time */
10658         if (!SIZE_ONLY) {
10659             if (prevvalue < 256) {
10660                 const IV ceilvalue = value < 256 ? value : 255;
10661                 IV i;
10662 #ifdef EBCDIC
10663                 /* In EBCDIC [\x89-\x91] should include
10664                  * the \x8e but [i-j] should not. */
10665                 if (literal_endpoint == 2 &&
10666                     ((isLOWER(prevvalue) && isLOWER(ceilvalue)) ||
10667                      (isUPPER(prevvalue) && isUPPER(ceilvalue))))
10668                 {
10669                     if (isLOWER(prevvalue)) {
10670                         for (i = prevvalue; i <= ceilvalue; i++)
10671                             if (isLOWER(i) && !ANYOF_BITMAP_TEST(ret,i)) {
10672                                 stored +=
10673                                   set_regclass_bit(pRExC_state, ret, (U8) i, &l1_fold_invlist, &unicode_alternate);
10674                             }
10675                     } else {
10676                         for (i = prevvalue; i <= ceilvalue; i++)
10677                             if (isUPPER(i) && !ANYOF_BITMAP_TEST(ret,i)) {
10678                                 stored +=
10679                                   set_regclass_bit(pRExC_state, ret, (U8) i, &l1_fold_invlist, &unicode_alternate);
10680                             }
10681                     }
10682                 }
10683                 else
10684 #endif
10685                       for (i = prevvalue; i <= ceilvalue; i++) {
10686                         stored += set_regclass_bit(pRExC_state, ret, (U8) i, &l1_fold_invlist, &unicode_alternate);
10687                       }
10688           }
10689           if (value > 255) {
10690             const UV prevnatvalue  = NATIVE_TO_UNI(prevvalue);
10691             const UV natvalue      = NATIVE_TO_UNI(value);
10692             nonbitmap = add_range_to_invlist(nonbitmap, prevnatvalue, natvalue);
10693         }
10694 #ifdef EBCDIC
10695             literal_endpoint = 0;
10696 #endif
10697         }
10698
10699         range = 0; /* this range (if it was one) is done now */
10700     }
10701
10702
10703
10704     if (SIZE_ONLY)
10705         return ret;
10706     /****** !SIZE_ONLY AFTER HERE *********/
10707
10708     /* If folding and there are code points above 255, we calculate all
10709      * characters that could fold to or from the ones already on the list */
10710     if (FOLD && nonbitmap) {
10711         UV start, end;  /* End points of code point ranges */
10712
10713         SV* fold_intersection = NULL;
10714
10715         /* This is a list of all the characters that participate in folds
10716             * (except marks, etc in multi-char folds */
10717         if (! PL_utf8_foldable) {
10718             SV* swash = swash_init("utf8", "Cased", &PL_sv_undef, 1, 0);
10719             PL_utf8_foldable = _swash_to_invlist(swash);
10720             SvREFCNT_dec(swash);
10721         }
10722
10723         /* This is a hash that for a particular fold gives all characters
10724             * that are involved in it */
10725         if (! PL_utf8_foldclosures) {
10726
10727             /* If we were unable to find any folds, then we likely won't be
10728              * able to find the closures.  So just create an empty list.
10729              * Folding will effectively be restricted to the non-Unicode rules
10730              * hard-coded into Perl.  (This case happens legitimately during
10731              * compilation of Perl itself before the Unicode tables are
10732              * generated) */
10733             if (invlist_len(PL_utf8_foldable) == 0) {
10734                 PL_utf8_foldclosures = newHV();
10735             } else {
10736                 /* If the folds haven't been read in, call a fold function
10737                     * to force that */
10738                 if (! PL_utf8_tofold) {
10739                     U8 dummy[UTF8_MAXBYTES+1];
10740                     STRLEN dummy_len;
10741
10742                     /* This particular string is above \xff in both UTF-8 and
10743                      * UTFEBCDIC */
10744                     to_utf8_fold((U8*) "\xC8\x80", dummy, &dummy_len);
10745                     assert(PL_utf8_tofold); /* Verify that worked */
10746                 }
10747                 PL_utf8_foldclosures = _swash_inversion_hash(PL_utf8_tofold);
10748             }
10749         }
10750
10751         /* Only the characters in this class that participate in folds need be
10752          * checked.  Get the intersection of this class and all the possible
10753          * characters that are foldable.  This can quickly narrow down a large
10754          * class */
10755         _invlist_intersection(PL_utf8_foldable, nonbitmap, &fold_intersection);
10756
10757         /* Now look at the foldable characters in this class individually */
10758         invlist_iterinit(fold_intersection);
10759         while (invlist_iternext(fold_intersection, &start, &end)) {
10760             UV j;
10761
10762             /* Look at every character in the range */
10763             for (j = start; j <= end; j++) {
10764
10765                 /* Get its fold */
10766                 U8 foldbuf[UTF8_MAXBYTES_CASE+1];
10767                 STRLEN foldlen;
10768                 const UV f =
10769                     _to_uni_fold_flags(j, foldbuf, &foldlen, allow_full_fold);
10770
10771                 if (foldlen > (STRLEN)UNISKIP(f)) {
10772
10773                     /* Any multicharacter foldings (disallowed in lookbehind
10774                      * patterns) require the following transform: [ABCDEF] ->
10775                      * (?:[ABCabcDEFd]|pq|rst) where E folds into "pq" and F
10776                      * folds into "rst", all other characters fold to single
10777                      * characters.  We save away these multicharacter foldings,
10778                      * to be later saved as part of the additional "s" data. */
10779                     if (! RExC_in_lookbehind) {
10780                         U8* loc = foldbuf;
10781                         U8* e = foldbuf + foldlen;
10782
10783                         /* If any of the folded characters of this are in the
10784                          * Latin1 range, tell the regex engine that this can
10785                          * match a non-utf8 target string.  The only multi-byte
10786                          * fold whose source is in the Latin1 range (U+00DF)
10787                          * applies only when the target string is utf8, or
10788                          * under unicode rules */
10789                         if (j > 255 || AT_LEAST_UNI_SEMANTICS) {
10790                             while (loc < e) {
10791
10792                                 /* Can't mix ascii with non- under /aa */
10793                                 if (MORE_ASCII_RESTRICTED
10794                                     && (isASCII(*loc) != isASCII(j)))
10795                                 {
10796                                     goto end_multi_fold;
10797                                 }
10798                                 if (UTF8_IS_INVARIANT(*loc)
10799                                     || UTF8_IS_DOWNGRADEABLE_START(*loc))
10800                                 {
10801                                     /* Can't mix above and below 256 under LOC
10802                                      */
10803                                     if (LOC) {
10804                                         goto end_multi_fold;
10805                                     }
10806                                     ANYOF_FLAGS(ret)
10807                                             |= ANYOF_NONBITMAP_NON_UTF8;
10808                                     break;
10809                                 }
10810                                 loc += UTF8SKIP(loc);
10811                             }
10812                         }
10813
10814                         add_alternate(&unicode_alternate, foldbuf, foldlen);
10815                     end_multi_fold: ;
10816                     }
10817
10818                     /* This is special-cased, as it is the only letter which
10819                      * has both a multi-fold and single-fold in Latin1.  All
10820                      * the other chars that have single and multi-folds are
10821                      * always in utf8, and the utf8 folding algorithm catches
10822                      * them */
10823                     if (! LOC && j == LATIN_CAPITAL_LETTER_SHARP_S) {
10824                         stored += set_regclass_bit(pRExC_state,
10825                                         ret,
10826                                         LATIN_SMALL_LETTER_SHARP_S,
10827                                         &l1_fold_invlist, &unicode_alternate);
10828                     }
10829                 }
10830                 else {
10831                     /* Single character fold.  Add everything in its fold
10832                      * closure to the list that this node should match */
10833                     SV** listp;
10834
10835                     /* The fold closures data structure is a hash with the keys
10836                      * being every character that is folded to, like 'k', and
10837                      * the values each an array of everything that folds to its
10838                      * key.  e.g. [ 'k', 'K', KELVIN_SIGN ] */
10839                     if ((listp = hv_fetch(PL_utf8_foldclosures,
10840                                     (char *) foldbuf, foldlen, FALSE)))
10841                     {
10842                         AV* list = (AV*) *listp;
10843                         IV k;
10844                         for (k = 0; k <= av_len(list); k++) {
10845                             SV** c_p = av_fetch(list, k, FALSE);
10846                             UV c;
10847                             if (c_p == NULL) {
10848                                 Perl_croak(aTHX_ "panic: invalid PL_utf8_foldclosures structure");
10849                             }
10850                             c = SvUV(*c_p);
10851
10852                             /* /aa doesn't allow folds between ASCII and non-;
10853                              * /l doesn't allow them between above and below
10854                              * 256 */
10855                             if ((MORE_ASCII_RESTRICTED
10856                                  && (isASCII(c) != isASCII(j)))
10857                                     || (LOC && ((c < 256) != (j < 256))))
10858                             {
10859                                 continue;
10860                             }
10861
10862                             if (c < 256 && AT_LEAST_UNI_SEMANTICS) {
10863                                 stored += set_regclass_bit(pRExC_state,
10864                                         ret,
10865                                         (U8) c,
10866                                         &l1_fold_invlist, &unicode_alternate);
10867                             }
10868                                 /* It may be that the code point is already in
10869                                  * this range or already in the bitmap, in
10870                                  * which case we need do nothing */
10871                             else if ((c < start || c > end)
10872                                         && (c > 255
10873                                             || ! ANYOF_BITMAP_TEST(ret, c)))
10874                             {
10875                                 nonbitmap = add_cp_to_invlist(nonbitmap, c);
10876                             }
10877                         }
10878                     }
10879                 }
10880             }
10881         }
10882         SvREFCNT_dec(fold_intersection);
10883     }
10884
10885     /* Combine the two lists into one. */
10886     if (l1_fold_invlist) {
10887         if (nonbitmap) {
10888             _invlist_union(nonbitmap, l1_fold_invlist, &nonbitmap);
10889             SvREFCNT_dec(l1_fold_invlist);
10890         }
10891         else {
10892             nonbitmap = l1_fold_invlist;
10893         }
10894     }
10895
10896     /* And combine the result (if any) with any inversion list from properties.
10897      * The lists are kept separate up to now because we don't want to fold the
10898      * properties */
10899     if (properties) {
10900         if (nonbitmap) {
10901             _invlist_union(nonbitmap, properties, &nonbitmap);
10902             SvREFCNT_dec(properties);
10903         }
10904         else {
10905             nonbitmap = properties;
10906         }
10907     }
10908
10909     /* Here, <nonbitmap> contains all the code points we can determine at
10910      * compile time that we haven't put into the bitmap.  Go through it, and
10911      * for things that belong in the bitmap, put them there, and delete from
10912      * <nonbitmap> */
10913     if (nonbitmap) {
10914
10915         /* Above-ASCII code points in /d have to stay in <nonbitmap>, as they
10916          * possibly only should match when the target string is UTF-8 */
10917         UV max_cp_to_set = (DEPENDS_SEMANTICS) ? 127 : 255;
10918
10919         /* This gets set if we actually need to modify things */
10920         bool change_invlist = FALSE;
10921
10922         UV start, end;
10923
10924         /* Start looking through <nonbitmap> */
10925         invlist_iterinit(nonbitmap);
10926         while (invlist_iternext(nonbitmap, &start, &end)) {
10927             UV high;
10928             int i;
10929
10930             /* Quit if are above what we should change */
10931             if (start > max_cp_to_set) {
10932                 break;
10933             }
10934
10935             change_invlist = TRUE;
10936
10937             /* Set all the bits in the range, up to the max that we are doing */
10938             high = (end < max_cp_to_set) ? end : max_cp_to_set;
10939             for (i = start; i <= (int) high; i++) {
10940                 if (! ANYOF_BITMAP_TEST(ret, i)) {
10941                     ANYOF_BITMAP_SET(ret, i);
10942                     stored++;
10943                     prevvalue = value;
10944                     value = i;
10945                 }
10946             }
10947         }
10948
10949         /* Done with loop; set <nonbitmap> to not include any code points that
10950          * are in the bitmap */
10951         if (change_invlist) {
10952             SV* keep_list = _new_invlist(2);
10953             _append_range_to_invlist(keep_list, max_cp_to_set + 1, UV_MAX);
10954             _invlist_intersection(nonbitmap, keep_list, &nonbitmap);
10955             SvREFCNT_dec(keep_list);
10956         }
10957
10958         /* If have completely emptied it, remove it completely */
10959         if (invlist_len(nonbitmap) == 0) {
10960             SvREFCNT_dec(nonbitmap);
10961             nonbitmap = NULL;
10962         }
10963     }
10964
10965     /* Here, we have calculated what code points should be in the character
10966      * class.  <nonbitmap> does not overlap the bitmap except possibly in the
10967      * case of DEPENDS rules.
10968      *
10969      * Now we can see about various optimizations.  Fold calculation (which we
10970      * did above) needs to take place before inversion.  Otherwise /[^k]/i
10971      * would invert to include K, which under /i would match k, which it
10972      * shouldn't. */
10973
10974     /* Optimize inverted simple patterns (e.g. [^a-z]).  Note that we haven't
10975      * set the FOLD flag yet, so this does optimize those.  It doesn't
10976      * optimize locale.  Doing so perhaps could be done as long as there is
10977      * nothing like \w in it; some thought also would have to be given to the
10978      * interaction with above 0x100 chars */
10979     if ((ANYOF_FLAGS(ret) & ANYOF_INVERT)
10980         && ! LOC
10981         && ! unicode_alternate
10982         /* In case of /d, there are some things that should match only when in
10983          * not in the bitmap, i.e., they require UTF8 to match.  These are
10984          * listed in nonbitmap, but if ANYOF_NONBITMAP_NON_UTF8 is set in this
10985          * case, they don't require UTF8, so can invert here */
10986         && (! nonbitmap
10987             || ! DEPENDS_SEMANTICS
10988             || (ANYOF_FLAGS(ret) & ANYOF_NONBITMAP_NON_UTF8))
10989         && SvCUR(listsv) == initial_listsv_len)
10990     {
10991         int i;
10992         if (! nonbitmap) {
10993             for (i = 0; i < 256; ++i) {
10994                 if (ANYOF_BITMAP_TEST(ret, i)) {
10995                     ANYOF_BITMAP_CLEAR(ret, i);
10996                 }
10997                 else {
10998                     ANYOF_BITMAP_SET(ret, i);
10999                     prevvalue = value;
11000                     value = i;
11001                 }
11002             }
11003             /* The inversion means that everything above 255 is matched */
11004             ANYOF_FLAGS(ret) |= ANYOF_UNICODE_ALL;
11005         }
11006         else {
11007             /* Here, also has things outside the bitmap that may overlap with
11008              * the bitmap.  We have to sync them up, so that they get inverted
11009              * in both places.  Earlier, we removed all overlaps except in the
11010              * case of /d rules, so no syncing is needed except for this case
11011              */
11012             SV *remove_list = NULL;
11013
11014             if (DEPENDS_SEMANTICS) {
11015                 UV start, end;
11016
11017                 /* Set the bits that correspond to the ones that aren't in the
11018                  * bitmap.  Otherwise, when we invert, we'll miss these.
11019                  * Earlier, we removed from the nonbitmap all code points
11020                  * < 128, so there is no extra work here */
11021                 invlist_iterinit(nonbitmap);
11022                 while (invlist_iternext(nonbitmap, &start, &end)) {
11023                     if (start > 255) {  /* The bit map goes to 255 */
11024                         break;
11025                     }
11026                     if (end > 255) {
11027                         end = 255;
11028                     }
11029                     for (i = start; i <= (int) end; ++i) {
11030                         ANYOF_BITMAP_SET(ret, i);
11031                         prevvalue = value;
11032                         value = i;
11033                     }
11034                 }
11035             }
11036
11037             /* Now invert both the bitmap and the nonbitmap.  Anything in the
11038              * bitmap has to also be removed from the non-bitmap, but again,
11039              * there should not be overlap unless is /d rules. */
11040             _invlist_invert(nonbitmap);
11041
11042             for (i = 0; i < 256; ++i) {
11043                 if (ANYOF_BITMAP_TEST(ret, i)) {
11044                     ANYOF_BITMAP_CLEAR(ret, i);
11045                     if (DEPENDS_SEMANTICS) {
11046                         if (! remove_list) {
11047                             remove_list = _new_invlist(2);
11048                         }
11049                         remove_list = add_cp_to_invlist(remove_list, i);
11050                     }
11051                 }
11052                 else {
11053                     ANYOF_BITMAP_SET(ret, i);
11054                     prevvalue = value;
11055                     value = i;
11056                 }
11057             }
11058
11059             /* And do the removal */
11060             if (DEPENDS_SEMANTICS) {
11061                 if (remove_list) {
11062                     _invlist_subtract(nonbitmap, remove_list, &nonbitmap);
11063                     SvREFCNT_dec(remove_list);
11064                 }
11065             }
11066             else {
11067                 /* There is no overlap for non-/d, so just delete anything
11068                  * below 256 */
11069                 SV* keep_list = _new_invlist(2);
11070                 _append_range_to_invlist(keep_list, 256, UV_MAX);
11071                 _invlist_intersection(nonbitmap, keep_list, &nonbitmap);
11072                 SvREFCNT_dec(keep_list);
11073             }
11074         }
11075
11076         stored = 256 - stored;
11077
11078         /* Clear the invert flag since have just done it here */
11079         ANYOF_FLAGS(ret) &= ~ANYOF_INVERT;
11080     }
11081
11082     /* Folding in the bitmap is taken care of above, but not for locale (for
11083      * which we have to wait to see what folding is in effect at runtime), and
11084      * for some things not in the bitmap (only the upper latin folds in this
11085      * case, as all other single-char folding has been set above).  Set
11086      * run-time fold flag for these */
11087     if (FOLD && (LOC
11088                 || (DEPENDS_SEMANTICS
11089                     && nonbitmap
11090                     && ! (ANYOF_FLAGS(ret) & ANYOF_NONBITMAP_NON_UTF8))
11091                 || unicode_alternate))
11092     {
11093         ANYOF_FLAGS(ret) |= ANYOF_LOC_NONBITMAP_FOLD;
11094     }
11095
11096     /* A single character class can be "optimized" into an EXACTish node.
11097      * Note that since we don't currently count how many characters there are
11098      * outside the bitmap, we are XXX missing optimization possibilities for
11099      * them.  This optimization can't happen unless this is a truly single
11100      * character class, which means that it can't be an inversion into a
11101      * many-character class, and there must be no possibility of there being
11102      * things outside the bitmap.  'stored' (only) for locales doesn't include
11103      * \w, etc, so have to make a special test that they aren't present
11104      *
11105      * Similarly A 2-character class of the very special form like [bB] can be
11106      * optimized into an EXACTFish node, but only for non-locales, and for
11107      * characters which only have the two folds; so things like 'fF' and 'Ii'
11108      * wouldn't work because they are part of the fold of 'LATIN SMALL LIGATURE
11109      * FI'. */
11110     if (! nonbitmap
11111         && ! unicode_alternate
11112         && SvCUR(listsv) == initial_listsv_len
11113         && ! (ANYOF_FLAGS(ret) & (ANYOF_INVERT|ANYOF_UNICODE_ALL))
11114         && (((stored == 1 && ((! (ANYOF_FLAGS(ret) & ANYOF_LOCALE))
11115                               || (! ANYOF_CLASS_TEST_ANY_SET(ret)))))
11116             || (stored == 2 && ((! (ANYOF_FLAGS(ret) & ANYOF_LOCALE))
11117                                  && (! _HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(value))
11118                                  /* If the latest code point has a fold whose
11119                                   * bit is set, it must be the only other one */
11120                                 && ((prevvalue = PL_fold_latin1[value]) != (IV)value)
11121                                  && ANYOF_BITMAP_TEST(ret, prevvalue)))))
11122     {
11123         /* Note that the information needed to decide to do this optimization
11124          * is not currently available until the 2nd pass, and that the actually
11125          * used EXACTish node takes less space than the calculated ANYOF node,
11126          * and hence the amount of space calculated in the first pass is larger
11127          * than actually used, so this optimization doesn't gain us any space.
11128          * But an EXACT node is faster than an ANYOF node, and can be combined
11129          * with any adjacent EXACT nodes later by the optimizer for further
11130          * gains.  The speed of executing an EXACTF is similar to an ANYOF
11131          * node, so the optimization advantage comes from the ability to join
11132          * it to adjacent EXACT nodes */
11133
11134         const char * cur_parse= RExC_parse;
11135         U8 op;
11136         RExC_emit = (regnode *)orig_emit;
11137         RExC_parse = (char *)orig_parse;
11138
11139         if (stored == 1) {
11140
11141             /* A locale node with one point can be folded; all the other cases
11142              * with folding will have two points, since we calculate them above
11143              */
11144             if (ANYOF_FLAGS(ret) & ANYOF_LOC_NONBITMAP_FOLD) {
11145                  op = EXACTFL;
11146             }
11147             else {
11148                 op = EXACT;
11149             }
11150         }
11151         else {   /* else 2 chars in the bit map: the folds of each other */
11152
11153             /* Use the folded value, which for the cases where we get here,
11154              * is just the lower case of the current one (which may resolve to
11155              * itself, or to the other one */
11156             value = toLOWER_LATIN1(value);
11157
11158             /* To join adjacent nodes, they must be the exact EXACTish type.
11159              * Try to use the most likely type, by using EXACTFA if possible,
11160              * then EXACTFU if the regex calls for it, or is required because
11161              * the character is non-ASCII.  (If <value> is ASCII, its fold is
11162              * also ASCII for the cases where we get here.) */
11163             if (MORE_ASCII_RESTRICTED && isASCII(value)) {
11164                 op = EXACTFA;
11165             }
11166             else if (AT_LEAST_UNI_SEMANTICS || !isASCII(value)) {
11167                 op = EXACTFU;
11168             }
11169             else {    /* Otherwise, more likely to be EXACTF type */
11170                 op = EXACTF;
11171             }
11172         }
11173
11174         ret = reg_node(pRExC_state, op);
11175         RExC_parse = (char *)cur_parse;
11176         if (UTF && ! NATIVE_IS_INVARIANT(value)) {
11177             *STRING(ret)= UTF8_EIGHT_BIT_HI((U8) value);
11178             *(STRING(ret) + 1)= UTF8_EIGHT_BIT_LO((U8) value);
11179             STR_LEN(ret)= 2;
11180             RExC_emit += STR_SZ(2);
11181         }
11182         else {
11183             *STRING(ret)= (char)value;
11184             STR_LEN(ret)= 1;
11185             RExC_emit += STR_SZ(1);
11186         }
11187         SvREFCNT_dec(listsv);
11188         return ret;
11189     }
11190
11191     /* If there is a swash and more than one element, we can't use the swash in
11192      * the optimization below. */
11193     if (swash && element_count > 1) {
11194         SvREFCNT_dec(swash);
11195         swash = NULL;
11196     }
11197     if (! nonbitmap
11198         && SvCUR(listsv) == initial_listsv_len
11199         && ! unicode_alternate)
11200     {
11201         ARG_SET(ret, ANYOF_NONBITMAP_EMPTY);
11202         SvREFCNT_dec(listsv);
11203         SvREFCNT_dec(unicode_alternate);
11204     }
11205     else {
11206         /* av[0] stores the character class description in its textual form:
11207          *       used later (regexec.c:Perl_regclass_swash()) to initialize the
11208          *       appropriate swash, and is also useful for dumping the regnode.
11209          * av[1] if NULL, is a placeholder to later contain the swash computed
11210          *       from av[0].  But if no further computation need be done, the
11211          *       swash is stored there now.
11212          * av[2] stores the multicharacter foldings, used later in
11213          *       regexec.c:S_reginclass().
11214          * av[3] stores the nonbitmap inversion list for use in addition or
11215          *       instead of av[0]; not used if av[1] isn't NULL
11216          * av[4] is set if any component of the class is from a user-defined
11217          *       property; not used if av[1] isn't NULL */
11218         AV * const av = newAV();
11219         SV *rv;
11220
11221         av_store(av, 0, (SvCUR(listsv) == initial_listsv_len)
11222                         ? &PL_sv_undef
11223                         : listsv);
11224         if (swash) {
11225             av_store(av, 1, swash);
11226             SvREFCNT_dec(nonbitmap);
11227         }
11228         else {
11229             av_store(av, 1, NULL);
11230             if (nonbitmap) {
11231                 av_store(av, 3, nonbitmap);
11232                 av_store(av, 4, newSVuv(has_user_defined_property));
11233             }
11234         }
11235
11236         /* Store any computed multi-char folds only if we are allowing
11237          * them */
11238         if (allow_full_fold) {
11239             av_store(av, 2, MUTABLE_SV(unicode_alternate));
11240             if (unicode_alternate) { /* This node is variable length */
11241                 OP(ret) = ANYOFV;
11242             }
11243         }
11244         else {
11245             av_store(av, 2, NULL);
11246         }
11247         rv = newRV_noinc(MUTABLE_SV(av));
11248         n = add_data(pRExC_state, 1, "s");
11249         RExC_rxi->data->data[n] = (void*)rv;
11250         ARG_SET(ret, n);
11251     }
11252     return ret;
11253 }
11254 #undef _C_C_T_
11255
11256
11257 /* reg_skipcomment()
11258
11259    Absorbs an /x style # comments from the input stream.
11260    Returns true if there is more text remaining in the stream.
11261    Will set the REG_SEEN_RUN_ON_COMMENT flag if the comment
11262    terminates the pattern without including a newline.
11263
11264    Note its the callers responsibility to ensure that we are
11265    actually in /x mode
11266
11267 */
11268
11269 STATIC bool
11270 S_reg_skipcomment(pTHX_ RExC_state_t *pRExC_state)
11271 {
11272     bool ended = 0;
11273
11274     PERL_ARGS_ASSERT_REG_SKIPCOMMENT;
11275
11276     while (RExC_parse < RExC_end)
11277         if (*RExC_parse++ == '\n') {
11278             ended = 1;
11279             break;
11280         }
11281     if (!ended) {
11282         /* we ran off the end of the pattern without ending
11283            the comment, so we have to add an \n when wrapping */
11284         RExC_seen |= REG_SEEN_RUN_ON_COMMENT;
11285         return 0;
11286     } else
11287         return 1;
11288 }
11289
11290 /* nextchar()
11291
11292    Advances the parse position, and optionally absorbs
11293    "whitespace" from the inputstream.
11294
11295    Without /x "whitespace" means (?#...) style comments only,
11296    with /x this means (?#...) and # comments and whitespace proper.
11297
11298    Returns the RExC_parse point from BEFORE the scan occurs.
11299
11300    This is the /x friendly way of saying RExC_parse++.
11301 */
11302
11303 STATIC char*
11304 S_nextchar(pTHX_ RExC_state_t *pRExC_state)
11305 {
11306     char* const retval = RExC_parse++;
11307
11308     PERL_ARGS_ASSERT_NEXTCHAR;
11309
11310     for (;;) {
11311         if (RExC_end - RExC_parse >= 3
11312             && *RExC_parse == '('
11313             && RExC_parse[1] == '?'
11314             && RExC_parse[2] == '#')
11315         {
11316             while (*RExC_parse != ')') {
11317                 if (RExC_parse == RExC_end)
11318                     FAIL("Sequence (?#... not terminated");
11319                 RExC_parse++;
11320             }
11321             RExC_parse++;
11322             continue;
11323         }
11324         if (RExC_flags & RXf_PMf_EXTENDED) {
11325             if (isSPACE(*RExC_parse)) {
11326                 RExC_parse++;
11327                 continue;
11328             }
11329             else if (*RExC_parse == '#') {
11330                 if ( reg_skipcomment( pRExC_state ) )
11331                     continue;
11332             }
11333         }
11334         return retval;
11335     }
11336 }
11337
11338 /*
11339 - reg_node - emit a node
11340 */
11341 STATIC regnode *                        /* Location. */
11342 S_reg_node(pTHX_ RExC_state_t *pRExC_state, U8 op)
11343 {
11344     dVAR;
11345     register regnode *ptr;
11346     regnode * const ret = RExC_emit;
11347     GET_RE_DEBUG_FLAGS_DECL;
11348
11349     PERL_ARGS_ASSERT_REG_NODE;
11350
11351     if (SIZE_ONLY) {
11352         SIZE_ALIGN(RExC_size);
11353         RExC_size += 1;
11354         return(ret);
11355     }
11356     if (RExC_emit >= RExC_emit_bound)
11357         Perl_croak(aTHX_ "panic: reg_node overrun trying to emit %d", op);
11358
11359     NODE_ALIGN_FILL(ret);
11360     ptr = ret;
11361     FILL_ADVANCE_NODE(ptr, op);
11362 #ifdef RE_TRACK_PATTERN_OFFSETS
11363     if (RExC_offsets) {         /* MJD */
11364         MJD_OFFSET_DEBUG(("%s:%d: (op %s) %s %"UVuf" (len %"UVuf") (max %"UVuf").\n", 
11365               "reg_node", __LINE__, 
11366               PL_reg_name[op],
11367               (UV)(RExC_emit - RExC_emit_start) > RExC_offsets[0] 
11368                 ? "Overwriting end of array!\n" : "OK",
11369               (UV)(RExC_emit - RExC_emit_start),
11370               (UV)(RExC_parse - RExC_start),
11371               (UV)RExC_offsets[0])); 
11372         Set_Node_Offset(RExC_emit, RExC_parse + (op == END));
11373     }
11374 #endif
11375     RExC_emit = ptr;
11376     return(ret);
11377 }
11378
11379 /*
11380 - reganode - emit a node with an argument
11381 */
11382 STATIC regnode *                        /* Location. */
11383 S_reganode(pTHX_ RExC_state_t *pRExC_state, U8 op, U32 arg)
11384 {
11385     dVAR;
11386     register regnode *ptr;
11387     regnode * const ret = RExC_emit;
11388     GET_RE_DEBUG_FLAGS_DECL;
11389
11390     PERL_ARGS_ASSERT_REGANODE;
11391
11392     if (SIZE_ONLY) {
11393         SIZE_ALIGN(RExC_size);
11394         RExC_size += 2;
11395         /* 
11396            We can't do this:
11397            
11398            assert(2==regarglen[op]+1); 
11399
11400            Anything larger than this has to allocate the extra amount.
11401            If we changed this to be:
11402            
11403            RExC_size += (1 + regarglen[op]);
11404            
11405            then it wouldn't matter. Its not clear what side effect
11406            might come from that so its not done so far.
11407            -- dmq
11408         */
11409         return(ret);
11410     }
11411     if (RExC_emit >= RExC_emit_bound)
11412         Perl_croak(aTHX_ "panic: reg_node overrun trying to emit %d", op);
11413
11414     NODE_ALIGN_FILL(ret);
11415     ptr = ret;
11416     FILL_ADVANCE_NODE_ARG(ptr, op, arg);
11417 #ifdef RE_TRACK_PATTERN_OFFSETS
11418     if (RExC_offsets) {         /* MJD */
11419         MJD_OFFSET_DEBUG(("%s(%d): (op %s) %s %"UVuf" <- %"UVuf" (max %"UVuf").\n", 
11420               "reganode",
11421               __LINE__,
11422               PL_reg_name[op],
11423               (UV)(RExC_emit - RExC_emit_start) > RExC_offsets[0] ? 
11424               "Overwriting end of array!\n" : "OK",
11425               (UV)(RExC_emit - RExC_emit_start),
11426               (UV)(RExC_parse - RExC_start),
11427               (UV)RExC_offsets[0])); 
11428         Set_Cur_Node_Offset;
11429     }
11430 #endif            
11431     RExC_emit = ptr;
11432     return(ret);
11433 }
11434
11435 /*
11436 - reguni - emit (if appropriate) a Unicode character
11437 */
11438 STATIC STRLEN
11439 S_reguni(pTHX_ const RExC_state_t *pRExC_state, UV uv, char* s)
11440 {
11441     dVAR;
11442
11443     PERL_ARGS_ASSERT_REGUNI;
11444
11445     return SIZE_ONLY ? UNISKIP(uv) : (uvchr_to_utf8((U8*)s, uv) - (U8*)s);
11446 }
11447
11448 /*
11449 - reginsert - insert an operator in front of already-emitted operand
11450 *
11451 * Means relocating the operand.
11452 */
11453 STATIC void
11454 S_reginsert(pTHX_ RExC_state_t *pRExC_state, U8 op, regnode *opnd, U32 depth)
11455 {
11456     dVAR;
11457     register regnode *src;
11458     register regnode *dst;
11459     register regnode *place;
11460     const int offset = regarglen[(U8)op];
11461     const int size = NODE_STEP_REGNODE + offset;
11462     GET_RE_DEBUG_FLAGS_DECL;
11463
11464     PERL_ARGS_ASSERT_REGINSERT;
11465     PERL_UNUSED_ARG(depth);
11466 /* (PL_regkind[(U8)op] == CURLY ? EXTRA_STEP_2ARGS : 0); */
11467     DEBUG_PARSE_FMT("inst"," - %s",PL_reg_name[op]);
11468     if (SIZE_ONLY) {
11469         RExC_size += size;
11470         return;
11471     }
11472
11473     src = RExC_emit;
11474     RExC_emit += size;
11475     dst = RExC_emit;
11476     if (RExC_open_parens) {
11477         int paren;
11478         /*DEBUG_PARSE_FMT("inst"," - %"IVdf, (IV)RExC_npar);*/
11479         for ( paren=0 ; paren < RExC_npar ; paren++ ) {
11480             if ( RExC_open_parens[paren] >= opnd ) {
11481                 /*DEBUG_PARSE_FMT("open"," - %d",size);*/
11482                 RExC_open_parens[paren] += size;
11483             } else {
11484                 /*DEBUG_PARSE_FMT("open"," - %s","ok");*/
11485             }
11486             if ( RExC_close_parens[paren] >= opnd ) {
11487                 /*DEBUG_PARSE_FMT("close"," - %d",size);*/
11488                 RExC_close_parens[paren] += size;
11489             } else {
11490                 /*DEBUG_PARSE_FMT("close"," - %s","ok");*/
11491             }
11492         }
11493     }
11494
11495     while (src > opnd) {
11496         StructCopy(--src, --dst, regnode);
11497 #ifdef RE_TRACK_PATTERN_OFFSETS
11498         if (RExC_offsets) {     /* MJD 20010112 */
11499             MJD_OFFSET_DEBUG(("%s(%d): (op %s) %s copy %"UVuf" -> %"UVuf" (max %"UVuf").\n",
11500                   "reg_insert",
11501                   __LINE__,
11502                   PL_reg_name[op],
11503                   (UV)(dst - RExC_emit_start) > RExC_offsets[0] 
11504                     ? "Overwriting end of array!\n" : "OK",
11505                   (UV)(src - RExC_emit_start),
11506                   (UV)(dst - RExC_emit_start),
11507                   (UV)RExC_offsets[0])); 
11508             Set_Node_Offset_To_R(dst-RExC_emit_start, Node_Offset(src));
11509             Set_Node_Length_To_R(dst-RExC_emit_start, Node_Length(src));
11510         }
11511 #endif
11512     }
11513     
11514
11515     place = opnd;               /* Op node, where operand used to be. */
11516 #ifdef RE_TRACK_PATTERN_OFFSETS
11517     if (RExC_offsets) {         /* MJD */
11518         MJD_OFFSET_DEBUG(("%s(%d): (op %s) %s %"UVuf" <- %"UVuf" (max %"UVuf").\n", 
11519               "reginsert",
11520               __LINE__,
11521               PL_reg_name[op],
11522               (UV)(place - RExC_emit_start) > RExC_offsets[0] 
11523               ? "Overwriting end of array!\n" : "OK",
11524               (UV)(place - RExC_emit_start),
11525               (UV)(RExC_parse - RExC_start),
11526               (UV)RExC_offsets[0]));
11527         Set_Node_Offset(place, RExC_parse);
11528         Set_Node_Length(place, 1);
11529     }
11530 #endif    
11531     src = NEXTOPER(place);
11532     FILL_ADVANCE_NODE(place, op);
11533     Zero(src, offset, regnode);
11534 }
11535
11536 /*
11537 - regtail - set the next-pointer at the end of a node chain of p to val.
11538 - SEE ALSO: regtail_study
11539 */
11540 /* TODO: All three parms should be const */
11541 STATIC void
11542 S_regtail(pTHX_ RExC_state_t *pRExC_state, regnode *p, const regnode *val,U32 depth)
11543 {
11544     dVAR;
11545     register regnode *scan;
11546     GET_RE_DEBUG_FLAGS_DECL;
11547
11548     PERL_ARGS_ASSERT_REGTAIL;
11549 #ifndef DEBUGGING
11550     PERL_UNUSED_ARG(depth);
11551 #endif
11552
11553     if (SIZE_ONLY)
11554         return;
11555
11556     /* Find last node. */
11557     scan = p;
11558     for (;;) {
11559         regnode * const temp = regnext(scan);
11560         DEBUG_PARSE_r({
11561             SV * const mysv=sv_newmortal();
11562             DEBUG_PARSE_MSG((scan==p ? "tail" : ""));
11563             regprop(RExC_rx, mysv, scan);
11564             PerlIO_printf(Perl_debug_log, "~ %s (%d) %s %s\n",
11565                 SvPV_nolen_const(mysv), REG_NODE_NUM(scan),
11566                     (temp == NULL ? "->" : ""),
11567                     (temp == NULL ? PL_reg_name[OP(val)] : "")
11568             );
11569         });
11570         if (temp == NULL)
11571             break;
11572         scan = temp;
11573     }
11574
11575     if (reg_off_by_arg[OP(scan)]) {
11576         ARG_SET(scan, val - scan);
11577     }
11578     else {
11579         NEXT_OFF(scan) = val - scan;
11580     }
11581 }
11582
11583 #ifdef DEBUGGING
11584 /*
11585 - regtail_study - set the next-pointer at the end of a node chain of p to val.
11586 - Look for optimizable sequences at the same time.
11587 - currently only looks for EXACT chains.
11588
11589 This is experimental code. The idea is to use this routine to perform 
11590 in place optimizations on branches and groups as they are constructed,
11591 with the long term intention of removing optimization from study_chunk so
11592 that it is purely analytical.
11593
11594 Currently only used when in DEBUG mode. The macro REGTAIL_STUDY() is used
11595 to control which is which.
11596
11597 */
11598 /* TODO: All four parms should be const */
11599
11600 STATIC U8
11601 S_regtail_study(pTHX_ RExC_state_t *pRExC_state, regnode *p, const regnode *val,U32 depth)
11602 {
11603     dVAR;
11604     register regnode *scan;
11605     U8 exact = PSEUDO;
11606 #ifdef EXPERIMENTAL_INPLACESCAN
11607     I32 min = 0;
11608 #endif
11609     GET_RE_DEBUG_FLAGS_DECL;
11610
11611     PERL_ARGS_ASSERT_REGTAIL_STUDY;
11612
11613
11614     if (SIZE_ONLY)
11615         return exact;
11616
11617     /* Find last node. */
11618
11619     scan = p;
11620     for (;;) {
11621         regnode * const temp = regnext(scan);
11622 #ifdef EXPERIMENTAL_INPLACESCAN
11623         if (PL_regkind[OP(scan)] == EXACT)
11624             if (join_exact(pRExC_state,scan,&min,1,val,depth+1))
11625                 return EXACT;
11626 #endif
11627         if ( exact ) {
11628             switch (OP(scan)) {
11629                 case EXACT:
11630                 case EXACTF:
11631                 case EXACTFA:
11632                 case EXACTFU:
11633                 case EXACTFL:
11634                         if( exact == PSEUDO )
11635                             exact= OP(scan);
11636                         else if ( exact != OP(scan) )
11637                             exact= 0;
11638                 case NOTHING:
11639                     break;
11640                 default:
11641                     exact= 0;
11642             }
11643         }
11644         DEBUG_PARSE_r({
11645             SV * const mysv=sv_newmortal();
11646             DEBUG_PARSE_MSG((scan==p ? "tsdy" : ""));
11647             regprop(RExC_rx, mysv, scan);
11648             PerlIO_printf(Perl_debug_log, "~ %s (%d) -> %s\n",
11649                 SvPV_nolen_const(mysv),
11650                 REG_NODE_NUM(scan),
11651                 PL_reg_name[exact]);
11652         });
11653         if (temp == NULL)
11654             break;
11655         scan = temp;
11656     }
11657     DEBUG_PARSE_r({
11658         SV * const mysv_val=sv_newmortal();
11659         DEBUG_PARSE_MSG("");
11660         regprop(RExC_rx, mysv_val, val);
11661         PerlIO_printf(Perl_debug_log, "~ attach to %s (%"IVdf") offset to %"IVdf"\n",
11662                       SvPV_nolen_const(mysv_val),
11663                       (IV)REG_NODE_NUM(val),
11664                       (IV)(val - scan)
11665         );
11666     });
11667     if (reg_off_by_arg[OP(scan)]) {
11668         ARG_SET(scan, val - scan);
11669     }
11670     else {
11671         NEXT_OFF(scan) = val - scan;
11672     }
11673
11674     return exact;
11675 }
11676 #endif
11677
11678 /*
11679  - regdump - dump a regexp onto Perl_debug_log in vaguely comprehensible form
11680  */
11681 #ifdef DEBUGGING
11682 static void 
11683 S_regdump_extflags(pTHX_ const char *lead, const U32 flags)
11684 {
11685     int bit;
11686     int set=0;
11687     regex_charset cs;
11688
11689     for (bit=0; bit<32; bit++) {
11690         if (flags & (1<<bit)) {
11691             if ((1<<bit) & RXf_PMf_CHARSET) {   /* Output separately, below */
11692                 continue;
11693             }
11694             if (!set++ && lead) 
11695                 PerlIO_printf(Perl_debug_log, "%s",lead);
11696             PerlIO_printf(Perl_debug_log, "%s ",PL_reg_extflags_name[bit]);
11697         }               
11698     }      
11699     if ((cs = get_regex_charset(flags)) != REGEX_DEPENDS_CHARSET) {
11700             if (!set++ && lead) {
11701                 PerlIO_printf(Perl_debug_log, "%s",lead);
11702             }
11703             switch (cs) {
11704                 case REGEX_UNICODE_CHARSET:
11705                     PerlIO_printf(Perl_debug_log, "UNICODE");
11706                     break;
11707                 case REGEX_LOCALE_CHARSET:
11708                     PerlIO_printf(Perl_debug_log, "LOCALE");
11709                     break;
11710                 case REGEX_ASCII_RESTRICTED_CHARSET:
11711                     PerlIO_printf(Perl_debug_log, "ASCII-RESTRICTED");
11712                     break;
11713                 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
11714                     PerlIO_printf(Perl_debug_log, "ASCII-MORE_RESTRICTED");
11715                     break;
11716                 default:
11717                     PerlIO_printf(Perl_debug_log, "UNKNOWN CHARACTER SET");
11718                     break;
11719             }
11720     }
11721     if (lead)  {
11722         if (set) 
11723             PerlIO_printf(Perl_debug_log, "\n");
11724         else 
11725             PerlIO_printf(Perl_debug_log, "%s[none-set]\n",lead);
11726     }            
11727 }   
11728 #endif
11729
11730 void
11731 Perl_regdump(pTHX_ const regexp *r)
11732 {
11733 #ifdef DEBUGGING
11734     dVAR;
11735     SV * const sv = sv_newmortal();
11736     SV *dsv= sv_newmortal();
11737     RXi_GET_DECL(r,ri);
11738     GET_RE_DEBUG_FLAGS_DECL;
11739
11740     PERL_ARGS_ASSERT_REGDUMP;
11741
11742     (void)dumpuntil(r, ri->program, ri->program + 1, NULL, NULL, sv, 0, 0);
11743
11744     /* Header fields of interest. */
11745     if (r->anchored_substr) {
11746         RE_PV_QUOTED_DECL(s, 0, dsv, SvPVX_const(r->anchored_substr), 
11747             RE_SV_DUMPLEN(r->anchored_substr), 30);
11748         PerlIO_printf(Perl_debug_log,
11749                       "anchored %s%s at %"IVdf" ",
11750                       s, RE_SV_TAIL(r->anchored_substr),
11751                       (IV)r->anchored_offset);
11752     } else if (r->anchored_utf8) {
11753         RE_PV_QUOTED_DECL(s, 1, dsv, SvPVX_const(r->anchored_utf8), 
11754             RE_SV_DUMPLEN(r->anchored_utf8), 30);
11755         PerlIO_printf(Perl_debug_log,
11756                       "anchored utf8 %s%s at %"IVdf" ",
11757                       s, RE_SV_TAIL(r->anchored_utf8),
11758                       (IV)r->anchored_offset);
11759     }                 
11760     if (r->float_substr) {
11761         RE_PV_QUOTED_DECL(s, 0, dsv, SvPVX_const(r->float_substr), 
11762             RE_SV_DUMPLEN(r->float_substr), 30);
11763         PerlIO_printf(Perl_debug_log,
11764                       "floating %s%s at %"IVdf"..%"UVuf" ",
11765                       s, RE_SV_TAIL(r->float_substr),
11766                       (IV)r->float_min_offset, (UV)r->float_max_offset);
11767     } else if (r->float_utf8) {
11768         RE_PV_QUOTED_DECL(s, 1, dsv, SvPVX_const(r->float_utf8), 
11769             RE_SV_DUMPLEN(r->float_utf8), 30);
11770         PerlIO_printf(Perl_debug_log,
11771                       "floating utf8 %s%s at %"IVdf"..%"UVuf" ",
11772                       s, RE_SV_TAIL(r->float_utf8),
11773                       (IV)r->float_min_offset, (UV)r->float_max_offset);
11774     }
11775     if (r->check_substr || r->check_utf8)
11776         PerlIO_printf(Perl_debug_log,
11777                       (const char *)
11778                       (r->check_substr == r->float_substr
11779                        && r->check_utf8 == r->float_utf8
11780                        ? "(checking floating" : "(checking anchored"));
11781     if (r->extflags & RXf_NOSCAN)
11782         PerlIO_printf(Perl_debug_log, " noscan");
11783     if (r->extflags & RXf_CHECK_ALL)
11784         PerlIO_printf(Perl_debug_log, " isall");
11785     if (r->check_substr || r->check_utf8)
11786         PerlIO_printf(Perl_debug_log, ") ");
11787
11788     if (ri->regstclass) {
11789         regprop(r, sv, ri->regstclass);
11790         PerlIO_printf(Perl_debug_log, "stclass %s ", SvPVX_const(sv));
11791     }
11792     if (r->extflags & RXf_ANCH) {
11793         PerlIO_printf(Perl_debug_log, "anchored");
11794         if (r->extflags & RXf_ANCH_BOL)
11795             PerlIO_printf(Perl_debug_log, "(BOL)");
11796         if (r->extflags & RXf_ANCH_MBOL)
11797             PerlIO_printf(Perl_debug_log, "(MBOL)");
11798         if (r->extflags & RXf_ANCH_SBOL)
11799             PerlIO_printf(Perl_debug_log, "(SBOL)");
11800         if (r->extflags & RXf_ANCH_GPOS)
11801             PerlIO_printf(Perl_debug_log, "(GPOS)");
11802         PerlIO_putc(Perl_debug_log, ' ');
11803     }
11804     if (r->extflags & RXf_GPOS_SEEN)
11805         PerlIO_printf(Perl_debug_log, "GPOS:%"UVuf" ", (UV)r->gofs);
11806     if (r->intflags & PREGf_SKIP)
11807         PerlIO_printf(Perl_debug_log, "plus ");
11808     if (r->intflags & PREGf_IMPLICIT)
11809         PerlIO_printf(Perl_debug_log, "implicit ");
11810     PerlIO_printf(Perl_debug_log, "minlen %"IVdf" ", (IV)r->minlen);
11811     if (r->extflags & RXf_EVAL_SEEN)
11812         PerlIO_printf(Perl_debug_log, "with eval ");
11813     PerlIO_printf(Perl_debug_log, "\n");
11814     DEBUG_FLAGS_r(regdump_extflags("r->extflags: ",r->extflags));            
11815 #else
11816     PERL_ARGS_ASSERT_REGDUMP;
11817     PERL_UNUSED_CONTEXT;
11818     PERL_UNUSED_ARG(r);
11819 #endif  /* DEBUGGING */
11820 }
11821
11822 /*
11823 - regprop - printable representation of opcode
11824 */
11825 #define EMIT_ANYOF_TEST_SEPARATOR(do_sep,sv,flags) \
11826 STMT_START { \
11827         if (do_sep) {                           \
11828             Perl_sv_catpvf(aTHX_ sv,"%s][%s",PL_colors[1],PL_colors[0]); \
11829             if (flags & ANYOF_INVERT)           \
11830                 /*make sure the invert info is in each */ \
11831                 sv_catpvs(sv, "^");             \
11832             do_sep = 0;                         \
11833         }                                       \
11834 } STMT_END
11835
11836 void
11837 Perl_regprop(pTHX_ const regexp *prog, SV *sv, const regnode *o)
11838 {
11839 #ifdef DEBUGGING
11840     dVAR;
11841     register int k;
11842     RXi_GET_DECL(prog,progi);
11843     GET_RE_DEBUG_FLAGS_DECL;
11844     
11845     PERL_ARGS_ASSERT_REGPROP;
11846
11847     sv_setpvs(sv, "");
11848
11849     if (OP(o) > REGNODE_MAX)            /* regnode.type is unsigned */
11850         /* It would be nice to FAIL() here, but this may be called from
11851            regexec.c, and it would be hard to supply pRExC_state. */
11852         Perl_croak(aTHX_ "Corrupted regexp opcode %d > %d", (int)OP(o), (int)REGNODE_MAX);
11853     sv_catpv(sv, PL_reg_name[OP(o)]); /* Take off const! */
11854
11855     k = PL_regkind[OP(o)];
11856
11857     if (k == EXACT) {
11858         sv_catpvs(sv, " ");
11859         /* Using is_utf8_string() (via PERL_PV_UNI_DETECT) 
11860          * is a crude hack but it may be the best for now since 
11861          * we have no flag "this EXACTish node was UTF-8" 
11862          * --jhi */
11863         pv_pretty(sv, STRING(o), STR_LEN(o), 60, PL_colors[0], PL_colors[1],
11864                   PERL_PV_ESCAPE_UNI_DETECT |
11865                   PERL_PV_ESCAPE_NONASCII   |
11866                   PERL_PV_PRETTY_ELLIPSES   |
11867                   PERL_PV_PRETTY_LTGT       |
11868                   PERL_PV_PRETTY_NOCLEAR
11869                   );
11870     } else if (k == TRIE) {
11871         /* print the details of the trie in dumpuntil instead, as
11872          * progi->data isn't available here */
11873         const char op = OP(o);
11874         const U32 n = ARG(o);
11875         const reg_ac_data * const ac = IS_TRIE_AC(op) ?
11876                (reg_ac_data *)progi->data->data[n] :
11877                NULL;
11878         const reg_trie_data * const trie
11879             = (reg_trie_data*)progi->data->data[!IS_TRIE_AC(op) ? n : ac->trie];
11880         
11881         Perl_sv_catpvf(aTHX_ sv, "-%s",PL_reg_name[o->flags]);
11882         DEBUG_TRIE_COMPILE_r(
11883             Perl_sv_catpvf(aTHX_ sv,
11884                 "<S:%"UVuf"/%"IVdf" W:%"UVuf" L:%"UVuf"/%"UVuf" C:%"UVuf"/%"UVuf">",
11885                 (UV)trie->startstate,
11886                 (IV)trie->statecount-1, /* -1 because of the unused 0 element */
11887                 (UV)trie->wordcount,
11888                 (UV)trie->minlen,
11889                 (UV)trie->maxlen,
11890                 (UV)TRIE_CHARCOUNT(trie),
11891                 (UV)trie->uniquecharcount
11892             )
11893         );
11894         if ( IS_ANYOF_TRIE(op) || trie->bitmap ) {
11895             int i;
11896             int rangestart = -1;
11897             U8* bitmap = IS_ANYOF_TRIE(op) ? (U8*)ANYOF_BITMAP(o) : (U8*)TRIE_BITMAP(trie);
11898             sv_catpvs(sv, "[");
11899             for (i = 0; i <= 256; i++) {
11900                 if (i < 256 && BITMAP_TEST(bitmap,i)) {
11901                     if (rangestart == -1)
11902                         rangestart = i;
11903                 } else if (rangestart != -1) {
11904                     if (i <= rangestart + 3)
11905                         for (; rangestart < i; rangestart++)
11906                             put_byte(sv, rangestart);
11907                     else {
11908                         put_byte(sv, rangestart);
11909                         sv_catpvs(sv, "-");
11910                         put_byte(sv, i - 1);
11911                     }
11912                     rangestart = -1;
11913                 }
11914             }
11915             sv_catpvs(sv, "]");
11916         } 
11917          
11918     } else if (k == CURLY) {
11919         if (OP(o) == CURLYM || OP(o) == CURLYN || OP(o) == CURLYX)
11920             Perl_sv_catpvf(aTHX_ sv, "[%d]", o->flags); /* Parenth number */
11921         Perl_sv_catpvf(aTHX_ sv, " {%d,%d}", ARG1(o), ARG2(o));
11922     }
11923     else if (k == WHILEM && o->flags)                   /* Ordinal/of */
11924         Perl_sv_catpvf(aTHX_ sv, "[%d/%d]", o->flags & 0xf, o->flags>>4);
11925     else if (k == REF || k == OPEN || k == CLOSE || k == GROUPP || OP(o)==ACCEPT) {
11926         Perl_sv_catpvf(aTHX_ sv, "%d", (int)ARG(o));    /* Parenth number */
11927         if ( RXp_PAREN_NAMES(prog) ) {
11928             if ( k != REF || (OP(o) < NREF)) {
11929                 AV *list= MUTABLE_AV(progi->data->data[progi->name_list_idx]);
11930                 SV **name= av_fetch(list, ARG(o), 0 );
11931                 if (name)
11932                     Perl_sv_catpvf(aTHX_ sv, " '%"SVf"'", SVfARG(*name));
11933             }       
11934             else {
11935                 AV *list= MUTABLE_AV(progi->data->data[ progi->name_list_idx ]);
11936                 SV *sv_dat= MUTABLE_SV(progi->data->data[ ARG( o ) ]);
11937                 I32 *nums=(I32*)SvPVX(sv_dat);
11938                 SV **name= av_fetch(list, nums[0], 0 );
11939                 I32 n;
11940                 if (name) {
11941                     for ( n=0; n<SvIVX(sv_dat); n++ ) {
11942                         Perl_sv_catpvf(aTHX_ sv, "%s%"IVdf,
11943                                     (n ? "," : ""), (IV)nums[n]);
11944                     }
11945                     Perl_sv_catpvf(aTHX_ sv, " '%"SVf"'", SVfARG(*name));
11946                 }
11947             }
11948         }            
11949     } else if (k == GOSUB) 
11950         Perl_sv_catpvf(aTHX_ sv, "%d[%+d]", (int)ARG(o),(int)ARG2L(o)); /* Paren and offset */
11951     else if (k == VERB) {
11952         if (!o->flags) 
11953             Perl_sv_catpvf(aTHX_ sv, ":%"SVf, 
11954                            SVfARG((MUTABLE_SV(progi->data->data[ ARG( o ) ]))));
11955     } else if (k == LOGICAL)
11956         Perl_sv_catpvf(aTHX_ sv, "[%d]", o->flags);     /* 2: embedded, otherwise 1 */
11957     else if (k == FOLDCHAR)
11958         Perl_sv_catpvf(aTHX_ sv, "[0x%"UVXf"]", PTR2UV(ARG(o)) );
11959     else if (k == ANYOF) {
11960         int i, rangestart = -1;
11961         const U8 flags = ANYOF_FLAGS(o);
11962         int do_sep = 0;
11963
11964         /* Should be synchronized with * ANYOF_ #xdefines in regcomp.h */
11965         static const char * const anyofs[] = {
11966             "\\w",
11967             "\\W",
11968             "\\s",
11969             "\\S",
11970             "\\d",
11971             "\\D",
11972             "[:alnum:]",
11973             "[:^alnum:]",
11974             "[:alpha:]",
11975             "[:^alpha:]",
11976             "[:ascii:]",
11977             "[:^ascii:]",
11978             "[:cntrl:]",
11979             "[:^cntrl:]",
11980             "[:graph:]",
11981             "[:^graph:]",
11982             "[:lower:]",
11983             "[:^lower:]",
11984             "[:print:]",
11985             "[:^print:]",
11986             "[:punct:]",
11987             "[:^punct:]",
11988             "[:upper:]",
11989             "[:^upper:]",
11990             "[:xdigit:]",
11991             "[:^xdigit:]",
11992             "[:space:]",
11993             "[:^space:]",
11994             "[:blank:]",
11995             "[:^blank:]"
11996         };
11997
11998         if (flags & ANYOF_LOCALE)
11999             sv_catpvs(sv, "{loc}");
12000         if (flags & ANYOF_LOC_NONBITMAP_FOLD)
12001             sv_catpvs(sv, "{i}");
12002         Perl_sv_catpvf(aTHX_ sv, "[%s", PL_colors[0]);
12003         if (flags & ANYOF_INVERT)
12004             sv_catpvs(sv, "^");
12005
12006         /* output what the standard cp 0-255 bitmap matches */
12007         for (i = 0; i <= 256; i++) {
12008             if (i < 256 && ANYOF_BITMAP_TEST(o,i)) {
12009                 if (rangestart == -1)
12010                     rangestart = i;
12011             } else if (rangestart != -1) {
12012                 if (i <= rangestart + 3)
12013                     for (; rangestart < i; rangestart++)
12014                         put_byte(sv, rangestart);
12015                 else {
12016                     put_byte(sv, rangestart);
12017                     sv_catpvs(sv, "-");
12018                     put_byte(sv, i - 1);
12019                 }
12020                 do_sep = 1;
12021                 rangestart = -1;
12022             }
12023         }
12024         
12025         EMIT_ANYOF_TEST_SEPARATOR(do_sep,sv,flags);
12026         /* output any special charclass tests (used entirely under use locale) */
12027         if (ANYOF_CLASS_TEST_ANY_SET(o))
12028             for (i = 0; i < (int)(sizeof(anyofs)/sizeof(char*)); i++)
12029                 if (ANYOF_CLASS_TEST(o,i)) {
12030                     sv_catpv(sv, anyofs[i]);
12031                     do_sep = 1;
12032                 }
12033         
12034         EMIT_ANYOF_TEST_SEPARATOR(do_sep,sv,flags);
12035         
12036         if (flags & ANYOF_NON_UTF8_LATIN1_ALL) {
12037             sv_catpvs(sv, "{non-utf8-latin1-all}");
12038         }
12039
12040         /* output information about the unicode matching */
12041         if (flags & ANYOF_UNICODE_ALL)
12042             sv_catpvs(sv, "{unicode_all}");
12043         else if (ANYOF_NONBITMAP(o))
12044             sv_catpvs(sv, "{unicode}");
12045         if (flags & ANYOF_NONBITMAP_NON_UTF8)
12046             sv_catpvs(sv, "{outside bitmap}");
12047
12048         if (ANYOF_NONBITMAP(o)) {
12049             SV *lv; /* Set if there is something outside the bit map */
12050             SV * const sw = regclass_swash(prog, o, FALSE, &lv, 0);
12051             bool byte_output = FALSE;   /* If something in the bitmap has been
12052                                            output */
12053
12054             if (lv && lv != &PL_sv_undef) {
12055                 if (sw) {
12056                     U8 s[UTF8_MAXBYTES_CASE+1];
12057
12058                     for (i = 0; i <= 256; i++) { /* Look at chars in bitmap */
12059                         uvchr_to_utf8(s, i);
12060
12061                         if (i < 256
12062                             && ! ANYOF_BITMAP_TEST(o, i)    /* Don't duplicate
12063                                                                things already
12064                                                                output as part
12065                                                                of the bitmap */
12066                             && swash_fetch(sw, s, TRUE))
12067                         {
12068                             if (rangestart == -1)
12069                                 rangestart = i;
12070                         } else if (rangestart != -1) {
12071                             byte_output = TRUE;
12072                             if (i <= rangestart + 3)
12073                                 for (; rangestart < i; rangestart++) {
12074                                     put_byte(sv, rangestart);
12075                                 }
12076                             else {
12077                                 put_byte(sv, rangestart);
12078                                 sv_catpvs(sv, "-");
12079                                 put_byte(sv, i-1);
12080                             }
12081                             rangestart = -1;
12082                         }
12083                     }
12084                 }
12085
12086                 {
12087                     char *s = savesvpv(lv);
12088                     char * const origs = s;
12089
12090                     while (*s && *s != '\n')
12091                         s++;
12092
12093                     if (*s == '\n') {
12094                         const char * const t = ++s;
12095
12096                         if (byte_output) {
12097                             sv_catpvs(sv, " ");
12098                         }
12099
12100                         while (*s) {
12101                             if (*s == '\n') {
12102
12103                                 /* Truncate very long output */
12104                                 if (s - origs > 256) {
12105                                     Perl_sv_catpvf(aTHX_ sv,
12106                                                    "%.*s...",
12107                                                    (int) (s - origs - 1),
12108                                                    t);
12109                                     goto out_dump;
12110                                 }
12111                                 *s = ' ';
12112                             }
12113                             else if (*s == '\t') {
12114                                 *s = '-';
12115                             }
12116                             s++;
12117                         }
12118                         if (s[-1] == ' ')
12119                             s[-1] = 0;
12120
12121                         sv_catpv(sv, t);
12122                     }
12123
12124                 out_dump:
12125
12126                     Safefree(origs);
12127                 }
12128                 SvREFCNT_dec(lv);
12129             }
12130         }
12131
12132         Perl_sv_catpvf(aTHX_ sv, "%s]", PL_colors[1]);
12133     }
12134     else if (k == BRANCHJ && (OP(o) == UNLESSM || OP(o) == IFMATCH))
12135         Perl_sv_catpvf(aTHX_ sv, "[%d]", -(o->flags));
12136 #else
12137     PERL_UNUSED_CONTEXT;
12138     PERL_UNUSED_ARG(sv);
12139     PERL_UNUSED_ARG(o);
12140     PERL_UNUSED_ARG(prog);
12141 #endif  /* DEBUGGING */
12142 }
12143
12144 SV *
12145 Perl_re_intuit_string(pTHX_ REGEXP * const r)
12146 {                               /* Assume that RE_INTUIT is set */
12147     dVAR;
12148     struct regexp *const prog = (struct regexp *)SvANY(r);
12149     GET_RE_DEBUG_FLAGS_DECL;
12150
12151     PERL_ARGS_ASSERT_RE_INTUIT_STRING;
12152     PERL_UNUSED_CONTEXT;
12153
12154     DEBUG_COMPILE_r(
12155         {
12156             const char * const s = SvPV_nolen_const(prog->check_substr
12157                       ? prog->check_substr : prog->check_utf8);
12158
12159             if (!PL_colorset) reginitcolors();
12160             PerlIO_printf(Perl_debug_log,
12161                       "%sUsing REx %ssubstr:%s \"%s%.60s%s%s\"\n",
12162                       PL_colors[4],
12163                       prog->check_substr ? "" : "utf8 ",
12164                       PL_colors[5],PL_colors[0],
12165                       s,
12166                       PL_colors[1],
12167                       (strlen(s) > 60 ? "..." : ""));
12168         } );
12169
12170     return prog->check_substr ? prog->check_substr : prog->check_utf8;
12171 }
12172
12173 /* 
12174    pregfree() 
12175    
12176    handles refcounting and freeing the perl core regexp structure. When 
12177    it is necessary to actually free the structure the first thing it 
12178    does is call the 'free' method of the regexp_engine associated to
12179    the regexp, allowing the handling of the void *pprivate; member 
12180    first. (This routine is not overridable by extensions, which is why 
12181    the extensions free is called first.)
12182    
12183    See regdupe and regdupe_internal if you change anything here. 
12184 */
12185 #ifndef PERL_IN_XSUB_RE
12186 void
12187 Perl_pregfree(pTHX_ REGEXP *r)
12188 {
12189     SvREFCNT_dec(r);
12190 }
12191
12192 void
12193 Perl_pregfree2(pTHX_ REGEXP *rx)
12194 {
12195     dVAR;
12196     struct regexp *const r = (struct regexp *)SvANY(rx);
12197     GET_RE_DEBUG_FLAGS_DECL;
12198
12199     PERL_ARGS_ASSERT_PREGFREE2;
12200
12201     if (r->mother_re) {
12202         ReREFCNT_dec(r->mother_re);
12203     } else {
12204         CALLREGFREE_PVT(rx); /* free the private data */
12205         SvREFCNT_dec(RXp_PAREN_NAMES(r));
12206     }        
12207     if (r->substrs) {
12208         SvREFCNT_dec(r->anchored_substr);
12209         SvREFCNT_dec(r->anchored_utf8);
12210         SvREFCNT_dec(r->float_substr);
12211         SvREFCNT_dec(r->float_utf8);
12212         Safefree(r->substrs);
12213     }
12214     RX_MATCH_COPY_FREE(rx);
12215 #ifdef PERL_OLD_COPY_ON_WRITE
12216     SvREFCNT_dec(r->saved_copy);
12217 #endif
12218     Safefree(r->offs);
12219 }
12220
12221 /*  reg_temp_copy()
12222     
12223     This is a hacky workaround to the structural issue of match results
12224     being stored in the regexp structure which is in turn stored in
12225     PL_curpm/PL_reg_curpm. The problem is that due to qr// the pattern
12226     could be PL_curpm in multiple contexts, and could require multiple
12227     result sets being associated with the pattern simultaneously, such
12228     as when doing a recursive match with (??{$qr})
12229     
12230     The solution is to make a lightweight copy of the regexp structure 
12231     when a qr// is returned from the code executed by (??{$qr}) this
12232     lightweight copy doesn't actually own any of its data except for
12233     the starp/end and the actual regexp structure itself. 
12234     
12235 */    
12236     
12237     
12238 REGEXP *
12239 Perl_reg_temp_copy (pTHX_ REGEXP *ret_x, REGEXP *rx)
12240 {
12241     struct regexp *ret;
12242     struct regexp *const r = (struct regexp *)SvANY(rx);
12243     register const I32 npar = r->nparens+1;
12244
12245     PERL_ARGS_ASSERT_REG_TEMP_COPY;
12246
12247     if (!ret_x)
12248         ret_x = (REGEXP*) newSV_type(SVt_REGEXP);
12249     ret = (struct regexp *)SvANY(ret_x);
12250     
12251     (void)ReREFCNT_inc(rx);
12252     /* We can take advantage of the existing "copied buffer" mechanism in SVs
12253        by pointing directly at the buffer, but flagging that the allocated
12254        space in the copy is zero. As we've just done a struct copy, it's now
12255        a case of zero-ing that, rather than copying the current length.  */
12256     SvPV_set(ret_x, RX_WRAPPED(rx));
12257     SvFLAGS(ret_x) |= SvFLAGS(rx) & (SVf_POK|SVp_POK|SVf_UTF8);
12258     memcpy(&(ret->xpv_cur), &(r->xpv_cur),
12259            sizeof(regexp) - STRUCT_OFFSET(regexp, xpv_cur));
12260     SvLEN_set(ret_x, 0);
12261     SvSTASH_set(ret_x, NULL);
12262     SvMAGIC_set(ret_x, NULL);
12263     Newx(ret->offs, npar, regexp_paren_pair);
12264     Copy(r->offs, ret->offs, npar, regexp_paren_pair);
12265     if (r->substrs) {
12266         Newx(ret->substrs, 1, struct reg_substr_data);
12267         StructCopy(r->substrs, ret->substrs, struct reg_substr_data);
12268
12269         SvREFCNT_inc_void(ret->anchored_substr);
12270         SvREFCNT_inc_void(ret->anchored_utf8);
12271         SvREFCNT_inc_void(ret->float_substr);
12272         SvREFCNT_inc_void(ret->float_utf8);
12273
12274         /* check_substr and check_utf8, if non-NULL, point to either their
12275            anchored or float namesakes, and don't hold a second reference.  */
12276     }
12277     RX_MATCH_COPIED_off(ret_x);
12278 #ifdef PERL_OLD_COPY_ON_WRITE
12279     ret->saved_copy = NULL;
12280 #endif
12281     ret->mother_re = rx;
12282     
12283     return ret_x;
12284 }
12285 #endif
12286
12287 /* regfree_internal() 
12288
12289    Free the private data in a regexp. This is overloadable by 
12290    extensions. Perl takes care of the regexp structure in pregfree(), 
12291    this covers the *pprivate pointer which technically perl doesn't 
12292    know about, however of course we have to handle the 
12293    regexp_internal structure when no extension is in use. 
12294    
12295    Note this is called before freeing anything in the regexp 
12296    structure. 
12297  */
12298  
12299 void
12300 Perl_regfree_internal(pTHX_ REGEXP * const rx)
12301 {
12302     dVAR;
12303     struct regexp *const r = (struct regexp *)SvANY(rx);
12304     RXi_GET_DECL(r,ri);
12305     GET_RE_DEBUG_FLAGS_DECL;
12306
12307     PERL_ARGS_ASSERT_REGFREE_INTERNAL;
12308
12309     DEBUG_COMPILE_r({
12310         if (!PL_colorset)
12311             reginitcolors();
12312         {
12313             SV *dsv= sv_newmortal();
12314             RE_PV_QUOTED_DECL(s, RX_UTF8(rx),
12315                 dsv, RX_PRECOMP(rx), RX_PRELEN(rx), 60);
12316             PerlIO_printf(Perl_debug_log,"%sFreeing REx:%s %s\n", 
12317                 PL_colors[4],PL_colors[5],s);
12318         }
12319     });
12320 #ifdef RE_TRACK_PATTERN_OFFSETS
12321     if (ri->u.offsets)
12322         Safefree(ri->u.offsets);             /* 20010421 MJD */
12323 #endif
12324     if (ri->data) {
12325         int n = ri->data->count;
12326         PAD* new_comppad = NULL;
12327         PAD* old_comppad;
12328         PADOFFSET refcnt;
12329
12330         while (--n >= 0) {
12331           /* If you add a ->what type here, update the comment in regcomp.h */
12332             switch (ri->data->what[n]) {
12333             case 'a':
12334             case 's':
12335             case 'S':
12336             case 'u':
12337                 SvREFCNT_dec(MUTABLE_SV(ri->data->data[n]));
12338                 break;
12339             case 'f':
12340                 Safefree(ri->data->data[n]);
12341                 break;
12342             case 'p':
12343                 new_comppad = MUTABLE_AV(ri->data->data[n]);
12344                 break;
12345             case 'o':
12346                 if (new_comppad == NULL)
12347                     Perl_croak(aTHX_ "panic: pregfree comppad");
12348                 PAD_SAVE_LOCAL(old_comppad,
12349                     /* Watch out for global destruction's random ordering. */
12350                     (SvTYPE(new_comppad) == SVt_PVAV) ? new_comppad : NULL
12351                 );
12352                 OP_REFCNT_LOCK;
12353                 refcnt = OpREFCNT_dec((OP_4tree*)ri->data->data[n]);
12354                 OP_REFCNT_UNLOCK;
12355                 if (!refcnt)
12356                     op_free((OP_4tree*)ri->data->data[n]);
12357
12358                 PAD_RESTORE_LOCAL(old_comppad);
12359                 SvREFCNT_dec(MUTABLE_SV(new_comppad));
12360                 new_comppad = NULL;
12361                 break;
12362             case 'n':
12363                 break;
12364             case 'T':           
12365                 { /* Aho Corasick add-on structure for a trie node.
12366                      Used in stclass optimization only */
12367                     U32 refcount;
12368                     reg_ac_data *aho=(reg_ac_data*)ri->data->data[n];
12369                     OP_REFCNT_LOCK;
12370                     refcount = --aho->refcount;
12371                     OP_REFCNT_UNLOCK;
12372                     if ( !refcount ) {
12373                         PerlMemShared_free(aho->states);
12374                         PerlMemShared_free(aho->fail);
12375                          /* do this last!!!! */
12376                         PerlMemShared_free(ri->data->data[n]);
12377                         PerlMemShared_free(ri->regstclass);
12378                     }
12379                 }
12380                 break;
12381             case 't':
12382                 {
12383                     /* trie structure. */
12384                     U32 refcount;
12385                     reg_trie_data *trie=(reg_trie_data*)ri->data->data[n];
12386                     OP_REFCNT_LOCK;
12387                     refcount = --trie->refcount;
12388                     OP_REFCNT_UNLOCK;
12389                     if ( !refcount ) {
12390                         PerlMemShared_free(trie->charmap);
12391                         PerlMemShared_free(trie->states);
12392                         PerlMemShared_free(trie->trans);
12393                         if (trie->bitmap)
12394                             PerlMemShared_free(trie->bitmap);
12395                         if (trie->jump)
12396                             PerlMemShared_free(trie->jump);
12397                         PerlMemShared_free(trie->wordinfo);
12398                         /* do this last!!!! */
12399                         PerlMemShared_free(ri->data->data[n]);
12400                     }
12401                 }
12402                 break;
12403             default:
12404                 Perl_croak(aTHX_ "panic: regfree data code '%c'", ri->data->what[n]);
12405             }
12406         }
12407         Safefree(ri->data->what);
12408         Safefree(ri->data);
12409     }
12410
12411     Safefree(ri);
12412 }
12413
12414 #define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
12415 #define hv_dup_inc(s,t) MUTABLE_HV(sv_dup_inc((const SV *)s,t))
12416 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
12417
12418 /* 
12419    re_dup - duplicate a regexp. 
12420    
12421    This routine is expected to clone a given regexp structure. It is only
12422    compiled under USE_ITHREADS.
12423
12424    After all of the core data stored in struct regexp is duplicated
12425    the regexp_engine.dupe method is used to copy any private data
12426    stored in the *pprivate pointer. This allows extensions to handle
12427    any duplication it needs to do.
12428
12429    See pregfree() and regfree_internal() if you change anything here. 
12430 */
12431 #if defined(USE_ITHREADS)
12432 #ifndef PERL_IN_XSUB_RE
12433 void
12434 Perl_re_dup_guts(pTHX_ const REGEXP *sstr, REGEXP *dstr, CLONE_PARAMS *param)
12435 {
12436     dVAR;
12437     I32 npar;
12438     const struct regexp *r = (const struct regexp *)SvANY(sstr);
12439     struct regexp *ret = (struct regexp *)SvANY(dstr);
12440     
12441     PERL_ARGS_ASSERT_RE_DUP_GUTS;
12442
12443     npar = r->nparens+1;
12444     Newx(ret->offs, npar, regexp_paren_pair);
12445     Copy(r->offs, ret->offs, npar, regexp_paren_pair);
12446     if(ret->swap) {
12447         /* no need to copy these */
12448         Newx(ret->swap, npar, regexp_paren_pair);
12449     }
12450
12451     if (ret->substrs) {
12452         /* Do it this way to avoid reading from *r after the StructCopy().
12453            That way, if any of the sv_dup_inc()s dislodge *r from the L1
12454            cache, it doesn't matter.  */
12455         const bool anchored = r->check_substr
12456             ? r->check_substr == r->anchored_substr
12457             : r->check_utf8 == r->anchored_utf8;
12458         Newx(ret->substrs, 1, struct reg_substr_data);
12459         StructCopy(r->substrs, ret->substrs, struct reg_substr_data);
12460
12461         ret->anchored_substr = sv_dup_inc(ret->anchored_substr, param);
12462         ret->anchored_utf8 = sv_dup_inc(ret->anchored_utf8, param);
12463         ret->float_substr = sv_dup_inc(ret->float_substr, param);
12464         ret->float_utf8 = sv_dup_inc(ret->float_utf8, param);
12465
12466         /* check_substr and check_utf8, if non-NULL, point to either their
12467            anchored or float namesakes, and don't hold a second reference.  */
12468
12469         if (ret->check_substr) {
12470             if (anchored) {
12471                 assert(r->check_utf8 == r->anchored_utf8);
12472                 ret->check_substr = ret->anchored_substr;
12473                 ret->check_utf8 = ret->anchored_utf8;
12474             } else {
12475                 assert(r->check_substr == r->float_substr);
12476                 assert(r->check_utf8 == r->float_utf8);
12477                 ret->check_substr = ret->float_substr;
12478                 ret->check_utf8 = ret->float_utf8;
12479             }
12480         } else if (ret->check_utf8) {
12481             if (anchored) {
12482                 ret->check_utf8 = ret->anchored_utf8;
12483             } else {
12484                 ret->check_utf8 = ret->float_utf8;
12485             }
12486         }
12487     }
12488
12489     RXp_PAREN_NAMES(ret) = hv_dup_inc(RXp_PAREN_NAMES(ret), param);
12490
12491     if (ret->pprivate)
12492         RXi_SET(ret,CALLREGDUPE_PVT(dstr,param));
12493
12494     if (RX_MATCH_COPIED(dstr))
12495         ret->subbeg  = SAVEPVN(ret->subbeg, ret->sublen);
12496     else
12497         ret->subbeg = NULL;
12498 #ifdef PERL_OLD_COPY_ON_WRITE
12499     ret->saved_copy = NULL;
12500 #endif
12501
12502     if (ret->mother_re) {
12503         if (SvPVX_const(dstr) == SvPVX_const(ret->mother_re)) {
12504             /* Our storage points directly to our mother regexp, but that's
12505                1: a buffer in a different thread
12506                2: something we no longer hold a reference on
12507                so we need to copy it locally.  */
12508             /* Note we need to use SvCUR(), rather than
12509                SvLEN(), on our mother_re, because it, in
12510                turn, may well be pointing to its own mother_re.  */
12511             SvPV_set(dstr, SAVEPVN(SvPVX_const(ret->mother_re),
12512                                    SvCUR(ret->mother_re)+1));
12513             SvLEN_set(dstr, SvCUR(ret->mother_re)+1);
12514         }
12515         ret->mother_re      = NULL;
12516     }
12517     ret->gofs = 0;
12518 }
12519 #endif /* PERL_IN_XSUB_RE */
12520
12521 /*
12522    regdupe_internal()
12523    
12524    This is the internal complement to regdupe() which is used to copy
12525    the structure pointed to by the *pprivate pointer in the regexp.
12526    This is the core version of the extension overridable cloning hook.
12527    The regexp structure being duplicated will be copied by perl prior
12528    to this and will be provided as the regexp *r argument, however 
12529    with the /old/ structures pprivate pointer value. Thus this routine
12530    may override any copying normally done by perl.
12531    
12532    It returns a pointer to the new regexp_internal structure.
12533 */
12534
12535 void *
12536 Perl_regdupe_internal(pTHX_ REGEXP * const rx, CLONE_PARAMS *param)
12537 {
12538     dVAR;
12539     struct regexp *const r = (struct regexp *)SvANY(rx);
12540     regexp_internal *reti;
12541     int len;
12542     RXi_GET_DECL(r,ri);
12543
12544     PERL_ARGS_ASSERT_REGDUPE_INTERNAL;
12545     
12546     len = ProgLen(ri);
12547     
12548     Newxc(reti, sizeof(regexp_internal) + len*sizeof(regnode), char, regexp_internal);
12549     Copy(ri->program, reti->program, len+1, regnode);
12550     
12551
12552     reti->regstclass = NULL;
12553
12554     if (ri->data) {
12555         struct reg_data *d;
12556         const int count = ri->data->count;
12557         int i;
12558
12559         Newxc(d, sizeof(struct reg_data) + count*sizeof(void *),
12560                 char, struct reg_data);
12561         Newx(d->what, count, U8);
12562
12563         d->count = count;
12564         for (i = 0; i < count; i++) {
12565             d->what[i] = ri->data->what[i];
12566             switch (d->what[i]) {
12567                 /* legal options are one of: sSfpontTua
12568                    see also regcomp.h and pregfree() */
12569             case 'a': /* actually an AV, but the dup function is identical.  */
12570             case 's':
12571             case 'S':
12572             case 'p': /* actually an AV, but the dup function is identical.  */
12573             case 'u': /* actually an HV, but the dup function is identical.  */
12574                 d->data[i] = sv_dup_inc((const SV *)ri->data->data[i], param);
12575                 break;
12576             case 'f':
12577                 /* This is cheating. */
12578                 Newx(d->data[i], 1, struct regnode_charclass_class);
12579                 StructCopy(ri->data->data[i], d->data[i],
12580                             struct regnode_charclass_class);
12581                 reti->regstclass = (regnode*)d->data[i];
12582                 break;
12583             case 'o':
12584                 /* Compiled op trees are readonly and in shared memory,
12585                    and can thus be shared without duplication. */
12586                 OP_REFCNT_LOCK;
12587                 d->data[i] = (void*)OpREFCNT_inc((OP*)ri->data->data[i]);
12588                 OP_REFCNT_UNLOCK;
12589                 break;
12590             case 'T':
12591                 /* Trie stclasses are readonly and can thus be shared
12592                  * without duplication. We free the stclass in pregfree
12593                  * when the corresponding reg_ac_data struct is freed.
12594                  */
12595                 reti->regstclass= ri->regstclass;
12596                 /* Fall through */
12597             case 't':
12598                 OP_REFCNT_LOCK;
12599                 ((reg_trie_data*)ri->data->data[i])->refcount++;
12600                 OP_REFCNT_UNLOCK;
12601                 /* Fall through */
12602             case 'n':
12603                 d->data[i] = ri->data->data[i];
12604                 break;
12605             default:
12606                 Perl_croak(aTHX_ "panic: re_dup unknown data code '%c'", ri->data->what[i]);
12607             }
12608         }
12609
12610         reti->data = d;
12611     }
12612     else
12613         reti->data = NULL;
12614
12615     reti->name_list_idx = ri->name_list_idx;
12616
12617 #ifdef RE_TRACK_PATTERN_OFFSETS
12618     if (ri->u.offsets) {
12619         Newx(reti->u.offsets, 2*len+1, U32);
12620         Copy(ri->u.offsets, reti->u.offsets, 2*len+1, U32);
12621     }
12622 #else
12623     SetProgLen(reti,len);
12624 #endif
12625
12626     return (void*)reti;
12627 }
12628
12629 #endif    /* USE_ITHREADS */
12630
12631 #ifndef PERL_IN_XSUB_RE
12632
12633 /*
12634  - regnext - dig the "next" pointer out of a node
12635  */
12636 regnode *
12637 Perl_regnext(pTHX_ register regnode *p)
12638 {
12639     dVAR;
12640     register I32 offset;
12641
12642     if (!p)
12643         return(NULL);
12644
12645     if (OP(p) > REGNODE_MAX) {          /* regnode.type is unsigned */
12646         Perl_croak(aTHX_ "Corrupted regexp opcode %d > %d", (int)OP(p), (int)REGNODE_MAX);
12647     }
12648
12649     offset = (reg_off_by_arg[OP(p)] ? ARG(p) : NEXT_OFF(p));
12650     if (offset == 0)
12651         return(NULL);
12652
12653     return(p+offset);
12654 }
12655 #endif
12656
12657 STATIC void
12658 S_re_croak2(pTHX_ const char* pat1,const char* pat2,...)
12659 {
12660     va_list args;
12661     STRLEN l1 = strlen(pat1);
12662     STRLEN l2 = strlen(pat2);
12663     char buf[512];
12664     SV *msv;
12665     const char *message;
12666
12667     PERL_ARGS_ASSERT_RE_CROAK2;
12668
12669     if (l1 > 510)
12670         l1 = 510;
12671     if (l1 + l2 > 510)
12672         l2 = 510 - l1;
12673     Copy(pat1, buf, l1 , char);
12674     Copy(pat2, buf + l1, l2 , char);
12675     buf[l1 + l2] = '\n';
12676     buf[l1 + l2 + 1] = '\0';
12677 #ifdef I_STDARG
12678     /* ANSI variant takes additional second argument */
12679     va_start(args, pat2);
12680 #else
12681     va_start(args);
12682 #endif
12683     msv = vmess(buf, &args);
12684     va_end(args);
12685     message = SvPV_const(msv,l1);
12686     if (l1 > 512)
12687         l1 = 512;
12688     Copy(message, buf, l1 , char);
12689     buf[l1-1] = '\0';                   /* Overwrite \n */
12690     Perl_croak(aTHX_ "%s", buf);
12691 }
12692
12693 /* XXX Here's a total kludge.  But we need to re-enter for swash routines. */
12694
12695 #ifndef PERL_IN_XSUB_RE
12696 void
12697 Perl_save_re_context(pTHX)
12698 {
12699     dVAR;
12700
12701     struct re_save_state *state;
12702
12703     SAVEVPTR(PL_curcop);
12704     SSGROW(SAVESTACK_ALLOC_FOR_RE_SAVE_STATE + 1);
12705
12706     state = (struct re_save_state *)(PL_savestack + PL_savestack_ix);
12707     PL_savestack_ix += SAVESTACK_ALLOC_FOR_RE_SAVE_STATE;
12708     SSPUSHUV(SAVEt_RE_STATE);
12709
12710     Copy(&PL_reg_state, state, 1, struct re_save_state);
12711
12712     PL_reg_start_tmp = 0;
12713     PL_reg_start_tmpl = 0;
12714     PL_reg_oldsaved = NULL;
12715     PL_reg_oldsavedlen = 0;
12716     PL_reg_maxiter = 0;
12717     PL_reg_leftiter = 0;
12718     PL_reg_poscache = NULL;
12719     PL_reg_poscache_size = 0;
12720 #ifdef PERL_OLD_COPY_ON_WRITE
12721     PL_nrs = NULL;
12722 #endif
12723
12724     /* Save $1..$n (#18107: UTF-8 s/(\w+)/uc($1)/e); AMS 20021106. */
12725     if (PL_curpm) {
12726         const REGEXP * const rx = PM_GETRE(PL_curpm);
12727         if (rx) {
12728             U32 i;
12729             for (i = 1; i <= RX_NPARENS(rx); i++) {
12730                 char digits[TYPE_CHARS(long)];
12731                 const STRLEN len = my_snprintf(digits, sizeof(digits), "%lu", (long)i);
12732                 GV *const *const gvp
12733                     = (GV**)hv_fetch(PL_defstash, digits, len, 0);
12734
12735                 if (gvp) {
12736                     GV * const gv = *gvp;
12737                     if (SvTYPE(gv) == SVt_PVGV && GvSV(gv))
12738                         save_scalar(gv);
12739                 }
12740             }
12741         }
12742     }
12743 }
12744 #endif
12745
12746 static void
12747 clear_re(pTHX_ void *r)
12748 {
12749     dVAR;
12750     ReREFCNT_dec((REGEXP *)r);
12751 }
12752
12753 #ifdef DEBUGGING
12754
12755 STATIC void
12756 S_put_byte(pTHX_ SV *sv, int c)
12757 {
12758     PERL_ARGS_ASSERT_PUT_BYTE;
12759
12760     /* Our definition of isPRINT() ignores locales, so only bytes that are
12761        not part of UTF-8 are considered printable. I assume that the same
12762        holds for UTF-EBCDIC.
12763        Also, code point 255 is not printable in either (it's E0 in EBCDIC,
12764        which Wikipedia says:
12765
12766        EO, or Eight Ones, is an 8-bit EBCDIC character code represented as all
12767        ones (binary 1111 1111, hexadecimal FF). It is similar, but not
12768        identical, to the ASCII delete (DEL) or rubout control character.
12769        ) So the old condition can be simplified to !isPRINT(c)  */
12770     if (!isPRINT(c)) {
12771         if (c < 256) {
12772             Perl_sv_catpvf(aTHX_ sv, "\\x%02x", c);
12773         }
12774         else {
12775             Perl_sv_catpvf(aTHX_ sv, "\\x{%x}", c);
12776         }
12777     }
12778     else {
12779         const char string = c;
12780         if (c == '-' || c == ']' || c == '\\' || c == '^')
12781             sv_catpvs(sv, "\\");
12782         sv_catpvn(sv, &string, 1);
12783     }
12784 }
12785
12786
12787 #define CLEAR_OPTSTART \
12788     if (optstart) STMT_START { \
12789             DEBUG_OPTIMISE_r(PerlIO_printf(Perl_debug_log, " (%"IVdf" nodes)\n", (IV)(node - optstart))); \
12790             optstart=NULL; \
12791     } STMT_END
12792
12793 #define DUMPUNTIL(b,e) CLEAR_OPTSTART; node=dumpuntil(r,start,(b),(e),last,sv,indent+1,depth+1);
12794
12795 STATIC const regnode *
12796 S_dumpuntil(pTHX_ const regexp *r, const regnode *start, const regnode *node,
12797             const regnode *last, const regnode *plast, 
12798             SV* sv, I32 indent, U32 depth)
12799 {
12800     dVAR;
12801     register U8 op = PSEUDO;    /* Arbitrary non-END op. */
12802     register const regnode *next;
12803     const regnode *optstart= NULL;
12804     
12805     RXi_GET_DECL(r,ri);
12806     GET_RE_DEBUG_FLAGS_DECL;
12807
12808     PERL_ARGS_ASSERT_DUMPUNTIL;
12809
12810 #ifdef DEBUG_DUMPUNTIL
12811     PerlIO_printf(Perl_debug_log, "--- %d : %d - %d - %d\n",indent,node-start,
12812         last ? last-start : 0,plast ? plast-start : 0);
12813 #endif
12814             
12815     if (plast && plast < last) 
12816         last= plast;
12817
12818     while (PL_regkind[op] != END && (!last || node < last)) {
12819         /* While that wasn't END last time... */
12820         NODE_ALIGN(node);
12821         op = OP(node);
12822         if (op == CLOSE || op == WHILEM)
12823             indent--;
12824         next = regnext((regnode *)node);
12825
12826         /* Where, what. */
12827         if (OP(node) == OPTIMIZED) {
12828             if (!optstart && RE_DEBUG_FLAG(RE_DEBUG_COMPILE_OPTIMISE))
12829                 optstart = node;
12830             else
12831                 goto after_print;
12832         } else
12833             CLEAR_OPTSTART;
12834
12835         regprop(r, sv, node);
12836         PerlIO_printf(Perl_debug_log, "%4"IVdf":%*s%s", (IV)(node - start),
12837                       (int)(2*indent + 1), "", SvPVX_const(sv));
12838         
12839         if (OP(node) != OPTIMIZED) {                  
12840             if (next == NULL)           /* Next ptr. */
12841                 PerlIO_printf(Perl_debug_log, " (0)");
12842             else if (PL_regkind[(U8)op] == BRANCH && PL_regkind[OP(next)] != BRANCH )
12843                 PerlIO_printf(Perl_debug_log, " (FAIL)");
12844             else 
12845                 PerlIO_printf(Perl_debug_log, " (%"IVdf")", (IV)(next - start));
12846             (void)PerlIO_putc(Perl_debug_log, '\n'); 
12847         }
12848         
12849       after_print:
12850         if (PL_regkind[(U8)op] == BRANCHJ) {
12851             assert(next);
12852             {
12853                 register const regnode *nnode = (OP(next) == LONGJMP
12854                                              ? regnext((regnode *)next)
12855                                              : next);
12856                 if (last && nnode > last)
12857                     nnode = last;
12858                 DUMPUNTIL(NEXTOPER(NEXTOPER(node)), nnode);
12859             }
12860         }
12861         else if (PL_regkind[(U8)op] == BRANCH) {
12862             assert(next);
12863             DUMPUNTIL(NEXTOPER(node), next);
12864         }
12865         else if ( PL_regkind[(U8)op]  == TRIE ) {
12866             const regnode *this_trie = node;
12867             const char op = OP(node);
12868             const U32 n = ARG(node);
12869             const reg_ac_data * const ac = op>=AHOCORASICK ?
12870                (reg_ac_data *)ri->data->data[n] :
12871                NULL;
12872             const reg_trie_data * const trie =
12873                 (reg_trie_data*)ri->data->data[op<AHOCORASICK ? n : ac->trie];
12874 #ifdef DEBUGGING
12875             AV *const trie_words = MUTABLE_AV(ri->data->data[n + TRIE_WORDS_OFFSET]);
12876 #endif
12877             const regnode *nextbranch= NULL;
12878             I32 word_idx;
12879             sv_setpvs(sv, "");
12880             for (word_idx= 0; word_idx < (I32)trie->wordcount; word_idx++) {
12881                 SV ** const elem_ptr = av_fetch(trie_words,word_idx,0);
12882
12883                 PerlIO_printf(Perl_debug_log, "%*s%s ",
12884                    (int)(2*(indent+3)), "",
12885                     elem_ptr ? pv_pretty(sv, SvPV_nolen_const(*elem_ptr), SvCUR(*elem_ptr), 60,
12886                             PL_colors[0], PL_colors[1],
12887                             (SvUTF8(*elem_ptr) ? PERL_PV_ESCAPE_UNI : 0) |
12888                             PERL_PV_PRETTY_ELLIPSES    |
12889                             PERL_PV_PRETTY_LTGT
12890                             )
12891                             : "???"
12892                 );
12893                 if (trie->jump) {
12894                     U16 dist= trie->jump[word_idx+1];
12895                     PerlIO_printf(Perl_debug_log, "(%"UVuf")\n",
12896                                   (UV)((dist ? this_trie + dist : next) - start));
12897                     if (dist) {
12898                         if (!nextbranch)
12899                             nextbranch= this_trie + trie->jump[0];    
12900                         DUMPUNTIL(this_trie + dist, nextbranch);
12901                     }
12902                     if (nextbranch && PL_regkind[OP(nextbranch)]==BRANCH)
12903                         nextbranch= regnext((regnode *)nextbranch);
12904                 } else {
12905                     PerlIO_printf(Perl_debug_log, "\n");
12906                 }
12907             }
12908             if (last && next > last)
12909                 node= last;
12910             else
12911                 node= next;
12912         }
12913         else if ( op == CURLY ) {   /* "next" might be very big: optimizer */
12914             DUMPUNTIL(NEXTOPER(node) + EXTRA_STEP_2ARGS,
12915                     NEXTOPER(node) + EXTRA_STEP_2ARGS + 1);
12916         }
12917         else if (PL_regkind[(U8)op] == CURLY && op != CURLYX) {
12918             assert(next);
12919             DUMPUNTIL(NEXTOPER(node) + EXTRA_STEP_2ARGS, next);
12920         }
12921         else if ( op == PLUS || op == STAR) {
12922             DUMPUNTIL(NEXTOPER(node), NEXTOPER(node) + 1);
12923         }
12924         else if (PL_regkind[(U8)op] == ANYOF) {
12925             /* arglen 1 + class block */
12926             node += 1 + ((ANYOF_FLAGS(node) & ANYOF_CLASS)
12927                     ? ANYOF_CLASS_SKIP : ANYOF_SKIP);
12928             node = NEXTOPER(node);
12929         }
12930         else if (PL_regkind[(U8)op] == EXACT) {
12931             /* Literal string, where present. */
12932             node += NODE_SZ_STR(node) - 1;
12933             node = NEXTOPER(node);
12934         }
12935         else {
12936             node = NEXTOPER(node);
12937             node += regarglen[(U8)op];
12938         }
12939         if (op == CURLYX || op == OPEN)
12940             indent++;
12941     }
12942     CLEAR_OPTSTART;
12943 #ifdef DEBUG_DUMPUNTIL    
12944     PerlIO_printf(Perl_debug_log, "--- %d\n", (int)indent);
12945 #endif
12946     return node;
12947 }
12948
12949 #endif  /* DEBUGGING */
12950
12951 /*
12952  * Local variables:
12953  * c-indentation-style: bsd
12954  * c-basic-offset: 4
12955  * indent-tabs-mode: t
12956  * End:
12957  *
12958  * ex: set ts=8 sts=4 sw=4 noet:
12959  */