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