This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add \%in_out and \%argtype_seen to $self.
[perl5.git] / regcomp.c
CommitLineData
a0d0e21e
LW
1/* regcomp.c
2 */
3
4/*
4ac71550
TC
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"]
a0d0e21e
LW
8 */
9
61296642
DM
10/* This file contains functions for compiling a regular expression. See
11 * also regexec.c which funnily enough, contains functions for executing
166f8a29 12 * a regular expression.
e4a054ea
DM
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.
166f8a29
DM
18 */
19
a687059c
LW
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
e50aee73 29/* The names of the functions have been changed from regcomp and
3b753521 30 * regexec to pregcomp and pregexec in order to avoid conflicts
e50aee73
AD
31 * with the POSIX routines of the same names.
32*/
33
b9d5759e 34#ifdef PERL_EXT_RE_BUILD
54df2634 35#include "re_top.h"
b81d288d 36#endif
56953603 37
a687059c 38/*
e50aee73 39 * pregcomp and pregexec -- regsub and regerror are not used in perl
a687059c
LW
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 ****
4bb101f2 61 **** Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
1129b882
NC
62 **** 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
63 **** by Larry Wall and others
a687059c 64 ****
9ef589d8
LW
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
a687059c
LW
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"
864dbfa3 74#define PERL_IN_REGCOMP_C
a687059c 75#include "perl.h"
d06ea78c 76
acfe0abc 77#ifndef PERL_IN_XSUB_RE
d06ea78c
GS
78# include "INTERN.h"
79#endif
c277df42
IZ
80
81#define REG_COMP_C
54df2634
NC
82#ifdef PERL_IN_XSUB_RE
83# include "re_comp.h"
84#else
85# include "regcomp.h"
86#endif
a687059c 87
04e98a4d
AD
88#include "dquote_static.c"
89
d4cce5f1 90#ifdef op
11343788 91#undef op
d4cce5f1 92#endif /* op */
11343788 93
fe14fcc3 94#ifdef MSDOS
7e4e8c89 95# if defined(BUGGY_MSC6)
fe14fcc3 96 /* MSC 6.00A breaks on op/regexp.t test 85 unless we turn this off */
7e4e8c89 97# pragma optimize("a",off)
fe14fcc3 98 /* But MSC 6.00A is happy with 'w', for aliases only across function calls*/
7e4e8c89
NC
99# pragma optimize("w",on )
100# endif /* BUGGY_MSC6 */
fe14fcc3
LW
101#endif /* MSDOS */
102
a687059c
LW
103#ifndef STATIC
104#define STATIC static
105#endif
106
830247a4 107typedef struct RExC_state_t {
e2509266 108 U32 flags; /* are we folding, multilining? */
830247a4 109 char *precomp; /* uncompiled string. */
288b8c02 110 REGEXP *rx_sv; /* The SV that is the regexp. */
f8fc2ecf
YO
111 regexp *rx; /* perl core regexp structure */
112 regexp_internal *rxi; /* internal data for regexp object pprivate field */
fac92740 113 char *start; /* Start of input for compile */
830247a4
IZ
114 char *end; /* End of input for compile */
115 char *parse; /* Input-scan pointer. */
116 I32 whilem_seen; /* number of WHILEM in this expr */
fac92740 117 regnode *emit_start; /* Start of emitted-code area */
3b57cd43 118 regnode *emit_bound; /* First regnode outside of the allocated space */
ffc61ed2 119 regnode *emit; /* Code-emit pointer; &regdummy = don't = compiling */
830247a4
IZ
120 I32 naughty; /* How bad is this pattern? */
121 I32 sawback; /* Did we see \1, ...? */
122 U32 seen;
123 I32 size; /* Code size. */
c74340f9
YO
124 I32 npar; /* Capture buffer count, (OPEN). */
125 I32 cpar; /* Capture buffer count, (CLOSE). */
e2e6a0f1 126 I32 nestroot; /* root parens we are in - used by accept */
830247a4
IZ
127 I32 extralen;
128 I32 seen_zerolen;
129 I32 seen_evals;
40d049e4
YO
130 regnode **open_parens; /* pointers to open parens */
131 regnode **close_parens; /* pointers to close parens */
132 regnode *opend; /* END node in program */
02daf0ab
YO
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. */
e40e74fe
KW
137 I32 uni_semantics; /* If a d charset modifier should use unicode
138 rules, even if the pattern is not in
139 utf8 */
81714fb9 140 HV *paren_names; /* Paren names */
1f1031fe 141
40d049e4
YO
142 regnode **recurse; /* Recurse regops */
143 I32 recurse_count; /* Number of recurse regops */
b57e4118 144 I32 in_lookbehind;
4624b182 145 I32 contains_locale;
bb3f3ed2 146 I32 override_recoding;
830247a4
IZ
147#if ADD_TO_REGEXEC
148 char *starttry; /* -Dr: where regtry was called. */
149#define RExC_starttry (pRExC_state->starttry)
150#endif
3dab1dad 151#ifdef DEBUGGING
be8e71aa 152 const char *lastparse;
3dab1dad 153 I32 lastnum;
1f1031fe 154 AV *paren_name_list; /* idx -> name */
3dab1dad
YO
155#define RExC_lastparse (pRExC_state->lastparse)
156#define RExC_lastnum (pRExC_state->lastnum)
1f1031fe 157#define RExC_paren_name_list (pRExC_state->paren_name_list)
3dab1dad 158#endif
830247a4
IZ
159} RExC_state_t;
160
e2509266 161#define RExC_flags (pRExC_state->flags)
830247a4 162#define RExC_precomp (pRExC_state->precomp)
288b8c02 163#define RExC_rx_sv (pRExC_state->rx_sv)
830247a4 164#define RExC_rx (pRExC_state->rx)
f8fc2ecf 165#define RExC_rxi (pRExC_state->rxi)
fac92740 166#define RExC_start (pRExC_state->start)
830247a4
IZ
167#define RExC_end (pRExC_state->end)
168#define RExC_parse (pRExC_state->parse)
169#define RExC_whilem_seen (pRExC_state->whilem_seen)
7122b237
YO
170#ifdef RE_TRACK_PATTERN_OFFSETS
171#define RExC_offsets (pRExC_state->rxi->u.offsets) /* I am not like the others */
172#endif
830247a4 173#define RExC_emit (pRExC_state->emit)
fac92740 174#define RExC_emit_start (pRExC_state->emit_start)
3b57cd43 175#define RExC_emit_bound (pRExC_state->emit_bound)
830247a4
IZ
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)
e2e6a0f1 181#define RExC_nestroot (pRExC_state->nestroot)
830247a4
IZ
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)
1aa99e6b 185#define RExC_utf8 (pRExC_state->utf8)
e40e74fe 186#define RExC_uni_semantics (pRExC_state->uni_semantics)
02daf0ab 187#define RExC_orig_utf8 (pRExC_state->orig_utf8)
40d049e4
YO
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)
81714fb9 191#define RExC_paren_names (pRExC_state->paren_names)
40d049e4
YO
192#define RExC_recurse (pRExC_state->recurse)
193#define RExC_recurse_count (pRExC_state->recurse_count)
b57e4118 194#define RExC_in_lookbehind (pRExC_state->in_lookbehind)
4624b182 195#define RExC_contains_locale (pRExC_state->contains_locale)
bb3f3ed2 196#define RExC_override_recoding (pRExC_state->override_recoding)
830247a4 197
cde0cee5 198
a687059c
LW
199#define ISMULT1(c) ((c) == '*' || (c) == '+' || (c) == '?')
200#define ISMULT2(s) ((*s) == '*' || (*s) == '+' || (*s) == '?' || \
201 ((*s) == '{' && regcurly(s)))
a687059c 202
35c8bce7
LW
203#ifdef SPSTART
204#undef SPSTART /* dratted cpp namespace... */
205#endif
a687059c
LW
206/*
207 * Flags to be passed up and down.
208 */
a687059c 209#define WORST 0 /* Worst case. */
a3b492c3 210#define HASWIDTH 0x01 /* Known to match non-null strings. */
fda99bee
KW
211
212/* Simple enough to be STAR/PLUS operand, in an EXACT node must be a single
d7b56a3c 213 * character, and if utf8, must be invariant. Note that this is not the same thing as REGNODE_SIMPLE */
fda99bee 214#define SIMPLE 0x02
a3b492c3
YO
215#define SPSTART 0x04 /* Starts with * or +. */
216#define TRYAGAIN 0x08 /* Weeded out a declaration. */
217#define POSTPONED 0x10 /* (?1),(?&name), (??{...}) or similar */
a687059c 218
3dab1dad
YO
219#define REG_NODE_NUM(x) ((x) ? (int)((x)-RExC_emit_start) : -1)
220
07be1b83
YO
221/* whether trie related optimizations are enabled */
222#if PERL_ENABLE_EXTENDED_TRIE_OPTIMISATION
223#define TRIE_STUDY_OPT
786e8c11 224#define FULL_TRIE_STUDY
07be1b83
YO
225#define TRIE_STCLASS
226#endif
1de06328
YO
227
228
40d049e4
YO
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
bbd61b5f
KW
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
40d049e4 241
1de06328
YO
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
3b753521 248 string that must appear at a fixed location, and we look for the
1de06328
YO
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
3b753521
FN
269 characters must match before the string we are searching for.
270 Likewise when combined with minlenp and the length of the string it
1de06328
YO
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
3b753521 276 the string can appear at. If set to I32 max it indicates that the
1de06328
YO
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
486ec47a 293 pattern at the time it was committed with a scan_commit. Note that
1de06328
YO
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*/
2c2d71f5
JH
316
317typedef struct scan_data_t {
1de06328
YO
318 /*I32 len_min; unused */
319 /*I32 len_delta; unused */
2c2d71f5
JH
320 I32 pos_min;
321 I32 pos_delta;
322 SV *last_found;
1de06328 323 I32 last_end; /* min value, <0 unless valid. */
2c2d71f5
JH
324 I32 last_start_min;
325 I32 last_start_max;
1de06328
YO
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 */
486ec47a 329 I32 *minlen_fixed; /* pointer to the minlen relevant to the string */
1de06328
YO
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 */
486ec47a 334 I32 *minlen_float; /* pointer to the minlen relevant to the string */
1de06328 335 I32 lookbehind_float; /* is the position of the string modified by LB */
2c2d71f5
JH
336 I32 flags;
337 I32 whilem_c;
cb434fcc 338 I32 *last_closep;
653099ff 339 struct regnode_charclass_class *start_class;
2c2d71f5
JH
340} scan_data_t;
341
a687059c 342/*
e50aee73 343 * Forward declarations for pregcomp()'s friends.
a687059c 344 */
a0d0e21e 345
27da23d5 346static const scan_data_t zero_scan_data =
1de06328 347 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ,0};
c277df42
IZ
348
349#define SF_BEFORE_EOL (SF_BEFORE_SEOL|SF_BEFORE_MEOL)
07be1b83
YO
350#define SF_BEFORE_SEOL 0x0001
351#define SF_BEFORE_MEOL 0x0002
c277df42
IZ
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
09b7f37c
CB
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
c277df42
IZ
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 */
07be1b83
YO
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
653099ff
GS
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)
e1901655 376#define SCF_WHILEM_VISITED_POS 0x2000
c277df42 377
786e8c11 378#define SCF_TRIE_RESTUDY 0x4000 /* Do restudy? */
e2e6a0f1 379#define SCF_SEEN_ACCEPT 0x8000
07be1b83 380
43fead97 381#define UTF cBOOL(RExC_utf8)
a62b1201
KW
382#define LOC (get_regex_charset(RExC_flags) == REGEX_LOCALE_CHARSET)
383#define UNI_SEMANTICS (get_regex_charset(RExC_flags) == REGEX_UNICODE_CHARSET)
cfaf538b
KW
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)
2f7f8cb1
KW
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)
a62b1201 389
43fead97 390#define FOLD cBOOL(RExC_flags & RXf_PMf_FOLD)
a0ed51b3 391
ffc61ed2 392#define OOB_UNICODE 12345678
93733859 393#define OOB_NAMEDCLASS -1
b8c5462f 394
a0ed51b3
LW
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
8615cb43 398
b45f050a
JF
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 */
7253e4e3
RK
407#define MARKER1 "<-- HERE" /* marker as it appears in the description */
408#define MARKER2 " <-- HERE " /* marker as it appears within the regex */
b81d288d 409
7253e4e3 410#define REPORT_LOCATION " in regex; marked by " MARKER1 " in m/%.*s" MARKER2 "%s/"
b45f050a
JF
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 */
58e23c8d 417#define _FAIL(code) STMT_START { \
bfed75c6 418 const char *ellipses = ""; \
ccb2c380
MP
419 IV len = RExC_end - RExC_precomp; \
420 \
421 if (!SIZE_ONLY) \
288b8c02 422 SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx_sv); \
ccb2c380
MP
423 if (len > RegexLengthToShowInErrorMessages) { \
424 /* chop 10 shorter than the max, to ensure meaning of "..." */ \
425 len = RegexLengthToShowInErrorMessages - 10; \
426 ellipses = "..."; \
427 } \
58e23c8d 428 code; \
ccb2c380 429} STMT_END
8615cb43 430
58e23c8d
YO
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
b45f050a 439/*
b45f050a
JF
440 * Simple_vFAIL -- like FAIL, but marks the current location in the scan
441 */
ccb2c380 442#define Simple_vFAIL(m) STMT_START { \
a28509cc 443 const IV offset = RExC_parse - RExC_precomp; \
ccb2c380
MP
444 Perl_croak(aTHX_ "%s" REPORT_LOCATION, \
445 m, (int)offset, RExC_precomp, RExC_precomp + offset); \
446} STMT_END
b45f050a
JF
447
448/*
449 * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL()
450 */
ccb2c380
MP
451#define vFAIL(m) STMT_START { \
452 if (!SIZE_ONLY) \
288b8c02 453 SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx_sv); \
ccb2c380
MP
454 Simple_vFAIL(m); \
455} STMT_END
b45f050a
JF
456
457/*
458 * Like Simple_vFAIL(), but accepts two arguments.
459 */
ccb2c380 460#define Simple_vFAIL2(m,a1) STMT_START { \
a28509cc 461 const IV offset = RExC_parse - RExC_precomp; \
ccb2c380
MP
462 S_re_croak2(aTHX_ m, REPORT_LOCATION, a1, \
463 (int)offset, RExC_precomp, RExC_precomp + offset); \
464} STMT_END
b45f050a
JF
465
466/*
467 * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL2().
468 */
ccb2c380
MP
469#define vFAIL2(m,a1) STMT_START { \
470 if (!SIZE_ONLY) \
288b8c02 471 SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx_sv); \
ccb2c380
MP
472 Simple_vFAIL2(m, a1); \
473} STMT_END
b45f050a
JF
474
475
476/*
477 * Like Simple_vFAIL(), but accepts three arguments.
478 */
ccb2c380 479#define Simple_vFAIL3(m, a1, a2) STMT_START { \
a28509cc 480 const IV offset = RExC_parse - RExC_precomp; \
ccb2c380
MP
481 S_re_croak2(aTHX_ m, REPORT_LOCATION, a1, a2, \
482 (int)offset, RExC_precomp, RExC_precomp + offset); \
483} STMT_END
b45f050a
JF
484
485/*
486 * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL3().
487 */
ccb2c380
MP
488#define vFAIL3(m,a1,a2) STMT_START { \
489 if (!SIZE_ONLY) \
288b8c02 490 SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx_sv); \
ccb2c380
MP
491 Simple_vFAIL3(m, a1, a2); \
492} STMT_END
b45f050a
JF
493
494/*
495 * Like Simple_vFAIL(), but accepts four arguments.
496 */
ccb2c380 497#define Simple_vFAIL4(m, a1, a2, a3) STMT_START { \
a28509cc 498 const IV offset = RExC_parse - RExC_precomp; \
ccb2c380
MP
499 S_re_croak2(aTHX_ m, REPORT_LOCATION, a1, a2, a3, \
500 (int)offset, RExC_precomp, RExC_precomp + offset); \
501} STMT_END
b45f050a 502
668c081a 503#define ckWARNreg(loc,m) STMT_START { \
a28509cc 504 const IV offset = loc - RExC_precomp; \
f10f4c18
NC
505 Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \
506 (int)offset, RExC_precomp, RExC_precomp + offset); \
ccb2c380
MP
507} STMT_END
508
668c081a 509#define ckWARNregdep(loc,m) STMT_START { \
a28509cc 510 const IV offset = loc - RExC_precomp; \
d1d15184 511 Perl_ck_warner_d(aTHX_ packWARN2(WARN_DEPRECATED, WARN_REGEXP), \
f10f4c18
NC
512 m REPORT_LOCATION, \
513 (int)offset, RExC_precomp, RExC_precomp + offset); \
ccb2c380
MP
514} STMT_END
515
2335b3d3
KW
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
668c081a 523#define ckWARN2reg(loc, m, a1) STMT_START { \
a28509cc 524 const IV offset = loc - RExC_precomp; \
668c081a 525 Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \
ccb2c380
MP
526 a1, (int)offset, RExC_precomp, RExC_precomp + offset); \
527} STMT_END
528
529#define vWARN3(loc, m, a1, a2) STMT_START { \
a28509cc 530 const IV offset = loc - RExC_precomp; \
ccb2c380
MP
531 Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \
532 a1, a2, (int)offset, RExC_precomp, RExC_precomp + offset); \
533} STMT_END
534
668c081a
NC
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
ccb2c380 541#define vWARN4(loc, m, a1, a2, a3) STMT_START { \
a28509cc 542 const IV offset = loc - RExC_precomp; \
ccb2c380
MP
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
668c081a
NC
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
ccb2c380 553#define vWARN5(loc, m, a1, a2, a3, a4) STMT_START { \
a28509cc 554 const IV offset = loc - RExC_precomp; \
ccb2c380
MP
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
9d1d55b5 558
8615cb43 559
cd439c50 560/* Allow for side effects in s */
ccb2c380
MP
561#define REGC(c,s) STMT_START { \
562 if (!SIZE_ONLY) *(s) = (c); else (void)(s); \
563} STMT_END
cd439c50 564
fac92740
MJD
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.
07be1b83 569 * Position is 1 indexed.
fac92740 570 */
7122b237
YO
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
ccb2c380
MP
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", \
2a49f0f5 589 __LINE__, (int)(node), (int)(byte))); \
ccb2c380 590 if((node) < 0) { \
551405c4 591 Perl_croak(aTHX_ "value of node is %d in Offset macro", (int)(node)); \
ccb2c380
MP
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", \
551405c4 605 __LINE__, (int)(node), (int)(len))); \
ccb2c380 606 if((node) < 0) { \
551405c4 607 Perl_croak(aTHX_ "value of node is %d in Length macro", (int)(node)); \
ccb2c380
MP
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)
fac92740
MJD
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
07be1b83
YO
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
7122b237 628#endif
07be1b83
YO
629
630#if PERL_ENABLE_EXPERIMENTAL_REGEX_OPTIMISATIONS
631#define EXPERIMENTAL_INPLACESCAN
f427392e 632#endif /*PERL_ENABLE_EXPERIMENTAL_REGEX_OPTIMISATIONS*/
07be1b83 633
304ee84b
YO
634#define DEBUG_STUDYDATA(str,data,depth) \
635DEBUG_OPTIMISE_MORE_r(if(data){ \
1de06328 636 PerlIO_printf(Perl_debug_log, \
304ee84b
YO
637 "%*s" str "Pos:%"IVdf"/%"IVdf \
638 " Flags: 0x%"UVXf" Whilem_c: %"IVdf" Lcp: %"IVdf" %s", \
1de06328
YO
639 (int)(depth)*2, "", \
640 (IV)((data)->pos_min), \
641 (IV)((data)->pos_delta), \
304ee84b 642 (UV)((data)->flags), \
1de06328 643 (IV)((data)->whilem_c), \
304ee84b
YO
644 (IV)((data)->last_closep ? *((data)->last_closep) : -1), \
645 is_inf ? "INF " : "" \
1de06328
YO
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
acfe0abc 668static void clear_re(pTHX_ void *r);
4327152a 669
653099ff 670/* Mark that we cannot extend a found fixed substring at this point.
786e8c11 671 Update the longest found anchored substring and the longest found
653099ff
GS
672 floating substrings if needed. */
673
4327152a 674STATIC void
304ee84b 675S_scan_commit(pTHX_ const RExC_state_t *pRExC_state, scan_data_t *data, I32 *minlenp, int is_inf)
c277df42 676{
e1ec3a88
AL
677 const STRLEN l = CHR_SVLEN(data->last_found);
678 const STRLEN old_l = CHR_SVLEN(*data->longest);
1de06328 679 GET_RE_DEBUG_FLAGS_DECL;
b81d288d 680
7918f24d
NC
681 PERL_ARGS_ASSERT_SCAN_COMMIT;
682
c277df42 683 if ((l >= old_l) && ((l > old_l) || (data->flags & SF_BEFORE_EOL))) {
6b43b216 684 SvSetMagicSV(*data->longest, data->last_found);
c277df42
IZ
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)
b81d288d 688 data->flags
c277df42
IZ
689 |= ((data->flags & SF_BEFORE_EOL) << SF_FIX_SHIFT_EOL);
690 else
691 data->flags &= ~SF_FIX_BEFORE_EOL;
1de06328
YO
692 data->minlen_fixed=minlenp;
693 data->lookbehind_fixed=0;
a0ed51b3 694 }
304ee84b 695 else { /* *data->longest == data->longest_float */
c277df42 696 data->offset_float_min = l ? data->last_start_min : data->pos_min;
b81d288d
AB
697 data->offset_float_max = (l
698 ? data->last_start_max
c277df42 699 : data->pos_min + data->pos_delta);
304ee84b 700 if (is_inf || (U32)data->offset_float_max > (U32)I32_MAX)
9051bda5 701 data->offset_float_max = I32_MAX;
c277df42 702 if (data->flags & SF_BEFORE_EOL)
b81d288d 703 data->flags
c277df42
IZ
704 |= ((data->flags & SF_BEFORE_EOL) << SF_FL_SHIFT_EOL);
705 else
706 data->flags &= ~SF_FL_BEFORE_EOL;
1de06328
YO
707 data->minlen_float=minlenp;
708 data->lookbehind_float=0;
c277df42
IZ
709 }
710 }
711 SvCUR_set(data->last_found, 0);
0eda9292 712 {
a28509cc 713 SV * const sv = data->last_found;
097eb12c
AL
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 }
0eda9292 719 }
c277df42
IZ
720 data->last_end = -1;
721 data->flags &= ~SF_BEFORE_EOL;
bcdf7404 722 DEBUG_STUDYDATA("commit: ",data,0);
c277df42
IZ
723}
724
653099ff
GS
725/* Can match anything (initialization) */
726STATIC void
3fffb88a 727S_cl_anything(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl)
653099ff 728{
7918f24d
NC
729 PERL_ARGS_ASSERT_CL_ANYTHING;
730
f8bef550 731 ANYOF_BITMAP_SETALL(cl);
dd58aee1 732 cl->flags = ANYOF_CLASS|ANYOF_EOS|ANYOF_UNICODE_ALL
3ad98780 733 |ANYOF_LOC_NONBITMAP_FOLD|ANYOF_NON_UTF8_LATIN1_ALL;
3fffb88a
KW
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) {
9d7a1e63 743 ANYOF_CLASS_SETALL(cl); /* /l uses class */
3fffb88a
KW
744 cl->flags |= ANYOF_LOCALE;
745 }
9d7a1e63
KW
746 else {
747 ANYOF_CLASS_ZERO(cl); /* Only /l uses class now */
748 }
653099ff
GS
749}
750
751/* Can match anything (initialization) */
752STATIC int
5f66b61c 753S_cl_is_anything(const struct regnode_charclass_class *cl)
653099ff
GS
754{
755 int value;
756
7918f24d
NC
757 PERL_ARGS_ASSERT_CL_IS_ANYTHING;
758
aaa51d5e 759 for (value = 0; value <= ANYOF_MAX; value += 2)
653099ff
GS
760 if (ANYOF_CLASS_TEST(cl, value) && ANYOF_CLASS_TEST(cl, value + 1))
761 return 1;
1aa99e6b
IH
762 if (!(cl->flags & ANYOF_UNICODE_ALL))
763 return 0;
10edeb5d 764 if (!ANYOF_BITMAP_TESTALLSET((const void*)cl))
f8bef550 765 return 0;
653099ff
GS
766 return 1;
767}
768
769/* Can match anything (initialization) */
770STATIC void
e755fd73 771S_cl_init(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl)
653099ff 772{
7918f24d
NC
773 PERL_ARGS_ASSERT_CL_INIT;
774
8ecf7187 775 Zero(cl, 1, struct regnode_charclass_class);
653099ff 776 cl->type = ANYOF;
3fffb88a 777 cl_anything(pRExC_state, cl);
1411dba4 778 ARG_SET(cl, ANYOF_NONBITMAP_EMPTY);
653099ff
GS
779}
780
1051e1c4
KW
781/* These two functions currently do the exact same thing */
782#define cl_init_zero S_cl_init
653099ff 783
dd58aee1
KW
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. */
653099ff 787STATIC void
5f66b61c 788S_cl_and(struct regnode_charclass_class *cl,
a28509cc 789 const struct regnode_charclass_class *and_with)
653099ff 790{
7918f24d 791 PERL_ARGS_ASSERT_CL_AND;
40d049e4
YO
792
793 assert(and_with->type == ANYOF);
1e6ade67 794
c6b76537 795 /* I (khw) am not sure all these restrictions are necessary XXX */
1e6ade67
KW
796 if (!(ANYOF_CLASS_TEST_ANY_SET(and_with))
797 && !(ANYOF_CLASS_TEST_ANY_SET(cl))
653099ff 798 && (and_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
39065660
KW
799 && !(and_with->flags & ANYOF_LOC_NONBITMAP_FOLD)
800 && !(cl->flags & ANYOF_LOC_NONBITMAP_FOLD)) {
653099ff
GS
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. */
1aa99e6b 810
c6b76537 811 if (and_with->flags & ANYOF_INVERT) {
8951c461 812
c6b76537
KW
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) {
4713bfe1
KW
829 cl->flags &= ~ANYOF_UNICODE_ALL;
830 }
c6b76537
KW
831 if (and_with->flags & ANYOF_NON_UTF8_LATIN1_ALL) {
832 cl->flags &= ~ANYOF_NON_UTF8_LATIN1_ALL;
137165a6 833 }
1aa99e6b 834 }
c6b76537 835 else { /* and'd node is not inverted */
3ad98780
KW
836 U8 outside_bitmap_but_not_utf8; /* Temp variable */
837
137165a6 838 if (! ANYOF_NONBITMAP(and_with)) {
c6b76537
KW
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);
871d0d1a 848 cl->flags &= ~ANYOF_NONBITMAP_NON_UTF8;
c6b76537 849 }
137165a6 850 }
c6b76537
KW
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
3ad98780
KW
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 */
c6b76537
KW
861 if (cl->flags & ANYOF_UNICODE_ALL) {
862 ARG_SET(cl, ARG(and_with));
3ad98780
KW
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;
c6b76537
KW
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
3ad98780
KW
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;
c6b76537 902 cl->flags &= and_with->flags;
3ad98780 903 cl->flags |= outside_bitmap_but_not_utf8;
137165a6 904 }
653099ff
GS
905}
906
dd58aee1
KW
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. */
653099ff 910STATIC void
3fffb88a 911S_cl_or(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl, const struct regnode_charclass_class *or_with)
653099ff 912{
7918f24d
NC
913 PERL_ARGS_ASSERT_CL_OR;
914
653099ff 915 if (or_with->flags & ANYOF_INVERT) {
c6b76537
KW
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)) {
3fffb88a 921 cl_anything(pRExC_state, cl);
c6b76537 922 }
653099ff
GS
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 */
c6b76537 932 else if ( (or_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
39065660
KW
933 && !(or_with->flags & ANYOF_LOC_NONBITMAP_FOLD)
934 && !(cl->flags & ANYOF_LOC_NONBITMAP_FOLD) ) {
653099ff
GS
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 {
3fffb88a 941 cl_anything(pRExC_state, cl);
653099ff 942 }
c6b76537
KW
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 */
653099ff
GS
958 /* (B1 | CL1) | (B2 | CL2) = (B1 | B2) | (CL1 | CL2)) */
959 if ( (or_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
39065660
KW
960 && (!(or_with->flags & ANYOF_LOC_NONBITMAP_FOLD)
961 || (cl->flags & ANYOF_LOC_NONBITMAP_FOLD)) ) {
653099ff
GS
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];
1e6ade67 967 if (ANYOF_CLASS_TEST_ANY_SET(or_with)) {
653099ff
GS
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. */
3fffb88a 974 cl_anything(pRExC_state, cl);
653099ff 975 }
9826f543 976
c6b76537
KW
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
d94b1d13
KW
984 * match everything outside the bitmap. If that stuff is all above
985 * 255, can just set UNICODE_ALL, otherwise caould be anything. */
c6b76537
KW
986 if (! ANYOF_NONBITMAP(cl)) {
987 ARG_SET(cl, ARG(or_with));
988 }
989 else if (ARG(cl) != ARG(or_with)) {
d94b1d13
KW
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 }
c6b76537 997 }
4c34a693 998 }
0b9668ee
KW
999
1000 /* Take the union */
1001 cl->flags |= or_with->flags;
1aa99e6b 1002 }
653099ff
GS
1003}
1004
a3621e74
YO
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
3dab1dad
YO
1010
1011#ifdef DEBUGGING
07be1b83 1012/*
2b8b4781
NC
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)
3dab1dad
YO
1016
1017 These routines dump out a trie in a somewhat readable format.
07be1b83
YO
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
486ec47a 1022 Part of the reason for their existence is to provide a form
3dab1dad 1023 of documentation as to how the different representations function.
07be1b83
YO
1024
1025*/
3dab1dad
YO
1026
1027/*
3dab1dad
YO
1028 Dumps the final compressed table form of the trie to Perl_debug_log.
1029 Used for debugging make_trie().
1030*/
b9a59e08 1031
3dab1dad 1032STATIC void
2b8b4781
NC
1033S_dump_trie(pTHX_ const struct _reg_trie_data *trie, HV *widecharmap,
1034 AV *revcharmap, U32 depth)
3dab1dad
YO
1035{
1036 U32 state;
ab3bbdeb 1037 SV *sv=sv_newmortal();
55eed653 1038 int colwidth= widecharmap ? 6 : 4;
2e64971a 1039 U16 word;
3dab1dad
YO
1040 GET_RE_DEBUG_FLAGS_DECL;
1041
7918f24d 1042 PERL_ARGS_ASSERT_DUMP_TRIE;
ab3bbdeb 1043
3dab1dad
YO
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++ ) {
2b8b4781 1049 SV ** const tmp = av_fetch( revcharmap, state, 0);
3dab1dad 1050 if ( tmp ) {
ab3bbdeb
YO
1051 PerlIO_printf( Perl_debug_log, "%*s",
1052 colwidth,
ddc5bc0f 1053 pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth,
ab3bbdeb
YO
1054 PL_colors[0], PL_colors[1],
1055 (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
1056 PERL_PV_ESCAPE_FIRSTCHAR
1057 )
1058 );
3dab1dad
YO
1059 }
1060 }
1061 PerlIO_printf( Perl_debug_log, "\n%*sState|-----------------------",
1062 (int)depth * 2 + 2,"");
1063
1064 for( state = 0 ; state < trie->uniquecharcount ; state++ )
ab3bbdeb 1065 PerlIO_printf( Perl_debug_log, "%.*s", colwidth, "--------");
3dab1dad
YO
1066 PerlIO_printf( Perl_debug_log, "\n");
1067
1e2e3d02 1068 for( state = 1 ; state < trie->statecount ; state++ ) {
be8e71aa 1069 const U32 base = trie->states[ state ].trans.base;
3dab1dad
YO
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 {
ab3bbdeb
YO
1096 PerlIO_printf( Perl_debug_log, "%*"UVXf,
1097 colwidth,
3dab1dad
YO
1098 (UV)trie->trans[ base + ofs - trie->uniquecharcount ].next );
1099 } else {
ab3bbdeb 1100 PerlIO_printf( Perl_debug_log, "%*s",colwidth," ." );
3dab1dad
YO
1101 }
1102 }
1103
1104 PerlIO_printf( Perl_debug_log, "]");
1105
1106 }
1107 PerlIO_printf( Perl_debug_log, "\n" );
1108 }
2e64971a
DM
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" );
3dab1dad
YO
1116}
1117/*
3dab1dad
YO
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*/
1123STATIC void
55eed653 1124S_dump_trie_interim_list(pTHX_ const struct _reg_trie_data *trie,
2b8b4781
NC
1125 HV *widecharmap, AV *revcharmap, U32 next_alloc,
1126 U32 depth)
3dab1dad
YO
1127{
1128 U32 state;
ab3bbdeb 1129 SV *sv=sv_newmortal();
55eed653 1130 int colwidth= widecharmap ? 6 : 4;
3dab1dad 1131 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
1132
1133 PERL_ARGS_ASSERT_DUMP_TRIE_INTERIM_LIST;
1134
3dab1dad 1135 /* print out the table precompression. */
ab3bbdeb
YO
1136 PerlIO_printf( Perl_debug_log, "%*sState :Word | Transition Data\n%*s%s",
1137 (int)depth * 2 + 2,"", (int)depth * 2 + 2,"",
1138 "------:-----+-----------------\n" );
3dab1dad
YO
1139
1140 for( state=1 ; state < next_alloc ; state ++ ) {
1141 U16 charid;
1142
ab3bbdeb 1143 PerlIO_printf( Perl_debug_log, "%*s %4"UVXf" :",
3dab1dad
YO
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++ ) {
2b8b4781 1153 SV ** const tmp = av_fetch( revcharmap, TRIE_LIST_ITEM(state,charid).forid, 0);
ab3bbdeb
YO
1154 if ( tmp ) {
1155 PerlIO_printf( Perl_debug_log, "%*s:%3X=%4"UVXf" | ",
1156 colwidth,
ddc5bc0f 1157 pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth,
ab3bbdeb
YO
1158 PL_colors[0], PL_colors[1],
1159 (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
1160 PERL_PV_ESCAPE_FIRSTCHAR
1161 ) ,
1e2e3d02
YO
1162 TRIE_LIST_ITEM(state,charid).forid,
1163 (UV)TRIE_LIST_ITEM(state,charid).newstate
1164 );
1165 if (!(charid % 10))
664e119d
RGS
1166 PerlIO_printf(Perl_debug_log, "\n%*s| ",
1167 (int)((depth * 2) + 14), "");
1e2e3d02 1168 }
ab3bbdeb
YO
1169 }
1170 PerlIO_printf( Perl_debug_log, "\n");
3dab1dad
YO
1171 }
1172}
1173
1174/*
3dab1dad
YO
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*/
1180STATIC void
55eed653 1181S_dump_trie_interim_table(pTHX_ const struct _reg_trie_data *trie,
2b8b4781
NC
1182 HV *widecharmap, AV *revcharmap, U32 next_alloc,
1183 U32 depth)
3dab1dad
YO
1184{
1185 U32 state;
1186 U16 charid;
ab3bbdeb 1187 SV *sv=sv_newmortal();
55eed653 1188 int colwidth= widecharmap ? 6 : 4;
3dab1dad 1189 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
1190
1191 PERL_ARGS_ASSERT_DUMP_TRIE_INTERIM_TABLE;
3dab1dad
YO
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++ ) {
2b8b4781 1201 SV ** const tmp = av_fetch( revcharmap, charid, 0);
3dab1dad 1202 if ( tmp ) {
ab3bbdeb
YO
1203 PerlIO_printf( Perl_debug_log, "%*s",
1204 colwidth,
ddc5bc0f 1205 pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth,
ab3bbdeb
YO
1206 PL_colors[0], PL_colors[1],
1207 (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
1208 PERL_PV_ESCAPE_FIRSTCHAR
1209 )
1210 );
3dab1dad
YO
1211 }
1212 }
1213
1214 PerlIO_printf( Perl_debug_log, "\n%*sState+-",(int)depth * 2 + 2,"" );
1215
1216 for( charid=0 ; charid < trie->uniquecharcount ; charid++ ) {
ab3bbdeb 1217 PerlIO_printf( Perl_debug_log, "%.*s", colwidth,"--------");
3dab1dad
YO
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++ ) {
ab3bbdeb
YO
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, "." );
3dab1dad
YO
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 }
07be1b83 1242}
3dab1dad
YO
1243
1244#endif
1245
2e64971a 1246
786e8c11
YO
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
3dab1dad 1257
786e8c11 1258Inplace optimizes a sequence of 2 or more Branch-Exact nodes into a TRIE node.
07be1b83 1259
786e8c11
YO
1260A trie is an N'ary tree where the branches are determined by digital
1261decomposition of the key. IE, at the root node you look up the 1st character and
1262follow that branch repeat until you find the end of the branches. Nodes can be
1263marked as "accepting" meaning they represent a complete word. Eg:
07be1b83 1264
786e8c11 1265 /he|she|his|hers/
72f13be8 1266
786e8c11
YO
1267would convert into the following structure. Numbers represent states, letters
1268following numbers represent valid transitions on the letter from that state, if
1269the number is in square brackets it represents an accepting state, otherwise it
1270will be in parenthesis.
07be1b83 1271
786e8c11
YO
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]
07be1b83 1279
786e8c11
YO
1280 Accept Word Mapping: 3=>1 (he),5=>2 (she), 7=>3 (his), 9=>4 (hers)
1281
1282This shows that when matching against the string 'hers' we will begin at state 1
1283read 'h' and move to state 2, read 'e' and move to state 3 which is accepting,
1284then read 'r' and go to state 8 followed by 's' which takes us to state 9 which
1285is also accepting. Thus we know that we can match both 'he' and 'hers' with a
1286single traverse. We store a mapping from accepting to state to which word was
1287matched, and then when we have multiple possibilities we try to complete the
1288rest of the regex in the order in which they occured in the alternation.
1289
1290The only prior NFA like behaviour that would be changed by the TRIE support is
1291the silent ignoring of duplicate alternations which are of the form:
1292
1293 / (DUPE|DUPE) X? (?{ ... }) Y /x
1294
4b714af6 1295Thus EVAL blocks following a trie may be called a different number of times with
786e8c11 1296and without the optimisation. With the optimisations dupes will be silently
486ec47a 1297ignored. This inconsistent behaviour of EVAL type nodes is well established as
786e8c11
YO
1298the following demonstrates:
1299
1300 'words'=~/(word|word|word)(?{ print $1 })[xyz]/
1301
1302which prints out 'word' three times, but
1303
1304 'words'=~/(word|word|word)(?{ print $1 })S/
1305
1306which doesnt print it out at all. This is due to other optimisations kicking in.
1307
1308Example of what happens on a structural level:
1309
486ec47a 1310The regexp /(ac|ad|ab)+/ will produce the following debug output:
786e8c11
YO
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
1323This would be optimizable with startbranch=5, first=5, last=16, tail=16
1324and 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
1336Cases 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
1346which would be optimizable with startbranch=1, first=1, last=7, tail=8
1347and 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
1359is the recommended Unicode-aware way of saying
1360
1361 *(d++) = uv;
1362*/
1363
1e2e3d02 1364#define TRIE_STORE_REVCHAR \
786e8c11 1365 STMT_START { \
73031816
NC
1366 if (UTF) { \
1367 SV *zlopp = newSV(2); \
88c9ea1e
CB
1368 unsigned char *flrbbbbb = (unsigned char *) SvPVX(zlopp); \
1369 unsigned const char *const kapow = uvuni_to_utf8(flrbbbbb, uvc & 0xFF); \
73031816
NC
1370 SvCUR_set(zlopp, kapow - flrbbbbb); \
1371 SvPOK_on(zlopp); \
1372 SvUTF8_on(zlopp); \
1373 av_push(revcharmap, zlopp); \
1374 } else { \
6bdeddd2 1375 char ooooff = (char)uvc; \
73031816
NC
1376 av_push(revcharmap, newSVpvn(&ooooff, 1)); \
1377 } \
1378 } STMT_END
786e8c11
YO
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 uvc = utf8n_to_uvuni( (const U8*)uc, UTF8_MAXLEN, &len, uniflags);\
1391 uvc = to_uni_fold( uvc, 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 ) ) { \
f9003953
NC
1408 U32 ging = TRIE_LIST_LEN( state ) *= 2; \
1409 Renew( trie->states[ state ].trans.list, ging, reg_trie_trans_le ); \
786e8c11
YO
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
07be1b83 1415
786e8c11
YO
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
07be1b83 1422
786e8c11
YO
1423#define TRIE_HANDLE_WORD(state) STMT_START { \
1424 U16 dupe= trie->states[ state ].wordnum; \
1425 regnode * const noper_next = regnext( noper ); \
1426 \
786e8c11
YO
1427 DEBUG_r({ \
1428 /* store the word for dumping */ \
1429 SV* tmp; \
1430 if (OP(noper) != NOTHING) \
740cce10 1431 tmp = newSVpvn_utf8(STRING(noper), STR_LEN(noper), UTF); \
786e8c11 1432 else \
740cce10 1433 tmp = newSVpvn_utf8( "", 0, UTF ); \
2b8b4781 1434 av_push( trie_words, tmp ); \
786e8c11
YO
1435 }); \
1436 \
1437 curword++; \
2e64971a
DM
1438 trie->wordinfo[curword].prev = 0; \
1439 trie->wordinfo[curword].len = wordlen; \
1440 trie->wordinfo[curword].accept = state; \
786e8c11
YO
1441 \
1442 if ( noper_next < tail ) { \
1443 if (!trie->jump) \
c944940b 1444 trie->jump = (U16 *) PerlMemShared_calloc( word_count + 1, sizeof(U16) ); \
7f69552c 1445 trie->jump[curword] = (U16)(noper_next - convert); \
786e8c11
YO
1446 if (!jumper) \
1447 jumper = noper_next; \
1448 if (!nextbranch) \
1449 nextbranch= regnext(cur); \
1450 } \
1451 \
1452 if ( dupe ) { \
2e64971a
DM
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; \
786e8c11
YO
1458 } else { \
1459 /* we haven't inserted this word yet. */ \
1460 trie->states[ state ].wordnum = curword; \
1461 } \
1462} STMT_END
07be1b83 1463
3dab1dad 1464
786e8c11
YO
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 )
3dab1dad 1473
786e8c11
YO
1474#define MADE_TRIE 1
1475#define MADE_JUMP_TRIE 2
1476#define MADE_EXACT_TRIE 4
3dab1dad 1477
a3621e74 1478STATIC I32
786e8c11 1479S_make_trie(pTHX_ RExC_state_t *pRExC_state, regnode *startbranch, regnode *first, regnode *last, regnode *tail, U32 word_count, U32 flags, U32 depth)
a3621e74 1480{
27da23d5 1481 dVAR;
a3621e74
YO
1482 /* first pass, loop through and scan words */
1483 reg_trie_data *trie;
55eed653 1484 HV *widecharmap = NULL;
2b8b4781 1485 AV *revcharmap = newAV();
a3621e74 1486 regnode *cur;
9f7f3913 1487 const U32 uniflags = UTF8_ALLOW_DEFAULT;
a3621e74
YO
1488 STRLEN len = 0;
1489 UV uvc = 0;
1490 U16 curword = 0;
1491 U32 next_alloc = 0;
786e8c11
YO
1492 regnode *jumper = NULL;
1493 regnode *nextbranch = NULL;
7f69552c 1494 regnode *convert = NULL;
2e64971a 1495 U32 *prev_states; /* temp array mapping each state to previous one */
a3621e74 1496 /* we just use folder as a flag in utf8 */
1e696034 1497 const U8 * folder = NULL;
a3621e74 1498
2b8b4781
NC
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.
8e11feef 1504 */
2b8b4781
NC
1505#else
1506 const U32 data_slot = add_data( pRExC_state, 2, "tu" );
3dab1dad 1507 STRLEN trie_charcount=0;
3dab1dad 1508#endif
2b8b4781 1509 SV *re_trie_maxbuff;
a3621e74 1510 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
1511
1512 PERL_ARGS_ASSERT_MAKE_TRIE;
72f13be8
YO
1513#ifndef DEBUGGING
1514 PERL_UNUSED_ARG(depth);
1515#endif
a3621e74 1516
1e696034 1517 switch (flags) {
2f7f8cb1 1518 case EXACTFA:
1e696034
KW
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
c944940b 1524 trie = (reg_trie_data *) PerlMemShared_calloc( 1, sizeof(reg_trie_data) );
a3621e74 1525 trie->refcount = 1;
3dab1dad 1526 trie->startstate = 1;
786e8c11 1527 trie->wordcount = word_count;
f8fc2ecf 1528 RExC_rxi->data->data[ data_slot ] = (void*)trie;
c944940b 1529 trie->charmap = (U16 *) PerlMemShared_calloc( 256, sizeof(U16) );
3dab1dad 1530 if (!(UTF && folder))
c944940b 1531 trie->bitmap = (char *) PerlMemShared_calloc( ANYOF_BITMAP_SIZE, 1 );
2e64971a
DM
1532 trie->wordinfo = (reg_trie_wordinfo *) PerlMemShared_calloc(
1533 trie->wordcount+1, sizeof(reg_trie_wordinfo));
1534
a3621e74 1535 DEBUG_r({
2b8b4781 1536 trie_words = newAV();
a3621e74 1537 });
a3621e74 1538
0111c4fd 1539 re_trie_maxbuff = get_sv(RE_TRIE_MAXBUF_NAME, 1);
a3621e74 1540 if (!SvIOK(re_trie_maxbuff)) {
0111c4fd 1541 sv_setiv(re_trie_maxbuff, RE_TRIE_MAXBUF_INIT);
a3621e74 1542 }
3dab1dad
YO
1543 DEBUG_OPTIMISE_r({
1544 PerlIO_printf( Perl_debug_log,
786e8c11 1545 "%*smake_trie start==%d, first==%d, last==%d, tail==%d depth=%d\n",
3dab1dad
YO
1546 (int)depth * 2 + 2, "",
1547 REG_NODE_NUM(startbranch),REG_NODE_NUM(first),
786e8c11 1548 REG_NODE_NUM(last), REG_NODE_NUM(tail),
85c3142d 1549 (int)depth);
3dab1dad 1550 });
7f69552c
YO
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
a3621e74
YO
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
38a44b82 1569 (trie->charmap) and we use a an HV* to store Unicode characters. We use the
a3621e74
YO
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
3b753521 1575 efficient in terms of memory by ensuring the most common value is in the
a3621e74
YO
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
486ec47a 1579 will not be compressible. With a middle is most common approach the worst
a3621e74
YO
1580 case is when we have the least common nodes twice.
1581
1582 */
1583
a3621e74 1584 for ( cur = first ; cur < last ; cur = regnext( cur ) ) {
c445ea15 1585 regnode * const noper = NEXTOPER( cur );
e1ec3a88 1586 const U8 *uc = (U8*)STRING( noper );
a28509cc 1587 const U8 * const e = uc + STR_LEN( noper );
a3621e74
YO
1588 STRLEN foldlen = 0;
1589 U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
2af232bd 1590 const U8 *scan = (U8*)NULL;
07be1b83 1591 U32 wordlen = 0; /* required init */
02daf0ab
YO
1592 STRLEN chars = 0;
1593 bool set_bit = trie->bitmap ? 1 : 0; /*store the first char in the bitmap?*/
a3621e74 1594
3dab1dad
YO
1595 if (OP(noper) == NOTHING) {
1596 trie->minlen= 0;
1597 continue;
1598 }
02daf0ab
YO
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
a3621e74 1603 for ( ; uc < e ; uc += len ) {
3dab1dad 1604 TRIE_CHARCOUNT(trie)++;
a3621e74 1605 TRIE_READ_CHAR;
3dab1dad 1606 chars++;
a3621e74
YO
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 ];
3dab1dad 1612 TRIE_STORE_REVCHAR;
a3621e74 1613 }
02daf0ab 1614 if ( set_bit ) {
62012aee
KW
1615 /* store the codepoint in the bitmap, and its folded
1616 * equivalent. */
02daf0ab 1617 TRIE_BITMAP_SET(trie,uvc);
0921ee73
T
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
acdf4139
KW
1624 variant codepoints */
1625 if (! UNI_IS_INVARIANT(uvc)) {
1626 TRIE_BITMAP_SET(trie, UTF8_TWO_BYTE_HI(uvc));
0921ee73
T
1627 }
1628 }
02daf0ab
YO
1629 set_bit = 0; /* We've done our bit :-) */
1630 }
a3621e74
YO
1631 } else {
1632 SV** svpp;
55eed653
NC
1633 if ( !widecharmap )
1634 widecharmap = newHV();
a3621e74 1635
55eed653 1636 svpp = hv_fetch( widecharmap, (char*)&uvc, sizeof( UV ), 1 );
a3621e74
YO
1637
1638 if ( !svpp )
e4584336 1639 Perl_croak( aTHX_ "error creating/fetching widecharmap entry for 0x%"UVXf, uvc );
a3621e74
YO
1640
1641 if ( !SvTRUE( *svpp ) ) {
1642 sv_setiv( *svpp, ++trie->uniquecharcount );
3dab1dad 1643 TRIE_STORE_REVCHAR;
a3621e74
YO
1644 }
1645 }
1646 }
3dab1dad
YO
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
a3621e74
YO
1656 } /* end first pass */
1657 DEBUG_TRIE_COMPILE_r(
3dab1dad
YO
1658 PerlIO_printf( Perl_debug_log, "%*sTRIE(%s): W:%d C:%d Uq:%d Min:%d Max:%d\n",
1659 (int)depth * 2 + 2,"",
55eed653 1660 ( widecharmap ? "UTF8" : "NATIVE" ), (int)word_count,
be8e71aa
YO
1661 (int)TRIE_CHARCOUNT(trie), trie->uniquecharcount,
1662 (int)trie->minlen, (int)trie->maxlen )
a3621e74 1663 );
a3621e74
YO
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
0111c4fd
RGS
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
a3621e74
YO
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
2e64971a
DM
1687 Newx(prev_states, TRIE_CHARCOUNT(trie) + 2, U32);
1688 prev_states[1] = 0;
1689
3dab1dad 1690 if ( (IV)( ( TRIE_CHARCOUNT(trie) + 1 ) * trie->uniquecharcount + 1) > SvIV(re_trie_maxbuff) ) {
a3621e74
YO
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).
a3621e74
YO
1701 */
1702
a3621e74
YO
1703 STRLEN transcount = 1;
1704
1e2e3d02
YO
1705 DEBUG_TRIE_COMPILE_MORE_r( PerlIO_printf( Perl_debug_log,
1706 "%*sCompiling trie using list compiler\n",
1707 (int)depth * 2 + 2, ""));
446bd890 1708
c944940b
JH
1709 trie->states = (reg_trie_state *)
1710 PerlMemShared_calloc( TRIE_CHARCOUNT(trie) + 2,
1711 sizeof(reg_trie_state) );
a3621e74
YO
1712 TRIE_LIST_NEW(1);
1713 next_alloc = 2;
1714
1715 for ( cur = first ; cur < last ; cur = regnext( cur ) ) {
1716
c445ea15
AL
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 */
07be1b83 1724 U32 wordlen = 0; /* required init */
c445ea15
AL
1725 U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
1726
3dab1dad 1727 if (OP(noper) != NOTHING) {
786e8c11 1728 for ( ; uc < e ; uc += len ) {
c445ea15 1729
786e8c11 1730 TRIE_READ_CHAR;
c445ea15 1731
786e8c11
YO
1732 if ( uvc < 256 ) {
1733 charid = trie->charmap[ uvc ];
c445ea15 1734 } else {
55eed653 1735 SV** const svpp = hv_fetch( widecharmap, (char*)&uvc, sizeof( UV ), 0);
786e8c11
YO
1736 if ( !svpp ) {
1737 charid = 0;
1738 } else {
1739 charid=(U16)SvIV( *svpp );
1740 }
c445ea15 1741 }
786e8c11
YO
1742 /* charid is now 0 if we dont know the char read, or nonzero if we do */
1743 if ( charid ) {
a3621e74 1744
786e8c11
YO
1745 U16 check;
1746 U32 newstate = 0;
a3621e74 1747
786e8c11
YO
1748 charid--;
1749 if ( !trie->states[ state ].trans.list ) {
1750 TRIE_LIST_NEW( state );
c445ea15 1751 }
786e8c11
YO
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++;
2e64971a 1760 prev_states[newstate] = state;
786e8c11
YO
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 );
c445ea15 1767 }
a28509cc 1768 }
c445ea15 1769 }
3dab1dad 1770 TRIE_HANDLE_WORD(state);
a3621e74
YO
1771
1772 } /* end second pass */
1773
1e2e3d02
YO
1774 /* next alloc is the NEXT state to be allocated */
1775 trie->statecount = next_alloc;
c944940b
JH
1776 trie->states = (reg_trie_state *)
1777 PerlMemShared_realloc( trie->states,
1778 next_alloc
1779 * sizeof(reg_trie_state) );
a3621e74 1780
3dab1dad 1781 /* and now dump it out before we compress it */
2b8b4781
NC
1782 DEBUG_TRIE_COMPILE_MORE_r(dump_trie_interim_list(trie, widecharmap,
1783 revcharmap, next_alloc,
1784 depth+1)
1e2e3d02 1785 );
a3621e74 1786
c944940b
JH
1787 trie->trans = (reg_trie_trans *)
1788 PerlMemShared_calloc( transcount, sizeof(reg_trie_trans) );
a3621e74
YO
1789 {
1790 U32 state;
a3621e74
YO
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;
a28509cc 1807 U16 idx;
a3621e74
YO
1808
1809 for( idx = 2 ; idx <= TRIE_LIST_USED( state ) ; idx++ ) {
c445ea15
AL
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 }
a3621e74
YO
1816 }
1817 if ( transcount < tp + maxid - minid + 1) {
1818 transcount *= 2;
c944940b
JH
1819 trie->trans = (reg_trie_trans *)
1820 PerlMemShared_realloc( trie->trans,
446bd890
NC
1821 transcount
1822 * sizeof(reg_trie_trans) );
a3621e74
YO
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++ ) {
c445ea15 1845 const U32 tid = base - trie->uniquecharcount + TRIE_LIST_ITEM( state, idx ).forid;
a3621e74
YO
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 }
cc601c31 1860 trie->lasttrans = tp + 1;
a3621e74
YO
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
3b753521 1874 We use the .check field of the first entry of the node temporarily to
a3621e74
YO
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 */
1e2e3d02
YO
1898 DEBUG_TRIE_COMPILE_MORE_r( PerlIO_printf( Perl_debug_log,
1899 "%*sCompiling trie using table compiler\n",
1900 (int)depth * 2 + 2, ""));
3dab1dad 1901
c944940b
JH
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) );
a3621e74
YO
1909 next_alloc = trie->uniquecharcount + 1;
1910
3dab1dad 1911
a3621e74
YO
1912 for ( cur = first ; cur < last ; cur = regnext( cur ) ) {
1913
c445ea15 1914 regnode * const noper = NEXTOPER( cur );
a28509cc
AL
1915 const U8 *uc = (U8*)STRING( noper );
1916 const U8 * const e = uc + STR_LEN( noper );
a3621e74
YO
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 */
07be1b83 1925 U32 wordlen = 0; /* required init */
a3621e74
YO
1926 U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
1927
3dab1dad 1928 if ( OP(noper) != NOTHING ) {
786e8c11 1929 for ( ; uc < e ; uc += len ) {
a3621e74 1930
786e8c11 1931 TRIE_READ_CHAR;
a3621e74 1932
786e8c11
YO
1933 if ( uvc < 256 ) {
1934 charid = trie->charmap[ uvc ];
1935 } else {
55eed653 1936 SV* const * const svpp = hv_fetch( widecharmap, (char*)&uvc, sizeof( UV ), 0);
786e8c11 1937 charid = svpp ? (U16)SvIV(*svpp) : 0;
a3621e74 1938 }
786e8c11
YO
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++;
2e64971a
DM
1944 prev_states[TRIE_NODENUM(next_alloc)]
1945 = TRIE_NODENUM(state);
786e8c11
YO
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 */
a3621e74 1953 }
a3621e74 1954 }
3dab1dad
YO
1955 accept_state = TRIE_NODENUM( state );
1956 TRIE_HANDLE_WORD(accept_state);
a3621e74
YO
1957
1958 } /* end second pass */
1959
3dab1dad 1960 /* and now dump it out before we compress it */
2b8b4781
NC
1961 DEBUG_TRIE_COMPILE_MORE_r(dump_trie_interim_table(trie, widecharmap,
1962 revcharmap,
1963 next_alloc, depth+1));
a3621e74 1964
a3621e74
YO
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
3b753521 1979 - If .base is 0 there are no valid transitions from that node.
a3621e74
YO
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
786e8c11 1991 XXX - wrong maybe?
a3621e74 1992 The following process inplace converts the table to the compressed
3b753521 1993 table: We first do not compress the root node 1,and mark all its
a3621e74 1994 .check pointers as 1 and set its .base pointer as 1 as well. This
3b753521
FN
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.
a3621e74
YO
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
786e8c11 2017 pointer doesnt find one the single transition is appended as normal.
a3621e74
YO
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 */
a3b680e6 2027 const U32 laststate = TRIE_NODENUM( next_alloc );
a28509cc 2028 U32 state, charid;
a3621e74 2029 U32 pos = 0, zp=0;
1e2e3d02 2030 trie->statecount = laststate;
a3621e74
YO
2031
2032 for ( state = 1 ; state < laststate ; state++ ) {
2033 U8 flag = 0;
a28509cc
AL
2034 const U32 stateidx = TRIE_NODEIDX( state );
2035 const U32 o_used = trie->trans[ stateidx ].check;
2036 U32 used = trie->trans[ stateidx ].check;
a3621e74
YO
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 }
cc601c31 2066 trie->lasttrans = pos + 1;
c944940b
JH
2067 trie->states = (reg_trie_state *)
2068 PerlMemShared_realloc( trie->states, laststate
2069 * sizeof(reg_trie_state) );
a3621e74 2070 DEBUG_TRIE_COMPILE_MORE_r(
e4584336 2071 PerlIO_printf( Perl_debug_log,
3dab1dad
YO
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 ),
5d7488b2
AL
2075 (IV)next_alloc,
2076 (IV)pos,
a3621e74
YO
2077 ( ( next_alloc - pos ) * 100 ) / (double)next_alloc );
2078 );
2079
2080 } /* end table compress */
2081 }
1e2e3d02
YO
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 );
cc601c31 2088 /* resize the trans array to remove unused space */
c944940b
JH
2089 trie->trans = (reg_trie_trans *)
2090 PerlMemShared_realloc( trie->trans, trie->lasttrans
2091 * sizeof(reg_trie_trans) );
a3621e74 2092
3b753521 2093 { /* Modify the program and insert the new TRIE node */
3dab1dad
YO
2094 U8 nodetype =(U8)(flags & 0xFF);
2095 char *str=NULL;
786e8c11 2096
07be1b83 2097#ifdef DEBUGGING
e62cc96a 2098 regnode *optimize = NULL;
7122b237
YO
2099#ifdef RE_TRACK_PATTERN_OFFSETS
2100
b57a0404
JH
2101 U32 mjd_offset = 0;
2102 U32 mjd_nodelen = 0;
7122b237
YO
2103#endif /* RE_TRACK_PATTERN_OFFSETS */
2104#endif /* DEBUGGING */
a3621e74 2105 /*
3dab1dad
YO
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.)
3b753521 2110 Assuming its a sub part we convert the EXACT otherwise we convert
3dab1dad 2111 the whole branch sequence, including the first.
a3621e74 2112 */
3dab1dad 2113 /* Find the node we are going to overwrite */
7f69552c 2114 if ( first != startbranch || OP( last ) == BRANCH ) {
07be1b83 2115 /* branch sub-chain */
3dab1dad 2116 NEXT_OFF( first ) = (U16)(last - first);
7122b237 2117#ifdef RE_TRACK_PATTERN_OFFSETS
07be1b83
YO
2118 DEBUG_r({
2119 mjd_offset= Node_Offset((convert));
2120 mjd_nodelen= Node_Length((convert));
2121 });
7122b237 2122#endif
7f69552c 2123 /* whole branch chain */
7122b237
YO
2124 }
2125#ifdef RE_TRACK_PATTERN_OFFSETS
2126 else {
7f69552c
YO
2127 DEBUG_r({
2128 const regnode *nop = NEXTOPER( convert );
2129 mjd_offset= Node_Offset((nop));
2130 mjd_nodelen= Node_Length((nop));
2131 });
07be1b83
YO
2132 }
2133 DEBUG_OPTIMISE_r(
2134 PerlIO_printf(Perl_debug_log, "%*sMJD offset:%"UVuf" MJD length:%"UVuf"\n",
2135 (int)depth * 2 + 2, "",
786e8c11 2136 (UV)mjd_offset, (UV)mjd_nodelen)
07be1b83 2137 );
7122b237 2138#endif
3dab1dad
YO
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;
55eed653 2142 if ( trie->bitmap && !widecharmap && !trie->jump ) {
3dab1dad 2143 U32 state;
1e2e3d02 2144 for ( state = 1 ; state < trie->statecount-1 ; state++ ) {
a3621e74 2145 U32 ofs = 0;
8e11feef
RGS
2146 I32 idx = -1;
2147 U32 count = 0;
2148 const U32 base = trie->states[ state ].trans.base;
a3621e74 2149
3dab1dad 2150 if ( trie->states[state].wordnum )
8e11feef 2151 count = 1;
a3621e74 2152
8e11feef 2153 for ( ofs = 0 ; ofs < trie->uniquecharcount ; ofs++ ) {
cc601c31
YO
2154 if ( ( base + ofs >= trie->uniquecharcount ) &&
2155 ( base + ofs - trie->uniquecharcount < trie->lasttrans ) &&
a3621e74
YO
2156 trie->trans[ base + ofs - trie->uniquecharcount ].check == state )
2157 {
3dab1dad 2158 if ( ++count > 1 ) {
2b8b4781 2159 SV **tmp = av_fetch( revcharmap, ofs, 0);
07be1b83 2160 const U8 *ch = (U8*)SvPV_nolen_const( *tmp );
8e11feef 2161 if ( state == 1 ) break;
3dab1dad
YO
2162 if ( count == 2 ) {
2163 Zero(trie->bitmap, ANYOF_BITMAP_SIZE, char);
2164 DEBUG_OPTIMISE_r(
8e11feef
RGS
2165 PerlIO_printf(Perl_debug_log,
2166 "%*sNew Start State=%"UVuf" Class: [",
2167 (int)depth * 2 + 2, "",
786e8c11 2168 (UV)state));
be8e71aa 2169 if (idx >= 0) {
2b8b4781 2170 SV ** const tmp = av_fetch( revcharmap, idx, 0);
be8e71aa 2171 const U8 * const ch = (U8*)SvPV_nolen_const( *tmp );
8e11feef 2172
3dab1dad 2173 TRIE_BITMAP_SET(trie,*ch);
8e11feef
RGS
2174 if ( folder )
2175 TRIE_BITMAP_SET(trie, folder[ *ch ]);
3dab1dad 2176 DEBUG_OPTIMISE_r(
f1f66076 2177 PerlIO_printf(Perl_debug_log, "%s", (char*)ch)
3dab1dad 2178 );
8e11feef
RGS
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 }
3dab1dad
YO
2188 }
2189 if ( count == 1 ) {
2b8b4781 2190 SV **tmp = av_fetch( revcharmap, idx, 0);
c490c714
YO
2191 STRLEN len;
2192 char *ch = SvPV( *tmp, len );
de734bd5
A
2193 DEBUG_OPTIMISE_r({
2194 SV *sv=sv_newmortal();
8e11feef
RGS
2195 PerlIO_printf( Perl_debug_log,
2196 "%*sPrefix State: %"UVuf" Idx:%"UVuf" Char='%s'\n",
2197 (int)depth * 2 + 2, "",
de734bd5
A
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 });
3dab1dad
YO
2206 if ( state==1 ) {
2207 OP( convert ) = nodetype;
2208 str=STRING(convert);
2209 STR_LEN(convert)=0;
2210 }
c490c714
YO
2211 STR_LEN(convert) += len;
2212 while (len--)
de734bd5 2213 *str++ = *ch++;
8e11feef 2214 } else {
f9049ba1 2215#ifdef DEBUGGING
8e11feef
RGS
2216 if (state>1)
2217 DEBUG_OPTIMISE_r(PerlIO_printf( Perl_debug_log,"]\n"));
f9049ba1 2218#endif
8e11feef
RGS
2219 break;
2220 }
2221 }
2e64971a 2222 trie->prefixlen = (state-1);
3dab1dad 2223 if (str) {
8e11feef 2224 regnode *n = convert+NODE_SZ_STR(convert);
07be1b83 2225 NEXT_OFF(convert) = NODE_SZ_STR(convert);
8e11feef 2226 trie->startstate = state;
07be1b83
YO
2227 trie->minlen -= (state - 1);
2228 trie->maxlen -= (state - 1);
33809eae
JH
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
8e11feef
RGS
2258 if (trie->maxlen) {
2259 convert = n;
2260 } else {
3dab1dad 2261 NEXT_OFF(convert) = (U16)(tail - convert);
a5ca303d 2262 DEBUG_r(optimize= n);
3dab1dad
YO
2263 }
2264 }
2265 }
a5ca303d
YO
2266 if (!jumper)
2267 jumper = last;
3dab1dad 2268 if ( trie->maxlen ) {
8e11feef
RGS
2269 NEXT_OFF( convert ) = (U16)(tail - convert);
2270 ARG_SET( convert, data_slot );
786e8c11
YO
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)
7f69552c 2275 trie->jump[0] = (U16)(nextbranch - convert);
a5ca303d 2276
6c48061a
YO
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) )
786e8c11
YO
2286 {
2287 OP( convert ) = TRIEC;
2288 Copy(trie->bitmap, ((struct regnode_charclass *)convert)->bitmap, ANYOF_BITMAP_SIZE, char);
446bd890 2289 PerlMemShared_free(trie->bitmap);
786e8c11
YO
2290 trie->bitmap= NULL;
2291 } else
2292 OP( convert ) = TRIE;
a3621e74 2293
3dab1dad
YO
2294 /* store the type in the flags */
2295 convert->flags = nodetype;
a5ca303d
YO
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 */
3dab1dad 2303 }
a3621e74 2304 /* needed for dumping*/
e62cc96a 2305 DEBUG_r(if (optimize) {
07be1b83 2306 regnode *opt = convert;
bcdf7404 2307
e62cc96a 2308 while ( ++opt < optimize) {
07be1b83
YO
2309 Set_Node_Offset_Length(opt,0,0);
2310 }
786e8c11
YO
2311 /*
2312 Try to clean up some of the debris left after the
2313 optimisation.
a3621e74 2314 */
786e8c11 2315 while( optimize < jumper ) {
07be1b83 2316 mjd_nodelen += Node_Length((optimize));
a3621e74 2317 OP( optimize ) = OPTIMIZED;
07be1b83 2318 Set_Node_Offset_Length(optimize,0,0);
a3621e74
YO
2319 optimize++;
2320 }
07be1b83 2321 Set_Node_Offset_Length(convert,mjd_offset,mjd_nodelen);
a3621e74
YO
2322 });
2323 } /* end node insert */
2e64971a
DM
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,
3b753521
FN
2330 * or that state had multiple words, and the overspill words were
2331 * already linked up earlier.
2e64971a
DM
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
55eed653 2360 RExC_rxi->data->data[ data_slot + 1 ] = (void*)widecharmap;
2b8b4781
NC
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);
07be1b83 2366#endif
786e8c11
YO
2367 return trie->jump
2368 ? MADE_JUMP_TRIE
2369 : trie->startstate>1
2370 ? MADE_EXACT_TRIE
2371 : MADE_TRIE;
2372}
2373
2374STATIC void
2375S_make_trie_failtable(pTHX_ RExC_state_t *pRExC_state, regnode *source, regnode *stclass, U32 depth)
2376{
3b753521 2377/* The Trie is constructed and compressed now so we can build a fail array if it's needed
786e8c11
YO
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
3b753521
FN
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
786e8c11
YO
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
3b753521
FN
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'.
786e8c11
YO
2393 */
2394 /* add a fail transition */
3251b653
NC
2395 const U32 trie_offset = ARG(source);
2396 reg_trie_data *trie=(reg_trie_data *)RExC_rxi->data->data[trie_offset];
786e8c11
YO
2397 U32 *q;
2398 const U32 ucharcount = trie->uniquecharcount;
1e2e3d02 2399 const U32 numstates = trie->statecount;
786e8c11
YO
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;
7918f24d
NC
2409
2410 PERL_ARGS_ASSERT_MAKE_TRIE_FAILTABLE;
786e8c11
YO
2411#ifndef DEBUGGING
2412 PERL_UNUSED_ARG(depth);
2413#endif
2414
2415
2416 ARG_SET( stclass, data_slot );
c944940b 2417 aho = (reg_ac_data *) PerlMemShared_calloc( 1, sizeof(reg_ac_data) );
f8fc2ecf 2418 RExC_rxi->data->data[ data_slot ] = (void*)aho;
3251b653 2419 aho->trie=trie_offset;
446bd890
NC
2420 aho->states=(reg_trie_state *)PerlMemShared_malloc( numstates * sizeof(reg_trie_state) );
2421 Copy( trie->states, aho->states, numstates, reg_trie_state );
786e8c11 2422 Newxz( q, numstates, U32);
c944940b 2423 aho->fail = (U32 *) PerlMemShared_calloc( numstates, sizeof(U32) );
786e8c11
YO
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({
6d99fb9b
JH
2470 PerlIO_printf(Perl_debug_log,
2471 "%*sStclass Failtable (%"UVuf" states): 0",
2472 (int)(depth * 2), "", (UV)numstates
1e2e3d02 2473 );
786e8c11
YO
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;*/
a3621e74
YO
2481}
2482
786e8c11 2483
a3621e74 2484/*
5d1c421c
JH
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
07be1b83 2495#define DEBUG_PEEP(str,scan,depth) \
b515a41d 2496 DEBUG_OPTIMISE_r({if (scan){ \
07be1b83
YO
2497 SV * const mysv=sv_newmortal(); \
2498 regnode *Next = regnext(scan); \
2499 regprop(RExC_rx, mysv, scan); \
7f69552c 2500 PerlIO_printf(Perl_debug_log, "%*s" str ">%3d: %s (%d)\n", \
07be1b83
YO
2501 (int)depth*2, "", REG_NODE_NUM(scan), SvPV_nolen_const(mysv),\
2502 Next ? (REG_NODE_NUM(Next)) : 0 ); \
b515a41d 2503 }});
07be1b83 2504
1de06328
YO
2505
2506
2507
2508
07be1b83
YO
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
be8e71aa 2513STATIC U32
07be1b83
YO
2514S_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;
72f13be8 2523 GET_RE_DEBUG_FLAGS_DECL;
f9049ba1 2524#else
d47053eb
RGS
2525 PERL_UNUSED_ARG(depth);
2526#endif
7918f24d
NC
2527
2528 PERL_ARGS_ASSERT_JOIN_EXACT;
d47053eb 2529#ifndef EXPERIMENTAL_INPLACESCAN
f9049ba1
SP
2530 PERL_UNUSED_ARG(flags);
2531 PERL_UNUSED_ARG(val);
07be1b83 2532#endif
07be1b83
YO
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) {
07be1b83
YO
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) {
786e8c11 2555 const unsigned int oldl = STR_LEN(scan);
07be1b83
YO
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
d47053eb
RGS
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 }
07be1b83
YO
2586#endif
2587 }
ced7f090
KW
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
2c2b7f86
KW
2592
2593 if (UTF
2f7f8cb1 2594 && ( OP(scan) == EXACTF || OP(scan) == EXACTFU || OP(scan) == EXACTFA)
2c2b7f86
KW
2595 && ( STR_LEN(scan) >= 6 ) )
2596 {
07be1b83
YO
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;
e294cc5d
JH
2628#ifdef EBCDIC /* RD tunifold greek 0390 and 03B0 */
2629 const char t0[] = "\xaf\x49\xaf\x42";
2630#else
07be1b83 2631 const char t0[] = "\xcc\x88\xcc\x81";
e294cc5d 2632#endif
07be1b83
YO
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) {
e294cc5d
JH
2638#ifdef EBCDIC
2639 if (((U8)t[-1] == 0x68 && (U8)t[-2] == 0xB4) ||
2640 ((U8)t[-1] == 0x46 && (U8)t[-2] == 0xB5))
2641#else
07be1b83
YO
2642 if (((U8)t[-1] == 0xB9 && (U8)t[-2] == 0xCE) ||
2643 ((U8)t[-1] == 0x85 && (U8)t[-2] == 0xCF))
e294cc5d 2644#endif
07be1b83
YO
2645 *min -= 4;
2646 }
2647 }
2648
2649#ifdef DEBUGGING
bb789b09
DM
2650 /* Allow dumping but overwriting the collection of skipped
2651 * ops and/or strings with fake optimized ops */
07be1b83
YO
2652 n = scan + NODE_SZ_STR(scan);
2653 while (n <= stop) {
bb789b09
DM
2654 OP(n) = OPTIMIZED;
2655 FLAGS(n) = 0;
2656 NEXT_OFF(n) = 0;
07be1b83
YO
2657 n++;
2658 }
2659#endif
2660 DEBUG_OPTIMISE_r(if (merged){DEBUG_PEEP("finl",scan,depth)});
2661 return stopnow;
2662}
2663
486ec47a 2664/* REx optimizer. Converts nodes into quicker variants "in place".
653099ff
GS
2665 Finds fixed substrings. */
2666
a0288114 2667/* Stops at toplevel WHILEM as well as at "last". At end *scanp is set
c277df42
IZ
2668 to the position after last scanned or to NULL. */
2669
40d049e4
YO
2670#define INIT_AND_WITHP \
2671 assert(!and_withp); \
2672 Newx(and_withp,1,struct regnode_charclass_class); \
2673 SAVEFREEPV(and_withp)
07be1b83 2674
b515a41d 2675/* this is a chain of data about sub patterns we are processing that
486ec47a 2676 need to be handled separately/specially in study_chunk. Its so
b515a41d
YO
2677 we can simulate recursion without losing state. */
2678struct scan_frame;
2679typedef 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
304ee84b
YO
2686
2687#define SCAN_COMMIT(s, data, m) scan_commit(s, data, m, is_inf)
2688
e1d1eefb
YO
2689#define CASE_SYNST_FNC(nAmE) \
2690case 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; \
2702case 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
76e3520e 2717STATIC I32
40d049e4 2718S_study_chunk(pTHX_ RExC_state_t *pRExC_state, regnode **scanp,
1de06328 2719 I32 *minlenp, I32 *deltap,
40d049e4
YO
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)
c277df42
IZ
2726 /* scanp: Start here (read-write). */
2727 /* deltap: Write maxlen-minlen here. */
2728 /* last: Stop before this one. */
40d049e4
YO
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 */
c277df42 2733{
97aff369 2734 dVAR;
c277df42
IZ
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);
aca2d497 2739 int is_inf_internal = 0; /* The studied chunk is infinite */
c277df42
IZ
2740 I32 is_par = OP(scan) == OPEN ? ARG(scan) : 0;
2741 scan_data_t data_fake;
a3621e74 2742 SV *re_trie_maxbuff = NULL;
786e8c11 2743 regnode *first_non_open = scan;
e2e6a0f1 2744 I32 stopmin = I32_MAX;
8aa23a47 2745 scan_frame *frame = NULL;
a3621e74 2746 GET_RE_DEBUG_FLAGS_DECL;
8aa23a47 2747
7918f24d
NC
2748 PERL_ARGS_ASSERT_STUDY_CHUNK;
2749
13a24bad 2750#ifdef DEBUGGING
40d049e4 2751 StructCopy(&zero_scan_data, &data_fake, scan_data_t);
13a24bad 2752#endif
40d049e4 2753
786e8c11 2754 if ( depth == 0 ) {
40d049e4 2755 while (first_non_open && OP(first_non_open) == OPEN)
786e8c11
YO
2756 first_non_open=regnext(first_non_open);
2757 }
2758
b81d288d 2759
8aa23a47
YO
2760 fake_study_recurse:
2761 while ( scan && OP(scan) != END && scan < last ){
2762 /* Peephole optimizer: */
304ee84b 2763 DEBUG_STUDYDATA("Peep:", data,depth);
8aa23a47
YO
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 }
a3621e74 2789
c277df42 2790
8aa23a47
YO
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)
304ee84b 2809 SCAN_COMMIT(pRExC_state, data, minlenp); /* Cannot merge strings after this. */
8aa23a47 2810 if (flags & SCF_DO_STCLASS)
e755fd73 2811 cl_init_zero(pRExC_state, &accum);
8aa23a47
YO
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;
58e23c8d
YO
2825
2826 data_fake.pos_delta = delta;
8aa23a47
YO
2827 next = regnext(scan);
2828 scan = NEXTOPER(scan);
2829 if (code != BRANCH)
c277df42 2830 scan = NEXTOPER(scan);
8aa23a47 2831 if (flags & SCF_DO_STCLASS) {
e755fd73 2832 cl_init(pRExC_state, &this_class);
8aa23a47
YO
2833 data_fake.start_class = &this_class;
2834 f = SCF_DO_STCLASS_AND;
58e23c8d 2835 }
8aa23a47
YO
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;
3dab1dad 2863 }
8aa23a47 2864 if (flags & SCF_DO_STCLASS)
3fffb88a 2865 cl_or(pRExC_state, &accum, &this_class);
8aa23a47
YO
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) {
3fffb88a 2878 cl_or(pRExC_state, data->start_class, &accum);
8aa23a47
YO
2879 if (min1) {
2880 cl_and(data->start_class, and_withp);
2881 flags &= ~SCF_DO_STCLASS;
653099ff 2882 }
8aa23a47
YO
2883 }
2884 else if (flags & SCF_DO_STCLASS_AND) {
2885 if (min1) {
2886 cl_and(data->start_class, &accum);
2887 flags &= ~SCF_DO_STCLASS;
de0c8cb8 2888 }
8aa23a47
YO
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;
de0c8cb8 2900 }
8aa23a47 2901 }
a3621e74 2902
8aa23a47
YO
2903 if (PERL_ENABLE_TRIE_OPTIMISATION && OP( startbranch ) == BRANCH ) {
2904 /* demq.
a3621e74 2905
8aa23a47
YO
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
a3621e74 2910
8aa23a47
YO
2911 BRANCH->EXACT=>x1
2912 BRANCH->EXACT=>x2
2913 tail
a3621e74 2914
8aa23a47 2915 which would be constructed from a pattern like /A|LIST|OF|WORDS/
a3621e74 2916
486ec47a 2917 If we can find such a subsequence we need to turn the first
8aa23a47
YO
2918 element into a trie and then add the subsequent branch exact
2919 strings to the trie.
a3621e74 2920
8aa23a47 2921 We have two cases
a3621e74 2922
3b753521 2923 1. patterns where the whole set of branches can be converted.
a3621e74 2924
8aa23a47 2925 2. patterns where only a subset can be converted.
a3621e74 2926
8aa23a47
YO
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
3b753521 2929 branches so
a3621e74 2930
8aa23a47
YO
2931 'BRANCH EXACT; BRANCH EXACT; BRANCH X'
2932 becomes BRANCH TRIE; BRANCH X;
786e8c11 2933
8aa23a47
YO
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.
a3621e74 2937
8aa23a47
YO
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
486ec47a 2940 we "jump" to the appropriate tail node. Essentially we turn
8aa23a47 2941 a nested if into a case structure of sorts.
b515a41d 2942
8aa23a47
YO
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;
a3621e74
YO
2958
2959#ifdef DEBUGGING
8aa23a47 2960 SV * const mysv = sv_newmortal(); /* for dumping */
a3621e74 2961#endif
8aa23a47
YO
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 }
a3621e74 2974
8aa23a47
YO
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
486ec47a 2994 two or more consecutive such branches we can
8aa23a47
YO
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 );
b515a41d 3013#if defined(DEBUGGING) || defined(NOJUMPTRIE)
8aa23a47 3014 regnode * const noper_next = regnext( noper );
b515a41d
YO
3015#endif
3016
8aa23a47
YO
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 )
786e8c11 3037#ifdef NOJUMPTRIE
8aa23a47 3038 && noper_next == tail
786e8c11 3039#endif
8aa23a47
YO
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 {
a0a388a1 3050/*
fbebf34e
KW
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).
0abd0d78
YO
3054
3055 If/when this is fixed the following define can be swapped
3056 in below to fully enable trie logic.
3057
a0a388a1 3058#define TRIE_TYPE_IS_SAFE 1
0abd0d78
YO
3059
3060*/
fbebf34e 3061#define TRIE_TYPE_IS_SAFE ((UTF && optype == EXACTFU) || optype==EXACT)
0abd0d78 3062
a0a388a1 3063 if ( last && TRIE_TYPE_IS_SAFE ) {
8aa23a47
YO
3064 make_trie( pRExC_state,
3065 startbranch, first, cur, tail, count,
3066 optype, depth+1 );
3067 }
3068 if ( PL_regkind[ OP( noper ) ] == EXACT
786e8c11 3069#ifdef NOJUMPTRIE
8aa23a47 3070 && noper_next == tail
786e8c11 3071#endif
8aa23a47
YO
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 });
a0a388a1
YO
3091
3092 if ( last && TRIE_TYPE_IS_SAFE ) {
8aa23a47 3093 made= make_trie( pRExC_state, startbranch, first, scan, tail, count, optype, depth+1 );
3dab1dad 3094#ifdef TRIE_STUDY_OPT
8aa23a47
YO
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 }
3dab1dad 3106#endif
8aa23a47
YO
3107 }
3108 }
3109
3110 } /* do trie */
3111
653099ff 3112 }
8aa23a47
YO
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;
f8fc2ecf 3133 start = RExC_rxi->program + 1;
8aa23a47
YO
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) {
304ee84b 3145 SCAN_COMMIT(pRExC_state,data,minlenp);
8aa23a47
YO
3146 data->longest = &(data->longest_float);
3147 }
3148 is_inf = is_inf_internal = 1;
3149 if (flags & SCF_DO_STCLASS_OR) /* Allow everything */
3fffb88a 3150 cl_anything(pRExC_state, data->start_class);
8aa23a47
YO
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;
b515a41d 3194 }
8aa23a47
YO
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));
b515a41d 3205 }
8aa23a47
YO
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
54251c2e 3214
486ec47a 3215 /* If compatible, we or it in below. It is compatible if is
54251c2e
KW
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 */
8aa23a47
YO
3221 if (uc >= 0x100 ||
3222 (!(data->start_class->flags & (ANYOF_CLASS | ANYOF_LOCALE))
3223 && !ANYOF_BITMAP_TEST(data->start_class, uc)
39065660 3224 && (!(data->start_class->flags & ANYOF_LOC_NONBITMAP_FOLD)
54251c2e 3225 || !ANYOF_BITMAP_TEST(data->start_class, PL_fold_latin1[uc])))
8aa23a47 3226 )
d18bf9dc 3227 {
8aa23a47 3228 compat = 0;
d18bf9dc 3229 }
8aa23a47
YO
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);
d18bf9dc
KW
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 }
8aa23a47
YO
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);
304ee84b 3272 SCAN_COMMIT(pRExC_state, data, minlenp);
8aa23a47
YO
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;
8aa23a47 3285 if (uc >= 0x100 ||
54251c2e
KW
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 {
8aa23a47 3290 compat = 0;
54251c2e 3291 }
8aa23a47
YO
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);
653099ff 3296 data->start_class->flags &= ~ANYOF_EOS;
39065660 3297 data->start_class->flags |= ANYOF_LOC_NONBITMAP_FOLD;
970c8436 3298 if (OP(scan) == EXACTFL) {
af302e7f
KW
3299 /* XXX This set is probably no longer necessary, and
3300 * probably wrong as LOCALE now is on in the initial
3301 * state */
8aa23a47 3302 data->start_class->flags |= ANYOF_LOCALE;
970c8436
KW
3303 }
3304 else {
3305
54251c2e
KW
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]);
970c8436 3311 }
653099ff 3312 }
d18bf9dc
KW
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 }
8aa23a47
YO
3321 }
3322 else if (flags & SCF_DO_STCLASS_OR) {
39065660 3323 if (data->start_class->flags & ANYOF_LOC_NONBITMAP_FOLD) {
8aa23a47
YO
3324 /* false positive possible if the class is case-folded.
3325 Assume that the locale settings are the same... */
970c8436 3326 if (uc < 0x100) {
1aa99e6b 3327 ANYOF_BITMAP_SET(data->start_class, uc);
970c8436
KW
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,
54251c2e 3334 PL_fold_latin1[uc]);
970c8436
KW
3335 }
3336 }
653099ff
GS
3337 data->start_class->flags &= ~ANYOF_EOS;
3338 }
8aa23a47 3339 cl_and(data->start_class, and_withp);
653099ff 3340 }
8aa23a47
YO
3341 flags &= ~SCF_DO_STCLASS;
3342 }
e52fc539 3343 else if (REGNODE_VARIES(OP(scan))) {
8aa23a47
YO
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);
c277df42 3380 if (flags & SCF_DO_SUBSTR) {
304ee84b 3381 SCAN_COMMIT(pRExC_state, data, minlenp); /* Cannot extend fixed substrings */
8aa23a47 3382 data->longest = &(data->longest_float);
c277df42 3383 }
8aa23a47
YO
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);
653099ff 3394 }
8aa23a47
YO
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);
653099ff 3399 }
8aa23a47
YO
3400 scan = NEXTOPER(scan) + EXTRA_STEP_2ARGS;
3401 next_is_eval = (OP(scan) == EVAL);
3402 do_curly:
3403 if (flags & SCF_DO_SUBSTR) {
304ee84b 3404 if (mincount == 0) SCAN_COMMIT(pRExC_state,data,minlenp); /* Cannot extend fixed substrings */
8aa23a47 3405 pos_before = data->pos_min;
b45f050a 3406 }
8aa23a47
YO
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) {
e755fd73 3414 cl_init(pRExC_state, &this_class);
8aa23a47
YO
3415 oclass = data->start_class;
3416 data->start_class = &this_class;
3417 f |= SCF_DO_STCLASS_AND;
3418 f &= ~SCF_DO_STCLASS_OR;
3419 }
779bcb7d
NC
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))
8aa23a47 3430 f &= ~SCF_WHILEM_VISITED_POS;
b45f050a 3431
8aa23a47
YO
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);
b515a41d 3437
8aa23a47
YO
3438 if (flags & SCF_DO_STCLASS)
3439 data->start_class = oclass;
3440 if (mincount == 0 || minnext == 0) {
3441 if (flags & SCF_DO_STCLASS_OR) {
3fffb88a 3442 cl_or(pRExC_state, data->start_class, &this_class);
8aa23a47
YO
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) {
3fffb88a 3458 cl_or(pRExC_state, data->start_class, &this_class);
8aa23a47
YO
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))
668c081a 3471 && maxcount <= REG_INFTY/3) /* Complement check for big count */
8aa23a47 3472 {
668c081a
NC
3473 ckWARNreg(RExC_parse,
3474 "Quantifier unexpected on zero-length expression");
8aa23a47
YO
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;
497b47a8 3492#ifdef DEBUGGING
8aa23a47 3493 regnode *nxt2;
497b47a8 3494#endif
c277df42 3495
8aa23a47
YO
3496 /* Skip open. */
3497 nxt = regnext(nxt);
e52fc539 3498 if (!REGNODE_SIMPLE(OP(nxt))
8aa23a47
YO
3499 && !(PL_regkind[OP(nxt)] == EXACT
3500 && STR_LEN(nxt) == 1))
3501 goto nogo;
497b47a8 3502#ifdef DEBUGGING
8aa23a47 3503 nxt2 = nxt;
497b47a8 3504#endif
8aa23a47
YO
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. */
40d049e4 3516
c277df42 3517#ifdef DEBUGGING
8aa23a47 3518 OP(nxt1 + 1) = OPTIMIZED; /* was count. */
fda99bee
KW
3519 NEXT_OFF(nxt1+ 1) = 0; /* just for consistency. */
3520 NEXT_OFF(nxt2) = 0; /* just for consistency with CURLY. */
8aa23a47
YO
3521 OP(nxt) = OPTIMIZED; /* was CLOSE. */
3522 OP(nxt + 1) = OPTIMIZED; /* was count. */
fda99bee 3523 NEXT_OFF(nxt+ 1) = 0; /* just for consistency. */
b81d288d 3524#endif
8aa23a47
YO
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. */
b3c0965f 3546 if ((data->flags & SF_IN_PAR) && OP(nxt) == CLOSE) {
8aa23a47
YO
3547 /* Set the parenth number. */
3548 regnode *nxt1 = NEXTOPER(oscan) + EXTRA_STEP_2ARGS; /* OPEN*/
3549
8aa23a47
YO
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*/
40d049e4 3554 }
8aa23a47
YO
3555 OP(nxt1) = OPTIMIZED; /* was OPEN. */
3556 OP(nxt) = OPTIMIZED; /* was CLOSE. */
40d049e4 3557
c277df42 3558#ifdef DEBUGGING
8aa23a47
YO
3559 OP(nxt1 + 1) = OPTIMIZED; /* was count. */
3560 OP(nxt + 1) = OPTIMIZED; /* was count. */
486ec47a
PA
3561 NEXT_OFF(nxt1 + 1) = 0; /* just for consistency. */
3562 NEXT_OFF(nxt + 1) = 0; /* just for consistency. */
b81d288d 3563#endif
c277df42 3564#if 0
8aa23a47
YO
3565 while ( nxt1 && (OP(nxt1) != WHILEM)) {
3566 regnode *nnxt = regnext(nxt1);
8aa23a47
YO
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 */
c277df42 3574 }
8aa23a47 3575 nxt1 = nnxt;
c277df42 3576 }
5d1c421c 3577#endif
8aa23a47
YO
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.
3b753521 3588 However, this time it's not a subexpression
8aa23a47
YO
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;
a0ed51b3 3606
8aa23a47
YO
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;
b515a41d 3613
8aa23a47
YO
3614 if (pos_before >= data->last_start_min)
3615 b = pos_before;
3616 else
3617 b = data->last_start_min;
b515a41d 3618
8aa23a47
YO
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;
8aa23a47
YO
3633 l -= old;
3634 /* Get the added string: */
740cce10 3635 last_str = newSVpvn_utf8(s + old, l, UTF);
8aa23a47
YO
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)
bd94e887 3653 mg->mg_len += CHR_SVLEN(last_str) - l;
b515a41d 3654 }
8aa23a47 3655 data->last_end += l * (mincount - 1);
b515a41d 3656 }
8aa23a47
YO
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 }
c277df42 3663 }
8aa23a47
YO
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. */
304ee84b 3671 SCAN_COMMIT(pRExC_state,data,minlenp);
8aa23a47
YO
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);
c277df42 3691 }
8aa23a47
YO
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;
f56b6394 3701 default: /* REF, ANYOFV, and CLUMP only? */
8aa23a47 3702 if (flags & SCF_DO_SUBSTR) {
304ee84b 3703 SCAN_COMMIT(pRExC_state,data,minlenp); /* Cannot expect anything... */
8aa23a47
YO
3704 data->longest = &(data->longest_float);
3705 }
3706 is_inf = is_inf_internal = 1;
3707 if (flags & SCF_DO_STCLASS_OR)
3fffb88a 3708 cl_anything(pRExC_state, data->start_class);
8aa23a47
YO
3709 flags &= ~SCF_DO_STCLASS;
3710 break;
c277df42 3711 }
8aa23a47 3712 }
e1d1eefb
YO
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++)
e64b1bd1 3719 if (!is_VERTWS_cp(value))
b9a59e08
KW
3720 ANYOF_BITMAP_CLEAR(data->start_class, value);
3721 }
3722 else {
e1d1eefb 3723 for (value = 0; value < 256; value++)
e64b1bd1 3724 if (is_VERTWS_cp(value))
b9a59e08
KW
3725 ANYOF_BITMAP_SET(data->start_class, value);
3726 }
e1d1eefb
YO
3727 if (flags & SCF_DO_STCLASS_OR)
3728 cl_and(data->start_class, and_withp);
3729 flags &= ~SCF_DO_STCLASS;
3730 }
3731 min += 1;
f9a79580 3732 delta += 1;
e1d1eefb
YO
3733 if (flags & SCF_DO_SUBSTR) {
3734 SCAN_COMMIT(pRExC_state,data,minlenp); /* Cannot expect anything... */
3735 data->pos_min += 1;
f9a79580 3736 data->pos_delta += 1;
e1d1eefb
YO
3737 data->longest = &(data->longest_float);
3738 }
e1d1eefb 3739 }
f9a79580 3740 else if (OP(scan) == FOLDCHAR) {
ced7f090 3741 int d = ARG(scan) == LATIN_SMALL_LETTER_SHARP_S ? 1 : 2;
f9a79580
RGS
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 }
e52fc539 3752 else if (REGNODE_SIMPLE(OP(scan))) {
8aa23a47 3753 int value = 0;
653099ff 3754
8aa23a47 3755 if (flags & SCF_DO_SUBSTR) {
304ee84b 3756 SCAN_COMMIT(pRExC_state,data,minlenp);
8aa23a47
YO
3757 data->pos_min++;
3758 }
3759 min++;
3760 if (flags & SCF_DO_STCLASS) {
3761 data->start_class->flags &= ~ANYOF_EOS; /* No match on empty */
b515a41d 3762
8aa23a47
YO
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 */
3fffb88a 3771 cl_anything(pRExC_state, data->start_class);
8aa23a47
YO
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')
3a15e693 3778 || ANYOF_CLASS_TEST_ANY_SET(data->start_class));
3fffb88a 3779 cl_anything(pRExC_state, data->start_class);
653099ff 3780 }
8aa23a47
YO
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);
653099ff 3788 else
3fffb88a 3789 cl_or(pRExC_state, data->start_class,
8aa23a47
YO
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);
980866de 3796 if (OP(scan) == ALNUMU) {
a12cf05f
KW
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 }
8aa23a47 3809 }
653099ff 3810 }
8aa23a47
YO
3811 else {
3812 if (data->start_class->flags & ANYOF_LOCALE)
3813 ANYOF_CLASS_SET(data->start_class,ANYOF_ALNUM);
af302e7f
KW
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) {
a12cf05f
KW
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 }
8aa23a47
YO
3831 }
3832 break;
8aa23a47
YO
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);
980866de 3837 if (OP(scan) == NALNUMU) {
a12cf05f
KW
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 }
653099ff
GS
3850 }
3851 }
8aa23a47
YO
3852 else {
3853 if (data->start_class->flags & ANYOF_LOCALE)
3854 ANYOF_CLASS_SET(data->start_class,ANYOF_NALNUM);
af302e7f 3855
75950e1c
KW
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 }
e9a9c1bc 3864 }
75950e1c
KW
3865 } else {
3866 for (value = 0; value < 256; value++) {
3867 if (! isALNUM(value)) {
3868 ANYOF_BITMAP_SET(data->start_class, value);
3869 }
3870 }
3871 }
653099ff 3872 }
8aa23a47 3873 break;
8aa23a47
YO
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);
980866de 3878 if (OP(scan) == SPACEU) {
a12cf05f
KW
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 }
653099ff
GS
3891 }
3892 }
8aa23a47 3893 else {
a12cf05f 3894 if (data->start_class->flags & ANYOF_LOCALE) {
8aa23a47 3895 ANYOF_CLASS_SET(data->start_class,ANYOF_SPACE);
a12cf05f 3896 }
af302e7f 3897 if (OP(scan) == SPACEU) {
a12cf05f
KW
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 }
8aa23a47 3909 }
653099ff 3910 }
8aa23a47 3911 break;
8aa23a47
YO
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);
980866de 3916 if (OP(scan) == NSPACEU) {
a12cf05f
KW
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 }
653099ff 3929 }
8aa23a47
YO
3930 }
3931 else {
3932 if (data->start_class->flags & ANYOF_LOCALE)
3933 ANYOF_CLASS_SET(data->start_class,ANYOF_NSPACE);
af302e7f 3934 if (OP(scan) == NSPACEU) {
a12cf05f
KW
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 }
653099ff 3948 }
8aa23a47 3949 break;
8aa23a47
YO
3950 case DIGIT:
3951 if (flags & SCF_DO_STCLASS_AND) {
bcc0256f 3952 if (!(data->start_class->flags & ANYOF_LOCALE)) {
bf3c5c06
KW
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);
bcc0256f 3957 }
8aa23a47
YO
3958 }
3959 else {
3960 if (data->start_class->flags & ANYOF_LOCALE)
3961 ANYOF_CLASS_SET(data->start_class,ANYOF_DIGIT);
75950e1c
KW
3962 for (value = 0; value < 256; value++)
3963 if (isDIGIT(value))
3964 ANYOF_BITMAP_SET(data->start_class, value);
8aa23a47
YO
3965 }
3966 break;
3967 case NDIGIT:
3968 if (flags & SCF_DO_STCLASS_AND) {
bcc0256f 3969 if (!(data->start_class->flags & ANYOF_LOCALE))
bf3c5c06 3970 ANYOF_CLASS_CLEAR(data->start_class,ANYOF_DIGIT);
8aa23a47
YO
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);
75950e1c
KW
3978 for (value = 0; value < 256; value++)
3979 if (!isDIGIT(value))
3980 ANYOF_BITMAP_SET(data->start_class, value);
653099ff 3981 }
8aa23a47 3982 break;
e1d1eefb
YO
3983 CASE_SYNST_FNC(VERTWS);
3984 CASE_SYNST_FNC(HORIZWS);
3985
8aa23a47
YO
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 */
1de06328 4007
8aa23a47
YO
4008 I32 deltanext, minnext, fake = 0;
4009 regnode *nscan;
4010 struct regnode_charclass_class intrnl;
4011 int f = 0;
1de06328 4012
8aa23a47
YO
4013 data_fake.flags = 0;
4014 if (data) {
4015 data_fake.whilem_c = data->whilem_c;
4016 data_fake.last_closep = data->last_closep;
c277df42 4017 }
8aa23a47
YO
4018 else
4019 data_fake.last_closep = &fake;
58e23c8d 4020 data_fake.pos_delta = delta;
8aa23a47
YO
4021 if ( flags & SCF_DO_STCLASS && !scan->flags
4022 && OP(scan) == IFMATCH ) { /* Lookahead */
e755fd73 4023 cl_init(pRExC_state, &intrnl);
8aa23a47
YO
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) {
58e23c8d 4035 FAIL("Variable length lookbehind not implemented");
8aa23a47
YO
4036 }
4037 else if (minnext > (I32)U8_MAX) {
58e23c8d 4038 FAIL2("Lookbehind longer than %"UVuf" not implemented", (UV)U8_MAX);
8aa23a47
YO
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) {
906cdd2b
HS
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 */
e755fd73 4057 cl_init(pRExC_state, data->start_class);
906cdd2b
HS
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 }
8aa23a47 4066 }
cb434fcc 4067 }
8aa23a47
YO
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
3b753521 4083 minlens when it's all done. This way we don't
8aa23a47
YO
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)
304ee84b 4096 SCAN_COMMIT(pRExC_state, &data_fake,minlenp);
8aa23a47
YO
4097 data_fake.last_found=newSVsv(data->last_found);
4098 }
4099 }
4100 else
4101 data_fake.last_closep = &fake;
4102 data_fake.flags = 0;
58e23c8d 4103 data_fake.pos_delta = delta;
8aa23a47
YO
4104 if (is_inf)
4105 data_fake.flags |= SF_IS_INF;
4106 if ( flags & SCF_DO_STCLASS && !scan->flags
4107 && OP(scan) == IFMATCH ) { /* Lookahead */
e755fd73 4108 cl_init(pRExC_state, &intrnl);
8aa23a47
YO
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) {
58e23c8d 4121 FAIL("Variable length lookbehind not implemented");
8aa23a47
YO
4122 }
4123 else if (*minnextp > (I32)U8_MAX) {
58e23c8d 4124 FAIL2("Lookbehind longer than %"UVuf" not implemented", (UV)U8_MAX);
8aa23a47
YO
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;
304ee84b 4147 SCAN_COMMIT(pRExC_state, &data_fake, minnextp);
8aa23a47
YO
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
40d049e4 4167 }
8aa23a47
YO
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);
b515a41d 4180
8aa23a47
YO
4181 if ( next && (OP(next) != WHILEM) && next < last)
4182 is_par = 0; /* Disable optimization */
40d049e4 4183 }
8aa23a47
YO
4184 if (data)
4185 *(data->last_closep) = ARG(scan);
4186 }
4187 else if (OP(scan) == EVAL) {
c277df42
IZ
4188 if (data)
4189 data->flags |= SF_HAS_EVAL;
8aa23a47
YO
4190 }
4191 else if ( PL_regkind[OP(scan)] == ENDLIKE ) {
4192 if (flags & SCF_DO_SUBSTR) {
304ee84b 4193 SCAN_COMMIT(pRExC_state,data,minlenp);
8aa23a47 4194 flags &= ~SCF_DO_SUBSTR;
40d049e4 4195 }
8aa23a47
YO
4196 if (data && OP(scan)==ACCEPT) {
4197 data->flags |= SCF_SEEN_ACCEPT;
4198 if (stopmin > min)
4199 stopmin = min;
e2e6a0f1 4200 }
8aa23a47
YO
4201 }
4202 else if (OP(scan) == LOGICAL && scan->flags == 2) /* Embedded follows */
4203 {
0f5d15d6 4204 if (flags & SCF_DO_SUBSTR) {
304ee84b 4205 SCAN_COMMIT(pRExC_state,data,minlenp);
0f5d15d6
IZ
4206 data->longest = &(data->longest_float);
4207 }
4208 is_inf = is_inf_internal = 1;
653099ff 4209 if (flags & SCF_DO_STCLASS_OR) /* Allow everything */
3fffb88a 4210 cl_anything(pRExC_state, data->start_class);
96776eda 4211 flags &= ~SCF_DO_STCLASS;
8aa23a47 4212 }
58e23c8d 4213 else if (OP(scan) == GPOS) {
bbe252da 4214 if (!(RExC_rx->extflags & RXf_GPOS_FLOAT) &&
58e23c8d
YO
4215 !(delta || is_inf || (data && data->pos_delta)))
4216 {
bbe252da
YO
4217 if (!(RExC_rx->extflags & RXf_ANCH) && (flags & SCF_DO_SUBSTR))
4218 RExC_rx->extflags |= RXf_ANCH_GPOS;
58e23c8d
YO
4219 if (RExC_rx->gofs < (U32)min)
4220 RExC_rx->gofs = min;
4221 } else {
bbe252da 4222 RExC_rx->extflags |= RXf_GPOS_FLOAT;
58e23c8d
YO
4223 RExC_rx->gofs = 0;
4224 }
4225 }
786e8c11 4226#ifdef TRIE_STUDY_OPT
40d049e4 4227#ifdef FULL_TRIE_STUDY
8aa23a47
YO
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);
f8fc2ecf 4234 reg_trie_data *trie = (reg_trie_data*)RExC_rxi->data->data[ ARG(scan) ];
8aa23a47
YO
4235 I32 max1 = 0, min1 = I32_MAX;
4236 struct regnode_charclass_class accum;
4237
4238 if (flags & SCF_DO_SUBSTR) /* XXXX Add !SUSPEND? */
304ee84b 4239 SCAN_COMMIT(pRExC_state, data,minlenp); /* Cannot merge strings after this. */
8aa23a47 4240 if (flags & SCF_DO_STCLASS)
e755fd73 4241 cl_init_zero(pRExC_state, &accum);
8aa23a47
YO
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;
58e23c8d 4262 data_fake.pos_delta = delta;
8aa23a47 4263 if (flags & SCF_DO_STCLASS) {
e755fd73 4264 cl_init(pRExC_state, &this_class);
8aa23a47
YO
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)
3fffb88a 4308 cl_or(pRExC_state, &accum, &this_class);
8aa23a47
YO
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) {
3fffb88a 4320 cl_or(pRExC_state, data->start_class, &accum);
8aa23a47
YO
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 }
786e8c11 4347#else
8aa23a47 4348 else if (PL_regkind[OP(scan)] == TRIE) {
f8fc2ecf 4349 reg_trie_data *trie = (reg_trie_data*)RExC_rxi->data->data[ ARG(scan) ];
8aa23a47
YO
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) {
304ee84b 4356 SCAN_COMMIT(pRExC_state,data,minlenp); /* Cannot expect anything... */
8aa23a47
YO
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;
b515a41d 4364 }
8aa23a47
YO
4365#endif /* old or new */
4366#endif /* TRIE_STUDY_OPT */
e1d1eefb 4367
8aa23a47
YO
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;
c277df42
IZ
4377 }
4378
4379 finish:
8aa23a47 4380 assert(!frame);
304ee84b 4381 DEBUG_STUDYDATA("pre-fin:",data,depth);
8aa23a47 4382
c277df42 4383 *scanp = scan;
aca2d497 4384 *deltap = is_inf_internal ? I32_MAX : delta;
b81d288d 4385 if (flags & SCF_DO_SUBSTR && is_inf)
c277df42 4386 data->pos_delta = I32_MAX - data->pos_min;
786e8c11 4387 if (is_par > (I32)U8_MAX)
c277df42
IZ
4388 is_par = 0;
4389 if (is_par && pars==1 && data) {
4390 data->flags |= SF_IN_PAR;
4391 data->flags &= ~SF_HAS_PAR;
a0ed51b3
LW
4392 }
4393 else if (pars && data) {
c277df42
IZ
4394 data->flags |= SF_HAS_PAR;
4395 data->flags &= ~SF_IN_PAR;
4396 }
653099ff 4397 if (flags & SCF_DO_STCLASS_OR)
40d049e4 4398 cl_and(data->start_class, and_withp);
786e8c11
YO
4399 if (flags & SCF_TRIE_RESTUDY)
4400 data->flags |= SCF_TRIE_RESTUDY;
1de06328 4401
304ee84b 4402 DEBUG_STUDYDATA("post-fin:",data,depth);
1de06328 4403
e2e6a0f1 4404 return min < stopmin ? min : stopmin;
c277df42
IZ
4405}
4406
2eccd3b2
NC
4407STATIC U32
4408S_add_data(RExC_state_t *pRExC_state, U32 n, const char *s)
c277df42 4409{
4a4e7719
NC
4410 U32 count = RExC_rxi->data ? RExC_rxi->data->count : 0;
4411
7918f24d
NC
4412 PERL_ARGS_ASSERT_ADD_DATA;
4413
4a4e7719
NC
4414 Renewc(RExC_rxi->data,
4415 sizeof(*RExC_rxi->data) + sizeof(void*) * (count + n - 1),
4416 char, struct reg_data);
4417 if(count)
f8fc2ecf 4418 Renew(RExC_rxi->data->what, count + n, U8);
4a4e7719 4419 else
f8fc2ecf 4420 Newx(RExC_rxi->data->what, n, U8);
4a4e7719
NC
4421 RExC_rxi->data->count = count + n;
4422 Copy(s, RExC_rxi->data->what + count, n, U8);
4423 return count;
c277df42
IZ
4424}
4425
f8149455 4426/*XXX: todo make this not included in a non debugging perl */
76234dfb 4427#ifndef PERL_IN_XSUB_RE
d88dccdf 4428void
864dbfa3 4429Perl_reginitcolors(pTHX)
d88dccdf 4430{
97aff369 4431 dVAR;
1df70142 4432 const char * const s = PerlEnv_getenv("PERL_RE_COLORS");
d88dccdf 4433 if (s) {
1df70142
AL
4434 char *t = savepv(s);
4435 int i = 0;
4436 PL_colors[0] = t;
d88dccdf 4437 while (++i < 6) {
1df70142
AL
4438 t = strchr(t, '\t');
4439 if (t) {
4440 *t = '\0';
4441 PL_colors[i] = ++t;
d88dccdf
IZ
4442 }
4443 else
1df70142 4444 PL_colors[i] = t = (char *)"";
d88dccdf
IZ
4445 }
4446 } else {
1df70142 4447 int i = 0;
b81d288d 4448 while (i < 6)
06b5626a 4449 PL_colors[i++] = (char *)"";
d88dccdf
IZ
4450 }
4451 PL_colorset = 1;
4452}
76234dfb 4453#endif
8615cb43 4454
07be1b83 4455
786e8c11
YO
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
f9f4320a 4465
a687059c 4466/*
e50aee73 4467 - pregcomp - compile a regular expression into internal code
a687059c
LW
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 */
b9b4dddf
YO
4481
4482
4483
f9f4320a 4484#ifndef PERL_IN_XSUB_RE
f9f4320a
YO
4485#define RE_ENGINE_PTR &PL_core_reg_engine
4486#else
f9f4320a
YO
4487extern const struct regexp_engine my_reg_engine;
4488#define RE_ENGINE_PTR &my_reg_engine
4489#endif
6d5c990f
RGS
4490
4491#ifndef PERL_IN_XSUB_RE
3ab4a224 4492REGEXP *
1593ad57 4493Perl_pregcomp(pTHX_ SV * const pattern, const U32 flags)
a687059c 4494{
97aff369 4495 dVAR;
6d5c990f 4496 HV * const table = GvHV(PL_hintgv);
7918f24d
NC
4497
4498 PERL_ARGS_ASSERT_PREGCOMP;
4499
f9f4320a
YO
4500 /* Dispatch a request to compile a regexp to correct
4501 regexp engine. */
f9f4320a
YO
4502 if (table) {
4503 SV **ptr= hv_fetchs(table, "regcomp", FALSE);
6d5c990f 4504 GET_RE_DEBUG_FLAGS_DECL;
1e2e3d02 4505 if (ptr && SvIOK(*ptr) && SvIV(*ptr)) {
f9f4320a
YO
4506 const regexp_engine *eng=INT2PTR(regexp_engine*,SvIV(*ptr));
4507 DEBUG_COMPILE_r({
8d8756e7 4508 PerlIO_printf(Perl_debug_log, "Using engine %"UVxf"\n",
f9f4320a
YO
4509 SvIV(*ptr));
4510 });
3ab4a224 4511 return CALLREGCOMP_ENG(eng, pattern, flags);
f9f4320a 4512 }
b9b4dddf 4513 }
3ab4a224 4514 return Perl_re_compile(aTHX_ pattern, flags);
2a5d9b1d 4515}
6d5c990f 4516#endif
2a5d9b1d 4517
3ab4a224 4518REGEXP *
29b09c41 4519Perl_re_compile(pTHX_ SV * const pattern, U32 orig_pm_flags)
2a5d9b1d
RGS
4520{
4521 dVAR;
288b8c02
NC
4522 REGEXP *rx;
4523 struct regexp *r;
f8fc2ecf 4524 register regexp_internal *ri;
3ab4a224 4525 STRLEN plen;
5d51ce98
KW
4526 char *exp;
4527 char* xend;
c277df42 4528 regnode *scan;
a0d0e21e 4529 I32 flags;
a0d0e21e 4530 I32 minlen = 0;
29b09c41 4531 U32 pm_flags;
e7f38d0f
YO
4532
4533 /* these are all flags - maybe they should be turned
4534 * into a single int with different bit masks */
4535 I32 sawlookahead = 0;
a0d0e21e
LW
4536 I32 sawplus = 0;
4537 I32 sawopen = 0;
29b09c41 4538 bool used_setjump = FALSE;
4624b182 4539 regex_charset initial_charset = get_regex_charset(orig_pm_flags);
e7f38d0f 4540
bbd61b5f
KW
4541 U8 jump_ret = 0;
4542 dJMPENV;
2c2d71f5 4543 scan_data_t data;
830247a4 4544 RExC_state_t RExC_state;
be8e71aa 4545 RExC_state_t * const pRExC_state = &RExC_state;
07be1b83 4546#ifdef TRIE_STUDY_OPT
5d51ce98 4547 int restudied;
07be1b83
YO
4548 RExC_state_t copyRExC_state;
4549#endif
2a5d9b1d 4550 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
4551
4552 PERL_ARGS_ASSERT_RE_COMPILE;
4553
6d5c990f 4554 DEBUG_r(if (!PL_colorset) reginitcolors());
a0d0e21e 4555
29b09c41 4556 RExC_utf8 = RExC_orig_utf8 = SvUTF8(pattern);
e40e74fe 4557 RExC_uni_semantics = 0;
4624b182 4558 RExC_contains_locale = 0;
7b597bb8 4559
d6bd454d 4560 /****************** LONG JUMP TARGET HERE***********************/
bbd61b5f
KW
4561 /* Longjmp back to here if have to switch in midstream to utf8 */
4562 if (! RExC_orig_utf8) {
4563 JMPENV_PUSH(jump_ret);
29b09c41 4564 used_setjump = TRUE;
bbd61b5f
KW
4565 }
4566
5d51ce98 4567 if (jump_ret == 0) { /* First time through */
29b09c41
KW
4568 exp = SvPV(pattern, plen);
4569 xend = exp + plen;
4570 /* ignore the utf8ness if the pattern is 0 length */
4571 if (plen == 0) {
4572 RExC_utf8 = RExC_orig_utf8 = 0;
4573 }
4574
5d51ce98
KW
4575 DEBUG_COMPILE_r({
4576 SV *dsv= sv_newmortal();
4577 RE_PV_QUOTED_DECL(s, RExC_utf8,
4578 dsv, exp, plen, 60);
4579 PerlIO_printf(Perl_debug_log, "%sCompiling REx%s %s\n",
4580 PL_colors[4],PL_colors[5],s);
4581 });
4582 }
4583 else { /* longjumped back */
bbd61b5f
KW
4584 STRLEN len = plen;
4585
5d51ce98
KW
4586 /* If the cause for the longjmp was other than changing to utf8, pop
4587 * our own setjmp, and longjmp to the correct handler */
bbd61b5f
KW
4588 if (jump_ret != UTF8_LONGJMP) {
4589 JMPENV_POP;
4590 JMPENV_JUMP(jump_ret);
4591 }
4592
595598ee
KW
4593 GET_RE_DEBUG_FLAGS;
4594
bbd61b5f
KW
4595 /* It's possible to write a regexp in ascii that represents Unicode
4596 codepoints outside of the byte range, such as via \x{100}. If we
4597 detect such a sequence we have to convert the entire pattern to utf8
4598 and then recompile, as our sizing calculation will have been based
4599 on 1 byte == 1 character, but we will need to use utf8 to encode
4600 at least some part of the pattern, and therefore must convert the whole
4601 thing.
4602 -- dmq */
4603 DEBUG_PARSE_r(PerlIO_printf(Perl_debug_log,
4604 "UTF8 mismatch! Converting to utf8 for resizing and compile\n"));
595598ee 4605 exp = (char*)Perl_bytes_to_utf8(aTHX_ (U8*)SvPV(pattern, plen), &len);
bbd61b5f
KW
4606 xend = exp + len;
4607 RExC_orig_utf8 = RExC_utf8 = 1;
4608 SAVEFREEPV(exp);
4609 }
4610
5d51ce98
KW
4611#ifdef TRIE_STUDY_OPT
4612 restudied = 0;
4613#endif
4614
29b09c41 4615 pm_flags = orig_pm_flags;
a62b1201 4616
4624b182
KW
4617 if (initial_charset == REGEX_LOCALE_CHARSET) {
4618 RExC_contains_locale = 1;
4619 }
4620 else if (RExC_utf8 && initial_charset == REGEX_DEPENDS_CHARSET) {
4621
4622 /* Set to use unicode semantics if the pattern is in utf8 and has the
4623 * 'depends' charset specified, as it means unicode when utf8 */
a62b1201 4624 set_regex_charset(&pm_flags, REGEX_UNICODE_CHARSET);
29b09c41
KW
4625 }
4626
02daf0ab 4627 RExC_precomp = exp;
c737faaf 4628 RExC_flags = pm_flags;
830247a4 4629 RExC_sawback = 0;
bbce6d69 4630
830247a4 4631 RExC_seen = 0;
b57e4118 4632 RExC_in_lookbehind = 0;
830247a4
IZ
4633 RExC_seen_zerolen = *exp == '^' ? -1 : 0;
4634 RExC_seen_evals = 0;
4635 RExC_extralen = 0;
e2a7e165 4636 RExC_override_recoding = 0;
c277df42 4637
bbce6d69 4638 /* First pass: determine size, legality. */
830247a4 4639 RExC_parse = exp;
fac92740 4640 RExC_start = exp;
830247a4
IZ
4641 RExC_end = xend;
4642 RExC_naughty = 0;
4643 RExC_npar = 1;
e2e6a0f1 4644 RExC_nestroot = 0;
830247a4
IZ
4645 RExC_size = 0L;
4646 RExC_emit = &PL_regdummy;
4647 RExC_whilem_seen = 0;
40d049e4
YO
4648 RExC_open_parens = NULL;
4649 RExC_close_parens = NULL;
4650 RExC_opend = NULL;
81714fb9 4651 RExC_paren_names = NULL;
1f1031fe
YO
4652#ifdef DEBUGGING
4653 RExC_paren_name_list = NULL;
4654#endif
40d049e4
YO
4655 RExC_recurse = NULL;
4656 RExC_recurse_count = 0;
81714fb9 4657
85ddcde9
JH
4658#if 0 /* REGC() is (currently) a NOP at the first pass.
4659 * Clever compilers notice this and complain. --jhi */
830247a4 4660 REGC((U8)REG_MAGIC, (char*)RExC_emit);
85ddcde9 4661#endif
3dab1dad
YO
4662 DEBUG_PARSE_r(PerlIO_printf(Perl_debug_log, "Starting first pass (sizing)\n"));
4663 if (reg(pRExC_state, 0, &flags,1) == NULL) {
c445ea15 4664 RExC_precomp = NULL;
a0d0e21e
LW
4665 return(NULL);
4666 }
bbd61b5f 4667
29b09c41
KW
4668 /* Here, finished first pass. Get rid of any added setjmp */
4669 if (used_setjump) {
bbd61b5f 4670 JMPENV_POP;
02daf0ab 4671 }
e40e74fe 4672
07be1b83 4673 DEBUG_PARSE_r({
81714fb9
YO
4674 PerlIO_printf(Perl_debug_log,
4675 "Required size %"IVdf" nodes\n"
4676 "Starting second pass (creation)\n",
4677 (IV)RExC_size);
07be1b83
YO
4678 RExC_lastnum=0;
4679 RExC_lastparse=NULL;
4680 });
e40e74fe
KW
4681
4682 /* The first pass could have found things that force Unicode semantics */
4683 if ((RExC_utf8 || RExC_uni_semantics)
4684 && get_regex_charset(pm_flags) == REGEX_DEPENDS_CHARSET)
4685 {
4686 set_regex_charset(&pm_flags, REGEX_UNICODE_CHARSET);
4687 }
4688
c277df42
IZ
4689 /* Small enough for pointer-storage convention?
4690 If extralen==0, this means that we will not need long jumps. */
830247a4
IZ
4691 if (RExC_size >= 0x10000L && RExC_extralen)
4692 RExC_size += RExC_extralen;
c277df42 4693 else
830247a4
IZ
4694 RExC_extralen = 0;
4695 if (RExC_whilem_seen > 15)
4696 RExC_whilem_seen = 15;
a0d0e21e 4697
f9f4320a
YO
4698 /* Allocate space and zero-initialize. Note, the two step process
4699 of zeroing when in debug mode, thus anything assigned has to
4700 happen after that */
d2f13c59 4701 rx = (REGEXP*) newSV_type(SVt_REGEXP);
288b8c02 4702 r = (struct regexp*)SvANY(rx);
f8fc2ecf
YO
4703 Newxc(ri, sizeof(regexp_internal) + (unsigned)RExC_size * sizeof(regnode),
4704 char, regexp_internal);
4705 if ( r == NULL || ri == NULL )
b45f050a 4706 FAIL("Regexp out of space");
0f79a09d
GS
4707#ifdef DEBUGGING
4708 /* avoid reading uninitialized memory in DEBUGGING code in study_chunk() */
f8fc2ecf 4709 Zero(ri, sizeof(regexp_internal) + (unsigned)RExC_size * sizeof(regnode), char);
58e23c8d 4710#else
f8fc2ecf
YO
4711 /* bulk initialize base fields with 0. */
4712 Zero(ri, sizeof(regexp_internal), char);
0f79a09d 4713#endif
58e23c8d
YO
4714
4715 /* non-zero initialization begins here */
f8fc2ecf 4716 RXi_SET( r, ri );
f9f4320a 4717 r->engine= RE_ENGINE_PTR;
c737faaf 4718 r->extflags = pm_flags;
bcdf7404 4719 {
f7819f85 4720 bool has_p = ((r->extflags & RXf_PMf_KEEPCOPY) == RXf_PMf_KEEPCOPY);
a62b1201 4721 bool has_charset = (get_regex_charset(r->extflags) != REGEX_DEPENDS_CHARSET);
c5ea2ffa
KW
4722
4723 /* The caret is output if there are any defaults: if not all the STD
4724 * flags are set, or if no character set specifier is needed */
4725 bool has_default =
4726 (((r->extflags & RXf_PMf_STD_PMMOD) != RXf_PMf_STD_PMMOD)
4727 || ! has_charset);
bcdf7404 4728 bool has_runon = ((RExC_seen & REG_SEEN_RUN_ON_COMMENT)==REG_SEEN_RUN_ON_COMMENT);
14f3b9f2
NC
4729 U16 reganch = (U16)((r->extflags & RXf_PMf_STD_PMMOD)
4730 >> RXf_PMf_STD_PMMOD_SHIFT);
bcdf7404
YO
4731 const char *fptr = STD_PAT_MODS; /*"msix"*/
4732 char *p;
fb85c044 4733 /* Allocate for the worst case, which is all the std flags are turned
c5ea2ffa
KW
4734 * on. If more precision is desired, we could do a population count of
4735 * the flags set. This could be done with a small lookup table, or by
4736 * shifting, masking and adding, or even, when available, assembly
4737 * language for a machine-language population count.
4738 * We never output a minus, as all those are defaults, so are
4739 * covered by the caret */
fb85c044 4740 const STRLEN wraplen = plen + has_p + has_runon
c5ea2ffa 4741 + has_default /* If needs a caret */
a62b1201
KW
4742
4743 /* If needs a character set specifier */
4744 + ((has_charset) ? MAX_CHARSET_NAME_LENGTH : 0)
bcdf7404
YO
4745 + (sizeof(STD_PAT_MODS) - 1)
4746 + (sizeof("(?:)") - 1);
4747
c5ea2ffa 4748 p = sv_grow(MUTABLE_SV(rx), wraplen + 1); /* +1 for the ending NUL */
f7c278bf 4749 SvPOK_on(rx);
8f6ae13c 4750 SvFLAGS(rx) |= SvUTF8(pattern);
bcdf7404 4751 *p++='('; *p++='?';
9de15fec
KW
4752
4753 /* If a default, cover it using the caret */
c5ea2ffa 4754 if (has_default) {
85508812 4755 *p++= DEFAULT_PAT_MOD;
fb85c044 4756 }
c5ea2ffa 4757 if (has_charset) {
a62b1201
KW
4758 STRLEN len;
4759 const char* const name = get_regex_charset_name(r->extflags, &len);
4760 Copy(name, p, len, char);
4761 p += len;
9de15fec 4762 }
f7819f85
A
4763 if (has_p)
4764 *p++ = KEEPCOPY_PAT_MOD; /*'p'*/
bcdf7404 4765 {
bcdf7404 4766 char ch;
bcdf7404
YO
4767 while((ch = *fptr++)) {
4768 if(reganch & 1)
4769 *p++ = ch;
bcdf7404
YO
4770 reganch >>= 1;
4771 }
bcdf7404
YO
4772 }
4773
28d8d7f4 4774 *p++ = ':';
bb661a58 4775 Copy(RExC_precomp, p, plen, char);
efd26800
NC
4776 assert ((RX_WRAPPED(rx) - p) < 16);
4777 r->pre_prefix = p - RX_WRAPPED(rx);
bb661a58 4778 p += plen;
bcdf7404 4779 if (has_runon)
28d8d7f4
YO
4780 *p++ = '\n';
4781 *p++ = ')';
4782 *p = 0;
fb85c044 4783 SvCUR_set(rx, p - SvPVX_const(rx));
bcdf7404
YO
4784 }
4785
bbe252da 4786 r->intflags = 0;
830247a4 4787 r->nparens = RExC_npar - 1; /* set early to validate backrefs */
81714fb9 4788
6bda09f9 4789 if (RExC_seen & REG_SEEN_RECURSE) {
40d049e4
YO
4790 Newxz(RExC_open_parens, RExC_npar,regnode *);
4791 SAVEFREEPV(RExC_open_parens);
4792 Newxz(RExC_close_parens,RExC_npar,regnode *);
4793 SAVEFREEPV(RExC_close_parens);
6bda09f9
YO
4794 }
4795
4796 /* Useful during FAIL. */
7122b237
YO
4797#ifdef RE_TRACK_PATTERN_OFFSETS
4798 Newxz(ri->u.offsets, 2*RExC_size+1, U32); /* MJD 20001228 */
a3621e74 4799 DEBUG_OFFSETS_r(PerlIO_printf(Perl_debug_log,
2af232bd 4800 "%s %"UVuf" bytes for offset annotations.\n",
7122b237 4801 ri->u.offsets ? "Got" : "Couldn't get",
392fbf5d 4802 (UV)((2*RExC_size+1) * sizeof(U32))));
7122b237
YO
4803#endif
4804 SetProgLen(ri,RExC_size);
288b8c02 4805 RExC_rx_sv = rx;
830247a4 4806 RExC_rx = r;
f8fc2ecf 4807 RExC_rxi = ri;
bbce6d69 4808
4809 /* Second pass: emit code. */
c737faaf 4810 RExC_flags = pm_flags; /* don't let top level (?i) bleed */
830247a4
IZ
4811 RExC_parse = exp;
4812 RExC_end = xend;
4813 RExC_naughty = 0;
4814 RExC_npar = 1;
f8fc2ecf
YO
4815 RExC_emit_start = ri->program;
4816 RExC_emit = ri->program;
3b57cd43
YO
4817 RExC_emit_bound = ri->program + RExC_size + 1;
4818
2cd61cdb 4819 /* Store the count of eval-groups for security checks: */
f8149455 4820 RExC_rx->seen_evals = RExC_seen_evals;
830247a4 4821 REGC((U8)REG_MAGIC, (char*) RExC_emit++);
80757612 4822 if (reg(pRExC_state, 0, &flags,1) == NULL) {
288b8c02 4823 ReREFCNT_dec(rx);
a0d0e21e 4824 return(NULL);
80757612 4825 }
07be1b83
YO
4826 /* XXXX To minimize changes to RE engine we always allocate
4827 3-units-long substrs field. */
4828 Newx(r->substrs, 1, struct reg_substr_data);
40d049e4
YO
4829 if (RExC_recurse_count) {
4830 Newxz(RExC_recurse,RExC_recurse_count,regnode *);
4831 SAVEFREEPV(RExC_recurse);
4832 }
a0d0e21e 4833
07be1b83 4834reStudy:
e7f38d0f 4835 r->minlen = minlen = sawlookahead = sawplus = sawopen = 0;
07be1b83 4836 Zero(r->substrs, 1, struct reg_substr_data);
a3621e74 4837
07be1b83 4838#ifdef TRIE_STUDY_OPT
0934c9d9
SH
4839 if (!restudied) {
4840 StructCopy(&zero_scan_data, &data, scan_data_t);
4841 copyRExC_state = RExC_state;
4842 } else {
5d458dd8 4843 U32 seen=RExC_seen;
07be1b83 4844 DEBUG_OPTIMISE_r(PerlIO_printf(Perl_debug_log,"Restudying\n"));
5d458dd8
YO
4845
4846 RExC_state = copyRExC_state;
4847 if (seen & REG_TOP_LEVEL_BRANCHES)
4848 RExC_seen |= REG_TOP_LEVEL_BRANCHES;
4849 else
4850 RExC_seen &= ~REG_TOP_LEVEL_BRANCHES;
1de06328 4851 if (data.last_found) {
07be1b83 4852 SvREFCNT_dec(data.longest_fixed);
07be1b83 4853 SvREFCNT_dec(data.longest_float);
07be1b83 4854 SvREFCNT_dec(data.last_found);
1de06328 4855 }
40d049e4 4856 StructCopy(&zero_scan_data, &data, scan_data_t);
07be1b83 4857 }
40d049e4
YO
4858#else
4859 StructCopy(&zero_scan_data, &data, scan_data_t);
07be1b83 4860#endif
fc8cd66c 4861
a0d0e21e 4862 /* Dig out information for optimizations. */
f7819f85 4863 r->extflags = RExC_flags; /* was pm_op */
c737faaf
YO
4864 /*dmq: removed as part of de-PMOP: pm->op_pmflags = RExC_flags; */
4865
a0ed51b3 4866 if (UTF)
8f6ae13c 4867 SvUTF8_on(rx); /* Unicode in it? */
f8fc2ecf 4868 ri->regstclass = NULL;
830247a4 4869 if (RExC_naughty >= 10) /* Probably an expensive pattern. */
bbe252da 4870 r->intflags |= PREGf_NAUGHTY;
f8fc2ecf 4871 scan = ri->program + 1; /* First BRANCH. */
2779dcf1 4872
1de06328
YO
4873 /* testing for BRANCH here tells us whether there is "must appear"
4874 data in the pattern. If there is then we can use it for optimisations */
eaf3ca90 4875 if (!(RExC_seen & REG_TOP_LEVEL_BRANCHES)) { /* Only one top-level choice. */
c277df42 4876 I32 fake;
c5254dd6 4877 STRLEN longest_float_length, longest_fixed_length;
07be1b83 4878 struct regnode_charclass_class ch_class; /* pointed to by data */
653099ff 4879 int stclass_flag;
07be1b83 4880 I32 last_close = 0; /* pointed to by data */
5339e136
YO
4881 regnode *first= scan;
4882 regnode *first_next= regnext(first);
639081d6
YO
4883 /*
4884 * Skip introductions and multiplicators >= 1
4885 * so that we can extract the 'meat' of the pattern that must
4886 * match in the large if() sequence following.
4887 * NOTE that EXACT is NOT covered here, as it is normally
4888 * picked up by the optimiser separately.
4889 *
4890 * This is unfortunate as the optimiser isnt handling lookahead
4891 * properly currently.
4892 *
4893 */
a0d0e21e 4894 while ((OP(first) == OPEN && (sawopen = 1)) ||
653099ff 4895 /* An OR of *one* alternative - should not happen now. */
5339e136 4896 (OP(first) == BRANCH && OP(first_next) != BRANCH) ||
07be1b83 4897 /* for now we can't handle lookbehind IFMATCH*/
e7f38d0f 4898 (OP(first) == IFMATCH && !first->flags && (sawlookahead = 1)) ||
a0d0e21e
LW
4899 (OP(first) == PLUS) ||
4900 (OP(first) == MINMOD) ||
653099ff 4901 /* An {n,m} with n>0 */
5339e136
YO
4902 (PL_regkind[OP(first)] == CURLY && ARG1(first) > 0) ||
4903 (OP(first) == NOTHING && PL_regkind[OP(first_next)] != END ))
07be1b83 4904 {
639081d6
YO
4905 /*
4906 * the only op that could be a regnode is PLUS, all the rest
4907 * will be regnode_1 or regnode_2.
4908 *
4909 */
a0d0e21e
LW
4910 if (OP(first) == PLUS)
4911 sawplus = 1;
4912 else
3dab1dad 4913 first += regarglen[OP(first)];
639081d6
YO
4914
4915 first = NEXTOPER(first);
5339e136 4916 first_next= regnext(first);
a687059c
LW
4917 }
4918
a0d0e21e
LW
4919 /* Starting-point info. */
4920 again:
786e8c11 4921 DEBUG_PEEP("first:",first,0);
07be1b83 4922 /* Ignore EXACT as we deal with it later. */
3dab1dad 4923 if (PL_regkind[OP(first)] == EXACT) {
1aa99e6b 4924 if (OP(first) == EXACT)
6f207bd3 4925 NOOP; /* Empty, get anchored substr later. */
e5fbd0ff 4926 else
f8fc2ecf 4927 ri->regstclass = first;
b3c9acc1 4928 }
07be1b83 4929#ifdef TRIE_STCLASS
786e8c11 4930 else if (PL_regkind[OP(first)] == TRIE &&
f8fc2ecf 4931 ((reg_trie_data *)ri->data->data[ ARG(first) ])->minlen>0)
07be1b83 4932 {
786e8c11 4933 regnode *trie_op;
07be1b83 4934 /* this can happen only on restudy */
786e8c11 4935 if ( OP(first) == TRIE ) {
c944940b 4936 struct regnode_1 *trieop = (struct regnode_1 *)
446bd890 4937 PerlMemShared_calloc(1, sizeof(struct regnode_1));
786e8c11
YO
4938 StructCopy(first,trieop,struct regnode_1);
4939 trie_op=(regnode *)trieop;
4940 } else {
c944940b 4941 struct regnode_charclass *trieop = (struct regnode_charclass *)
446bd890 4942 PerlMemShared_calloc(1, sizeof(struct regnode_charclass));
786e8c11
YO
4943 StructCopy(first,trieop,struct regnode_charclass);
4944 trie_op=(regnode *)trieop;
4945 }
1de06328 4946 OP(trie_op)+=2;
786e8c11 4947 make_trie_failtable(pRExC_state, (regnode *)first, trie_op, 0);
f8fc2ecf 4948 ri->regstclass = trie_op;
07be1b83
YO
4949 }
4950#endif
e52fc539 4951 else if (REGNODE_SIMPLE(OP(first)))
f8fc2ecf 4952 ri->regstclass = first;
3dab1dad
YO
4953 else if (PL_regkind[OP(first)] == BOUND ||
4954 PL_regkind[OP(first)] == NBOUND)
f8fc2ecf 4955 ri->regstclass = first;
3dab1dad 4956 else if (PL_regkind[OP(first)] == BOL) {
bbe252da
YO
4957 r->extflags |= (OP(first) == MBOL
4958 ? RXf_ANCH_MBOL
cad2e5aa 4959 : (OP(first) == SBOL
bbe252da
YO
4960 ? RXf_ANCH_SBOL
4961 : RXf_ANCH_BOL));
a0d0e21e 4962 first = NEXTOPER(first);
774d564b 4963 goto again;
4964 }
4965 else if (OP(first) == GPOS) {
bbe252da 4966 r->extflags |= RXf_ANCH_GPOS;
774d564b 4967 first = NEXTOPER(first);
4968 goto again;
a0d0e21e 4969 }
cf2a2b69
YO
4970 else if ((!sawopen || !RExC_sawback) &&
4971 (OP(first) == STAR &&
3dab1dad 4972 PL_regkind[OP(NEXTOPER(first))] == REG_ANY) &&
bbe252da 4973 !(r->extflags & RXf_ANCH) && !(RExC_seen & REG_SEEN_EVAL))
a0d0e21e
LW
4974 {
4975 /* turn .* into ^.* with an implied $*=1 */
1df70142
AL
4976 const int type =
4977 (OP(NEXTOPER(first)) == REG_ANY)
bbe252da
YO
4978 ? RXf_ANCH_MBOL
4979 : RXf_ANCH_SBOL;
4980 r->extflags |= type;
4981 r->intflags |= PREGf_IMPLICIT;
a0d0e21e 4982 first = NEXTOPER(first);
774d564b 4983 goto again;
a0d0e21e 4984 }
e7f38d0f 4985 if (sawplus && !sawlookahead && (!sawopen || !RExC_sawback)
830247a4 4986 && !(RExC_seen & REG_SEEN_EVAL)) /* May examine pos and $& */
cad2e5aa 4987 /* x+ must match at the 1st pos of run of x's */
bbe252da 4988 r->intflags |= PREGf_SKIP;
a0d0e21e 4989
c277df42 4990 /* Scan is after the zeroth branch, first is atomic matcher. */
be8e71aa 4991#ifdef TRIE_STUDY_OPT
81714fb9 4992 DEBUG_PARSE_r(
be8e71aa
YO
4993 if (!restudied)
4994 PerlIO_printf(Perl_debug_log, "first at %"IVdf"\n",
4995 (IV)(first - scan + 1))
4996 );
4997#else
81714fb9 4998 DEBUG_PARSE_r(
be8e71aa
YO
4999 PerlIO_printf(Perl_debug_log, "first at %"IVdf"\n",
5000 (IV)(first - scan + 1))
5001 );
5002#endif
5003
5004
a0d0e21e
LW
5005 /*
5006 * If there's something expensive in the r.e., find the
5007 * longest literal string that must appear and make it the
5008 * regmust. Resolve ties in favor of later strings, since
5009 * the regstart check works with the beginning of the r.e.
5010 * and avoiding duplication strengthens checking. Not a
5011 * strong reason, but sufficient in the absence of others.
5012 * [Now we resolve ties in favor of the earlier string if
c277df42 5013 * it happens that c_offset_min has been invalidated, since the
a0d0e21e
LW
5014 * earlier string may buy us something the later one won't.]
5015 */
de8c5301 5016
396482e1
GA
5017 data.longest_fixed = newSVpvs("");
5018 data.longest_float = newSVpvs("");
5019 data.last_found = newSVpvs("");
c277df42
IZ
5020 data.longest = &(data.longest_fixed);
5021 first = scan;
f8fc2ecf 5022 if (!ri->regstclass) {
e755fd73 5023 cl_init(pRExC_state, &ch_class);
653099ff
GS
5024 data.start_class = &ch_class;
5025 stclass_flag = SCF_DO_STCLASS_AND;
5026 } else /* XXXX Check for BOUND? */
5027 stclass_flag = 0;
cb434fcc 5028 data.last_closep = &last_close;
de8c5301 5029
1de06328 5030 minlen = study_chunk(pRExC_state, &first, &minlen, &fake, scan + RExC_size, /* Up to end */
40d049e4
YO
5031 &data, -1, NULL, NULL,
5032 SCF_DO_SUBSTR | SCF_WHILEM_VISITED_POS | stclass_flag,0);
07be1b83 5033
07be1b83 5034
786e8c11
YO
5035 CHECK_RESTUDY_GOTO;
5036
5037
830247a4 5038 if ( RExC_npar == 1 && data.longest == &(data.longest_fixed)
b81d288d 5039 && data.last_start_min == 0 && data.last_end > 0
830247a4 5040 && !RExC_seen_zerolen
2bf803e2 5041 && !(RExC_seen & REG_SEEN_VERBARG)
bbe252da
YO
5042 && (!(RExC_seen & REG_SEEN_GPOS) || (r->extflags & RXf_ANCH_GPOS)))
5043 r->extflags |= RXf_CHECK_ALL;
304ee84b 5044 scan_commit(pRExC_state, &data,&minlen,0);
c277df42
IZ
5045 SvREFCNT_dec(data.last_found);
5046
1de06328
YO
5047 /* Note that code very similar to this but for anchored string
5048 follows immediately below, changes may need to be made to both.
5049 Be careful.
5050 */
a0ed51b3 5051 longest_float_length = CHR_SVLEN(data.longest_float);
c5254dd6 5052 if (longest_float_length
c277df42
IZ
5053 || (data.flags & SF_FL_BEFORE_EOL
5054 && (!(data.flags & SF_FL_BEFORE_MEOL)
bbe252da 5055 || (RExC_flags & RXf_PMf_MULTILINE))))
1de06328 5056 {
1182767e 5057 I32 t,ml;
cf93c79d 5058
1de06328 5059 if (SvCUR(data.longest_fixed) /* ok to leave SvCUR */
aca2d497
IZ
5060 && data.offset_fixed == data.offset_float_min
5061 && SvCUR(data.longest_fixed) == SvCUR(data.longest_float))
5062 goto remove_float; /* As in (a)+. */
5063
1de06328
YO
5064 /* copy the information about the longest float from the reg_scan_data
5065 over to the program. */
33b8afdf
JH
5066 if (SvUTF8(data.longest_float)) {
5067 r->float_utf8 = data.longest_float;
c445ea15 5068 r->float_substr = NULL;
33b8afdf
JH
5069 } else {
5070 r->float_substr = data.longest_float;
c445ea15 5071 r->float_utf8 = NULL;
33b8afdf 5072 }
1de06328
YO
5073 /* float_end_shift is how many chars that must be matched that
5074 follow this item. We calculate it ahead of time as once the
5075 lookbehind offset is added in we lose the ability to correctly
5076 calculate it.*/
5077 ml = data.minlen_float ? *(data.minlen_float)
1182767e 5078 : (I32)longest_float_length;
1de06328
YO
5079 r->float_end_shift = ml - data.offset_float_min
5080 - longest_float_length + (SvTAIL(data.longest_float) != 0)
5081 + data.lookbehind_float;
5082 r->float_min_offset = data.offset_float_min - data.lookbehind_float;
c277df42 5083 r->float_max_offset = data.offset_float_max;
1182767e 5084 if (data.offset_float_max < I32_MAX) /* Don't offset infinity */
1de06328
YO
5085 r->float_max_offset -= data.lookbehind_float;
5086
cf93c79d
IZ
5087 t = (data.flags & SF_FL_BEFORE_EOL /* Can't have SEOL and MULTI */
5088 && (!(data.flags & SF_FL_BEFORE_MEOL)
bbe252da 5089 || (RExC_flags & RXf_PMf_MULTILINE)));
33b8afdf 5090 fbm_compile(data.longest_float, t ? FBMcf_TAIL : 0);
a0ed51b3
LW
5091 }
5092 else {
aca2d497 5093 remove_float:
c445ea15 5094 r->float_substr = r->float_utf8 = NULL;
c277df42 5095 SvREFCNT_dec(data.longest_float);
c5254dd6 5096 longest_float_length = 0;
a0d0e21e 5097 }
c277df42 5098
1de06328
YO
5099 /* Note that code very similar to this but for floating string
5100 is immediately above, changes may need to be made to both.
5101 Be careful.
5102 */
a0ed51b3 5103 longest_fixed_length = CHR_SVLEN(data.longest_fixed);
c5254dd6 5104 if (longest_fixed_length
c277df42
IZ
5105 || (data.flags & SF_FIX_BEFORE_EOL /* Cannot have SEOL and MULTI */
5106 && (!(data.flags & SF_FIX_BEFORE_MEOL)
bbe252da 5107 || (RExC_flags & RXf_PMf_MULTILINE))))
1de06328 5108 {
1182767e 5109 I32 t,ml;
cf93c79d 5110
1de06328
YO
5111 /* copy the information about the longest fixed
5112 from the reg_scan_data over to the program. */
33b8afdf
JH
5113 if (SvUTF8(data.longest_fixed)) {
5114 r->anchored_utf8 = data.longest_fixed;
c445ea15 5115 r->anchored_substr = NULL;
33b8afdf
JH
5116 } else {
5117 r->anchored_substr = data.longest_fixed;
c445ea15 5118 r->anchored_utf8 = NULL;
33b8afdf 5119 }
1de06328
YO
5120 /* fixed_end_shift is how many chars that must be matched that
5121 follow this item. We calculate it ahead of time as once the
5122 lookbehind offset is added in we lose the ability to correctly
5123 calculate it.*/
5124 ml = data.minlen_fixed ? *(data.minlen_fixed)
1182767e 5125 : (I32)longest_fixed_length;
1de06328
YO
5126 r->anchored_end_shift = ml - data.offset_fixed
5127 - longest_fixed_length + (SvTAIL(data.longest_fixed) != 0)
5128 + data.lookbehind_fixed;
5129 r->anchored_offset = data.offset_fixed - data.lookbehind_fixed;
5130
cf93c79d
IZ
5131 t = (data.flags & SF_FIX_BEFORE_EOL /* Can't have SEOL and MULTI */
5132 && (!(data.flags & SF_FIX_BEFORE_MEOL)
bbe252da 5133 || (RExC_flags & RXf_PMf_MULTILINE)));
33b8afdf 5134 fbm_compile(data.longest_fixed, t ? FBMcf_TAIL : 0);
a0ed51b3
LW
5135 }
5136 else {
c445ea15 5137 r->anchored_substr = r->anchored_utf8 = NULL;
c277df42 5138 SvREFCNT_dec(data.longest_fixed);
c5254dd6 5139 longest_fixed_length = 0;
a0d0e21e 5140 }
f8fc2ecf
YO
5141 if (ri->regstclass
5142 && (OP(ri->regstclass) == REG_ANY || OP(ri->regstclass) == SANY))
5143 ri->regstclass = NULL;
f4244008 5144
33b8afdf
JH
5145 if ((!(r->anchored_substr || r->anchored_utf8) || r->anchored_offset)
5146 && stclass_flag
653099ff 5147 && !(data.start_class->flags & ANYOF_EOS)
eb160463
GS
5148 && !cl_is_anything(data.start_class))
5149 {
2eccd3b2 5150 const U32 n = add_data(pRExC_state, 1, "f");
c613755a 5151 data.start_class->flags |= ANYOF_IS_SYNTHETIC;
653099ff 5152
f8fc2ecf 5153 Newx(RExC_rxi->data->data[n], 1,
653099ff
GS
5154 struct regnode_charclass_class);
5155 StructCopy(data.start_class,
f8fc2ecf 5156 (struct regnode_charclass_class*)RExC_rxi->data->data[n],
653099ff 5157 struct regnode_charclass_class);
f8fc2ecf 5158 ri->regstclass = (regnode*)RExC_rxi->data->data[n];
bbe252da 5159 r->intflags &= ~PREGf_SKIP; /* Used in find_byclass(). */
a3621e74 5160 DEBUG_COMPILE_r({ SV *sv = sv_newmortal();
32fc9b6a 5161 regprop(r, sv, (regnode*)data.start_class);
9c5ffd7c 5162 PerlIO_printf(Perl_debug_log,
a0288114 5163 "synthetic stclass \"%s\".\n",
3f7c398e 5164 SvPVX_const(sv));});
653099ff 5165 }
c277df42
IZ
5166
5167 /* A temporary algorithm prefers floated substr to fixed one to dig more info. */
c5254dd6 5168 if (longest_fixed_length > longest_float_length) {
1de06328 5169 r->check_end_shift = r->anchored_end_shift;
c277df42 5170 r->check_substr = r->anchored_substr;
33b8afdf 5171 r->check_utf8 = r->anchored_utf8;
c277df42 5172 r->check_offset_min = r->check_offset_max = r->anchored_offset;
bbe252da
YO
5173 if (r->extflags & RXf_ANCH_SINGLE)
5174 r->extflags |= RXf_NOSCAN;
a0ed51b3
LW
5175 }
5176 else {
1de06328 5177 r->check_end_shift = r->float_end_shift;
c277df42 5178 r->check_substr = r->float_substr;
33b8afdf 5179 r->check_utf8 = r->float_utf8;
1de06328
YO
5180 r->check_offset_min = r->float_min_offset;
5181 r->check_offset_max = r->float_max_offset;
a0d0e21e 5182 }
30382c73
IZ
5183 /* XXXX Currently intuiting is not compatible with ANCH_GPOS.
5184 This should be changed ASAP! */
bbe252da
YO
5185 if ((r->check_substr || r->check_utf8) && !(r->extflags & RXf_ANCH_GPOS)) {
5186 r->extflags |= RXf_USE_INTUIT;
33b8afdf 5187 if (SvTAIL(r->check_substr ? r->check_substr : r->check_utf8))
bbe252da 5188 r->extflags |= RXf_INTUIT_TAIL;
cad2e5aa 5189 }
1de06328
YO
5190 /* XXX Unneeded? dmq (shouldn't as this is handled elsewhere)
5191 if ( (STRLEN)minlen < longest_float_length )
5192 minlen= longest_float_length;
5193 if ( (STRLEN)minlen < longest_fixed_length )
5194 minlen= longest_fixed_length;
5195 */
a0ed51b3
LW
5196 }
5197 else {
c277df42
IZ
5198 /* Several toplevels. Best we can is to set minlen. */
5199 I32 fake;
653099ff 5200 struct regnode_charclass_class ch_class;
cb434fcc 5201 I32 last_close = 0;
c277df42 5202
5d458dd8 5203 DEBUG_PARSE_r(PerlIO_printf(Perl_debug_log, "\nMulti Top Level\n"));
07be1b83 5204
f8fc2ecf 5205 scan = ri->program + 1;
e755fd73 5206 cl_init(pRExC_state, &ch_class);
653099ff 5207 data.start_class = &ch_class;
cb434fcc 5208 data.last_closep = &last_close;
07be1b83 5209
de8c5301 5210
1de06328 5211 minlen = study_chunk(pRExC_state, &scan, &minlen, &fake, scan + RExC_size,
40d049e4 5212 &data, -1, NULL, NULL, SCF_DO_STCLASS_AND|SCF_WHILEM_VISITED_POS,0);
de8c5301 5213
786e8c11 5214 CHECK_RESTUDY_GOTO;
07be1b83 5215
33b8afdf 5216 r->check_substr = r->check_utf8 = r->anchored_substr = r->anchored_utf8
c445ea15 5217 = r->float_substr = r->float_utf8 = NULL;
f4244008 5218
653099ff 5219 if (!(data.start_class->flags & ANYOF_EOS)
eb160463
GS
5220 && !cl_is_anything(data.start_class))
5221 {
2eccd3b2 5222 const U32 n = add_data(pRExC_state, 1, "f");
c613755a 5223 data.start_class->flags |= ANYOF_IS_SYNTHETIC;
653099ff 5224
f8fc2ecf 5225 Newx(RExC_rxi->data->data[n], 1,
653099ff
GS
5226 struct regnode_charclass_class);
5227 StructCopy(data.start_class,
f8fc2ecf 5228 (struct regnode_charclass_class*)RExC_rxi->data->data[n],
653099ff 5229 struct regnode_charclass_class);
f8fc2ecf 5230 ri->regstclass = (regnode*)RExC_rxi->data->data[n];
bbe252da 5231 r->intflags &= ~PREGf_SKIP; /* Used in find_byclass(). */
a3621e74 5232 DEBUG_COMPILE_r({ SV* sv = sv_newmortal();
32fc9b6a 5233 regprop(r, sv, (regnode*)data.start_class);
9c5ffd7c 5234 PerlIO_printf(Perl_debug_log,
a0288114 5235 "synthetic stclass \"%s\".\n",
3f7c398e 5236 SvPVX_const(sv));});
653099ff 5237 }
a0d0e21e
LW
5238 }
5239
1de06328
YO
5240 /* Guard against an embedded (?=) or (?<=) with a longer minlen than
5241 the "real" pattern. */
cf9788e3
RGS
5242 DEBUG_OPTIMISE_r({
5243 PerlIO_printf(Perl_debug_log,"minlen: %"IVdf" r->minlen:%"IVdf"\n",
70685ca0 5244 (IV)minlen, (IV)r->minlen);
cf9788e3 5245 });
de8c5301 5246 r->minlenret = minlen;
1de06328
YO
5247 if (r->minlen < minlen)
5248 r->minlen = minlen;
5249
b81d288d 5250 if (RExC_seen & REG_SEEN_GPOS)
bbe252da 5251 r->extflags |= RXf_GPOS_SEEN;
830247a4 5252 if (RExC_seen & REG_SEEN_LOOKBEHIND)
bbe252da 5253 r->extflags |= RXf_LOOKBEHIND_SEEN;
830247a4 5254 if (RExC_seen & REG_SEEN_EVAL)
bbe252da 5255 r->extflags |= RXf_EVAL_SEEN;
f33976b4 5256 if (RExC_seen & REG_SEEN_CANY)
bbe252da 5257 r->extflags |= RXf_CANY_SEEN;
e2e6a0f1 5258 if (RExC_seen & REG_SEEN_VERBARG)
bbe252da 5259 r->intflags |= PREGf_VERBARG_SEEN;
5d458dd8 5260 if (RExC_seen & REG_SEEN_CUTGROUP)
bbe252da 5261 r->intflags |= PREGf_CUTGROUP_SEEN;
81714fb9 5262 if (RExC_paren_names)
85fbaab2 5263 RXp_PAREN_NAMES(r) = MUTABLE_HV(SvREFCNT_inc(RExC_paren_names));
81714fb9 5264 else
5daac39c 5265 RXp_PAREN_NAMES(r) = NULL;
0ac6acae 5266
7bd1e614 5267#ifdef STUPID_PATTERN_CHECKS
5509d87a 5268 if (RX_PRELEN(rx) == 0)
640f820d 5269 r->extflags |= RXf_NULL;
5509d87a 5270 if (r->extflags & RXf_SPLIT && RX_PRELEN(rx) == 1 && RX_PRECOMP(rx)[0] == ' ')
0ac6acae
AB
5271 /* XXX: this should happen BEFORE we compile */
5272 r->extflags |= (RXf_SKIPWHITE|RXf_WHITE);
5509d87a 5273 else if (RX_PRELEN(rx) == 3 && memEQ("\\s+", RX_PRECOMP(rx), 3))
0ac6acae 5274 r->extflags |= RXf_WHITE;
5509d87a 5275 else if (RX_PRELEN(rx) == 1 && RXp_PRECOMP(rx)[0] == '^')
e357fc67 5276 r->extflags |= RXf_START_ONLY;
f1b875a0 5277#else
5509d87a 5278 if (r->extflags & RXf_SPLIT && RX_PRELEN(rx) == 1 && RX_PRECOMP(rx)[0] == ' ')
7bd1e614
YO
5279 /* XXX: this should happen BEFORE we compile */
5280 r->extflags |= (RXf_SKIPWHITE|RXf_WHITE);
5281 else {
5282 regnode *first = ri->program + 1;
39aa8307 5283 U8 fop = OP(first);
f6d9469c
DM
5284
5285 if (PL_regkind[fop] == NOTHING && OP(NEXTOPER(first)) == END)
640f820d 5286 r->extflags |= RXf_NULL;
f6d9469c 5287 else if (PL_regkind[fop] == BOL && OP(NEXTOPER(first)) == END)
7bd1e614 5288 r->extflags |= RXf_START_ONLY;
f6d9469c
DM
5289 else if (fop == PLUS && OP(NEXTOPER(first)) == SPACE
5290 && OP(regnext(first)) == END)
7bd1e614
YO
5291 r->extflags |= RXf_WHITE;
5292 }
f1b875a0 5293#endif
1f1031fe
YO
5294#ifdef DEBUGGING
5295 if (RExC_paren_names) {
af534a04 5296 ri->name_list_idx = add_data( pRExC_state, 1, "a" );
1f1031fe
YO
5297 ri->data->data[ri->name_list_idx] = (void*)SvREFCNT_inc(RExC_paren_name_list);
5298 } else
1f1031fe 5299#endif
cde0cee5 5300 ri->name_list_idx = 0;
1f1031fe 5301
40d049e4
YO
5302 if (RExC_recurse_count) {
5303 for ( ; RExC_recurse_count ; RExC_recurse_count-- ) {
5304 const regnode *scan = RExC_recurse[RExC_recurse_count-1];
5305 ARG2L_SET( scan, RExC_open_parens[ARG(scan)-1] - scan );
5306 }
5307 }
f0ab9afb 5308 Newxz(r->offs, RExC_npar, regexp_paren_pair);
c74340f9
YO
5309 /* assume we don't need to swap parens around before we match */
5310
be8e71aa
YO
5311 DEBUG_DUMP_r({
5312 PerlIO_printf(Perl_debug_log,"Final program:\n");
3dab1dad
YO
5313 regdump(r);
5314 });
7122b237
YO
5315#ifdef RE_TRACK_PATTERN_OFFSETS
5316 DEBUG_OFFSETS_r(if (ri->u.offsets) {
5317 const U32 len = ri->u.offsets[0];
8e9a8a48
YO
5318 U32 i;
5319 GET_RE_DEBUG_FLAGS_DECL;
7122b237 5320 PerlIO_printf(Perl_debug_log, "Offsets: [%"UVuf"]\n\t", (UV)ri->u.offsets[0]);
8e9a8a48 5321 for (i = 1; i <= len; i++) {
7122b237 5322 if (ri->u.offsets[i*2-1] || ri->u.offsets[i*2])
8e9a8a48 5323 PerlIO_printf(Perl_debug_log, "%"UVuf":%"UVuf"[%"UVuf"] ",
7122b237 5324 (UV)i, (UV)ri->u.offsets[i*2-1], (UV)ri->u.offsets[i*2]);
8e9a8a48
YO
5325 }
5326 PerlIO_printf(Perl_debug_log, "\n");
5327 });
7122b237 5328#endif
288b8c02 5329 return rx;
a687059c
LW
5330}
5331
f9f4320a 5332#undef RE_ENGINE_PTR
3dab1dad 5333
93b32b6d 5334
81714fb9 5335SV*
192b9cd1
AB
5336Perl_reg_named_buff(pTHX_ REGEXP * const rx, SV * const key, SV * const value,
5337 const U32 flags)
5338{
7918f24d
NC
5339 PERL_ARGS_ASSERT_REG_NAMED_BUFF;
5340
192b9cd1
AB
5341 PERL_UNUSED_ARG(value);
5342
f1b875a0 5343 if (flags & RXapif_FETCH) {
192b9cd1 5344 return reg_named_buff_fetch(rx, key, flags);
f1b875a0 5345 } else if (flags & (RXapif_STORE | RXapif_DELETE | RXapif_CLEAR)) {
6ad8f254 5346 Perl_croak_no_modify(aTHX);
192b9cd1 5347 return NULL;
f1b875a0 5348 } else if (flags & RXapif_EXISTS) {
192b9cd1
AB
5349 return reg_named_buff_exists(rx, key, flags)
5350 ? &PL_sv_yes
5351 : &PL_sv_no;
f1b875a0 5352 } else if (flags & RXapif_REGNAMES) {
192b9cd1 5353 return reg_named_buff_all(rx, flags);
f1b875a0 5354 } else if (flags & (RXapif_SCALAR | RXapif_REGNAMES_COUNT)) {
192b9cd1
AB
5355 return reg_named_buff_scalar(rx, flags);
5356 } else {
5357 Perl_croak(aTHX_ "panic: Unknown flags %d in named_buff", (int)flags);
5358 return NULL;
5359 }
5360}
5361
5362SV*
5363Perl_reg_named_buff_iter(pTHX_ REGEXP * const rx, const SV * const lastkey,
5364 const U32 flags)
5365{
7918f24d 5366 PERL_ARGS_ASSERT_REG_NAMED_BUFF_ITER;
192b9cd1
AB
5367 PERL_UNUSED_ARG(lastkey);
5368
f1b875a0 5369 if (flags & RXapif_FIRSTKEY)
192b9cd1 5370 return reg_named_buff_firstkey(rx, flags);
f1b875a0 5371 else if (flags & RXapif_NEXTKEY)
192b9cd1
AB
5372 return reg_named_buff_nextkey(rx, flags);
5373 else {
5374 Perl_croak(aTHX_ "panic: Unknown flags %d in named_buff_iter", (int)flags);
5375 return NULL;
5376 }
5377}
5378
5379SV*
288b8c02
NC
5380Perl_reg_named_buff_fetch(pTHX_ REGEXP * const r, SV * const namesv,
5381 const U32 flags)
81714fb9 5382{
44a2ac75
YO
5383 AV *retarray = NULL;
5384 SV *ret;
288b8c02 5385 struct regexp *const rx = (struct regexp *)SvANY(r);
7918f24d
NC
5386
5387 PERL_ARGS_ASSERT_REG_NAMED_BUFF_FETCH;
5388
f1b875a0 5389 if (flags & RXapif_ALL)
44a2ac75 5390 retarray=newAV();
93b32b6d 5391
5daac39c
NC
5392 if (rx && RXp_PAREN_NAMES(rx)) {
5393 HE *he_str = hv_fetch_ent( RXp_PAREN_NAMES(rx), namesv, 0, 0 );
93b32b6d
YO
5394 if (he_str) {
5395 IV i;
5396 SV* sv_dat=HeVAL(he_str);
5397 I32 *nums=(I32*)SvPVX(sv_dat);
5398 for ( i=0; i<SvIVX(sv_dat); i++ ) {
192b9cd1
AB
5399 if ((I32)(rx->nparens) >= nums[i]
5400 && rx->offs[nums[i]].start != -1
5401 && rx->offs[nums[i]].end != -1)
93b32b6d 5402 {
49d7dfbc 5403 ret = newSVpvs("");
288b8c02 5404 CALLREG_NUMBUF_FETCH(r,nums[i],ret);
93b32b6d
YO
5405 if (!retarray)
5406 return ret;
5407 } else {
5408 ret = newSVsv(&PL_sv_undef);
5409 }
ec83ea38 5410 if (retarray)
93b32b6d 5411 av_push(retarray, ret);
81714fb9 5412 }
93b32b6d 5413 if (retarray)
ad64d0ec 5414 return newRV_noinc(MUTABLE_SV(retarray));
192b9cd1
AB
5415 }
5416 }
5417 return NULL;
5418}
5419
5420bool
288b8c02 5421Perl_reg_named_buff_exists(pTHX_ REGEXP * const r, SV * const key,
192b9cd1
AB
5422 const U32 flags)
5423{
288b8c02 5424 struct regexp *const rx = (struct regexp *)SvANY(r);
7918f24d
NC
5425
5426 PERL_ARGS_ASSERT_REG_NAMED_BUFF_EXISTS;
5427
5daac39c 5428 if (rx && RXp_PAREN_NAMES(rx)) {
f1b875a0 5429 if (flags & RXapif_ALL) {
5daac39c 5430 return hv_exists_ent(RXp_PAREN_NAMES(rx), key, 0);
192b9cd1 5431 } else {
288b8c02 5432 SV *sv = CALLREG_NAMED_BUFF_FETCH(r, key, flags);
6499cc01
RGS
5433 if (sv) {
5434 SvREFCNT_dec(sv);
192b9cd1
AB
5435 return TRUE;
5436 } else {
5437 return FALSE;
5438 }
5439 }
5440 } else {
5441 return FALSE;
5442 }
5443}
5444
5445SV*
288b8c02 5446Perl_reg_named_buff_firstkey(pTHX_ REGEXP * const r, const U32 flags)
192b9cd1 5447{
288b8c02 5448 struct regexp *const rx = (struct regexp *)SvANY(r);
7918f24d
NC
5449
5450 PERL_ARGS_ASSERT_REG_NAMED_BUFF_FIRSTKEY;
5451
5daac39c
NC
5452 if ( rx && RXp_PAREN_NAMES(rx) ) {
5453 (void)hv_iterinit(RXp_PAREN_NAMES(rx));
192b9cd1 5454
288b8c02 5455 return CALLREG_NAMED_BUFF_NEXTKEY(r, NULL, flags & ~RXapif_FIRSTKEY);
1e1d4b91
JJ
5456 } else {
5457 return FALSE;
5458 }
192b9cd1
AB
5459}
5460
5461SV*
288b8c02 5462Perl_reg_named_buff_nextkey(pTHX_ REGEXP * const r, const U32 flags)
192b9cd1 5463{
288b8c02 5464 struct regexp *const rx = (struct regexp *)SvANY(r);
250257bb 5465 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
5466
5467 PERL_ARGS_ASSERT_REG_NAMED_BUFF_NEXTKEY;
5468
5daac39c
NC
5469 if (rx && RXp_PAREN_NAMES(rx)) {
5470 HV *hv = RXp_PAREN_NAMES(rx);
192b9cd1
AB
5471 HE *temphe;
5472 while ( (temphe = hv_iternext_flags(hv,0)) ) {
5473 IV i;
5474 IV parno = 0;
5475 SV* sv_dat = HeVAL(temphe);
5476 I32 *nums = (I32*)SvPVX(sv_dat);
5477 for ( i = 0; i < SvIVX(sv_dat); i++ ) {
250257bb 5478 if ((I32)(rx->lastparen) >= nums[i] &&
192b9cd1
AB
5479 rx->offs[nums[i]].start != -1 &&
5480 rx->offs[nums[i]].end != -1)
5481 {
5482 parno = nums[i];
5483 break;
5484 }
5485 }
f1b875a0 5486 if (parno || flags & RXapif_ALL) {
a663657d 5487 return newSVhek(HeKEY_hek(temphe));
192b9cd1 5488 }
81714fb9
YO
5489 }
5490 }
44a2ac75
YO
5491 return NULL;
5492}
5493
192b9cd1 5494SV*
288b8c02 5495Perl_reg_named_buff_scalar(pTHX_ REGEXP * const r, const U32 flags)
192b9cd1
AB
5496{
5497 SV *ret;
5498 AV *av;
5499 I32 length;
288b8c02 5500 struct regexp *const rx = (struct regexp *)SvANY(r);
192b9cd1 5501
7918f24d
NC
5502 PERL_ARGS_ASSERT_REG_NAMED_BUFF_SCALAR;
5503
5daac39c 5504 if (rx && RXp_PAREN_NAMES(rx)) {
f1b875a0 5505 if (flags & (RXapif_ALL | RXapif_REGNAMES_COUNT)) {
5daac39c 5506 return newSViv(HvTOTALKEYS(RXp_PAREN_NAMES(rx)));
f1b875a0 5507 } else if (flags & RXapif_ONE) {
288b8c02 5508 ret = CALLREG_NAMED_BUFF_ALL(r, (flags | RXapif_REGNAMES));
502c6561 5509 av = MUTABLE_AV(SvRV(ret));
192b9cd1 5510 length = av_len(av);
ec83ea38 5511 SvREFCNT_dec(ret);
192b9cd1
AB
5512 return newSViv(length + 1);
5513 } else {
5514 Perl_croak(aTHX_ "panic: Unknown flags %d in named_buff_scalar", (int)flags);
5515 return NULL;
5516 }
5517 }
5518 return &PL_sv_undef;
5519}
5520
5521SV*
288b8c02 5522Perl_reg_named_buff_all(pTHX_ REGEXP * const r, const U32 flags)
192b9cd1 5523{
288b8c02 5524 struct regexp *const rx = (struct regexp *)SvANY(r);
192b9cd1
AB
5525 AV *av = newAV();
5526
7918f24d
NC
5527 PERL_ARGS_ASSERT_REG_NAMED_BUFF_ALL;
5528
5daac39c
NC
5529 if (rx && RXp_PAREN_NAMES(rx)) {
5530 HV *hv= RXp_PAREN_NAMES(rx);
192b9cd1
AB
5531 HE *temphe;
5532 (void)hv_iterinit(hv);
5533 while ( (temphe = hv_iternext_flags(hv,0)) ) {
5534 IV i;
5535 IV parno = 0;
5536 SV* sv_dat = HeVAL(temphe);
5537 I32 *nums = (I32*)SvPVX(sv_dat);
5538 for ( i = 0; i < SvIVX(sv_dat); i++ ) {
250257bb 5539 if ((I32)(rx->lastparen) >= nums[i] &&
192b9cd1
AB
5540 rx->offs[nums[i]].start != -1 &&
5541 rx->offs[nums[i]].end != -1)
5542 {
5543 parno = nums[i];
5544 break;
5545 }
5546 }
f1b875a0 5547 if (parno || flags & RXapif_ALL) {
a663657d 5548 av_push(av, newSVhek(HeKEY_hek(temphe)));
192b9cd1
AB
5549 }
5550 }
5551 }
5552
ad64d0ec 5553 return newRV_noinc(MUTABLE_SV(av));
192b9cd1
AB
5554}
5555
49d7dfbc 5556void
288b8c02
NC
5557Perl_reg_numbered_buff_fetch(pTHX_ REGEXP * const r, const I32 paren,
5558 SV * const sv)
44a2ac75 5559{
288b8c02 5560 struct regexp *const rx = (struct regexp *)SvANY(r);
44a2ac75 5561 char *s = NULL;
a9d504c3 5562 I32 i = 0;
44a2ac75 5563 I32 s1, t1;
7918f24d
NC
5564
5565 PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_FETCH;
44a2ac75 5566
cde0cee5
YO
5567 if (!rx->subbeg) {
5568 sv_setsv(sv,&PL_sv_undef);
49d7dfbc 5569 return;
cde0cee5
YO
5570 }
5571 else
f1b875a0 5572 if (paren == RX_BUFF_IDX_PREMATCH && rx->offs[0].start != -1) {
44a2ac75 5573 /* $` */
f0ab9afb 5574 i = rx->offs[0].start;
cde0cee5 5575 s = rx->subbeg;
44a2ac75
YO
5576 }
5577 else
f1b875a0 5578 if (paren == RX_BUFF_IDX_POSTMATCH && rx->offs[0].end != -1) {
44a2ac75 5579 /* $' */
f0ab9afb
NC
5580 s = rx->subbeg + rx->offs[0].end;
5581 i = rx->sublen - rx->offs[0].end;
44a2ac75
YO
5582 }
5583 else
5584 if ( 0 <= paren && paren <= (I32)rx->nparens &&
f0ab9afb
NC
5585 (s1 = rx->offs[paren].start) != -1 &&
5586 (t1 = rx->offs[paren].end) != -1)
44a2ac75
YO
5587 {
5588 /* $& $1 ... */
5589 i = t1 - s1;
5590 s = rx->subbeg + s1;
cde0cee5
YO
5591 } else {
5592 sv_setsv(sv,&PL_sv_undef);
49d7dfbc 5593 return;
cde0cee5
YO
5594 }
5595 assert(rx->sublen >= (s - rx->subbeg) + i );
5596 if (i >= 0) {
5597 const int oldtainted = PL_tainted;
5598 TAINT_NOT;
5599 sv_setpvn(sv, s, i);
5600 PL_tainted = oldtainted;
5601 if ( (rx->extflags & RXf_CANY_SEEN)
07bc277f 5602 ? (RXp_MATCH_UTF8(rx)
cde0cee5 5603 && (!i || is_utf8_string((U8*)s, i)))
07bc277f 5604 : (RXp_MATCH_UTF8(rx)) )
cde0cee5
YO
5605 {
5606 SvUTF8_on(sv);
5607 }
5608 else
5609 SvUTF8_off(sv);
5610 if (PL_tainting) {
07bc277f 5611 if (RXp_MATCH_TAINTED(rx)) {
cde0cee5
YO
5612 if (SvTYPE(sv) >= SVt_PVMG) {
5613 MAGIC* const mg = SvMAGIC(sv);
5614 MAGIC* mgt;
5615 PL_tainted = 1;
5616 SvMAGIC_set(sv, mg->mg_moremagic);
5617 SvTAINT(sv);
5618 if ((mgt = SvMAGIC(sv))) {
5619 mg->mg_moremagic = mgt;
5620 SvMAGIC_set(sv, mg);
44a2ac75 5621 }
cde0cee5
YO
5622 } else {
5623 PL_tainted = 1;
5624 SvTAINT(sv);
5625 }
5626 } else
5627 SvTAINTED_off(sv);
44a2ac75 5628 }
81714fb9 5629 } else {
44a2ac75 5630 sv_setsv(sv,&PL_sv_undef);
49d7dfbc 5631 return;
81714fb9
YO
5632 }
5633}
93b32b6d 5634
2fdbfb4d
AB
5635void
5636Perl_reg_numbered_buff_store(pTHX_ REGEXP * const rx, const I32 paren,
5637 SV const * const value)
5638{
7918f24d
NC
5639 PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_STORE;
5640
2fdbfb4d
AB
5641 PERL_UNUSED_ARG(rx);
5642 PERL_UNUSED_ARG(paren);
5643 PERL_UNUSED_ARG(value);
5644
5645 if (!PL_localizing)
6ad8f254 5646 Perl_croak_no_modify(aTHX);
2fdbfb4d
AB
5647}
5648
5649I32
288b8c02 5650Perl_reg_numbered_buff_length(pTHX_ REGEXP * const r, const SV * const sv,
2fdbfb4d
AB
5651 const I32 paren)
5652{
288b8c02 5653 struct regexp *const rx = (struct regexp *)SvANY(r);
2fdbfb4d
AB
5654 I32 i;
5655 I32 s1, t1;
5656
7918f24d
NC
5657 PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_LENGTH;
5658
2fdbfb4d
AB
5659 /* Some of this code was originally in C<Perl_magic_len> in F<mg.c> */
5660 switch (paren) {
192b9cd1 5661 /* $` / ${^PREMATCH} */
f1b875a0 5662 case RX_BUFF_IDX_PREMATCH:
2fdbfb4d
AB
5663 if (rx->offs[0].start != -1) {
5664 i = rx->offs[0].start;
5665 if (i > 0) {
5666 s1 = 0;
5667 t1 = i;
5668 goto getlen;
5669 }
5670 }
5671 return 0;
192b9cd1 5672 /* $' / ${^POSTMATCH} */
f1b875a0 5673 case RX_BUFF_IDX_POSTMATCH:
2fdbfb4d
AB
5674 if (rx->offs[0].end != -1) {
5675 i = rx->sublen - rx->offs[0].end;
5676 if (i > 0) {
5677 s1 = rx->offs[0].end;
5678 t1 = rx->sublen;
5679 goto getlen;
5680 }
5681 }
5682 return 0;
192b9cd1
AB
5683 /* $& / ${^MATCH}, $1, $2, ... */
5684 default:
2fdbfb4d
AB
5685 if (paren <= (I32)rx->nparens &&
5686 (s1 = rx->offs[paren].start) != -1 &&
5687 (t1 = rx->offs[paren].end) != -1)
5688 {
5689 i = t1 - s1;
5690 goto getlen;
5691 } else {
5692 if (ckWARN(WARN_UNINITIALIZED))
ad64d0ec 5693 report_uninit((const SV *)sv);
2fdbfb4d
AB
5694 return 0;
5695 }
5696 }
5697 getlen:
07bc277f 5698 if (i > 0 && RXp_MATCH_UTF8(rx)) {
2fdbfb4d
AB
5699 const char * const s = rx->subbeg + s1;
5700 const U8 *ep;
5701 STRLEN el;
5702
5703 i = t1 - s1;
5704 if (is_utf8_string_loclen((U8*)s, i, &ep, &el))
5705 i = el;
5706 }
5707 return i;
5708}
5709
fe578d7f 5710SV*
49d7dfbc 5711Perl_reg_qr_package(pTHX_ REGEXP * const rx)
fe578d7f 5712{
7918f24d 5713 PERL_ARGS_ASSERT_REG_QR_PACKAGE;
fe578d7f 5714 PERL_UNUSED_ARG(rx);
0fc92fc6
YO
5715 if (0)
5716 return NULL;
5717 else
5718 return newSVpvs("Regexp");
fe578d7f 5719}
0a4db386 5720
894be9b7 5721/* Scans the name of a named buffer from the pattern.
0a4db386
YO
5722 * If flags is REG_RSN_RETURN_NULL returns null.
5723 * If flags is REG_RSN_RETURN_NAME returns an SV* containing the name
5724 * If flags is REG_RSN_RETURN_DATA returns the data SV* corresponding
5725 * to the parsed name as looked up in the RExC_paren_names hash.
5726 * If there is an error throws a vFAIL().. type exception.
894be9b7 5727 */
0a4db386
YO
5728
5729#define REG_RSN_RETURN_NULL 0
5730#define REG_RSN_RETURN_NAME 1
5731#define REG_RSN_RETURN_DATA 2
5732
894be9b7 5733STATIC SV*
7918f24d
NC
5734S_reg_scan_name(pTHX_ RExC_state_t *pRExC_state, U32 flags)
5735{
894be9b7 5736 char *name_start = RExC_parse;
1f1031fe 5737
7918f24d
NC
5738 PERL_ARGS_ASSERT_REG_SCAN_NAME;
5739
1f1031fe
YO
5740 if (isIDFIRST_lazy_if(RExC_parse, UTF)) {
5741 /* skip IDFIRST by using do...while */
5742 if (UTF)
5743 do {
5744 RExC_parse += UTF8SKIP(RExC_parse);
5745 } while (isALNUM_utf8((U8*)RExC_parse));
5746 else
5747 do {
5748 RExC_parse++;
5749 } while (isALNUM(*RExC_parse));
894be9b7 5750 }
1f1031fe 5751
0a4db386 5752 if ( flags ) {
59cd0e26
NC
5753 SV* sv_name
5754 = newSVpvn_flags(name_start, (int)(RExC_parse - name_start),
5755 SVs_TEMP | (UTF ? SVf_UTF8 : 0));
0a4db386
YO
5756 if ( flags == REG_RSN_RETURN_NAME)
5757 return sv_name;
5758 else if (flags==REG_RSN_RETURN_DATA) {
5759 HE *he_str = NULL;
5760 SV *sv_dat = NULL;
5761 if ( ! sv_name ) /* should not happen*/
5762 Perl_croak(aTHX_ "panic: no svname in reg_scan_name");
5763 if (RExC_paren_names)
5764 he_str = hv_fetch_ent( RExC_paren_names, sv_name, 0, 0 );
5765 if ( he_str )
5766 sv_dat = HeVAL(he_str);
5767 if ( ! sv_dat )
5768 vFAIL("Reference to nonexistent named group");
5769 return sv_dat;
5770 }
5771 else {
5772 Perl_croak(aTHX_ "panic: bad flag in reg_scan_name");
5773 }
5774 /* NOT REACHED */
894be9b7 5775 }
0a4db386 5776 return NULL;
894be9b7
YO
5777}
5778
3dab1dad
YO
5779#define DEBUG_PARSE_MSG(funcname) DEBUG_PARSE_r({ \
5780 int rem=(int)(RExC_end - RExC_parse); \
5781 int cut; \
5782 int num; \
5783 int iscut=0; \
5784 if (rem>10) { \
5785 rem=10; \
5786 iscut=1; \
5787 } \
5788 cut=10-rem; \
5789 if (RExC_lastparse!=RExC_parse) \
5790 PerlIO_printf(Perl_debug_log," >%.*s%-*s", \
5791 rem, RExC_parse, \
5792 cut + 4, \
5793 iscut ? "..." : "<" \
5794 ); \
5795 else \
5796 PerlIO_printf(Perl_debug_log,"%16s",""); \
5797 \
5798 if (SIZE_ONLY) \
3b57cd43 5799 num = RExC_size + 1; \
3dab1dad
YO
5800 else \
5801 num=REG_NODE_NUM(RExC_emit); \
5802 if (RExC_lastnum!=num) \
0a4db386 5803 PerlIO_printf(Perl_debug_log,"|%4d",num); \
3dab1dad 5804 else \
0a4db386 5805 PerlIO_printf(Perl_debug_log,"|%4s",""); \
be8e71aa
YO
5806 PerlIO_printf(Perl_debug_log,"|%*s%-4s", \
5807 (int)((depth*2)), "", \
3dab1dad
YO
5808 (funcname) \
5809 ); \
5810 RExC_lastnum=num; \
5811 RExC_lastparse=RExC_parse; \
5812})
5813
07be1b83
YO
5814
5815
3dab1dad
YO
5816#define DEBUG_PARSE(funcname) DEBUG_PARSE_r({ \
5817 DEBUG_PARSE_MSG((funcname)); \
5818 PerlIO_printf(Perl_debug_log,"%4s","\n"); \
5819})
6bda09f9
YO
5820#define DEBUG_PARSE_FMT(funcname,fmt,args) DEBUG_PARSE_r({ \
5821 DEBUG_PARSE_MSG((funcname)); \
5822 PerlIO_printf(Perl_debug_log,fmt "\n",args); \
5823})
d764b54e
KW
5824
5825/* This section of code defines the inversion list object and its methods. The
5826 * interfaces are highly subject to change, so as much as possible is static to
fa2d2a23
KW
5827 * this file. An inversion list is here implemented as a malloc'd C UV array
5828 * with some added info that is placed as UVs at the beginning in a header
5829 * portion. An inversion list for Unicode is an array of code points, sorted
5830 * by ordinal number. The zeroth element is the first code point in the list.
5831 * The 1th element is the first element beyond that not in the list. In other
5832 * words, the first range is
5833 * invlist[0]..(invlist[1]-1)
5834 * The other ranges follow. Thus every element that is divisible by two marks
5835 * the beginning of a range that is in the list, and every element not
5836 * divisible by two marks the beginning of a range not in the list. A single
5837 * element inversion list that contains the single code point N generally
5838 * consists of two elements
5839 * invlist[0] == N
5840 * invlist[1] == N+1
5841 * (The exception is when N is the highest representable value on the
5842 * machine, in which case the list containing just it would be a single
5843 * element, itself. By extension, if the last range in the list extends to
5844 * infinity, then the first element of that range will be in the inversion list
5845 * at a position that is divisible by two, and is the final element in the
5846 * list.)
f1b67122
KW
5847 * Taking the complement (inverting) an inversion list is quite simple, if the
5848 * first element is 0, remove it; otherwise add a 0 element at the beginning.
5849 * This implementation reserves an element at the beginning of each inversion list
5850 * to contain 0 when the list contains 0, and contains 1 otherwise. The actual
5851 * beginning of the list is either that element if 0, or the next one if 1.
5852 *
fa2d2a23
KW
5853 * More about inversion lists can be found in "Unicode Demystified"
5854 * Chapter 13 by Richard Gillam, published by Addison-Wesley.
97b14ce7 5855 * More will be coming when functionality is added later.
d764b54e 5856 *
fa2d2a23
KW
5857 * The inversion list data structure is currently implemented as an SV pointing
5858 * to an array of UVs that the SV thinks are bytes. This allows us to have an
5859 * array of UV whose memory management is automatically handled by the existing
5860 * facilities for SV's.
62672576 5861 *
d764b54e
KW
5862 * Some of the methods should always be private to the implementation, and some
5863 * should eventually be made public */
5864
fa2d2a23
KW
5865#define INVLIST_LEN_OFFSET 0 /* Number of elements in the inversion list */
5866#define INVLIST_ITER_OFFSET 1 /* Current iteration position */
5867
f1b67122
KW
5868#define INVLIST_ZERO_OFFSET 2 /* 0 or 1; must be last element in header */
5869/* The UV at position ZERO contains either 0 or 1. If 0, the inversion list
5870 * contains the code point U+00000, and begins here. If 1, the inversion list
5871 * doesn't contain U+0000, and it begins at the next UV in the array.
5872 * Inverting an inversion list consists of adding or removing the 0 at the
5873 * beginning of it. By reserving a space for that 0, inversion can be made
5874 * very fast */
5875
5876#define HEADER_LENGTH (INVLIST_ZERO_OFFSET + 1)
97b14ce7
KW
5877
5878/* Internally things are UVs */
5879#define TO_INTERNAL_SIZE(x) ((x + HEADER_LENGTH) * sizeof(UV))
5880#define FROM_INTERNAL_SIZE(x) ((x / sizeof(UV)) - HEADER_LENGTH)
5881
d764b54e 5882#define INVLIST_INITIAL_LEN 10
d764b54e
KW
5883
5884PERL_STATIC_INLINE UV*
f1b67122
KW
5885S__invlist_array_init(pTHX_ SV* const invlist, const bool will_have_0)
5886{
5887 /* Returns a pointer to the first element in the inversion list's array.
5888 * This is called upon initialization of an inversion list. Where the
5889 * array begins depends on whether the list has the code point U+0000
5890 * in it or not. The other parameter tells it whether the code that
5891 * follows this call is about to put a 0 in the inversion list or not.
5892 * The first element is either the element with 0, if 0, or the next one,
5893 * if 1 */
5894
5895 UV* zero = get_invlist_zero_addr(invlist);
5896
5897 PERL_ARGS_ASSERT__INVLIST_ARRAY_INIT;
5898
5899 /* Must be empty */
5900 assert(! *get_invlist_len_addr(invlist));
5901
5902 /* 1^1 = 0; 1^0 = 1 */
5903 *zero = 1 ^ will_have_0;
5904 return zero + *zero;
5905}
5906
5907PERL_STATIC_INLINE UV*
a25abddc 5908S_invlist_array(pTHX_ SV* const invlist)
d764b54e
KW
5909{
5910 /* Returns the pointer to the inversion list's array. Every time the
5911 * length changes, this needs to be called in case malloc or realloc moved
5912 * it */
5913
d764b54e
KW
5914 PERL_ARGS_ASSERT_INVLIST_ARRAY;
5915
f1b67122
KW
5916 /* Must not be empty */
5917 assert(*get_invlist_len_addr(invlist));
5918 assert(*get_invlist_zero_addr(invlist) == 0
5919 || *get_invlist_zero_addr(invlist) == 1);
5920
5921 /* The array begins either at the element reserved for zero if the
5922 * list contains 0 (that element will be set to 0), or otherwise the next
5923 * element (in which case the reserved element will be set to 1). */
5924 return (UV *) (get_invlist_zero_addr(invlist)
5925 + *get_invlist_zero_addr(invlist));
d764b54e
KW
5926}
5927
61bdbf38
KW
5928PERL_STATIC_INLINE UV*
5929S_get_invlist_len_addr(pTHX_ SV* invlist)
5930{
5931 /* Return the address of the UV that contains the current number
5932 * of used elements in the inversion list */
5933
5934 PERL_ARGS_ASSERT_GET_INVLIST_LEN_ADDR;
5935
5936 return (UV *) (SvPVX(invlist) + (INVLIST_LEN_OFFSET * sizeof (UV)));
5937}
5938
d764b54e 5939PERL_STATIC_INLINE UV
a25abddc 5940S_invlist_len(pTHX_ SV* const invlist)
d764b54e
KW
5941{
5942 /* Returns the current number of elements in the inversion list's array */
5943
d764b54e
KW
5944 PERL_ARGS_ASSERT_INVLIST_LEN;
5945
61bdbf38 5946 return *get_invlist_len_addr(invlist);
d764b54e
KW
5947}
5948
c56a880b
KW
5949PERL_STATIC_INLINE void
5950S_invlist_set_len(pTHX_ SV* const invlist, const UV len)
5951{
5952 /* Sets the current number of elements stored in the inversion list */
5953
5954 PERL_ARGS_ASSERT_INVLIST_SET_LEN;
5955
c56a880b 5956 *get_invlist_len_addr(invlist) = len;
f1b67122
KW
5957
5958 SvCUR_set(invlist, TO_INTERNAL_SIZE(len));
5959 /* If the list contains U+0000, that element is part of the header,
5960 * and should not be counted as part of the array. It will contain
5961 * 0 in that case, and 1 otherwise. So we could flop 0=>1, 1=>0 and
5962 * subtract:
5963 * SvCUR_set(invlist,
5964 * TO_INTERNAL_SIZE(len
5965 * - (*get_invlist_zero_addr(inv_list) ^ 1)));
5966 * But, this is only valid if len is not 0. The consequences of not doing
5967 * this is that the memory allocation code may think that the 1 more UV
5968 * is being used than actually is, and so might do an unnecessary grow.
25e94a65
KW
5969 * That seems worth not bothering to make this the precise amount.
5970 *
5971 * Note that when inverting, SvCUR shouldn't change */
c56a880b
KW
5972}
5973
d764b54e 5974PERL_STATIC_INLINE UV
a25abddc 5975S_invlist_max(pTHX_ SV* const invlist)
d764b54e
KW
5976{
5977 /* Returns the maximum number of elements storable in the inversion list's
5978 * array, without having to realloc() */
5979
d764b54e
KW
5980 PERL_ARGS_ASSERT_INVLIST_MAX;
5981
005b65ed 5982 return FROM_INTERNAL_SIZE(SvLEN(invlist));
d764b54e
KW
5983}
5984
f1b67122
KW
5985PERL_STATIC_INLINE UV*
5986S_get_invlist_zero_addr(pTHX_ SV* invlist)
5987{
5988 /* Return the address of the UV that is reserved to hold 0 if the inversion
5989 * list contains 0. This has to be the last element of the heading, as the
5990 * list proper starts with either it if 0, or the next element if not.
5991 * (But we force it to contain either 0 or 1) */
5992
5993 PERL_ARGS_ASSERT_GET_INVLIST_ZERO_ADDR;
5994
5995 return (UV *) (SvPVX(invlist) + (INVLIST_ZERO_OFFSET * sizeof (UV)));
5996}
d764b54e 5997
8d69a883 5998#ifndef PERL_IN_XSUB_RE
a25abddc 5999SV*
d764b54e
KW
6000Perl__new_invlist(pTHX_ IV initial_size)
6001{
6002
6003 /* Return a pointer to a newly constructed inversion list, with enough
6004 * space to store 'initial_size' elements. If that number is negative, a
6005 * system default is used instead */
6006
97b14ce7
KW
6007 SV* new_list;
6008
d764b54e
KW
6009 if (initial_size < 0) {
6010 initial_size = INVLIST_INITIAL_LEN;
6011 }
6012
6013 /* Allocate the initial space */
97b14ce7
KW
6014 new_list = newSV(TO_INTERNAL_SIZE(initial_size));
6015 invlist_set_len(new_list, 0);
6016
f3dc70d1
KW
6017 /* Force iterinit() to be used to get iteration to work */
6018 *get_invlist_iter_addr(new_list) = UV_MAX;
6019
f1b67122
KW
6020 /* This should force a segfault if a method doesn't initialize this
6021 * properly */
6022 *get_invlist_zero_addr(new_list) = UV_MAX;
6023
97b14ce7 6024 return new_list;
d764b54e 6025}
8d69a883 6026#endif
d764b54e 6027
d764b54e 6028STATIC void
a25abddc 6029S_invlist_extend(pTHX_ SV* const invlist, const UV new_max)
d764b54e 6030{
62672576 6031 /* Grow the maximum size of an inversion list */
d764b54e
KW
6032
6033 PERL_ARGS_ASSERT_INVLIST_EXTEND;
6034
005b65ed 6035 SvGROW((SV *)invlist, TO_INTERNAL_SIZE(new_max));
d764b54e
KW
6036}
6037
6038PERL_STATIC_INLINE void
a25abddc 6039S_invlist_trim(pTHX_ SV* const invlist)
d764b54e
KW
6040{
6041 PERL_ARGS_ASSERT_INVLIST_TRIM;
6042
6043 /* Change the length of the inversion list to how many entries it currently
6044 * has */
6045
62672576 6046 SvPV_shrink_to_cur((SV *) invlist);
d764b54e
KW
6047}
6048
6049/* An element is in an inversion list iff its index is even numbered: 0, 2, 4,
6050 * etc */
6051
6052#define ELEMENT_IN_INVLIST_SET(i) (! ((i) & 1))
874816bc 6053#define PREV_ELEMENT_IN_INVLIST_SET(i) (! ELEMENT_IN_INVLIST_SET(i))
d764b54e 6054
8d69a883 6055#ifndef PERL_IN_XSUB_RE
d764b54e 6056void
a25abddc 6057Perl__append_range_to_invlist(pTHX_ SV* const invlist, const UV start, const UV end)
d764b54e
KW
6058{
6059 /* Subject to change or removal. Append the range from 'start' to 'end' at
6060 * the end of the inversion list. The range must be above any existing
6061 * ones. */
6062
f1b67122 6063 UV* array;
d764b54e
KW
6064 UV max = invlist_max(invlist);
6065 UV len = invlist_len(invlist);
6066
6067 PERL_ARGS_ASSERT__APPEND_RANGE_TO_INVLIST;
6068
f1b67122
KW
6069 if (len == 0) { /* Empty lists must be initialized */
6070 array = _invlist_array_init(invlist, start == 0);
6071 }
6072 else {
d764b54e
KW
6073 /* Here, the existing list is non-empty. The current max entry in the
6074 * list is generally the first value not in the set, except when the
6075 * set extends to the end of permissible values, in which case it is
6076 * the first entry in that final set, and so this call is an attempt to
6077 * append out-of-order */
6078
6079 UV final_element = len - 1;
f1b67122 6080 array = invlist_array(invlist);
d764b54e
KW
6081 if (array[final_element] > start
6082 || ELEMENT_IN_INVLIST_SET(final_element))
6083 {
6084 Perl_croak(aTHX_ "panic: attempting to append to an inversion list, but wasn't at the end of the list");
6085 }
6086
6087 /* Here, it is a legal append. If the new range begins with the first
6088 * value not in the set, it is extending the set, so the new first
6089 * value not in the set is one greater than the newly extended range.
6090 * */
6091 if (array[final_element] == start) {
6092 if (end != UV_MAX) {
6093 array[final_element] = end + 1;
6094 }
6095 else {
6096 /* But if the end is the maximum representable on the machine,
6097 * just let the range that this would extend have no end */
6098 invlist_set_len(invlist, len - 1);
6099 }
6100 return;
6101 }
6102 }
6103
6104 /* Here the new range doesn't extend any existing set. Add it */
6105
6106 len += 2; /* Includes an element each for the start and end of range */
6107
6108 /* If overflows the existing space, extend, which may cause the array to be
6109 * moved */
6110 if (max < len) {
6111 invlist_extend(invlist, len);
f1b67122
KW
6112 invlist_set_len(invlist, len); /* Have to set len here to avoid assert
6113 failure in invlist_array() */
d764b54e
KW
6114 array = invlist_array(invlist);
6115 }
f1b67122
KW
6116 else {
6117 invlist_set_len(invlist, len);
6118 }
d764b54e
KW
6119
6120 /* The next item on the list starts the range, the one after that is
6121 * one past the new range. */
6122 array[len - 2] = start;
6123 if (end != UV_MAX) {
6124 array[len - 1] = end + 1;
6125 }
6126 else {
6127 /* But if the end is the maximum representable on the machine, just let
6128 * the range have no end */
6129 invlist_set_len(invlist, len - 1);
6130 }
6131}
8d69a883 6132#endif
d764b54e 6133
86f766ab
KW
6134void
6135Perl__invlist_union(pTHX_ SV* const a, SV* const b, SV** output)
d764b54e 6136{
a2995b7f
KW
6137 /* Take the union of two inversion lists and point 'result' to it. If
6138 * 'result' on input points to one of the two lists, the reference count to
6139 * that list will be decremented.
d764b54e
KW
6140 * The basis for this comes from "Unicode Demystified" Chapter 13 by
6141 * Richard Gillam, published by Addison-Wesley, and explained at some
6142 * length there. The preface says to incorporate its examples into your
6143 * code at your own risk.
6144 *
6145 * The algorithm is like a merge sort.
6146 *
6147 * XXX A potential performance improvement is to keep track as we go along
6148 * if only one of the inputs contributes to the result, meaning the other
6149 * is a subset of that one. In that case, we can skip the final copy and
a2995b7f
KW
6150 * return the larger of the input lists, but then outside code might need
6151 * to keep track of whether to free the input list or not */
d764b54e 6152
f1b67122
KW
6153 UV* array_a; /* a's array */
6154 UV* array_b;
6155 UV len_a; /* length of a's array */
6156 UV len_b;
d764b54e 6157
a25abddc 6158 SV* u; /* the resulting union */
d764b54e
KW
6159 UV* array_u;
6160 UV len_u;
6161
6162 UV i_a = 0; /* current index into a's array */
6163 UV i_b = 0;
6164 UV i_u = 0;
6165
6166 /* running count, as explained in the algorithm source book; items are
6167 * stopped accumulating and are output when the count changes to/from 0.
6168 * The count is incremented when we start a range that's in the set, and
6169 * decremented when we start a range that's not in the set. So its range
6170 * is 0 to 2. Only when the count is zero is something not in the set.
6171 */
6172 UV count = 0;
6173
37e85ffe 6174 PERL_ARGS_ASSERT__INVLIST_UNION;
d764b54e 6175
f1b67122
KW
6176 /* If either one is empty, the union is the other one */
6177 len_a = invlist_len(a);
6178 if (len_a == 0) {
6179 if (output == &a) {
6180 SvREFCNT_dec(a);
6181 }
6182 else if (output != &b) {
6183 *output = invlist_clone(b);
6184 }
6185 /* else *output already = b; */
6186 return;
6187 }
6188 else if ((len_b = invlist_len(b)) == 0) {
6189 if (output == &b) {
6190 SvREFCNT_dec(b);
6191 }
6192 else if (output != &a) {
6193 *output = invlist_clone(a);
6194 }
6195 /* else *output already = a; */
6196 return;
6197 }
6198
6199 /* Here both lists exist and are non-empty */
6200 array_a = invlist_array(a);
6201 array_b = invlist_array(b);
6202
d764b54e
KW
6203 /* Size the union for the worst case: that the sets are completely
6204 * disjoint */
6205 u = _new_invlist(len_a + len_b);
f1b67122
KW
6206
6207 /* Will contain U+0000 if either component does */
6208 array_u = _invlist_array_init(u, (len_a > 0 && array_a[0] == 0)
6209 || (len_b > 0 && array_b[0] == 0));
d764b54e
KW
6210
6211 /* Go through each list item by item, stopping when exhausted one of
6212 * them */
6213 while (i_a < len_a && i_b < len_b) {
6214 UV cp; /* The element to potentially add to the union's array */
6215 bool cp_in_set; /* is it in the the input list's set or not */
6216
6217 /* We need to take one or the other of the two inputs for the union.
6218 * Since we are merging two sorted lists, we take the smaller of the
6219 * next items. In case of a tie, we take the one that is in its set
6220 * first. If we took one not in the set first, it would decrement the
6221 * count, possibly to 0 which would cause it to be output as ending the
6222 * range, and the next time through we would take the same number, and
6223 * output it again as beginning the next range. By doing it the
6224 * opposite way, there is no possibility that the count will be
6225 * momentarily decremented to 0, and thus the two adjoining ranges will
6226 * be seamlessly merged. (In a tie and both are in the set or both not
6227 * in the set, it doesn't matter which we take first.) */
6228 if (array_a[i_a] < array_b[i_b]
6229 || (array_a[i_a] == array_b[i_b] && ELEMENT_IN_INVLIST_SET(i_a)))
6230 {
6231 cp_in_set = ELEMENT_IN_INVLIST_SET(i_a);
6232 cp= array_a[i_a++];
6233 }
6234 else {
6235 cp_in_set = ELEMENT_IN_INVLIST_SET(i_b);
6236 cp= array_b[i_b++];
6237 }
6238
6239 /* Here, have chosen which of the two inputs to look at. Only output
6240 * if the running count changes to/from 0, which marks the
6241 * beginning/end of a range in that's in the set */
6242 if (cp_in_set) {
6243 if (count == 0) {
6244 array_u[i_u++] = cp;
6245 }
6246 count++;
6247 }
6248 else {
6249 count--;
6250 if (count == 0) {
6251 array_u[i_u++] = cp;
6252 }
6253 }
6254 }
6255
6256 /* Here, we are finished going through at least one of the lists, which
6257 * means there is something remaining in at most one. We check if the list
6258 * that hasn't been exhausted is positioned such that we are in the middle
bac5f0ae
KW
6259 * of a range in its set or not. (i_a and i_b point to the element beyond
6260 * the one we care about.) If in the set, we decrement 'count'; if 0, there
6261 * is potentially more to output.
d764b54e
KW
6262 * There are four cases:
6263 * 1) Both weren't in their sets, count is 0, and remains 0. What's left
6264 * in the union is entirely from the non-exhausted set.
6265 * 2) Both were in their sets, count is 2. Nothing further should
6266 * be output, as everything that remains will be in the exhausted
6267 * list's set, hence in the union; decrementing to 1 but not 0 insures
6268 * that
6269 * 3) the exhausted was in its set, non-exhausted isn't, count is 1.
6270 * Nothing further should be output because the union includes
bac5f0ae 6271 * everything from the exhausted set. Not decrementing ensures that.
d764b54e
KW
6272 * 4) the exhausted wasn't in its set, non-exhausted is, count is 1;
6273 * decrementing to 0 insures that we look at the remainder of the
6274 * non-exhausted set */
bac5f0ae
KW
6275 if ((i_a != len_a && PREV_ELEMENT_IN_INVLIST_SET(i_a))
6276 || (i_b != len_b && PREV_ELEMENT_IN_INVLIST_SET(i_b)))
d764b54e
KW
6277 {
6278 count--;
6279 }
6280
6281 /* The final length is what we've output so far, plus what else is about to
6282 * be output. (If 'count' is non-zero, then the input list we exhausted
6283 * has everything remaining up to the machine's limit in its set, and hence
6284 * in the union, so there will be no further output. */
6285 len_u = i_u;
6286 if (count == 0) {
6287 /* At most one of the subexpressions will be non-zero */
6288 len_u += (len_a - i_a) + (len_b - i_b);
6289 }
6290
6291 /* Set result to final length, which can change the pointer to array_u, so
6292 * re-find it */
6293 if (len_u != invlist_len(u)) {
6294 invlist_set_len(u, len_u);
6295 invlist_trim(u);
6296 array_u = invlist_array(u);
6297 }
6298
6299 /* When 'count' is 0, the list that was exhausted (if one was shorter than
6300 * the other) ended with everything above it not in its set. That means
6301 * that the remaining part of the union is precisely the same as the
6302 * non-exhausted list, so can just copy it unchanged. (If both list were
6303 * exhausted at the same time, then the operations below will be both 0.)
6304 */
6305 if (count == 0) {
6306 IV copy_count; /* At most one will have a non-zero copy count */
6307 if ((copy_count = len_a - i_a) > 0) {
6308 Copy(array_a + i_a, array_u + i_u, copy_count, UV);
6309 }
6310 else if ((copy_count = len_b - i_b) > 0) {
6311 Copy(array_b + i_b, array_u + i_u, copy_count, UV);
6312 }
6313 }
6314
a2995b7f
KW
6315 /* We may be removing a reference to one of the inputs */
6316 if (&a == output || &b == output) {
6317 SvREFCNT_dec(*output);
6318 }
6319
6320 *output = u;
6321 return;
d764b54e
KW
6322}
6323
86f766ab
KW
6324void
6325Perl__invlist_intersection(pTHX_ SV* const a, SV* const b, SV** i)
d764b54e 6326{
a2995b7f
KW
6327 /* Take the intersection of two inversion lists and point 'i' to it. If
6328 * 'i' on input points to one of the two lists, the reference count to that
6329 * list will be decremented.
6330 * The basis for this comes from "Unicode Demystified" Chapter 13 by
6331 * Richard Gillam, published by Addison-Wesley, and explained at some
6332 * length there. The preface says to incorporate its examples into your
6333 * code at your own risk. In fact, it had bugs
d764b54e
KW
6334 *
6335 * The algorithm is like a merge sort, and is essentially the same as the
6336 * union above
6337 */
6338
f1b67122
KW
6339 UV* array_a; /* a's array */
6340 UV* array_b;
6341 UV len_a; /* length of a's array */
6342 UV len_b;
d764b54e 6343
a25abddc 6344 SV* r; /* the resulting intersection */
d764b54e
KW
6345 UV* array_r;
6346 UV len_r;
6347
6348 UV i_a = 0; /* current index into a's array */
6349 UV i_b = 0;
6350 UV i_r = 0;
6351
6352 /* running count, as explained in the algorithm source book; items are
6353 * stopped accumulating and are output when the count changes to/from 2.
6354 * The count is incremented when we start a range that's in the set, and
6355 * decremented when we start a range that's not in the set. So its range
6356 * is 0 to 2. Only when the count is 2 is something in the intersection.
6357 */
6358 UV count = 0;
6359
37e85ffe 6360 PERL_ARGS_ASSERT__INVLIST_INTERSECTION;
d764b54e 6361
f1b67122
KW
6362 /* If either one is empty, the intersection is null */
6363 len_a = invlist_len(a);
6364 if ((len_a == 0) || ((len_b = invlist_len(b)) == 0)) {
6365 *i = _new_invlist(0);
6366
6367 /* If the result is the same as one of the inputs, the input is being
6368 * overwritten */
6369 if (i == &a) {
6370 SvREFCNT_dec(a);
6371 }
6372 else if (i == &b) {
6373 SvREFCNT_dec(b);
6374 }
6375 return;
6376 }
6377
6378 /* Here both lists exist and are non-empty */
6379 array_a = invlist_array(a);
6380 array_b = invlist_array(b);
6381
d764b54e
KW
6382 /* Size the intersection for the worst case: that the intersection ends up
6383 * fragmenting everything to be completely disjoint */
6384 r= _new_invlist(len_a + len_b);
f1b67122
KW
6385
6386 /* Will contain U+0000 iff both components do */
6387 array_r = _invlist_array_init(r, len_a > 0 && array_a[0] == 0
6388 && len_b > 0 && array_b[0] == 0);
d764b54e
KW
6389
6390 /* Go through each list item by item, stopping when exhausted one of
6391 * them */
6392 while (i_a < len_a && i_b < len_b) {
6393 UV cp; /* The element to potentially add to the intersection's
6394 array */
6395 bool cp_in_set; /* Is it in the input list's set or not */
6396
c4a30257
KW
6397 /* We need to take one or the other of the two inputs for the
6398 * intersection. Since we are merging two sorted lists, we take the
6399 * smaller of the next items. In case of a tie, we take the one that
6400 * is not in its set first (a difference from the union algorithm). If
6401 * we took one in the set first, it would increment the count, possibly
6402 * to 2 which would cause it to be output as starting a range in the
6403 * intersection, and the next time through we would take that same
6404 * number, and output it again as ending the set. By doing it the
6405 * opposite of this, there is no possibility that the count will be
6406 * momentarily incremented to 2. (In a tie and both are in the set or
6407 * both not in the set, it doesn't matter which we take first.) */
d764b54e
KW
6408 if (array_a[i_a] < array_b[i_b]
6409 || (array_a[i_a] == array_b[i_b] && ! ELEMENT_IN_INVLIST_SET(i_a)))
6410 {
6411 cp_in_set = ELEMENT_IN_INVLIST_SET(i_a);
6412 cp= array_a[i_a++];
6413 }
6414 else {
6415 cp_in_set = ELEMENT_IN_INVLIST_SET(i_b);
6416 cp= array_b[i_b++];
6417 }
6418
6419 /* Here, have chosen which of the two inputs to look at. Only output
6420 * if the running count changes to/from 2, which marks the
6421 * beginning/end of a range that's in the intersection */
6422 if (cp_in_set) {
6423 count++;
6424 if (count == 2) {
6425 array_r[i_r++] = cp;
6426 }
6427 }
6428 else {
6429 if (count == 2) {
6430 array_r[i_r++] = cp;
6431 }
6432 count--;
6433 }
6434 }
6435
c4a30257
KW
6436 /* Here, we are finished going through at least one of the lists, which
6437 * means there is something remaining in at most one. We check if the list
6438 * that has been exhausted is positioned such that we are in the middle
6439 * of a range in its set or not. (i_a and i_b point to elements 1 beyond
6440 * the ones we care about.) There are four cases:
6441 * 1) Both weren't in their sets, count is 0, and remains 0. There's
6442 * nothing left in the intersection.
6443 * 2) Both were in their sets, count is 2 and perhaps is incremented to
6444 * above 2. What should be output is exactly that which is in the
6445 * non-exhausted set, as everything it has is also in the intersection
6446 * set, and everything it doesn't have can't be in the intersection
6447 * 3) The exhausted was in its set, non-exhausted isn't, count is 1, and
6448 * gets incremented to 2. Like the previous case, the intersection is
6449 * everything that remains in the non-exhausted set.
6450 * 4) the exhausted wasn't in its set, non-exhausted is, count is 1, and
6451 * remains 1. And the intersection has nothing more. */
6452 if ((i_a == len_a && PREV_ELEMENT_IN_INVLIST_SET(i_a))
6453 || (i_b == len_b && PREV_ELEMENT_IN_INVLIST_SET(i_b)))
d764b54e 6454 {
c4a30257 6455 count++;
d764b54e
KW
6456 }
6457
6458 /* The final length is what we've output so far plus what else is in the
c4a30257 6459 * intersection. At most one of the subexpressions below will be non-zero */
d764b54e 6460 len_r = i_r;
c4a30257 6461 if (count >= 2) {
d764b54e
KW
6462 len_r += (len_a - i_a) + (len_b - i_b);
6463 }
6464
6465 /* Set result to final length, which can change the pointer to array_r, so
6466 * re-find it */
6467 if (len_r != invlist_len(r)) {
6468 invlist_set_len(r, len_r);
6469 invlist_trim(r);
6470 array_r = invlist_array(r);
6471 }
6472
6473 /* Finish outputting any remaining */
c4a30257 6474 if (count >= 2) { /* At most one will have a non-zero copy count */
d764b54e
KW
6475 IV copy_count;
6476 if ((copy_count = len_a - i_a) > 0) {
6477 Copy(array_a + i_a, array_r + i_r, copy_count, UV);
6478 }
6479 else if ((copy_count = len_b - i_b) > 0) {
6480 Copy(array_b + i_b, array_r + i_r, copy_count, UV);
6481 }
6482 }
6483
a2995b7f
KW
6484 /* We may be removing a reference to one of the inputs */
6485 if (&a == i || &b == i) {
6486 SvREFCNT_dec(*i);
6487 }
6488
6489 *i = r;
6490 return;
d764b54e
KW
6491}
6492
a25abddc
KW
6493STATIC SV*
6494S_add_range_to_invlist(pTHX_ SV* invlist, const UV start, const UV end)
d764b54e
KW
6495{
6496 /* Add the range from 'start' to 'end' inclusive to the inversion list's
6497 * set. A pointer to the inversion list is returned. This may actually be
c52a3e71
KW
6498 * a new list, in which case the passed in one has been destroyed. The
6499 * passed in inversion list can be NULL, in which case a new one is created
6500 * with just the one range in it */
d764b54e 6501
a25abddc 6502 SV* range_invlist;
c52a3e71 6503 UV len;
d764b54e 6504
c52a3e71
KW
6505 if (invlist == NULL) {
6506 invlist = _new_invlist(2);
6507 len = 0;
6508 }
6509 else {
6510 len = invlist_len(invlist);
6511 }
d764b54e
KW
6512
6513 /* If comes after the final entry, can just append it to the end */
6514 if (len == 0
6515 || start >= invlist_array(invlist)
6516 [invlist_len(invlist) - 1])
6517 {
6518 _append_range_to_invlist(invlist, start, end);
6519 return invlist;
6520 }
6521
6522 /* Here, can't just append things, create and return a new inversion list
6523 * which is the union of this range and the existing inversion list */
6524 range_invlist = _new_invlist(2);
6525 _append_range_to_invlist(range_invlist, start, end);
6526
37e85ffe 6527 _invlist_union(invlist, range_invlist, &invlist);
d764b54e 6528
0a89af2f 6529 /* The temporary can be freed */
318c430e 6530 SvREFCNT_dec(range_invlist);
d764b54e 6531
6d63a9fb 6532 return invlist;
d764b54e
KW
6533}
6534
a25abddc
KW
6535PERL_STATIC_INLINE SV*
6536S_add_cp_to_invlist(pTHX_ SV* invlist, const UV cp) {
c229b64c
KW
6537 return add_range_to_invlist(invlist, cp, cp);
6538}
6539
86f766ab
KW
6540void
6541Perl__invlist_invert(pTHX_ SV* const invlist)
25e94a65
KW
6542{
6543 /* Complement the input inversion list. This adds a 0 if the list didn't
6544 * have a zero; removes it otherwise. As described above, the data
6545 * structure is set up so that this is very efficient */
6546
6547 UV* len_pos = get_invlist_len_addr(invlist);
6548
37e85ffe 6549 PERL_ARGS_ASSERT__INVLIST_INVERT;
25e94a65
KW
6550
6551 /* The inverse of matching nothing is matching everything */
6552 if (*len_pos == 0) {
6553 _append_range_to_invlist(invlist, 0, UV_MAX);
6554 return;
6555 }
6556
6557 /* The exclusive or complents 0 to 1; and 1 to 0. If the result is 1, the
6558 * zero element was a 0, so it is being removed, so the length decrements
6559 * by 1; and vice-versa. SvCUR is unaffected */
6560 if (*get_invlist_zero_addr(invlist) ^= 1) {
6561 (*len_pos)--;
6562 }
6563 else {
6564 (*len_pos)++;
6565 }
6566}
6567
6568PERL_STATIC_INLINE SV*
6569S_invlist_clone(pTHX_ SV* const invlist)
6570{
6571
6572 /* Return a new inversion list that is a copy of the input one, which is
6573 * unchanged */
6574
6575 SV* new_invlist = _new_invlist(SvCUR(invlist));
6576
6577 PERL_ARGS_ASSERT_INVLIST_CLONE;
6578
6579 Copy(SvPVX(invlist), SvPVX(new_invlist), SvCUR(invlist), char);
6580 return new_invlist;
6581}
6582
86f766ab
KW
6583void
6584Perl__invlist_subtract(pTHX_ SV* const a, SV* const b, SV** result)
25e94a65
KW
6585{
6586 /* Point result to an inversion list which consists of all elements in 'a'
6587 * that aren't also in 'b' */
6588
37e85ffe 6589 PERL_ARGS_ASSERT__INVLIST_SUBTRACT;
25e94a65
KW
6590
6591 /* Subtracting nothing retains the original */
6592 if (invlist_len(b) == 0) {
6593
6594 /* If the result is not to be the same variable as the original, create
6595 * a copy */
6596 if (result != &a) {
6597 *result = invlist_clone(a);
6598 }
6599 } else {
6600 SV *b_copy = invlist_clone(b);
37e85ffe
KW
6601 _invlist_invert(b_copy); /* Everything not in 'b' */
6602 _invlist_intersection(a, b_copy, result); /* Everything in 'a' not in
25e94a65
KW
6603 'b' */
6604 SvREFCNT_dec(b_copy);
6605 }
6606
6607 if (result == &b) {
6608 SvREFCNT_dec(b);
6609 }
6610
6611 return;
6612}
6613
f3dc70d1
KW
6614PERL_STATIC_INLINE UV*
6615S_get_invlist_iter_addr(pTHX_ SV* invlist)
6616{
6617 /* Return the address of the UV that contains the current iteration
6618 * position */
6619
6620 PERL_ARGS_ASSERT_GET_INVLIST_ITER_ADDR;
6621
6622 return (UV *) (SvPVX(invlist) + (INVLIST_ITER_OFFSET * sizeof (UV)));
6623}
6624
6625PERL_STATIC_INLINE void
6626S_invlist_iterinit(pTHX_ SV* invlist) /* Initialize iterator for invlist */
6627{
6628 PERL_ARGS_ASSERT_INVLIST_ITERINIT;
6629
6630 *get_invlist_iter_addr(invlist) = 0;
6631}
6632
6633STATIC bool
6634S_invlist_iternext(pTHX_ SV* invlist, UV* start, UV* end)
6635{
6636 UV* pos = get_invlist_iter_addr(invlist);
6637 UV len = invlist_len(invlist);
6638 UV *array;
6639
6640 PERL_ARGS_ASSERT_INVLIST_ITERNEXT;
6641
6642 if (*pos >= len) {
6643 *pos = UV_MAX; /* Force iternit() to be required next time */
6644 return FALSE;
6645 }
6646
6647 array = invlist_array(invlist);
6648
6649 *start = array[(*pos)++];
6650
6651 if (*pos >= len) {
6652 *end = UV_MAX;
6653 }
6654 else {
6655 *end = array[(*pos)++] - 1;
6656 }
6657
6658 return TRUE;
6659}
6660
768318b8
KW
6661#if 0
6662void
6663S_invlist_dump(pTHX_ SV* const invlist, const char * const header)
6664{
6665 /* Dumps out the ranges in an inversion list. The string 'header'
6666 * if present is output on a line before the first range */
6667
6668 UV start, end;
6669
6670 if (header && strlen(header)) {
6671 PerlIO_printf(Perl_debug_log, "%s\n", header);
6672 }
6673 invlist_iterinit(invlist);
6674 while (invlist_iternext(invlist, &start, &end)) {
6675 if (end == UV_MAX) {
6676 PerlIO_printf(Perl_debug_log, "0x%04"UVXf" .. INFINITY\n", start);
6677 }
6678 else {
6679 PerlIO_printf(Perl_debug_log, "0x%04"UVXf" .. 0x%04"UVXf"\n", start, end);
6680 }
6681 }
6682}
6683#endif
6684
97b14ce7 6685#undef HEADER_LENGTH
060b7a35 6686#undef INVLIST_INITIAL_LENGTH
005b65ed
KW
6687#undef TO_INTERNAL_SIZE
6688#undef FROM_INTERNAL_SIZE
f1b67122
KW
6689#undef INVLIST_LEN_OFFSET
6690#undef INVLIST_ZERO_OFFSET
f3dc70d1 6691#undef INVLIST_ITER_OFFSET
060b7a35 6692
d764b54e
KW
6693/* End of inversion list object */
6694
a687059c
LW
6695/*
6696 - reg - regular expression, i.e. main body or parenthesized thing
6697 *
6698 * Caller must absorb opening parenthesis.
6699 *
6700 * Combining parenthesis handling with the base level of regular expression
6701 * is a trifle forced, but the need to tie the tails of the branches to what
6702 * follows makes it hard to avoid.
6703 */
07be1b83
YO
6704#define REGTAIL(x,y,z) regtail((x),(y),(z),depth+1)
6705#ifdef DEBUGGING
6706#define REGTAIL_STUDY(x,y,z) regtail_study((x),(y),(z),depth+1)
6707#else
6708#define REGTAIL_STUDY(x,y,z) regtail((x),(y),(z),depth+1)
6709#endif
3dab1dad 6710
76e3520e 6711STATIC regnode *
3dab1dad 6712S_reg(pTHX_ RExC_state_t *pRExC_state, I32 paren, I32 *flagp,U32 depth)
c277df42 6713 /* paren: Parenthesized? 0=top, 1=(, inside: changed to letter. */
a687059c 6714{
27da23d5 6715 dVAR;
c277df42
IZ
6716 register regnode *ret; /* Will be the head of the group. */
6717 register regnode *br;
6718 register regnode *lastbr;
cbbf8932 6719 register regnode *ender = NULL;
a0d0e21e 6720 register I32 parno = 0;
cbbf8932 6721 I32 flags;
f7819f85 6722 U32 oregflags = RExC_flags;
6136c704
AL
6723 bool have_branch = 0;
6724 bool is_open = 0;
594d7033
YO
6725 I32 freeze_paren = 0;
6726 I32 after_freeze = 0;
9d1d55b5
JP
6727
6728 /* for (?g), (?gc), and (?o) warnings; warning
6729 about (?c) will warn about (?g) -- japhy */
6730
6136c704
AL
6731#define WASTED_O 0x01
6732#define WASTED_G 0x02
6733#define WASTED_C 0x04
6734#define WASTED_GC (0x02|0x04)
cbbf8932 6735 I32 wastedflags = 0x00;
9d1d55b5 6736
fac92740 6737 char * parse_start = RExC_parse; /* MJD */
a28509cc 6738 char * const oregcomp_parse = RExC_parse;
a0d0e21e 6739
3dab1dad 6740 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
6741
6742 PERL_ARGS_ASSERT_REG;
3dab1dad
YO
6743 DEBUG_PARSE("reg ");
6744
821b33a5 6745 *flagp = 0; /* Tentatively. */
a0d0e21e 6746
9d1d55b5 6747
a0d0e21e
LW
6748 /* Make an OPEN node, if parenthesized. */
6749 if (paren) {
e2e6a0f1
YO
6750 if ( *RExC_parse == '*') { /* (*VERB:ARG) */
6751 char *start_verb = RExC_parse;
6752 STRLEN verb_len = 0;
6753 char *start_arg = NULL;
6754 unsigned char op = 0;
6755 int argok = 1;
6756 int internal_argval = 0; /* internal_argval is only useful if !argok */
6757 while ( *RExC_parse && *RExC_parse != ')' ) {
6758 if ( *RExC_parse == ':' ) {
6759 start_arg = RExC_parse + 1;
6760 break;
6761 }
6762 RExC_parse++;
6763 }
6764 ++start_verb;
6765 verb_len = RExC_parse - start_verb;
6766 if ( start_arg ) {
6767 RExC_parse++;
6768 while ( *RExC_parse && *RExC_parse != ')' )
6769 RExC_parse++;
6770 if ( *RExC_parse != ')' )
6771 vFAIL("Unterminated verb pattern argument");
6772 if ( RExC_parse == start_arg )
6773 start_arg = NULL;
6774 } else {
6775 if ( *RExC_parse != ')' )
6776 vFAIL("Unterminated verb pattern");
6777 }
5d458dd8 6778
e2e6a0f1
YO
6779 switch ( *start_verb ) {
6780 case 'A': /* (*ACCEPT) */
568a785a 6781 if ( memEQs(start_verb,verb_len,"ACCEPT") ) {
e2e6a0f1
YO
6782 op = ACCEPT;
6783 internal_argval = RExC_nestroot;
6784 }
6785 break;
6786 case 'C': /* (*COMMIT) */
568a785a 6787 if ( memEQs(start_verb,verb_len,"COMMIT") )
e2e6a0f1 6788 op = COMMIT;
e2e6a0f1
YO
6789 break;
6790 case 'F': /* (*FAIL) */
568a785a 6791 if ( verb_len==1 || memEQs(start_verb,verb_len,"FAIL") ) {
e2e6a0f1
YO
6792 op = OPFAIL;
6793 argok = 0;
6794 }
6795 break;
5d458dd8
YO
6796 case ':': /* (*:NAME) */
6797 case 'M': /* (*MARK:NAME) */
568a785a 6798 if ( verb_len==0 || memEQs(start_verb,verb_len,"MARK") ) {
e2e6a0f1 6799 op = MARKPOINT;
5d458dd8
YO
6800 argok = -1;
6801 }
6802 break;
6803 case 'P': /* (*PRUNE) */
568a785a 6804 if ( memEQs(start_verb,verb_len,"PRUNE") )
5d458dd8 6805 op = PRUNE;
e2e6a0f1 6806 break;
5d458dd8 6807 case 'S': /* (*SKIP) */
568a785a 6808 if ( memEQs(start_verb,verb_len,"SKIP") )
5d458dd8
YO
6809 op = SKIP;
6810 break;
6811 case 'T': /* (*THEN) */
6812 /* [19:06] <TimToady> :: is then */
568a785a 6813 if ( memEQs(start_verb,verb_len,"THEN") ) {
5d458dd8
YO
6814 op = CUTGROUP;
6815 RExC_seen |= REG_SEEN_CUTGROUP;
6816 }
e2e6a0f1
YO
6817 break;
6818 }
6819 if ( ! op ) {
6820 RExC_parse++;
6821 vFAIL3("Unknown verb pattern '%.*s'",
6822 verb_len, start_verb);
6823 }
6824 if ( argok ) {
6825 if ( start_arg && internal_argval ) {
6826 vFAIL3("Verb pattern '%.*s' may not have an argument",
6827 verb_len, start_verb);
6828 } else if ( argok < 0 && !start_arg ) {
6829 vFAIL3("Verb pattern '%.*s' has a mandatory argument",
6830 verb_len, start_verb);
6831 } else {
6832 ret = reganode(pRExC_state, op, internal_argval);
6833 if ( ! internal_argval && ! SIZE_ONLY ) {
6834 if (start_arg) {
6835 SV *sv = newSVpvn( start_arg, RExC_parse - start_arg);
6836 ARG(ret) = add_data( pRExC_state, 1, "S" );
f8fc2ecf 6837 RExC_rxi->data->data[ARG(ret)]=(void*)sv;
e2e6a0f1
YO
6838 ret->flags = 0;
6839 } else {
6840 ret->flags = 1;
6841 }
6842 }
6843 }
6844 if (!internal_argval)
6845 RExC_seen |= REG_SEEN_VERBARG;
6846 } else if ( start_arg ) {
6847 vFAIL3("Verb pattern '%.*s' may not have an argument",
6848 verb_len, start_verb);
6849 } else {
6850 ret = reg_node(pRExC_state, op);
6851 }
6852 nextchar(pRExC_state);
6853 return ret;
6854 } else
fac92740 6855 if (*RExC_parse == '?') { /* (?...) */
6136c704 6856 bool is_logical = 0;
a28509cc 6857 const char * const seqstart = RExC_parse;
fb85c044 6858 bool has_use_defaults = FALSE;
ca9dfc88 6859
830247a4
IZ
6860 RExC_parse++;
6861 paren = *RExC_parse++;
c277df42 6862 ret = NULL; /* For look-ahead/behind. */
a0d0e21e 6863 switch (paren) {
894be9b7 6864
1f1031fe
YO
6865 case 'P': /* (?P...) variants for those used to PCRE/Python */
6866 paren = *RExC_parse++;
6867 if ( paren == '<') /* (?P<...>) named capture */
6868 goto named_capture;
6869 else if (paren == '>') { /* (?P>name) named recursion */
6870 goto named_recursion;
6871 }
6872 else if (paren == '=') { /* (?P=...) named backref */
6873 /* this pretty much dupes the code for \k<NAME> in regatom(), if
6874 you change this make sure you change that */
6875 char* name_start = RExC_parse;
6876 U32 num = 0;
6877 SV *sv_dat = reg_scan_name(pRExC_state,
6878 SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
6879 if (RExC_parse == name_start || *RExC_parse != ')')
6880 vFAIL2("Sequence %.3s... not terminated",parse_start);
6881
6882 if (!SIZE_ONLY) {
6883 num = add_data( pRExC_state, 1, "S" );
6884 RExC_rxi->data->data[num]=(void*)sv_dat;
5a5094bd 6885 SvREFCNT_inc_simple_void(sv_dat);
1f1031fe
YO
6886 }
6887 RExC_sawback = 1;
4444fd9f
KW
6888 ret = reganode(pRExC_state,
6889 ((! FOLD)
6890 ? NREF
2f7f8cb1
KW
6891 : (MORE_ASCII_RESTRICTED)
6892 ? NREFFA
6893 : (AT_LEAST_UNI_SEMANTICS)
6894 ? NREFFU
6895 : (LOC)
6896 ? NREFFL
6897 : NREFF),
4444fd9f 6898 num);
1f1031fe
YO
6899 *flagp |= HASWIDTH;
6900
6901 Set_Node_Offset(ret, parse_start+1);
6902 Set_Node_Cur_Length(ret); /* MJD */
6903
6904 nextchar(pRExC_state);
6905 return ret;
6906 }
57b84237
YO
6907 RExC_parse++;
6908 vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
6909 /*NOTREACHED*/
6910 case '<': /* (?<...) */
b81d288d 6911 if (*RExC_parse == '!')
c277df42 6912 paren = ',';
0a4db386 6913 else if (*RExC_parse != '=')
1f1031fe 6914 named_capture:
0a4db386 6915 { /* (?<...>) */
81714fb9 6916 char *name_start;
894be9b7 6917 SV *svname;
81714fb9
YO
6918 paren= '>';
6919 case '\'': /* (?'...') */
6920 name_start= RExC_parse;
0a4db386
YO
6921 svname = reg_scan_name(pRExC_state,
6922 SIZE_ONLY ? /* reverse test from the others */
6923 REG_RSN_RETURN_NAME :
6924 REG_RSN_RETURN_NULL);
57b84237
YO
6925 if (RExC_parse == name_start) {
6926 RExC_parse++;
6927 vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
6928 /*NOTREACHED*/
6929 }
81714fb9
YO
6930 if (*RExC_parse != paren)
6931 vFAIL2("Sequence (?%c... not terminated",
6932 paren=='>' ? '<' : paren);
6933 if (SIZE_ONLY) {
e62cc96a
YO
6934 HE *he_str;
6935 SV *sv_dat = NULL;
486ec47a 6936 if (!svname) /* shouldn't happen */
894be9b7
YO
6937 Perl_croak(aTHX_
6938 "panic: reg_scan_name returned NULL");
81714fb9
YO
6939 if (!RExC_paren_names) {
6940 RExC_paren_names= newHV();
ad64d0ec 6941 sv_2mortal(MUTABLE_SV(RExC_paren_names));
1f1031fe
YO
6942#ifdef DEBUGGING
6943 RExC_paren_name_list= newAV();
ad64d0ec 6944 sv_2mortal(MUTABLE_SV(RExC_paren_name_list));
1f1031fe 6945#endif
81714fb9
YO
6946 }
6947 he_str = hv_fetch_ent( RExC_paren_names, svname, 1, 0 );
e62cc96a 6948 if ( he_str )
81714fb9 6949 sv_dat = HeVAL(he_str);
e62cc96a 6950 if ( ! sv_dat ) {
81714fb9 6951 /* croak baby croak */
e62cc96a
YO
6952 Perl_croak(aTHX_
6953 "panic: paren_name hash element allocation failed");
6954 } else if ( SvPOK(sv_dat) ) {
76a476f9
YO
6955 /* (?|...) can mean we have dupes so scan to check
6956 its already been stored. Maybe a flag indicating
6957 we are inside such a construct would be useful,
6958 but the arrays are likely to be quite small, so
6959 for now we punt -- dmq */
6960 IV count = SvIV(sv_dat);
6961 I32 *pv = (I32*)SvPVX(sv_dat);
6962 IV i;
6963 for ( i = 0 ; i < count ; i++ ) {
6964 if ( pv[i] == RExC_npar ) {
6965 count = 0;
6966 break;
6967 }
6968 }
6969 if ( count ) {
6970 pv = (I32*)SvGROW(sv_dat, SvCUR(sv_dat) + sizeof(I32)+1);
6971 SvCUR_set(sv_dat, SvCUR(sv_dat) + sizeof(I32));
6972 pv[count] = RExC_npar;
3a92e6ae 6973 SvIV_set(sv_dat, SvIVX(sv_dat) + 1);
76a476f9 6974 }
81714fb9
YO
6975 } else {
6976 (void)SvUPGRADE(sv_dat,SVt_PVNV);
6977 sv_setpvn(sv_dat, (char *)&(RExC_npar), sizeof(I32));
6978 SvIOK_on(sv_dat);
3ec35e0f 6979 SvIV_set(sv_dat, 1);
e62cc96a 6980 }
1f1031fe 6981#ifdef DEBUGGING
17a3c617 6982 /* Yes this does cause a memory leak in debugging Perls */
1f1031fe
YO
6983 if (!av_store(RExC_paren_name_list, RExC_npar, SvREFCNT_inc(svname)))
6984 SvREFCNT_dec(svname);
6985#endif
e62cc96a 6986
81714fb9
YO
6987 /*sv_dump(sv_dat);*/
6988 }
6989 nextchar(pRExC_state);
6990 paren = 1;
6991 goto capturing_parens;
6992 }
6993 RExC_seen |= REG_SEEN_LOOKBEHIND;
b57e4118 6994 RExC_in_lookbehind++;
830247a4 6995 RExC_parse++;
fac92740 6996 case '=': /* (?=...) */
89c6a13e 6997 RExC_seen_zerolen++;
5c3fa2e7 6998 break;
fac92740 6999 case '!': /* (?!...) */
830247a4 7000 RExC_seen_zerolen++;
e2e6a0f1
YO
7001 if (*RExC_parse == ')') {
7002 ret=reg_node(pRExC_state, OPFAIL);
7003 nextchar(pRExC_state);
7004 return ret;
7005 }
594d7033
YO
7006 break;
7007 case '|': /* (?|...) */
7008 /* branch reset, behave like a (?:...) except that
7009 buffers in alternations share the same numbers */
7010 paren = ':';
7011 after_freeze = freeze_paren = RExC_npar;
7012 break;
fac92740
MJD
7013 case ':': /* (?:...) */
7014 case '>': /* (?>...) */
a0d0e21e 7015 break;
fac92740
MJD
7016 case '$': /* (?$...) */
7017 case '@': /* (?@...) */
8615cb43 7018 vFAIL2("Sequence (?%c...) not implemented", (int)paren);
a0d0e21e 7019 break;
fac92740 7020 case '#': /* (?#...) */
830247a4
IZ
7021 while (*RExC_parse && *RExC_parse != ')')
7022 RExC_parse++;
7023 if (*RExC_parse != ')')
c277df42 7024 FAIL("Sequence (?#... not terminated");
830247a4 7025 nextchar(pRExC_state);
a0d0e21e
LW
7026 *flagp = TRYAGAIN;
7027 return NULL;
894be9b7
YO
7028 case '0' : /* (?0) */
7029 case 'R' : /* (?R) */
7030 if (*RExC_parse != ')')
6bda09f9 7031 FAIL("Sequence (?R) not terminated");
1a147d38 7032 ret = reg_node(pRExC_state, GOSTART);
a3b492c3 7033 *flagp |= POSTPONED;
7f69552c
YO
7034 nextchar(pRExC_state);
7035 return ret;
7036 /*notreached*/
894be9b7
YO
7037 { /* named and numeric backreferences */
7038 I32 num;
894be9b7
YO
7039 case '&': /* (?&NAME) */
7040 parse_start = RExC_parse - 1;
1f1031fe 7041 named_recursion:
894be9b7 7042 {
0a4db386
YO
7043 SV *sv_dat = reg_scan_name(pRExC_state,
7044 SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
7045 num = sv_dat ? *((I32 *)SvPVX(sv_dat)) : 0;
894be9b7
YO
7046 }
7047 goto gen_recurse_regop;
7048 /* NOT REACHED */
542fa716
YO
7049 case '+':
7050 if (!(RExC_parse[0] >= '1' && RExC_parse[0] <= '9')) {
7051 RExC_parse++;
7052 vFAIL("Illegal pattern");
7053 }
7054 goto parse_recursion;
7055 /* NOT REACHED*/
7056 case '-': /* (?-1) */
7057 if (!(RExC_parse[0] >= '1' && RExC_parse[0] <= '9')) {
7058 RExC_parse--; /* rewind to let it be handled later */
7059 goto parse_flags;
7060 }
7061 /*FALLTHROUGH */
6bda09f9
YO
7062 case '1': case '2': case '3': case '4': /* (?1) */
7063 case '5': case '6': case '7': case '8': case '9':
7064 RExC_parse--;
542fa716 7065 parse_recursion:
894be9b7
YO
7066 num = atoi(RExC_parse);
7067 parse_start = RExC_parse - 1; /* MJD */
542fa716
YO
7068 if (*RExC_parse == '-')
7069 RExC_parse++;
6bda09f9
YO
7070 while (isDIGIT(*RExC_parse))
7071 RExC_parse++;
7072 if (*RExC_parse!=')')
7073 vFAIL("Expecting close bracket");
894be9b7
YO
7074
7075 gen_recurse_regop:
542fa716
YO
7076 if ( paren == '-' ) {
7077 /*
7078 Diagram of capture buffer numbering.
7079 Top line is the normal capture buffer numbers
3b753521 7080 Bottom line is the negative indexing as from
542fa716
YO
7081 the X (the (?-2))
7082
7083 + 1 2 3 4 5 X 6 7
7084 /(a(x)y)(a(b(c(?-2)d)e)f)(g(h))/
7085 - 5 4 3 2 1 X x x
7086
7087 */
7088 num = RExC_npar + num;
7089 if (num < 1) {
7090 RExC_parse++;
7091 vFAIL("Reference to nonexistent group");
7092 }
7093 } else if ( paren == '+' ) {
7094 num = RExC_npar + num - 1;
7095 }
7096
1a147d38 7097 ret = reganode(pRExC_state, GOSUB, num);
6bda09f9
YO
7098 if (!SIZE_ONLY) {
7099 if (num > (I32)RExC_rx->nparens) {
7100 RExC_parse++;
7101 vFAIL("Reference to nonexistent group");
7102 }
40d049e4 7103 ARG2L_SET( ret, RExC_recurse_count++);
6bda09f9 7104 RExC_emit++;
226de585 7105 DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log,
acff02b8 7106 "Recurse #%"UVuf" to %"IVdf"\n", (UV)ARG(ret), (IV)ARG2L(ret)));
894be9b7 7107 } else {
6bda09f9 7108 RExC_size++;
6bda09f9 7109 }
0a4db386 7110 RExC_seen |= REG_SEEN_RECURSE;
6bda09f9 7111 Set_Node_Length(ret, 1 + regarglen[OP(ret)]); /* MJD */
58663417
RGS
7112 Set_Node_Offset(ret, parse_start); /* MJD */
7113
a3b492c3 7114 *flagp |= POSTPONED;
6bda09f9
YO
7115 nextchar(pRExC_state);
7116 return ret;
894be9b7
YO
7117 } /* named and numeric backreferences */
7118 /* NOT REACHED */
7119
fac92740 7120 case '?': /* (??...) */
6136c704 7121 is_logical = 1;
57b84237
YO
7122 if (*RExC_parse != '{') {
7123 RExC_parse++;
7124 vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
7125 /*NOTREACHED*/
7126 }
a3b492c3 7127 *flagp |= POSTPONED;
830247a4 7128 paren = *RExC_parse++;
0f5d15d6 7129 /* FALL THROUGH */
fac92740 7130 case '{': /* (?{...}) */
c277df42 7131 {
2eccd3b2
NC
7132 I32 count = 1;
7133 U32 n = 0;
c277df42 7134 char c;
830247a4 7135 char *s = RExC_parse;
c277df42 7136
830247a4
IZ
7137 RExC_seen_zerolen++;
7138 RExC_seen |= REG_SEEN_EVAL;
7139 while (count && (c = *RExC_parse)) {
6136c704
AL
7140 if (c == '\\') {
7141 if (RExC_parse[1])
7142 RExC_parse++;
7143 }
b81d288d 7144 else if (c == '{')
c277df42 7145 count++;
b81d288d 7146 else if (c == '}')
c277df42 7147 count--;
830247a4 7148 RExC_parse++;
c277df42 7149 }
6136c704 7150 if (*RExC_parse != ')') {
b81d288d 7151 RExC_parse = s;
b45f050a
JF
7152 vFAIL("Sequence (?{...}) not terminated or not {}-balanced");
7153 }
c277df42 7154 if (!SIZE_ONLY) {
f3548bdc 7155 PAD *pad;
6136c704
AL
7156 OP_4tree *sop, *rop;
7157 SV * const sv = newSVpvn(s, RExC_parse - 1 - s);
c277df42 7158
569233ed
SB
7159 ENTER;
7160 Perl_save_re_context(aTHX);
d59a8b3e 7161 rop = Perl_sv_compile_2op_is_broken(aTHX_ sv, &sop, "re", &pad);
9b978d73
DM
7162 sop->op_private |= OPpREFCOUNTED;
7163 /* re_dup will OpREFCNT_inc */
7164 OpREFCNT_set(sop, 1);
569233ed 7165 LEAVE;
c277df42 7166
830247a4 7167 n = add_data(pRExC_state, 3, "nop");
f8fc2ecf
YO
7168 RExC_rxi->data->data[n] = (void*)rop;
7169 RExC_rxi->data->data[n+1] = (void*)sop;
7170 RExC_rxi->data->data[n+2] = (void*)pad;
c277df42 7171 SvREFCNT_dec(sv);
a0ed51b3 7172 }
e24b16f9 7173 else { /* First pass */
830247a4 7174 if (PL_reginterp_cnt < ++RExC_seen_evals
923e4eb5 7175 && IN_PERL_RUNTIME)
2cd61cdb
IZ
7176 /* No compiled RE interpolated, has runtime
7177 components ===> unsafe. */
7178 FAIL("Eval-group not allowed at runtime, use re 'eval'");
5b61d3f7 7179 if (PL_tainting && PL_tainted)
cc6b7395 7180 FAIL("Eval-group in insecure regular expression");
54df2634 7181#if PERL_VERSION > 8
923e4eb5 7182 if (IN_PERL_COMPILETIME)
b5c19bd7 7183 PL_cv_has_eval = 1;
54df2634 7184#endif
c277df42 7185 }
b5c19bd7 7186
830247a4 7187 nextchar(pRExC_state);
6136c704 7188 if (is_logical) {
830247a4 7189 ret = reg_node(pRExC_state, LOGICAL);
0f5d15d6
IZ
7190 if (!SIZE_ONLY)
7191 ret->flags = 2;
3dab1dad 7192 REGTAIL(pRExC_state, ret, reganode(pRExC_state, EVAL, n));
fac92740 7193 /* deal with the length of this later - MJD */
0f5d15d6
IZ
7194 return ret;
7195 }
ccb2c380
MP
7196 ret = reganode(pRExC_state, EVAL, n);
7197 Set_Node_Length(ret, RExC_parse - parse_start + 1);
7198 Set_Node_Offset(ret, parse_start);
7199 return ret;
c277df42 7200 }
fac92740 7201 case '(': /* (?(?{...})...) and (?(?=...)...) */
c277df42 7202 {
0a4db386 7203 int is_define= 0;
fac92740 7204 if (RExC_parse[0] == '?') { /* (?(?...)) */
b81d288d
AB
7205 if (RExC_parse[1] == '=' || RExC_parse[1] == '!'
7206 || RExC_parse[1] == '<'
830247a4 7207 || RExC_parse[1] == '{') { /* Lookahead or eval. */
c277df42
IZ
7208 I32 flag;
7209
830247a4 7210 ret = reg_node(pRExC_state, LOGICAL);
0f5d15d6
IZ
7211 if (!SIZE_ONLY)
7212 ret->flags = 1;
3dab1dad 7213 REGTAIL(pRExC_state, ret, reg(pRExC_state, 1, &flag,depth+1));
c277df42 7214 goto insert_if;
b81d288d 7215 }
a0ed51b3 7216 }
0a4db386
YO
7217 else if ( RExC_parse[0] == '<' /* (?(<NAME>)...) */
7218 || RExC_parse[0] == '\'' ) /* (?('NAME')...) */
7219 {
7220 char ch = RExC_parse[0] == '<' ? '>' : '\'';
7221 char *name_start= RExC_parse++;
2eccd3b2 7222 U32 num = 0;
0a4db386
YO
7223 SV *sv_dat=reg_scan_name(pRExC_state,
7224 SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
7225 if (RExC_parse == name_start || *RExC_parse != ch)
7226 vFAIL2("Sequence (?(%c... not terminated",
7227 (ch == '>' ? '<' : ch));
7228 RExC_parse++;
7229 if (!SIZE_ONLY) {
7230 num = add_data( pRExC_state, 1, "S" );
f8fc2ecf 7231 RExC_rxi->data->data[num]=(void*)sv_dat;
5a5094bd 7232 SvREFCNT_inc_simple_void(sv_dat);
0a4db386
YO
7233 }
7234 ret = reganode(pRExC_state,NGROUPP,num);
7235 goto insert_if_check_paren;
7236 }
7237 else if (RExC_parse[0] == 'D' &&
7238 RExC_parse[1] == 'E' &&
7239 RExC_parse[2] == 'F' &&
7240 RExC_parse[3] == 'I' &&
7241 RExC_parse[4] == 'N' &&
7242 RExC_parse[5] == 'E')
7243 {
7244 ret = reganode(pRExC_state,DEFINEP,0);
7245 RExC_parse +=6 ;
7246 is_define = 1;
7247 goto insert_if_check_paren;
7248 }
7249 else if (RExC_parse[0] == 'R') {
7250 RExC_parse++;
7251 parno = 0;
7252 if (RExC_parse[0] >= '1' && RExC_parse[0] <= '9' ) {
7253 parno = atoi(RExC_parse++);
7254 while (isDIGIT(*RExC_parse))
7255 RExC_parse++;
7256 } else if (RExC_parse[0] == '&') {
7257 SV *sv_dat;
7258 RExC_parse++;
7259 sv_dat = reg_scan_name(pRExC_state,
7260 SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
7261 parno = sv_dat ? *((I32 *)SvPVX(sv_dat)) : 0;
7262 }
1a147d38 7263 ret = reganode(pRExC_state,INSUBP,parno);
0a4db386
YO
7264 goto insert_if_check_paren;
7265 }
830247a4 7266 else if (RExC_parse[0] >= '1' && RExC_parse[0] <= '9' ) {
fac92740 7267 /* (?(1)...) */
6136c704 7268 char c;
830247a4 7269 parno = atoi(RExC_parse++);
c277df42 7270
830247a4
IZ
7271 while (isDIGIT(*RExC_parse))
7272 RExC_parse++;
fac92740 7273 ret = reganode(pRExC_state, GROUPP, parno);
2af232bd 7274
0a4db386 7275 insert_if_check_paren:
830247a4 7276 if ((c = *nextchar(pRExC_state)) != ')')
b45f050a 7277 vFAIL("Switch condition not recognized");
c277df42 7278 insert_if:
3dab1dad
YO
7279 REGTAIL(pRExC_state, ret, reganode(pRExC_state, IFTHEN, 0));
7280 br = regbranch(pRExC_state, &flags, 1,depth+1);
c277df42 7281 if (br == NULL)
830247a4 7282 br = reganode(pRExC_state, LONGJMP, 0);
c277df42 7283 else
3dab1dad 7284 REGTAIL(pRExC_state, br, reganode(pRExC_state, LONGJMP, 0));
830247a4 7285 c = *nextchar(pRExC_state);
d1b80229
IZ
7286 if (flags&HASWIDTH)
7287 *flagp |= HASWIDTH;
c277df42 7288 if (c == '|') {
0a4db386
YO
7289 if (is_define)
7290 vFAIL("(?(DEFINE)....) does not allow branches");
830247a4 7291 lastbr = reganode(pRExC_state, IFTHEN, 0); /* Fake one for optimizer. */
3dab1dad
YO
7292 regbranch(pRExC_state, &flags, 1,depth+1);
7293 REGTAIL(pRExC_state, ret, lastbr);
d1b80229
IZ
7294 if (flags&HASWIDTH)
7295 *flagp |= HASWIDTH;
830247a4 7296 c = *nextchar(pRExC_state);
a0ed51b3
LW
7297 }
7298 else
c277df42
IZ
7299 lastbr = NULL;
7300 if (c != ')')
8615cb43 7301 vFAIL("Switch (?(condition)... contains too many branches");
830247a4 7302 ender = reg_node(pRExC_state, TAIL);
3dab1dad 7303 REGTAIL(pRExC_state, br, ender);
c277df42 7304 if (lastbr) {
3dab1dad
YO
7305 REGTAIL(pRExC_state, lastbr, ender);
7306 REGTAIL(pRExC_state, NEXTOPER(NEXTOPER(lastbr)), ender);
a0ed51b3
LW
7307 }
7308 else
3dab1dad 7309 REGTAIL(pRExC_state, ret, ender);
3b57cd43
YO
7310 RExC_size++; /* XXX WHY do we need this?!!
7311 For large programs it seems to be required
7312 but I can't figure out why. -- dmq*/
c277df42 7313 return ret;
a0ed51b3
LW
7314 }
7315 else {
830247a4 7316 vFAIL2("Unknown switch condition (?(%.2s", RExC_parse);
c277df42
IZ
7317 }
7318 }
1b1626e4 7319 case 0:
830247a4 7320 RExC_parse--; /* for vFAIL to print correctly */
8615cb43 7321 vFAIL("Sequence (? incomplete");
1b1626e4 7322 break;
85508812
KW
7323 case DEFAULT_PAT_MOD: /* Use default flags with the exceptions
7324 that follow */
fb85c044
KW
7325 has_use_defaults = TRUE;
7326 STD_PMMOD_FLAGS_CLEAR(&RExC_flags);
e40e74fe
KW
7327 set_regex_charset(&RExC_flags, (RExC_utf8 || RExC_uni_semantics)
7328 ? REGEX_UNICODE_CHARSET
7329 : REGEX_DEPENDS_CHARSET);
fb85c044 7330 goto parse_flags;
a0d0e21e 7331 default:
cde0cee5
YO
7332 --RExC_parse;
7333 parse_flags: /* (?i) */
7334 {
7335 U32 posflags = 0, negflags = 0;
7336 U32 *flagsp = &posflags;
f6a766d5 7337 char has_charset_modifier = '\0';
295c2f7d
KW
7338 regex_charset cs = (RExC_utf8 || RExC_uni_semantics)
7339 ? REGEX_UNICODE_CHARSET
7340 : REGEX_DEPENDS_CHARSET;
cde0cee5
YO
7341
7342 while (*RExC_parse) {
7343 /* && strchr("iogcmsx", *RExC_parse) */
9d1d55b5
JP
7344 /* (?g), (?gc) and (?o) are useless here
7345 and must be globally applied -- japhy */
cde0cee5
YO
7346 switch (*RExC_parse) {
7347 CASE_STD_PMMOD_FLAGS_PARSE_SET(flagsp);
9de15fec 7348 case LOCALE_PAT_MOD:
f6a766d5
KW
7349 if (has_charset_modifier) {
7350 goto excess_modifier;
7351 }
7352 else if (flagsp == &negflags) {
9442e3b8 7353 goto neg_modifier;
9de15fec 7354 }
a62b1201 7355 cs = REGEX_LOCALE_CHARSET;
f6a766d5 7356 has_charset_modifier = LOCALE_PAT_MOD;
4624b182 7357 RExC_contains_locale = 1;
9de15fec
KW
7358 break;
7359 case UNICODE_PAT_MOD:
f6a766d5
KW
7360 if (has_charset_modifier) {
7361 goto excess_modifier;
7362 }
7363 else if (flagsp == &negflags) {
9442e3b8 7364 goto neg_modifier;
9de15fec 7365 }
a62b1201 7366 cs = REGEX_UNICODE_CHARSET;
f6a766d5 7367 has_charset_modifier = UNICODE_PAT_MOD;
9de15fec 7368 break;
cfaf538b 7369 case ASCII_RESTRICT_PAT_MOD:
f6a766d5 7370 if (flagsp == &negflags) {
9442e3b8 7371 goto neg_modifier;
cfaf538b 7372 }
f6a766d5
KW
7373 if (has_charset_modifier) {
7374 if (cs != REGEX_ASCII_RESTRICTED_CHARSET) {
7375 goto excess_modifier;
7376 }
2f7f8cb1 7377 /* Doubled modifier implies more restricted */
f6a766d5
KW
7378 cs = REGEX_ASCII_MORE_RESTRICTED_CHARSET;
7379 }
2f7f8cb1
KW
7380 else {
7381 cs = REGEX_ASCII_RESTRICTED_CHARSET;
7382 }
f6a766d5 7383 has_charset_modifier = ASCII_RESTRICT_PAT_MOD;
cfaf538b 7384 break;
50e91148 7385 case DEPENDS_PAT_MOD:
9442e3b8 7386 if (has_use_defaults) {
9de15fec 7387 goto fail_modifiers;
f6a766d5 7388 }
9442e3b8
KW
7389 else if (flagsp == &negflags) {
7390 goto neg_modifier;
7391 }
f6a766d5
KW
7392 else if (has_charset_modifier) {
7393 goto excess_modifier;
9de15fec 7394 }
7b98bc43
KW
7395
7396 /* The dual charset means unicode semantics if the
7397 * pattern (or target, not known until runtime) are
e40e74fe
KW
7398 * utf8, or something in the pattern indicates unicode
7399 * semantics */
7400 cs = (RExC_utf8 || RExC_uni_semantics)
a62b1201
KW
7401 ? REGEX_UNICODE_CHARSET
7402 : REGEX_DEPENDS_CHARSET;
f6a766d5 7403 has_charset_modifier = DEPENDS_PAT_MOD;
9de15fec 7404 break;
f6a766d5
KW
7405 excess_modifier:
7406 RExC_parse++;
7407 if (has_charset_modifier == ASCII_RESTRICT_PAT_MOD) {
0c96c706 7408 vFAIL2("Regexp modifier \"%c\" may appear a maximum of twice", ASCII_RESTRICT_PAT_MOD);
f6a766d5
KW
7409 }
7410 else if (has_charset_modifier == *(RExC_parse - 1)) {
0c96c706 7411 vFAIL2("Regexp modifier \"%c\" may not appear twice", *(RExC_parse - 1));
f6a766d5
KW
7412 }
7413 else {
0c96c706 7414 vFAIL3("Regexp modifiers \"%c\" and \"%c\" are mutually exclusive", has_charset_modifier, *(RExC_parse - 1));
f6a766d5
KW
7415 }
7416 /*NOTREACHED*/
9442e3b8
KW
7417 neg_modifier:
7418 RExC_parse++;
7419 vFAIL2("Regexp modifier \"%c\" may not appear after the \"-\"", *(RExC_parse - 1));
7420 /*NOTREACHED*/
f7819f85
A
7421 case ONCE_PAT_MOD: /* 'o' */
7422 case GLOBAL_PAT_MOD: /* 'g' */
9d1d55b5 7423 if (SIZE_ONLY && ckWARN(WARN_REGEXP)) {
6136c704 7424 const I32 wflagbit = *RExC_parse == 'o' ? WASTED_O : WASTED_G;
9d1d55b5
JP
7425 if (! (wastedflags & wflagbit) ) {
7426 wastedflags |= wflagbit;
7427 vWARN5(
7428 RExC_parse + 1,
7429 "Useless (%s%c) - %suse /%c modifier",
7430 flagsp == &negflags ? "?-" : "?",
7431 *RExC_parse,
7432 flagsp == &negflags ? "don't " : "",
7433 *RExC_parse
7434 );
7435 }
7436 }
cde0cee5
YO
7437 break;
7438
f7819f85 7439 case CONTINUE_PAT_MOD: /* 'c' */
9d1d55b5 7440 if (SIZE_ONLY && ckWARN(WARN_REGEXP)) {
6136c704
AL
7441 if (! (wastedflags & WASTED_C) ) {
7442 wastedflags |= WASTED_GC;
9d1d55b5
JP
7443 vWARN3(
7444 RExC_parse + 1,
7445 "Useless (%sc) - %suse /gc modifier",
7446 flagsp == &negflags ? "?-" : "?",
7447 flagsp == &negflags ? "don't " : ""
7448 );
7449 }
7450 }
cde0cee5 7451 break;
f7819f85 7452 case KEEPCOPY_PAT_MOD: /* 'p' */
cde0cee5 7453 if (flagsp == &negflags) {
668c081a
NC
7454 if (SIZE_ONLY)
7455 ckWARNreg(RExC_parse + 1,"Useless use of (?-p)");
cde0cee5
YO
7456 } else {
7457 *flagsp |= RXf_PMf_KEEPCOPY;
7458 }
7459 break;
7460 case '-':
3b753521 7461 /* A flag is a default iff it is following a minus, so
fb85c044
KW
7462 * if there is a minus, it means will be trying to
7463 * re-specify a default which is an error */
7464 if (has_use_defaults || flagsp == &negflags) {
9de15fec 7465 fail_modifiers:
57b84237
YO
7466 RExC_parse++;
7467 vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
7468 /*NOTREACHED*/
7469 }
cde0cee5
YO
7470 flagsp = &negflags;
7471 wastedflags = 0; /* reset so (?g-c) warns twice */
7472 break;
7473 case ':':
7474 paren = ':';
7475 /*FALLTHROUGH*/
7476 case ')':
7477 RExC_flags |= posflags;
7478 RExC_flags &= ~negflags;
a62b1201 7479 set_regex_charset(&RExC_flags, cs);
f7819f85
A
7480 if (paren != ':') {
7481 oregflags |= posflags;
7482 oregflags &= ~negflags;
a62b1201 7483 set_regex_charset(&oregflags, cs);
f7819f85 7484 }
cde0cee5
YO
7485 nextchar(pRExC_state);
7486 if (paren != ':') {
7487 *flagp = TRYAGAIN;
7488 return NULL;
7489 } else {
7490 ret = NULL;
7491 goto parse_rest;
7492 }
7493 /*NOTREACHED*/
7494 default:
cde0cee5
YO
7495 RExC_parse++;
7496 vFAIL3("Sequence (%.*s...) not recognized", RExC_parse-seqstart, seqstart);
7497 /*NOTREACHED*/
7498 }
830247a4 7499 ++RExC_parse;
48c036b1 7500 }
cde0cee5 7501 }} /* one for the default block, one for the switch */
a0d0e21e 7502 }
fac92740 7503 else { /* (...) */
81714fb9 7504 capturing_parens:
830247a4
IZ
7505 parno = RExC_npar;
7506 RExC_npar++;
e2e6a0f1 7507
830247a4 7508 ret = reganode(pRExC_state, OPEN, parno);
e2e6a0f1
YO
7509 if (!SIZE_ONLY ){
7510 if (!RExC_nestroot)
7511 RExC_nestroot = parno;
c009da3d
YO
7512 if (RExC_seen & REG_SEEN_RECURSE
7513 && !RExC_open_parens[parno-1])
7514 {
e2e6a0f1 7515 DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log,
40d049e4
YO
7516 "Setting open paren #%"IVdf" to %d\n",
7517 (IV)parno, REG_NODE_NUM(ret)));
e2e6a0f1
YO
7518 RExC_open_parens[parno-1]= ret;
7519 }
6bda09f9 7520 }
fac92740
MJD
7521 Set_Node_Length(ret, 1); /* MJD */
7522 Set_Node_Offset(ret, RExC_parse); /* MJD */
6136c704 7523 is_open = 1;
a0d0e21e 7524 }
a0ed51b3 7525 }
fac92740 7526 else /* ! paren */
a0d0e21e 7527 ret = NULL;
cde0cee5
YO
7528
7529 parse_rest:
a0d0e21e 7530 /* Pick up the branches, linking them together. */
fac92740 7531 parse_start = RExC_parse; /* MJD */
3dab1dad 7532 br = regbranch(pRExC_state, &flags, 1,depth+1);
ee91d26e 7533
fac92740 7534 /* branch_len = (paren != 0); */
2af232bd 7535
a0d0e21e
LW
7536 if (br == NULL)
7537 return(NULL);
830247a4
IZ
7538 if (*RExC_parse == '|') {
7539 if (!SIZE_ONLY && RExC_extralen) {
6bda09f9 7540 reginsert(pRExC_state, BRANCHJ, br, depth+1);
a0ed51b3 7541 }
fac92740 7542 else { /* MJD */
6bda09f9 7543 reginsert(pRExC_state, BRANCH, br, depth+1);
fac92740
MJD
7544 Set_Node_Length(br, paren != 0);
7545 Set_Node_Offset_To_R(br-RExC_emit_start, parse_start-RExC_start);
7546 }
c277df42
IZ
7547 have_branch = 1;
7548 if (SIZE_ONLY)
830247a4 7549 RExC_extralen += 1; /* For BRANCHJ-BRANCH. */
a0ed51b3
LW
7550 }
7551 else if (paren == ':') {
c277df42
IZ
7552 *flagp |= flags&SIMPLE;
7553 }
6136c704 7554 if (is_open) { /* Starts with OPEN. */
3dab1dad 7555 REGTAIL(pRExC_state, ret, br); /* OPEN -> first. */
a0ed51b3
LW
7556 }
7557 else if (paren != '?') /* Not Conditional */
a0d0e21e 7558 ret = br;
8ae10a67 7559 *flagp |= flags & (SPSTART | HASWIDTH | POSTPONED);
c277df42 7560 lastbr = br;
830247a4
IZ
7561 while (*RExC_parse == '|') {
7562 if (!SIZE_ONLY && RExC_extralen) {
7563 ender = reganode(pRExC_state, LONGJMP,0);
3dab1dad 7564 REGTAIL(pRExC_state, NEXTOPER(NEXTOPER(lastbr)), ender); /* Append to the previous. */
c277df42
IZ
7565 }
7566 if (SIZE_ONLY)
830247a4
IZ
7567 RExC_extralen += 2; /* Account for LONGJMP. */
7568 nextchar(pRExC_state);
594d7033
YO
7569 if (freeze_paren) {
7570 if (RExC_npar > after_freeze)
7571 after_freeze = RExC_npar;
7572 RExC_npar = freeze_paren;
7573 }
3dab1dad 7574 br = regbranch(pRExC_state, &flags, 0, depth+1);
2af232bd 7575
a687059c 7576 if (br == NULL)
a0d0e21e 7577 return(NULL);
3dab1dad 7578 REGTAIL(pRExC_state, lastbr, br); /* BRANCH -> BRANCH. */
c277df42 7579 lastbr = br;
8ae10a67 7580 *flagp |= flags & (SPSTART | HASWIDTH | POSTPONED);
a0d0e21e
LW
7581 }
7582
c277df42
IZ
7583 if (have_branch || paren != ':') {
7584 /* Make a closing node, and hook it on the end. */
7585 switch (paren) {
7586 case ':':
830247a4 7587 ender = reg_node(pRExC_state, TAIL);
c277df42
IZ
7588 break;
7589 case 1:
830247a4 7590 ender = reganode(pRExC_state, CLOSE, parno);
40d049e4
YO
7591 if (!SIZE_ONLY && RExC_seen & REG_SEEN_RECURSE) {
7592 DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log,
7593 "Setting close paren #%"IVdf" to %d\n",
7594 (IV)parno, REG_NODE_NUM(ender)));
7595 RExC_close_parens[parno-1]= ender;
e2e6a0f1
YO
7596 if (RExC_nestroot == parno)
7597 RExC_nestroot = 0;
40d049e4 7598 }
fac92740
MJD
7599 Set_Node_Offset(ender,RExC_parse+1); /* MJD */
7600 Set_Node_Length(ender,1); /* MJD */
c277df42
IZ
7601 break;
7602 case '<':
c277df42
IZ
7603 case ',':
7604 case '=':
7605 case '!':
c277df42 7606 *flagp &= ~HASWIDTH;
821b33a5
IZ
7607 /* FALL THROUGH */
7608 case '>':
830247a4 7609 ender = reg_node(pRExC_state, SUCCEED);
c277df42
IZ
7610 break;
7611 case 0:
830247a4 7612 ender = reg_node(pRExC_state, END);
40d049e4
YO
7613 if (!SIZE_ONLY) {
7614 assert(!RExC_opend); /* there can only be one! */
7615 RExC_opend = ender;
7616 }
c277df42
IZ
7617 break;
7618 }
eaf3ca90 7619 REGTAIL(pRExC_state, lastbr, ender);
a0d0e21e 7620
9674d46a 7621 if (have_branch && !SIZE_ONLY) {
eaf3ca90
YO
7622 if (depth==1)
7623 RExC_seen |= REG_TOP_LEVEL_BRANCHES;
7624
c277df42 7625 /* Hook the tails of the branches to the closing node. */
9674d46a
AL
7626 for (br = ret; br; br = regnext(br)) {
7627 const U8 op = PL_regkind[OP(br)];
7628 if (op == BRANCH) {
07be1b83 7629 REGTAIL_STUDY(pRExC_state, NEXTOPER(br), ender);
9674d46a
AL
7630 }
7631 else if (op == BRANCHJ) {
07be1b83 7632 REGTAIL_STUDY(pRExC_state, NEXTOPER(NEXTOPER(br)), ender);
9674d46a 7633 }
c277df42
IZ
7634 }
7635 }
a0d0e21e 7636 }
c277df42
IZ
7637
7638 {
e1ec3a88
AL
7639 const char *p;
7640 static const char parens[] = "=!<,>";
c277df42
IZ
7641
7642 if (paren && (p = strchr(parens, paren))) {
eb160463 7643 U8 node = ((p - parens) % 2) ? UNLESSM : IFMATCH;
c277df42
IZ
7644 int flag = (p - parens) > 1;
7645
7646 if (paren == '>')
7647 node = SUSPEND, flag = 0;
6bda09f9 7648 reginsert(pRExC_state, node,ret, depth+1);
45948336
EP
7649 Set_Node_Cur_Length(ret);
7650 Set_Node_Offset(ret, parse_start + 1);
c277df42 7651 ret->flags = flag;
07be1b83 7652 REGTAIL_STUDY(pRExC_state, ret, reg_node(pRExC_state, TAIL));
c277df42 7653 }
a0d0e21e
LW
7654 }
7655
7656 /* Check for proper termination. */
ce3e6498 7657 if (paren) {
e2509266 7658 RExC_flags = oregflags;
830247a4
IZ
7659 if (RExC_parse >= RExC_end || *nextchar(pRExC_state) != ')') {
7660 RExC_parse = oregcomp_parse;
380a0633 7661 vFAIL("Unmatched (");
ce3e6498 7662 }
a0ed51b3 7663 }
830247a4
IZ
7664 else if (!paren && RExC_parse < RExC_end) {
7665 if (*RExC_parse == ')') {
7666 RExC_parse++;
380a0633 7667 vFAIL("Unmatched )");
a0ed51b3
LW
7668 }
7669 else
b45f050a 7670 FAIL("Junk on end of regexp"); /* "Can't happen". */
a0d0e21e
LW
7671 /* NOTREACHED */
7672 }
b57e4118
KW
7673
7674 if (RExC_in_lookbehind) {
7675 RExC_in_lookbehind--;
7676 }
fd4be6f0 7677 if (after_freeze > RExC_npar)
594d7033 7678 RExC_npar = after_freeze;
a0d0e21e 7679 return(ret);
a687059c
LW
7680}
7681
7682/*
7683 - regbranch - one alternative of an | operator
7684 *
7685 * Implements the concatenation operator.
7686 */
76e3520e 7687STATIC regnode *
3dab1dad 7688S_regbranch(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, I32 first, U32 depth)
a687059c 7689{
97aff369 7690 dVAR;
c277df42
IZ
7691 register regnode *ret;
7692 register regnode *chain = NULL;
7693 register regnode *latest;
7694 I32 flags = 0, c = 0;
3dab1dad 7695 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
7696
7697 PERL_ARGS_ASSERT_REGBRANCH;
7698
3dab1dad 7699 DEBUG_PARSE("brnc");
02daf0ab 7700
b81d288d 7701 if (first)
c277df42
IZ
7702 ret = NULL;
7703 else {
b81d288d 7704 if (!SIZE_ONLY && RExC_extralen)
830247a4 7705 ret = reganode(pRExC_state, BRANCHJ,0);
fac92740 7706 else {
830247a4 7707 ret = reg_node(pRExC_state, BRANCH);
fac92740
MJD
7708 Set_Node_Length(ret, 1);
7709 }
c277df42
IZ
7710 }
7711
b81d288d 7712 if (!first && SIZE_ONLY)
830247a4 7713 RExC_extralen += 1; /* BRANCHJ */
b81d288d 7714
c277df42 7715 *flagp = WORST; /* Tentatively. */
a0d0e21e 7716
830247a4
IZ
7717 RExC_parse--;
7718 nextchar(pRExC_state);
7719 while (RExC_parse < RExC_end && *RExC_parse != '|' && *RExC_parse != ')') {
a0d0e21e 7720 flags &= ~TRYAGAIN;
3dab1dad 7721 latest = regpiece(pRExC_state, &flags,depth+1);
a0d0e21e
LW
7722 if (latest == NULL) {
7723 if (flags & TRYAGAIN)
7724 continue;
7725 return(NULL);
a0ed51b3
LW
7726 }
7727 else if (ret == NULL)
c277df42 7728 ret = latest;
8ae10a67 7729 *flagp |= flags&(HASWIDTH|POSTPONED);
c277df42 7730 if (chain == NULL) /* First piece. */
a0d0e21e
LW
7731 *flagp |= flags&SPSTART;
7732 else {
830247a4 7733 RExC_naughty++;
3dab1dad 7734 REGTAIL(pRExC_state, chain, latest);
a687059c 7735 }
a0d0e21e 7736 chain = latest;
c277df42
IZ
7737 c++;
7738 }
7739 if (chain == NULL) { /* Loop ran zero times. */
830247a4 7740 chain = reg_node(pRExC_state, NOTHING);
c277df42
IZ
7741 if (ret == NULL)
7742 ret = chain;
7743 }
7744 if (c == 1) {
7745 *flagp |= flags&SIMPLE;
a0d0e21e 7746 }
a687059c 7747
d4c19fe8 7748 return ret;
a687059c
LW
7749}
7750
7751/*
7752 - regpiece - something followed by possible [*+?]
7753 *
7754 * Note that the branching code sequences used for ? and the general cases
7755 * of * and + are somewhat optimized: they use the same NOTHING node as
7756 * both the endmarker for their branch list and the body of the last branch.
7757 * It might seem that this node could be dispensed with entirely, but the
7758 * endmarker role is not redundant.
7759 */
76e3520e 7760STATIC regnode *
3dab1dad 7761S_regpiece(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth)
a687059c 7762{
97aff369 7763 dVAR;
c277df42 7764 register regnode *ret;
a0d0e21e
LW
7765 register char op;
7766 register char *next;
7767 I32 flags;
1df70142 7768 const char * const origparse = RExC_parse;
a0d0e21e 7769 I32 min;
c277df42 7770 I32 max = REG_INFTY;
f19a8d85 7771#ifdef RE_TRACK_PATTERN_OFFSETS
fac92740 7772 char *parse_start;
f19a8d85 7773#endif
10edeb5d 7774 const char *maxpos = NULL;
3dab1dad 7775 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
7776
7777 PERL_ARGS_ASSERT_REGPIECE;
7778
3dab1dad 7779 DEBUG_PARSE("piec");
a0d0e21e 7780
3dab1dad 7781 ret = regatom(pRExC_state, &flags,depth+1);
a0d0e21e
LW
7782 if (ret == NULL) {
7783 if (flags & TRYAGAIN)
7784 *flagp |= TRYAGAIN;
7785 return(NULL);
7786 }
7787
830247a4 7788 op = *RExC_parse;
a0d0e21e 7789
830247a4 7790 if (op == '{' && regcurly(RExC_parse)) {
10edeb5d 7791 maxpos = NULL;
f19a8d85 7792#ifdef RE_TRACK_PATTERN_OFFSETS
fac92740 7793 parse_start = RExC_parse; /* MJD */
f19a8d85 7794#endif
830247a4 7795 next = RExC_parse + 1;
a0d0e21e
LW
7796 while (isDIGIT(*next) || *next == ',') {
7797 if (*next == ',') {
7798 if (maxpos)
7799 break;
7800 else
7801 maxpos = next;
a687059c 7802 }
a0d0e21e
LW
7803 next++;
7804 }
7805 if (*next == '}') { /* got one */
7806 if (!maxpos)
7807 maxpos = next;
830247a4
IZ
7808 RExC_parse++;
7809 min = atoi(RExC_parse);
a0d0e21e
LW
7810 if (*maxpos == ',')
7811 maxpos++;
7812 else
830247a4 7813 maxpos = RExC_parse;
a0d0e21e
LW
7814 max = atoi(maxpos);
7815 if (!max && *maxpos != '0')
c277df42
IZ
7816 max = REG_INFTY; /* meaning "infinity" */
7817 else if (max >= REG_INFTY)
8615cb43 7818 vFAIL2("Quantifier in {,} bigger than %d", REG_INFTY - 1);
830247a4
IZ
7819 RExC_parse = next;
7820 nextchar(pRExC_state);
a0d0e21e
LW
7821
7822 do_curly:
7823 if ((flags&SIMPLE)) {
830247a4 7824 RExC_naughty += 2 + RExC_naughty / 2;
6bda09f9 7825 reginsert(pRExC_state, CURLY, ret, depth+1);
fac92740
MJD
7826 Set_Node_Offset(ret, parse_start+1); /* MJD */
7827 Set_Node_Cur_Length(ret);
a0d0e21e
LW
7828 }
7829 else {
3dab1dad 7830 regnode * const w = reg_node(pRExC_state, WHILEM);
2c2d71f5
JH
7831
7832 w->flags = 0;
3dab1dad 7833 REGTAIL(pRExC_state, ret, w);
830247a4 7834 if (!SIZE_ONLY && RExC_extralen) {
6bda09f9
YO
7835 reginsert(pRExC_state, LONGJMP,ret, depth+1);
7836 reginsert(pRExC_state, NOTHING,ret, depth+1);
c277df42
IZ
7837 NEXT_OFF(ret) = 3; /* Go over LONGJMP. */
7838 }
6bda09f9 7839 reginsert(pRExC_state, CURLYX,ret, depth+1);
fac92740
MJD
7840 /* MJD hk */
7841 Set_Node_Offset(ret, parse_start+1);
2af232bd 7842 Set_Node_Length(ret,
fac92740 7843 op == '{' ? (RExC_parse - parse_start) : 1);
2af232bd 7844
830247a4 7845 if (!SIZE_ONLY && RExC_extralen)
c277df42 7846 NEXT_OFF(ret) = 3; /* Go over NOTHING to LONGJMP. */
3dab1dad 7847 REGTAIL(pRExC_state, ret, reg_node(pRExC_state, NOTHING));
c277df42 7848 if (SIZE_ONLY)
830247a4
IZ
7849 RExC_whilem_seen++, RExC_extralen += 3;
7850 RExC_naughty += 4 + RExC_naughty; /* compound interest */
a0d0e21e 7851 }
c277df42 7852 ret->flags = 0;
a0d0e21e
LW
7853
7854 if (min > 0)
821b33a5
IZ
7855 *flagp = WORST;
7856 if (max > 0)
7857 *flagp |= HASWIDTH;
8fa23287 7858 if (max < min)
8615cb43 7859 vFAIL("Can't do {n,m} with n > m");
c277df42 7860 if (!SIZE_ONLY) {
eb160463
GS
7861 ARG1_SET(ret, (U16)min);
7862 ARG2_SET(ret, (U16)max);
a687059c 7863 }
a687059c 7864
a0d0e21e 7865 goto nest_check;
a687059c 7866 }
a0d0e21e 7867 }
a687059c 7868
a0d0e21e
LW
7869 if (!ISMULT1(op)) {
7870 *flagp = flags;
a687059c 7871 return(ret);
a0d0e21e 7872 }
bb20fd44 7873
c277df42 7874#if 0 /* Now runtime fix should be reliable. */
b45f050a
JF
7875
7876 /* if this is reinstated, don't forget to put this back into perldiag:
7877
7878 =item Regexp *+ operand could be empty at {#} in regex m/%s/
7879
7880 (F) The part of the regexp subject to either the * or + quantifier
7881 could match an empty string. The {#} shows in the regular
7882 expression about where the problem was discovered.
7883
7884 */
7885
bb20fd44 7886 if (!(flags&HASWIDTH) && op != '?')
b45f050a 7887 vFAIL("Regexp *+ operand could be empty");
b81d288d 7888#endif
bb20fd44 7889
f19a8d85 7890#ifdef RE_TRACK_PATTERN_OFFSETS
fac92740 7891 parse_start = RExC_parse;
f19a8d85 7892#endif
830247a4 7893 nextchar(pRExC_state);
a0d0e21e 7894
821b33a5 7895 *flagp = (op != '+') ? (WORST|SPSTART|HASWIDTH) : (WORST|HASWIDTH);
a0d0e21e
LW
7896
7897 if (op == '*' && (flags&SIMPLE)) {
6bda09f9 7898 reginsert(pRExC_state, STAR, ret, depth+1);
c277df42 7899 ret->flags = 0;
830247a4 7900 RExC_naughty += 4;
a0d0e21e
LW
7901 }
7902 else if (op == '*') {
7903 min = 0;
7904 goto do_curly;
a0ed51b3
LW
7905 }
7906 else if (op == '+' && (flags&SIMPLE)) {
6bda09f9 7907 reginsert(pRExC_state, PLUS, ret, depth+1);
c277df42 7908 ret->flags = 0;
830247a4 7909 RExC_naughty += 3;
a0d0e21e
LW
7910 }
7911 else if (op == '+') {
7912 min = 1;
7913 goto do_curly;
a0ed51b3
LW
7914 }
7915 else if (op == '?') {
a0d0e21e
LW
7916 min = 0; max = 1;
7917 goto do_curly;
7918 }
7919 nest_check:
668c081a
NC
7920 if (!SIZE_ONLY && !(flags&(HASWIDTH|POSTPONED)) && max > REG_INFTY/3) {
7921 ckWARN3reg(RExC_parse,
7922 "%.*s matches null string many times",
7923 (int)(RExC_parse >= origparse ? RExC_parse - origparse : 0),
7924 origparse);
a0d0e21e
LW
7925 }
7926
b9b4dddf 7927 if (RExC_parse < RExC_end && *RExC_parse == '?') {
830247a4 7928 nextchar(pRExC_state);
6bda09f9 7929 reginsert(pRExC_state, MINMOD, ret, depth+1);
3dab1dad 7930 REGTAIL(pRExC_state, ret, ret + NODE_STEP_REGNODE);
a0d0e21e 7931 }
b9b4dddf
YO
7932#ifndef REG_ALLOW_MINMOD_SUSPEND
7933 else
7934#endif
7935 if (RExC_parse < RExC_end && *RExC_parse == '+') {
7936 regnode *ender;
7937 nextchar(pRExC_state);
7938 ender = reg_node(pRExC_state, SUCCEED);
7939 REGTAIL(pRExC_state, ret, ender);
7940 reginsert(pRExC_state, SUSPEND, ret, depth+1);
7941 ret->flags = 0;
7942 ender = reg_node(pRExC_state, TAIL);
7943 REGTAIL(pRExC_state, ret, ender);
7944 /*ret= ender;*/
7945 }
7946
7947 if (RExC_parse < RExC_end && ISMULT2(RExC_parse)) {
830247a4 7948 RExC_parse++;
b45f050a
JF
7949 vFAIL("Nested quantifiers");
7950 }
a0d0e21e
LW
7951
7952 return(ret);
a687059c
LW
7953}
7954
fc8cd66c 7955
9d64099b 7956/* reg_namedseq(pRExC_state,UVp, UV depth)
fc8cd66c
YO
7957
7958 This is expected to be called by a parser routine that has
afefe6bf 7959 recognized '\N' and needs to handle the rest. RExC_parse is
fc8cd66c
YO
7960 expected to point at the first char following the N at the time
7961 of the call.
ff3f963a
KW
7962
7963 The \N may be inside (indicated by valuep not being NULL) or outside a
7964 character class.
7965
7966 \N may begin either a named sequence, or if outside a character class, mean
7967 to match a non-newline. For non single-quoted regexes, the tokenizer has
7968 attempted to decide which, and in the case of a named sequence converted it
7969 into one of the forms: \N{} (if the sequence is null), or \N{U+c1.c2...},
7970 where c1... are the characters in the sequence. For single-quoted regexes,
7971 the tokenizer passes the \N sequence through unchanged; this code will not
7972 attempt to determine this nor expand those. The net effect is that if the
7973 beginning of the passed-in pattern isn't '{U+' or there is no '}', it
7974 signals that this \N occurrence means to match a non-newline.
7975
7976 Only the \N{U+...} form should occur in a character class, for the same
7977 reason that '.' inside a character class means to just match a period: it
7978 just doesn't make sense.
fc8cd66c
YO
7979
7980 If valuep is non-null then it is assumed that we are parsing inside
7981 of a charclass definition and the first codepoint in the resolved
7982 string is returned via *valuep and the routine will return NULL.
7983 In this mode if a multichar string is returned from the charnames
ff3f963a 7984 handler, a warning will be issued, and only the first char in the
fc8cd66c
YO
7985 sequence will be examined. If the string returned is zero length
7986 then the value of *valuep is undefined and NON-NULL will
7987 be returned to indicate failure. (This will NOT be a valid pointer
7988 to a regnode.)
7989
ff3f963a
KW
7990 If valuep is null then it is assumed that we are parsing normal text and a
7991 new EXACT node is inserted into the program containing the resolved string,
7992 and a pointer to the new node is returned. But if the string is zero length
7993 a NOTHING node is emitted instead.
afefe6bf 7994
fc8cd66c 7995 On success RExC_parse is set to the char following the endbrace.
ff3f963a 7996 Parsing failures will generate a fatal error via vFAIL(...)
fc8cd66c
YO
7997 */
7998STATIC regnode *
9d64099b 7999S_reg_namedseq(pTHX_ RExC_state_t *pRExC_state, UV *valuep, I32 *flagp, U32 depth)
fc8cd66c 8000{
c3c41406 8001 char * endbrace; /* '}' following the name */
fc8cd66c 8002 regnode *ret = NULL;
c3c41406 8003 char* p;
ff3f963a
KW
8004
8005 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
8006
8007 PERL_ARGS_ASSERT_REG_NAMEDSEQ;
ff3f963a
KW
8008
8009 GET_RE_DEBUG_FLAGS;
c3c41406
KW
8010
8011 /* The [^\n] meaning of \N ignores spaces and comments under the /x
8012 * modifier. The other meaning does not */
8013 p = (RExC_flags & RXf_PMf_EXTENDED)
8014 ? regwhite( pRExC_state, RExC_parse )
8015 : RExC_parse;
7918f24d 8016
ff3f963a 8017 /* Disambiguate between \N meaning a named character versus \N meaning
c3c41406
KW
8018 * [^\n]. The former is assumed when it can't be the latter. */
8019 if (*p != '{' || regcurly(p)) {
8020 RExC_parse = p;
ff3f963a 8021 if (valuep) {
afefe6bf 8022 /* no bare \N in a charclass */
ff3f963a
KW
8023 vFAIL("\\N in a character class must be a named character: \\N{...}");
8024 }
afefe6bf
RGS
8025 nextchar(pRExC_state);
8026 ret = reg_node(pRExC_state, REG_ANY);
8027 *flagp |= HASWIDTH|SIMPLE;
8028 RExC_naughty++;
8029 RExC_parse--;
8030 Set_Node_Length(ret, 1); /* MJD */
8031 return ret;
fc8cd66c 8032 }
a4893424 8033
c3c41406
KW
8034 /* Here, we have decided it should be a named sequence */
8035
8036 /* The test above made sure that the next real character is a '{', but
8037 * under the /x modifier, it could be separated by space (or a comment and
8038 * \n) and this is not allowed (for consistency with \x{...} and the
8039 * tokenizer handling of \N{NAME}). */
8040 if (*RExC_parse != '{') {
8041 vFAIL("Missing braces on \\N{}");
8042 }
8043
ff3f963a 8044 RExC_parse++; /* Skip past the '{' */
c3c41406
KW
8045
8046 if (! (endbrace = strchr(RExC_parse, '}')) /* no trailing brace */
8047 || ! (endbrace == RExC_parse /* nothing between the {} */
8048 || (endbrace - RExC_parse >= 2 /* U+ (bad hex is checked below */
8049 && strnEQ(RExC_parse, "U+", 2)))) /* for a better error msg) */
8050 {
8051 if (endbrace) RExC_parse = endbrace; /* position msg's '<--HERE' */
8052 vFAIL("\\N{NAME} must be resolved by the lexer");
8053 }
8054
ff3f963a
KW
8055 if (endbrace == RExC_parse) { /* empty: \N{} */
8056 if (! valuep) {
8057 RExC_parse = endbrace + 1;
8058 return reg_node(pRExC_state,NOTHING);
a4893424 8059 }
fc8cd66c 8060
ff3f963a
KW
8061 if (SIZE_ONLY) {
8062 ckWARNreg(RExC_parse,
8063 "Ignoring zero length \\N{} in character class"
8064 );
8065 RExC_parse = endbrace + 1;
8066 }
8067 *valuep = 0;
8068 return (regnode *) &RExC_parse; /* Invalid regnode pointer */
fc8cd66c 8069 }
ff3f963a 8070
62fed28b 8071 REQUIRE_UTF8; /* named sequences imply Unicode semantics */
ff3f963a
KW
8072 RExC_parse += 2; /* Skip past the 'U+' */
8073
8074 if (valuep) { /* In a bracketed char class */
8075 /* We only pay attention to the first char of
8076 multichar strings being returned. I kinda wonder
8077 if this makes sense as it does change the behaviour
8078 from earlier versions, OTOH that behaviour was broken
8079 as well. XXX Solution is to recharacterize as
8080 [rest-of-class]|multi1|multi2... */
8081
8082 STRLEN length_of_hex;
8083 I32 flags = PERL_SCAN_ALLOW_UNDERSCORES
8084 | PERL_SCAN_DISALLOW_PREFIX
8085 | (SIZE_ONLY ? PERL_SCAN_SILENT_ILLDIGIT : 0);
8086
37820adc
KW
8087 char * endchar = RExC_parse + strcspn(RExC_parse, ".}");
8088 if (endchar < endbrace) {
ff3f963a
KW
8089 ckWARNreg(endchar, "Using just the first character returned by \\N{} in character class");
8090 }
ff3f963a
KW
8091
8092 length_of_hex = (STRLEN)(endchar - RExC_parse);
8093 *valuep = grok_hex(RExC_parse, &length_of_hex, &flags, NULL);
8094
8095 /* The tokenizer should have guaranteed validity, but it's possible to
8096 * bypass it by using single quoting, so check */
c3c41406
KW
8097 if (length_of_hex == 0
8098 || length_of_hex != (STRLEN)(endchar - RExC_parse) )
8099 {
8100 RExC_parse += length_of_hex; /* Includes all the valid */
8101 RExC_parse += (RExC_orig_utf8) /* point to after 1st invalid */
8102 ? UTF8SKIP(RExC_parse)
8103 : 1;
8104 /* Guard against malformed utf8 */
8105 if (RExC_parse >= endchar) RExC_parse = endchar;
8106 vFAIL("Invalid hexadecimal number in \\N{U+...}");
ff3f963a
KW
8107 }
8108
8109 RExC_parse = endbrace + 1;
8110 if (endchar == endbrace) return NULL;
8111
8112 ret = (regnode *) &RExC_parse; /* Invalid regnode pointer */
fc8cd66c 8113 }
ff3f963a 8114 else { /* Not a char class */
e2a7e165
KW
8115
8116 /* What is done here is to convert this to a sub-pattern of the form
8117 * (?:\x{char1}\x{char2}...)
8118 * and then call reg recursively. That way, it retains its atomicness,
8119 * while not having to worry about special handling that some code
8120 * points may have. toke.c has converted the original Unicode values
8121 * to native, so that we can just pass on the hex values unchanged. We
8122 * do have to set a flag to keep recoding from happening in the
8123 * recursion */
8124
8125 SV * substitute_parse = newSVpvn_flags("?:", 2, SVf_UTF8|SVs_TEMP);
8126 STRLEN len;
ff3f963a
KW
8127 char *endchar; /* Points to '.' or '}' ending cur char in the input
8128 stream */
e2a7e165
KW
8129 char *orig_end = RExC_end;
8130
8131 while (RExC_parse < endbrace) {
ff3f963a
KW
8132
8133 /* Code points are separated by dots. If none, there is only one
8134 * code point, and is terminated by the brace */
37820adc 8135 endchar = RExC_parse + strcspn(RExC_parse, ".}");
ff3f963a 8136
e2a7e165
KW
8137 /* Convert to notation the rest of the code understands */
8138 sv_catpv(substitute_parse, "\\x{");
8139 sv_catpvn(substitute_parse, RExC_parse, endchar - RExC_parse);
8140 sv_catpv(substitute_parse, "}");
ff3f963a
KW
8141
8142 /* Point to the beginning of the next character in the sequence. */
8143 RExC_parse = endchar + 1;
ff3f963a 8144 }
e2a7e165 8145 sv_catpv(substitute_parse, ")");
ff3f963a 8146
e2a7e165 8147 RExC_parse = SvPV(substitute_parse, len);
ff3f963a 8148
e2a7e165
KW
8149 /* Don't allow empty number */
8150 if (len < 8) {
8151 vFAIL("Invalid hexadecimal number in \\N{U+...}");
ff3f963a 8152 }
e2a7e165 8153 RExC_end = RExC_parse + len;
ff3f963a 8154
e2a7e165
KW
8155 /* The values are Unicode, and therefore not subject to recoding */
8156 RExC_override_recoding = 1;
8157
8158 ret = reg(pRExC_state, 1, flagp, depth+1);
8159
8160 RExC_parse = endbrace;
8161 RExC_end = orig_end;
8162 RExC_override_recoding = 0;
ff3f963a 8163
ff3f963a
KW
8164 nextchar(pRExC_state);
8165 }
8166
8167 return ret;
fc8cd66c
YO
8168}
8169
8170
9e08bc66
TS
8171/*
8172 * reg_recode
8173 *
8174 * It returns the code point in utf8 for the value in *encp.
8175 * value: a code value in the source encoding
8176 * encp: a pointer to an Encode object
8177 *
8178 * If the result from Encode is not a single character,
8179 * it returns U+FFFD (Replacement character) and sets *encp to NULL.
8180 */
8181STATIC UV
8182S_reg_recode(pTHX_ const char value, SV **encp)
8183{
8184 STRLEN numlen = 1;
59cd0e26 8185 SV * const sv = newSVpvn_flags(&value, numlen, SVs_TEMP);
c86f7df5 8186 const char * const s = *encp ? sv_recode_to_utf8(sv, *encp) : SvPVX(sv);
9e08bc66
TS
8187 const STRLEN newlen = SvCUR(sv);
8188 UV uv = UNICODE_REPLACEMENT;
8189
7918f24d
NC
8190 PERL_ARGS_ASSERT_REG_RECODE;
8191
9e08bc66
TS
8192 if (newlen)
8193 uv = SvUTF8(sv)
8194 ? utf8n_to_uvchr((U8*)s, newlen, &numlen, UTF8_ALLOW_DEFAULT)
8195 : *(U8*)s;
8196
8197 if (!newlen || numlen != newlen) {
8198 uv = UNICODE_REPLACEMENT;
c86f7df5 8199 *encp = NULL;
9e08bc66
TS
8200 }
8201 return uv;
8202}
8203
fc8cd66c 8204
a687059c
LW
8205/*
8206 - regatom - the lowest level
ee9b8eae
YO
8207
8208 Try to identify anything special at the start of the pattern. If there
8209 is, then handle it as required. This may involve generating a single regop,
8210 such as for an assertion; or it may involve recursing, such as to
8211 handle a () structure.
8212
8213 If the string doesn't start with something special then we gobble up
8214 as much literal text as we can.
8215
8216 Once we have been able to handle whatever type of thing started the
8217 sequence, we return.
8218
8219 Note: we have to be careful with escapes, as they can be both literal
8220 and special, and in the case of \10 and friends can either, depending
486ec47a 8221 on context. Specifically there are two separate switches for handling
ee9b8eae
YO
8222 escape sequences, with the one for handling literal escapes requiring
8223 a dummy entry for all of the special escapes that are actually handled
8224 by the other.
8225*/
8226
76e3520e 8227STATIC regnode *
3dab1dad 8228S_regatom(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth)
a687059c 8229{
97aff369 8230 dVAR;
cbbf8932 8231 register regnode *ret = NULL;
a0d0e21e 8232 I32 flags;
45948336 8233 char *parse_start = RExC_parse;
980866de 8234 U8 op;
3dab1dad
YO
8235 GET_RE_DEBUG_FLAGS_DECL;
8236 DEBUG_PARSE("atom");
a0d0e21e
LW
8237 *flagp = WORST; /* Tentatively. */
8238
7918f24d 8239 PERL_ARGS_ASSERT_REGATOM;
ee9b8eae 8240
a0d0e21e 8241tryagain:
f9a79580 8242 switch ((U8)*RExC_parse) {
a0d0e21e 8243 case '^':
830247a4
IZ
8244 RExC_seen_zerolen++;
8245 nextchar(pRExC_state);
bbe252da 8246 if (RExC_flags & RXf_PMf_MULTILINE)
830247a4 8247 ret = reg_node(pRExC_state, MBOL);
bbe252da 8248 else if (RExC_flags & RXf_PMf_SINGLELINE)
830247a4 8249 ret = reg_node(pRExC_state, SBOL);
a0d0e21e 8250 else
830247a4 8251 ret = reg_node(pRExC_state, BOL);
fac92740 8252 Set_Node_Length(ret, 1); /* MJD */
a0d0e21e
LW
8253 break;
8254 case '$':
830247a4 8255 nextchar(pRExC_state);
b81d288d 8256 if (*RExC_parse)
830247a4 8257 RExC_seen_zerolen++;
bbe252da 8258 if (RExC_flags & RXf_PMf_MULTILINE)
830247a4 8259 ret = reg_node(pRExC_state, MEOL);
bbe252da 8260 else if (RExC_flags & RXf_PMf_SINGLELINE)
830247a4 8261 ret = reg_node(pRExC_state, SEOL);
a0d0e21e 8262 else
830247a4 8263 ret = reg_node(pRExC_state, EOL);
fac92740 8264 Set_Node_Length(ret, 1); /* MJD */
a0d0e21e
LW
8265 break;
8266 case '.':
830247a4 8267 nextchar(pRExC_state);
bbe252da 8268 if (RExC_flags & RXf_PMf_SINGLELINE)
ffc61ed2
JH
8269 ret = reg_node(pRExC_state, SANY);
8270 else
8271 ret = reg_node(pRExC_state, REG_ANY);
8272 *flagp |= HASWIDTH|SIMPLE;
830247a4 8273 RExC_naughty++;
fac92740 8274 Set_Node_Length(ret, 1); /* MJD */
a0d0e21e
LW
8275 break;
8276 case '[':
b45f050a 8277 {
3dab1dad
YO
8278 char * const oregcomp_parse = ++RExC_parse;
8279 ret = regclass(pRExC_state,depth+1);
830247a4
IZ
8280 if (*RExC_parse != ']') {
8281 RExC_parse = oregcomp_parse;
b45f050a
JF
8282 vFAIL("Unmatched [");
8283 }
830247a4 8284 nextchar(pRExC_state);
a0d0e21e 8285 *flagp |= HASWIDTH|SIMPLE;
fac92740 8286 Set_Node_Length(ret, RExC_parse - oregcomp_parse + 1); /* MJD */
a0d0e21e 8287 break;
b45f050a 8288 }
a0d0e21e 8289 case '(':
830247a4 8290 nextchar(pRExC_state);
3dab1dad 8291 ret = reg(pRExC_state, 1, &flags,depth+1);
a0d0e21e 8292 if (ret == NULL) {
bf93d4cc 8293 if (flags & TRYAGAIN) {
830247a4 8294 if (RExC_parse == RExC_end) {
bf93d4cc
GS
8295 /* Make parent create an empty node if needed. */
8296 *flagp |= TRYAGAIN;
8297 return(NULL);
8298 }
a0d0e21e 8299 goto tryagain;
bf93d4cc 8300 }
a0d0e21e
LW
8301 return(NULL);
8302 }
a3b492c3 8303 *flagp |= flags&(HASWIDTH|SPSTART|SIMPLE|POSTPONED);
a0d0e21e
LW
8304 break;
8305 case '|':
8306 case ')':
8307 if (flags & TRYAGAIN) {
8308 *flagp |= TRYAGAIN;
8309 return NULL;
8310 }
b45f050a 8311 vFAIL("Internal urp");
a0d0e21e
LW
8312 /* Supposed to be caught earlier. */
8313 break;
85afd4ae 8314 case '{':
830247a4
IZ
8315 if (!regcurly(RExC_parse)) {
8316 RExC_parse++;
85afd4ae
CS
8317 goto defchar;
8318 }
8319 /* FALL THROUGH */
a0d0e21e
LW
8320 case '?':
8321 case '+':
8322 case '*':
830247a4 8323 RExC_parse++;
b45f050a 8324 vFAIL("Quantifier follows nothing");
a0d0e21e
LW
8325 break;
8326 case '\\':
ee9b8eae
YO
8327 /* Special Escapes
8328
8329 This switch handles escape sequences that resolve to some kind
8330 of special regop and not to literal text. Escape sequnces that
8331 resolve to literal text are handled below in the switch marked
8332 "Literal Escapes".
8333
8334 Every entry in this switch *must* have a corresponding entry
8335 in the literal escape switch. However, the opposite is not
8336 required, as the default for this switch is to jump to the
8337 literal text handling code.
8338 */
a0a388a1 8339 switch ((U8)*++RExC_parse) {
ee9b8eae 8340 /* Special Escapes */
a0d0e21e 8341 case 'A':
830247a4
IZ
8342 RExC_seen_zerolen++;
8343 ret = reg_node(pRExC_state, SBOL);
a0d0e21e 8344 *flagp |= SIMPLE;
ee9b8eae 8345 goto finish_meta_pat;
a0d0e21e 8346 case 'G':
830247a4
IZ
8347 ret = reg_node(pRExC_state, GPOS);
8348 RExC_seen |= REG_SEEN_GPOS;
a0d0e21e 8349 *flagp |= SIMPLE;
ee9b8eae
YO
8350 goto finish_meta_pat;
8351 case 'K':
8352 RExC_seen_zerolen++;
8353 ret = reg_node(pRExC_state, KEEPS);
8354 *flagp |= SIMPLE;
37923168
RGS
8355 /* XXX:dmq : disabling in-place substitution seems to
8356 * be necessary here to avoid cases of memory corruption, as
8357 * with: C<$_="x" x 80; s/x\K/y/> -- rgs
8358 */
8359 RExC_seen |= REG_SEEN_LOOKBEHIND;
ee9b8eae 8360 goto finish_meta_pat;
a0d0e21e 8361 case 'Z':
830247a4 8362 ret = reg_node(pRExC_state, SEOL);
a0d0e21e 8363 *flagp |= SIMPLE;
a1917ab9 8364 RExC_seen_zerolen++; /* Do not optimize RE away */
ee9b8eae 8365 goto finish_meta_pat;
b85d18e9 8366 case 'z':
830247a4 8367 ret = reg_node(pRExC_state, EOS);
b85d18e9 8368 *flagp |= SIMPLE;
830247a4 8369 RExC_seen_zerolen++; /* Do not optimize RE away */
ee9b8eae 8370 goto finish_meta_pat;
4a2d328f 8371 case 'C':
f33976b4
DB
8372 ret = reg_node(pRExC_state, CANY);
8373 RExC_seen |= REG_SEEN_CANY;
a0ed51b3 8374 *flagp |= HASWIDTH|SIMPLE;
ee9b8eae 8375 goto finish_meta_pat;
a0ed51b3 8376 case 'X':
830247a4 8377 ret = reg_node(pRExC_state, CLUMP);
a0ed51b3 8378 *flagp |= HASWIDTH;
ee9b8eae 8379 goto finish_meta_pat;
a0d0e21e 8380 case 'w':
980866de
KW
8381 switch (get_regex_charset(RExC_flags)) {
8382 case REGEX_LOCALE_CHARSET:
8383 op = ALNUML;
8384 break;
8385 case REGEX_UNICODE_CHARSET:
8386 op = ALNUMU;
8387 break;
cfaf538b 8388 case REGEX_ASCII_RESTRICTED_CHARSET:
2f7f8cb1 8389 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
cfaf538b
KW
8390 op = ALNUMA;
8391 break;
980866de
KW
8392 case REGEX_DEPENDS_CHARSET:
8393 op = ALNUM;
8394 break;
8395 default:
8396 goto bad_charset;
a12cf05f 8397 }
980866de 8398 ret = reg_node(pRExC_state, op);
a0d0e21e 8399 *flagp |= HASWIDTH|SIMPLE;
ee9b8eae 8400 goto finish_meta_pat;
a0d0e21e 8401 case 'W':
980866de
KW
8402 switch (get_regex_charset(RExC_flags)) {
8403 case REGEX_LOCALE_CHARSET:
8404 op = NALNUML;
8405 break;
8406 case REGEX_UNICODE_CHARSET:
8407 op = NALNUMU;
8408 break;
cfaf538b 8409 case REGEX_ASCII_RESTRICTED_CHARSET:
2f7f8cb1 8410 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
cfaf538b
KW
8411 op = NALNUMA;
8412 break;
980866de
KW
8413 case REGEX_DEPENDS_CHARSET:
8414 op = NALNUM;
8415 break;
8416 default:
8417 goto bad_charset;
a12cf05f 8418 }
980866de 8419 ret = reg_node(pRExC_state, op);
a0d0e21e 8420 *flagp |= HASWIDTH|SIMPLE;
ee9b8eae 8421 goto finish_meta_pat;
a0d0e21e 8422 case 'b':
830247a4
IZ
8423 RExC_seen_zerolen++;
8424 RExC_seen |= REG_SEEN_LOOKBEHIND;
63ac0dad
KW
8425 switch (get_regex_charset(RExC_flags)) {
8426 case REGEX_LOCALE_CHARSET:
8427 op = BOUNDL;
8428 break;
8429 case REGEX_UNICODE_CHARSET:
8430 op = BOUNDU;
8431 break;
cfaf538b 8432 case REGEX_ASCII_RESTRICTED_CHARSET:
2f7f8cb1 8433 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
cfaf538b
KW
8434 op = BOUNDA;
8435 break;
63ac0dad
KW
8436 case REGEX_DEPENDS_CHARSET:
8437 op = BOUND;
8438 break;
8439 default:
8440 goto bad_charset;
a12cf05f 8441 }
63ac0dad 8442 ret = reg_node(pRExC_state, op);
b988e673 8443 FLAGS(ret) = get_regex_charset(RExC_flags);
a0d0e21e 8444 *flagp |= SIMPLE;
5024bc2d
KW
8445 if (! SIZE_ONLY && (U8) *(RExC_parse + 1) == '{') {
8446 ckWARNregdep(RExC_parse, "\"\\b{\" is deprecated; use \"\\b\\{\" instead");
8447 }
ee9b8eae 8448 goto finish_meta_pat;
a0d0e21e 8449 case 'B':
830247a4
IZ
8450 RExC_seen_zerolen++;
8451 RExC_seen |= REG_SEEN_LOOKBEHIND;
63ac0dad
KW
8452 switch (get_regex_charset(RExC_flags)) {
8453 case REGEX_LOCALE_CHARSET:
8454 op = NBOUNDL;
8455 break;
8456 case REGEX_UNICODE_CHARSET:
8457 op = NBOUNDU;
8458 break;
cfaf538b 8459 case REGEX_ASCII_RESTRICTED_CHARSET:
2f7f8cb1 8460 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
cfaf538b
KW
8461 op = NBOUNDA;
8462 break;
63ac0dad
KW
8463 case REGEX_DEPENDS_CHARSET:
8464 op = NBOUND;
8465 break;
8466 default:
8467 goto bad_charset;
a12cf05f 8468 }
63ac0dad 8469 ret = reg_node(pRExC_state, op);
b988e673 8470 FLAGS(ret) = get_regex_charset(RExC_flags);
a0d0e21e 8471 *flagp |= SIMPLE;
5024bc2d
KW
8472 if (! SIZE_ONLY && (U8) *(RExC_parse + 1) == '{') {
8473 ckWARNregdep(RExC_parse, "\"\\B{\" is deprecated; use \"\\B\\{\" instead");
8474 }
ee9b8eae 8475 goto finish_meta_pat;
a0d0e21e 8476 case 's':
980866de
KW
8477 switch (get_regex_charset(RExC_flags)) {
8478 case REGEX_LOCALE_CHARSET:
8479 op = SPACEL;
8480 break;
8481 case REGEX_UNICODE_CHARSET:
8482 op = SPACEU;
8483 break;
cfaf538b 8484 case REGEX_ASCII_RESTRICTED_CHARSET:
2f7f8cb1 8485 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
cfaf538b
KW
8486 op = SPACEA;
8487 break;
980866de
KW
8488 case REGEX_DEPENDS_CHARSET:
8489 op = SPACE;
8490 break;
8491 default:
8492 goto bad_charset;
a12cf05f 8493 }
980866de 8494 ret = reg_node(pRExC_state, op);
a0d0e21e 8495 *flagp |= HASWIDTH|SIMPLE;
ee9b8eae 8496 goto finish_meta_pat;
a0d0e21e 8497 case 'S':
980866de
KW
8498 switch (get_regex_charset(RExC_flags)) {
8499 case REGEX_LOCALE_CHARSET:
8500 op = NSPACEL;
8501 break;
8502 case REGEX_UNICODE_CHARSET:
8503 op = NSPACEU;
8504 break;
cfaf538b 8505 case REGEX_ASCII_RESTRICTED_CHARSET:
2f7f8cb1 8506 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
cfaf538b
KW
8507 op = NSPACEA;
8508 break;
980866de
KW
8509 case REGEX_DEPENDS_CHARSET:
8510 op = NSPACE;
8511 break;
8512 default:
8513 goto bad_charset;
a12cf05f 8514 }
980866de 8515 ret = reg_node(pRExC_state, op);
a0d0e21e 8516 *flagp |= HASWIDTH|SIMPLE;
ee9b8eae 8517 goto finish_meta_pat;
a0d0e21e 8518 case 'd':
56ae17b4
KW
8519 switch (get_regex_charset(RExC_flags)) {
8520 case REGEX_LOCALE_CHARSET:
8521 op = DIGITL;
8522 break;
cfaf538b 8523 case REGEX_ASCII_RESTRICTED_CHARSET:
2f7f8cb1 8524 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
cfaf538b
KW
8525 op = DIGITA;
8526 break;
56ae17b4
KW
8527 case REGEX_DEPENDS_CHARSET: /* No difference between these */
8528 case REGEX_UNICODE_CHARSET:
8529 op = DIGIT;
8530 break;
8531 default:
8532 goto bad_charset;
6ab9ea91 8533 }
56ae17b4 8534 ret = reg_node(pRExC_state, op);
a0d0e21e 8535 *flagp |= HASWIDTH|SIMPLE;
ee9b8eae 8536 goto finish_meta_pat;
a0d0e21e 8537 case 'D':
56ae17b4
KW
8538 switch (get_regex_charset(RExC_flags)) {
8539 case REGEX_LOCALE_CHARSET:
8540 op = NDIGITL;
8541 break;
cfaf538b 8542 case REGEX_ASCII_RESTRICTED_CHARSET:
2f7f8cb1 8543 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
cfaf538b
KW
8544 op = NDIGITA;
8545 break;
56ae17b4
KW
8546 case REGEX_DEPENDS_CHARSET: /* No difference between these */
8547 case REGEX_UNICODE_CHARSET:
8548 op = NDIGIT;
8549 break;
8550 default:
8551 goto bad_charset;
6ab9ea91 8552 }
56ae17b4 8553 ret = reg_node(pRExC_state, op);
a0d0e21e 8554 *flagp |= HASWIDTH|SIMPLE;
ee9b8eae 8555 goto finish_meta_pat;
e1d1eefb
YO
8556 case 'R':
8557 ret = reg_node(pRExC_state, LNBREAK);
8558 *flagp |= HASWIDTH|SIMPLE;
8559 goto finish_meta_pat;
8560 case 'h':
8561 ret = reg_node(pRExC_state, HORIZWS);
8562 *flagp |= HASWIDTH|SIMPLE;
8563 goto finish_meta_pat;
8564 case 'H':
8565 ret = reg_node(pRExC_state, NHORIZWS);
8566 *flagp |= HASWIDTH|SIMPLE;
8567 goto finish_meta_pat;
ee9b8eae 8568 case 'v':
e1d1eefb
YO
8569 ret = reg_node(pRExC_state, VERTWS);
8570 *flagp |= HASWIDTH|SIMPLE;
ee9b8eae
YO
8571 goto finish_meta_pat;
8572 case 'V':
e1d1eefb
YO
8573 ret = reg_node(pRExC_state, NVERTWS);
8574 *flagp |= HASWIDTH|SIMPLE;
ee9b8eae 8575 finish_meta_pat:
830247a4 8576 nextchar(pRExC_state);
fac92740 8577 Set_Node_Length(ret, 2); /* MJD */
ee9b8eae 8578 break;
a14b48bc
LW
8579 case 'p':
8580 case 'P':
3568d838 8581 {
3dab1dad 8582 char* const oldregxend = RExC_end;
d008bc60 8583#ifdef DEBUGGING
ccb2c380 8584 char* parse_start = RExC_parse - 2;
d008bc60 8585#endif
a14b48bc 8586
830247a4 8587 if (RExC_parse[1] == '{') {
3568d838 8588 /* a lovely hack--pretend we saw [\pX] instead */
830247a4
IZ
8589 RExC_end = strchr(RExC_parse, '}');
8590 if (!RExC_end) {
3dab1dad 8591 const U8 c = (U8)*RExC_parse;
830247a4
IZ
8592 RExC_parse += 2;
8593 RExC_end = oldregxend;
0da60cf5 8594 vFAIL2("Missing right brace on \\%c{}", c);
b45f050a 8595 }
830247a4 8596 RExC_end++;
a14b48bc 8597 }
af6f566e 8598 else {
830247a4 8599 RExC_end = RExC_parse + 2;
af6f566e
HS
8600 if (RExC_end > oldregxend)
8601 RExC_end = oldregxend;
8602 }
830247a4 8603 RExC_parse--;
a14b48bc 8604
3dab1dad 8605 ret = regclass(pRExC_state,depth+1);
a14b48bc 8606
830247a4
IZ
8607 RExC_end = oldregxend;
8608 RExC_parse--;
ccb2c380
MP
8609
8610 Set_Node_Offset(ret, parse_start + 2);
8611 Set_Node_Cur_Length(ret);
830247a4 8612 nextchar(pRExC_state);
a14b48bc
LW
8613 *flagp |= HASWIDTH|SIMPLE;
8614 }
8615 break;
fc8cd66c 8616 case 'N':
afefe6bf 8617 /* Handle \N and \N{NAME} here and not below because it can be
fc8cd66c
YO
8618 multicharacter. join_exact() will join them up later on.
8619 Also this makes sure that things like /\N{BLAH}+/ and
8620 \N{BLAH} being multi char Just Happen. dmq*/
8621 ++RExC_parse;
9d64099b 8622 ret= reg_namedseq(pRExC_state, NULL, flagp, depth);
fc8cd66c 8623 break;
0a4db386 8624 case 'k': /* Handle \k<NAME> and \k'NAME' */
1f1031fe 8625 parse_named_seq:
81714fb9
YO
8626 {
8627 char ch= RExC_parse[1];
1f1031fe
YO
8628 if (ch != '<' && ch != '\'' && ch != '{') {
8629 RExC_parse++;
8630 vFAIL2("Sequence %.2s... not terminated",parse_start);
81714fb9 8631 } else {
1f1031fe
YO
8632 /* this pretty much dupes the code for (?P=...) in reg(), if
8633 you change this make sure you change that */
81714fb9 8634 char* name_start = (RExC_parse += 2);
2eccd3b2 8635 U32 num = 0;
0a4db386
YO
8636 SV *sv_dat = reg_scan_name(pRExC_state,
8637 SIZE_ONLY ? REG_RSN_RETURN_NULL : REG_RSN_RETURN_DATA);
1f1031fe 8638 ch= (ch == '<') ? '>' : (ch == '{') ? '}' : '\'';
81714fb9 8639 if (RExC_parse == name_start || *RExC_parse != ch)
1f1031fe
YO
8640 vFAIL2("Sequence %.3s... not terminated",parse_start);
8641
8642 if (!SIZE_ONLY) {
8643 num = add_data( pRExC_state, 1, "S" );
8644 RExC_rxi->data->data[num]=(void*)sv_dat;
5a5094bd 8645 SvREFCNT_inc_simple_void(sv_dat);
1f1031fe
YO
8646 }
8647
81714fb9
YO
8648 RExC_sawback = 1;
8649 ret = reganode(pRExC_state,
4444fd9f
KW
8650 ((! FOLD)
8651 ? NREF
2f7f8cb1
KW
8652 : (MORE_ASCII_RESTRICTED)
8653 ? NREFFA
8654 : (AT_LEAST_UNI_SEMANTICS)
8655 ? NREFFU
8656 : (LOC)
8657 ? NREFFL
8658 : NREFF),
4444fd9f 8659 num);
81714fb9 8660 *flagp |= HASWIDTH;
1f1031fe 8661
81714fb9
YO
8662 /* override incorrect value set in reganode MJD */
8663 Set_Node_Offset(ret, parse_start+1);
8664 Set_Node_Cur_Length(ret); /* MJD */
8665 nextchar(pRExC_state);
1f1031fe 8666
81714fb9
YO
8667 }
8668 break;
1f1031fe 8669 }
2bf803e2 8670 case 'g':
a0d0e21e
LW
8671 case '1': case '2': case '3': case '4':
8672 case '5': case '6': case '7': case '8': case '9':
8673 {
c74340f9 8674 I32 num;
2bf803e2
YO
8675 bool isg = *RExC_parse == 'g';
8676 bool isrel = 0;
8677 bool hasbrace = 0;
8678 if (isg) {
c74340f9 8679 RExC_parse++;
2bf803e2
YO
8680 if (*RExC_parse == '{') {
8681 RExC_parse++;
8682 hasbrace = 1;
8683 }
8684 if (*RExC_parse == '-') {
8685 RExC_parse++;
8686 isrel = 1;
8687 }
1f1031fe
YO
8688 if (hasbrace && !isDIGIT(*RExC_parse)) {
8689 if (isrel) RExC_parse--;
8690 RExC_parse -= 2;
8691 goto parse_named_seq;
8692 } }
c74340f9 8693 num = atoi(RExC_parse);
b72d83b2
RGS
8694 if (isg && num == 0)
8695 vFAIL("Reference to invalid group 0");
c74340f9 8696 if (isrel) {
5624f11d 8697 num = RExC_npar - num;
c74340f9
YO
8698 if (num < 1)
8699 vFAIL("Reference to nonexistent or unclosed group");
8700 }
2bf803e2 8701 if (!isg && num > 9 && num >= RExC_npar)
a0d0e21e
LW
8702 goto defchar;
8703 else {
3dab1dad 8704 char * const parse_start = RExC_parse - 1; /* MJD */
830247a4
IZ
8705 while (isDIGIT(*RExC_parse))
8706 RExC_parse++;
1f1031fe
YO
8707 if (parse_start == RExC_parse - 1)
8708 vFAIL("Unterminated \\g... pattern");
2bf803e2
YO
8709 if (hasbrace) {
8710 if (*RExC_parse != '}')
8711 vFAIL("Unterminated \\g{...} pattern");
8712 RExC_parse++;
8713 }
c74340f9
YO
8714 if (!SIZE_ONLY) {
8715 if (num > (I32)RExC_rx->nparens)
8716 vFAIL("Reference to nonexistent group");
c74340f9 8717 }
830247a4 8718 RExC_sawback = 1;
eb160463 8719 ret = reganode(pRExC_state,
4444fd9f
KW
8720 ((! FOLD)
8721 ? REF
2f7f8cb1
KW
8722 : (MORE_ASCII_RESTRICTED)
8723 ? REFFA
8724 : (AT_LEAST_UNI_SEMANTICS)
8725 ? REFFU
8726 : (LOC)
8727 ? REFFL
8728 : REFF),
4444fd9f 8729 num);
a0d0e21e 8730 *flagp |= HASWIDTH;
2af232bd 8731
fac92740 8732 /* override incorrect value set in reganode MJD */
2af232bd 8733 Set_Node_Offset(ret, parse_start+1);
fac92740 8734 Set_Node_Cur_Length(ret); /* MJD */
830247a4
IZ
8735 RExC_parse--;
8736 nextchar(pRExC_state);
a0d0e21e
LW
8737 }
8738 }
8739 break;
8740 case '\0':
830247a4 8741 if (RExC_parse >= RExC_end)
b45f050a 8742 FAIL("Trailing \\");
a0d0e21e
LW
8743 /* FALL THROUGH */
8744 default:
a0288114 8745 /* Do not generate "unrecognized" warnings here, we fall
c9f97d15 8746 back into the quick-grab loop below */
45948336 8747 parse_start--;
a0d0e21e
LW
8748 goto defchar;
8749 }
8750 break;
4633a7c4
LW
8751
8752 case '#':
bbe252da 8753 if (RExC_flags & RXf_PMf_EXTENDED) {
bcdf7404 8754 if ( reg_skipcomment( pRExC_state ) )
4633a7c4
LW
8755 goto tryagain;
8756 }
8757 /* FALL THROUGH */
8758
f9a79580 8759 default:
561784a5
KW
8760
8761 parse_start = RExC_parse - 1;
8762
8763 RExC_parse++;
8764
8765 defchar: {
d669c36c 8766 typedef enum {
9bed422d
KW
8767 generic_char = 0,
8768 char_s,
d669c36c
KW
8769 upsilon_1,
8770 upsilon_2,
8771 iota_1,
8772 iota_2,
8773 } char_state;
9bed422d 8774 char_state latest_char_state = generic_char;
ba210ebe 8775 register STRLEN len;
58ae7d3f 8776 register UV ender;
a0d0e21e 8777 register char *p;
3dab1dad 8778 char *s;
80aecb99 8779 STRLEN foldlen;
89ebb4a3 8780 U8 tmpbuf[UTF8_MAXBYTES_CASE+1], *foldbuf;
6e326e84 8781 regnode * orig_emit;
f06dbbb7 8782
58ae7d3f 8783 ender = 0;
6e326e84
KW
8784 orig_emit = RExC_emit; /* Save the original output node position in
8785 case we need to output a different node
8786 type */
eb160463 8787 ret = reg_node(pRExC_state,
2c2b7f86
KW
8788 (U8) ((! FOLD) ? EXACT
8789 : (LOC)
8790 ? EXACTFL
2f7f8cb1
KW
8791 : (MORE_ASCII_RESTRICTED)
8792 ? EXACTFA
8793 : (AT_LEAST_UNI_SEMANTICS)
8794 ? EXACTFU
8795 : EXACTF)
2c2b7f86 8796 );
cd439c50 8797 s = STRING(ret);
830247a4
IZ
8798 for (len = 0, p = RExC_parse - 1;
8799 len < 127 && p < RExC_end;
a0d0e21e
LW
8800 len++)
8801 {
3dab1dad 8802 char * const oldp = p;
5b5a24f7 8803
bbe252da 8804 if (RExC_flags & RXf_PMf_EXTENDED)
bcdf7404 8805 p = regwhite( pRExC_state, p );
f9a79580 8806 switch ((U8)*p) {
a0d0e21e
LW
8807 case '^':
8808 case '$':
8809 case '.':
8810 case '[':
8811 case '(':
8812 case ')':
8813 case '|':
8814 goto loopdone;
8815 case '\\':
ee9b8eae
YO
8816 /* Literal Escapes Switch
8817
8818 This switch is meant to handle escape sequences that
8819 resolve to a literal character.
8820
8821 Every escape sequence that represents something
8822 else, like an assertion or a char class, is handled
8823 in the switch marked 'Special Escapes' above in this
8824 routine, but also has an entry here as anything that
8825 isn't explicitly mentioned here will be treated as
8826 an unescaped equivalent literal.
8827 */
8828
a0a388a1 8829 switch ((U8)*++p) {
ee9b8eae
YO
8830 /* These are all the special escapes. */
8831 case 'A': /* Start assertion */
8832 case 'b': case 'B': /* Word-boundary assertion*/
8833 case 'C': /* Single char !DANGEROUS! */
8834 case 'd': case 'D': /* digit class */
8835 case 'g': case 'G': /* generic-backref, pos assertion */
e1d1eefb 8836 case 'h': case 'H': /* HORIZWS */
ee9b8eae
YO
8837 case 'k': case 'K': /* named backref, keep marker */
8838 case 'N': /* named char sequence */
38a44b82 8839 case 'p': case 'P': /* Unicode property */
e1d1eefb 8840 case 'R': /* LNBREAK */
ee9b8eae 8841 case 's': case 'S': /* space class */
e1d1eefb 8842 case 'v': case 'V': /* VERTWS */
ee9b8eae
YO
8843 case 'w': case 'W': /* word class */
8844 case 'X': /* eXtended Unicode "combining character sequence" */
8845 case 'z': case 'Z': /* End of line/string assertion */
a0d0e21e
LW
8846 --p;
8847 goto loopdone;
ee9b8eae
YO
8848
8849 /* Anything after here is an escape that resolves to a
8850 literal. (Except digits, which may or may not)
8851 */
a0d0e21e
LW
8852 case 'n':
8853 ender = '\n';
8854 p++;
a687059c 8855 break;
a0d0e21e
LW
8856 case 'r':
8857 ender = '\r';
8858 p++;
a687059c 8859 break;
a0d0e21e
LW
8860 case 't':
8861 ender = '\t';
8862 p++;
a687059c 8863 break;
a0d0e21e
LW
8864 case 'f':
8865 ender = '\f';
8866 p++;
a687059c 8867 break;
a0d0e21e 8868 case 'e':
c7f1f016 8869 ender = ASCII_TO_NATIVE('\033');
a0d0e21e 8870 p++;
a687059c 8871 break;
a0d0e21e 8872 case 'a':
c7f1f016 8873 ender = ASCII_TO_NATIVE('\007');
a0d0e21e 8874 p++;
a687059c 8875 break;
f0a2b745
KW
8876 case 'o':
8877 {
8878 STRLEN brace_len = len;
00c0cb6d 8879 UV result;
454155d9
KW
8880 const char* error_msg;
8881
8882 bool valid = grok_bslash_o(p,
8883 &result,
8884 &brace_len,
8885 &error_msg,
8886 1);
8887 p += brace_len;
8888 if (! valid) {
8889 RExC_parse = p; /* going to die anyway; point
8890 to exact spot of failure */
f0a2b745
KW
8891 vFAIL(error_msg);
8892 }
00c0cb6d
DG
8893 else
8894 {
8895 ender = result;
8896 }
f0a2b745
KW
8897 if (PL_encoding && ender < 0x100) {
8898 goto recode_encoding;
8899 }
8900 if (ender > 0xff) {
62fed28b 8901 REQUIRE_UTF8;
f0a2b745
KW
8902 }
8903 break;
8904 }
a0d0e21e 8905 case 'x':
a0ed51b3 8906 if (*++p == '{') {
1df70142 8907 char* const e = strchr(p, '}');
b81d288d 8908
b45f050a 8909 if (!e) {
830247a4 8910 RExC_parse = p + 1;
b45f050a
JF
8911 vFAIL("Missing right brace on \\x{}");
8912 }
de5f0749 8913 else {
a4c04bdc
NC
8914 I32 flags = PERL_SCAN_ALLOW_UNDERSCORES
8915 | PERL_SCAN_DISALLOW_PREFIX;
1df70142 8916 STRLEN numlen = e - p - 1;
53305cf1 8917 ender = grok_hex(p + 1, &numlen, &flags, NULL);
aaa80028 8918 if (ender > 0xff)
62fed28b 8919 REQUIRE_UTF8;
a0ed51b3
LW
8920 p = e + 1;
8921 }
a0ed51b3
LW
8922 }
8923 else {
a4c04bdc 8924 I32 flags = PERL_SCAN_DISALLOW_PREFIX;
1df70142 8925 STRLEN numlen = 2;
53305cf1 8926 ender = grok_hex(p, &numlen, &flags, NULL);
a0ed51b3
LW
8927 p += numlen;
8928 }
9e08bc66
TS
8929 if (PL_encoding && ender < 0x100)
8930 goto recode_encoding;
a687059c 8931 break;
a0d0e21e
LW
8932 case 'c':
8933 p++;
17a3df4c 8934 ender = grok_bslash_c(*p++, UTF, SIZE_ONLY);
a687059c 8935 break;
a0d0e21e
LW
8936 case '0': case '1': case '2': case '3':case '4':
8937 case '5': case '6': case '7': case '8':case '9':
8938 if (*p == '0' ||
ca67da41 8939 (isDIGIT(p[1]) && atoi(p) >= RExC_npar))
c99e91e9
KW
8940 {
8941 I32 flags = PERL_SCAN_SILENT_ILLDIGIT;
1df70142 8942 STRLEN numlen = 3;
53305cf1 8943 ender = grok_oct(p, &numlen, &flags, NULL);
fa1639c5 8944 if (ender > 0xff) {
62fed28b 8945 REQUIRE_UTF8;
609122bd 8946 }
a0d0e21e
LW
8947 p += numlen;
8948 }
8949 else {
8950 --p;
8951 goto loopdone;
a687059c 8952 }
9e08bc66
TS
8953 if (PL_encoding && ender < 0x100)
8954 goto recode_encoding;
8955 break;
8956 recode_encoding:
e2a7e165 8957 if (! RExC_override_recoding) {
9e08bc66
TS
8958 SV* enc = PL_encoding;
8959 ender = reg_recode((const char)(U8)ender, &enc);
668c081a
NC
8960 if (!enc && SIZE_ONLY)
8961 ckWARNreg(p, "Invalid escape in the specified encoding");
62fed28b 8962 REQUIRE_UTF8;
9e08bc66 8963 }
a687059c 8964 break;
a0d0e21e 8965 case '\0':
830247a4 8966 if (p >= RExC_end)
b45f050a 8967 FAIL("Trailing \\");
a687059c 8968 /* FALL THROUGH */
a0d0e21e 8969 default:
216bfc0a
KW
8970 if (!SIZE_ONLY&& isALPHA(*p)) {
8971 /* Include any { following the alpha to emphasize
8972 * that it could be part of an escape at some point
8973 * in the future */
8974 int len = (*(p + 1) == '{') ? 2 : 1;
8975 ckWARN3reg(p + len, "Unrecognized escape \\%.*s passed through", len, p);
8976 }
a0ed51b3 8977 goto normal_default;
a0d0e21e
LW
8978 }
8979 break;
a687059c 8980 default:
a0ed51b3 8981 normal_default:
fd400ab9 8982 if (UTF8_IS_START(*p) && UTF) {
1df70142 8983 STRLEN numlen;
5e12f4fb 8984 ender = utf8n_to_uvchr((U8*)p, RExC_end - p,
9f7f3913 8985 &numlen, UTF8_ALLOW_DEFAULT);
a0ed51b3
LW
8986 p += numlen;
8987 }
8988 else
5b67c30a 8989 ender = (U8) *p++;
a0d0e21e 8990 break;
7e2509c1
KW
8991 } /* End of switch on the literal */
8992
6e326e84
KW
8993 /* Certain characters are problematic because their folded
8994 * length is so different from their original length that it
8995 * isn't handleable by the optimizer. They are therefore not
8996 * placed in an EXACTish node; and are here handled specially.
8997 * (Even if the optimizer handled LATIN_SMALL_LETTER_SHARP_S,
8998 * putting it in a special node keeps regexec from having to
8999 * deal with a non-utf8 multi-char fold */
2f7f8cb1 9000 if (FOLD
d669c36c 9001 && (ender > 255 || (! MORE_ASCII_RESTRICTED && ! LOC)))
2f7f8cb1 9002 {
d669c36c
KW
9003 /* We look for either side of the fold. For example \xDF
9004 * folds to 'ss'. We look for both the single character
9005 * \xDF and the sequence 'ss'. When we find something that
9006 * could be one of those, we stop and flush whatever we
9007 * have output so far into the EXACTish node that was being
9008 * built. Then restore the input pointer to what it was.
9009 * regatom will return that EXACT node, and will be called
9010 * again, positioned so the first character is the one in
9011 * question, which we return in a different node type.
9012 * The multi-char folds are a sequence, so the occurrence
9013 * of the first character in that sequence doesn't
9014 * necessarily mean that what follows is the rest of the
9015 * sequence. We keep track of that with a state machine,
9016 * with the state being set to the latest character
9017 * processed before the current one. Most characters will
9018 * set the state to 0, but if one occurs that is part of a
9019 * potential tricky fold sequence, the state is set to that
9020 * character, and the next loop iteration sees if the state
9021 * should progress towards the final folded-from character,
9022 * or if it was a false alarm. If it turns out to be a
9023 * false alarm, the character(s) will be output in a new
9024 * EXACTish node, and join_exact() will later combine them.
9025 * In the case of the 'ss' sequence, which is more common
9026 * and more easily checked, some look-ahead is done to
9027 * save time by ruling-out some false alarms */
9028 switch (ender) {
9029 default:
9bed422d 9030 latest_char_state = generic_char;
d669c36c
KW
9031 break;
9032 case 's':
9033 case 'S':
fe5a0c86 9034 case 0x17F: /* LATIN SMALL LETTER LONG S */
d669c36c
KW
9035 if (AT_LEAST_UNI_SEMANTICS) {
9036 if (latest_char_state == char_s) { /* 'ss' */
9037 ender = LATIN_SMALL_LETTER_SHARP_S;
9038 goto do_tricky;
9039 }
9040 else if (p < RExC_end) {
9041
9042 /* Look-ahead at the next character. If it
9043 * is also an s, we handle as a sharp s
9044 * tricky regnode. */
9045 if (*p == 's' || *p == 'S') {
9046
9047 /* But first flush anything in the
9048 * EXACTish buffer */
9049 if (len != 0) {
9050 p = oldp;
9051 goto loopdone;
9052 }
9053 p++; /* Account for swallowing this
9054 's' up */
9055 ender = LATIN_SMALL_LETTER_SHARP_S;
9056 goto do_tricky;
9057 }
9058 /* Here, the next character is not a
9059 * literal 's', but still could
9060 * evaluate to one if part of a \o{},
9061 * \x or \OCTAL-DIGIT. The minimum
9062 * length required for that is 4, eg
9063 * \x53 or \123 */
9064 else if (*p == '\\'
9065 && p < RExC_end - 4
9066 && (isDIGIT(*(p + 1))
9067 || *(p + 1) == 'x'
9068 || *(p + 1) == 'o' ))
9069 {
9070
9071 /* Here, it could be an 's', too much
9072 * bother to figure it out here. Flush
9073 * the buffer if any; when come back
9074 * here, set the state so know that the
9075 * previous char was an 's' */
9076 if (len != 0) {
9bed422d 9077 latest_char_state = generic_char;
d669c36c
KW
9078 p = oldp;
9079 goto loopdone;
9080 }
9081 latest_char_state = char_s;
9082 break;
9083 }
9084 }
9085 }
6e326e84 9086
d669c36c
KW
9087 /* Here, can't be an 'ss' sequence, or at least not
9088 * one that could fold to/from the sharp ss */
9bed422d 9089 latest_char_state = generic_char;
d669c36c
KW
9090 break;
9091 case 0x03C5: /* First char in upsilon series */
13d34caa
KW
9092 case 0x03A5: /* Also capital UPSILON, which folds to
9093 03C5, and hence exhibits the same
9094 problem */
d669c36c
KW
9095 if (p < RExC_end - 4) { /* Need >= 4 bytes left */
9096 latest_char_state = upsilon_1;
9097 if (len != 0) {
9098 p = oldp;
9099 goto loopdone;
9100 }
9101 }
9102 else {
9bed422d 9103 latest_char_state = generic_char;
d669c36c
KW
9104 }
9105 break;
9106 case 0x03B9: /* First char in iota series */
13d34caa 9107 case 0x0399: /* Also capital IOTA */
2d74afe1
KW
9108 case 0x1FBE: /* GREEK PROSGEGRAMMENI folds to 3B9 */
9109 case 0x0345: /* COMBINING GREEK YPOGEGRAMMENI folds
9110 to 3B9 */
d669c36c
KW
9111 if (p < RExC_end - 4) {
9112 latest_char_state = iota_1;
9113 if (len != 0) {
9114 p = oldp;
9115 goto loopdone;
9116 }
9117 }
9118 else {
9bed422d 9119 latest_char_state = generic_char;
d669c36c
KW
9120 }
9121 break;
9122 case 0x0308:
9123 if (latest_char_state == upsilon_1) {
9124 latest_char_state = upsilon_2;
9125 }
9126 else if (latest_char_state == iota_1) {
9127 latest_char_state = iota_2;
9128 }
9129 else {
9bed422d 9130 latest_char_state = generic_char;
d669c36c
KW
9131 }
9132 break;
9133 case 0x301:
9134 if (latest_char_state == upsilon_2) {
9135 ender = GREEK_SMALL_LETTER_UPSILON_WITH_DIALYTIKA_AND_TONOS;
9136 goto do_tricky;
9137 }
9138 else if (latest_char_state == iota_2) {
9139 ender = GREEK_SMALL_LETTER_IOTA_WITH_DIALYTIKA_AND_TONOS;
9140 goto do_tricky;
9141 }
9bed422d 9142 latest_char_state = generic_char;
d669c36c 9143 break;
6e326e84 9144
d669c36c 9145 /* These are the tricky fold characters. Flush any
dddecdc7
KW
9146 * buffer first. (When adding to this list, also should
9147 * add them to fold_grind.t to make sure get tested) */
d669c36c
KW
9148 case GREEK_SMALL_LETTER_UPSILON_WITH_DIALYTIKA_AND_TONOS:
9149 case GREEK_SMALL_LETTER_IOTA_WITH_DIALYTIKA_AND_TONOS:
9150 case LATIN_SMALL_LETTER_SHARP_S:
9151 case LATIN_CAPITAL_LETTER_SHARP_S:
dddecdc7
KW
9152 case 0x1FD3: /* GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA */
9153 case 0x1FE3: /* GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA */
d669c36c
KW
9154 if (len != 0) {
9155 p = oldp;
9156 goto loopdone;
9157 }
9158 /* FALL THROUGH */
9159 do_tricky: {
9160 char* const oldregxend = RExC_end;
9161 U8 tmpbuf[UTF8_MAXBYTES+1];
9162
9163 /* Here, we know we need to generate a special
9164 * regnode, and 'ender' contains the tricky
9165 * character. What's done is to pretend it's in a
9166 * [bracketed] class, and let the code that deals
9167 * with those handle it, as that code has all the
9168 * intelligence necessary. First save the current
9169 * parse state, get rid of the already allocated
9170 * but empty EXACT node that the ANYOFV node will
9171 * replace, and point the parse to a buffer which
9172 * we fill with the character we want the regclass
9173 * code to think is being parsed */
9174 RExC_emit = orig_emit;
9175 RExC_parse = (char *) tmpbuf;
9176 if (UTF) {
9177 U8 *d = uvchr_to_utf8(tmpbuf, ender);
9178 *d = '\0';
9179 RExC_end = (char *) d;
9180 }
0169d36e
KW
9181 else { /* ender above 255 already excluded */
9182 tmpbuf[0] = (U8) ender;
d669c36c
KW
9183 tmpbuf[1] = '\0';
9184 RExC_end = RExC_parse + 1;
9185 }
6e326e84 9186
d669c36c
KW
9187 ret = regclass(pRExC_state,depth+1);
9188
9189 /* Here, have parsed the buffer. Reset the parse to
9190 * the actual input, and return */
9191 RExC_end = oldregxend;
9192 RExC_parse = p - 1;
6e326e84 9193
d669c36c
KW
9194 Set_Node_Offset(ret, RExC_parse);
9195 Set_Node_Cur_Length(ret);
9196 nextchar(pRExC_state);
9197 *flagp |= HASWIDTH|SIMPLE;
9198 return ret;
9199 }
6e326e84
KW
9200 }
9201 }
9202
bcdf7404
YO
9203 if ( RExC_flags & RXf_PMf_EXTENDED)
9204 p = regwhite( pRExC_state, p );
60a8b682 9205 if (UTF && FOLD) {
17580e7a
KW
9206 /* Prime the casefolded buffer. Locale rules, which apply
9207 * only to code points < 256, aren't known until execution,
9208 * so for them, just output the original character using
9209 * utf8 */
9210 if (LOC && ender < 256) {
9211 if (UNI_IS_INVARIANT(ender)) {
9212 *tmpbuf = (U8) ender;
9213 foldlen = 1;
9214 } else {
9215 *tmpbuf = UTF8_TWO_BYTE_HI(ender);
9216 *(tmpbuf + 1) = UTF8_TWO_BYTE_LO(ender);
9217 foldlen = 2;
9218 }
9219 }
9220 else if (isASCII(ender)) { /* Note: Here can't also be LOC
9221 */
2f7f8cb1 9222 ender = toLOWER(ender);
cd64649c 9223 *tmpbuf = (U8) ender;
2f7f8cb1
KW
9224 foldlen = 1;
9225 }
17580e7a
KW
9226 else if (! MORE_ASCII_RESTRICTED && ! LOC) {
9227
9228 /* Locale and /aa require more selectivity about the
9229 * fold, so are handled below. Otherwise, here, just
9230 * use the fold */
2f7f8cb1
KW
9231 ender = toFOLD_uni(ender, tmpbuf, &foldlen);
9232 }
9233 else {
17580e7a
KW
9234 /* Under locale rules or /aa we are not to mix,
9235 * respectively, ords < 256 or ASCII with non-. So
9236 * reject folds that mix them, using only the
9237 * non-folded code point. So do the fold to a
9238 * temporary, and inspect each character in it. */
2f7f8cb1
KW
9239 U8 trialbuf[UTF8_MAXBYTES_CASE+1];
9240 U8* s = trialbuf;
9241 UV tmpender = toFOLD_uni(ender, trialbuf, &foldlen);
9242 U8* e = s + foldlen;
9243 bool fold_ok = TRUE;
9244
9245 while (s < e) {
17580e7a
KW
9246 if (isASCII(*s)
9247 || (LOC && (UTF8_IS_INVARIANT(*s)
9248 || UTF8_IS_DOWNGRADEABLE_START(*s))))
9249 {
2f7f8cb1
KW
9250 fold_ok = FALSE;
9251 break;
9252 }
9253 s += UTF8SKIP(s);
9254 }
9255 if (fold_ok) {
9256 Copy(trialbuf, tmpbuf, foldlen, U8);
9257 ender = tmpender;
9258 }
9259 else {
9260 uvuni_to_utf8(tmpbuf, ender);
9261 foldlen = UNISKIP(ender);
9262 }
9263 }
60a8b682 9264 }
bcdf7404 9265 if (p < RExC_end && ISMULT2(p)) { /* Back off on ?+*. */
a0d0e21e
LW
9266 if (len)
9267 p = oldp;
16ea2a2e 9268 else if (UTF) {
80aecb99 9269 if (FOLD) {
60a8b682 9270 /* Emit all the Unicode characters. */
1df70142 9271 STRLEN numlen;
80aecb99
JH
9272 for (foldbuf = tmpbuf;
9273 foldlen;
9274 foldlen -= numlen) {
9275 ender = utf8_to_uvchr(foldbuf, &numlen);
9dc45d57 9276 if (numlen > 0) {
71207a34 9277 const STRLEN unilen = reguni(pRExC_state, ender, s);
0ebc6274
JH
9278 s += unilen;
9279 len += unilen;
9280 /* In EBCDIC the numlen
9281 * and unilen can differ. */
9dc45d57 9282 foldbuf += numlen;
47654450
JH
9283 if (numlen >= foldlen)
9284 break;
9dc45d57
JH
9285 }
9286 else
9287 break; /* "Can't happen." */
80aecb99
JH
9288 }
9289 }
9290 else {
71207a34 9291 const STRLEN unilen = reguni(pRExC_state, ender, s);
9ede7db1 9292 if (unilen > 0) {
0ebc6274
JH
9293 s += unilen;
9294 len += unilen;
9dc45d57 9295 }
80aecb99 9296 }
a0ed51b3 9297 }
a0d0e21e
LW
9298 else {
9299 len++;
eb160463 9300 REGC((char)ender, s++);
a0d0e21e
LW
9301 }
9302 break;
a687059c 9303 }
16ea2a2e 9304 if (UTF) {
80aecb99 9305 if (FOLD) {
60a8b682 9306 /* Emit all the Unicode characters. */
1df70142 9307 STRLEN numlen;
80aecb99
JH
9308 for (foldbuf = tmpbuf;
9309 foldlen;
9310 foldlen -= numlen) {
9311 ender = utf8_to_uvchr(foldbuf, &numlen);
9dc45d57 9312 if (numlen > 0) {
71207a34 9313 const STRLEN unilen = reguni(pRExC_state, ender, s);
0ebc6274
JH
9314 len += unilen;
9315 s += unilen;
9316 /* In EBCDIC the numlen
9317 * and unilen can differ. */
9dc45d57 9318 foldbuf += numlen;
47654450
JH
9319 if (numlen >= foldlen)
9320 break;
9dc45d57
JH
9321 }
9322 else
9323 break;
80aecb99
JH
9324 }
9325 }
9326 else {
71207a34 9327 const STRLEN unilen = reguni(pRExC_state, ender, s);
9ede7db1 9328 if (unilen > 0) {
0ebc6274
JH
9329 s += unilen;
9330 len += unilen;
9dc45d57 9331 }
80aecb99
JH
9332 }
9333 len--;
a0ed51b3 9334 }
d669c36c 9335 else {
eb160463 9336 REGC((char)ender, s++);
d669c36c 9337 }
a0d0e21e 9338 }
7e2509c1
KW
9339 loopdone: /* Jumped to when encounters something that shouldn't be in
9340 the node */
830247a4 9341 RExC_parse = p - 1;
fac92740 9342 Set_Node_Cur_Length(ret); /* MJD */
830247a4 9343 nextchar(pRExC_state);
793db0cb
JH
9344 {
9345 /* len is STRLEN which is unsigned, need to copy to signed */
9346 IV iv = len;
9347 if (iv < 0)
9348 vFAIL("Internal disaster");
9349 }
a0d0e21e
LW
9350 if (len > 0)
9351 *flagp |= HASWIDTH;
090f7165 9352 if (len == 1 && UNI_IS_INVARIANT(ender))
a0d0e21e 9353 *flagp |= SIMPLE;
3dab1dad 9354
cd439c50 9355 if (SIZE_ONLY)
830247a4 9356 RExC_size += STR_SZ(len);
3dab1dad
YO
9357 else {
9358 STR_LEN(ret) = len;
830247a4 9359 RExC_emit += STR_SZ(len);
07be1b83 9360 }
3dab1dad 9361 }
a0d0e21e
LW
9362 break;
9363 }
a687059c 9364
a0d0e21e 9365 return(ret);
980866de
KW
9366
9367/* Jumped to when an unrecognized character set is encountered */
9368bad_charset:
9369 Perl_croak(aTHX_ "panic: Unknown regex character set encoding: %u", get_regex_charset(RExC_flags));
9370 return(NULL);
a687059c
LW
9371}
9372
873ef191 9373STATIC char *
bcdf7404 9374S_regwhite( RExC_state_t *pRExC_state, char *p )
5b5a24f7 9375{
bcdf7404 9376 const char *e = RExC_end;
7918f24d
NC
9377
9378 PERL_ARGS_ASSERT_REGWHITE;
9379
5b5a24f7
CS
9380 while (p < e) {
9381 if (isSPACE(*p))
9382 ++p;
9383 else if (*p == '#') {
bcdf7404 9384 bool ended = 0;
5b5a24f7 9385 do {
bcdf7404
YO
9386 if (*p++ == '\n') {
9387 ended = 1;
9388 break;
9389 }
9390 } while (p < e);
9391 if (!ended)
9392 RExC_seen |= REG_SEEN_RUN_ON_COMMENT;
5b5a24f7
CS
9393 }
9394 else
9395 break;
9396 }
9397 return p;
9398}
9399
b8c5462f
JH
9400/* Parse POSIX character classes: [[:foo:]], [[=foo=]], [[.foo.]].
9401 Character classes ([:foo:]) can also be negated ([:^foo:]).
9402 Returns a named class id (ANYOF_XXX) if successful, -1 otherwise.
9403 Equivalence classes ([=foo=]) and composites ([.foo.]) are parsed,
beeb77fc 9404 but trigger failures because they are currently unimplemented. */
9a86a77b
JH
9405
9406#define POSIXCC_DONE(c) ((c) == ':')
9407#define POSIXCC_NOTYET(c) ((c) == '=' || (c) == '.')
9408#define POSIXCC(c) (POSIXCC_DONE(c) || POSIXCC_NOTYET(c))
9409
b8c5462f 9410STATIC I32
830247a4 9411S_regpposixcc(pTHX_ RExC_state_t *pRExC_state, I32 value)
620e46c5 9412{
97aff369 9413 dVAR;
936ed897 9414 I32 namedclass = OOB_NAMEDCLASS;
620e46c5 9415
7918f24d
NC
9416 PERL_ARGS_ASSERT_REGPPOSIXCC;
9417
830247a4 9418 if (value == '[' && RExC_parse + 1 < RExC_end &&
620e46c5 9419 /* I smell either [: or [= or [. -- POSIX has been here, right? */
9a86a77b 9420 POSIXCC(UCHARAT(RExC_parse))) {
1df70142 9421 const char c = UCHARAT(RExC_parse);
097eb12c 9422 char* const s = RExC_parse++;
b81d288d 9423
9a86a77b 9424 while (RExC_parse < RExC_end && UCHARAT(RExC_parse) != c)
830247a4
IZ
9425 RExC_parse++;
9426 if (RExC_parse == RExC_end)
620e46c5 9427 /* Grandfather lone [:, [=, [. */
830247a4 9428 RExC_parse = s;
620e46c5 9429 else {
3dab1dad 9430 const char* const t = RExC_parse++; /* skip over the c */
80916619
NC
9431 assert(*t == c);
9432
9a86a77b 9433 if (UCHARAT(RExC_parse) == ']') {
3dab1dad 9434 const char *posixcc = s + 1;
830247a4 9435 RExC_parse++; /* skip over the ending ] */
3dab1dad 9436
b8c5462f 9437 if (*s == ':') {
1df70142
AL
9438 const I32 complement = *posixcc == '^' ? *posixcc++ : 0;
9439 const I32 skip = t - posixcc;
80916619
NC
9440
9441 /* Initially switch on the length of the name. */
9442 switch (skip) {
9443 case 4:
3dab1dad
YO
9444 if (memEQ(posixcc, "word", 4)) /* this is not POSIX, this is the Perl \w */
9445 namedclass = complement ? ANYOF_NALNUM : ANYOF_ALNUM;
cc4319de 9446 break;
80916619
NC
9447 case 5:
9448 /* Names all of length 5. */
9449 /* alnum alpha ascii blank cntrl digit graph lower
9450 print punct space upper */
9451 /* Offset 4 gives the best switch position. */
9452 switch (posixcc[4]) {
9453 case 'a':
3dab1dad
YO
9454 if (memEQ(posixcc, "alph", 4)) /* alpha */
9455 namedclass = complement ? ANYOF_NALPHA : ANYOF_ALPHA;
80916619
NC
9456 break;
9457 case 'e':
3dab1dad
YO
9458 if (memEQ(posixcc, "spac", 4)) /* space */
9459 namedclass = complement ? ANYOF_NPSXSPC : ANYOF_PSXSPC;
80916619
NC
9460 break;
9461 case 'h':
3dab1dad
YO
9462 if (memEQ(posixcc, "grap", 4)) /* graph */
9463 namedclass = complement ? ANYOF_NGRAPH : ANYOF_GRAPH;
80916619
NC
9464 break;
9465 case 'i':
3dab1dad
YO
9466 if (memEQ(posixcc, "asci", 4)) /* ascii */
9467 namedclass = complement ? ANYOF_NASCII : ANYOF_ASCII;
80916619
NC
9468 break;
9469 case 'k':
3dab1dad
YO
9470 if (memEQ(posixcc, "blan", 4)) /* blank */
9471 namedclass = complement ? ANYOF_NBLANK : ANYOF_BLANK;
80916619
NC
9472 break;
9473 case 'l':
3dab1dad
YO
9474 if (memEQ(posixcc, "cntr", 4)) /* cntrl */
9475 namedclass = complement ? ANYOF_NCNTRL : ANYOF_CNTRL;
80916619
NC
9476 break;
9477 case 'm':
3dab1dad
YO
9478 if (memEQ(posixcc, "alnu", 4)) /* alnum */
9479 namedclass = complement ? ANYOF_NALNUMC : ANYOF_ALNUMC;
80916619
NC
9480 break;
9481 case 'r':
3dab1dad
YO
9482 if (memEQ(posixcc, "lowe", 4)) /* lower */
9483 namedclass = complement ? ANYOF_NLOWER : ANYOF_LOWER;
9484 else if (memEQ(posixcc, "uppe", 4)) /* upper */
9485 namedclass = complement ? ANYOF_NUPPER : ANYOF_UPPER;
80916619
NC
9486 break;
9487 case 't':
3dab1dad
YO
9488 if (memEQ(posixcc, "digi", 4)) /* digit */
9489 namedclass = complement ? ANYOF_NDIGIT : ANYOF_DIGIT;
9490 else if (memEQ(posixcc, "prin", 4)) /* print */
9491 namedclass = complement ? ANYOF_NPRINT : ANYOF_PRINT;
9492 else if (memEQ(posixcc, "punc", 4)) /* punct */
9493 namedclass = complement ? ANYOF_NPUNCT : ANYOF_PUNCT;
80916619 9494 break;
b8c5462f
JH
9495 }
9496 break;
80916619 9497 case 6:
3dab1dad
YO
9498 if (memEQ(posixcc, "xdigit", 6))
9499 namedclass = complement ? ANYOF_NXDIGIT : ANYOF_XDIGIT;
b8c5462f
JH
9500 break;
9501 }
80916619
NC
9502
9503 if (namedclass == OOB_NAMEDCLASS)
b45f050a
JF
9504 Simple_vFAIL3("POSIX class [:%.*s:] unknown",
9505 t - s - 1, s + 1);
80916619
NC
9506 assert (posixcc[skip] == ':');
9507 assert (posixcc[skip+1] == ']');
b45f050a 9508 } else if (!SIZE_ONLY) {
b8c5462f 9509 /* [[=foo=]] and [[.foo.]] are still future. */
b45f050a 9510
830247a4 9511 /* adjust RExC_parse so the warning shows after
b45f050a 9512 the class closes */
9a86a77b 9513 while (UCHARAT(RExC_parse) && UCHARAT(RExC_parse) != ']')
830247a4 9514 RExC_parse++;
b45f050a
JF
9515 Simple_vFAIL3("POSIX syntax [%c %c] is reserved for future extensions", c, c);
9516 }
b8c5462f
JH
9517 } else {
9518 /* Maternal grandfather:
9519 * "[:" ending in ":" but not in ":]" */
830247a4 9520 RExC_parse = s;
767d463e 9521 }
620e46c5
JH
9522 }
9523 }
9524
b8c5462f
JH
9525 return namedclass;
9526}
9527
9528STATIC void
830247a4 9529S_checkposixcc(pTHX_ RExC_state_t *pRExC_state)
b8c5462f 9530{
97aff369 9531 dVAR;
7918f24d
NC
9532
9533 PERL_ARGS_ASSERT_CHECKPOSIXCC;
9534
3dab1dad 9535 if (POSIXCC(UCHARAT(RExC_parse))) {
1df70142
AL
9536 const char *s = RExC_parse;
9537 const char c = *s++;
b8c5462f 9538
3dab1dad 9539 while (isALNUM(*s))
b8c5462f
JH
9540 s++;
9541 if (*s && c == *s && s[1] == ']') {
668c081a
NC
9542 ckWARN3reg(s+2,
9543 "POSIX syntax [%c %c] belongs inside character classes",
9544 c, c);
b45f050a
JF
9545
9546 /* [[=foo=]] and [[.foo.]] are still future. */
9a86a77b 9547 if (POSIXCC_NOTYET(c)) {
830247a4 9548 /* adjust RExC_parse so the error shows after
b45f050a 9549 the class closes */
9a86a77b 9550 while (UCHARAT(RExC_parse) && UCHARAT(RExC_parse++) != ']')
3dab1dad 9551 NOOP;
b45f050a
JF
9552 Simple_vFAIL3("POSIX syntax [%c %c] is reserved for future extensions", c, c);
9553 }
b8c5462f
JH
9554 }
9555 }
620e46c5
JH
9556}
9557
003331de
KW
9558/* No locale test, and always Unicode semantics */
9559#define _C_C_T_NOLOC_(NAME,TEST,WORD) \
9560ANYOF_##NAME: \
9561 for (value = 0; value < 256; value++) \
9562 if (TEST) \
5bfec14d 9563 stored += set_regclass_bit(pRExC_state, ret, (U8) value, &l1_fold_invlist, &unicode_alternate); \
003331de
KW
9564 yesno = '+'; \
9565 what = WORD; \
9566 break; \
9567case ANYOF_N##NAME: \
9568 for (value = 0; value < 256; value++) \
9569 if (!TEST) \
5bfec14d 9570 stored += set_regclass_bit(pRExC_state, ret, (U8) value, &l1_fold_invlist, &unicode_alternate); \
003331de
KW
9571 yesno = '!'; \
9572 what = WORD; \
e1d1eefb 9573 break
89836f1f 9574
a12cf05f
KW
9575/* Like the above, but there are differences if we are in uni-8-bit or not, so
9576 * there are two tests passed in, to use depending on that. There aren't any
9577 * cases where the label is different from the name, so no need for that
9578 * parameter */
f952827c 9579#define _C_C_T_(NAME, TEST_8, TEST_7, WORD) \
003331de
KW
9580ANYOF_##NAME: \
9581 if (LOC) ANYOF_CLASS_SET(ret, ANYOF_##NAME); \
9582 else if (UNI_SEMANTICS) { \
9583 for (value = 0; value < 256; value++) { \
f952827c 9584 if (TEST_8(value)) stored += \
5bfec14d 9585 set_regclass_bit(pRExC_state, ret, (U8) value, &l1_fold_invlist, &unicode_alternate); \
003331de
KW
9586 } \
9587 } \
9588 else { \
9589 for (value = 0; value < 128; value++) { \
f952827c 9590 if (TEST_7(UNI_TO_NATIVE(value))) stored += \
4c9daa0a 9591 set_regclass_bit(pRExC_state, ret, \
5bfec14d 9592 (U8) UNI_TO_NATIVE(value), &l1_fold_invlist, &unicode_alternate); \
003331de
KW
9593 } \
9594 } \
9595 yesno = '+'; \
9596 what = WORD; \
9597 break; \
9598case ANYOF_N##NAME: \
9599 if (LOC) ANYOF_CLASS_SET(ret, ANYOF_N##NAME); \
9600 else if (UNI_SEMANTICS) { \
9601 for (value = 0; value < 256; value++) { \
f952827c 9602 if (! TEST_8(value)) stored += \
5bfec14d 9603 set_regclass_bit(pRExC_state, ret, (U8) value, &l1_fold_invlist, &unicode_alternate); \
003331de
KW
9604 } \
9605 } \
9606 else { \
9607 for (value = 0; value < 128; value++) { \
4c9daa0a 9608 if (! TEST_7(UNI_TO_NATIVE(value))) stored += set_regclass_bit( \
5bfec14d 9609 pRExC_state, ret, (U8) UNI_TO_NATIVE(value), &l1_fold_invlist, &unicode_alternate); \
003331de 9610 } \
2f7f8cb1 9611 if (AT_LEAST_ASCII_RESTRICTED) { \
cfaf538b 9612 for (value = 128; value < 256; value++) { \
4c9daa0a 9613 stored += set_regclass_bit( \
5bfec14d 9614 pRExC_state, ret, (U8) UNI_TO_NATIVE(value), &l1_fold_invlist, &unicode_alternate); \
cfaf538b 9615 } \
137165a6 9616 ANYOF_FLAGS(ret) |= ANYOF_UNICODE_ALL; \
cfaf538b
KW
9617 } \
9618 else { \
9619 /* For a non-ut8 target string with DEPENDS semantics, all above \
9620 * ASCII Latin1 code points match the complement of any of the \
9621 * classes. But in utf8, they have their Unicode semantics, so \
9622 * can't just set them in the bitmap, or else regexec.c will think \
9623 * they matched when they shouldn't. */ \
137165a6 9624 ANYOF_FLAGS(ret) |= ANYOF_NON_UTF8_LATIN1_ALL; \
cfaf538b 9625 } \
003331de
KW
9626 } \
9627 yesno = '!'; \
9628 what = WORD; \
a12cf05f
KW
9629 break
9630
2283d326 9631STATIC U8
a25abddc 9632S_set_regclass_bit_fold(pTHX_ RExC_state_t *pRExC_state, regnode* node, const U8 value, SV** invlist_ptr, AV** alternate_ptr)
2283d326
KW
9633{
9634
9635 /* Handle the setting of folds in the bitmap for non-locale ANYOF nodes.
9636 * Locale folding is done at run-time, so this function should not be
9637 * called for nodes that are for locales.
9638 *
d50a4f90 9639 * This function sets the bit corresponding to the fold of the input
2283d326
KW
9640 * 'value', if not already set. The fold of 'f' is 'F', and the fold of
9641 * 'F' is 'f'.
9642 *
d50a4f90
KW
9643 * It also knows about the characters that are in the bitmap that have
9644 * folds that are matchable only outside it, and sets the appropriate lists
9645 * and flags.
9646 *
9647 * It returns the number of bits that actually changed from 0 to 1 */
2283d326
KW
9648
9649 U8 stored = 0;
2283d326
KW
9650 U8 fold;
9651
4c9daa0a
KW
9652 PERL_ARGS_ASSERT_SET_REGCLASS_BIT_FOLD;
9653
cfaf538b 9654 fold = (AT_LEAST_UNI_SEMANTICS) ? PL_fold_latin1[value]
2f7f8cb1 9655 : PL_fold[value];
2283d326
KW
9656
9657 /* It assumes the bit for 'value' has already been set */
9658 if (fold != value && ! ANYOF_BITMAP_TEST(node, fold)) {
9659 ANYOF_BITMAP_SET(node, fold);
9660 stored++;
9661 }
d50a4f90
KW
9662 if (_HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(value) && (! isASCII(value) || ! MORE_ASCII_RESTRICTED)) {
9663 /* Certain Latin1 characters have matches outside the bitmap. To get
9664 * here, 'value' is one of those characters. None of these matches is
9665 * valid for ASCII characters under /aa, which have been excluded by
9666 * the 'if' above. The matches fall into three categories:
9667 * 1) They are singly folded-to or -from an above 255 character, as
9668 * LATIN SMALL LETTER Y WITH DIAERESIS and LATIN CAPITAL LETTER Y
9669 * WITH DIAERESIS;
9670 * 2) They are part of a multi-char fold with another character in the
9671 * bitmap, only LATIN SMALL LETTER SHARP S => "ss" fits that bill;
9672 * 3) They are part of a multi-char fold with a character not in the
9673 * bitmap, such as various ligatures.
9674 * We aren't dealing fully with multi-char folds, except we do deal
9675 * with the pattern containing a character that has a multi-char fold
9676 * (not so much the inverse).
9677 * For types 1) and 3), the matches only happen when the target string
9678 * is utf8; that's not true for 2), and we set a flag for it.
9679 *
9680 * The code below adds to the passed in inversion list the single fold
9681 * closures for 'value'. The values are hard-coded here so that an
9682 * innocent-looking character class, like /[ks]/i won't have to go out
9683 * to disk to find the possible matches. XXX It would be better to
9684 * generate these via regen, in case a new version of the Unicode
9685 * standard adds new mappings, though that is not really likely. */
9686 switch (value) {
9687 case 'k':
9688 case 'K':
9689 /* KELVIN SIGN */
9690 *invlist_ptr = add_cp_to_invlist(*invlist_ptr, 0x212A);
9691 break;
9692 case 's':
9693 case 'S':
9694 /* LATIN SMALL LETTER LONG S */
9695 *invlist_ptr = add_cp_to_invlist(*invlist_ptr, 0x017F);
9696 break;
9697 case MICRO_SIGN:
9698 *invlist_ptr = add_cp_to_invlist(*invlist_ptr,
9699 GREEK_SMALL_LETTER_MU);
9700 *invlist_ptr = add_cp_to_invlist(*invlist_ptr,
9701 GREEK_CAPITAL_LETTER_MU);
9702 break;
9703 case LATIN_CAPITAL_LETTER_A_WITH_RING_ABOVE:
9704 case LATIN_SMALL_LETTER_A_WITH_RING_ABOVE:
9705 /* ANGSTROM SIGN */
9706 *invlist_ptr = add_cp_to_invlist(*invlist_ptr, 0x212B);
9707 if (DEPENDS_SEMANTICS) { /* See DEPENDS comment below */
9708 *invlist_ptr = add_cp_to_invlist(*invlist_ptr,
9709 PL_fold_latin1[value]);
9710 }
9711 break;
9712 case LATIN_SMALL_LETTER_Y_WITH_DIAERESIS:
9713 *invlist_ptr = add_cp_to_invlist(*invlist_ptr,
9714 LATIN_CAPITAL_LETTER_Y_WITH_DIAERESIS);
9715 break;
9716 case LATIN_SMALL_LETTER_SHARP_S:
1d4120df
KW
9717 *invlist_ptr = add_cp_to_invlist(*invlist_ptr,
9718 LATIN_CAPITAL_LETTER_SHARP_S);
d50a4f90 9719
419d8974 9720 /* Under /a, /d, and /u, this can match the two chars "ss" */
d50a4f90
KW
9721 if (! MORE_ASCII_RESTRICTED) {
9722 add_alternate(alternate_ptr, (U8 *) "ss", 2);
9723
419d8974
KW
9724 /* And under /u or /a, it can match even if the target is
9725 * not utf8 */
9726 if (AT_LEAST_UNI_SEMANTICS) {
d50a4f90
KW
9727 ANYOF_FLAGS(node) |= ANYOF_NONBITMAP_NON_UTF8;
9728 }
9729 }
9730 break;
9731 case 'F': case 'f':
9732 case 'I': case 'i':
9733 case 'L': case 'l':
9734 case 'T': case 't':
d50a4f90
KW
9735 case 'A': case 'a':
9736 case 'H': case 'h':
9737 case 'J': case 'j':
9738 case 'N': case 'n':
9739 case 'W': case 'w':
9740 case 'Y': case 'y':
f580a93d
KW
9741 /* These all are targets of multi-character folds from code
9742 * points that require UTF8 to express, so they can't match
9743 * unless the target string is in UTF-8, so no action here is
9744 * necessary, as regexec.c properly handles the general case
9745 * for UTF-8 matching */
d50a4f90
KW
9746 break;
9747 default:
9748 /* Use deprecated warning to increase the chances of this
9749 * being output */
9750 ckWARN2regdep(RExC_parse, "Perl folding rules are not up-to-date for 0x%x; please use the perlbug utility to report;", value);
9751 break;
9752 }
9753 }
9754 else if (DEPENDS_SEMANTICS
f56b6394 9755 && ! isASCII(value)
d50a4f90
KW
9756 && PL_fold_latin1[value] != value)
9757 {
9758 /* Under DEPENDS rules, non-ASCII Latin1 characters match their
9759 * folds only when the target string is in UTF-8. We add the fold
9760 * here to the list of things to match outside the bitmap, which
9761 * won't be looked at unless it is UTF8 (or else if something else
9762 * says to look even if not utf8, but those things better not happen
9763 * under DEPENDS semantics. */
9764 *invlist_ptr = add_cp_to_invlist(*invlist_ptr, PL_fold_latin1[value]);
2283d326
KW
9765 }
9766
9767 return stored;
9768}
9769
9770
9771PERL_STATIC_INLINE U8
a25abddc 9772S_set_regclass_bit(pTHX_ RExC_state_t *pRExC_state, regnode* node, const U8 value, SV** invlist_ptr, AV** alternate_ptr)
2283d326
KW
9773{
9774 /* This inline function sets a bit in the bitmap if not already set, and if
9775 * appropriate, its fold, returning the number of bits that actually
9776 * changed from 0 to 1 */
9777
9778 U8 stored;
9779
4c9daa0a
KW
9780 PERL_ARGS_ASSERT_SET_REGCLASS_BIT;
9781
2283d326
KW
9782 if (ANYOF_BITMAP_TEST(node, value)) { /* Already set */
9783 return 0;
9784 }
9785
9786 ANYOF_BITMAP_SET(node, value);
9787 stored = 1;
9788
9789 if (FOLD && ! LOC) { /* Locale folds aren't known until runtime */
2c6aa593 9790 stored += set_regclass_bit_fold(pRExC_state, node, value, invlist_ptr, alternate_ptr);
2283d326
KW
9791 }
9792
9793 return stored;
9794}
9795
c8453963
KW
9796STATIC void
9797S_add_alternate(pTHX_ AV** alternate_ptr, U8* string, STRLEN len)
9798{
9799 /* Adds input 'string' with length 'len' to the ANYOF node's unicode
9800 * alternate list, pointed to by 'alternate_ptr'. This is an array of
9801 * the multi-character folds of characters in the node */
9802 SV *sv;
9803
9804 PERL_ARGS_ASSERT_ADD_ALTERNATE;
9805
9806 if (! *alternate_ptr) {
9807 *alternate_ptr = newAV();
9808 }
9809 sv = newSVpvn_utf8((char*)string, len, TRUE);
9810 av_push(*alternate_ptr, sv);
9811 return;
9812}
9813
7f6f358c
YO
9814/*
9815 parse a class specification and produce either an ANYOF node that
ddad5e0b 9816 matches the pattern or perhaps will be optimized into an EXACTish node
679d1424
KW
9817 instead. The node contains a bit map for the first 256 characters, with the
9818 corresponding bit set if that character is in the list. For characters
9819 above 255, a range list is used */
89836f1f 9820
76e3520e 9821STATIC regnode *
3dab1dad 9822S_regclass(pTHX_ RExC_state_t *pRExC_state, U32 depth)
a687059c 9823{
97aff369 9824 dVAR;
9a86a77b 9825 register UV nextvalue;
3568d838 9826 register IV prevvalue = OOB_UNICODE;
ffc61ed2 9827 register IV range = 0;
e1d1eefb 9828 UV value = 0; /* XXX:dmq: needs to be referenceable (unfortunately) */
c277df42 9829 register regnode *ret;
ba210ebe 9830 STRLEN numlen;
ffc61ed2 9831 IV namedclass;
cbbf8932 9832 char *rangebegin = NULL;
936ed897 9833 bool need_class = 0;
827f5bb8 9834 bool allow_full_fold = TRUE; /* Assume wants multi-char folding */
c445ea15 9835 SV *listsv = NULL;
137165a6
KW
9836 STRLEN initial_listsv_len = 0; /* Kind of a kludge to see if it is more
9837 than just initialized. */
ffc61ed2 9838 UV n;
53742956
KW
9839
9840 /* code points this node matches that can't be stored in the bitmap */
a25abddc 9841 SV* nonbitmap = NULL;
53742956
KW
9842
9843 /* The items that are to match that aren't stored in the bitmap, but are a
9844 * result of things that are stored there. This is the fold closure of
9845 * such a character, either because it has DEPENDS semantics and shouldn't
9846 * be matched unless the target string is utf8, or is a code point that is
9847 * too large for the bit map, as for example, the fold of the MICRO SIGN is
9848 * above 255. This all is solely for performance reasons. By having this
9849 * code know the outside-the-bitmap folds that the bitmapped characters are
9850 * involved with, we don't have to go out to disk to find the list of
9851 * matches, unless the character class includes code points that aren't
9852 * storable in the bit map. That means that a character class with an 's'
9853 * in it, for example, doesn't need to go out to disk to find everything
9854 * that matches. A 2nd list is used so that the 'nonbitmap' list is kept
9855 * empty unless there is something whose fold we don't know about, and will
9856 * have to go out to the disk to find. */
a25abddc 9857 SV* l1_fold_invlist = NULL;
53742956
KW
9858
9859 /* List of multi-character folds that are matched by this node */
cbbf8932 9860 AV* unicode_alternate = NULL;
1b2d223b
JH
9861#ifdef EBCDIC
9862 UV literal_endpoint = 0;
9863#endif
ffc130aa 9864 UV stored = 0; /* how many chars stored in the bitmap */
ffc61ed2 9865
3dab1dad 9866 regnode * const orig_emit = RExC_emit; /* Save the original RExC_emit in
7f6f358c 9867 case we need to change the emitted regop to an EXACT. */
07be1b83 9868 const char * orig_parse = RExC_parse;
72f13be8 9869 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
9870
9871 PERL_ARGS_ASSERT_REGCLASS;
76e84362
SH
9872#ifndef DEBUGGING
9873 PERL_UNUSED_ARG(depth);
9874#endif
72f13be8 9875
3dab1dad 9876 DEBUG_PARSE("clas");
7f6f358c
YO
9877
9878 /* Assume we are going to generate an ANYOF node. */
ffc61ed2
JH
9879 ret = reganode(pRExC_state, ANYOF, 0);
9880
56ca34ca
KW
9881
9882 if (!SIZE_ONLY) {
ffc61ed2 9883 ANYOF_FLAGS(ret) = 0;
56ca34ca 9884 }
ffc61ed2 9885
9a86a77b 9886 if (UCHARAT(RExC_parse) == '^') { /* Complement of range. */
ffc61ed2
JH
9887 RExC_naughty++;
9888 RExC_parse++;
9889 if (!SIZE_ONLY)
9890 ANYOF_FLAGS(ret) |= ANYOF_INVERT;
827f5bb8
KW
9891
9892 /* We have decided to not allow multi-char folds in inverted character
ac455f4c
KW
9893 * classes, due to the confusion that can happen, especially with
9894 * classes that are designed for a non-Unicode world: You have the
9895 * peculiar case that:
827f5bb8
KW
9896 "s s" =~ /^[^\xDF]+$/i => Y
9897 "ss" =~ /^[^\xDF]+$/i => N
9898 *
9899 * See [perl #89750] */
9900 allow_full_fold = FALSE;
ffc61ed2 9901 }
a0d0e21e 9902
73060fc4 9903 if (SIZE_ONLY) {
830247a4 9904 RExC_size += ANYOF_SKIP;
73060fc4
JH
9905 listsv = &PL_sv_undef; /* For code scanners: listsv always non-NULL. */
9906 }
936ed897 9907 else {
830247a4 9908 RExC_emit += ANYOF_SKIP;
3a15e693 9909 if (LOC) {
936ed897 9910 ANYOF_FLAGS(ret) |= ANYOF_LOCALE;
3a15e693 9911 }
ffc61ed2 9912 ANYOF_BITMAP_ZERO(ret);
396482e1 9913 listsv = newSVpvs("# comment\n");
137165a6 9914 initial_listsv_len = SvCUR(listsv);
a0d0e21e 9915 }
b8c5462f 9916
9a86a77b
JH
9917 nextvalue = RExC_parse < RExC_end ? UCHARAT(RExC_parse) : 0;
9918
b938889d 9919 if (!SIZE_ONLY && POSIXCC(nextvalue))
830247a4 9920 checkposixcc(pRExC_state);
b8c5462f 9921
f064b6ad
HS
9922 /* allow 1st char to be ] (allowing it to be - is dealt with later) */
9923 if (UCHARAT(RExC_parse) == ']')
9924 goto charclassloop;
ffc61ed2 9925
fc8cd66c 9926parseit:
9a86a77b 9927 while (RExC_parse < RExC_end && UCHARAT(RExC_parse) != ']') {
ffc61ed2
JH
9928
9929 charclassloop:
9930
9931 namedclass = OOB_NAMEDCLASS; /* initialize as illegal */
9932
73b437c8 9933 if (!range)
830247a4 9934 rangebegin = RExC_parse;
ffc61ed2 9935 if (UTF) {
5e12f4fb 9936 value = utf8n_to_uvchr((U8*)RExC_parse,
3568d838 9937 RExC_end - RExC_parse,
9f7f3913 9938 &numlen, UTF8_ALLOW_DEFAULT);
ffc61ed2
JH
9939 RExC_parse += numlen;
9940 }
9941 else
9942 value = UCHARAT(RExC_parse++);
7f6f358c 9943
9a86a77b
JH
9944 nextvalue = RExC_parse < RExC_end ? UCHARAT(RExC_parse) : 0;
9945 if (value == '[' && POSIXCC(nextvalue))
830247a4 9946 namedclass = regpposixcc(pRExC_state, value);
620e46c5 9947 else if (value == '\\') {
ffc61ed2 9948 if (UTF) {
5e12f4fb 9949 value = utf8n_to_uvchr((U8*)RExC_parse,
ffc61ed2 9950 RExC_end - RExC_parse,
9f7f3913 9951 &numlen, UTF8_ALLOW_DEFAULT);
ffc61ed2
JH
9952 RExC_parse += numlen;
9953 }
9954 else
9955 value = UCHARAT(RExC_parse++);
470c3474 9956 /* Some compilers cannot handle switching on 64-bit integer
ffc61ed2 9957 * values, therefore value cannot be an UV. Yes, this will
e2962f66
JH
9958 * be a problem later if we want switch on Unicode.
9959 * A similar issue a little bit later when switching on
9960 * namedclass. --jhi */
ffc61ed2 9961 switch ((I32)value) {
b8c5462f
JH
9962 case 'w': namedclass = ANYOF_ALNUM; break;
9963 case 'W': namedclass = ANYOF_NALNUM; break;
9964 case 's': namedclass = ANYOF_SPACE; break;
9965 case 'S': namedclass = ANYOF_NSPACE; break;
9966 case 'd': namedclass = ANYOF_DIGIT; break;
9967 case 'D': namedclass = ANYOF_NDIGIT; break;
e1d1eefb
YO
9968 case 'v': namedclass = ANYOF_VERTWS; break;
9969 case 'V': namedclass = ANYOF_NVERTWS; break;
9970 case 'h': namedclass = ANYOF_HORIZWS; break;
9971 case 'H': namedclass = ANYOF_NHORIZWS; break;
fc8cd66c
YO
9972 case 'N': /* Handle \N{NAME} in class */
9973 {
9974 /* We only pay attention to the first char of
9975 multichar strings being returned. I kinda wonder
9976 if this makes sense as it does change the behaviour
9977 from earlier versions, OTOH that behaviour was broken
9978 as well. */
9979 UV v; /* value is register so we cant & it /grrr */
9d64099b 9980 if (reg_namedseq(pRExC_state, &v, NULL, depth)) {
fc8cd66c
YO
9981 goto parseit;
9982 }
9983 value= v;
9984 }
9985 break;
ffc61ed2
JH
9986 case 'p':
9987 case 'P':
3dab1dad
YO
9988 {
9989 char *e;
af6f566e 9990 if (RExC_parse >= RExC_end)
2a4859cd 9991 vFAIL2("Empty \\%c{}", (U8)value);
ffc61ed2 9992 if (*RExC_parse == '{') {
1df70142 9993 const U8 c = (U8)value;
ffc61ed2
JH
9994 e = strchr(RExC_parse++, '}');
9995 if (!e)
0da60cf5 9996 vFAIL2("Missing right brace on \\%c{}", c);
ab13f0c7
JH
9997 while (isSPACE(UCHARAT(RExC_parse)))
9998 RExC_parse++;
9999 if (e == RExC_parse)
0da60cf5 10000 vFAIL2("Empty \\%c{}", c);
ffc61ed2 10001 n = e - RExC_parse;
ab13f0c7
JH
10002 while (isSPACE(UCHARAT(RExC_parse + n - 1)))
10003 n--;
ffc61ed2
JH
10004 }
10005 else {
10006 e = RExC_parse;
10007 n = 1;
10008 }
ee410026 10009 if (!SIZE_ONLY) {
ab13f0c7
JH
10010 if (UCHARAT(RExC_parse) == '^') {
10011 RExC_parse++;
10012 n--;
10013 value = value == 'p' ? 'P' : 'p'; /* toggle */
10014 while (isSPACE(UCHARAT(RExC_parse))) {
10015 RExC_parse++;
10016 n--;
10017 }
10018 }
2f833f52
KW
10019
10020 /* Add the property name to the list. If /i matching, give
10021 * a different name which consists of the normal name
10022 * sandwiched between two underscores and '_i'. The design
10023 * is discussed in the commit message for this. */
10024 Perl_sv_catpvf(aTHX_ listsv, "%cutf8::%s%.*s%s\n",
10025 (value=='p' ? '+' : '!'),
10026 (FOLD) ? "__" : "",
10027 (int)n,
10028 RExC_parse,
10029 (FOLD) ? "_i" : ""
10030 );
ffc61ed2
JH
10031 }
10032 RExC_parse = e + 1;
08fc12dd
KW
10033
10034 /* The \p could match something in the Latin1 range, hence
10035 * something that isn't utf8 */
db8c82dd 10036 ANYOF_FLAGS(ret) |= ANYOF_NONBITMAP_NON_UTF8;
f81125e2 10037 namedclass = ANYOF_MAX; /* no official name, but it's named */
e40e74fe
KW
10038
10039 /* \p means they want Unicode semantics */
10040 RExC_uni_semantics = 1;
3dab1dad 10041 }
f81125e2 10042 break;
b8c5462f
JH
10043 case 'n': value = '\n'; break;
10044 case 'r': value = '\r'; break;
10045 case 't': value = '\t'; break;
10046 case 'f': value = '\f'; break;
10047 case 'b': value = '\b'; break;
c7f1f016
NIS
10048 case 'e': value = ASCII_TO_NATIVE('\033');break;
10049 case 'a': value = ASCII_TO_NATIVE('\007');break;
f0a2b745
KW
10050 case 'o':
10051 RExC_parse--; /* function expects to be pointed at the 'o' */
454155d9
KW
10052 {
10053 const char* error_msg;
10054 bool valid = grok_bslash_o(RExC_parse,
f0a2b745
KW
10055 &value,
10056 &numlen,
454155d9
KW
10057 &error_msg,
10058 SIZE_ONLY);
10059 RExC_parse += numlen;
10060 if (! valid) {
10061 vFAIL(error_msg);
10062 }
f0a2b745 10063 }
f0a2b745
KW
10064 if (PL_encoding && value < 0x100) {
10065 goto recode_encoding;
10066 }
10067 break;
b8c5462f 10068 case 'x':
ffc61ed2 10069 if (*RExC_parse == '{') {
a4c04bdc
NC
10070 I32 flags = PERL_SCAN_ALLOW_UNDERSCORES
10071 | PERL_SCAN_DISALLOW_PREFIX;
3dab1dad 10072 char * const e = strchr(RExC_parse++, '}');
b81d288d 10073 if (!e)
ffc61ed2 10074 vFAIL("Missing right brace on \\x{}");
53305cf1
NC
10075
10076 numlen = e - RExC_parse;
10077 value = grok_hex(RExC_parse, &numlen, &flags, NULL);
ffc61ed2
JH
10078 RExC_parse = e + 1;
10079 }
10080 else {
a4c04bdc 10081 I32 flags = PERL_SCAN_DISALLOW_PREFIX;
53305cf1
NC
10082 numlen = 2;
10083 value = grok_hex(RExC_parse, &numlen, &flags, NULL);
ffc61ed2
JH
10084 RExC_parse += numlen;
10085 }
9e08bc66
TS
10086 if (PL_encoding && value < 0x100)
10087 goto recode_encoding;
b8c5462f
JH
10088 break;
10089 case 'c':
17a3df4c 10090 value = grok_bslash_c(*RExC_parse++, UTF, SIZE_ONLY);
b8c5462f
JH
10091 break;
10092 case '0': case '1': case '2': case '3': case '4':
c99e91e9 10093 case '5': case '6': case '7':
9e08bc66 10094 {
c99e91e9
KW
10095 /* Take 1-3 octal digits */
10096 I32 flags = PERL_SCAN_SILENT_ILLDIGIT;
9e08bc66
TS
10097 numlen = 3;
10098 value = grok_oct(--RExC_parse, &numlen, &flags, NULL);
10099 RExC_parse += numlen;
10100 if (PL_encoding && value < 0x100)
10101 goto recode_encoding;
10102 break;
10103 }
10104 recode_encoding:
e2a7e165 10105 if (! RExC_override_recoding) {
9e08bc66
TS
10106 SV* enc = PL_encoding;
10107 value = reg_recode((const char)(U8)value, &enc);
668c081a
NC
10108 if (!enc && SIZE_ONLY)
10109 ckWARNreg(RExC_parse,
10110 "Invalid escape in the specified encoding");
9e08bc66
TS
10111 break;
10112 }
1028017a 10113 default:
c99e91e9
KW
10114 /* Allow \_ to not give an error */
10115 if (!SIZE_ONLY && isALNUM(value) && value != '_') {
668c081a
NC
10116 ckWARN2reg(RExC_parse,
10117 "Unrecognized escape \\%c in character class passed through",
10118 (int)value);
c99e91e9 10119 }
1028017a 10120 break;
b8c5462f 10121 }
ffc61ed2 10122 } /* end of \blah */
1b2d223b
JH
10123#ifdef EBCDIC
10124 else
10125 literal_endpoint++;
10126#endif
ffc61ed2
JH
10127
10128 if (namedclass > OOB_NAMEDCLASS) { /* this is a named class \blah */
10129
2c63ecad
KW
10130 /* What matches in a locale is not known until runtime, so need to
10131 * (one time per class) allocate extra space to pass to regexec.
10132 * The space will contain a bit for each named class that is to be
10133 * matched against. This isn't needed for \p{} and pseudo-classes,
10134 * as they are not affected by locale, and hence are dealt with
10135 * separately */
10136 if (LOC && namedclass < ANYOF_MAX && ! need_class) {
10137 need_class = 1;
10138 if (SIZE_ONLY) {
dd58aee1 10139 RExC_size += ANYOF_CLASS_SKIP - ANYOF_SKIP;
2c63ecad
KW
10140 }
10141 else {
dd58aee1 10142 RExC_emit += ANYOF_CLASS_SKIP - ANYOF_SKIP;
2c63ecad
KW
10143 ANYOF_CLASS_ZERO(ret);
10144 }
9051cfd9 10145 ANYOF_FLAGS(ret) |= ANYOF_CLASS;
2c63ecad 10146 }
ffc61ed2 10147
d5788240 10148 /* a bad range like a-\d, a-[:digit:]. The '-' is taken as a
1d791ab2
KW
10149 * literal, as is the character that began the false range, i.e.
10150 * the 'a' in the examples */
ffc61ed2 10151 if (range) {
73b437c8 10152 if (!SIZE_ONLY) {
668c081a
NC
10153 const int w =
10154 RExC_parse >= rangebegin ?
10155 RExC_parse - rangebegin : 0;
10156 ckWARN4reg(RExC_parse,
b45f050a 10157 "False [] range \"%*.*s\"",
097eb12c 10158 w, w, rangebegin);
668c081a 10159
1d791ab2 10160 stored +=
5bfec14d 10161 set_regclass_bit(pRExC_state, ret, '-', &l1_fold_invlist, &unicode_alternate);
3568d838 10162 if (prevvalue < 256) {
2283d326 10163 stored +=
5bfec14d 10164 set_regclass_bit(pRExC_state, ret, (U8) prevvalue, &l1_fold_invlist, &unicode_alternate);
ffc61ed2
JH
10165 }
10166 else {
1d791ab2 10167 nonbitmap = add_cp_to_invlist(nonbitmap, prevvalue);
ffc61ed2 10168 }
b8c5462f 10169 }
ffc61ed2
JH
10170
10171 range = 0; /* this was not a true range */
73b437c8 10172 }
ffc61ed2 10173
89836f1f
YO
10174
10175
73b437c8 10176 if (!SIZE_ONLY) {
c49a72a9
NC
10177 const char *what = NULL;
10178 char yesno = 0;
10179
e2962f66
JH
10180 /* Possible truncation here but in some 64-bit environments
10181 * the compiler gets heartburn about switch on 64-bit values.
10182 * A similar issue a little earlier when switching on value.
98f323fa 10183 * --jhi */
e2962f66 10184 switch ((I32)namedclass) {
da7fcca4 10185
f952827c
KW
10186 case _C_C_T_(ALNUMC, isALNUMC_L1, isALNUMC, "XPosixAlnum");
10187 case _C_C_T_(ALPHA, isALPHA_L1, isALPHA, "XPosixAlpha");
10188 case _C_C_T_(BLANK, isBLANK_L1, isBLANK, "XPosixBlank");
10189 case _C_C_T_(CNTRL, isCNTRL_L1, isCNTRL, "XPosixCntrl");
10190 case _C_C_T_(GRAPH, isGRAPH_L1, isGRAPH, "XPosixGraph");
10191 case _C_C_T_(LOWER, isLOWER_L1, isLOWER, "XPosixLower");
10192 case _C_C_T_(PRINT, isPRINT_L1, isPRINT, "XPosixPrint");
10193 case _C_C_T_(PSXSPC, isPSXSPC_L1, isPSXSPC, "XPosixSpace");
10194 case _C_C_T_(PUNCT, isPUNCT_L1, isPUNCT, "XPosixPunct");
10195 case _C_C_T_(UPPER, isUPPER_L1, isUPPER, "XPosixUpper");
a12cf05f 10196 /* \s, \w match all unicode if utf8. */
f952827c
KW
10197 case _C_C_T_(SPACE, isSPACE_L1, isSPACE, "SpacePerl");
10198 case _C_C_T_(ALNUM, isWORDCHAR_L1, isALNUM, "Word");
f952827c 10199 case _C_C_T_(XDIGIT, isXDIGIT_L1, isXDIGIT, "XPosixXDigit");
e1d1eefb
YO
10200 case _C_C_T_NOLOC_(VERTWS, is_VERTWS_latin1(&value), "VertSpace");
10201 case _C_C_T_NOLOC_(HORIZWS, is_HORIZWS_latin1(&value), "HorizSpace");
73b437c8
JH
10202 case ANYOF_ASCII:
10203 if (LOC)
936ed897 10204 ANYOF_CLASS_SET(ret, ANYOF_ASCII);
73b437c8 10205 else {
1ba5c669 10206 for (value = 0; value < 128; value++)
2283d326 10207 stored +=
5bfec14d 10208 set_regclass_bit(pRExC_state, ret, (U8) ASCII_TO_NATIVE(value), &l1_fold_invlist, &unicode_alternate);
73b437c8 10209 }
c49a72a9 10210 yesno = '+';
ce1c68b2
KW
10211 what = NULL; /* Doesn't match outside ascii, so
10212 don't want to add +utf8:: */
73b437c8
JH
10213 break;
10214 case ANYOF_NASCII:
10215 if (LOC)
936ed897 10216 ANYOF_CLASS_SET(ret, ANYOF_NASCII);
73b437c8 10217 else {
1ba5c669 10218 for (value = 128; value < 256; value++)
2283d326 10219 stored +=
5bfec14d 10220 set_regclass_bit(pRExC_state, ret, (U8) ASCII_TO_NATIVE(value), &l1_fold_invlist, &unicode_alternate);
73b437c8 10221 }
cfaf538b 10222 ANYOF_FLAGS(ret) |= ANYOF_UNICODE_ALL;
c49a72a9
NC
10223 yesno = '!';
10224 what = "ASCII";
89836f1f 10225 break;
ffc61ed2
JH
10226 case ANYOF_DIGIT:
10227 if (LOC)
10228 ANYOF_CLASS_SET(ret, ANYOF_DIGIT);
10229 else {
10230 /* consecutive digits assumed */
10231 for (value = '0'; value <= '9'; value++)
2283d326 10232 stored +=
5bfec14d 10233 set_regclass_bit(pRExC_state, ret, (U8) value, &l1_fold_invlist, &unicode_alternate);
ffc61ed2 10234 }
c49a72a9 10235 yesno = '+';
779d7b58 10236 what = "Digit";
ffc61ed2
JH
10237 break;
10238 case ANYOF_NDIGIT:
10239 if (LOC)
10240 ANYOF_CLASS_SET(ret, ANYOF_NDIGIT);
10241 else {
10242 /* consecutive digits assumed */
10243 for (value = 0; value < '0'; value++)
2283d326 10244 stored +=
5bfec14d 10245 set_regclass_bit(pRExC_state, ret, (U8) value, &l1_fold_invlist, &unicode_alternate);
ffc61ed2 10246 for (value = '9' + 1; value < 256; value++)
2283d326 10247 stored +=
5bfec14d 10248 set_regclass_bit(pRExC_state, ret, (U8) value, &l1_fold_invlist, &unicode_alternate);
ffc61ed2 10249 }
c49a72a9 10250 yesno = '!';
779d7b58 10251 what = "Digit";
2f7f8cb1 10252 if (AT_LEAST_ASCII_RESTRICTED ) {
cfaf538b
KW
10253 ANYOF_FLAGS(ret) |= ANYOF_UNICODE_ALL;
10254 }
89836f1f 10255 break;
f81125e2
JP
10256 case ANYOF_MAX:
10257 /* this is to handle \p and \P */
10258 break;
73b437c8 10259 default:
b45f050a 10260 vFAIL("Invalid [::] class");
73b437c8 10261 break;
b8c5462f 10262 }
2f7f8cb1 10263 if (what && ! (AT_LEAST_ASCII_RESTRICTED)) {
c49a72a9
NC
10264 /* Strings such as "+utf8::isWord\n" */
10265 Perl_sv_catpvf(aTHX_ listsv, "%cutf8::Is%s\n", yesno, what);
ef87b810 10266 }
ce1c68b2 10267
73b437c8 10268 continue;
a0d0e21e 10269 }
ffc61ed2
JH
10270 } /* end of namedclass \blah */
10271
a0d0e21e 10272 if (range) {
eb160463 10273 if (prevvalue > (IV)value) /* b-a */ {
d4c19fe8
AL
10274 const int w = RExC_parse - rangebegin;
10275 Simple_vFAIL4("Invalid [] range \"%*.*s\"", w, w, rangebegin);
3568d838 10276 range = 0; /* not a valid range */
73b437c8 10277 }
a0d0e21e
LW
10278 }
10279 else {
3568d838 10280 prevvalue = value; /* save the beginning of the range */
646253b5
KW
10281 if (RExC_parse+1 < RExC_end
10282 && *RExC_parse == '-'
10283 && RExC_parse[1] != ']')
10284 {
830247a4 10285 RExC_parse++;
ffc61ed2
JH
10286
10287 /* a bad range like \w-, [:word:]- ? */
10288 if (namedclass > OOB_NAMEDCLASS) {
afd78fd5 10289 if (ckWARN(WARN_REGEXP)) {
d4c19fe8 10290 const int w =
afd78fd5
JH
10291 RExC_parse >= rangebegin ?
10292 RExC_parse - rangebegin : 0;
830247a4 10293 vWARN4(RExC_parse,
b45f050a 10294 "False [] range \"%*.*s\"",
097eb12c 10295 w, w, rangebegin);
afd78fd5 10296 }
73b437c8 10297 if (!SIZE_ONLY)
2283d326 10298 stored +=
5bfec14d 10299 set_regclass_bit(pRExC_state, ret, '-', &l1_fold_invlist, &unicode_alternate);
73b437c8 10300 } else
ffc61ed2
JH
10301 range = 1; /* yeah, it's a range! */
10302 continue; /* but do it the next time */
a0d0e21e 10303 }
a687059c 10304 }
ffc61ed2 10305
046c4055
KW
10306 /* non-Latin1 code point implies unicode semantics. Must be set in
10307 * pass1 so is there for the whole of pass 2 */
56ca34ca
KW
10308 if (value > 255) {
10309 RExC_uni_semantics = 1;
10310 }
10311
93733859 10312 /* now is the next time */
ae5c130c 10313 if (!SIZE_ONLY) {
3568d838 10314 if (prevvalue < 256) {
1df70142 10315 const IV ceilvalue = value < 256 ? value : 255;
3dab1dad 10316 IV i;
3568d838 10317#ifdef EBCDIC
1b2d223b
JH
10318 /* In EBCDIC [\x89-\x91] should include
10319 * the \x8e but [i-j] should not. */
10320 if (literal_endpoint == 2 &&
10321 ((isLOWER(prevvalue) && isLOWER(ceilvalue)) ||
10322 (isUPPER(prevvalue) && isUPPER(ceilvalue))))
ffc61ed2 10323 {
3568d838
JH
10324 if (isLOWER(prevvalue)) {
10325 for (i = prevvalue; i <= ceilvalue; i++)
2670d666 10326 if (isLOWER(i) && !ANYOF_BITMAP_TEST(ret,i)) {
2283d326 10327 stored +=
5bfec14d 10328 set_regclass_bit(pRExC_state, ret, (U8) i, &l1_fold_invlist, &unicode_alternate);
2670d666 10329 }
ffc61ed2 10330 } else {
3568d838 10331 for (i = prevvalue; i <= ceilvalue; i++)
2670d666 10332 if (isUPPER(i) && !ANYOF_BITMAP_TEST(ret,i)) {
2283d326 10333 stored +=
5bfec14d 10334 set_regclass_bit(pRExC_state, ret, (U8) i, &l1_fold_invlist, &unicode_alternate);
2670d666 10335 }
ffc61ed2 10336 }
8ada0baa 10337 }
ffc61ed2 10338 else
8ada0baa 10339#endif
07be1b83 10340 for (i = prevvalue; i <= ceilvalue; i++) {
5bfec14d 10341 stored += set_regclass_bit(pRExC_state, ret, (U8) i, &l1_fold_invlist, &unicode_alternate);
07be1b83 10342 }
3568d838 10343 }
56ca34ca
KW
10344 if (value > 255) {
10345 const UV prevnatvalue = NATIVE_TO_UNI(prevvalue);
10346 const UV natvalue = NATIVE_TO_UNI(value);
56ca34ca 10347 nonbitmap = add_range_to_invlist(nonbitmap, prevnatvalue, natvalue);
56ca34ca 10348 }
1b2d223b
JH
10349#ifdef EBCDIC
10350 literal_endpoint = 0;
10351#endif
8ada0baa 10352 }
ffc61ed2
JH
10353
10354 range = 0; /* this range (if it was one) is done now */
a0d0e21e 10355 }
ffc61ed2 10356
ffc61ed2 10357
7f6f358c
YO
10358
10359 if (SIZE_ONLY)
10360 return ret;
10361 /****** !SIZE_ONLY AFTER HERE *********/
10362
0c6e4288
KW
10363 /* If folding and there are code points above 255, we calculate all
10364 * characters that could fold to or from the ones already on the list */
10365 if (FOLD && nonbitmap) {
0d527bf8 10366 UV start, end; /* End points of code point ranges */
56ca34ca 10367
a25abddc 10368 SV* fold_intersection;
93e5bb1c
KW
10369
10370 /* This is a list of all the characters that participate in folds
10371 * (except marks, etc in multi-char folds */
10372 if (! PL_utf8_foldable) {
10373 SV* swash = swash_init("utf8", "Cased", &PL_sv_undef, 1, 0);
10374 PL_utf8_foldable = _swash_to_invlist(swash);
10375 }
56ca34ca 10376
93e5bb1c
KW
10377 /* This is a hash that for a particular fold gives all characters
10378 * that are involved in it */
10379 if (! PL_utf8_foldclosures) {
10380
10381 /* If we were unable to find any folds, then we likely won't be
10382 * able to find the closures. So just create an empty list.
10383 * Folding will effectively be restricted to the non-Unicode rules
10384 * hard-coded into Perl. (This case happens legitimately during
10385 * compilation of Perl itself before the Unicode tables are
10386 * generated) */
10387 if (invlist_len(PL_utf8_foldable) == 0) {
ddc1cd80 10388 PL_utf8_foldclosures = newHV();
93e5bb1c
KW
10389 } else {
10390 /* If the folds haven't been read in, call a fold function
10391 * to force that */
10392 if (! PL_utf8_tofold) {
10393 U8 dummy[UTF8_MAXBYTES+1];
10394 STRLEN dummy_len;
10395 to_utf8_fold((U8*) "A", dummy, &dummy_len);
56ca34ca 10396 }
93e5bb1c 10397 PL_utf8_foldclosures = _swash_inversion_hash(PL_utf8_tofold);
56ca34ca 10398 }
93e5bb1c
KW
10399 }
10400
10401 /* Only the characters in this class that participate in folds need
10402 * be checked. Get the intersection of this class and all the
10403 * possible characters that are foldable. This can quickly narrow
10404 * down a large class */
37e85ffe 10405 _invlist_intersection(PL_utf8_foldable, nonbitmap, &fold_intersection);
93e5bb1c
KW
10406
10407 /* Now look at the foldable characters in this class individually */
0d527bf8
KW
10408 invlist_iterinit(fold_intersection);
10409 while (invlist_iternext(fold_intersection, &start, &end)) {
93e5bb1c
KW
10410 UV j;
10411
93e5bb1c
KW
10412 /* Look at every character in the range */
10413 for (j = start; j <= end; j++) {
10414
10415 /* Get its fold */
10416 U8 foldbuf[UTF8_MAXBYTES_CASE+1];
10417 STRLEN foldlen;
827f5bb8
KW
10418 const UV f =
10419 _to_uni_fold_flags(j, foldbuf, &foldlen, allow_full_fold);
93e5bb1c
KW
10420
10421 if (foldlen > (STRLEN)UNISKIP(f)) {
10422
10423 /* Any multicharacter foldings (disallowed in
10424 * lookbehind patterns) require the following
10425 * transform: [ABCDEF] -> (?:[ABCabcDEFd]|pq|rst) where
10426 * E folds into "pq" and F folds into "rst", all other
10427 * characters fold to single characters. We save away
10428 * these multicharacter foldings, to be later saved as
10429 * part of the additional "s" data. */
10430 if (! RExC_in_lookbehind) {
10431 U8* loc = foldbuf;
10432 U8* e = foldbuf + foldlen;
10433
10434 /* If any of the folded characters of this are in
10435 * the Latin1 range, tell the regex engine that
10436 * this can match a non-utf8 target string. The
10437 * only multi-byte fold whose source is in the
10438 * Latin1 range (U+00DF) applies only when the
10439 * target string is utf8, or under unicode rules */
10440 if (j > 255 || AT_LEAST_UNI_SEMANTICS) {
10441 while (loc < e) {
10442
10443 /* Can't mix ascii with non- under /aa */
10444 if (MORE_ASCII_RESTRICTED
10445 && (isASCII(*loc) != isASCII(j)))
10446 {
10447 goto end_multi_fold;
10448 }
10449 if (UTF8_IS_INVARIANT(*loc)
10450 || UTF8_IS_DOWNGRADEABLE_START(*loc))
10451 {
10452 /* Can't mix above and below 256 under
10453 * LOC */
10454 if (LOC) {
2f7f8cb1
KW
10455 goto end_multi_fold;
10456 }
93e5bb1c
KW
10457 ANYOF_FLAGS(ret)
10458 |= ANYOF_NONBITMAP_NON_UTF8;
10459 break;
8e3094e5 10460 }
93e5bb1c 10461 loc += UTF8SKIP(loc);
8e3094e5 10462 }
56ca34ca 10463 }
17580e7a 10464
93e5bb1c
KW
10465 add_alternate(&unicode_alternate, foldbuf, foldlen);
10466 end_multi_fold: ;
10467 }
14e30abc
KW
10468
10469 /* This is special-cased, as it is the only letter which
10470 * has both a multi-fold and single-fold in Latin1. All
10471 * the other chars that have single and multi-folds are
10472 * always in utf8, and the utf8 folding algorithm catches
10473 * them */
10474 if (! LOC && j == LATIN_CAPITAL_LETTER_SHARP_S) {
10475 stored += set_regclass_bit(pRExC_state,
10476 ret,
10477 LATIN_SMALL_LETTER_SHARP_S,
10478 &l1_fold_invlist, &unicode_alternate);
10479 }
93e5bb1c
KW
10480 }
10481 else {
10482 /* Single character fold. Add everything in its fold
10483 * closure to the list that this node should match */
10484 SV** listp;
10485
10486 /* The fold closures data structure is a hash with the
10487 * keys being every character that is folded to, like
10488 * 'k', and the values each an array of everything that
10489 * folds to its key. e.g. [ 'k', 'K', KELVIN_SIGN ] */
10490 if ((listp = hv_fetch(PL_utf8_foldclosures,
10491 (char *) foldbuf, foldlen, FALSE)))
10492 {
10493 AV* list = (AV*) *listp;
10494 IV k;
10495 for (k = 0; k <= av_len(list); k++) {
10496 SV** c_p = av_fetch(list, k, FALSE);
10497 UV c;
10498 if (c_p == NULL) {
10499 Perl_croak(aTHX_ "panic: invalid PL_utf8_foldclosures structure");
10500 }
10501 c = SvUV(*c_p);
10502
10503 /* /aa doesn't allow folds between ASCII and
10504 * non-; /l doesn't allow them between above
10505 * and below 256 */
10506 if ((MORE_ASCII_RESTRICTED
10507 && (isASCII(c) != isASCII(j)))
10508 || (LOC && ((c < 256) != (j < 256))))
10509 {
10510 continue;
10511 }
56ca34ca 10512
93e5bb1c
KW
10513 if (c < 256 && AT_LEAST_UNI_SEMANTICS) {
10514 stored += set_regclass_bit(pRExC_state,
10515 ret,
10516 (U8) c,
10517 &l1_fold_invlist, &unicode_alternate);
10518 }
10519 /* It may be that the code point is already
10520 * in this range or already in the bitmap,
10521 * in which case we need do nothing */
10522 else if ((c < start || c > end)
10523 && (c > 255
10524 || ! ANYOF_BITMAP_TEST(ret, c)))
10525 {
10526 nonbitmap = add_cp_to_invlist(nonbitmap, c);
56ca34ca
KW
10527 }
10528 }
10529 }
10530 }
10531 }
93e5bb1c 10532 }
318c430e 10533 SvREFCNT_dec(fold_intersection);
56ca34ca
KW
10534 }
10535
53742956
KW
10536 /* Combine the two lists into one. */
10537 if (l1_fold_invlist) {
10538 if (nonbitmap) {
37e85ffe 10539 _invlist_union(nonbitmap, l1_fold_invlist, &nonbitmap);
318c430e 10540 SvREFCNT_dec(l1_fold_invlist);
53742956
KW
10541 }
10542 else {
10543 nonbitmap = l1_fold_invlist;
10544 }
10545 }
10546
fb9bfbf7
KW
10547 /* Here, we have calculated what code points should be in the character
10548 * class. Now we can see about various optimizations. Fold calculation
10549 * needs to take place before inversion. Otherwise /[^k]/i would invert to
10550 * include K, which under /i would match k. */
10551
f56b6394
KW
10552 /* Optimize inverted simple patterns (e.g. [^a-z]). Note that we haven't
10553 * set the FOLD flag yet, so this this does optimize those. It doesn't
40c78556
KW
10554 * optimize locale. Doing so perhaps could be done as long as there is
10555 * nothing like \w in it; some thought also would have to be given to the
10556 * interaction with above 0x100 chars */
137165a6 10557 if (! LOC
2fde50e1 10558 && (ANYOF_FLAGS(ret) & ANYOF_INVERT)
137165a6 10559 && ! unicode_alternate
2fde50e1
KW
10560 /* In case of /d, there are some things that should match only when in
10561 * not in the bitmap, i.e., they require UTF8 to match. These are
10562 * listed in nonbitmap. */
10563 && (! nonbitmap
10564 || ! DEPENDS_SEMANTICS
10565 || (ANYOF_FLAGS(ret) & ANYOF_NONBITMAP_NON_UTF8))
137165a6
KW
10566 && SvCUR(listsv) == initial_listsv_len)
10567 {
2fde50e1 10568 if (! nonbitmap) {
641b49c8
KW
10569 for (value = 0; value < ANYOF_BITMAP_SIZE; ++value)
10570 ANYOF_BITMAP(ret)[value] ^= 0xFF;
2fde50e1
KW
10571 /* The inversion means that everything above 255 is matched */
10572 ANYOF_FLAGS(ret) |= ANYOF_UNICODE_ALL;
10573 }
10574 else {
10575 /* Here, also has things outside the bitmap. Go through each bit
10576 * individually and add it to the list to get rid of from those
10577 * things not in the bitmap */
10578 SV *remove_list = _new_invlist(2);
37e85ffe 10579 _invlist_invert(nonbitmap);
2fde50e1
KW
10580 for (value = 0; value < 256; ++value) {
10581 if (ANYOF_BITMAP_TEST(ret, value)) {
10582 ANYOF_BITMAP_CLEAR(ret, value);
10583 remove_list = add_cp_to_invlist(remove_list, value);
10584 }
10585 else {
10586 ANYOF_BITMAP_SET(ret, value);
10587 }
10588 }
37e85ffe 10589 _invlist_subtract(nonbitmap, remove_list, &nonbitmap);
2fde50e1
KW
10590 SvREFCNT_dec(remove_list);
10591 }
10592
40c78556
KW
10593 stored = 256 - stored;
10594
2fde50e1
KW
10595 /* Clear the invert flag since have just done it here */
10596 ANYOF_FLAGS(ret) &= ~ANYOF_INVERT;
40c78556
KW
10597 }
10598
0222889f
KW
10599 /* Folding in the bitmap is taken care of above, but not for locale (for
10600 * which we have to wait to see what folding is in effect at runtime), and
10601 * for things not in the bitmap. Set run-time fold flag for these */
53742956 10602 if (FOLD && (LOC || nonbitmap || unicode_alternate)) {
0222889f 10603 ANYOF_FLAGS(ret) |= ANYOF_LOC_NONBITMAP_FOLD;
f56b6394
KW
10604 }
10605
2786be71
KW
10606 /* A single character class can be "optimized" into an EXACTish node.
10607 * Note that since we don't currently count how many characters there are
10608 * outside the bitmap, we are XXX missing optimization possibilities for
10609 * them. This optimization can't happen unless this is a truly single
10610 * character class, which means that it can't be an inversion into a
10611 * many-character class, and there must be no possibility of there being
10612 * things outside the bitmap. 'stored' (only) for locales doesn't include
6da63e10
KW
10613 * \w, etc, so have to make a special test that they aren't present
10614 *
10615 * Similarly A 2-character class of the very special form like [bB] can be
10616 * optimized into an EXACTFish node, but only for non-locales, and for
10617 * characters which only have the two folds; so things like 'fF' and 'Ii'
10618 * wouldn't work because they are part of the fold of 'LATIN SMALL LIGATURE
10619 * FI'. */
137165a6 10620 if (! nonbitmap
53742956 10621 && ! unicode_alternate
137165a6
KW
10622 && SvCUR(listsv) == initial_listsv_len
10623 && ! (ANYOF_FLAGS(ret) & (ANYOF_INVERT|ANYOF_UNICODE_ALL))
6da63e10
KW
10624 && (((stored == 1 && ((! (ANYOF_FLAGS(ret) & ANYOF_LOCALE))
10625 || (! ANYOF_CLASS_TEST_ANY_SET(ret)))))
10626 || (stored == 2 && ((! (ANYOF_FLAGS(ret) & ANYOF_LOCALE))
10627 && (! _HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(value))
10628 /* If the latest code point has a fold whose
10629 * bit is set, it must be the only other one */
2dcac756 10630 && ((prevvalue = PL_fold_latin1[value]) != (IV)value)
6da63e10 10631 && ANYOF_BITMAP_TEST(ret, prevvalue)))))
2786be71
KW
10632 {
10633 /* Note that the information needed to decide to do this optimization
10634 * is not currently available until the 2nd pass, and that the actually
6da63e10
KW
10635 * used EXACTish node takes less space than the calculated ANYOF node,
10636 * and hence the amount of space calculated in the first pass is larger
2786be71
KW
10637 * than actually used, so this optimization doesn't gain us any space.
10638 * But an EXACT node is faster than an ANYOF node, and can be combined
10639 * with any adjacent EXACT nodes later by the optimizer for further
6da63e10
KW
10640 * gains. The speed of executing an EXACTF is similar to an ANYOF
10641 * node, so the optimization advantage comes from the ability to join
10642 * it to adjacent EXACT nodes */
2786be71 10643
07be1b83 10644 const char * cur_parse= RExC_parse;
6da63e10 10645 U8 op;
07be1b83
YO
10646 RExC_emit = (regnode *)orig_emit;
10647 RExC_parse = (char *)orig_parse;
2786be71 10648
6da63e10
KW
10649 if (stored == 1) {
10650
10651 /* A locale node with one point can be folded; all the other cases
10652 * with folding will have two points, since we calculate them above
10653 */
39065660 10654 if (ANYOF_FLAGS(ret) & ANYOF_LOC_NONBITMAP_FOLD) {
6da63e10
KW
10655 op = EXACTFL;
10656 }
10657 else {
10658 op = EXACT;
10659 }
10660 } /* else 2 chars in the bit map: the folds of each other */
cfaf538b 10661 else if (AT_LEAST_UNI_SEMANTICS || !isASCII(value)) {
6da63e10
KW
10662
10663 /* To join adjacent nodes, they must be the exact EXACTish type.
10664 * Try to use the most likely type, by using EXACTFU if the regex
10665 * calls for them, or is required because the character is
10666 * non-ASCII */
10667 op = EXACTFU;
10668 }
10669 else { /* Otherwise, more likely to be EXACTF type */
10670 op = EXACTF;
10671 }
10672
10673 ret = reg_node(pRExC_state, op);
07be1b83 10674 RExC_parse = (char *)cur_parse;
2786be71
KW
10675 if (UTF && ! NATIVE_IS_INVARIANT(value)) {
10676 *STRING(ret)= UTF8_EIGHT_BIT_HI((U8) value);
10677 *(STRING(ret) + 1)= UTF8_EIGHT_BIT_LO((U8) value);
10678 STR_LEN(ret)= 2;
10679 RExC_emit += STR_SZ(2);
10680 }
10681 else {
10682 *STRING(ret)= (char)value;
10683 STR_LEN(ret)= 1;
10684 RExC_emit += STR_SZ(1);
10685 }
ef8d46e8 10686 SvREFCNT_dec(listsv);
7f6f358c
YO
10687 return ret;
10688 }
ffc61ed2 10689
9e791dfe 10690 if (nonbitmap) {
0d527bf8
KW
10691 UV start, end;
10692 invlist_iterinit(nonbitmap);
10693 while (invlist_iternext(nonbitmap, &start, &end)) {
9e791dfe
KW
10694 if (start == end) {
10695 Perl_sv_catpvf(aTHX_ listsv, "%04"UVxf"\n", start);
10696 }
10697 else {
10698 /* The \t sets the whole range */
10699 Perl_sv_catpvf(aTHX_ listsv, "%04"UVxf"\t%04"UVxf"\n",
10700 /* XXX EBCDIC */
10701 start, end);
10702 }
10703 }
318c430e 10704 SvREFCNT_dec(nonbitmap);
9e791dfe
KW
10705 }
10706
137165a6
KW
10707 if (SvCUR(listsv) == initial_listsv_len && ! unicode_alternate) {
10708 ARG_SET(ret, ANYOF_NONBITMAP_EMPTY);
10709 SvREFCNT_dec(listsv);
10710 SvREFCNT_dec(unicode_alternate);
10711 }
10712 else {
10713
097eb12c 10714 AV * const av = newAV();
ffc61ed2 10715 SV *rv;
9e55ce06 10716 /* The 0th element stores the character class description
6a0407ee 10717 * in its textual form: used later (regexec.c:Perl_regclass_swash())
9e55ce06
JH
10718 * to initialize the appropriate swash (which gets stored in
10719 * the 1st element), and also useful for dumping the regnode.
10720 * The 2nd element stores the multicharacter foldings,
6a0407ee 10721 * used later (regexec.c:S_reginclass()). */
ffc61ed2
JH
10722 av_store(av, 0, listsv);
10723 av_store(av, 1, NULL);
827f5bb8
KW
10724
10725 /* Store any computed multi-char folds only if we are allowing
10726 * them */
10727 if (allow_full_fold) {
7b4a7e58
KW
10728 av_store(av, 2, MUTABLE_SV(unicode_alternate));
10729 if (unicode_alternate) { /* This node is variable length */
10730 OP(ret) = ANYOFV;
10731 }
827f5bb8
KW
10732 }
10733 else {
10734 av_store(av, 2, NULL);
10735 }
ad64d0ec 10736 rv = newRV_noinc(MUTABLE_SV(av));
19860706 10737 n = add_data(pRExC_state, 1, "s");
f8fc2ecf 10738 RExC_rxi->data->data[n] = (void*)rv;
ffc61ed2 10739 ARG_SET(ret, n);
a0ed51b3 10740 }
a0ed51b3
LW
10741 return ret;
10742}
89836f1f
YO
10743#undef _C_C_T_
10744
a0ed51b3 10745
bcdf7404
YO
10746/* reg_skipcomment()
10747
10748 Absorbs an /x style # comments from the input stream.
10749 Returns true if there is more text remaining in the stream.
10750 Will set the REG_SEEN_RUN_ON_COMMENT flag if the comment
10751 terminates the pattern without including a newline.
10752
10753 Note its the callers responsibility to ensure that we are
10754 actually in /x mode
10755
10756*/
10757
10758STATIC bool
10759S_reg_skipcomment(pTHX_ RExC_state_t *pRExC_state)
10760{
10761 bool ended = 0;
7918f24d
NC
10762
10763 PERL_ARGS_ASSERT_REG_SKIPCOMMENT;
10764
bcdf7404
YO
10765 while (RExC_parse < RExC_end)
10766 if (*RExC_parse++ == '\n') {
10767 ended = 1;
10768 break;
10769 }
10770 if (!ended) {
10771 /* we ran off the end of the pattern without ending
10772 the comment, so we have to add an \n when wrapping */
10773 RExC_seen |= REG_SEEN_RUN_ON_COMMENT;
10774 return 0;
10775 } else
10776 return 1;
10777}
10778
10779/* nextchar()
10780
3b753521 10781 Advances the parse position, and optionally absorbs
bcdf7404
YO
10782 "whitespace" from the inputstream.
10783
10784 Without /x "whitespace" means (?#...) style comments only,
10785 with /x this means (?#...) and # comments and whitespace proper.
10786
10787 Returns the RExC_parse point from BEFORE the scan occurs.
10788
10789 This is the /x friendly way of saying RExC_parse++.
10790*/
10791
76e3520e 10792STATIC char*
830247a4 10793S_nextchar(pTHX_ RExC_state_t *pRExC_state)
a0d0e21e 10794{
097eb12c 10795 char* const retval = RExC_parse++;
a0d0e21e 10796
7918f24d
NC
10797 PERL_ARGS_ASSERT_NEXTCHAR;
10798
4633a7c4 10799 for (;;) {
830247a4
IZ
10800 if (*RExC_parse == '(' && RExC_parse[1] == '?' &&
10801 RExC_parse[2] == '#') {
e994fd66
AE
10802 while (*RExC_parse != ')') {
10803 if (RExC_parse == RExC_end)
10804 FAIL("Sequence (?#... not terminated");
830247a4 10805 RExC_parse++;
e994fd66 10806 }
830247a4 10807 RExC_parse++;
4633a7c4
LW
10808 continue;
10809 }
bbe252da 10810 if (RExC_flags & RXf_PMf_EXTENDED) {
830247a4
IZ
10811 if (isSPACE(*RExC_parse)) {
10812 RExC_parse++;
748a9306
LW
10813 continue;
10814 }
830247a4 10815 else if (*RExC_parse == '#') {
bcdf7404
YO
10816 if ( reg_skipcomment( pRExC_state ) )
10817 continue;
748a9306 10818 }
748a9306 10819 }
4633a7c4 10820 return retval;
a0d0e21e 10821 }
a687059c
LW
10822}
10823
10824/*
c277df42 10825- reg_node - emit a node
a0d0e21e 10826*/
76e3520e 10827STATIC regnode * /* Location. */
830247a4 10828S_reg_node(pTHX_ RExC_state_t *pRExC_state, U8 op)
a687059c 10829{
97aff369 10830 dVAR;
c277df42 10831 register regnode *ptr;
504618e9 10832 regnode * const ret = RExC_emit;
07be1b83 10833 GET_RE_DEBUG_FLAGS_DECL;
a687059c 10834
7918f24d
NC
10835 PERL_ARGS_ASSERT_REG_NODE;
10836
c277df42 10837 if (SIZE_ONLY) {
830247a4
IZ
10838 SIZE_ALIGN(RExC_size);
10839 RExC_size += 1;
a0d0e21e
LW
10840 return(ret);
10841 }
3b57cd43
YO
10842 if (RExC_emit >= RExC_emit_bound)
10843 Perl_croak(aTHX_ "panic: reg_node overrun trying to emit %d", op);
10844
c277df42 10845 NODE_ALIGN_FILL(ret);
a0d0e21e 10846 ptr = ret;
c277df42 10847 FILL_ADVANCE_NODE(ptr, op);
7122b237 10848#ifdef RE_TRACK_PATTERN_OFFSETS
fac92740 10849 if (RExC_offsets) { /* MJD */
07be1b83 10850 MJD_OFFSET_DEBUG(("%s:%d: (op %s) %s %"UVuf" (len %"UVuf") (max %"UVuf").\n",
fac92740 10851 "reg_node", __LINE__,
13d6edb4 10852 PL_reg_name[op],
07be1b83
YO
10853 (UV)(RExC_emit - RExC_emit_start) > RExC_offsets[0]
10854 ? "Overwriting end of array!\n" : "OK",
10855 (UV)(RExC_emit - RExC_emit_start),
10856 (UV)(RExC_parse - RExC_start),
10857 (UV)RExC_offsets[0]));
ccb2c380 10858 Set_Node_Offset(RExC_emit, RExC_parse + (op == END));
fac92740 10859 }
7122b237 10860#endif
830247a4 10861 RExC_emit = ptr;
a0d0e21e 10862 return(ret);
a687059c
LW
10863}
10864
10865/*
a0d0e21e
LW
10866- reganode - emit a node with an argument
10867*/
76e3520e 10868STATIC regnode * /* Location. */
830247a4 10869S_reganode(pTHX_ RExC_state_t *pRExC_state, U8 op, U32 arg)
fe14fcc3 10870{
97aff369 10871 dVAR;
c277df42 10872 register regnode *ptr;
504618e9 10873 regnode * const ret = RExC_emit;
07be1b83 10874 GET_RE_DEBUG_FLAGS_DECL;
fe14fcc3 10875
7918f24d
NC
10876 PERL_ARGS_ASSERT_REGANODE;
10877
c277df42 10878 if (SIZE_ONLY) {
830247a4
IZ
10879 SIZE_ALIGN(RExC_size);
10880 RExC_size += 2;
6bda09f9
YO
10881 /*
10882 We can't do this:
10883
10884 assert(2==regarglen[op]+1);
10885
10886 Anything larger than this has to allocate the extra amount.
10887 If we changed this to be:
10888
10889 RExC_size += (1 + regarglen[op]);
10890
10891 then it wouldn't matter. Its not clear what side effect
10892 might come from that so its not done so far.
10893 -- dmq
10894 */
a0d0e21e
LW
10895 return(ret);
10896 }
3b57cd43
YO
10897 if (RExC_emit >= RExC_emit_bound)
10898 Perl_croak(aTHX_ "panic: reg_node overrun trying to emit %d", op);
10899
c277df42 10900 NODE_ALIGN_FILL(ret);
a0d0e21e 10901 ptr = ret;
c277df42 10902 FILL_ADVANCE_NODE_ARG(ptr, op, arg);
7122b237 10903#ifdef RE_TRACK_PATTERN_OFFSETS
fac92740 10904 if (RExC_offsets) { /* MJD */
07be1b83 10905 MJD_OFFSET_DEBUG(("%s(%d): (op %s) %s %"UVuf" <- %"UVuf" (max %"UVuf").\n",
fac92740 10906 "reganode",
ccb2c380 10907 __LINE__,
13d6edb4 10908 PL_reg_name[op],
07be1b83 10909 (UV)(RExC_emit - RExC_emit_start) > RExC_offsets[0] ?
fac92740 10910 "Overwriting end of array!\n" : "OK",
07be1b83
YO
10911 (UV)(RExC_emit - RExC_emit_start),
10912 (UV)(RExC_parse - RExC_start),
10913 (UV)RExC_offsets[0]));
ccb2c380 10914 Set_Cur_Node_Offset;
fac92740 10915 }
7122b237 10916#endif
830247a4 10917 RExC_emit = ptr;
a0d0e21e 10918 return(ret);
fe14fcc3
LW
10919}
10920
10921/*
cd439c50 10922- reguni - emit (if appropriate) a Unicode character
a0ed51b3 10923*/
71207a34
AL
10924STATIC STRLEN
10925S_reguni(pTHX_ const RExC_state_t *pRExC_state, UV uv, char* s)
a0ed51b3 10926{
97aff369 10927 dVAR;
7918f24d
NC
10928
10929 PERL_ARGS_ASSERT_REGUNI;
10930
71207a34 10931 return SIZE_ONLY ? UNISKIP(uv) : (uvchr_to_utf8((U8*)s, uv) - (U8*)s);
a0ed51b3
LW
10932}
10933
10934/*
a0d0e21e
LW
10935- reginsert - insert an operator in front of already-emitted operand
10936*
10937* Means relocating the operand.
10938*/
76e3520e 10939STATIC void
6bda09f9 10940S_reginsert(pTHX_ RExC_state_t *pRExC_state, U8 op, regnode *opnd, U32 depth)
a687059c 10941{
97aff369 10942 dVAR;
c277df42
IZ
10943 register regnode *src;
10944 register regnode *dst;
10945 register regnode *place;
504618e9 10946 const int offset = regarglen[(U8)op];
6bda09f9 10947 const int size = NODE_STEP_REGNODE + offset;
07be1b83 10948 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
10949
10950 PERL_ARGS_ASSERT_REGINSERT;
def51078 10951 PERL_UNUSED_ARG(depth);
22c35a8c 10952/* (PL_regkind[(U8)op] == CURLY ? EXTRA_STEP_2ARGS : 0); */
13d6edb4 10953 DEBUG_PARSE_FMT("inst"," - %s",PL_reg_name[op]);
c277df42 10954 if (SIZE_ONLY) {
6bda09f9 10955 RExC_size += size;
a0d0e21e
LW
10956 return;
10957 }
a687059c 10958
830247a4 10959 src = RExC_emit;
6bda09f9 10960 RExC_emit += size;
830247a4 10961 dst = RExC_emit;
40d049e4 10962 if (RExC_open_parens) {
6bda09f9 10963 int paren;
3b57cd43 10964 /*DEBUG_PARSE_FMT("inst"," - %"IVdf, (IV)RExC_npar);*/
6bda09f9 10965 for ( paren=0 ; paren < RExC_npar ; paren++ ) {
40d049e4 10966 if ( RExC_open_parens[paren] >= opnd ) {
3b57cd43 10967 /*DEBUG_PARSE_FMT("open"," - %d",size);*/
40d049e4
YO
10968 RExC_open_parens[paren] += size;
10969 } else {
3b57cd43 10970 /*DEBUG_PARSE_FMT("open"," - %s","ok");*/
40d049e4
YO
10971 }
10972 if ( RExC_close_parens[paren] >= opnd ) {
3b57cd43 10973 /*DEBUG_PARSE_FMT("close"," - %d",size);*/
40d049e4
YO
10974 RExC_close_parens[paren] += size;
10975 } else {
3b57cd43 10976 /*DEBUG_PARSE_FMT("close"," - %s","ok");*/
40d049e4
YO
10977 }
10978 }
6bda09f9 10979 }
40d049e4 10980
fac92740 10981 while (src > opnd) {
c277df42 10982 StructCopy(--src, --dst, regnode);
7122b237 10983#ifdef RE_TRACK_PATTERN_OFFSETS
fac92740 10984 if (RExC_offsets) { /* MJD 20010112 */
07be1b83 10985 MJD_OFFSET_DEBUG(("%s(%d): (op %s) %s copy %"UVuf" -> %"UVuf" (max %"UVuf").\n",
fac92740 10986 "reg_insert",
ccb2c380 10987 __LINE__,
13d6edb4 10988 PL_reg_name[op],
07be1b83
YO
10989 (UV)(dst - RExC_emit_start) > RExC_offsets[0]
10990 ? "Overwriting end of array!\n" : "OK",
10991 (UV)(src - RExC_emit_start),
10992 (UV)(dst - RExC_emit_start),
10993 (UV)RExC_offsets[0]));
ccb2c380
MP
10994 Set_Node_Offset_To_R(dst-RExC_emit_start, Node_Offset(src));
10995 Set_Node_Length_To_R(dst-RExC_emit_start, Node_Length(src));
fac92740 10996 }
7122b237 10997#endif
fac92740
MJD
10998 }
10999
a0d0e21e
LW
11000
11001 place = opnd; /* Op node, where operand used to be. */
7122b237 11002#ifdef RE_TRACK_PATTERN_OFFSETS
fac92740 11003 if (RExC_offsets) { /* MJD */
07be1b83 11004 MJD_OFFSET_DEBUG(("%s(%d): (op %s) %s %"UVuf" <- %"UVuf" (max %"UVuf").\n",
fac92740 11005 "reginsert",
ccb2c380 11006 __LINE__,
13d6edb4 11007 PL_reg_name[op],
07be1b83 11008 (UV)(place - RExC_emit_start) > RExC_offsets[0]
fac92740 11009 ? "Overwriting end of array!\n" : "OK",
07be1b83
YO
11010 (UV)(place - RExC_emit_start),
11011 (UV)(RExC_parse - RExC_start),
786e8c11 11012 (UV)RExC_offsets[0]));
ccb2c380 11013 Set_Node_Offset(place, RExC_parse);
45948336 11014 Set_Node_Length(place, 1);
fac92740 11015 }
7122b237 11016#endif
c277df42
IZ
11017 src = NEXTOPER(place);
11018 FILL_ADVANCE_NODE(place, op);
11019 Zero(src, offset, regnode);
a687059c
LW
11020}
11021
11022/*
c277df42 11023- regtail - set the next-pointer at the end of a node chain of p to val.
3dab1dad 11024- SEE ALSO: regtail_study
a0d0e21e 11025*/
097eb12c 11026/* TODO: All three parms should be const */
76e3520e 11027STATIC void
3dab1dad 11028S_regtail(pTHX_ RExC_state_t *pRExC_state, regnode *p, const regnode *val,U32 depth)
a687059c 11029{
97aff369 11030 dVAR;
c277df42 11031 register regnode *scan;
72f13be8 11032 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
11033
11034 PERL_ARGS_ASSERT_REGTAIL;
f9049ba1
SP
11035#ifndef DEBUGGING
11036 PERL_UNUSED_ARG(depth);
11037#endif
a0d0e21e 11038
c277df42 11039 if (SIZE_ONLY)
a0d0e21e
LW
11040 return;
11041
11042 /* Find last node. */
11043 scan = p;
11044 for (;;) {
504618e9 11045 regnode * const temp = regnext(scan);
3dab1dad
YO
11046 DEBUG_PARSE_r({
11047 SV * const mysv=sv_newmortal();
11048 DEBUG_PARSE_MSG((scan==p ? "tail" : ""));
11049 regprop(RExC_rx, mysv, scan);
eaf3ca90
YO
11050 PerlIO_printf(Perl_debug_log, "~ %s (%d) %s %s\n",
11051 SvPV_nolen_const(mysv), REG_NODE_NUM(scan),
11052 (temp == NULL ? "->" : ""),
13d6edb4 11053 (temp == NULL ? PL_reg_name[OP(val)] : "")
eaf3ca90 11054 );
3dab1dad
YO
11055 });
11056 if (temp == NULL)
11057 break;
11058 scan = temp;
11059 }
11060
11061 if (reg_off_by_arg[OP(scan)]) {
11062 ARG_SET(scan, val - scan);
11063 }
11064 else {
11065 NEXT_OFF(scan) = val - scan;
11066 }
11067}
11068
07be1b83 11069#ifdef DEBUGGING
3dab1dad
YO
11070/*
11071- regtail_study - set the next-pointer at the end of a node chain of p to val.
11072- Look for optimizable sequences at the same time.
11073- currently only looks for EXACT chains.
07be1b83 11074
486ec47a 11075This is experimental code. The idea is to use this routine to perform
07be1b83
YO
11076in place optimizations on branches and groups as they are constructed,
11077with the long term intention of removing optimization from study_chunk so
11078that it is purely analytical.
11079
11080Currently only used when in DEBUG mode. The macro REGTAIL_STUDY() is used
11081to control which is which.
11082
3dab1dad
YO
11083*/
11084/* TODO: All four parms should be const */
07be1b83 11085
3dab1dad
YO
11086STATIC U8
11087S_regtail_study(pTHX_ RExC_state_t *pRExC_state, regnode *p, const regnode *val,U32 depth)
11088{
11089 dVAR;
11090 register regnode *scan;
07be1b83
YO
11091 U8 exact = PSEUDO;
11092#ifdef EXPERIMENTAL_INPLACESCAN
11093 I32 min = 0;
11094#endif
3dab1dad
YO
11095 GET_RE_DEBUG_FLAGS_DECL;
11096
7918f24d
NC
11097 PERL_ARGS_ASSERT_REGTAIL_STUDY;
11098
07be1b83 11099
3dab1dad
YO
11100 if (SIZE_ONLY)
11101 return exact;
11102
11103 /* Find last node. */
11104
11105 scan = p;
11106 for (;;) {
11107 regnode * const temp = regnext(scan);
07be1b83
YO
11108#ifdef EXPERIMENTAL_INPLACESCAN
11109 if (PL_regkind[OP(scan)] == EXACT)
11110 if (join_exact(pRExC_state,scan,&min,1,val,depth+1))
11111 return EXACT;
11112#endif
3dab1dad
YO
11113 if ( exact ) {
11114 switch (OP(scan)) {
11115 case EXACT:
11116 case EXACTF:
2f7f8cb1 11117 case EXACTFA:
2c2b7f86 11118 case EXACTFU:
3dab1dad
YO
11119 case EXACTFL:
11120 if( exact == PSEUDO )
11121 exact= OP(scan);
07be1b83
YO
11122 else if ( exact != OP(scan) )
11123 exact= 0;
3dab1dad
YO
11124 case NOTHING:
11125 break;
11126 default:
11127 exact= 0;
11128 }
11129 }
11130 DEBUG_PARSE_r({
11131 SV * const mysv=sv_newmortal();
11132 DEBUG_PARSE_MSG((scan==p ? "tsdy" : ""));
11133 regprop(RExC_rx, mysv, scan);
eaf3ca90 11134 PerlIO_printf(Perl_debug_log, "~ %s (%d) -> %s\n",
3dab1dad 11135 SvPV_nolen_const(mysv),
eaf3ca90 11136 REG_NODE_NUM(scan),
13d6edb4 11137 PL_reg_name[exact]);
3dab1dad 11138 });
a0d0e21e
LW
11139 if (temp == NULL)
11140 break;
11141 scan = temp;
11142 }
07be1b83
YO
11143 DEBUG_PARSE_r({
11144 SV * const mysv_val=sv_newmortal();
11145 DEBUG_PARSE_MSG("");
11146 regprop(RExC_rx, mysv_val, val);
70685ca0
JH
11147 PerlIO_printf(Perl_debug_log, "~ attach to %s (%"IVdf") offset to %"IVdf"\n",
11148 SvPV_nolen_const(mysv_val),
11149 (IV)REG_NODE_NUM(val),
11150 (IV)(val - scan)
07be1b83
YO
11151 );
11152 });
c277df42
IZ
11153 if (reg_off_by_arg[OP(scan)]) {
11154 ARG_SET(scan, val - scan);
a0ed51b3
LW
11155 }
11156 else {
c277df42
IZ
11157 NEXT_OFF(scan) = val - scan;
11158 }
3dab1dad
YO
11159
11160 return exact;
a687059c 11161}
07be1b83 11162#endif
a687059c
LW
11163
11164/*
fd181c75 11165 - regdump - dump a regexp onto Perl_debug_log in vaguely comprehensible form
a687059c 11166 */
f7819f85 11167#ifdef DEBUGGING
c33269f7 11168static void
7918f24d
NC
11169S_regdump_extflags(pTHX_ const char *lead, const U32 flags)
11170{
f7819f85
A
11171 int bit;
11172 int set=0;
a62b1201 11173 regex_charset cs;
7918f24d 11174
f7819f85
A
11175 for (bit=0; bit<32; bit++) {
11176 if (flags & (1<<bit)) {
a62b1201
KW
11177 if ((1<<bit) & RXf_PMf_CHARSET) { /* Output separately, below */
11178 continue;
11179 }
f7819f85
A
11180 if (!set++ && lead)
11181 PerlIO_printf(Perl_debug_log, "%s",lead);
11182 PerlIO_printf(Perl_debug_log, "%s ",PL_reg_extflags_name[bit]);
11183 }
11184 }
a62b1201
KW
11185 if ((cs = get_regex_charset(flags)) != REGEX_DEPENDS_CHARSET) {
11186 if (!set++ && lead) {
11187 PerlIO_printf(Perl_debug_log, "%s",lead);
11188 }
11189 switch (cs) {
11190 case REGEX_UNICODE_CHARSET:
11191 PerlIO_printf(Perl_debug_log, "UNICODE");
11192 break;
11193 case REGEX_LOCALE_CHARSET:
11194 PerlIO_printf(Perl_debug_log, "LOCALE");
11195 break;
cfaf538b
KW
11196 case REGEX_ASCII_RESTRICTED_CHARSET:
11197 PerlIO_printf(Perl_debug_log, "ASCII-RESTRICTED");
11198 break;
2f7f8cb1
KW
11199 case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
11200 PerlIO_printf(Perl_debug_log, "ASCII-MORE_RESTRICTED");
11201 break;
a62b1201
KW
11202 default:
11203 PerlIO_printf(Perl_debug_log, "UNKNOWN CHARACTER SET");
11204 break;
11205 }
11206 }
f7819f85
A
11207 if (lead) {
11208 if (set)
11209 PerlIO_printf(Perl_debug_log, "\n");
11210 else
11211 PerlIO_printf(Perl_debug_log, "%s[none-set]\n",lead);
11212 }
11213}
11214#endif
11215
a687059c 11216void
097eb12c 11217Perl_regdump(pTHX_ const regexp *r)
a687059c 11218{
35ff7856 11219#ifdef DEBUGGING
97aff369 11220 dVAR;
c445ea15 11221 SV * const sv = sv_newmortal();
ab3bbdeb 11222 SV *dsv= sv_newmortal();
f8fc2ecf 11223 RXi_GET_DECL(r,ri);
f7819f85 11224 GET_RE_DEBUG_FLAGS_DECL;
a687059c 11225
7918f24d
NC
11226 PERL_ARGS_ASSERT_REGDUMP;
11227
f8fc2ecf 11228 (void)dumpuntil(r, ri->program, ri->program + 1, NULL, NULL, sv, 0, 0);
a0d0e21e
LW
11229
11230 /* Header fields of interest. */
ab3bbdeb
YO
11231 if (r->anchored_substr) {
11232 RE_PV_QUOTED_DECL(s, 0, dsv, SvPVX_const(r->anchored_substr),
11233 RE_SV_DUMPLEN(r->anchored_substr), 30);
7b0972df 11234 PerlIO_printf(Perl_debug_log,
ab3bbdeb
YO
11235 "anchored %s%s at %"IVdf" ",
11236 s, RE_SV_TAIL(r->anchored_substr),
7b0972df 11237 (IV)r->anchored_offset);
ab3bbdeb
YO
11238 } else if (r->anchored_utf8) {
11239 RE_PV_QUOTED_DECL(s, 1, dsv, SvPVX_const(r->anchored_utf8),
11240 RE_SV_DUMPLEN(r->anchored_utf8), 30);
33b8afdf 11241 PerlIO_printf(Perl_debug_log,
ab3bbdeb
YO
11242 "anchored utf8 %s%s at %"IVdf" ",
11243 s, RE_SV_TAIL(r->anchored_utf8),
33b8afdf 11244 (IV)r->anchored_offset);
ab3bbdeb
YO
11245 }
11246 if (r->float_substr) {
11247 RE_PV_QUOTED_DECL(s, 0, dsv, SvPVX_const(r->float_substr),
11248 RE_SV_DUMPLEN(r->float_substr), 30);
7b0972df 11249 PerlIO_printf(Perl_debug_log,
ab3bbdeb
YO
11250 "floating %s%s at %"IVdf"..%"UVuf" ",
11251 s, RE_SV_TAIL(r->float_substr),
7b0972df 11252 (IV)r->float_min_offset, (UV)r->float_max_offset);
ab3bbdeb
YO
11253 } else if (r->float_utf8) {
11254 RE_PV_QUOTED_DECL(s, 1, dsv, SvPVX_const(r->float_utf8),
11255 RE_SV_DUMPLEN(r->float_utf8), 30);
33b8afdf 11256 PerlIO_printf(Perl_debug_log,
ab3bbdeb
YO
11257 "floating utf8 %s%s at %"IVdf"..%"UVuf" ",
11258 s, RE_SV_TAIL(r->float_utf8),
33b8afdf 11259 (IV)r->float_min_offset, (UV)r->float_max_offset);
ab3bbdeb 11260 }
33b8afdf 11261 if (r->check_substr || r->check_utf8)
b81d288d 11262 PerlIO_printf(Perl_debug_log,
10edeb5d
JH
11263 (const char *)
11264 (r->check_substr == r->float_substr
11265 && r->check_utf8 == r->float_utf8
11266 ? "(checking floating" : "(checking anchored"));
bbe252da 11267 if (r->extflags & RXf_NOSCAN)
c277df42 11268 PerlIO_printf(Perl_debug_log, " noscan");
bbe252da 11269 if (r->extflags & RXf_CHECK_ALL)
c277df42 11270 PerlIO_printf(Perl_debug_log, " isall");
33b8afdf 11271 if (r->check_substr || r->check_utf8)
c277df42
IZ
11272 PerlIO_printf(Perl_debug_log, ") ");
11273
f8fc2ecf
YO
11274 if (ri->regstclass) {
11275 regprop(r, sv, ri->regstclass);
1de06328 11276 PerlIO_printf(Perl_debug_log, "stclass %s ", SvPVX_const(sv));
46fc3d4c 11277 }
bbe252da 11278 if (r->extflags & RXf_ANCH) {
774d564b 11279 PerlIO_printf(Perl_debug_log, "anchored");
bbe252da 11280 if (r->extflags & RXf_ANCH_BOL)
774d564b 11281 PerlIO_printf(Perl_debug_log, "(BOL)");
bbe252da 11282 if (r->extflags & RXf_ANCH_MBOL)
c277df42 11283 PerlIO_printf(Perl_debug_log, "(MBOL)");
bbe252da 11284 if (r->extflags & RXf_ANCH_SBOL)
cad2e5aa 11285 PerlIO_printf(Perl_debug_log, "(SBOL)");
bbe252da 11286 if (r->extflags & RXf_ANCH_GPOS)
774d564b 11287 PerlIO_printf(Perl_debug_log, "(GPOS)");
11288 PerlIO_putc(Perl_debug_log, ' ');
11289 }
bbe252da 11290 if (r->extflags & RXf_GPOS_SEEN)
70685ca0 11291 PerlIO_printf(Perl_debug_log, "GPOS:%"UVuf" ", (UV)r->gofs);
bbe252da 11292 if (r->intflags & PREGf_SKIP)
760ac839 11293 PerlIO_printf(Perl_debug_log, "plus ");
bbe252da 11294 if (r->intflags & PREGf_IMPLICIT)
760ac839 11295 PerlIO_printf(Perl_debug_log, "implicit ");
70685ca0 11296 PerlIO_printf(Perl_debug_log, "minlen %"IVdf" ", (IV)r->minlen);
bbe252da 11297 if (r->extflags & RXf_EVAL_SEEN)
ce862d02 11298 PerlIO_printf(Perl_debug_log, "with eval ");
760ac839 11299 PerlIO_printf(Perl_debug_log, "\n");
f7819f85 11300 DEBUG_FLAGS_r(regdump_extflags("r->extflags: ",r->extflags));
65e66c80 11301#else
7918f24d 11302 PERL_ARGS_ASSERT_REGDUMP;
96a5add6 11303 PERL_UNUSED_CONTEXT;
65e66c80 11304 PERL_UNUSED_ARG(r);
17c3b450 11305#endif /* DEBUGGING */
a687059c
LW
11306}
11307
11308/*
a0d0e21e
LW
11309- regprop - printable representation of opcode
11310*/
3339dfd8
YO
11311#define EMIT_ANYOF_TEST_SEPARATOR(do_sep,sv,flags) \
11312STMT_START { \
11313 if (do_sep) { \
11314 Perl_sv_catpvf(aTHX_ sv,"%s][%s",PL_colors[1],PL_colors[0]); \
11315 if (flags & ANYOF_INVERT) \
11316 /*make sure the invert info is in each */ \
11317 sv_catpvs(sv, "^"); \
11318 do_sep = 0; \
11319 } \
11320} STMT_END
11321
46fc3d4c 11322void
32fc9b6a 11323Perl_regprop(pTHX_ const regexp *prog, SV *sv, const regnode *o)
a687059c 11324{
35ff7856 11325#ifdef DEBUGGING
97aff369 11326 dVAR;
9b155405 11327 register int k;
f8fc2ecf 11328 RXi_GET_DECL(prog,progi);
1de06328 11329 GET_RE_DEBUG_FLAGS_DECL;
f8fc2ecf 11330
7918f24d 11331 PERL_ARGS_ASSERT_REGPROP;
a0d0e21e 11332
76f68e9b 11333 sv_setpvs(sv, "");
8aa23a47 11334
03363afd 11335 if (OP(o) > REGNODE_MAX) /* regnode.type is unsigned */
830247a4
IZ
11336 /* It would be nice to FAIL() here, but this may be called from
11337 regexec.c, and it would be hard to supply pRExC_state. */
a5ca303d 11338 Perl_croak(aTHX_ "Corrupted regexp opcode %d > %d", (int)OP(o), (int)REGNODE_MAX);
13d6edb4 11339 sv_catpv(sv, PL_reg_name[OP(o)]); /* Take off const! */
9b155405 11340
3dab1dad 11341 k = PL_regkind[OP(o)];
9b155405 11342
2a782b5b 11343 if (k == EXACT) {
f92a2122 11344 sv_catpvs(sv, " ");
ab3bbdeb
YO
11345 /* Using is_utf8_string() (via PERL_PV_UNI_DETECT)
11346 * is a crude hack but it may be the best for now since
11347 * we have no flag "this EXACTish node was UTF-8"
11348 * --jhi */
f92a2122
NC
11349 pv_pretty(sv, STRING(o), STR_LEN(o), 60, PL_colors[0], PL_colors[1],
11350 PERL_PV_ESCAPE_UNI_DETECT |
c89df6cf 11351 PERL_PV_ESCAPE_NONASCII |
f92a2122
NC
11352 PERL_PV_PRETTY_ELLIPSES |
11353 PERL_PV_PRETTY_LTGT |
11354 PERL_PV_PRETTY_NOCLEAR
11355 );
bb263b4e 11356 } else if (k == TRIE) {
3dab1dad 11357 /* print the details of the trie in dumpuntil instead, as
f8fc2ecf 11358 * progi->data isn't available here */
1de06328 11359 const char op = OP(o);
647f639f 11360 const U32 n = ARG(o);
1de06328 11361 const reg_ac_data * const ac = IS_TRIE_AC(op) ?
f8fc2ecf 11362 (reg_ac_data *)progi->data->data[n] :
1de06328 11363 NULL;
3251b653
NC
11364 const reg_trie_data * const trie
11365 = (reg_trie_data*)progi->data->data[!IS_TRIE_AC(op) ? n : ac->trie];
1de06328 11366
13d6edb4 11367 Perl_sv_catpvf(aTHX_ sv, "-%s",PL_reg_name[o->flags]);
1de06328
YO
11368 DEBUG_TRIE_COMPILE_r(
11369 Perl_sv_catpvf(aTHX_ sv,
11370 "<S:%"UVuf"/%"IVdf" W:%"UVuf" L:%"UVuf"/%"UVuf" C:%"UVuf"/%"UVuf">",
11371 (UV)trie->startstate,
1e2e3d02 11372 (IV)trie->statecount-1, /* -1 because of the unused 0 element */
1de06328
YO
11373 (UV)trie->wordcount,
11374 (UV)trie->minlen,
11375 (UV)trie->maxlen,
11376 (UV)TRIE_CHARCOUNT(trie),
11377 (UV)trie->uniquecharcount
11378 )
11379 );
11380 if ( IS_ANYOF_TRIE(op) || trie->bitmap ) {
11381 int i;
11382 int rangestart = -1;
f46cb337 11383 U8* bitmap = IS_ANYOF_TRIE(op) ? (U8*)ANYOF_BITMAP(o) : (U8*)TRIE_BITMAP(trie);
f3a2811a 11384 sv_catpvs(sv, "[");
1de06328
YO
11385 for (i = 0; i <= 256; i++) {
11386 if (i < 256 && BITMAP_TEST(bitmap,i)) {
11387 if (rangestart == -1)
11388 rangestart = i;
11389 } else if (rangestart != -1) {
11390 if (i <= rangestart + 3)
11391 for (; rangestart < i; rangestart++)
11392 put_byte(sv, rangestart);
11393 else {
11394 put_byte(sv, rangestart);
11395 sv_catpvs(sv, "-");
11396 put_byte(sv, i - 1);
11397 }
11398 rangestart = -1;
11399 }
11400 }
f3a2811a 11401 sv_catpvs(sv, "]");
1de06328
YO
11402 }
11403
a3621e74 11404 } else if (k == CURLY) {
cb434fcc 11405 if (OP(o) == CURLYM || OP(o) == CURLYN || OP(o) == CURLYX)
cea2e8a9
GS
11406 Perl_sv_catpvf(aTHX_ sv, "[%d]", o->flags); /* Parenth number */
11407 Perl_sv_catpvf(aTHX_ sv, " {%d,%d}", ARG1(o), ARG2(o));
a0d0e21e 11408 }
2c2d71f5
JH
11409 else if (k == WHILEM && o->flags) /* Ordinal/of */
11410 Perl_sv_catpvf(aTHX_ sv, "[%d/%d]", o->flags & 0xf, o->flags>>4);
1f1031fe 11411 else if (k == REF || k == OPEN || k == CLOSE || k == GROUPP || OP(o)==ACCEPT) {
894356b3 11412 Perl_sv_catpvf(aTHX_ sv, "%d", (int)ARG(o)); /* Parenth number */
5daac39c 11413 if ( RXp_PAREN_NAMES(prog) ) {
9d6ecd7a 11414 if ( k != REF || (OP(o) < NREF)) {
502c6561 11415 AV *list= MUTABLE_AV(progi->data->data[progi->name_list_idx]);
ee9b8eae
YO
11416 SV **name= av_fetch(list, ARG(o), 0 );
11417 if (name)
11418 Perl_sv_catpvf(aTHX_ sv, " '%"SVf"'", SVfARG(*name));
11419 }
11420 else {
502c6561 11421 AV *list= MUTABLE_AV(progi->data->data[ progi->name_list_idx ]);
ad64d0ec 11422 SV *sv_dat= MUTABLE_SV(progi->data->data[ ARG( o ) ]);
ee9b8eae
YO
11423 I32 *nums=(I32*)SvPVX(sv_dat);
11424 SV **name= av_fetch(list, nums[0], 0 );
11425 I32 n;
11426 if (name) {
11427 for ( n=0; n<SvIVX(sv_dat); n++ ) {
11428 Perl_sv_catpvf(aTHX_ sv, "%s%"IVdf,
11429 (n ? "," : ""), (IV)nums[n]);
11430 }
11431 Perl_sv_catpvf(aTHX_ sv, " '%"SVf"'", SVfARG(*name));
1f1031fe 11432 }
1f1031fe 11433 }
ee9b8eae 11434 }
1f1031fe 11435 } else if (k == GOSUB)
6bda09f9 11436 Perl_sv_catpvf(aTHX_ sv, "%d[%+d]", (int)ARG(o),(int)ARG2L(o)); /* Paren and offset */
e2e6a0f1
YO
11437 else if (k == VERB) {
11438 if (!o->flags)
11439 Perl_sv_catpvf(aTHX_ sv, ":%"SVf,
ad64d0ec 11440 SVfARG((MUTABLE_SV(progi->data->data[ ARG( o ) ]))));
e2e6a0f1 11441 } else if (k == LOGICAL)
04ebc1ab 11442 Perl_sv_catpvf(aTHX_ sv, "[%d]", o->flags); /* 2: embedded, otherwise 1 */
f9a79580 11443 else if (k == FOLDCHAR)
df44d732 11444 Perl_sv_catpvf(aTHX_ sv, "[0x%"UVXf"]", PTR2UV(ARG(o)) );
653099ff
GS
11445 else if (k == ANYOF) {
11446 int i, rangestart = -1;
2d03de9c 11447 const U8 flags = ANYOF_FLAGS(o);
24d786f4 11448 int do_sep = 0;
0bd48802
AL
11449
11450 /* Should be synchronized with * ANYOF_ #xdefines in regcomp.h */
11451 static const char * const anyofs[] = {
653099ff
GS
11452 "\\w",
11453 "\\W",
11454 "\\s",
11455 "\\S",
11456 "\\d",
11457 "\\D",
11458 "[:alnum:]",
11459 "[:^alnum:]",
11460 "[:alpha:]",
11461 "[:^alpha:]",
11462 "[:ascii:]",
11463 "[:^ascii:]",
24d786f4
YO
11464 "[:cntrl:]",
11465 "[:^cntrl:]",
653099ff
GS
11466 "[:graph:]",
11467 "[:^graph:]",
11468 "[:lower:]",
11469 "[:^lower:]",
11470 "[:print:]",
11471 "[:^print:]",
11472 "[:punct:]",
11473 "[:^punct:]",
11474 "[:upper:]",
aaa51d5e 11475 "[:^upper:]",
653099ff 11476 "[:xdigit:]",
aaa51d5e
JF
11477 "[:^xdigit:]",
11478 "[:space:]",
11479 "[:^space:]",
11480 "[:blank:]",
11481 "[:^blank:]"
653099ff
GS
11482 };
11483
19860706 11484 if (flags & ANYOF_LOCALE)
396482e1 11485 sv_catpvs(sv, "{loc}");
39065660 11486 if (flags & ANYOF_LOC_NONBITMAP_FOLD)
396482e1 11487 sv_catpvs(sv, "{i}");
653099ff 11488 Perl_sv_catpvf(aTHX_ sv, "[%s", PL_colors[0]);
19860706 11489 if (flags & ANYOF_INVERT)
396482e1 11490 sv_catpvs(sv, "^");
3339dfd8
YO
11491
11492 /* output what the standard cp 0-255 bitmap matches */
ffc61ed2
JH
11493 for (i = 0; i <= 256; i++) {
11494 if (i < 256 && ANYOF_BITMAP_TEST(o,i)) {
11495 if (rangestart == -1)
11496 rangestart = i;
11497 } else if (rangestart != -1) {
11498 if (i <= rangestart + 3)
11499 for (; rangestart < i; rangestart++)
653099ff 11500 put_byte(sv, rangestart);
ffc61ed2
JH
11501 else {
11502 put_byte(sv, rangestart);
396482e1 11503 sv_catpvs(sv, "-");
ffc61ed2 11504 put_byte(sv, i - 1);
653099ff 11505 }
24d786f4 11506 do_sep = 1;
ffc61ed2 11507 rangestart = -1;
653099ff 11508 }
847a199f 11509 }
3339dfd8
YO
11510
11511 EMIT_ANYOF_TEST_SEPARATOR(do_sep,sv,flags);
3a15e693
KW
11512 /* output any special charclass tests (used entirely under use locale) */
11513 if (ANYOF_CLASS_TEST_ANY_SET(o))
bb7a0f54 11514 for (i = 0; i < (int)(sizeof(anyofs)/sizeof(char*)); i++)
24d786f4 11515 if (ANYOF_CLASS_TEST(o,i)) {
ffc61ed2 11516 sv_catpv(sv, anyofs[i]);
24d786f4
YO
11517 do_sep = 1;
11518 }
11519
3339dfd8
YO
11520 EMIT_ANYOF_TEST_SEPARATOR(do_sep,sv,flags);
11521
11454c59
KW
11522 if (flags & ANYOF_NON_UTF8_LATIN1_ALL) {
11523 sv_catpvs(sv, "{non-utf8-latin1-all}");
11524 }
11525
3339dfd8 11526 /* output information about the unicode matching */
ef87b810 11527 if (flags & ANYOF_UNICODE_ALL)
396482e1 11528 sv_catpvs(sv, "{unicode_all}");
137165a6 11529 else if (ANYOF_NONBITMAP(o))
ef87b810 11530 sv_catpvs(sv, "{unicode}");
f5ecd18d 11531 if (flags & ANYOF_NONBITMAP_NON_UTF8)
ef87b810 11532 sv_catpvs(sv, "{outside bitmap}");
ffc61ed2 11533
1aa9930e 11534 if (ANYOF_NONBITMAP(o)) {
ffc61ed2 11535 SV *lv;
32fc9b6a 11536 SV * const sw = regclass_swash(prog, o, FALSE, &lv, 0);
b81d288d 11537
ffc61ed2
JH
11538 if (lv) {
11539 if (sw) {
89ebb4a3 11540 U8 s[UTF8_MAXBYTES_CASE+1];
24d786f4 11541
ffc61ed2 11542 for (i = 0; i <= 256; i++) { /* just the first 256 */
1df70142 11543 uvchr_to_utf8(s, i);
ffc61ed2 11544
3568d838 11545 if (i < 256 && swash_fetch(sw, s, TRUE)) {
ffc61ed2
JH
11546 if (rangestart == -1)
11547 rangestart = i;
11548 } else if (rangestart != -1) {
ffc61ed2
JH
11549 if (i <= rangestart + 3)
11550 for (; rangestart < i; rangestart++) {
2d03de9c
AL
11551 const U8 * const e = uvchr_to_utf8(s,rangestart);
11552 U8 *p;
11553 for(p = s; p < e; p++)
ffc61ed2
JH
11554 put_byte(sv, *p);
11555 }
11556 else {
2d03de9c
AL
11557 const U8 *e = uvchr_to_utf8(s,rangestart);
11558 U8 *p;
11559 for (p = s; p < e; p++)
ffc61ed2 11560 put_byte(sv, *p);
396482e1 11561 sv_catpvs(sv, "-");
2d03de9c
AL
11562 e = uvchr_to_utf8(s, i-1);
11563 for (p = s; p < e; p++)
1df70142 11564 put_byte(sv, *p);
ffc61ed2
JH
11565 }
11566 rangestart = -1;
11567 }
19860706 11568 }
ffc61ed2 11569
396482e1 11570 sv_catpvs(sv, "..."); /* et cetera */
19860706 11571 }
fde631ed 11572
ffc61ed2 11573 {
2e0de35c 11574 char *s = savesvpv(lv);
c445ea15 11575 char * const origs = s;
b81d288d 11576
3dab1dad
YO
11577 while (*s && *s != '\n')
11578 s++;
b81d288d 11579
ffc61ed2 11580 if (*s == '\n') {
2d03de9c 11581 const char * const t = ++s;
ffc61ed2
JH
11582
11583 while (*s) {
11584 if (*s == '\n')
11585 *s = ' ';
11586 s++;
11587 }
11588 if (s[-1] == ' ')
11589 s[-1] = 0;
11590
11591 sv_catpv(sv, t);
fde631ed 11592 }
b81d288d 11593
ffc61ed2 11594 Safefree(origs);
fde631ed
JH
11595 }
11596 }
653099ff 11597 }
ffc61ed2 11598
653099ff
GS
11599 Perl_sv_catpvf(aTHX_ sv, "%s]", PL_colors[1]);
11600 }
9b155405 11601 else if (k == BRANCHJ && (OP(o) == UNLESSM || OP(o) == IFMATCH))
07be1b83 11602 Perl_sv_catpvf(aTHX_ sv, "[%d]", -(o->flags));
65e66c80 11603#else
96a5add6 11604 PERL_UNUSED_CONTEXT;
65e66c80
SP
11605 PERL_UNUSED_ARG(sv);
11606 PERL_UNUSED_ARG(o);
f9049ba1 11607 PERL_UNUSED_ARG(prog);
17c3b450 11608#endif /* DEBUGGING */
35ff7856 11609}
a687059c 11610
cad2e5aa 11611SV *
288b8c02 11612Perl_re_intuit_string(pTHX_ REGEXP * const r)
cad2e5aa 11613{ /* Assume that RE_INTUIT is set */
97aff369 11614 dVAR;
288b8c02 11615 struct regexp *const prog = (struct regexp *)SvANY(r);
a3621e74 11616 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
11617
11618 PERL_ARGS_ASSERT_RE_INTUIT_STRING;
96a5add6
AL
11619 PERL_UNUSED_CONTEXT;
11620
a3621e74 11621 DEBUG_COMPILE_r(
cfd0369c 11622 {
2d03de9c 11623 const char * const s = SvPV_nolen_const(prog->check_substr
cfd0369c 11624 ? prog->check_substr : prog->check_utf8);
cad2e5aa
JH
11625
11626 if (!PL_colorset) reginitcolors();
11627 PerlIO_printf(Perl_debug_log,
a0288114 11628 "%sUsing REx %ssubstr:%s \"%s%.60s%s%s\"\n",
33b8afdf
JH
11629 PL_colors[4],
11630 prog->check_substr ? "" : "utf8 ",
11631 PL_colors[5],PL_colors[0],
cad2e5aa
JH
11632 s,
11633 PL_colors[1],
11634 (strlen(s) > 60 ? "..." : ""));
11635 } );
11636
33b8afdf 11637 return prog->check_substr ? prog->check_substr : prog->check_utf8;
cad2e5aa
JH
11638}
11639
84da74a7 11640/*
f8149455 11641 pregfree()
84da74a7 11642
f8149455
YO
11643 handles refcounting and freeing the perl core regexp structure. When
11644 it is necessary to actually free the structure the first thing it
3b753521 11645 does is call the 'free' method of the regexp_engine associated to
f8149455
YO
11646 the regexp, allowing the handling of the void *pprivate; member
11647 first. (This routine is not overridable by extensions, which is why
11648 the extensions free is called first.)
11649
11650 See regdupe and regdupe_internal if you change anything here.
84da74a7 11651*/
f8149455 11652#ifndef PERL_IN_XSUB_RE
2b69d0c2 11653void
84679df5 11654Perl_pregfree(pTHX_ REGEXP *r)
a687059c 11655{
288b8c02
NC
11656 SvREFCNT_dec(r);
11657}
11658
11659void
11660Perl_pregfree2(pTHX_ REGEXP *rx)
11661{
27da23d5 11662 dVAR;
288b8c02 11663 struct regexp *const r = (struct regexp *)SvANY(rx);
fc32ee4a 11664 GET_RE_DEBUG_FLAGS_DECL;
a3621e74 11665
7918f24d
NC
11666 PERL_ARGS_ASSERT_PREGFREE2;
11667
28d8d7f4
YO
11668 if (r->mother_re) {
11669 ReREFCNT_dec(r->mother_re);
11670 } else {
288b8c02 11671 CALLREGFREE_PVT(rx); /* free the private data */
ef8d46e8 11672 SvREFCNT_dec(RXp_PAREN_NAMES(r));
28d8d7f4
YO
11673 }
11674 if (r->substrs) {
ef8d46e8
VP
11675 SvREFCNT_dec(r->anchored_substr);
11676 SvREFCNT_dec(r->anchored_utf8);
11677 SvREFCNT_dec(r->float_substr);
11678 SvREFCNT_dec(r->float_utf8);
28d8d7f4
YO
11679 Safefree(r->substrs);
11680 }
288b8c02 11681 RX_MATCH_COPY_FREE(rx);
f8c7b90f 11682#ifdef PERL_OLD_COPY_ON_WRITE
ef8d46e8 11683 SvREFCNT_dec(r->saved_copy);
ed252734 11684#endif
f0ab9afb 11685 Safefree(r->offs);
f8149455 11686}
28d8d7f4
YO
11687
11688/* reg_temp_copy()
11689
11690 This is a hacky workaround to the structural issue of match results
11691 being stored in the regexp structure which is in turn stored in
11692 PL_curpm/PL_reg_curpm. The problem is that due to qr// the pattern
11693 could be PL_curpm in multiple contexts, and could require multiple
11694 result sets being associated with the pattern simultaneously, such
11695 as when doing a recursive match with (??{$qr})
11696
11697 The solution is to make a lightweight copy of the regexp structure
11698 when a qr// is returned from the code executed by (??{$qr}) this
486ec47a 11699 lightweight copy doesn't actually own any of its data except for
28d8d7f4
YO
11700 the starp/end and the actual regexp structure itself.
11701
11702*/
11703
11704
84679df5 11705REGEXP *
f0826785 11706Perl_reg_temp_copy (pTHX_ REGEXP *ret_x, REGEXP *rx)
7918f24d 11707{
f0826785 11708 struct regexp *ret;
288b8c02 11709 struct regexp *const r = (struct regexp *)SvANY(rx);
28d8d7f4 11710 register const I32 npar = r->nparens+1;
7918f24d
NC
11711
11712 PERL_ARGS_ASSERT_REG_TEMP_COPY;
11713
f0826785
BM
11714 if (!ret_x)
11715 ret_x = (REGEXP*) newSV_type(SVt_REGEXP);
11716 ret = (struct regexp *)SvANY(ret_x);
11717
288b8c02 11718 (void)ReREFCNT_inc(rx);
f7c278bf
NC
11719 /* We can take advantage of the existing "copied buffer" mechanism in SVs
11720 by pointing directly at the buffer, but flagging that the allocated
11721 space in the copy is zero. As we've just done a struct copy, it's now
11722 a case of zero-ing that, rather than copying the current length. */
11723 SvPV_set(ret_x, RX_WRAPPED(rx));
8f6ae13c 11724 SvFLAGS(ret_x) |= SvFLAGS(rx) & (SVf_POK|SVp_POK|SVf_UTF8);
b6f60916
NC
11725 memcpy(&(ret->xpv_cur), &(r->xpv_cur),
11726 sizeof(regexp) - STRUCT_OFFSET(regexp, xpv_cur));
f7c278bf 11727 SvLEN_set(ret_x, 0);
b9ad13ac 11728 SvSTASH_set(ret_x, NULL);
703c388d 11729 SvMAGIC_set(ret_x, NULL);
f0ab9afb
NC
11730 Newx(ret->offs, npar, regexp_paren_pair);
11731 Copy(r->offs, ret->offs, npar, regexp_paren_pair);
28d8d7f4 11732 if (r->substrs) {
28d8d7f4 11733 Newx(ret->substrs, 1, struct reg_substr_data);
6ab65676
NC
11734 StructCopy(r->substrs, ret->substrs, struct reg_substr_data);
11735
11736 SvREFCNT_inc_void(ret->anchored_substr);
11737 SvREFCNT_inc_void(ret->anchored_utf8);
11738 SvREFCNT_inc_void(ret->float_substr);
11739 SvREFCNT_inc_void(ret->float_utf8);
11740
11741 /* check_substr and check_utf8, if non-NULL, point to either their
11742 anchored or float namesakes, and don't hold a second reference. */
486913e4 11743 }
288b8c02 11744 RX_MATCH_COPIED_off(ret_x);
28d8d7f4 11745#ifdef PERL_OLD_COPY_ON_WRITE
b89b0c6f 11746 ret->saved_copy = NULL;
28d8d7f4 11747#endif
288b8c02 11748 ret->mother_re = rx;
28d8d7f4 11749
288b8c02 11750 return ret_x;
28d8d7f4 11751}
f8149455
YO
11752#endif
11753
11754/* regfree_internal()
11755
11756 Free the private data in a regexp. This is overloadable by
11757 extensions. Perl takes care of the regexp structure in pregfree(),
3b753521 11758 this covers the *pprivate pointer which technically perl doesn't
f8149455
YO
11759 know about, however of course we have to handle the
11760 regexp_internal structure when no extension is in use.
11761
11762 Note this is called before freeing anything in the regexp
11763 structure.
11764 */
11765
11766void
288b8c02 11767Perl_regfree_internal(pTHX_ REGEXP * const rx)
f8149455
YO
11768{
11769 dVAR;
288b8c02 11770 struct regexp *const r = (struct regexp *)SvANY(rx);
f8149455
YO
11771 RXi_GET_DECL(r,ri);
11772 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
11773
11774 PERL_ARGS_ASSERT_REGFREE_INTERNAL;
11775
f8149455
YO
11776 DEBUG_COMPILE_r({
11777 if (!PL_colorset)
11778 reginitcolors();
11779 {
11780 SV *dsv= sv_newmortal();
3c8556c3 11781 RE_PV_QUOTED_DECL(s, RX_UTF8(rx),
5509d87a 11782 dsv, RX_PRECOMP(rx), RX_PRELEN(rx), 60);
f8149455
YO
11783 PerlIO_printf(Perl_debug_log,"%sFreeing REx:%s %s\n",
11784 PL_colors[4],PL_colors[5],s);
11785 }
11786 });
7122b237
YO
11787#ifdef RE_TRACK_PATTERN_OFFSETS
11788 if (ri->u.offsets)
11789 Safefree(ri->u.offsets); /* 20010421 MJD */
11790#endif
f8fc2ecf
YO
11791 if (ri->data) {
11792 int n = ri->data->count;
f3548bdc
DM
11793 PAD* new_comppad = NULL;
11794 PAD* old_comppad;
4026c95a 11795 PADOFFSET refcnt;
dfad63ad 11796
c277df42 11797 while (--n >= 0) {
261faec3 11798 /* If you add a ->what type here, update the comment in regcomp.h */
f8fc2ecf 11799 switch (ri->data->what[n]) {
af534a04 11800 case 'a':
c277df42 11801 case 's':
81714fb9 11802 case 'S':
55eed653 11803 case 'u':
ad64d0ec 11804 SvREFCNT_dec(MUTABLE_SV(ri->data->data[n]));
c277df42 11805 break;
653099ff 11806 case 'f':
f8fc2ecf 11807 Safefree(ri->data->data[n]);
653099ff 11808 break;
dfad63ad 11809 case 'p':
502c6561 11810 new_comppad = MUTABLE_AV(ri->data->data[n]);
dfad63ad 11811 break;
c277df42 11812 case 'o':
dfad63ad 11813 if (new_comppad == NULL)
cea2e8a9 11814 Perl_croak(aTHX_ "panic: pregfree comppad");
f3548bdc
DM
11815 PAD_SAVE_LOCAL(old_comppad,
11816 /* Watch out for global destruction's random ordering. */
c445ea15 11817 (SvTYPE(new_comppad) == SVt_PVAV) ? new_comppad : NULL
f3548bdc 11818 );
b34c0dd4 11819 OP_REFCNT_LOCK;
f8fc2ecf 11820 refcnt = OpREFCNT_dec((OP_4tree*)ri->data->data[n]);
4026c95a
SH
11821 OP_REFCNT_UNLOCK;
11822 if (!refcnt)
f8fc2ecf 11823 op_free((OP_4tree*)ri->data->data[n]);
9b978d73 11824
f3548bdc 11825 PAD_RESTORE_LOCAL(old_comppad);
ad64d0ec 11826 SvREFCNT_dec(MUTABLE_SV(new_comppad));
dfad63ad 11827 new_comppad = NULL;
c277df42
IZ
11828 break;
11829 case 'n':
9e55ce06 11830 break;
07be1b83 11831 case 'T':
be8e71aa
YO
11832 { /* Aho Corasick add-on structure for a trie node.
11833 Used in stclass optimization only */
07be1b83 11834 U32 refcount;
f8fc2ecf 11835 reg_ac_data *aho=(reg_ac_data*)ri->data->data[n];
07be1b83
YO
11836 OP_REFCNT_LOCK;
11837 refcount = --aho->refcount;
11838 OP_REFCNT_UNLOCK;
11839 if ( !refcount ) {
446bd890
NC
11840 PerlMemShared_free(aho->states);
11841 PerlMemShared_free(aho->fail);
446bd890
NC
11842 /* do this last!!!! */
11843 PerlMemShared_free(ri->data->data[n]);
11844 PerlMemShared_free(ri->regstclass);
07be1b83
YO
11845 }
11846 }
11847 break;
a3621e74 11848 case 't':
07be1b83 11849 {
be8e71aa 11850 /* trie structure. */
07be1b83 11851 U32 refcount;
f8fc2ecf 11852 reg_trie_data *trie=(reg_trie_data*)ri->data->data[n];
07be1b83
YO
11853 OP_REFCNT_LOCK;
11854 refcount = --trie->refcount;
11855 OP_REFCNT_UNLOCK;
11856 if ( !refcount ) {
446bd890 11857 PerlMemShared_free(trie->charmap);
446bd890
NC
11858 PerlMemShared_free(trie->states);
11859 PerlMemShared_free(trie->trans);
07be1b83 11860 if (trie->bitmap)
446bd890 11861 PerlMemShared_free(trie->bitmap);
786e8c11 11862 if (trie->jump)
446bd890 11863 PerlMemShared_free(trie->jump);
2e64971a 11864 PerlMemShared_free(trie->wordinfo);
446bd890
NC
11865 /* do this last!!!! */
11866 PerlMemShared_free(ri->data->data[n]);
a3621e74 11867 }
07be1b83
YO
11868 }
11869 break;
c277df42 11870 default:
f8fc2ecf 11871 Perl_croak(aTHX_ "panic: regfree data code '%c'", ri->data->what[n]);
c277df42
IZ
11872 }
11873 }
f8fc2ecf
YO
11874 Safefree(ri->data->what);
11875 Safefree(ri->data);
a0d0e21e 11876 }
28d8d7f4 11877
f8fc2ecf 11878 Safefree(ri);
a687059c 11879}
c277df42 11880
a09252eb
NC
11881#define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
11882#define hv_dup_inc(s,t) MUTABLE_HV(sv_dup_inc((const SV *)s,t))
84da74a7
YO
11883#define SAVEPVN(p,n) ((p) ? savepvn(p,n) : NULL)
11884
11885/*
32cd70f6 11886 re_dup - duplicate a regexp.
84da74a7 11887
8233f606
DM
11888 This routine is expected to clone a given regexp structure. It is only
11889 compiled under USE_ITHREADS.
32cd70f6 11890
f8149455
YO
11891 After all of the core data stored in struct regexp is duplicated
11892 the regexp_engine.dupe method is used to copy any private data
11893 stored in the *pprivate pointer. This allows extensions to handle
11894 any duplication it needs to do.
11895
11896 See pregfree() and regfree_internal() if you change anything here.
84da74a7 11897*/
a3c0e9ca 11898#if defined(USE_ITHREADS)
f8149455 11899#ifndef PERL_IN_XSUB_RE
288b8c02
NC
11900void
11901Perl_re_dup_guts(pTHX_ const REGEXP *sstr, REGEXP *dstr, CLONE_PARAMS *param)
84da74a7 11902{
84da74a7 11903 dVAR;
a86a1ca7 11904 I32 npar;
288b8c02
NC
11905 const struct regexp *r = (const struct regexp *)SvANY(sstr);
11906 struct regexp *ret = (struct regexp *)SvANY(dstr);
f8149455 11907
7918f24d
NC
11908 PERL_ARGS_ASSERT_RE_DUP_GUTS;
11909
84da74a7 11910 npar = r->nparens+1;
f0ab9afb
NC
11911 Newx(ret->offs, npar, regexp_paren_pair);
11912 Copy(r->offs, ret->offs, npar, regexp_paren_pair);
6057429f 11913 if(ret->swap) {
28d8d7f4 11914 /* no need to copy these */
f0ab9afb 11915 Newx(ret->swap, npar, regexp_paren_pair);
28d8d7f4 11916 }
84da74a7 11917
6057429f 11918 if (ret->substrs) {
32cd70f6
NC
11919 /* Do it this way to avoid reading from *r after the StructCopy().
11920 That way, if any of the sv_dup_inc()s dislodge *r from the L1
11921 cache, it doesn't matter. */
66b1de87
NC
11922 const bool anchored = r->check_substr
11923 ? r->check_substr == r->anchored_substr
11924 : r->check_utf8 == r->anchored_utf8;
785a26d5 11925 Newx(ret->substrs, 1, struct reg_substr_data);
a86a1ca7
NC
11926 StructCopy(r->substrs, ret->substrs, struct reg_substr_data);
11927
32cd70f6
NC
11928 ret->anchored_substr = sv_dup_inc(ret->anchored_substr, param);
11929 ret->anchored_utf8 = sv_dup_inc(ret->anchored_utf8, param);
11930 ret->float_substr = sv_dup_inc(ret->float_substr, param);
11931 ret->float_utf8 = sv_dup_inc(ret->float_utf8, param);
a86a1ca7 11932
32cd70f6
NC
11933 /* check_substr and check_utf8, if non-NULL, point to either their
11934 anchored or float namesakes, and don't hold a second reference. */
11935
11936 if (ret->check_substr) {
11937 if (anchored) {
11938 assert(r->check_utf8 == r->anchored_utf8);
11939 ret->check_substr = ret->anchored_substr;
11940 ret->check_utf8 = ret->anchored_utf8;
11941 } else {
11942 assert(r->check_substr == r->float_substr);
11943 assert(r->check_utf8 == r->float_utf8);
11944 ret->check_substr = ret->float_substr;
11945 ret->check_utf8 = ret->float_utf8;
11946 }
66b1de87
NC
11947 } else if (ret->check_utf8) {
11948 if (anchored) {
11949 ret->check_utf8 = ret->anchored_utf8;
11950 } else {
11951 ret->check_utf8 = ret->float_utf8;
11952 }
32cd70f6 11953 }
6057429f 11954 }
f8149455 11955
5daac39c 11956 RXp_PAREN_NAMES(ret) = hv_dup_inc(RXp_PAREN_NAMES(ret), param);
bcdf7404 11957
6057429f 11958 if (ret->pprivate)
288b8c02 11959 RXi_SET(ret,CALLREGDUPE_PVT(dstr,param));
f8149455 11960
288b8c02 11961 if (RX_MATCH_COPIED(dstr))
6057429f 11962 ret->subbeg = SAVEPVN(ret->subbeg, ret->sublen);
f8149455
YO
11963 else
11964 ret->subbeg = NULL;
11965#ifdef PERL_OLD_COPY_ON_WRITE
11966 ret->saved_copy = NULL;
11967#endif
6057429f 11968
c2123ae3
NC
11969 if (ret->mother_re) {
11970 if (SvPVX_const(dstr) == SvPVX_const(ret->mother_re)) {
11971 /* Our storage points directly to our mother regexp, but that's
11972 1: a buffer in a different thread
11973 2: something we no longer hold a reference on
11974 so we need to copy it locally. */
11975 /* Note we need to sue SvCUR() on our mother_re, because it, in
11976 turn, may well be pointing to its own mother_re. */
11977 SvPV_set(dstr, SAVEPVN(SvPVX_const(ret->mother_re),
11978 SvCUR(ret->mother_re)+1));
11979 SvLEN_set(dstr, SvCUR(ret->mother_re)+1);
11980 }
11981 ret->mother_re = NULL;
11982 }
6057429f 11983 ret->gofs = 0;
f8149455
YO
11984}
11985#endif /* PERL_IN_XSUB_RE */
11986
11987/*
11988 regdupe_internal()
11989
11990 This is the internal complement to regdupe() which is used to copy
11991 the structure pointed to by the *pprivate pointer in the regexp.
11992 This is the core version of the extension overridable cloning hook.
11993 The regexp structure being duplicated will be copied by perl prior
11994 to this and will be provided as the regexp *r argument, however
11995 with the /old/ structures pprivate pointer value. Thus this routine
11996 may override any copying normally done by perl.
11997
11998 It returns a pointer to the new regexp_internal structure.
11999*/
12000
12001void *
288b8c02 12002Perl_regdupe_internal(pTHX_ REGEXP * const rx, CLONE_PARAMS *param)
f8149455
YO
12003{
12004 dVAR;
288b8c02 12005 struct regexp *const r = (struct regexp *)SvANY(rx);
f8149455 12006 regexp_internal *reti;
0780bc72 12007 int len;
f8149455 12008 RXi_GET_DECL(r,ri);
7918f24d
NC
12009
12010 PERL_ARGS_ASSERT_REGDUPE_INTERNAL;
f8149455 12011
7122b237 12012 len = ProgLen(ri);
f8149455 12013
45cf4570 12014 Newxc(reti, sizeof(regexp_internal) + len*sizeof(regnode), char, regexp_internal);
f8149455
YO
12015 Copy(ri->program, reti->program, len+1, regnode);
12016
f8149455 12017
f8fc2ecf 12018 reti->regstclass = NULL;
bcdf7404 12019
f8fc2ecf 12020 if (ri->data) {
84da74a7 12021 struct reg_data *d;
f8fc2ecf 12022 const int count = ri->data->count;
84da74a7
YO
12023 int i;
12024
12025 Newxc(d, sizeof(struct reg_data) + count*sizeof(void *),
12026 char, struct reg_data);
12027 Newx(d->what, count, U8);
12028
12029 d->count = count;
12030 for (i = 0; i < count; i++) {
f8fc2ecf 12031 d->what[i] = ri->data->what[i];
84da74a7 12032 switch (d->what[i]) {
af534a04 12033 /* legal options are one of: sSfpontTua
84da74a7 12034 see also regcomp.h and pregfree() */
af534a04 12035 case 'a': /* actually an AV, but the dup function is identical. */
84da74a7 12036 case 's':
81714fb9 12037 case 'S':
0536c0a7 12038 case 'p': /* actually an AV, but the dup function is identical. */
55eed653 12039 case 'u': /* actually an HV, but the dup function is identical. */
ad64d0ec 12040 d->data[i] = sv_dup_inc((const SV *)ri->data->data[i], param);
84da74a7 12041 break;
84da74a7
YO
12042 case 'f':
12043 /* This is cheating. */
12044 Newx(d->data[i], 1, struct regnode_charclass_class);
f8fc2ecf 12045 StructCopy(ri->data->data[i], d->data[i],
84da74a7 12046 struct regnode_charclass_class);
f8fc2ecf 12047 reti->regstclass = (regnode*)d->data[i];
84da74a7
YO
12048 break;
12049 case 'o':
bbe252da
YO
12050 /* Compiled op trees are readonly and in shared memory,
12051 and can thus be shared without duplication. */
84da74a7 12052 OP_REFCNT_LOCK;
f8fc2ecf 12053 d->data[i] = (void*)OpREFCNT_inc((OP*)ri->data->data[i]);
84da74a7
YO
12054 OP_REFCNT_UNLOCK;
12055 break;
23eab42c
NC
12056 case 'T':
12057 /* Trie stclasses are readonly and can thus be shared
12058 * without duplication. We free the stclass in pregfree
12059 * when the corresponding reg_ac_data struct is freed.
12060 */
12061 reti->regstclass= ri->regstclass;
12062 /* Fall through */
84da74a7 12063 case 't':
84da74a7 12064 OP_REFCNT_LOCK;
0536c0a7 12065 ((reg_trie_data*)ri->data->data[i])->refcount++;
84da74a7 12066 OP_REFCNT_UNLOCK;
0536c0a7
NC
12067 /* Fall through */
12068 case 'n':
12069 d->data[i] = ri->data->data[i];
84da74a7 12070 break;
84da74a7 12071 default:
f8fc2ecf 12072 Perl_croak(aTHX_ "panic: re_dup unknown data code '%c'", ri->data->what[i]);
84da74a7
YO
12073 }
12074 }
12075
f8fc2ecf 12076 reti->data = d;
84da74a7
YO
12077 }
12078 else
f8fc2ecf 12079 reti->data = NULL;
84da74a7 12080
cde0cee5
YO
12081 reti->name_list_idx = ri->name_list_idx;
12082
7122b237
YO
12083#ifdef RE_TRACK_PATTERN_OFFSETS
12084 if (ri->u.offsets) {
12085 Newx(reti->u.offsets, 2*len+1, U32);
12086 Copy(ri->u.offsets, reti->u.offsets, 2*len+1, U32);
12087 }
12088#else
12089 SetProgLen(reti,len);
12090#endif
12091
f8149455 12092 return (void*)reti;
84da74a7 12093}
f8149455
YO
12094
12095#endif /* USE_ITHREADS */
84da74a7 12096
f8149455 12097#ifndef PERL_IN_XSUB_RE
bcdf7404 12098
c277df42
IZ
12099/*
12100 - regnext - dig the "next" pointer out of a node
c277df42
IZ
12101 */
12102regnode *
864dbfa3 12103Perl_regnext(pTHX_ register regnode *p)
c277df42 12104{
97aff369 12105 dVAR;
c277df42
IZ
12106 register I32 offset;
12107
f8fc2ecf 12108 if (!p)
c277df42
IZ
12109 return(NULL);
12110
35db910f
KW
12111 if (OP(p) > REGNODE_MAX) { /* regnode.type is unsigned */
12112 Perl_croak(aTHX_ "Corrupted regexp opcode %d > %d", (int)OP(p), (int)REGNODE_MAX);
12113 }
12114
c277df42
IZ
12115 offset = (reg_off_by_arg[OP(p)] ? ARG(p) : NEXT_OFF(p));
12116 if (offset == 0)
12117 return(NULL);
12118
c277df42 12119 return(p+offset);
c277df42 12120}
76234dfb 12121#endif
c277df42 12122
01f988be 12123STATIC void
cea2e8a9 12124S_re_croak2(pTHX_ const char* pat1,const char* pat2,...)
c277df42
IZ
12125{
12126 va_list args;
12127 STRLEN l1 = strlen(pat1);
12128 STRLEN l2 = strlen(pat2);
12129 char buf[512];
06bf62c7 12130 SV *msv;
73d840c0 12131 const char *message;
c277df42 12132
7918f24d
NC
12133 PERL_ARGS_ASSERT_RE_CROAK2;
12134
c277df42
IZ
12135 if (l1 > 510)
12136 l1 = 510;
12137 if (l1 + l2 > 510)
12138 l2 = 510 - l1;
12139 Copy(pat1, buf, l1 , char);
12140 Copy(pat2, buf + l1, l2 , char);
3b818b81
GS
12141 buf[l1 + l2] = '\n';
12142 buf[l1 + l2 + 1] = '\0';
8736538c
AS
12143#ifdef I_STDARG
12144 /* ANSI variant takes additional second argument */
c277df42 12145 va_start(args, pat2);
8736538c
AS
12146#else
12147 va_start(args);
12148#endif
5a844595 12149 msv = vmess(buf, &args);
c277df42 12150 va_end(args);
cfd0369c 12151 message = SvPV_const(msv,l1);
c277df42
IZ
12152 if (l1 > 512)
12153 l1 = 512;
12154 Copy(message, buf, l1 , char);
197cf9b9 12155 buf[l1-1] = '\0'; /* Overwrite \n */
cea2e8a9 12156 Perl_croak(aTHX_ "%s", buf);
c277df42 12157}
a0ed51b3
LW
12158
12159/* XXX Here's a total kludge. But we need to re-enter for swash routines. */
12160
76234dfb 12161#ifndef PERL_IN_XSUB_RE
a0ed51b3 12162void
864dbfa3 12163Perl_save_re_context(pTHX)
b81d288d 12164{
97aff369 12165 dVAR;
1ade1aa1
NC
12166
12167 struct re_save_state *state;
12168
12169 SAVEVPTR(PL_curcop);
12170 SSGROW(SAVESTACK_ALLOC_FOR_RE_SAVE_STATE + 1);
12171
12172 state = (struct re_save_state *)(PL_savestack + PL_savestack_ix);
12173 PL_savestack_ix += SAVESTACK_ALLOC_FOR_RE_SAVE_STATE;
c6bf6a65 12174 SSPUSHUV(SAVEt_RE_STATE);
1ade1aa1 12175
46ab3289 12176 Copy(&PL_reg_state, state, 1, struct re_save_state);
1ade1aa1 12177
a0ed51b3 12178 PL_reg_start_tmp = 0;
a0ed51b3 12179 PL_reg_start_tmpl = 0;
c445ea15 12180 PL_reg_oldsaved = NULL;
a5db57d6 12181 PL_reg_oldsavedlen = 0;
a5db57d6 12182 PL_reg_maxiter = 0;
a5db57d6 12183 PL_reg_leftiter = 0;
c445ea15 12184 PL_reg_poscache = NULL;
a5db57d6 12185 PL_reg_poscache_size = 0;
1ade1aa1
NC
12186#ifdef PERL_OLD_COPY_ON_WRITE
12187 PL_nrs = NULL;
12188#endif
ada6e8a9 12189
c445ea15
AL
12190 /* Save $1..$n (#18107: UTF-8 s/(\w+)/uc($1)/e); AMS 20021106. */
12191 if (PL_curpm) {
12192 const REGEXP * const rx = PM_GETRE(PL_curpm);
12193 if (rx) {
1df70142 12194 U32 i;
07bc277f 12195 for (i = 1; i <= RX_NPARENS(rx); i++) {
1df70142 12196 char digits[TYPE_CHARS(long)];
d9fad198 12197 const STRLEN len = my_snprintf(digits, sizeof(digits), "%lu", (long)i);
49f27e4b
NC
12198 GV *const *const gvp
12199 = (GV**)hv_fetch(PL_defstash, digits, len, 0);
12200
b37c2d43
AL
12201 if (gvp) {
12202 GV * const gv = *gvp;
12203 if (SvTYPE(gv) == SVt_PVGV && GvSV(gv))
12204 save_scalar(gv);
49f27e4b 12205 }
ada6e8a9
AMS
12206 }
12207 }
12208 }
a0ed51b3 12209}
76234dfb 12210#endif
51371543 12211
51371543 12212static void
acfe0abc 12213clear_re(pTHX_ void *r)
51371543 12214{
97aff369 12215 dVAR;
84679df5 12216 ReREFCNT_dec((REGEXP *)r);
51371543 12217}
ffbc6a93 12218
a28509cc
AL
12219#ifdef DEBUGGING
12220
12221STATIC void
12222S_put_byte(pTHX_ SV *sv, int c)
12223{
7918f24d
NC
12224 PERL_ARGS_ASSERT_PUT_BYTE;
12225
7fddd944
NC
12226 /* Our definition of isPRINT() ignores locales, so only bytes that are
12227 not part of UTF-8 are considered printable. I assume that the same
12228 holds for UTF-EBCDIC.
12229 Also, code point 255 is not printable in either (it's E0 in EBCDIC,
12230 which Wikipedia says:
12231
12232 EO, or Eight Ones, is an 8-bit EBCDIC character code represented as all
12233 ones (binary 1111 1111, hexadecimal FF). It is similar, but not
12234 identical, to the ASCII delete (DEL) or rubout control character.
12235 ) So the old condition can be simplified to !isPRINT(c) */
9ce2357e
KW
12236 if (!isPRINT(c)) {
12237 if (c < 256) {
12238 Perl_sv_catpvf(aTHX_ sv, "\\x%02x", c);
12239 }
12240 else {
12241 Perl_sv_catpvf(aTHX_ sv, "\\x{%x}", c);
12242 }
12243 }
5e7aa789 12244 else {
88c9ea1e 12245 const char string = c;
5e7aa789
NC
12246 if (c == '-' || c == ']' || c == '\\' || c == '^')
12247 sv_catpvs(sv, "\\");
12248 sv_catpvn(sv, &string, 1);
12249 }
a28509cc
AL
12250}
12251
786e8c11 12252
3dab1dad
YO
12253#define CLEAR_OPTSTART \
12254 if (optstart) STMT_START { \
70685ca0 12255 DEBUG_OPTIMISE_r(PerlIO_printf(Perl_debug_log, " (%"IVdf" nodes)\n", (IV)(node - optstart))); \
3dab1dad
YO
12256 optstart=NULL; \
12257 } STMT_END
12258
786e8c11 12259#define DUMPUNTIL(b,e) CLEAR_OPTSTART; node=dumpuntil(r,start,(b),(e),last,sv,indent+1,depth+1);
3dab1dad 12260
b5a2f8d8
NC
12261STATIC const regnode *
12262S_dumpuntil(pTHX_ const regexp *r, const regnode *start, const regnode *node,
786e8c11
YO
12263 const regnode *last, const regnode *plast,
12264 SV* sv, I32 indent, U32 depth)
a28509cc 12265{
97aff369 12266 dVAR;
786e8c11 12267 register U8 op = PSEUDO; /* Arbitrary non-END op. */
b5a2f8d8 12268 register const regnode *next;
3dab1dad 12269 const regnode *optstart= NULL;
1f1031fe 12270
f8fc2ecf 12271 RXi_GET_DECL(r,ri);
3dab1dad 12272 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
12273
12274 PERL_ARGS_ASSERT_DUMPUNTIL;
12275
786e8c11
YO
12276#ifdef DEBUG_DUMPUNTIL
12277 PerlIO_printf(Perl_debug_log, "--- %d : %d - %d - %d\n",indent,node-start,
12278 last ? last-start : 0,plast ? plast-start : 0);
12279#endif
12280
12281 if (plast && plast < last)
12282 last= plast;
12283
12284 while (PL_regkind[op] != END && (!last || node < last)) {
a28509cc 12285 /* While that wasn't END last time... */
a28509cc
AL
12286 NODE_ALIGN(node);
12287 op = OP(node);
de734bd5 12288 if (op == CLOSE || op == WHILEM)
786e8c11 12289 indent--;
b5a2f8d8 12290 next = regnext((regnode *)node);
1f1031fe 12291
a28509cc 12292 /* Where, what. */
8e11feef 12293 if (OP(node) == OPTIMIZED) {
e68ec53f 12294 if (!optstart && RE_DEBUG_FLAG(RE_DEBUG_COMPILE_OPTIMISE))
8e11feef 12295 optstart = node;
3dab1dad 12296 else
8e11feef 12297 goto after_print;
3dab1dad
YO
12298 } else
12299 CLEAR_OPTSTART;
1f1031fe 12300
32fc9b6a 12301 regprop(r, sv, node);
a28509cc 12302 PerlIO_printf(Perl_debug_log, "%4"IVdf":%*s%s", (IV)(node - start),
786e8c11 12303 (int)(2*indent + 1), "", SvPVX_const(sv));
1f1031fe
YO
12304
12305 if (OP(node) != OPTIMIZED) {
12306 if (next == NULL) /* Next ptr. */
12307 PerlIO_printf(Perl_debug_log, " (0)");
12308 else if (PL_regkind[(U8)op] == BRANCH && PL_regkind[OP(next)] != BRANCH )
12309 PerlIO_printf(Perl_debug_log, " (FAIL)");
12310 else
12311 PerlIO_printf(Perl_debug_log, " (%"IVdf")", (IV)(next - start));
12312 (void)PerlIO_putc(Perl_debug_log, '\n');
12313 }
12314
a28509cc
AL
12315 after_print:
12316 if (PL_regkind[(U8)op] == BRANCHJ) {
be8e71aa
YO
12317 assert(next);
12318 {
12319 register const regnode *nnode = (OP(next) == LONGJMP
b5a2f8d8
NC
12320 ? regnext((regnode *)next)
12321 : next);
be8e71aa
YO
12322 if (last && nnode > last)
12323 nnode = last;
786e8c11 12324 DUMPUNTIL(NEXTOPER(NEXTOPER(node)), nnode);
be8e71aa 12325 }
a28509cc
AL
12326 }
12327 else if (PL_regkind[(U8)op] == BRANCH) {
be8e71aa 12328 assert(next);
786e8c11 12329 DUMPUNTIL(NEXTOPER(node), next);
a28509cc
AL
12330 }
12331 else if ( PL_regkind[(U8)op] == TRIE ) {
7f69552c 12332 const regnode *this_trie = node;
1de06328 12333 const char op = OP(node);
647f639f 12334 const U32 n = ARG(node);
1de06328 12335 const reg_ac_data * const ac = op>=AHOCORASICK ?
f8fc2ecf 12336 (reg_ac_data *)ri->data->data[n] :
1de06328 12337 NULL;
3251b653
NC
12338 const reg_trie_data * const trie =
12339 (reg_trie_data*)ri->data->data[op<AHOCORASICK ? n : ac->trie];
2b8b4781 12340#ifdef DEBUGGING
502c6561 12341 AV *const trie_words = MUTABLE_AV(ri->data->data[n + TRIE_WORDS_OFFSET]);
2b8b4781 12342#endif
786e8c11 12343 const regnode *nextbranch= NULL;
a28509cc 12344 I32 word_idx;
76f68e9b 12345 sv_setpvs(sv, "");
786e8c11 12346 for (word_idx= 0; word_idx < (I32)trie->wordcount; word_idx++) {
2b8b4781 12347 SV ** const elem_ptr = av_fetch(trie_words,word_idx,0);
786e8c11
YO
12348
12349 PerlIO_printf(Perl_debug_log, "%*s%s ",
12350 (int)(2*(indent+3)), "",
12351 elem_ptr ? pv_pretty(sv, SvPV_nolen_const(*elem_ptr), SvCUR(*elem_ptr), 60,
ab3bbdeb
YO
12352 PL_colors[0], PL_colors[1],
12353 (SvUTF8(*elem_ptr) ? PERL_PV_ESCAPE_UNI : 0) |
95b611b0 12354 PERL_PV_PRETTY_ELLIPSES |
7f69552c 12355 PERL_PV_PRETTY_LTGT
786e8c11
YO
12356 )
12357 : "???"
12358 );
12359 if (trie->jump) {
40d049e4 12360 U16 dist= trie->jump[word_idx+1];
70685ca0
JH
12361 PerlIO_printf(Perl_debug_log, "(%"UVuf")\n",
12362 (UV)((dist ? this_trie + dist : next) - start));
786e8c11
YO
12363 if (dist) {
12364 if (!nextbranch)
24b23f37 12365 nextbranch= this_trie + trie->jump[0];
7f69552c
YO
12366 DUMPUNTIL(this_trie + dist, nextbranch);
12367 }
786e8c11
YO
12368 if (nextbranch && PL_regkind[OP(nextbranch)]==BRANCH)
12369 nextbranch= regnext((regnode *)nextbranch);
12370 } else {
12371 PerlIO_printf(Perl_debug_log, "\n");
a28509cc 12372 }
786e8c11
YO
12373 }
12374 if (last && next > last)
12375 node= last;
12376 else
12377 node= next;
a28509cc 12378 }
786e8c11
YO
12379 else if ( op == CURLY ) { /* "next" might be very big: optimizer */
12380 DUMPUNTIL(NEXTOPER(node) + EXTRA_STEP_2ARGS,
12381 NEXTOPER(node) + EXTRA_STEP_2ARGS + 1);
a28509cc
AL
12382 }
12383 else if (PL_regkind[(U8)op] == CURLY && op != CURLYX) {
be8e71aa 12384 assert(next);
786e8c11 12385 DUMPUNTIL(NEXTOPER(node) + EXTRA_STEP_2ARGS, next);
a28509cc
AL
12386 }
12387 else if ( op == PLUS || op == STAR) {
786e8c11 12388 DUMPUNTIL(NEXTOPER(node), NEXTOPER(node) + 1);
a28509cc 12389 }
f56b6394 12390 else if (PL_regkind[(U8)op] == ANYOF) {
a28509cc 12391 /* arglen 1 + class block */
4a3ee7a8 12392 node += 1 + ((ANYOF_FLAGS(node) & ANYOF_CLASS)
a28509cc
AL
12393 ? ANYOF_CLASS_SKIP : ANYOF_SKIP);
12394 node = NEXTOPER(node);
12395 }
12396 else if (PL_regkind[(U8)op] == EXACT) {
12397 /* Literal string, where present. */
12398 node += NODE_SZ_STR(node) - 1;
12399 node = NEXTOPER(node);
12400 }
12401 else {
12402 node = NEXTOPER(node);
12403 node += regarglen[(U8)op];
12404 }
12405 if (op == CURLYX || op == OPEN)
786e8c11 12406 indent++;
a28509cc 12407 }
3dab1dad 12408 CLEAR_OPTSTART;
786e8c11 12409#ifdef DEBUG_DUMPUNTIL
70685ca0 12410 PerlIO_printf(Perl_debug_log, "--- %d\n", (int)indent);
786e8c11 12411#endif
1de06328 12412 return node;
a28509cc
AL
12413}
12414
12415#endif /* DEBUGGING */
12416
241d1a3b
NC
12417/*
12418 * Local variables:
12419 * c-indentation-style: bsd
12420 * c-basic-offset: 4
12421 * indent-tabs-mode: t
12422 * End:
12423 *
37442d52
RGS
12424 * ex: set ts=8 sts=4 sw=4 noet:
12425 */