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