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