This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
handy.h: New defn of isOCTAL_A() to free up bit
[perl5.git] / regcomp.c
CommitLineData
a0d0e21e
LW
1/* regcomp.c
2 */
3
4/*
4ac71550
TC
5 * 'A fair jaw-cracker dwarf-language must be.' --Samwise Gamgee
6 *
7 * [p.285 of _The Lord of the Rings_, II/iii: "The Ring Goes South"]
a0d0e21e
LW
8 */
9
61296642
DM
10/* This file contains functions for compiling a regular expression. See
11 * also regexec.c which funnily enough, contains functions for executing
166f8a29 12 * a regular expression.
e4a054ea
DM
13 *
14 * This file is also copied at build time to ext/re/re_comp.c, where
15 * it's built with -DPERL_EXT_RE_BUILD -DPERL_EXT_RE_DEBUG -DPERL_EXT.
16 * This causes the main functions to be compiled under new names and with
17 * debugging support added, which makes "use re 'debug'" work.
166f8a29
DM
18 */
19
a687059c
LW
20/* NOTE: this is derived from Henry Spencer's regexp code, and should not
21 * confused with the original package (see point 3 below). Thanks, Henry!
22 */
23
24/* Additional note: this code is very heavily munged from Henry's version
25 * in places. In some spots I've traded clarity for efficiency, so don't
26 * blame Henry for some of the lack of readability.
27 */
28
e50aee73 29/* The names of the functions have been changed from regcomp and
3b753521 30 * regexec to pregcomp and pregexec in order to avoid conflicts
e50aee73
AD
31 * with the POSIX routines of the same names.
32*/
33
b9d5759e 34#ifdef PERL_EXT_RE_BUILD
54df2634 35#include "re_top.h"
b81d288d 36#endif
56953603 37
a687059c 38/*
e50aee73 39 * pregcomp and pregexec -- regsub and regerror are not used in perl
a687059c
LW
40 *
41 * Copyright (c) 1986 by University of Toronto.
42 * Written by Henry Spencer. Not derived from licensed software.
43 *
44 * Permission is granted to anyone to use this software for any
45 * purpose on any computer system, and to redistribute it freely,
46 * subject to the following restrictions:
47 *
48 * 1. The author is not responsible for the consequences of use of
49 * this software, no matter how awful, even if they arise
50 * from defects in it.
51 *
52 * 2. The origin of this software must not be misrepresented, either
53 * by explicit claim or by omission.
54 *
55 * 3. Altered versions must be plainly marked as such, and must not
56 * be misrepresented as being the original software.
57 *
58 *
59 **** Alterations to Henry's code are...
60 ****
4bb101f2 61 **** Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
1129b882
NC
62 **** 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
63 **** by Larry Wall and others
a687059c 64 ****
9ef589d8
LW
65 **** You may distribute under the terms of either the GNU General Public
66 **** License or the Artistic License, as specified in the README file.
67
a687059c
LW
68 *
69 * Beware that some of this code is subtly aware of the way operator
70 * precedence is structured in regular expressions. Serious changes in
71 * regular-expression syntax might require a total rethink.
72 */
73#include "EXTERN.h"
864dbfa3 74#define PERL_IN_REGCOMP_C
a687059c 75#include "perl.h"
d06ea78c 76
acfe0abc 77#ifndef PERL_IN_XSUB_RE
d06ea78c
GS
78# include "INTERN.h"
79#endif
c277df42
IZ
80
81#define REG_COMP_C
54df2634
NC
82#ifdef PERL_IN_XSUB_RE
83# include "re_comp.h"
84#else
85# include "regcomp.h"
86#endif
a687059c 87
04e98a4d 88#include "dquote_static.c"
370b8f2f
TC
89#ifndef PERL_IN_XSUB_RE
90# include "charclass_invlists.h"
91#endif
04e98a4d 92
d4cce5f1 93#ifdef op
11343788 94#undef op
d4cce5f1 95#endif /* op */
11343788 96
fe14fcc3 97#ifdef MSDOS
7e4e8c89 98# if defined(BUGGY_MSC6)
fe14fcc3 99 /* MSC 6.00A breaks on op/regexp.t test 85 unless we turn this off */
7e4e8c89 100# pragma optimize("a",off)
fe14fcc3 101 /* But MSC 6.00A is happy with 'w', for aliases only across function calls*/
7e4e8c89
NC
102# pragma optimize("w",on )
103# endif /* BUGGY_MSC6 */
fe14fcc3
LW
104#endif /* MSDOS */
105
a687059c
LW
106#ifndef STATIC
107#define STATIC static
108#endif
109
830247a4 110typedef struct RExC_state_t {
e2509266 111 U32 flags; /* are we folding, multilining? */
830247a4 112 char *precomp; /* uncompiled string. */
288b8c02 113 REGEXP *rx_sv; /* The SV that is the regexp. */
f8fc2ecf
YO
114 regexp *rx; /* perl core regexp structure */
115 regexp_internal *rxi; /* internal data for regexp object pprivate field */
fac92740 116 char *start; /* Start of input for compile */
830247a4
IZ
117 char *end; /* End of input for compile */
118 char *parse; /* Input-scan pointer. */
119 I32 whilem_seen; /* number of WHILEM in this expr */
fac92740 120 regnode *emit_start; /* Start of emitted-code area */
3b57cd43 121 regnode *emit_bound; /* First regnode outside of the allocated space */
ffc61ed2 122 regnode *emit; /* Code-emit pointer; &regdummy = don't = compiling */
830247a4
IZ
123 I32 naughty; /* How bad is this pattern? */
124 I32 sawback; /* Did we see \1, ...? */
125 U32 seen;
126 I32 size; /* Code size. */
c74340f9
YO
127 I32 npar; /* Capture buffer count, (OPEN). */
128 I32 cpar; /* Capture buffer count, (CLOSE). */
e2e6a0f1 129 I32 nestroot; /* root parens we are in - used by accept */
830247a4
IZ
130 I32 extralen;
131 I32 seen_zerolen;
132 I32 seen_evals;
40d049e4
YO
133 regnode **open_parens; /* pointers to open parens */
134 regnode **close_parens; /* pointers to close parens */
135 regnode *opend; /* END node in program */
02daf0ab
YO
136 I32 utf8; /* whether the pattern is utf8 or not */
137 I32 orig_utf8; /* whether the pattern was originally in utf8 */
138 /* XXX use this for future optimisation of case
139 * where pattern must be upgraded to utf8. */
e40e74fe
KW
140 I32 uni_semantics; /* If a d charset modifier should use unicode
141 rules, even if the pattern is not in
142 utf8 */
81714fb9 143 HV *paren_names; /* Paren names */
1f1031fe 144
40d049e4
YO
145 regnode **recurse; /* Recurse regops */
146 I32 recurse_count; /* Number of recurse regops */
b57e4118 147 I32 in_lookbehind;
4624b182 148 I32 contains_locale;
bb3f3ed2 149 I32 override_recoding;
830247a4
IZ
150#if ADD_TO_REGEXEC
151 char *starttry; /* -Dr: where regtry was called. */
152#define RExC_starttry (pRExC_state->starttry)
153#endif
3dab1dad 154#ifdef DEBUGGING
be8e71aa 155 const char *lastparse;
3dab1dad 156 I32 lastnum;
1f1031fe 157 AV *paren_name_list; /* idx -> name */
3dab1dad
YO
158#define RExC_lastparse (pRExC_state->lastparse)
159#define RExC_lastnum (pRExC_state->lastnum)
1f1031fe 160#define RExC_paren_name_list (pRExC_state->paren_name_list)
3dab1dad 161#endif
830247a4
IZ
162} RExC_state_t;
163
e2509266 164#define RExC_flags (pRExC_state->flags)
830247a4 165#define RExC_precomp (pRExC_state->precomp)
288b8c02 166#define RExC_rx_sv (pRExC_state->rx_sv)
830247a4 167#define RExC_rx (pRExC_state->rx)
f8fc2ecf 168#define RExC_rxi (pRExC_state->rxi)
fac92740 169#define RExC_start (pRExC_state->start)
830247a4
IZ
170#define RExC_end (pRExC_state->end)
171#define RExC_parse (pRExC_state->parse)
172#define RExC_whilem_seen (pRExC_state->whilem_seen)
7122b237
YO
173#ifdef RE_TRACK_PATTERN_OFFSETS
174#define RExC_offsets (pRExC_state->rxi->u.offsets) /* I am not like the others */
175#endif
830247a4 176#define RExC_emit (pRExC_state->emit)
fac92740 177#define RExC_emit_start (pRExC_state->emit_start)
3b57cd43 178#define RExC_emit_bound (pRExC_state->emit_bound)
830247a4
IZ
179#define RExC_naughty (pRExC_state->naughty)
180#define RExC_sawback (pRExC_state->sawback)
181#define RExC_seen (pRExC_state->seen)
182#define RExC_size (pRExC_state->size)
183#define RExC_npar (pRExC_state->npar)
e2e6a0f1 184#define RExC_nestroot (pRExC_state->nestroot)
830247a4
IZ
185#define RExC_extralen (pRExC_state->extralen)
186#define RExC_seen_zerolen (pRExC_state->seen_zerolen)
187#define RExC_seen_evals (pRExC_state->seen_evals)
1aa99e6b 188#define RExC_utf8 (pRExC_state->utf8)
e40e74fe 189#define RExC_uni_semantics (pRExC_state->uni_semantics)
02daf0ab 190#define RExC_orig_utf8 (pRExC_state->orig_utf8)
40d049e4
YO
191#define RExC_open_parens (pRExC_state->open_parens)
192#define RExC_close_parens (pRExC_state->close_parens)
193#define RExC_opend (pRExC_state->opend)
81714fb9 194#define RExC_paren_names (pRExC_state->paren_names)
40d049e4
YO
195#define RExC_recurse (pRExC_state->recurse)
196#define RExC_recurse_count (pRExC_state->recurse_count)
b57e4118 197#define RExC_in_lookbehind (pRExC_state->in_lookbehind)
4624b182 198#define RExC_contains_locale (pRExC_state->contains_locale)
bb3f3ed2 199#define RExC_override_recoding (pRExC_state->override_recoding)
830247a4 200
cde0cee5 201
a687059c
LW
202#define ISMULT1(c) ((c) == '*' || (c) == '+' || (c) == '?')
203#define ISMULT2(s) ((*s) == '*' || (*s) == '+' || (*s) == '?' || \
204 ((*s) == '{' && regcurly(s)))
a687059c 205
35c8bce7
LW
206#ifdef SPSTART
207#undef SPSTART /* dratted cpp namespace... */
208#endif
a687059c
LW
209/*
210 * Flags to be passed up and down.
211 */
a687059c 212#define WORST 0 /* Worst case. */
a3b492c3 213#define HASWIDTH 0x01 /* Known to match non-null strings. */
fda99bee
KW
214
215/* Simple enough to be STAR/PLUS operand, in an EXACT node must be a single
cf8c372d
KW
216 * character, and if utf8, must be invariant. Note that this is not the same
217 * thing as REGNODE_SIMPLE */
fda99bee 218#define SIMPLE 0x02
a3b492c3
YO
219#define SPSTART 0x04 /* Starts with * or +. */
220#define TRYAGAIN 0x08 /* Weeded out a declaration. */
221#define POSTPONED 0x10 /* (?1),(?&name), (??{...}) or similar */
a687059c 222
3dab1dad
YO
223#define REG_NODE_NUM(x) ((x) ? (int)((x)-RExC_emit_start) : -1)
224
07be1b83
YO
225/* whether trie related optimizations are enabled */
226#if PERL_ENABLE_EXTENDED_TRIE_OPTIMISATION
227#define TRIE_STUDY_OPT
786e8c11 228#define FULL_TRIE_STUDY
07be1b83
YO
229#define TRIE_STCLASS
230#endif
1de06328
YO
231
232
40d049e4
YO
233
234#define PBYTE(u8str,paren) ((U8*)(u8str))[(paren) >> 3]
235#define PBITVAL(paren) (1 << ((paren) & 7))
236#define PAREN_TEST(u8str,paren) ( PBYTE(u8str,paren) & PBITVAL(paren))
237#define PAREN_SET(u8str,paren) PBYTE(u8str,paren) |= PBITVAL(paren)
238#define PAREN_UNSET(u8str,paren) PBYTE(u8str,paren) &= (~PBITVAL(paren))
239
bbd61b5f
KW
240/* If not already in utf8, do a longjmp back to the beginning */
241#define UTF8_LONGJMP 42 /* Choose a value not likely to ever conflict */
242#define REQUIRE_UTF8 STMT_START { \
243 if (! UTF) JMPENV_JUMP(UTF8_LONGJMP); \
244 } STMT_END
40d049e4 245
1de06328
YO
246/* About scan_data_t.
247
248 During optimisation we recurse through the regexp program performing
249 various inplace (keyhole style) optimisations. In addition study_chunk
250 and scan_commit populate this data structure with information about
251 what strings MUST appear in the pattern. We look for the longest
3b753521 252 string that must appear at a fixed location, and we look for the
1de06328
YO
253 longest string that may appear at a floating location. So for instance
254 in the pattern:
255
256 /FOO[xX]A.*B[xX]BAR/
257
258 Both 'FOO' and 'A' are fixed strings. Both 'B' and 'BAR' are floating
259 strings (because they follow a .* construct). study_chunk will identify
260 both FOO and BAR as being the longest fixed and floating strings respectively.
261
262 The strings can be composites, for instance
263
264 /(f)(o)(o)/
265
266 will result in a composite fixed substring 'foo'.
267
268 For each string some basic information is maintained:
269
270 - offset or min_offset
271 This is the position the string must appear at, or not before.
272 It also implicitly (when combined with minlenp) tells us how many
3b753521
FN
273 characters must match before the string we are searching for.
274 Likewise when combined with minlenp and the length of the string it
1de06328
YO
275 tells us how many characters must appear after the string we have
276 found.
277
278 - max_offset
279 Only used for floating strings. This is the rightmost point that
3b753521 280 the string can appear at. If set to I32 max it indicates that the
1de06328
YO
281 string can occur infinitely far to the right.
282
283 - minlenp
284 A pointer to the minimum length of the pattern that the string
285 was found inside. This is important as in the case of positive
286 lookahead or positive lookbehind we can have multiple patterns
287 involved. Consider
288
289 /(?=FOO).*F/
290
291 The minimum length of the pattern overall is 3, the minimum length
292 of the lookahead part is 3, but the minimum length of the part that
293 will actually match is 1. So 'FOO's minimum length is 3, but the
294 minimum length for the F is 1. This is important as the minimum length
295 is used to determine offsets in front of and behind the string being
296 looked for. Since strings can be composites this is the length of the
486ec47a 297 pattern at the time it was committed with a scan_commit. Note that
1de06328
YO
298 the length is calculated by study_chunk, so that the minimum lengths
299 are not known until the full pattern has been compiled, thus the
300 pointer to the value.
301
302 - lookbehind
303
304 In the case of lookbehind the string being searched for can be
305 offset past the start point of the final matching string.
306 If this value was just blithely removed from the min_offset it would
307 invalidate some of the calculations for how many chars must match
308 before or after (as they are derived from min_offset and minlen and
309 the length of the string being searched for).
310 When the final pattern is compiled and the data is moved from the
311 scan_data_t structure into the regexp structure the information
312 about lookbehind is factored in, with the information that would
313 have been lost precalculated in the end_shift field for the
314 associated string.
315
316 The fields pos_min and pos_delta are used to store the minimum offset
317 and the delta to the maximum offset at the current point in the pattern.
318
319*/
2c2d71f5
JH
320
321typedef struct scan_data_t {
1de06328
YO
322 /*I32 len_min; unused */
323 /*I32 len_delta; unused */
2c2d71f5
JH
324 I32 pos_min;
325 I32 pos_delta;
326 SV *last_found;
1de06328 327 I32 last_end; /* min value, <0 unless valid. */
2c2d71f5
JH
328 I32 last_start_min;
329 I32 last_start_max;
1de06328
YO
330 SV **longest; /* Either &l_fixed, or &l_float. */
331 SV *longest_fixed; /* longest fixed string found in pattern */
332 I32 offset_fixed; /* offset where it starts */
486ec47a 333 I32 *minlen_fixed; /* pointer to the minlen relevant to the string */
1de06328
YO
334 I32 lookbehind_fixed; /* is the position of the string modfied by LB */
335 SV *longest_float; /* longest floating string found in pattern */
336 I32 offset_float_min; /* earliest point in string it can appear */
337 I32 offset_float_max; /* latest point in string it can appear */
486ec47a 338 I32 *minlen_float; /* pointer to the minlen relevant to the string */
1de06328 339 I32 lookbehind_float; /* is the position of the string modified by LB */
2c2d71f5
JH
340 I32 flags;
341 I32 whilem_c;
cb434fcc 342 I32 *last_closep;
653099ff 343 struct regnode_charclass_class *start_class;
2c2d71f5
JH
344} scan_data_t;
345
a687059c 346/*
e50aee73 347 * Forward declarations for pregcomp()'s friends.
a687059c 348 */
a0d0e21e 349
27da23d5 350static const scan_data_t zero_scan_data =
1de06328 351 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ,0};
c277df42
IZ
352
353#define SF_BEFORE_EOL (SF_BEFORE_SEOL|SF_BEFORE_MEOL)
07be1b83
YO
354#define SF_BEFORE_SEOL 0x0001
355#define SF_BEFORE_MEOL 0x0002
c277df42
IZ
356#define SF_FIX_BEFORE_EOL (SF_FIX_BEFORE_SEOL|SF_FIX_BEFORE_MEOL)
357#define SF_FL_BEFORE_EOL (SF_FL_BEFORE_SEOL|SF_FL_BEFORE_MEOL)
358
09b7f37c
CB
359#ifdef NO_UNARY_PLUS
360# define SF_FIX_SHIFT_EOL (0+2)
361# define SF_FL_SHIFT_EOL (0+4)
362#else
363# define SF_FIX_SHIFT_EOL (+2)
364# define SF_FL_SHIFT_EOL (+4)
365#endif
c277df42
IZ
366
367#define SF_FIX_BEFORE_SEOL (SF_BEFORE_SEOL << SF_FIX_SHIFT_EOL)
368#define SF_FIX_BEFORE_MEOL (SF_BEFORE_MEOL << SF_FIX_SHIFT_EOL)
369
370#define SF_FL_BEFORE_SEOL (SF_BEFORE_SEOL << SF_FL_SHIFT_EOL)
371#define SF_FL_BEFORE_MEOL (SF_BEFORE_MEOL << SF_FL_SHIFT_EOL) /* 0x20 */
07be1b83
YO
372#define SF_IS_INF 0x0040
373#define SF_HAS_PAR 0x0080
374#define SF_IN_PAR 0x0100
375#define SF_HAS_EVAL 0x0200
376#define SCF_DO_SUBSTR 0x0400
653099ff
GS
377#define SCF_DO_STCLASS_AND 0x0800
378#define SCF_DO_STCLASS_OR 0x1000
379#define SCF_DO_STCLASS (SCF_DO_STCLASS_AND|SCF_DO_STCLASS_OR)
e1901655 380#define SCF_WHILEM_VISITED_POS 0x2000
c277df42 381
786e8c11 382#define SCF_TRIE_RESTUDY 0x4000 /* Do restudy? */
e2e6a0f1 383#define SCF_SEEN_ACCEPT 0x8000
07be1b83 384
43fead97 385#define UTF cBOOL(RExC_utf8)
00b27cfc
KW
386
387/* The enums for all these are ordered so things work out correctly */
a62b1201 388#define LOC (get_regex_charset(RExC_flags) == REGEX_LOCALE_CHARSET)
cfaf538b 389#define DEPENDS_SEMANTICS (get_regex_charset(RExC_flags) == REGEX_DEPENDS_CHARSET)
00b27cfc 390#define UNI_SEMANTICS (get_regex_charset(RExC_flags) == REGEX_UNICODE_CHARSET)
cfaf538b
KW
391#define AT_LEAST_UNI_SEMANTICS (get_regex_charset(RExC_flags) >= REGEX_UNICODE_CHARSET)
392#define ASCII_RESTRICTED (get_regex_charset(RExC_flags) == REGEX_ASCII_RESTRICTED_CHARSET)
2f7f8cb1
KW
393#define MORE_ASCII_RESTRICTED (get_regex_charset(RExC_flags) == REGEX_ASCII_MORE_RESTRICTED_CHARSET)
394#define AT_LEAST_ASCII_RESTRICTED (get_regex_charset(RExC_flags) >= REGEX_ASCII_RESTRICTED_CHARSET)
a62b1201 395
43fead97 396#define FOLD cBOOL(RExC_flags & RXf_PMf_FOLD)
a0ed51b3 397
ffc61ed2 398#define OOB_UNICODE 12345678
93733859 399#define OOB_NAMEDCLASS -1
b8c5462f 400
a0ed51b3
LW
401#define CHR_SVLEN(sv) (UTF ? sv_len_utf8(sv) : SvCUR(sv))
402#define CHR_DIST(a,b) (UTF ? utf8_distance(a,b) : a - b)
403
8615cb43 404
b45f050a
JF
405/* length of regex to show in messages that don't mark a position within */
406#define RegexLengthToShowInErrorMessages 127
407
408/*
409 * If MARKER[12] are adjusted, be sure to adjust the constants at the top
410 * of t/op/regmesg.t, the tests in t/op/re_tests, and those in
411 * op/pragma/warn/regcomp.
412 */
7253e4e3
RK
413#define MARKER1 "<-- HERE" /* marker as it appears in the description */
414#define MARKER2 " <-- HERE " /* marker as it appears within the regex */
b81d288d 415
7253e4e3 416#define REPORT_LOCATION " in regex; marked by " MARKER1 " in m/%.*s" MARKER2 "%s/"
b45f050a
JF
417
418/*
419 * Calls SAVEDESTRUCTOR_X if needed, then calls Perl_croak with the given
420 * arg. Show regex, up to a maximum length. If it's too long, chop and add
421 * "...".
422 */
58e23c8d 423#define _FAIL(code) STMT_START { \
bfed75c6 424 const char *ellipses = ""; \
ccb2c380
MP
425 IV len = RExC_end - RExC_precomp; \
426 \
427 if (!SIZE_ONLY) \
288b8c02 428 SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx_sv); \
ccb2c380
MP
429 if (len > RegexLengthToShowInErrorMessages) { \
430 /* chop 10 shorter than the max, to ensure meaning of "..." */ \
431 len = RegexLengthToShowInErrorMessages - 10; \
432 ellipses = "..."; \
433 } \
58e23c8d 434 code; \
ccb2c380 435} STMT_END
8615cb43 436
58e23c8d
YO
437#define FAIL(msg) _FAIL( \
438 Perl_croak(aTHX_ "%s in regex m/%.*s%s/", \
439 msg, (int)len, RExC_precomp, ellipses))
440
441#define FAIL2(msg,arg) _FAIL( \
442 Perl_croak(aTHX_ msg " in regex m/%.*s%s/", \
443 arg, (int)len, RExC_precomp, ellipses))
444
b45f050a 445/*
b45f050a
JF
446 * Simple_vFAIL -- like FAIL, but marks the current location in the scan
447 */
ccb2c380 448#define Simple_vFAIL(m) STMT_START { \
a28509cc 449 const IV offset = RExC_parse - RExC_precomp; \
ccb2c380
MP
450 Perl_croak(aTHX_ "%s" REPORT_LOCATION, \
451 m, (int)offset, RExC_precomp, RExC_precomp + offset); \
452} STMT_END
b45f050a
JF
453
454/*
455 * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL()
456 */
ccb2c380
MP
457#define vFAIL(m) STMT_START { \
458 if (!SIZE_ONLY) \
288b8c02 459 SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx_sv); \
ccb2c380
MP
460 Simple_vFAIL(m); \
461} STMT_END
b45f050a
JF
462
463/*
464 * Like Simple_vFAIL(), but accepts two arguments.
465 */
ccb2c380 466#define Simple_vFAIL2(m,a1) STMT_START { \
a28509cc 467 const IV offset = RExC_parse - RExC_precomp; \
ccb2c380
MP
468 S_re_croak2(aTHX_ m, REPORT_LOCATION, a1, \
469 (int)offset, RExC_precomp, RExC_precomp + offset); \
470} STMT_END
b45f050a
JF
471
472/*
473 * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL2().
474 */
ccb2c380
MP
475#define vFAIL2(m,a1) STMT_START { \
476 if (!SIZE_ONLY) \
288b8c02 477 SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx_sv); \
ccb2c380
MP
478 Simple_vFAIL2(m, a1); \
479} STMT_END
b45f050a
JF
480
481
482/*
483 * Like Simple_vFAIL(), but accepts three arguments.
484 */
ccb2c380 485#define Simple_vFAIL3(m, a1, a2) STMT_START { \
a28509cc 486 const IV offset = RExC_parse - RExC_precomp; \
ccb2c380
MP
487 S_re_croak2(aTHX_ m, REPORT_LOCATION, a1, a2, \
488 (int)offset, RExC_precomp, RExC_precomp + offset); \
489} STMT_END
b45f050a
JF
490
491/*
492 * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL3().
493 */
ccb2c380
MP
494#define vFAIL3(m,a1,a2) STMT_START { \
495 if (!SIZE_ONLY) \
288b8c02 496 SAVEDESTRUCTOR_X(clear_re,(void*)RExC_rx_sv); \
ccb2c380
MP
497 Simple_vFAIL3(m, a1, a2); \
498} STMT_END
b45f050a
JF
499
500/*
501 * Like Simple_vFAIL(), but accepts four arguments.
502 */
ccb2c380 503#define Simple_vFAIL4(m, a1, a2, a3) STMT_START { \
a28509cc 504 const IV offset = RExC_parse - RExC_precomp; \
ccb2c380
MP
505 S_re_croak2(aTHX_ m, REPORT_LOCATION, a1, a2, a3, \
506 (int)offset, RExC_precomp, RExC_precomp + offset); \
507} STMT_END
b45f050a 508
668c081a 509#define ckWARNreg(loc,m) STMT_START { \
a28509cc 510 const IV offset = loc - RExC_precomp; \
f10f4c18
NC
511 Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \
512 (int)offset, RExC_precomp, RExC_precomp + offset); \
ccb2c380
MP
513} STMT_END
514
668c081a 515#define ckWARNregdep(loc,m) STMT_START { \
a28509cc 516 const IV offset = loc - RExC_precomp; \
d1d15184 517 Perl_ck_warner_d(aTHX_ packWARN2(WARN_DEPRECATED, WARN_REGEXP), \
f10f4c18
NC
518 m REPORT_LOCATION, \
519 (int)offset, RExC_precomp, RExC_precomp + offset); \
ccb2c380
MP
520} STMT_END
521
2335b3d3
KW
522#define ckWARN2regdep(loc,m, a1) STMT_START { \
523 const IV offset = loc - RExC_precomp; \
524 Perl_ck_warner_d(aTHX_ packWARN2(WARN_DEPRECATED, WARN_REGEXP), \
525 m REPORT_LOCATION, \
526 a1, (int)offset, RExC_precomp, RExC_precomp + offset); \
527} STMT_END
528
668c081a 529#define ckWARN2reg(loc, m, a1) STMT_START { \
a28509cc 530 const IV offset = loc - RExC_precomp; \
668c081a 531 Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \
ccb2c380
MP
532 a1, (int)offset, RExC_precomp, RExC_precomp + offset); \
533} STMT_END
534
535#define vWARN3(loc, m, a1, a2) STMT_START { \
a28509cc 536 const IV offset = loc - RExC_precomp; \
ccb2c380
MP
537 Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \
538 a1, a2, (int)offset, RExC_precomp, RExC_precomp + offset); \
539} STMT_END
540
668c081a
NC
541#define ckWARN3reg(loc, m, a1, a2) STMT_START { \
542 const IV offset = loc - RExC_precomp; \
543 Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \
544 a1, a2, (int)offset, RExC_precomp, RExC_precomp + offset); \
545} STMT_END
546
ccb2c380 547#define vWARN4(loc, m, a1, a2, a3) STMT_START { \
a28509cc 548 const IV offset = loc - RExC_precomp; \
ccb2c380
MP
549 Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \
550 a1, a2, a3, (int)offset, RExC_precomp, RExC_precomp + offset); \
551} STMT_END
552
668c081a
NC
553#define ckWARN4reg(loc, m, a1, a2, a3) STMT_START { \
554 const IV offset = loc - RExC_precomp; \
555 Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \
556 a1, a2, a3, (int)offset, RExC_precomp, RExC_precomp + offset); \
557} STMT_END
558
ccb2c380 559#define vWARN5(loc, m, a1, a2, a3, a4) STMT_START { \
a28509cc 560 const IV offset = loc - RExC_precomp; \
ccb2c380
MP
561 Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \
562 a1, a2, a3, a4, (int)offset, RExC_precomp, RExC_precomp + offset); \
563} STMT_END
9d1d55b5 564
8615cb43 565
cd439c50 566/* Allow for side effects in s */
ccb2c380
MP
567#define REGC(c,s) STMT_START { \
568 if (!SIZE_ONLY) *(s) = (c); else (void)(s); \
569} STMT_END
cd439c50 570
fac92740
MJD
571/* Macros for recording node offsets. 20001227 mjd@plover.com
572 * Nodes are numbered 1, 2, 3, 4. Node #n's position is recorded in
573 * element 2*n-1 of the array. Element #2n holds the byte length node #n.
574 * Element 0 holds the number n.
07be1b83 575 * Position is 1 indexed.
fac92740 576 */
7122b237
YO
577#ifndef RE_TRACK_PATTERN_OFFSETS
578#define Set_Node_Offset_To_R(node,byte)
579#define Set_Node_Offset(node,byte)
580#define Set_Cur_Node_Offset
581#define Set_Node_Length_To_R(node,len)
582#define Set_Node_Length(node,len)
583#define Set_Node_Cur_Length(node)
584#define Node_Offset(n)
585#define Node_Length(n)
586#define Set_Node_Offset_Length(node,offset,len)
587#define ProgLen(ri) ri->u.proglen
588#define SetProgLen(ri,x) ri->u.proglen = x
589#else
590#define ProgLen(ri) ri->u.offsets[0]
591#define SetProgLen(ri,x) ri->u.offsets[0] = x
ccb2c380
MP
592#define Set_Node_Offset_To_R(node,byte) STMT_START { \
593 if (! SIZE_ONLY) { \
594 MJD_OFFSET_DEBUG(("** (%d) offset of node %d is %d.\n", \
2a49f0f5 595 __LINE__, (int)(node), (int)(byte))); \
ccb2c380 596 if((node) < 0) { \
551405c4 597 Perl_croak(aTHX_ "value of node is %d in Offset macro", (int)(node)); \
ccb2c380
MP
598 } else { \
599 RExC_offsets[2*(node)-1] = (byte); \
600 } \
601 } \
602} STMT_END
603
604#define Set_Node_Offset(node,byte) \
605 Set_Node_Offset_To_R((node)-RExC_emit_start, (byte)-RExC_start)
606#define Set_Cur_Node_Offset Set_Node_Offset(RExC_emit, RExC_parse)
607
608#define Set_Node_Length_To_R(node,len) STMT_START { \
609 if (! SIZE_ONLY) { \
610 MJD_OFFSET_DEBUG(("** (%d) size of node %d is %d.\n", \
551405c4 611 __LINE__, (int)(node), (int)(len))); \
ccb2c380 612 if((node) < 0) { \
551405c4 613 Perl_croak(aTHX_ "value of node is %d in Length macro", (int)(node)); \
ccb2c380
MP
614 } else { \
615 RExC_offsets[2*(node)] = (len); \
616 } \
617 } \
618} STMT_END
619
620#define Set_Node_Length(node,len) \
621 Set_Node_Length_To_R((node)-RExC_emit_start, len)
622#define Set_Cur_Node_Length(len) Set_Node_Length(RExC_emit, len)
623#define Set_Node_Cur_Length(node) \
624 Set_Node_Length(node, RExC_parse - parse_start)
fac92740
MJD
625
626/* Get offsets and lengths */
627#define Node_Offset(n) (RExC_offsets[2*((n)-RExC_emit_start)-1])
628#define Node_Length(n) (RExC_offsets[2*((n)-RExC_emit_start)])
629
07be1b83
YO
630#define Set_Node_Offset_Length(node,offset,len) STMT_START { \
631 Set_Node_Offset_To_R((node)-RExC_emit_start, (offset)); \
632 Set_Node_Length_To_R((node)-RExC_emit_start, (len)); \
633} STMT_END
7122b237 634#endif
07be1b83
YO
635
636#if PERL_ENABLE_EXPERIMENTAL_REGEX_OPTIMISATIONS
637#define EXPERIMENTAL_INPLACESCAN
f427392e 638#endif /*PERL_ENABLE_EXPERIMENTAL_REGEX_OPTIMISATIONS*/
07be1b83 639
304ee84b
YO
640#define DEBUG_STUDYDATA(str,data,depth) \
641DEBUG_OPTIMISE_MORE_r(if(data){ \
1de06328 642 PerlIO_printf(Perl_debug_log, \
304ee84b
YO
643 "%*s" str "Pos:%"IVdf"/%"IVdf \
644 " Flags: 0x%"UVXf" Whilem_c: %"IVdf" Lcp: %"IVdf" %s", \
1de06328
YO
645 (int)(depth)*2, "", \
646 (IV)((data)->pos_min), \
647 (IV)((data)->pos_delta), \
304ee84b 648 (UV)((data)->flags), \
1de06328 649 (IV)((data)->whilem_c), \
304ee84b
YO
650 (IV)((data)->last_closep ? *((data)->last_closep) : -1), \
651 is_inf ? "INF " : "" \
1de06328
YO
652 ); \
653 if ((data)->last_found) \
654 PerlIO_printf(Perl_debug_log, \
655 "Last:'%s' %"IVdf":%"IVdf"/%"IVdf" %sFixed:'%s' @ %"IVdf \
656 " %sFloat: '%s' @ %"IVdf"/%"IVdf"", \
657 SvPVX_const((data)->last_found), \
658 (IV)((data)->last_end), \
659 (IV)((data)->last_start_min), \
660 (IV)((data)->last_start_max), \
661 ((data)->longest && \
662 (data)->longest==&((data)->longest_fixed)) ? "*" : "", \
663 SvPVX_const((data)->longest_fixed), \
664 (IV)((data)->offset_fixed), \
665 ((data)->longest && \
666 (data)->longest==&((data)->longest_float)) ? "*" : "", \
667 SvPVX_const((data)->longest_float), \
668 (IV)((data)->offset_float_min), \
669 (IV)((data)->offset_float_max) \
670 ); \
671 PerlIO_printf(Perl_debug_log,"\n"); \
672});
673
acfe0abc 674static void clear_re(pTHX_ void *r);
4327152a 675
653099ff 676/* Mark that we cannot extend a found fixed substring at this point.
786e8c11 677 Update the longest found anchored substring and the longest found
653099ff
GS
678 floating substrings if needed. */
679
4327152a 680STATIC void
304ee84b 681S_scan_commit(pTHX_ const RExC_state_t *pRExC_state, scan_data_t *data, I32 *minlenp, int is_inf)
c277df42 682{
e1ec3a88
AL
683 const STRLEN l = CHR_SVLEN(data->last_found);
684 const STRLEN old_l = CHR_SVLEN(*data->longest);
1de06328 685 GET_RE_DEBUG_FLAGS_DECL;
b81d288d 686
7918f24d
NC
687 PERL_ARGS_ASSERT_SCAN_COMMIT;
688
c277df42 689 if ((l >= old_l) && ((l > old_l) || (data->flags & SF_BEFORE_EOL))) {
6b43b216 690 SvSetMagicSV(*data->longest, data->last_found);
c277df42
IZ
691 if (*data->longest == data->longest_fixed) {
692 data->offset_fixed = l ? data->last_start_min : data->pos_min;
693 if (data->flags & SF_BEFORE_EOL)
b81d288d 694 data->flags
c277df42
IZ
695 |= ((data->flags & SF_BEFORE_EOL) << SF_FIX_SHIFT_EOL);
696 else
697 data->flags &= ~SF_FIX_BEFORE_EOL;
686b73d4 698 data->minlen_fixed=minlenp;
1de06328 699 data->lookbehind_fixed=0;
a0ed51b3 700 }
304ee84b 701 else { /* *data->longest == data->longest_float */
c277df42 702 data->offset_float_min = l ? data->last_start_min : data->pos_min;
b81d288d
AB
703 data->offset_float_max = (l
704 ? data->last_start_max
c277df42 705 : data->pos_min + data->pos_delta);
304ee84b 706 if (is_inf || (U32)data->offset_float_max > (U32)I32_MAX)
9051bda5 707 data->offset_float_max = I32_MAX;
c277df42 708 if (data->flags & SF_BEFORE_EOL)
b81d288d 709 data->flags
c277df42
IZ
710 |= ((data->flags & SF_BEFORE_EOL) << SF_FL_SHIFT_EOL);
711 else
712 data->flags &= ~SF_FL_BEFORE_EOL;
1de06328
YO
713 data->minlen_float=minlenp;
714 data->lookbehind_float=0;
c277df42
IZ
715 }
716 }
717 SvCUR_set(data->last_found, 0);
0eda9292 718 {
a28509cc 719 SV * const sv = data->last_found;
097eb12c
AL
720 if (SvUTF8(sv) && SvMAGICAL(sv)) {
721 MAGIC * const mg = mg_find(sv, PERL_MAGIC_utf8);
722 if (mg)
723 mg->mg_len = 0;
724 }
0eda9292 725 }
c277df42
IZ
726 data->last_end = -1;
727 data->flags &= ~SF_BEFORE_EOL;
bcdf7404 728 DEBUG_STUDYDATA("commit: ",data,0);
c277df42
IZ
729}
730
653099ff
GS
731/* Can match anything (initialization) */
732STATIC void
3fffb88a 733S_cl_anything(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl)
653099ff 734{
7918f24d
NC
735 PERL_ARGS_ASSERT_CL_ANYTHING;
736
f8bef550 737 ANYOF_BITMAP_SETALL(cl);
dd58aee1 738 cl->flags = ANYOF_CLASS|ANYOF_EOS|ANYOF_UNICODE_ALL
3ad98780 739 |ANYOF_LOC_NONBITMAP_FOLD|ANYOF_NON_UTF8_LATIN1_ALL;
3fffb88a
KW
740
741 /* If any portion of the regex is to operate under locale rules,
742 * initialization includes it. The reason this isn't done for all regexes
743 * is that the optimizer was written under the assumption that locale was
744 * all-or-nothing. Given the complexity and lack of documentation in the
745 * optimizer, and that there are inadequate test cases for locale, so many
746 * parts of it may not work properly, it is safest to avoid locale unless
747 * necessary. */
748 if (RExC_contains_locale) {
9d7a1e63 749 ANYOF_CLASS_SETALL(cl); /* /l uses class */
3fffb88a
KW
750 cl->flags |= ANYOF_LOCALE;
751 }
9d7a1e63
KW
752 else {
753 ANYOF_CLASS_ZERO(cl); /* Only /l uses class now */
754 }
653099ff
GS
755}
756
757/* Can match anything (initialization) */
758STATIC int
5f66b61c 759S_cl_is_anything(const struct regnode_charclass_class *cl)
653099ff
GS
760{
761 int value;
762
7918f24d
NC
763 PERL_ARGS_ASSERT_CL_IS_ANYTHING;
764
aaa51d5e 765 for (value = 0; value <= ANYOF_MAX; value += 2)
653099ff
GS
766 if (ANYOF_CLASS_TEST(cl, value) && ANYOF_CLASS_TEST(cl, value + 1))
767 return 1;
1aa99e6b
IH
768 if (!(cl->flags & ANYOF_UNICODE_ALL))
769 return 0;
10edeb5d 770 if (!ANYOF_BITMAP_TESTALLSET((const void*)cl))
f8bef550 771 return 0;
653099ff
GS
772 return 1;
773}
774
775/* Can match anything (initialization) */
776STATIC void
e755fd73 777S_cl_init(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl)
653099ff 778{
7918f24d
NC
779 PERL_ARGS_ASSERT_CL_INIT;
780
8ecf7187 781 Zero(cl, 1, struct regnode_charclass_class);
653099ff 782 cl->type = ANYOF;
3fffb88a 783 cl_anything(pRExC_state, cl);
1411dba4 784 ARG_SET(cl, ANYOF_NONBITMAP_EMPTY);
653099ff
GS
785}
786
1051e1c4
KW
787/* These two functions currently do the exact same thing */
788#define cl_init_zero S_cl_init
653099ff 789
dd58aee1
KW
790/* 'AND' a given class with another one. Can create false positives. 'cl'
791 * should not be inverted. 'and_with->flags & ANYOF_CLASS' should be 0 if
792 * 'and_with' is a regnode_charclass instead of a regnode_charclass_class. */
653099ff 793STATIC void
5f66b61c 794S_cl_and(struct regnode_charclass_class *cl,
a28509cc 795 const struct regnode_charclass_class *and_with)
653099ff 796{
7918f24d 797 PERL_ARGS_ASSERT_CL_AND;
40d049e4
YO
798
799 assert(and_with->type == ANYOF);
1e6ade67 800
c6b76537 801 /* I (khw) am not sure all these restrictions are necessary XXX */
1e6ade67
KW
802 if (!(ANYOF_CLASS_TEST_ANY_SET(and_with))
803 && !(ANYOF_CLASS_TEST_ANY_SET(cl))
653099ff 804 && (and_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
39065660
KW
805 && !(and_with->flags & ANYOF_LOC_NONBITMAP_FOLD)
806 && !(cl->flags & ANYOF_LOC_NONBITMAP_FOLD)) {
653099ff
GS
807 int i;
808
809 if (and_with->flags & ANYOF_INVERT)
810 for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
811 cl->bitmap[i] &= ~and_with->bitmap[i];
812 else
813 for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
814 cl->bitmap[i] &= and_with->bitmap[i];
815 } /* XXXX: logic is complicated otherwise, leave it along for a moment. */
1aa99e6b 816
c6b76537 817 if (and_with->flags & ANYOF_INVERT) {
8951c461 818
c6b76537
KW
819 /* Here, the and'ed node is inverted. Get the AND of the flags that
820 * aren't affected by the inversion. Those that are affected are
821 * handled individually below */
822 U8 affected_flags = cl->flags & ~INVERSION_UNAFFECTED_FLAGS;
823 cl->flags &= (and_with->flags & INVERSION_UNAFFECTED_FLAGS);
824 cl->flags |= affected_flags;
825
826 /* We currently don't know how to deal with things that aren't in the
827 * bitmap, but we know that the intersection is no greater than what
828 * is already in cl, so let there be false positives that get sorted
829 * out after the synthetic start class succeeds, and the node is
830 * matched for real. */
831
832 /* The inversion of these two flags indicate that the resulting
833 * intersection doesn't have them */
834 if (and_with->flags & ANYOF_UNICODE_ALL) {
4713bfe1
KW
835 cl->flags &= ~ANYOF_UNICODE_ALL;
836 }
c6b76537
KW
837 if (and_with->flags & ANYOF_NON_UTF8_LATIN1_ALL) {
838 cl->flags &= ~ANYOF_NON_UTF8_LATIN1_ALL;
137165a6 839 }
1aa99e6b 840 }
c6b76537 841 else { /* and'd node is not inverted */
3ad98780
KW
842 U8 outside_bitmap_but_not_utf8; /* Temp variable */
843
137165a6 844 if (! ANYOF_NONBITMAP(and_with)) {
c6b76537
KW
845
846 /* Here 'and_with' doesn't match anything outside the bitmap
847 * (except possibly ANYOF_UNICODE_ALL), which means the
848 * intersection can't either, except for ANYOF_UNICODE_ALL, in
849 * which case we don't know what the intersection is, but it's no
850 * greater than what cl already has, so can just leave it alone,
851 * with possible false positives */
852 if (! (and_with->flags & ANYOF_UNICODE_ALL)) {
853 ARG_SET(cl, ANYOF_NONBITMAP_EMPTY);
871d0d1a 854 cl->flags &= ~ANYOF_NONBITMAP_NON_UTF8;
c6b76537 855 }
137165a6 856 }
c6b76537
KW
857 else if (! ANYOF_NONBITMAP(cl)) {
858
859 /* Here, 'and_with' does match something outside the bitmap, and cl
860 * doesn't have a list of things to match outside the bitmap. If
861 * cl can match all code points above 255, the intersection will
3ad98780
KW
862 * be those above-255 code points that 'and_with' matches. If cl
863 * can't match all Unicode code points, it means that it can't
864 * match anything outside the bitmap (since the 'if' that got us
865 * into this block tested for that), so we leave the bitmap empty.
866 */
c6b76537
KW
867 if (cl->flags & ANYOF_UNICODE_ALL) {
868 ARG_SET(cl, ARG(and_with));
3ad98780
KW
869
870 /* and_with's ARG may match things that don't require UTF8.
871 * And now cl's will too, in spite of this being an 'and'. See
872 * the comments below about the kludge */
873 cl->flags |= and_with->flags & ANYOF_NONBITMAP_NON_UTF8;
c6b76537
KW
874 }
875 }
876 else {
877 /* Here, both 'and_with' and cl match something outside the
878 * bitmap. Currently we do not do the intersection, so just match
879 * whatever cl had at the beginning. */
880 }
881
882
3ad98780
KW
883 /* Take the intersection of the two sets of flags. However, the
884 * ANYOF_NONBITMAP_NON_UTF8 flag is treated as an 'or'. This is a
885 * kludge around the fact that this flag is not treated like the others
886 * which are initialized in cl_anything(). The way the optimizer works
887 * is that the synthetic start class (SSC) is initialized to match
888 * anything, and then the first time a real node is encountered, its
889 * values are AND'd with the SSC's with the result being the values of
890 * the real node. However, there are paths through the optimizer where
891 * the AND never gets called, so those initialized bits are set
892 * inappropriately, which is not usually a big deal, as they just cause
893 * false positives in the SSC, which will just mean a probably
894 * imperceptible slow down in execution. However this bit has a
895 * higher false positive consequence in that it can cause utf8.pm,
896 * utf8_heavy.pl ... to be loaded when not necessary, which is a much
897 * bigger slowdown and also causes significant extra memory to be used.
898 * In order to prevent this, the code now takes a different tack. The
899 * bit isn't set unless some part of the regular expression needs it,
900 * but once set it won't get cleared. This means that these extra
901 * modules won't get loaded unless there was some path through the
902 * pattern that would have required them anyway, and so any false
903 * positives that occur by not ANDing them out when they could be
904 * aren't as severe as they would be if we treated this bit like all
905 * the others */
906 outside_bitmap_but_not_utf8 = (cl->flags | and_with->flags)
907 & ANYOF_NONBITMAP_NON_UTF8;
c6b76537 908 cl->flags &= and_with->flags;
3ad98780 909 cl->flags |= outside_bitmap_but_not_utf8;
137165a6 910 }
653099ff
GS
911}
912
dd58aee1
KW
913/* 'OR' a given class with another one. Can create false positives. 'cl'
914 * should not be inverted. 'or_with->flags & ANYOF_CLASS' should be 0 if
915 * 'or_with' is a regnode_charclass instead of a regnode_charclass_class. */
653099ff 916STATIC void
3fffb88a 917S_cl_or(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl, const struct regnode_charclass_class *or_with)
653099ff 918{
7918f24d
NC
919 PERL_ARGS_ASSERT_CL_OR;
920
653099ff 921 if (or_with->flags & ANYOF_INVERT) {
c6b76537
KW
922
923 /* Here, the or'd node is to be inverted. This means we take the
924 * complement of everything not in the bitmap, but currently we don't
925 * know what that is, so give up and match anything */
926 if (ANYOF_NONBITMAP(or_with)) {
3fffb88a 927 cl_anything(pRExC_state, cl);
c6b76537 928 }
653099ff
GS
929 /* We do not use
930 * (B1 | CL1) | (!B2 & !CL2) = (B1 | !B2 & !CL2) | (CL1 | (!B2 & !CL2))
931 * <= (B1 | !B2) | (CL1 | !CL2)
932 * which is wasteful if CL2 is small, but we ignore CL2:
933 * (B1 | CL1) | (!B2 & !CL2) <= (B1 | CL1) | !B2 = (B1 | !B2) | CL1
934 * XXXX Can we handle case-fold? Unclear:
935 * (OK1(i) | OK1(i')) | !(OK1(i) | OK1(i')) =
936 * (OK1(i) | OK1(i')) | (!OK1(i) & !OK1(i'))
937 */
c6b76537 938 else if ( (or_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
39065660
KW
939 && !(or_with->flags & ANYOF_LOC_NONBITMAP_FOLD)
940 && !(cl->flags & ANYOF_LOC_NONBITMAP_FOLD) ) {
653099ff
GS
941 int i;
942
943 for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
944 cl->bitmap[i] |= ~or_with->bitmap[i];
945 } /* XXXX: logic is complicated otherwise */
946 else {
3fffb88a 947 cl_anything(pRExC_state, cl);
653099ff 948 }
c6b76537
KW
949
950 /* And, we can just take the union of the flags that aren't affected
951 * by the inversion */
952 cl->flags |= or_with->flags & INVERSION_UNAFFECTED_FLAGS;
953
954 /* For the remaining flags:
955 ANYOF_UNICODE_ALL and inverted means to not match anything above
956 255, which means that the union with cl should just be
957 what cl has in it, so can ignore this flag
958 ANYOF_NON_UTF8_LATIN1_ALL and inverted means if not utf8 and ord
959 is 127-255 to match them, but then invert that, so the
960 union with cl should just be what cl has in it, so can
961 ignore this flag
962 */
963 } else { /* 'or_with' is not inverted */
653099ff
GS
964 /* (B1 | CL1) | (B2 | CL2) = (B1 | B2) | (CL1 | CL2)) */
965 if ( (or_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
39065660
KW
966 && (!(or_with->flags & ANYOF_LOC_NONBITMAP_FOLD)
967 || (cl->flags & ANYOF_LOC_NONBITMAP_FOLD)) ) {
653099ff
GS
968 int i;
969
970 /* OR char bitmap and class bitmap separately */
971 for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
972 cl->bitmap[i] |= or_with->bitmap[i];
1e6ade67 973 if (ANYOF_CLASS_TEST_ANY_SET(or_with)) {
653099ff
GS
974 for (i = 0; i < ANYOF_CLASSBITMAP_SIZE; i++)
975 cl->classflags[i] |= or_with->classflags[i];
976 cl->flags |= ANYOF_CLASS;
977 }
978 }
979 else { /* XXXX: logic is complicated, leave it along for a moment. */
3fffb88a 980 cl_anything(pRExC_state, cl);
653099ff 981 }
9826f543 982
c6b76537
KW
983 if (ANYOF_NONBITMAP(or_with)) {
984
985 /* Use the added node's outside-the-bit-map match if there isn't a
986 * conflict. If there is a conflict (both nodes match something
987 * outside the bitmap, but what they match outside is not the same
988 * pointer, and hence not easily compared until XXX we extend
989 * inversion lists this far), give up and allow the start class to
d94b1d13
KW
990 * match everything outside the bitmap. If that stuff is all above
991 * 255, can just set UNICODE_ALL, otherwise caould be anything. */
c6b76537
KW
992 if (! ANYOF_NONBITMAP(cl)) {
993 ARG_SET(cl, ARG(or_with));
994 }
995 else if (ARG(cl) != ARG(or_with)) {
d94b1d13
KW
996
997 if ((or_with->flags & ANYOF_NONBITMAP_NON_UTF8)) {
998 cl_anything(pRExC_state, cl);
999 }
1000 else {
1001 cl->flags |= ANYOF_UNICODE_ALL;
1002 }
c6b76537 1003 }
4c34a693 1004 }
0b9668ee
KW
1005
1006 /* Take the union */
1007 cl->flags |= or_with->flags;
1aa99e6b 1008 }
653099ff
GS
1009}
1010
a3621e74
YO
1011#define TRIE_LIST_ITEM(state,idx) (trie->states[state].trans.list)[ idx ]
1012#define TRIE_LIST_CUR(state) ( TRIE_LIST_ITEM( state, 0 ).forid )
1013#define TRIE_LIST_LEN(state) ( TRIE_LIST_ITEM( state, 0 ).newstate )
1014#define TRIE_LIST_USED(idx) ( trie->states[state].trans.list ? (TRIE_LIST_CUR( idx ) - 1) : 0 )
1015
3dab1dad
YO
1016
1017#ifdef DEBUGGING
07be1b83 1018/*
2b8b4781
NC
1019 dump_trie(trie,widecharmap,revcharmap)
1020 dump_trie_interim_list(trie,widecharmap,revcharmap,next_alloc)
1021 dump_trie_interim_table(trie,widecharmap,revcharmap,next_alloc)
3dab1dad
YO
1022
1023 These routines dump out a trie in a somewhat readable format.
07be1b83
YO
1024 The _interim_ variants are used for debugging the interim
1025 tables that are used to generate the final compressed
1026 representation which is what dump_trie expects.
1027
486ec47a 1028 Part of the reason for their existence is to provide a form
3dab1dad 1029 of documentation as to how the different representations function.
07be1b83
YO
1030
1031*/
3dab1dad
YO
1032
1033/*
3dab1dad
YO
1034 Dumps the final compressed table form of the trie to Perl_debug_log.
1035 Used for debugging make_trie().
1036*/
b9a59e08 1037
3dab1dad 1038STATIC void
2b8b4781
NC
1039S_dump_trie(pTHX_ const struct _reg_trie_data *trie, HV *widecharmap,
1040 AV *revcharmap, U32 depth)
3dab1dad
YO
1041{
1042 U32 state;
ab3bbdeb 1043 SV *sv=sv_newmortal();
55eed653 1044 int colwidth= widecharmap ? 6 : 4;
2e64971a 1045 U16 word;
3dab1dad
YO
1046 GET_RE_DEBUG_FLAGS_DECL;
1047
7918f24d 1048 PERL_ARGS_ASSERT_DUMP_TRIE;
ab3bbdeb 1049
3dab1dad
YO
1050 PerlIO_printf( Perl_debug_log, "%*sChar : %-6s%-6s%-4s ",
1051 (int)depth * 2 + 2,"",
1052 "Match","Base","Ofs" );
1053
1054 for( state = 0 ; state < trie->uniquecharcount ; state++ ) {
2b8b4781 1055 SV ** const tmp = av_fetch( revcharmap, state, 0);
3dab1dad 1056 if ( tmp ) {
ab3bbdeb
YO
1057 PerlIO_printf( Perl_debug_log, "%*s",
1058 colwidth,
ddc5bc0f 1059 pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth,
ab3bbdeb
YO
1060 PL_colors[0], PL_colors[1],
1061 (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
1062 PERL_PV_ESCAPE_FIRSTCHAR
1063 )
1064 );
3dab1dad
YO
1065 }
1066 }
1067 PerlIO_printf( Perl_debug_log, "\n%*sState|-----------------------",
1068 (int)depth * 2 + 2,"");
1069
1070 for( state = 0 ; state < trie->uniquecharcount ; state++ )
ab3bbdeb 1071 PerlIO_printf( Perl_debug_log, "%.*s", colwidth, "--------");
3dab1dad
YO
1072 PerlIO_printf( Perl_debug_log, "\n");
1073
1e2e3d02 1074 for( state = 1 ; state < trie->statecount ; state++ ) {
be8e71aa 1075 const U32 base = trie->states[ state ].trans.base;
3dab1dad
YO
1076
1077 PerlIO_printf( Perl_debug_log, "%*s#%4"UVXf"|", (int)depth * 2 + 2,"", (UV)state);
1078
1079 if ( trie->states[ state ].wordnum ) {
1080 PerlIO_printf( Perl_debug_log, " W%4X", trie->states[ state ].wordnum );
1081 } else {
1082 PerlIO_printf( Perl_debug_log, "%6s", "" );
1083 }
1084
1085 PerlIO_printf( Perl_debug_log, " @%4"UVXf" ", (UV)base );
1086
1087 if ( base ) {
1088 U32 ofs = 0;
1089
1090 while( ( base + ofs < trie->uniquecharcount ) ||
1091 ( base + ofs - trie->uniquecharcount < trie->lasttrans
1092 && trie->trans[ base + ofs - trie->uniquecharcount ].check != state))
1093 ofs++;
1094
1095 PerlIO_printf( Perl_debug_log, "+%2"UVXf"[ ", (UV)ofs);
1096
1097 for ( ofs = 0 ; ofs < trie->uniquecharcount ; ofs++ ) {
1098 if ( ( base + ofs >= trie->uniquecharcount ) &&
1099 ( base + ofs - trie->uniquecharcount < trie->lasttrans ) &&
1100 trie->trans[ base + ofs - trie->uniquecharcount ].check == state )
1101 {
ab3bbdeb
YO
1102 PerlIO_printf( Perl_debug_log, "%*"UVXf,
1103 colwidth,
3dab1dad
YO
1104 (UV)trie->trans[ base + ofs - trie->uniquecharcount ].next );
1105 } else {
ab3bbdeb 1106 PerlIO_printf( Perl_debug_log, "%*s",colwidth," ." );
3dab1dad
YO
1107 }
1108 }
1109
1110 PerlIO_printf( Perl_debug_log, "]");
1111
1112 }
1113 PerlIO_printf( Perl_debug_log, "\n" );
1114 }
2e64971a
DM
1115 PerlIO_printf(Perl_debug_log, "%*sword_info N:(prev,len)=", (int)depth*2, "");
1116 for (word=1; word <= trie->wordcount; word++) {
1117 PerlIO_printf(Perl_debug_log, " %d:(%d,%d)",
1118 (int)word, (int)(trie->wordinfo[word].prev),
1119 (int)(trie->wordinfo[word].len));
1120 }
1121 PerlIO_printf(Perl_debug_log, "\n" );
3dab1dad
YO
1122}
1123/*
3dab1dad
YO
1124 Dumps a fully constructed but uncompressed trie in list form.
1125 List tries normally only are used for construction when the number of
1126 possible chars (trie->uniquecharcount) is very high.
1127 Used for debugging make_trie().
1128*/
1129STATIC void
55eed653 1130S_dump_trie_interim_list(pTHX_ const struct _reg_trie_data *trie,
2b8b4781
NC
1131 HV *widecharmap, AV *revcharmap, U32 next_alloc,
1132 U32 depth)
3dab1dad
YO
1133{
1134 U32 state;
ab3bbdeb 1135 SV *sv=sv_newmortal();
55eed653 1136 int colwidth= widecharmap ? 6 : 4;
3dab1dad 1137 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
1138
1139 PERL_ARGS_ASSERT_DUMP_TRIE_INTERIM_LIST;
1140
3dab1dad 1141 /* print out the table precompression. */
ab3bbdeb
YO
1142 PerlIO_printf( Perl_debug_log, "%*sState :Word | Transition Data\n%*s%s",
1143 (int)depth * 2 + 2,"", (int)depth * 2 + 2,"",
1144 "------:-----+-----------------\n" );
3dab1dad
YO
1145
1146 for( state=1 ; state < next_alloc ; state ++ ) {
1147 U16 charid;
1148
ab3bbdeb 1149 PerlIO_printf( Perl_debug_log, "%*s %4"UVXf" :",
3dab1dad
YO
1150 (int)depth * 2 + 2,"", (UV)state );
1151 if ( ! trie->states[ state ].wordnum ) {
1152 PerlIO_printf( Perl_debug_log, "%5s| ","");
1153 } else {
1154 PerlIO_printf( Perl_debug_log, "W%4x| ",
1155 trie->states[ state ].wordnum
1156 );
1157 }
1158 for( charid = 1 ; charid <= TRIE_LIST_USED( state ) ; charid++ ) {
2b8b4781 1159 SV ** const tmp = av_fetch( revcharmap, TRIE_LIST_ITEM(state,charid).forid, 0);
ab3bbdeb
YO
1160 if ( tmp ) {
1161 PerlIO_printf( Perl_debug_log, "%*s:%3X=%4"UVXf" | ",
1162 colwidth,
ddc5bc0f 1163 pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth,
ab3bbdeb
YO
1164 PL_colors[0], PL_colors[1],
1165 (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
1166 PERL_PV_ESCAPE_FIRSTCHAR
1167 ) ,
1e2e3d02
YO
1168 TRIE_LIST_ITEM(state,charid).forid,
1169 (UV)TRIE_LIST_ITEM(state,charid).newstate
1170 );
1171 if (!(charid % 10))
664e119d
RGS
1172 PerlIO_printf(Perl_debug_log, "\n%*s| ",
1173 (int)((depth * 2) + 14), "");
1e2e3d02 1174 }
ab3bbdeb
YO
1175 }
1176 PerlIO_printf( Perl_debug_log, "\n");
3dab1dad
YO
1177 }
1178}
1179
1180/*
3dab1dad
YO
1181 Dumps a fully constructed but uncompressed trie in table form.
1182 This is the normal DFA style state transition table, with a few
1183 twists to facilitate compression later.
1184 Used for debugging make_trie().
1185*/
1186STATIC void
55eed653 1187S_dump_trie_interim_table(pTHX_ const struct _reg_trie_data *trie,
2b8b4781
NC
1188 HV *widecharmap, AV *revcharmap, U32 next_alloc,
1189 U32 depth)
3dab1dad
YO
1190{
1191 U32 state;
1192 U16 charid;
ab3bbdeb 1193 SV *sv=sv_newmortal();
55eed653 1194 int colwidth= widecharmap ? 6 : 4;
3dab1dad 1195 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
1196
1197 PERL_ARGS_ASSERT_DUMP_TRIE_INTERIM_TABLE;
3dab1dad
YO
1198
1199 /*
1200 print out the table precompression so that we can do a visual check
1201 that they are identical.
1202 */
1203
1204 PerlIO_printf( Perl_debug_log, "%*sChar : ",(int)depth * 2 + 2,"" );
1205
1206 for( charid = 0 ; charid < trie->uniquecharcount ; charid++ ) {
2b8b4781 1207 SV ** const tmp = av_fetch( revcharmap, charid, 0);
3dab1dad 1208 if ( tmp ) {
ab3bbdeb
YO
1209 PerlIO_printf( Perl_debug_log, "%*s",
1210 colwidth,
ddc5bc0f 1211 pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth,
ab3bbdeb
YO
1212 PL_colors[0], PL_colors[1],
1213 (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
1214 PERL_PV_ESCAPE_FIRSTCHAR
1215 )
1216 );
3dab1dad
YO
1217 }
1218 }
1219
1220 PerlIO_printf( Perl_debug_log, "\n%*sState+-",(int)depth * 2 + 2,"" );
1221
1222 for( charid=0 ; charid < trie->uniquecharcount ; charid++ ) {
ab3bbdeb 1223 PerlIO_printf( Perl_debug_log, "%.*s", colwidth,"--------");
3dab1dad
YO
1224 }
1225
1226 PerlIO_printf( Perl_debug_log, "\n" );
1227
1228 for( state=1 ; state < next_alloc ; state += trie->uniquecharcount ) {
1229
1230 PerlIO_printf( Perl_debug_log, "%*s%4"UVXf" : ",
1231 (int)depth * 2 + 2,"",
1232 (UV)TRIE_NODENUM( state ) );
1233
1234 for( charid = 0 ; charid < trie->uniquecharcount ; charid++ ) {
ab3bbdeb
YO
1235 UV v=(UV)SAFE_TRIE_NODENUM( trie->trans[ state + charid ].next );
1236 if (v)
1237 PerlIO_printf( Perl_debug_log, "%*"UVXf, colwidth, v );
1238 else
1239 PerlIO_printf( Perl_debug_log, "%*s", colwidth, "." );
3dab1dad
YO
1240 }
1241 if ( ! trie->states[ TRIE_NODENUM( state ) ].wordnum ) {
1242 PerlIO_printf( Perl_debug_log, " (%4"UVXf")\n", (UV)trie->trans[ state ].check );
1243 } else {
1244 PerlIO_printf( Perl_debug_log, " (%4"UVXf") W%4X\n", (UV)trie->trans[ state ].check,
1245 trie->states[ TRIE_NODENUM( state ) ].wordnum );
1246 }
1247 }
07be1b83 1248}
3dab1dad
YO
1249
1250#endif
1251
2e64971a 1252
786e8c11
YO
1253/* make_trie(startbranch,first,last,tail,word_count,flags,depth)
1254 startbranch: the first branch in the whole branch sequence
1255 first : start branch of sequence of branch-exact nodes.
1256 May be the same as startbranch
1257 last : Thing following the last branch.
1258 May be the same as tail.
1259 tail : item following the branch sequence
1260 count : words in the sequence
1261 flags : currently the OP() type we will be building one of /EXACT(|F|Fl)/
1262 depth : indent depth
3dab1dad 1263
786e8c11 1264Inplace optimizes a sequence of 2 or more Branch-Exact nodes into a TRIE node.
07be1b83 1265
786e8c11
YO
1266A trie is an N'ary tree where the branches are determined by digital
1267decomposition of the key. IE, at the root node you look up the 1st character and
1268follow that branch repeat until you find the end of the branches. Nodes can be
1269marked as "accepting" meaning they represent a complete word. Eg:
07be1b83 1270
786e8c11 1271 /he|she|his|hers/
72f13be8 1272
786e8c11
YO
1273would convert into the following structure. Numbers represent states, letters
1274following numbers represent valid transitions on the letter from that state, if
1275the number is in square brackets it represents an accepting state, otherwise it
1276will be in parenthesis.
07be1b83 1277
786e8c11
YO
1278 +-h->+-e->[3]-+-r->(8)-+-s->[9]
1279 | |
1280 | (2)
1281 | |
1282 (1) +-i->(6)-+-s->[7]
1283 |
1284 +-s->(3)-+-h->(4)-+-e->[5]
07be1b83 1285
786e8c11
YO
1286 Accept Word Mapping: 3=>1 (he),5=>2 (she), 7=>3 (his), 9=>4 (hers)
1287
1288This shows that when matching against the string 'hers' we will begin at state 1
1289read 'h' and move to state 2, read 'e' and move to state 3 which is accepting,
1290then read 'r' and go to state 8 followed by 's' which takes us to state 9 which
1291is also accepting. Thus we know that we can match both 'he' and 'hers' with a
1292single traverse. We store a mapping from accepting to state to which word was
1293matched, and then when we have multiple possibilities we try to complete the
1294rest of the regex in the order in which they occured in the alternation.
1295
1296The only prior NFA like behaviour that would be changed by the TRIE support is
1297the silent ignoring of duplicate alternations which are of the form:
1298
1299 / (DUPE|DUPE) X? (?{ ... }) Y /x
1300
4b714af6 1301Thus EVAL blocks following a trie may be called a different number of times with
786e8c11 1302and without the optimisation. With the optimisations dupes will be silently
486ec47a 1303ignored. This inconsistent behaviour of EVAL type nodes is well established as
786e8c11
YO
1304the following demonstrates:
1305
1306 'words'=~/(word|word|word)(?{ print $1 })[xyz]/
1307
1308which prints out 'word' three times, but
1309
1310 'words'=~/(word|word|word)(?{ print $1 })S/
1311
1312which doesnt print it out at all. This is due to other optimisations kicking in.
1313
1314Example of what happens on a structural level:
1315
486ec47a 1316The regexp /(ac|ad|ab)+/ will produce the following debug output:
786e8c11
YO
1317
1318 1: CURLYM[1] {1,32767}(18)
1319 5: BRANCH(8)
1320 6: EXACT <ac>(16)
1321 8: BRANCH(11)
1322 9: EXACT <ad>(16)
1323 11: BRANCH(14)
1324 12: EXACT <ab>(16)
1325 16: SUCCEED(0)
1326 17: NOTHING(18)
1327 18: END(0)
1328
1329This would be optimizable with startbranch=5, first=5, last=16, tail=16
1330and should turn into:
1331
1332 1: CURLYM[1] {1,32767}(18)
1333 5: TRIE(16)
1334 [Words:3 Chars Stored:6 Unique Chars:4 States:5 NCP:1]
1335 <ac>
1336 <ad>
1337 <ab>
1338 16: SUCCEED(0)
1339 17: NOTHING(18)
1340 18: END(0)
1341
1342Cases where tail != last would be like /(?foo|bar)baz/:
1343
1344 1: BRANCH(4)
1345 2: EXACT <foo>(8)
1346 4: BRANCH(7)
1347 5: EXACT <bar>(8)
1348 7: TAIL(8)
1349 8: EXACT <baz>(10)
1350 10: END(0)
1351
1352which would be optimizable with startbranch=1, first=1, last=7, tail=8
1353and would end up looking like:
1354
1355 1: TRIE(8)
1356 [Words:2 Chars Stored:6 Unique Chars:5 States:7 NCP:1]
1357 <foo>
1358 <bar>
1359 7: TAIL(8)
1360 8: EXACT <baz>(10)
1361 10: END(0)
1362
1363 d = uvuni_to_utf8_flags(d, uv, 0);
1364
1365is the recommended Unicode-aware way of saying
1366
1367 *(d++) = uv;
1368*/
1369
fab2782b 1370#define TRIE_STORE_REVCHAR(val) \
786e8c11 1371 STMT_START { \
73031816 1372 if (UTF) { \
fab2782b 1373 SV *zlopp = newSV(7); /* XXX: optimize me */ \
88c9ea1e 1374 unsigned char *flrbbbbb = (unsigned char *) SvPVX(zlopp); \
fab2782b 1375 unsigned const char *const kapow = uvuni_to_utf8(flrbbbbb, val); \
73031816
NC
1376 SvCUR_set(zlopp, kapow - flrbbbbb); \
1377 SvPOK_on(zlopp); \
1378 SvUTF8_on(zlopp); \
1379 av_push(revcharmap, zlopp); \
1380 } else { \
fab2782b 1381 char ooooff = (char)val; \
73031816
NC
1382 av_push(revcharmap, newSVpvn(&ooooff, 1)); \
1383 } \
1384 } STMT_END
786e8c11 1385
fab2782b
YO
1386#define TRIE_READ_CHAR STMT_START { \
1387 wordlen++; \
1388 if ( UTF ) { \
1389 /* if it is UTF then it is either already folded, or does not need folding */ \
1390 uvc = utf8n_to_uvuni( (const U8*) uc, UTF8_MAXLEN, &len, uniflags); \
1391 } \
1392 else if (folder == PL_fold_latin1) { \
1393 /* if we use this folder we have to obey unicode rules on latin-1 data */ \
1394 if ( foldlen > 0 ) { \
1395 uvc = utf8n_to_uvuni( (const U8*) scan, UTF8_MAXLEN, &len, uniflags ); \
1396 foldlen -= len; \
1397 scan += len; \
1398 len = 0; \
1399 } else { \
1400 len = 1; \
1401 uvc = _to_fold_latin1( (U8) *uc, foldbuf, &foldlen, 1); \
1402 skiplen = UNISKIP(uvc); \
1403 foldlen -= skiplen; \
1404 scan = foldbuf + skiplen; \
1405 } \
1406 } else { \
1407 /* raw data, will be folded later if needed */ \
1408 uvc = (U32)*uc; \
1409 len = 1; \
1410 } \
786e8c11
YO
1411} STMT_END
1412
1413
1414
1415#define TRIE_LIST_PUSH(state,fid,ns) STMT_START { \
1416 if ( TRIE_LIST_CUR( state ) >=TRIE_LIST_LEN( state ) ) { \
f9003953
NC
1417 U32 ging = TRIE_LIST_LEN( state ) *= 2; \
1418 Renew( trie->states[ state ].trans.list, ging, reg_trie_trans_le ); \
786e8c11
YO
1419 } \
1420 TRIE_LIST_ITEM( state, TRIE_LIST_CUR( state ) ).forid = fid; \
1421 TRIE_LIST_ITEM( state, TRIE_LIST_CUR( state ) ).newstate = ns; \
1422 TRIE_LIST_CUR( state )++; \
1423} STMT_END
07be1b83 1424
786e8c11
YO
1425#define TRIE_LIST_NEW(state) STMT_START { \
1426 Newxz( trie->states[ state ].trans.list, \
1427 4, reg_trie_trans_le ); \
1428 TRIE_LIST_CUR( state ) = 1; \
1429 TRIE_LIST_LEN( state ) = 4; \
1430} STMT_END
07be1b83 1431
786e8c11
YO
1432#define TRIE_HANDLE_WORD(state) STMT_START { \
1433 U16 dupe= trie->states[ state ].wordnum; \
1434 regnode * const noper_next = regnext( noper ); \
1435 \
786e8c11
YO
1436 DEBUG_r({ \
1437 /* store the word for dumping */ \
1438 SV* tmp; \
1439 if (OP(noper) != NOTHING) \
740cce10 1440 tmp = newSVpvn_utf8(STRING(noper), STR_LEN(noper), UTF); \
786e8c11 1441 else \
740cce10 1442 tmp = newSVpvn_utf8( "", 0, UTF ); \
2b8b4781 1443 av_push( trie_words, tmp ); \
786e8c11
YO
1444 }); \
1445 \
1446 curword++; \
2e64971a
DM
1447 trie->wordinfo[curword].prev = 0; \
1448 trie->wordinfo[curword].len = wordlen; \
1449 trie->wordinfo[curword].accept = state; \
786e8c11
YO
1450 \
1451 if ( noper_next < tail ) { \
1452 if (!trie->jump) \
c944940b 1453 trie->jump = (U16 *) PerlMemShared_calloc( word_count + 1, sizeof(U16) ); \
7f69552c 1454 trie->jump[curword] = (U16)(noper_next - convert); \
786e8c11
YO
1455 if (!jumper) \
1456 jumper = noper_next; \
1457 if (!nextbranch) \
1458 nextbranch= regnext(cur); \
1459 } \
1460 \
1461 if ( dupe ) { \
2e64971a
DM
1462 /* It's a dupe. Pre-insert into the wordinfo[].prev */\
1463 /* chain, so that when the bits of chain are later */\
1464 /* linked together, the dups appear in the chain */\
1465 trie->wordinfo[curword].prev = trie->wordinfo[dupe].prev; \
1466 trie->wordinfo[dupe].prev = curword; \
786e8c11
YO
1467 } else { \
1468 /* we haven't inserted this word yet. */ \
1469 trie->states[ state ].wordnum = curword; \
1470 } \
1471} STMT_END
07be1b83 1472
3dab1dad 1473
786e8c11
YO
1474#define TRIE_TRANS_STATE(state,base,ucharcount,charid,special) \
1475 ( ( base + charid >= ucharcount \
1476 && base + charid < ubound \
1477 && state == trie->trans[ base - ucharcount + charid ].check \
1478 && trie->trans[ base - ucharcount + charid ].next ) \
1479 ? trie->trans[ base - ucharcount + charid ].next \
1480 : ( state==1 ? special : 0 ) \
1481 )
3dab1dad 1482
786e8c11
YO
1483#define MADE_TRIE 1
1484#define MADE_JUMP_TRIE 2
1485#define MADE_EXACT_TRIE 4
3dab1dad 1486
a3621e74 1487STATIC I32
786e8c11 1488S_make_trie(pTHX_ RExC_state_t *pRExC_state, regnode *startbranch, regnode *first, regnode *last, regnode *tail, U32 word_count, U32 flags, U32 depth)
a3621e74 1489{
27da23d5 1490 dVAR;
a3621e74
YO
1491 /* first pass, loop through and scan words */
1492 reg_trie_data *trie;
55eed653 1493 HV *widecharmap = NULL;
2b8b4781 1494 AV *revcharmap = newAV();
a3621e74 1495 regnode *cur;
9f7f3913 1496 const U32 uniflags = UTF8_ALLOW_DEFAULT;
a3621e74
YO
1497 STRLEN len = 0;
1498 UV uvc = 0;
1499 U16 curword = 0;
1500 U32 next_alloc = 0;
786e8c11
YO
1501 regnode *jumper = NULL;
1502 regnode *nextbranch = NULL;
7f69552c 1503 regnode *convert = NULL;
2e64971a 1504 U32 *prev_states; /* temp array mapping each state to previous one */
a3621e74 1505 /* we just use folder as a flag in utf8 */
1e696034 1506 const U8 * folder = NULL;
a3621e74 1507
2b8b4781
NC
1508#ifdef DEBUGGING
1509 const U32 data_slot = add_data( pRExC_state, 4, "tuuu" );
1510 AV *trie_words = NULL;
1511 /* along with revcharmap, this only used during construction but both are
1512 * useful during debugging so we store them in the struct when debugging.
8e11feef 1513 */
2b8b4781
NC
1514#else
1515 const U32 data_slot = add_data( pRExC_state, 2, "tu" );
3dab1dad 1516 STRLEN trie_charcount=0;
3dab1dad 1517#endif
2b8b4781 1518 SV *re_trie_maxbuff;
a3621e74 1519 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
1520
1521 PERL_ARGS_ASSERT_MAKE_TRIE;
72f13be8
YO
1522#ifndef DEBUGGING
1523 PERL_UNUSED_ARG(depth);
1524#endif
a3621e74 1525
1e696034 1526 switch (flags) {
c46d03cf 1527 case EXACT: break;
2f7f8cb1 1528 case EXACTFA:
fab2782b
YO
1529 case EXACTFU_SS:
1530 case EXACTFU_TRICKYFOLD:
1e696034
KW
1531 case EXACTFU: folder = PL_fold_latin1; break;
1532 case EXACTF: folder = PL_fold; break;
1533 case EXACTFL: folder = PL_fold_locale; break;
fab2782b 1534 default: Perl_croak( aTHX_ "panic! In trie construction, unknown node type %u %s", (unsigned) flags, PL_reg_name[flags] );
1e696034
KW
1535 }
1536
c944940b 1537 trie = (reg_trie_data *) PerlMemShared_calloc( 1, sizeof(reg_trie_data) );
a3621e74 1538 trie->refcount = 1;
3dab1dad 1539 trie->startstate = 1;
786e8c11 1540 trie->wordcount = word_count;
f8fc2ecf 1541 RExC_rxi->data->data[ data_slot ] = (void*)trie;
c944940b 1542 trie->charmap = (U16 *) PerlMemShared_calloc( 256, sizeof(U16) );
fab2782b 1543 if (flags == EXACT)
c944940b 1544 trie->bitmap = (char *) PerlMemShared_calloc( ANYOF_BITMAP_SIZE, 1 );
2e64971a
DM
1545 trie->wordinfo = (reg_trie_wordinfo *) PerlMemShared_calloc(
1546 trie->wordcount+1, sizeof(reg_trie_wordinfo));
1547
a3621e74 1548 DEBUG_r({
2b8b4781 1549 trie_words = newAV();
a3621e74 1550 });
a3621e74 1551
0111c4fd 1552 re_trie_maxbuff = get_sv(RE_TRIE_MAXBUF_NAME, 1);
a3621e74 1553 if (!SvIOK(re_trie_maxbuff)) {
0111c4fd 1554 sv_setiv(re_trie_maxbuff, RE_TRIE_MAXBUF_INIT);
a3621e74 1555 }
3dab1dad
YO
1556 DEBUG_OPTIMISE_r({
1557 PerlIO_printf( Perl_debug_log,
786e8c11 1558 "%*smake_trie start==%d, first==%d, last==%d, tail==%d depth=%d\n",
3dab1dad
YO
1559 (int)depth * 2 + 2, "",
1560 REG_NODE_NUM(startbranch),REG_NODE_NUM(first),
786e8c11 1561 REG_NODE_NUM(last), REG_NODE_NUM(tail),
85c3142d 1562 (int)depth);
3dab1dad 1563 });
7f69552c
YO
1564
1565 /* Find the node we are going to overwrite */
1566 if ( first == startbranch && OP( last ) != BRANCH ) {
1567 /* whole branch chain */
1568 convert = first;
1569 } else {
1570 /* branch sub-chain */
1571 convert = NEXTOPER( first );
1572 }
1573
a3621e74
YO
1574 /* -- First loop and Setup --
1575
1576 We first traverse the branches and scan each word to determine if it
1577 contains widechars, and how many unique chars there are, this is
1578 important as we have to build a table with at least as many columns as we
1579 have unique chars.
1580
1581 We use an array of integers to represent the character codes 0..255
38a44b82 1582 (trie->charmap) and we use a an HV* to store Unicode characters. We use the
a3621e74
YO
1583 native representation of the character value as the key and IV's for the
1584 coded index.
1585
1586 *TODO* If we keep track of how many times each character is used we can
1587 remap the columns so that the table compression later on is more
3b753521 1588 efficient in terms of memory by ensuring the most common value is in the
a3621e74
YO
1589 middle and the least common are on the outside. IMO this would be better
1590 than a most to least common mapping as theres a decent chance the most
1591 common letter will share a node with the least common, meaning the node
486ec47a 1592 will not be compressible. With a middle is most common approach the worst
a3621e74
YO
1593 case is when we have the least common nodes twice.
1594
1595 */
1596
a3621e74 1597 for ( cur = first ; cur < last ; cur = regnext( cur ) ) {
c445ea15 1598 regnode * const noper = NEXTOPER( cur );
e1ec3a88 1599 const U8 *uc = (U8*)STRING( noper );
a28509cc 1600 const U8 * const e = uc + STR_LEN( noper );
a3621e74
YO
1601 STRLEN foldlen = 0;
1602 U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
fab2782b 1603 STRLEN skiplen = 0;
2af232bd 1604 const U8 *scan = (U8*)NULL;
07be1b83 1605 U32 wordlen = 0; /* required init */
02daf0ab
YO
1606 STRLEN chars = 0;
1607 bool set_bit = trie->bitmap ? 1 : 0; /*store the first char in the bitmap?*/
a3621e74 1608
3dab1dad
YO
1609 if (OP(noper) == NOTHING) {
1610 trie->minlen= 0;
1611 continue;
1612 }
fab2782b 1613 if ( set_bit ) { /* bitmap only alloced when !(UTF&&Folding) */
02daf0ab
YO
1614 TRIE_BITMAP_SET(trie,*uc); /* store the raw first byte
1615 regardless of encoding */
fab2782b
YO
1616 if (OP( noper ) == EXACTFU_SS) {
1617 /* false positives are ok, so just set this */
1618 TRIE_BITMAP_SET(trie,0xDF);
1619 }
1620 }
a3621e74 1621 for ( ; uc < e ; uc += len ) {
3dab1dad 1622 TRIE_CHARCOUNT(trie)++;
a3621e74 1623 TRIE_READ_CHAR;
3dab1dad 1624 chars++;
a3621e74 1625 if ( uvc < 256 ) {
fab2782b
YO
1626 if ( folder ) {
1627 U8 folded= folder[ (U8) uvc ];
1628 if ( !trie->charmap[ folded ] ) {
1629 trie->charmap[ folded ]=( ++trie->uniquecharcount );
1630 TRIE_STORE_REVCHAR( folded );
1631 }
1632 }
a3621e74
YO
1633 if ( !trie->charmap[ uvc ] ) {
1634 trie->charmap[ uvc ]=( ++trie->uniquecharcount );
fab2782b 1635 TRIE_STORE_REVCHAR( uvc );
a3621e74 1636 }
02daf0ab 1637 if ( set_bit ) {
62012aee
KW
1638 /* store the codepoint in the bitmap, and its folded
1639 * equivalent. */
fab2782b 1640 TRIE_BITMAP_SET(trie, uvc);
0921ee73
T
1641
1642 /* store the folded codepoint */
fab2782b 1643 if ( folder ) TRIE_BITMAP_SET(trie, folder[(U8) uvc ]);
0921ee73
T
1644
1645 if ( !UTF ) {
1646 /* store first byte of utf8 representation of
acdf4139
KW
1647 variant codepoints */
1648 if (! UNI_IS_INVARIANT(uvc)) {
1649 TRIE_BITMAP_SET(trie, UTF8_TWO_BYTE_HI(uvc));
0921ee73
T
1650 }
1651 }
02daf0ab
YO
1652 set_bit = 0; /* We've done our bit :-) */
1653 }
a3621e74
YO
1654 } else {
1655 SV** svpp;
55eed653
NC
1656 if ( !widecharmap )
1657 widecharmap = newHV();
a3621e74 1658
55eed653 1659 svpp = hv_fetch( widecharmap, (char*)&uvc, sizeof( UV ), 1 );
a3621e74
YO
1660
1661 if ( !svpp )
e4584336 1662 Perl_croak( aTHX_ "error creating/fetching widecharmap entry for 0x%"UVXf, uvc );
a3621e74
YO
1663
1664 if ( !SvTRUE( *svpp ) ) {
1665 sv_setiv( *svpp, ++trie->uniquecharcount );
fab2782b 1666 TRIE_STORE_REVCHAR(uvc);
a3621e74
YO
1667 }
1668 }
1669 }
3dab1dad 1670 if( cur == first ) {
fab2782b
YO
1671 trie->minlen = chars;
1672 trie->maxlen = chars;
3dab1dad 1673 } else if (chars < trie->minlen) {
fab2782b 1674 trie->minlen = chars;
3dab1dad 1675 } else if (chars > trie->maxlen) {
fab2782b
YO
1676 trie->maxlen = chars;
1677 }
1678 if (OP( noper ) == EXACTFU_SS) {
1679 /* XXX: workaround - 'ss' could match "\x{DF}" so minlen could be 1 and not 2*/
1680 if (trie->minlen > 1)
1681 trie->minlen= 1;
1682 }
1683 if (OP( noper ) == EXACTFU_TRICKYFOLD) {
1684 /* XXX: workround - things like "\x{1FBE}\x{0308}\x{0301}" can match "\x{0390}"
1685 * - We assume that any such sequence might match a 2 byte string */
1686 if (trie->minlen > 2 )
1687 trie->minlen= 2;
3dab1dad
YO
1688 }
1689
a3621e74
YO
1690 } /* end first pass */
1691 DEBUG_TRIE_COMPILE_r(
3dab1dad
YO
1692 PerlIO_printf( Perl_debug_log, "%*sTRIE(%s): W:%d C:%d Uq:%d Min:%d Max:%d\n",
1693 (int)depth * 2 + 2,"",
55eed653 1694 ( widecharmap ? "UTF8" : "NATIVE" ), (int)word_count,
be8e71aa
YO
1695 (int)TRIE_CHARCOUNT(trie), trie->uniquecharcount,
1696 (int)trie->minlen, (int)trie->maxlen )
a3621e74 1697 );
a3621e74
YO
1698
1699 /*
1700 We now know what we are dealing with in terms of unique chars and
1701 string sizes so we can calculate how much memory a naive
0111c4fd
RGS
1702 representation using a flat table will take. If it's over a reasonable
1703 limit (as specified by ${^RE_TRIE_MAXBUF}) we use a more memory
a3621e74
YO
1704 conservative but potentially much slower representation using an array
1705 of lists.
1706
1707 At the end we convert both representations into the same compressed
1708 form that will be used in regexec.c for matching with. The latter
1709 is a form that cannot be used to construct with but has memory
1710 properties similar to the list form and access properties similar
1711 to the table form making it both suitable for fast searches and
1712 small enough that its feasable to store for the duration of a program.
1713
1714 See the comment in the code where the compressed table is produced
1715 inplace from the flat tabe representation for an explanation of how
1716 the compression works.
1717
1718 */
1719
1720
2e64971a
DM
1721 Newx(prev_states, TRIE_CHARCOUNT(trie) + 2, U32);
1722 prev_states[1] = 0;
1723
3dab1dad 1724 if ( (IV)( ( TRIE_CHARCOUNT(trie) + 1 ) * trie->uniquecharcount + 1) > SvIV(re_trie_maxbuff) ) {
a3621e74
YO
1725 /*
1726 Second Pass -- Array Of Lists Representation
1727
1728 Each state will be represented by a list of charid:state records
1729 (reg_trie_trans_le) the first such element holds the CUR and LEN
1730 points of the allocated array. (See defines above).
1731
1732 We build the initial structure using the lists, and then convert
1733 it into the compressed table form which allows faster lookups
1734 (but cant be modified once converted).
a3621e74
YO
1735 */
1736
a3621e74
YO
1737 STRLEN transcount = 1;
1738
1e2e3d02
YO
1739 DEBUG_TRIE_COMPILE_MORE_r( PerlIO_printf( Perl_debug_log,
1740 "%*sCompiling trie using list compiler\n",
1741 (int)depth * 2 + 2, ""));
686b73d4 1742
c944940b
JH
1743 trie->states = (reg_trie_state *)
1744 PerlMemShared_calloc( TRIE_CHARCOUNT(trie) + 2,
1745 sizeof(reg_trie_state) );
a3621e74
YO
1746 TRIE_LIST_NEW(1);
1747 next_alloc = 2;
1748
1749 for ( cur = first ; cur < last ; cur = regnext( cur ) ) {
1750
c445ea15
AL
1751 regnode * const noper = NEXTOPER( cur );
1752 U8 *uc = (U8*)STRING( noper );
1753 const U8 * const e = uc + STR_LEN( noper );
1754 U32 state = 1; /* required init */
1755 U16 charid = 0; /* sanity init */
1756 U8 *scan = (U8*)NULL; /* sanity init */
1757 STRLEN foldlen = 0; /* required init */
07be1b83 1758 U32 wordlen = 0; /* required init */
c445ea15 1759 U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
fab2782b 1760 STRLEN skiplen = 0;
c445ea15 1761
3dab1dad 1762 if (OP(noper) != NOTHING) {
786e8c11 1763 for ( ; uc < e ; uc += len ) {
c445ea15 1764
786e8c11 1765 TRIE_READ_CHAR;
c445ea15 1766
786e8c11
YO
1767 if ( uvc < 256 ) {
1768 charid = trie->charmap[ uvc ];
c445ea15 1769 } else {
55eed653 1770 SV** const svpp = hv_fetch( widecharmap, (char*)&uvc, sizeof( UV ), 0);
786e8c11
YO
1771 if ( !svpp ) {
1772 charid = 0;
1773 } else {
1774 charid=(U16)SvIV( *svpp );
1775 }
c445ea15 1776 }
786e8c11
YO
1777 /* charid is now 0 if we dont know the char read, or nonzero if we do */
1778 if ( charid ) {
a3621e74 1779
786e8c11
YO
1780 U16 check;
1781 U32 newstate = 0;
a3621e74 1782
786e8c11
YO
1783 charid--;
1784 if ( !trie->states[ state ].trans.list ) {
1785 TRIE_LIST_NEW( state );
c445ea15 1786 }
786e8c11
YO
1787 for ( check = 1; check <= TRIE_LIST_USED( state ); check++ ) {
1788 if ( TRIE_LIST_ITEM( state, check ).forid == charid ) {
1789 newstate = TRIE_LIST_ITEM( state, check ).newstate;
1790 break;
1791 }
1792 }
1793 if ( ! newstate ) {
1794 newstate = next_alloc++;
2e64971a 1795 prev_states[newstate] = state;
786e8c11
YO
1796 TRIE_LIST_PUSH( state, charid, newstate );
1797 transcount++;
1798 }
1799 state = newstate;
1800 } else {
1801 Perl_croak( aTHX_ "panic! In trie construction, no char mapping for %"IVdf, uvc );
c445ea15 1802 }
a28509cc 1803 }
c445ea15 1804 }
3dab1dad 1805 TRIE_HANDLE_WORD(state);
a3621e74
YO
1806
1807 } /* end second pass */
1808
1e2e3d02
YO
1809 /* next alloc is the NEXT state to be allocated */
1810 trie->statecount = next_alloc;
c944940b
JH
1811 trie->states = (reg_trie_state *)
1812 PerlMemShared_realloc( trie->states,
1813 next_alloc
1814 * sizeof(reg_trie_state) );
a3621e74 1815
3dab1dad 1816 /* and now dump it out before we compress it */
2b8b4781
NC
1817 DEBUG_TRIE_COMPILE_MORE_r(dump_trie_interim_list(trie, widecharmap,
1818 revcharmap, next_alloc,
1819 depth+1)
1e2e3d02 1820 );
a3621e74 1821
c944940b
JH
1822 trie->trans = (reg_trie_trans *)
1823 PerlMemShared_calloc( transcount, sizeof(reg_trie_trans) );
a3621e74
YO
1824 {
1825 U32 state;
a3621e74
YO
1826 U32 tp = 0;
1827 U32 zp = 0;
1828
1829
1830 for( state=1 ; state < next_alloc ; state ++ ) {
1831 U32 base=0;
1832
1833 /*
1834 DEBUG_TRIE_COMPILE_MORE_r(
1835 PerlIO_printf( Perl_debug_log, "tp: %d zp: %d ",tp,zp)
1836 );
1837 */
1838
1839 if (trie->states[state].trans.list) {
1840 U16 minid=TRIE_LIST_ITEM( state, 1).forid;
1841 U16 maxid=minid;
a28509cc 1842 U16 idx;
a3621e74
YO
1843
1844 for( idx = 2 ; idx <= TRIE_LIST_USED( state ) ; idx++ ) {
c445ea15
AL
1845 const U16 forid = TRIE_LIST_ITEM( state, idx).forid;
1846 if ( forid < minid ) {
1847 minid=forid;
1848 } else if ( forid > maxid ) {
1849 maxid=forid;
1850 }
a3621e74
YO
1851 }
1852 if ( transcount < tp + maxid - minid + 1) {
1853 transcount *= 2;
c944940b
JH
1854 trie->trans = (reg_trie_trans *)
1855 PerlMemShared_realloc( trie->trans,
446bd890
NC
1856 transcount
1857 * sizeof(reg_trie_trans) );
a3621e74
YO
1858 Zero( trie->trans + (transcount / 2), transcount / 2 , reg_trie_trans );
1859 }
1860 base = trie->uniquecharcount + tp - minid;
1861 if ( maxid == minid ) {
1862 U32 set = 0;
1863 for ( ; zp < tp ; zp++ ) {
1864 if ( ! trie->trans[ zp ].next ) {
1865 base = trie->uniquecharcount + zp - minid;
1866 trie->trans[ zp ].next = TRIE_LIST_ITEM( state, 1).newstate;
1867 trie->trans[ zp ].check = state;
1868 set = 1;
1869 break;
1870 }
1871 }
1872 if ( !set ) {
1873 trie->trans[ tp ].next = TRIE_LIST_ITEM( state, 1).newstate;
1874 trie->trans[ tp ].check = state;
1875 tp++;
1876 zp = tp;
1877 }
1878 } else {
1879 for ( idx=1; idx <= TRIE_LIST_USED( state ) ; idx++ ) {
c445ea15 1880 const U32 tid = base - trie->uniquecharcount + TRIE_LIST_ITEM( state, idx ).forid;
a3621e74
YO
1881 trie->trans[ tid ].next = TRIE_LIST_ITEM( state, idx ).newstate;
1882 trie->trans[ tid ].check = state;
1883 }
1884 tp += ( maxid - minid + 1 );
1885 }
1886 Safefree(trie->states[ state ].trans.list);
1887 }
1888 /*
1889 DEBUG_TRIE_COMPILE_MORE_r(
1890 PerlIO_printf( Perl_debug_log, " base: %d\n",base);
1891 );
1892 */
1893 trie->states[ state ].trans.base=base;
1894 }
cc601c31 1895 trie->lasttrans = tp + 1;
a3621e74
YO
1896 }
1897 } else {
1898 /*
1899 Second Pass -- Flat Table Representation.
1900
1901 we dont use the 0 slot of either trans[] or states[] so we add 1 to each.
1902 We know that we will need Charcount+1 trans at most to store the data
1903 (one row per char at worst case) So we preallocate both structures
1904 assuming worst case.
1905
1906 We then construct the trie using only the .next slots of the entry
1907 structs.
1908
3b753521 1909 We use the .check field of the first entry of the node temporarily to
a3621e74
YO
1910 make compression both faster and easier by keeping track of how many non
1911 zero fields are in the node.
1912
1913 Since trans are numbered from 1 any 0 pointer in the table is a FAIL
1914 transition.
1915
1916 There are two terms at use here: state as a TRIE_NODEIDX() which is a
1917 number representing the first entry of the node, and state as a
1918 TRIE_NODENUM() which is the trans number. state 1 is TRIE_NODEIDX(1) and
1919 TRIE_NODENUM(1), state 2 is TRIE_NODEIDX(2) and TRIE_NODENUM(3) if there
1920 are 2 entrys per node. eg:
1921
1922 A B A B
1923 1. 2 4 1. 3 7
1924 2. 0 3 3. 0 5
1925 3. 0 0 5. 0 0
1926 4. 0 0 7. 0 0
1927
1928 The table is internally in the right hand, idx form. However as we also
1929 have to deal with the states array which is indexed by nodenum we have to
1930 use TRIE_NODENUM() to convert.
1931
1932 */
1e2e3d02
YO
1933 DEBUG_TRIE_COMPILE_MORE_r( PerlIO_printf( Perl_debug_log,
1934 "%*sCompiling trie using table compiler\n",
1935 (int)depth * 2 + 2, ""));
3dab1dad 1936
c944940b
JH
1937 trie->trans = (reg_trie_trans *)
1938 PerlMemShared_calloc( ( TRIE_CHARCOUNT(trie) + 1 )
1939 * trie->uniquecharcount + 1,
1940 sizeof(reg_trie_trans) );
1941 trie->states = (reg_trie_state *)
1942 PerlMemShared_calloc( TRIE_CHARCOUNT(trie) + 2,
1943 sizeof(reg_trie_state) );
a3621e74
YO
1944 next_alloc = trie->uniquecharcount + 1;
1945
3dab1dad 1946
a3621e74
YO
1947 for ( cur = first ; cur < last ; cur = regnext( cur ) ) {
1948
c445ea15 1949 regnode * const noper = NEXTOPER( cur );
a28509cc
AL
1950 const U8 *uc = (U8*)STRING( noper );
1951 const U8 * const e = uc + STR_LEN( noper );
a3621e74
YO
1952
1953 U32 state = 1; /* required init */
1954
1955 U16 charid = 0; /* sanity init */
1956 U32 accept_state = 0; /* sanity init */
1957 U8 *scan = (U8*)NULL; /* sanity init */
1958
1959 STRLEN foldlen = 0; /* required init */
07be1b83 1960 U32 wordlen = 0; /* required init */
fab2782b 1961 STRLEN skiplen = 0;
a3621e74
YO
1962 U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
1963
fab2782b 1964
3dab1dad 1965 if ( OP(noper) != NOTHING ) {
786e8c11 1966 for ( ; uc < e ; uc += len ) {
a3621e74 1967
786e8c11 1968 TRIE_READ_CHAR;
a3621e74 1969
786e8c11
YO
1970 if ( uvc < 256 ) {
1971 charid = trie->charmap[ uvc ];
1972 } else {
55eed653 1973 SV* const * const svpp = hv_fetch( widecharmap, (char*)&uvc, sizeof( UV ), 0);
786e8c11 1974 charid = svpp ? (U16)SvIV(*svpp) : 0;
a3621e74 1975 }
786e8c11
YO
1976 if ( charid ) {
1977 charid--;
1978 if ( !trie->trans[ state + charid ].next ) {
1979 trie->trans[ state + charid ].next = next_alloc;
1980 trie->trans[ state ].check++;
2e64971a
DM
1981 prev_states[TRIE_NODENUM(next_alloc)]
1982 = TRIE_NODENUM(state);
786e8c11
YO
1983 next_alloc += trie->uniquecharcount;
1984 }
1985 state = trie->trans[ state + charid ].next;
1986 } else {
1987 Perl_croak( aTHX_ "panic! In trie construction, no char mapping for %"IVdf, uvc );
1988 }
1989 /* charid is now 0 if we dont know the char read, or nonzero if we do */
a3621e74 1990 }
a3621e74 1991 }
3dab1dad
YO
1992 accept_state = TRIE_NODENUM( state );
1993 TRIE_HANDLE_WORD(accept_state);
a3621e74
YO
1994
1995 } /* end second pass */
1996
3dab1dad 1997 /* and now dump it out before we compress it */
2b8b4781
NC
1998 DEBUG_TRIE_COMPILE_MORE_r(dump_trie_interim_table(trie, widecharmap,
1999 revcharmap,
2000 next_alloc, depth+1));
a3621e74 2001
a3621e74
YO
2002 {
2003 /*
2004 * Inplace compress the table.*
2005
2006 For sparse data sets the table constructed by the trie algorithm will
2007 be mostly 0/FAIL transitions or to put it another way mostly empty.
2008 (Note that leaf nodes will not contain any transitions.)
2009
2010 This algorithm compresses the tables by eliminating most such
2011 transitions, at the cost of a modest bit of extra work during lookup:
2012
2013 - Each states[] entry contains a .base field which indicates the
2014 index in the state[] array wheres its transition data is stored.
2015
3b753521 2016 - If .base is 0 there are no valid transitions from that node.
a3621e74
YO
2017
2018 - If .base is nonzero then charid is added to it to find an entry in
2019 the trans array.
2020
2021 -If trans[states[state].base+charid].check!=state then the
2022 transition is taken to be a 0/Fail transition. Thus if there are fail
2023 transitions at the front of the node then the .base offset will point
2024 somewhere inside the previous nodes data (or maybe even into a node
2025 even earlier), but the .check field determines if the transition is
2026 valid.
2027
786e8c11 2028 XXX - wrong maybe?
a3621e74 2029 The following process inplace converts the table to the compressed
3b753521 2030 table: We first do not compress the root node 1,and mark all its
a3621e74 2031 .check pointers as 1 and set its .base pointer as 1 as well. This
3b753521
FN
2032 allows us to do a DFA construction from the compressed table later,
2033 and ensures that any .base pointers we calculate later are greater
2034 than 0.
a3621e74
YO
2035
2036 - We set 'pos' to indicate the first entry of the second node.
2037
2038 - We then iterate over the columns of the node, finding the first and
2039 last used entry at l and m. We then copy l..m into pos..(pos+m-l),
2040 and set the .check pointers accordingly, and advance pos
2041 appropriately and repreat for the next node. Note that when we copy
2042 the next pointers we have to convert them from the original
2043 NODEIDX form to NODENUM form as the former is not valid post
2044 compression.
2045
2046 - If a node has no transitions used we mark its base as 0 and do not
2047 advance the pos pointer.
2048
2049 - If a node only has one transition we use a second pointer into the
2050 structure to fill in allocated fail transitions from other states.
2051 This pointer is independent of the main pointer and scans forward
2052 looking for null transitions that are allocated to a state. When it
2053 finds one it writes the single transition into the "hole". If the
786e8c11 2054 pointer doesnt find one the single transition is appended as normal.
a3621e74
YO
2055
2056 - Once compressed we can Renew/realloc the structures to release the
2057 excess space.
2058
2059 See "Table-Compression Methods" in sec 3.9 of the Red Dragon,
2060 specifically Fig 3.47 and the associated pseudocode.
2061
2062 demq
2063 */
a3b680e6 2064 const U32 laststate = TRIE_NODENUM( next_alloc );
a28509cc 2065 U32 state, charid;
a3621e74 2066 U32 pos = 0, zp=0;
1e2e3d02 2067 trie->statecount = laststate;
a3621e74
YO
2068
2069 for ( state = 1 ; state < laststate ; state++ ) {
2070 U8 flag = 0;
a28509cc
AL
2071 const U32 stateidx = TRIE_NODEIDX( state );
2072 const U32 o_used = trie->trans[ stateidx ].check;
2073 U32 used = trie->trans[ stateidx ].check;
a3621e74
YO
2074 trie->trans[ stateidx ].check = 0;
2075
2076 for ( charid = 0 ; used && charid < trie->uniquecharcount ; charid++ ) {
2077 if ( flag || trie->trans[ stateidx + charid ].next ) {
2078 if ( trie->trans[ stateidx + charid ].next ) {
2079 if (o_used == 1) {
2080 for ( ; zp < pos ; zp++ ) {
2081 if ( ! trie->trans[ zp ].next ) {
2082 break;
2083 }
2084 }
2085 trie->states[ state ].trans.base = zp + trie->uniquecharcount - charid ;
2086 trie->trans[ zp ].next = SAFE_TRIE_NODENUM( trie->trans[ stateidx + charid ].next );
2087 trie->trans[ zp ].check = state;
2088 if ( ++zp > pos ) pos = zp;
2089 break;
2090 }
2091 used--;
2092 }
2093 if ( !flag ) {
2094 flag = 1;
2095 trie->states[ state ].trans.base = pos + trie->uniquecharcount - charid ;
2096 }
2097 trie->trans[ pos ].next = SAFE_TRIE_NODENUM( trie->trans[ stateidx + charid ].next );
2098 trie->trans[ pos ].check = state;
2099 pos++;
2100 }
2101 }
2102 }
cc601c31 2103 trie->lasttrans = pos + 1;
c944940b
JH
2104 trie->states = (reg_trie_state *)
2105 PerlMemShared_realloc( trie->states, laststate
2106 * sizeof(reg_trie_state) );
a3621e74 2107 DEBUG_TRIE_COMPILE_MORE_r(
e4584336 2108 PerlIO_printf( Perl_debug_log,
3dab1dad
YO
2109 "%*sAlloc: %d Orig: %"IVdf" elements, Final:%"IVdf". Savings of %%%5.2f\n",
2110 (int)depth * 2 + 2,"",
2111 (int)( ( TRIE_CHARCOUNT(trie) + 1 ) * trie->uniquecharcount + 1 ),
5d7488b2
AL
2112 (IV)next_alloc,
2113 (IV)pos,
a3621e74
YO
2114 ( ( next_alloc - pos ) * 100 ) / (double)next_alloc );
2115 );
2116
2117 } /* end table compress */
2118 }
1e2e3d02
YO
2119 DEBUG_TRIE_COMPILE_MORE_r(
2120 PerlIO_printf(Perl_debug_log, "%*sStatecount:%"UVxf" Lasttrans:%"UVxf"\n",
2121 (int)depth * 2 + 2, "",
2122 (UV)trie->statecount,
2123 (UV)trie->lasttrans)
2124 );
cc601c31 2125 /* resize the trans array to remove unused space */
c944940b
JH
2126 trie->trans = (reg_trie_trans *)
2127 PerlMemShared_realloc( trie->trans, trie->lasttrans
2128 * sizeof(reg_trie_trans) );
a3621e74 2129
3b753521 2130 { /* Modify the program and insert the new TRIE node */
3dab1dad
YO
2131 U8 nodetype =(U8)(flags & 0xFF);
2132 char *str=NULL;
786e8c11 2133
07be1b83 2134#ifdef DEBUGGING
e62cc96a 2135 regnode *optimize = NULL;
7122b237
YO
2136#ifdef RE_TRACK_PATTERN_OFFSETS
2137
b57a0404
JH
2138 U32 mjd_offset = 0;
2139 U32 mjd_nodelen = 0;
7122b237
YO
2140#endif /* RE_TRACK_PATTERN_OFFSETS */
2141#endif /* DEBUGGING */
a3621e74 2142 /*
3dab1dad
YO
2143 This means we convert either the first branch or the first Exact,
2144 depending on whether the thing following (in 'last') is a branch
2145 or not and whther first is the startbranch (ie is it a sub part of
2146 the alternation or is it the whole thing.)
3b753521 2147 Assuming its a sub part we convert the EXACT otherwise we convert
3dab1dad 2148 the whole branch sequence, including the first.
a3621e74 2149 */
3dab1dad 2150 /* Find the node we are going to overwrite */
7f69552c 2151 if ( first != startbranch || OP( last ) == BRANCH ) {
07be1b83 2152 /* branch sub-chain */
3dab1dad 2153 NEXT_OFF( first ) = (U16)(last - first);
7122b237 2154#ifdef RE_TRACK_PATTERN_OFFSETS
07be1b83
YO
2155 DEBUG_r({
2156 mjd_offset= Node_Offset((convert));
2157 mjd_nodelen= Node_Length((convert));
2158 });
7122b237 2159#endif
7f69552c 2160 /* whole branch chain */
7122b237
YO
2161 }
2162#ifdef RE_TRACK_PATTERN_OFFSETS
2163 else {
7f69552c
YO
2164 DEBUG_r({
2165 const regnode *nop = NEXTOPER( convert );
2166 mjd_offset= Node_Offset((nop));
2167 mjd_nodelen= Node_Length((nop));
2168 });
07be1b83
YO
2169 }
2170 DEBUG_OPTIMISE_r(
2171 PerlIO_printf(Perl_debug_log, "%*sMJD offset:%"UVuf" MJD length:%"UVuf"\n",
2172 (int)depth * 2 + 2, "",
786e8c11 2173 (UV)mjd_offset, (UV)mjd_nodelen)
07be1b83 2174 );
7122b237 2175#endif
3dab1dad
YO
2176 /* But first we check to see if there is a common prefix we can
2177 split out as an EXACT and put in front of the TRIE node. */
2178 trie->startstate= 1;
55eed653 2179 if ( trie->bitmap && !widecharmap && !trie->jump ) {
3dab1dad 2180 U32 state;
1e2e3d02 2181 for ( state = 1 ; state < trie->statecount-1 ; state++ ) {
a3621e74 2182 U32 ofs = 0;
8e11feef
RGS
2183 I32 idx = -1;
2184 U32 count = 0;
2185 const U32 base = trie->states[ state ].trans.base;
a3621e74 2186
3dab1dad 2187 if ( trie->states[state].wordnum )
8e11feef 2188 count = 1;
a3621e74 2189
8e11feef 2190 for ( ofs = 0 ; ofs < trie->uniquecharcount ; ofs++ ) {
cc601c31
YO
2191 if ( ( base + ofs >= trie->uniquecharcount ) &&
2192 ( base + ofs - trie->uniquecharcount < trie->lasttrans ) &&
a3621e74
YO
2193 trie->trans[ base + ofs - trie->uniquecharcount ].check == state )
2194 {
3dab1dad 2195 if ( ++count > 1 ) {
2b8b4781 2196 SV **tmp = av_fetch( revcharmap, ofs, 0);
07be1b83 2197 const U8 *ch = (U8*)SvPV_nolen_const( *tmp );
8e11feef 2198 if ( state == 1 ) break;
3dab1dad
YO
2199 if ( count == 2 ) {
2200 Zero(trie->bitmap, ANYOF_BITMAP_SIZE, char);
2201 DEBUG_OPTIMISE_r(
8e11feef
RGS
2202 PerlIO_printf(Perl_debug_log,
2203 "%*sNew Start State=%"UVuf" Class: [",
2204 (int)depth * 2 + 2, "",
786e8c11 2205 (UV)state));
be8e71aa 2206 if (idx >= 0) {
2b8b4781 2207 SV ** const tmp = av_fetch( revcharmap, idx, 0);
be8e71aa 2208 const U8 * const ch = (U8*)SvPV_nolen_const( *tmp );
8e11feef 2209
3dab1dad 2210 TRIE_BITMAP_SET(trie,*ch);
8e11feef
RGS
2211 if ( folder )
2212 TRIE_BITMAP_SET(trie, folder[ *ch ]);
3dab1dad 2213 DEBUG_OPTIMISE_r(
f1f66076 2214 PerlIO_printf(Perl_debug_log, "%s", (char*)ch)
3dab1dad 2215 );
8e11feef
RGS
2216 }
2217 }
2218 TRIE_BITMAP_SET(trie,*ch);
2219 if ( folder )
2220 TRIE_BITMAP_SET(trie,folder[ *ch ]);
2221 DEBUG_OPTIMISE_r(PerlIO_printf( Perl_debug_log,"%s", ch));
2222 }
2223 idx = ofs;
2224 }
3dab1dad
YO
2225 }
2226 if ( count == 1 ) {
2b8b4781 2227 SV **tmp = av_fetch( revcharmap, idx, 0);
c490c714
YO
2228 STRLEN len;
2229 char *ch = SvPV( *tmp, len );
de734bd5
A
2230 DEBUG_OPTIMISE_r({
2231 SV *sv=sv_newmortal();
8e11feef
RGS
2232 PerlIO_printf( Perl_debug_log,
2233 "%*sPrefix State: %"UVuf" Idx:%"UVuf" Char='%s'\n",
2234 (int)depth * 2 + 2, "",
de734bd5
A
2235 (UV)state, (UV)idx,
2236 pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), 6,
2237 PL_colors[0], PL_colors[1],
2238 (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) |
2239 PERL_PV_ESCAPE_FIRSTCHAR
2240 )
2241 );
2242 });
3dab1dad
YO
2243 if ( state==1 ) {
2244 OP( convert ) = nodetype;
2245 str=STRING(convert);
2246 STR_LEN(convert)=0;
2247 }
c490c714
YO
2248 STR_LEN(convert) += len;
2249 while (len--)
de734bd5 2250 *str++ = *ch++;
8e11feef 2251 } else {
f9049ba1 2252#ifdef DEBUGGING
8e11feef
RGS
2253 if (state>1)
2254 DEBUG_OPTIMISE_r(PerlIO_printf( Perl_debug_log,"]\n"));
f9049ba1 2255#endif
8e11feef
RGS
2256 break;
2257 }
2258 }
2e64971a 2259 trie->prefixlen = (state-1);
3dab1dad 2260 if (str) {
8e11feef 2261 regnode *n = convert+NODE_SZ_STR(convert);
07be1b83 2262 NEXT_OFF(convert) = NODE_SZ_STR(convert);
8e11feef 2263 trie->startstate = state;
07be1b83
YO
2264 trie->minlen -= (state - 1);
2265 trie->maxlen -= (state - 1);
33809eae
JH
2266#ifdef DEBUGGING
2267 /* At least the UNICOS C compiler choked on this
2268 * being argument to DEBUG_r(), so let's just have
2269 * it right here. */
2270 if (
2271#ifdef PERL_EXT_RE_BUILD
2272 1
2273#else
2274 DEBUG_r_TEST
2275#endif
2276 ) {
2277 regnode *fix = convert;
2278 U32 word = trie->wordcount;
2279 mjd_nodelen++;
2280 Set_Node_Offset_Length(convert, mjd_offset, state - 1);
2281 while( ++fix < n ) {
2282 Set_Node_Offset_Length(fix, 0, 0);
2283 }
2284 while (word--) {
2285 SV ** const tmp = av_fetch( trie_words, word, 0 );
2286 if (tmp) {
2287 if ( STR_LEN(convert) <= SvCUR(*tmp) )
2288 sv_chop(*tmp, SvPV_nolen(*tmp) + STR_LEN(convert));
2289 else
2290 sv_chop(*tmp, SvPV_nolen(*tmp) + SvCUR(*tmp));
2291 }
2292 }
2293 }
2294#endif
8e11feef
RGS
2295 if (trie->maxlen) {
2296 convert = n;
2297 } else {
3dab1dad 2298 NEXT_OFF(convert) = (U16)(tail - convert);
a5ca303d 2299 DEBUG_r(optimize= n);
3dab1dad
YO
2300 }
2301 }
2302 }
a5ca303d
YO
2303 if (!jumper)
2304 jumper = last;
3dab1dad 2305 if ( trie->maxlen ) {
8e11feef
RGS
2306 NEXT_OFF( convert ) = (U16)(tail - convert);
2307 ARG_SET( convert, data_slot );
786e8c11
YO
2308 /* Store the offset to the first unabsorbed branch in
2309 jump[0], which is otherwise unused by the jump logic.
2310 We use this when dumping a trie and during optimisation. */
2311 if (trie->jump)
7f69552c 2312 trie->jump[0] = (U16)(nextbranch - convert);
a5ca303d 2313
6c48061a
YO
2314 /* If the start state is not accepting (meaning there is no empty string/NOTHING)
2315 * and there is a bitmap
2316 * and the first "jump target" node we found leaves enough room
2317 * then convert the TRIE node into a TRIEC node, with the bitmap
2318 * embedded inline in the opcode - this is hypothetically faster.
2319 */
2320 if ( !trie->states[trie->startstate].wordnum
2321 && trie->bitmap
2322 && ( (char *)jumper - (char *)convert) >= (int)sizeof(struct regnode_charclass) )
786e8c11
YO
2323 {
2324 OP( convert ) = TRIEC;
2325 Copy(trie->bitmap, ((struct regnode_charclass *)convert)->bitmap, ANYOF_BITMAP_SIZE, char);
446bd890 2326 PerlMemShared_free(trie->bitmap);
786e8c11
YO
2327 trie->bitmap= NULL;
2328 } else
2329 OP( convert ) = TRIE;
a3621e74 2330
3dab1dad
YO
2331 /* store the type in the flags */
2332 convert->flags = nodetype;
a5ca303d
YO
2333 DEBUG_r({
2334 optimize = convert
2335 + NODE_STEP_REGNODE
2336 + regarglen[ OP( convert ) ];
2337 });
2338 /* XXX We really should free up the resource in trie now,
2339 as we won't use them - (which resources?) dmq */
3dab1dad 2340 }
a3621e74 2341 /* needed for dumping*/
e62cc96a 2342 DEBUG_r(if (optimize) {
07be1b83 2343 regnode *opt = convert;
bcdf7404 2344
e62cc96a 2345 while ( ++opt < optimize) {
07be1b83
YO
2346 Set_Node_Offset_Length(opt,0,0);
2347 }
786e8c11
YO
2348 /*
2349 Try to clean up some of the debris left after the
2350 optimisation.
a3621e74 2351 */
786e8c11 2352 while( optimize < jumper ) {
07be1b83 2353 mjd_nodelen += Node_Length((optimize));
a3621e74 2354 OP( optimize ) = OPTIMIZED;
07be1b83 2355 Set_Node_Offset_Length(optimize,0,0);
a3621e74
YO
2356 optimize++;
2357 }
07be1b83 2358 Set_Node_Offset_Length(convert,mjd_offset,mjd_nodelen);
a3621e74
YO
2359 });
2360 } /* end node insert */
2e64971a
DM
2361
2362 /* Finish populating the prev field of the wordinfo array. Walk back
2363 * from each accept state until we find another accept state, and if
2364 * so, point the first word's .prev field at the second word. If the
2365 * second already has a .prev field set, stop now. This will be the
2366 * case either if we've already processed that word's accept state,
3b753521
FN
2367 * or that state had multiple words, and the overspill words were
2368 * already linked up earlier.
2e64971a
DM
2369 */
2370 {
2371 U16 word;
2372 U32 state;
2373 U16 prev;
2374
2375 for (word=1; word <= trie->wordcount; word++) {
2376 prev = 0;
2377 if (trie->wordinfo[word].prev)
2378 continue;
2379 state = trie->wordinfo[word].accept;
2380 while (state) {
2381 state = prev_states[state];
2382 if (!state)
2383 break;
2384 prev = trie->states[state].wordnum;
2385 if (prev)
2386 break;
2387 }
2388 trie->wordinfo[word].prev = prev;
2389 }
2390 Safefree(prev_states);
2391 }
2392
2393
2394 /* and now dump out the compressed format */
2395 DEBUG_TRIE_COMPILE_r(dump_trie(trie, widecharmap, revcharmap, depth+1));
2396
55eed653 2397 RExC_rxi->data->data[ data_slot + 1 ] = (void*)widecharmap;
2b8b4781
NC
2398#ifdef DEBUGGING
2399 RExC_rxi->data->data[ data_slot + TRIE_WORDS_OFFSET ] = (void*)trie_words;
2400 RExC_rxi->data->data[ data_slot + 3 ] = (void*)revcharmap;
2401#else
2402 SvREFCNT_dec(revcharmap);
07be1b83 2403#endif
786e8c11
YO
2404 return trie->jump
2405 ? MADE_JUMP_TRIE
2406 : trie->startstate>1
2407 ? MADE_EXACT_TRIE
2408 : MADE_TRIE;
2409}
2410
2411STATIC void
2412S_make_trie_failtable(pTHX_ RExC_state_t *pRExC_state, regnode *source, regnode *stclass, U32 depth)
2413{
3b753521 2414/* The Trie is constructed and compressed now so we can build a fail array if it's needed
786e8c11
YO
2415
2416 This is basically the Aho-Corasick algorithm. Its from exercise 3.31 and 3.32 in the
2417 "Red Dragon" -- Compilers, principles, techniques, and tools. Aho, Sethi, Ullman 1985/88
2418 ISBN 0-201-10088-6
2419
2420 We find the fail state for each state in the trie, this state is the longest proper
3b753521
FN
2421 suffix of the current state's 'word' that is also a proper prefix of another word in our
2422 trie. State 1 represents the word '' and is thus the default fail state. This allows
786e8c11
YO
2423 the DFA not to have to restart after its tried and failed a word at a given point, it
2424 simply continues as though it had been matching the other word in the first place.
2425 Consider
2426 'abcdgu'=~/abcdefg|cdgu/
2427 When we get to 'd' we are still matching the first word, we would encounter 'g' which would
3b753521
FN
2428 fail, which would bring us to the state representing 'd' in the second word where we would
2429 try 'g' and succeed, proceeding to match 'cdgu'.
786e8c11
YO
2430 */
2431 /* add a fail transition */
3251b653
NC
2432 const U32 trie_offset = ARG(source);
2433 reg_trie_data *trie=(reg_trie_data *)RExC_rxi->data->data[trie_offset];
786e8c11
YO
2434 U32 *q;
2435 const U32 ucharcount = trie->uniquecharcount;
1e2e3d02 2436 const U32 numstates = trie->statecount;
786e8c11
YO
2437 const U32 ubound = trie->lasttrans + ucharcount;
2438 U32 q_read = 0;
2439 U32 q_write = 0;
2440 U32 charid;
2441 U32 base = trie->states[ 1 ].trans.base;
2442 U32 *fail;
2443 reg_ac_data *aho;
2444 const U32 data_slot = add_data( pRExC_state, 1, "T" );
2445 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
2446
2447 PERL_ARGS_ASSERT_MAKE_TRIE_FAILTABLE;
786e8c11
YO
2448#ifndef DEBUGGING
2449 PERL_UNUSED_ARG(depth);
2450#endif
2451
2452
2453 ARG_SET( stclass, data_slot );
c944940b 2454 aho = (reg_ac_data *) PerlMemShared_calloc( 1, sizeof(reg_ac_data) );
f8fc2ecf 2455 RExC_rxi->data->data[ data_slot ] = (void*)aho;
3251b653 2456 aho->trie=trie_offset;
446bd890
NC
2457 aho->states=(reg_trie_state *)PerlMemShared_malloc( numstates * sizeof(reg_trie_state) );
2458 Copy( trie->states, aho->states, numstates, reg_trie_state );
786e8c11 2459 Newxz( q, numstates, U32);
c944940b 2460 aho->fail = (U32 *) PerlMemShared_calloc( numstates, sizeof(U32) );
786e8c11
YO
2461 aho->refcount = 1;
2462 fail = aho->fail;
2463 /* initialize fail[0..1] to be 1 so that we always have
2464 a valid final fail state */
2465 fail[ 0 ] = fail[ 1 ] = 1;
2466
2467 for ( charid = 0; charid < ucharcount ; charid++ ) {
2468 const U32 newstate = TRIE_TRANS_STATE( 1, base, ucharcount, charid, 0 );
2469 if ( newstate ) {
2470 q[ q_write ] = newstate;
2471 /* set to point at the root */
2472 fail[ q[ q_write++ ] ]=1;
2473 }
2474 }
2475 while ( q_read < q_write) {
2476 const U32 cur = q[ q_read++ % numstates ];
2477 base = trie->states[ cur ].trans.base;
2478
2479 for ( charid = 0 ; charid < ucharcount ; charid++ ) {
2480 const U32 ch_state = TRIE_TRANS_STATE( cur, base, ucharcount, charid, 1 );
2481 if (ch_state) {
2482 U32 fail_state = cur;
2483 U32 fail_base;
2484 do {
2485 fail_state = fail[ fail_state ];
2486 fail_base = aho->states[ fail_state ].trans.base;
2487 } while ( !TRIE_TRANS_STATE( fail_state, fail_base, ucharcount, charid, 1 ) );
2488
2489 fail_state = TRIE_TRANS_STATE( fail_state, fail_base, ucharcount, charid, 1 );
2490 fail[ ch_state ] = fail_state;
2491 if ( !aho->states[ ch_state ].wordnum && aho->states[ fail_state ].wordnum )
2492 {
2493 aho->states[ ch_state ].wordnum = aho->states[ fail_state ].wordnum;
2494 }
2495 q[ q_write++ % numstates] = ch_state;
2496 }
2497 }
2498 }
2499 /* restore fail[0..1] to 0 so that we "fall out" of the AC loop
2500 when we fail in state 1, this allows us to use the
2501 charclass scan to find a valid start char. This is based on the principle
2502 that theres a good chance the string being searched contains lots of stuff
2503 that cant be a start char.
2504 */
2505 fail[ 0 ] = fail[ 1 ] = 0;
2506 DEBUG_TRIE_COMPILE_r({
6d99fb9b
JH
2507 PerlIO_printf(Perl_debug_log,
2508 "%*sStclass Failtable (%"UVuf" states): 0",
2509 (int)(depth * 2), "", (UV)numstates
1e2e3d02 2510 );
786e8c11
YO
2511 for( q_read=1; q_read<numstates; q_read++ ) {
2512 PerlIO_printf(Perl_debug_log, ", %"UVuf, (UV)fail[q_read]);
2513 }
2514 PerlIO_printf(Perl_debug_log, "\n");
2515 });
2516 Safefree(q);
2517 /*RExC_seen |= REG_SEEN_TRIEDFA;*/
a3621e74
YO
2518}
2519
786e8c11 2520
a3621e74 2521/*
5d1c421c
JH
2522 * There are strange code-generation bugs caused on sparc64 by gcc-2.95.2.
2523 * These need to be revisited when a newer toolchain becomes available.
2524 */
2525#if defined(__sparc64__) && defined(__GNUC__)
2526# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 96)
2527# undef SPARC64_GCC_WORKAROUND
2528# define SPARC64_GCC_WORKAROUND 1
2529# endif
2530#endif
2531
07be1b83 2532#define DEBUG_PEEP(str,scan,depth) \
b515a41d 2533 DEBUG_OPTIMISE_r({if (scan){ \
07be1b83
YO
2534 SV * const mysv=sv_newmortal(); \
2535 regnode *Next = regnext(scan); \
2536 regprop(RExC_rx, mysv, scan); \
7f69552c 2537 PerlIO_printf(Perl_debug_log, "%*s" str ">%3d: %s (%d)\n", \
07be1b83
YO
2538 (int)depth*2, "", REG_NODE_NUM(scan), SvPV_nolen_const(mysv),\
2539 Next ? (REG_NODE_NUM(Next)) : 0 ); \
b515a41d 2540 }});
07be1b83 2541
1de06328 2542
bb914485
KW
2543/* The below joins as many adjacent EXACTish nodes as possible into a single
2544 * one, and looks for problematic sequences of characters whose folds vs.
2545 * non-folds have sufficiently different lengths, that the optimizer would be
2546 * fooled into rejecting legitimate matches of them, and the trie construction
2547 * code can't cope with them. The joining is only done if:
2548 * 1) there is room in the current conglomerated node to entirely contain the
2549 * next one.
2550 * 2) they are the exact same node type
2551 *
2552 * The adjacent nodes actually may be separated by NOTHING kind nodes, and
2553 * these get optimized out
2554 *
9d071ca8
KW
2555 * If there are problematic code sequences, *min_subtract is set to the delta
2556 * that the minimum size of the node can be less than its actual size. And,
2557 * the node type of the result is changed to reflect that it contains these
bb914485
KW
2558 * sequences.
2559 *
a0c4c608
KW
2560 * And *has_exactf_sharp_s is set to indicate whether or not the node is EXACTF
2561 * and contains LATIN SMALL LETTER SHARP S
f758bddf 2562 *
bb914485
KW
2563 * This is as good a place as any to discuss the design of handling these
2564 * problematic sequences. It's been wrong in Perl for a very long time. There
2565 * are three code points in Unicode whose folded lengths differ so much from
2566 * the un-folded lengths that it causes problems for the optimizer and trie
2567 * construction. Why only these are problematic, and not others where lengths
2568 * also differ is something I (khw) do not understand. New versions of Unicode
2569 * might add more such code points. Hopefully the logic in fold_grind.t that
287722f3 2570 * figures out what to test (in part by verifying that each size-combination
bb914485 2571 * gets tested) will catch any that do come along, so they can be added to the
287722f3
KW
2572 * special handling below. The chances of new ones are actually rather small,
2573 * as most, if not all, of the world's scripts that have casefolding have
2574 * already been encoded by Unicode. Also, a number of Unicode's decisions were
2575 * made to allow compatibility with pre-existing standards, and almost all of
2576 * those have already been dealt with. These would otherwise be the most
2577 * likely candidates for generating further tricky sequences. In other words,
2578 * Unicode by itself is unlikely to add new ones unless it is for compatibility
a0c4c608 2579 * with pre-existing standards, and there aren't many of those left.
bb914485
KW
2580 *
2581 * The previous designs for dealing with these involved assigning a special
2582 * node for them. This approach doesn't work, as evidenced by this example:
a0c4c608 2583 * "\xDFs" =~ /s\xDF/ui # Used to fail before these patches
bb914485
KW
2584 * Both these fold to "sss", but if the pattern is parsed to create a node of
2585 * that would match just the \xDF, it won't be able to handle the case where a
2586 * successful match would have to cross the node's boundary. The new approach
2587 * that hopefully generally solves the problem generates an EXACTFU_SS node
2588 * that is "sss".
2589 *
2590 * There are a number of components to the approach (a lot of work for just
2591 * three code points!):
2592 * 1) This routine examines each EXACTFish node that could contain the
9d071ca8
KW
2593 * problematic sequences. It returns in *min_subtract how much to
2594 * subtract from the the actual length of the string to get a real minimum
2595 * for one that could match it. This number is usually 0 except for the
2596 * problematic sequences. This delta is used by the caller to adjust the
2597 * min length of the match, and the delta between min and max, so that the
2598 * optimizer doesn't reject these possibilities based on size constraints.
bb914485
KW
2599 * 2) These sequences are not currently correctly handled by the trie code
2600 * either, so it changes the joined node type to ops that are not handled
fab2782b 2601 * by trie's, those new ops being EXACTFU_SS and EXACTFU_TRICKYFOLD.
bb914485
KW
2602 * 3) This is sufficient for the two Greek sequences (described below), but
2603 * the one involving the Sharp s (\xDF) needs more. The node type
2604 * EXACTFU_SS is used for an EXACTFU node that contains at least one "ss"
2605 * sequence in it. For non-UTF-8 patterns and strings, this is the only
2606 * case where there is a possible fold length change. That means that a
2607 * regular EXACTFU node without UTF-8 involvement doesn't have to concern
2608 * itself with length changes, and so can be processed faster. regexec.c
2609 * takes advantage of this. Generally, an EXACTFish node that is in UTF-8
2610 * is pre-folded by regcomp.c. This saves effort in regex matching.
2611 * However, probably mostly for historical reasons, the pre-folding isn't
a0c4c608
KW
2612 * done for non-UTF8 patterns (and it can't be for EXACTF and EXACTFL
2613 * nodes, as what they fold to isn't known until runtime.) The fold
2614 * possibilities for the non-UTF8 patterns are quite simple, except for
2615 * the sharp s. All the ones that don't involve a UTF-8 target string
2616 * are members of a fold-pair, and arrays are set up for all of them
2617 * that quickly find the other member of the pair. It might actually
2618 * be faster to pre-fold these, but it isn't currently done, except for
2619 * the sharp s. Code elsewhere in this file makes sure that it gets
2620 * folded to 'ss', even if the pattern isn't UTF-8. This avoids the
2621 * issues described in the next item.
bb914485
KW
2622 * 4) A problem remains for the sharp s in EXACTF nodes. Whether it matches
2623 * 'ss' or not is not knowable at compile time. It will match iff the
2624 * target string is in UTF-8, unlike the EXACTFU nodes, where it always
2625 * matches; and the EXACTFL and EXACTFA nodes where it never does. Thus
2626 * it can't be folded to "ss" at compile time, unlike EXACTFU does as
2627 * described in item 3). An assumption that the optimizer part of
2628 * regexec.c (probably unwittingly) makes is that a character in the
2629 * pattern corresponds to at most a single character in the target string.
2630 * (And I do mean character, and not byte here, unlike other parts of the
2631 * documentation that have never been updated to account for multibyte
2632 * Unicode.) This assumption is wrong only in this case, as all other
2633 * cases are either 1-1 folds when no UTF-8 is involved; or is true by
2634 * virtue of having this file pre-fold UTF-8 patterns. I'm
2635 * reluctant to try to change this assumption, so instead the code punts.
9d071ca8
KW
2636 * This routine examines EXACTF nodes for the sharp s, and returns a
2637 * boolean indicating whether or not the node is an EXACTF node that
2638 * contains a sharp s. When it is true, the caller sets a flag that later
2639 * causes the optimizer in this file to not set values for the floating
2640 * and fixed string lengths, and thus avoids the optimizer code in
2641 * regexec.c that makes the invalid assumption. Thus, there is no
2642 * optimization based on string lengths for EXACTF nodes that contain the
2643 * sharp s. This only happens for /id rules (which means the pattern
2644 * isn't in UTF-8).
bb914485 2645 */
1de06328 2646
9d071ca8 2647#define JOIN_EXACT(scan,min_subtract,has_exactf_sharp_s, flags) \
07be1b83 2648 if (PL_regkind[OP(scan)] == EXACT) \
9d071ca8 2649 join_exact(pRExC_state,(scan),(min_subtract),has_exactf_sharp_s, (flags),NULL,depth+1)
07be1b83 2650
be8e71aa 2651STATIC U32
9d071ca8 2652S_join_exact(pTHX_ RExC_state_t *pRExC_state, regnode *scan, UV *min_subtract, bool *has_exactf_sharp_s, U32 flags,regnode *val, U32 depth) {
07be1b83
YO
2653 /* Merge several consecutive EXACTish nodes into one. */
2654 regnode *n = regnext(scan);
2655 U32 stringok = 1;
2656 regnode *next = scan + NODE_SZ_STR(scan);
2657 U32 merged = 0;
2658 U32 stopnow = 0;
2659#ifdef DEBUGGING
2660 regnode *stop = scan;
72f13be8 2661 GET_RE_DEBUG_FLAGS_DECL;
f9049ba1 2662#else
d47053eb
RGS
2663 PERL_UNUSED_ARG(depth);
2664#endif
7918f24d
NC
2665
2666 PERL_ARGS_ASSERT_JOIN_EXACT;
d47053eb 2667#ifndef EXPERIMENTAL_INPLACESCAN
f9049ba1
SP
2668 PERL_UNUSED_ARG(flags);
2669 PERL_UNUSED_ARG(val);
07be1b83 2670#endif
07be1b83 2671 DEBUG_PEEP("join",scan,depth);
bb914485 2672
3f410cf6
KW
2673 /* Look through the subsequent nodes in the chain. Skip NOTHING, merge
2674 * EXACT ones that are mergeable to the current one. */
2675 while (n
2676 && (PL_regkind[OP(n)] == NOTHING
2677 || (stringok && OP(n) == OP(scan)))
07be1b83 2678 && NEXT_OFF(n)
3f410cf6
KW
2679 && NEXT_OFF(scan) + NEXT_OFF(n) < I16_MAX)
2680 {
07be1b83
YO
2681
2682 if (OP(n) == TAIL || n > next)
2683 stringok = 0;
2684 if (PL_regkind[OP(n)] == NOTHING) {
07be1b83
YO
2685 DEBUG_PEEP("skip:",n,depth);
2686 NEXT_OFF(scan) += NEXT_OFF(n);
2687 next = n + NODE_STEP_REGNODE;
2688#ifdef DEBUGGING
2689 if (stringok)
2690 stop = n;
2691#endif
2692 n = regnext(n);
2693 }
2694 else if (stringok) {
786e8c11 2695 const unsigned int oldl = STR_LEN(scan);
07be1b83 2696 regnode * const nnext = regnext(n);
b2230d39
KW
2697
2698 if (oldl + STR_LEN(n) > U8_MAX)
2699 break;
07be1b83
YO
2700
2701 DEBUG_PEEP("merg",n,depth);
07be1b83 2702 merged++;
b2230d39 2703
07be1b83
YO
2704 NEXT_OFF(scan) += NEXT_OFF(n);
2705 STR_LEN(scan) += STR_LEN(n);
2706 next = n + NODE_SZ_STR(n);
2707 /* Now we can overwrite *n : */
2708 Move(STRING(n), STRING(scan) + oldl, STR_LEN(n), char);
2709#ifdef DEBUGGING
2710 stop = next - 1;
2711#endif
2712 n = nnext;
2713 if (stopnow) break;
2714 }
2715
d47053eb
RGS
2716#ifdef EXPERIMENTAL_INPLACESCAN
2717 if (flags && !NEXT_OFF(n)) {
2718 DEBUG_PEEP("atch", val, depth);
2719 if (reg_off_by_arg[OP(n)]) {
2720 ARG_SET(n, val - n);
2721 }
2722 else {
2723 NEXT_OFF(n) = val - n;
2724 }
2725 stopnow = 1;
2726 }
07be1b83
YO
2727#endif
2728 }
2c2b7f86 2729
9d071ca8 2730 *min_subtract = 0;
f758bddf 2731 *has_exactf_sharp_s = FALSE;
f646642f 2732
3f410cf6
KW
2733 /* Here, all the adjacent mergeable EXACTish nodes have been merged. We
2734 * can now analyze for sequences of problematic code points. (Prior to
2735 * this final joining, sequences could have been split over boundaries, and
a0c4c608
KW
2736 * hence missed). The sequences only happen in folding, hence for any
2737 * non-EXACT EXACTish node */
86d6fcad 2738 if (OP(scan) != EXACT) {
f758bddf
KW
2739 U8 *s;
2740 U8 * s0 = (U8*) STRING(scan);
2741 U8 * const s_end = s0 + STR_LEN(scan);
2742
2743 /* The below is perhaps overboard, but this allows us to save a test
2744 * each time through the loop at the expense of a mask. This is
2745 * because on both EBCDIC and ASCII machines, 'S' and 's' differ by a
2746 * single bit. On ASCII they are 32 apart; on EBCDIC, they are 64.
2747 * This uses an exclusive 'or' to find that bit and then inverts it to
2748 * form a mask, with just a single 0, in the bit position where 'S' and
2749 * 's' differ. */
dbeb8947 2750 const U8 S_or_s_mask = (U8) ~ ('S' ^ 's');
f758bddf
KW
2751 const U8 s_masked = 's' & S_or_s_mask;
2752
2753 /* One pass is made over the node's string looking for all the
2754 * possibilities. to avoid some tests in the loop, there are two main
2755 * cases, for UTF-8 patterns (which can't have EXACTF nodes) and
2756 * non-UTF-8 */
2757 if (UTF) {
86d6fcad 2758
f758bddf
KW
2759 /* There are two problematic Greek code points in Unicode
2760 * casefolding
86d6fcad
KW
2761 *
2762 * U+0390 - GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS
2763 * U+03B0 - GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS
2764 *
2765 * which casefold to
2766 *
2767 * Unicode UTF-8
2768 *
2769 * U+03B9 U+0308 U+0301 0xCE 0xB9 0xCC 0x88 0xCC 0x81
2770 * U+03C5 U+0308 U+0301 0xCF 0x85 0xCC 0x88 0xCC 0x81
2771 *
2772 * This means that in case-insensitive matching (or "loose
2773 * matching", as Unicode calls it), an EXACTF of length six (the
2774 * UTF-8 encoded byte length of the above casefolded versions) can
2775 * match a target string of length two (the byte length of UTF-8
2776 * encoded U+0390 or U+03B0). This would rather mess up the
2777 * minimum length computation. (there are other code points that
2778 * also fold to these two sequences, but the delta is smaller)
2779 *
f758bddf
KW
2780 * If these sequences are found, the minimum length is decreased by
2781 * four (six minus two).
86d6fcad 2782 *
f758bddf
KW
2783 * Similarly, 'ss' may match the single char and byte LATIN SMALL
2784 * LETTER SHARP S. We decrease the min length by 1 for each
2785 * occurrence of 'ss' found */
3f410cf6 2786
e294cc5d 2787#ifdef EBCDIC /* RD tunifold greek 0390 and 03B0 */
f758bddf
KW
2788# define U390_first_byte 0xb4
2789 const U8 U390_tail[] = "\x68\xaf\x49\xaf\x42";
2790# define U3B0_first_byte 0xb5
2791 const U8 U3B0_tail[] = "\x46\xaf\x49\xaf\x42";
e294cc5d 2792#else
f758bddf
KW
2793# define U390_first_byte 0xce
2794 const U8 U390_tail[] = "\xb9\xcc\x88\xcc\x81";
2795# define U3B0_first_byte 0xcf
2796 const U8 U3B0_tail[] = "\x85\xcc\x88\xcc\x81";
e294cc5d 2797#endif
f758bddf
KW
2798 const U8 len = sizeof(U390_tail); /* (-1 for NUL; +1 for 1st byte;
2799 yields a net of 0 */
2800 /* Examine the string for one of the problematic sequences */
2801 for (s = s0;
2802 s < s_end - 1; /* Can stop 1 before the end, as minimum length
2803 * sequence we are looking for is 2 */
2804 s += UTF8SKIP(s))
86d6fcad 2805 {
bb914485 2806
f758bddf
KW
2807 /* Look for the first byte in each problematic sequence */
2808 switch (*s) {
2809 /* We don't have to worry about other things that fold to
2810 * 's' (such as the long s, U+017F), as all above-latin1
2811 * code points have been pre-folded */
2812 case 's':
2813 case 'S':
2814
a0c4c608
KW
2815 /* Current character is an 's' or 'S'. If next one is
2816 * as well, we have the dreaded sequence */
f758bddf
KW
2817 if (((*(s+1) & S_or_s_mask) == s_masked)
2818 /* These two node types don't have special handling
2819 * for 'ss' */
2820 && OP(scan) != EXACTFL && OP(scan) != EXACTFA)
2821 {
9d071ca8 2822 *min_subtract += 1;
f758bddf
KW
2823 OP(scan) = EXACTFU_SS;
2824 s++; /* No need to look at this character again */
2825 }
2826 break;
2827
2828 case U390_first_byte:
2829 if (s_end - s >= len
2830
2831 /* The 1's are because are skipping comparing the
2832 * first byte */
2833 && memEQ(s + 1, U390_tail, len - 1))
2834 {
2835 goto greek_sequence;
2836 }
2837 break;
2838
2839 case U3B0_first_byte:
2840 if (! (s_end - s >= len
2841 && memEQ(s + 1, U3B0_tail, len - 1)))
2842 {
2843 break;
2844 }
2845 greek_sequence:
9d071ca8 2846 *min_subtract += 4;
f758bddf
KW
2847
2848 /* This can't currently be handled by trie's, so change
2849 * the node type to indicate this. If EXACTFA and
2850 * EXACTFL were ever to be handled by trie's, this
2851 * would have to be changed. If this node has already
2852 * been changed to EXACTFU_SS in this loop, leave it as
2853 * is. (I (khw) think it doesn't matter in regexec.c
2854 * for UTF patterns, but no need to change it */
2855 if (OP(scan) == EXACTFU) {
fab2782b 2856 OP(scan) = EXACTFU_TRICKYFOLD;
f758bddf
KW
2857 }
2858 s += 6; /* We already know what this sequence is. Skip
2859 the rest of it */
2860 break;
bb914485
KW
2861 }
2862 }
2863 }
f758bddf 2864 else if (OP(scan) != EXACTFL && OP(scan) != EXACTFA) {
bb914485 2865
f758bddf
KW
2866 /* Here, the pattern is not UTF-8. We need to look only for the
2867 * 'ss' sequence, and in the EXACTF case, the sharp s, which can be
2868 * in the final position. Otherwise we can stop looking 1 byte
2869 * earlier because have to find both the first and second 's' */
2870 const U8* upper = (OP(scan) == EXACTF) ? s_end : s_end -1;
2871
2872 for (s = s0; s < upper; s++) {
2873 switch (*s) {
2874 case 'S':
2875 case 's':
2876 if (s_end - s > 1
2877 && ((*(s+1) & S_or_s_mask) == s_masked))
2878 {
9d071ca8 2879 *min_subtract += 1;
f758bddf
KW
2880
2881 /* EXACTF nodes need to know that the minimum
2882 * length changed so that a sharp s in the string
2883 * can match this ss in the pattern, but they
2884 * remain EXACTF nodes, as they are not trie'able,
2885 * so don't have to invent a new node type to
2886 * exclude them from the trie code */
2887 if (OP(scan) != EXACTF) {
2888 OP(scan) = EXACTFU_SS;
2889 }
2890 s++;
2891 }
2892 break;
2893 case LATIN_SMALL_LETTER_SHARP_S:
2894 if (OP(scan) == EXACTF) {
2895 *has_exactf_sharp_s = TRUE;
2896 }
2897 break;
86d6fcad
KW
2898 }
2899 }
2900 }
07be1b83 2901 }
3f410cf6 2902
07be1b83 2903#ifdef DEBUGGING
bb789b09
DM
2904 /* Allow dumping but overwriting the collection of skipped
2905 * ops and/or strings with fake optimized ops */
07be1b83
YO
2906 n = scan + NODE_SZ_STR(scan);
2907 while (n <= stop) {
bb789b09
DM
2908 OP(n) = OPTIMIZED;
2909 FLAGS(n) = 0;
2910 NEXT_OFF(n) = 0;
07be1b83
YO
2911 n++;
2912 }
2913#endif
2914 DEBUG_OPTIMISE_r(if (merged){DEBUG_PEEP("finl",scan,depth)});
2915 return stopnow;
2916}
2917
486ec47a 2918/* REx optimizer. Converts nodes into quicker variants "in place".
653099ff
GS
2919 Finds fixed substrings. */
2920
a0288114 2921/* Stops at toplevel WHILEM as well as at "last". At end *scanp is set
c277df42
IZ
2922 to the position after last scanned or to NULL. */
2923
40d049e4
YO
2924#define INIT_AND_WITHP \
2925 assert(!and_withp); \
2926 Newx(and_withp,1,struct regnode_charclass_class); \
2927 SAVEFREEPV(and_withp)
07be1b83 2928
b515a41d 2929/* this is a chain of data about sub patterns we are processing that
486ec47a 2930 need to be handled separately/specially in study_chunk. Its so
b515a41d
YO
2931 we can simulate recursion without losing state. */
2932struct scan_frame;
2933typedef struct scan_frame {
2934 regnode *last; /* last node to process in this frame */
2935 regnode *next; /* next node to process when last is reached */
2936 struct scan_frame *prev; /*previous frame*/
2937 I32 stop; /* what stopparen do we use */
2938} scan_frame;
2939
304ee84b
YO
2940
2941#define SCAN_COMMIT(s, data, m) scan_commit(s, data, m, is_inf)
2942
e1d1eefb
YO
2943#define CASE_SYNST_FNC(nAmE) \
2944case nAmE: \
2945 if (flags & SCF_DO_STCLASS_AND) { \
2946 for (value = 0; value < 256; value++) \
2947 if (!is_ ## nAmE ## _cp(value)) \
2948 ANYOF_BITMAP_CLEAR(data->start_class, value); \
2949 } \
2950 else { \
2951 for (value = 0; value < 256; value++) \
2952 if (is_ ## nAmE ## _cp(value)) \
2953 ANYOF_BITMAP_SET(data->start_class, value); \
2954 } \
2955 break; \
2956case N ## nAmE: \
2957 if (flags & SCF_DO_STCLASS_AND) { \
2958 for (value = 0; value < 256; value++) \
2959 if (is_ ## nAmE ## _cp(value)) \
2960 ANYOF_BITMAP_CLEAR(data->start_class, value); \
2961 } \
2962 else { \
2963 for (value = 0; value < 256; value++) \
2964 if (!is_ ## nAmE ## _cp(value)) \
2965 ANYOF_BITMAP_SET(data->start_class, value); \
2966 } \
2967 break
2968
2969
2970
76e3520e 2971STATIC I32
40d049e4 2972S_study_chunk(pTHX_ RExC_state_t *pRExC_state, regnode **scanp,
1de06328 2973 I32 *minlenp, I32 *deltap,
40d049e4
YO
2974 regnode *last,
2975 scan_data_t *data,
2976 I32 stopparen,
2977 U8* recursed,
2978 struct regnode_charclass_class *and_withp,
2979 U32 flags, U32 depth)
c277df42
IZ
2980 /* scanp: Start here (read-write). */
2981 /* deltap: Write maxlen-minlen here. */
2982 /* last: Stop before this one. */
40d049e4
YO
2983 /* data: string data about the pattern */
2984 /* stopparen: treat close N as END */
2985 /* recursed: which subroutines have we recursed into */
2986 /* and_withp: Valid if flags & SCF_DO_STCLASS_OR */
c277df42 2987{
97aff369 2988 dVAR;
c277df42
IZ
2989 I32 min = 0, pars = 0, code;
2990 regnode *scan = *scanp, *next;
2991 I32 delta = 0;
2992 int is_inf = (flags & SCF_DO_SUBSTR) && (data->flags & SF_IS_INF);
aca2d497 2993 int is_inf_internal = 0; /* The studied chunk is infinite */
c277df42
IZ
2994 I32 is_par = OP(scan) == OPEN ? ARG(scan) : 0;
2995 scan_data_t data_fake;
a3621e74 2996 SV *re_trie_maxbuff = NULL;
786e8c11 2997 regnode *first_non_open = scan;
e2e6a0f1 2998 I32 stopmin = I32_MAX;
8aa23a47 2999 scan_frame *frame = NULL;
a3621e74 3000 GET_RE_DEBUG_FLAGS_DECL;
8aa23a47 3001
7918f24d
NC
3002 PERL_ARGS_ASSERT_STUDY_CHUNK;
3003
13a24bad 3004#ifdef DEBUGGING
40d049e4 3005 StructCopy(&zero_scan_data, &data_fake, scan_data_t);
13a24bad 3006#endif
40d049e4 3007
786e8c11 3008 if ( depth == 0 ) {
40d049e4 3009 while (first_non_open && OP(first_non_open) == OPEN)
786e8c11
YO
3010 first_non_open=regnext(first_non_open);
3011 }
3012
b81d288d 3013
8aa23a47
YO
3014 fake_study_recurse:
3015 while ( scan && OP(scan) != END && scan < last ){
9d071ca8
KW
3016 UV min_subtract = 0; /* How much to subtract from the minimum node
3017 length to get a real minimum (because the
3018 folded version may be shorter) */
f758bddf 3019 bool has_exactf_sharp_s = FALSE;
8aa23a47 3020 /* Peephole optimizer: */
304ee84b 3021 DEBUG_STUDYDATA("Peep:", data,depth);
8aa23a47 3022 DEBUG_PEEP("Peep",scan,depth);
a0c4c608
KW
3023
3024 /* Its not clear to khw or hv why this is done here, and not in the
3025 * clauses that deal with EXACT nodes. khw's guess is that it's
3026 * because of a previous design */
9d071ca8 3027 JOIN_EXACT(scan,&min_subtract, &has_exactf_sharp_s, 0);
8aa23a47
YO
3028
3029 /* Follow the next-chain of the current node and optimize
3030 away all the NOTHINGs from it. */
3031 if (OP(scan) != CURLYX) {
3032 const int max = (reg_off_by_arg[OP(scan)]
3033 ? I32_MAX
3034 /* I32 may be smaller than U16 on CRAYs! */
3035 : (I32_MAX < U16_MAX ? I32_MAX : U16_MAX));
3036 int off = (reg_off_by_arg[OP(scan)] ? ARG(scan) : NEXT_OFF(scan));
3037 int noff;
3038 regnode *n = scan;
686b73d4 3039
8aa23a47
YO
3040 /* Skip NOTHING and LONGJMP. */
3041 while ((n = regnext(n))
3042 && ((PL_regkind[OP(n)] == NOTHING && (noff = NEXT_OFF(n)))
3043 || ((OP(n) == LONGJMP) && (noff = ARG(n))))
3044 && off + noff < max)
3045 off += noff;
3046 if (reg_off_by_arg[OP(scan)])
3047 ARG(scan) = off;
3048 else
3049 NEXT_OFF(scan) = off;
3050 }
a3621e74 3051
c277df42 3052
8aa23a47
YO
3053
3054 /* The principal pseudo-switch. Cannot be a switch, since we
3055 look into several different things. */
3056 if (OP(scan) == BRANCH || OP(scan) == BRANCHJ
3057 || OP(scan) == IFTHEN) {
3058 next = regnext(scan);
3059 code = OP(scan);
3060 /* demq: the op(next)==code check is to see if we have "branch-branch" AFAICT */
686b73d4 3061
8aa23a47
YO
3062 if (OP(next) == code || code == IFTHEN) {
3063 /* NOTE - There is similar code to this block below for handling
3064 TRIE nodes on a re-study. If you change stuff here check there
3065 too. */
3066 I32 max1 = 0, min1 = I32_MAX, num = 0;
3067 struct regnode_charclass_class accum;
3068 regnode * const startbranch=scan;
686b73d4 3069
8aa23a47 3070 if (flags & SCF_DO_SUBSTR)
304ee84b 3071 SCAN_COMMIT(pRExC_state, data, minlenp); /* Cannot merge strings after this. */
8aa23a47 3072 if (flags & SCF_DO_STCLASS)
e755fd73 3073 cl_init_zero(pRExC_state, &accum);
8aa23a47
YO
3074
3075 while (OP(scan) == code) {
3076 I32 deltanext, minnext, f = 0, fake;
3077 struct regnode_charclass_class this_class;
3078
3079 num++;
3080 data_fake.flags = 0;
3081 if (data) {
3082 data_fake.whilem_c = data->whilem_c;
3083 data_fake.last_closep = data->last_closep;
3084 }
3085 else
3086 data_fake.last_closep = &fake;
58e23c8d
YO
3087
3088 data_fake.pos_delta = delta;
8aa23a47
YO
3089 next = regnext(scan);
3090 scan = NEXTOPER(scan);
3091 if (code != BRANCH)
c277df42 3092 scan = NEXTOPER(scan);
8aa23a47 3093 if (flags & SCF_DO_STCLASS) {
e755fd73 3094 cl_init(pRExC_state, &this_class);
8aa23a47
YO
3095 data_fake.start_class = &this_class;
3096 f = SCF_DO_STCLASS_AND;
58e23c8d 3097 }
8aa23a47
YO
3098 if (flags & SCF_WHILEM_VISITED_POS)
3099 f |= SCF_WHILEM_VISITED_POS;
3100
3101 /* we suppose the run is continuous, last=next...*/
3102 minnext = study_chunk(pRExC_state, &scan, minlenp, &deltanext,
3103 next, &data_fake,
3104 stopparen, recursed, NULL, f,depth+1);
3105 if (min1 > minnext)
3106 min1 = minnext;
3107 if (max1 < minnext + deltanext)
3108 max1 = minnext + deltanext;
3109 if (deltanext == I32_MAX)
3110 is_inf = is_inf_internal = 1;
3111 scan = next;
3112 if (data_fake.flags & (SF_HAS_PAR|SF_IN_PAR))
3113 pars++;
3114 if (data_fake.flags & SCF_SEEN_ACCEPT) {
3115 if ( stopmin > minnext)
3116 stopmin = min + min1;
3117 flags &= ~SCF_DO_SUBSTR;
3118 if (data)
3119 data->flags |= SCF_SEEN_ACCEPT;
3120 }
3121 if (data) {
3122 if (data_fake.flags & SF_HAS_EVAL)
3123 data->flags |= SF_HAS_EVAL;
3124 data->whilem_c = data_fake.whilem_c;
3dab1dad 3125 }
8aa23a47 3126 if (flags & SCF_DO_STCLASS)
3fffb88a 3127 cl_or(pRExC_state, &accum, &this_class);
8aa23a47
YO
3128 }
3129 if (code == IFTHEN && num < 2) /* Empty ELSE branch */
3130 min1 = 0;
3131 if (flags & SCF_DO_SUBSTR) {
3132 data->pos_min += min1;
3133 data->pos_delta += max1 - min1;
3134 if (max1 != min1 || is_inf)
3135 data->longest = &(data->longest_float);
3136 }
3137 min += min1;
3138 delta += max1 - min1;
3139 if (flags & SCF_DO_STCLASS_OR) {
3fffb88a 3140 cl_or(pRExC_state, data->start_class, &accum);
8aa23a47
YO
3141 if (min1) {
3142 cl_and(data->start_class, and_withp);
3143 flags &= ~SCF_DO_STCLASS;
653099ff 3144 }
8aa23a47
YO
3145 }
3146 else if (flags & SCF_DO_STCLASS_AND) {
3147 if (min1) {
3148 cl_and(data->start_class, &accum);
3149 flags &= ~SCF_DO_STCLASS;
de0c8cb8 3150 }
8aa23a47
YO
3151 else {
3152 /* Switch to OR mode: cache the old value of
3153 * data->start_class */
3154 INIT_AND_WITHP;
3155 StructCopy(data->start_class, and_withp,
3156 struct regnode_charclass_class);
3157 flags &= ~SCF_DO_STCLASS_AND;
3158 StructCopy(&accum, data->start_class,
3159 struct regnode_charclass_class);
3160 flags |= SCF_DO_STCLASS_OR;
3161 data->start_class->flags |= ANYOF_EOS;
de0c8cb8 3162 }
8aa23a47 3163 }
a3621e74 3164
8aa23a47
YO
3165 if (PERL_ENABLE_TRIE_OPTIMISATION && OP( startbranch ) == BRANCH ) {
3166 /* demq.
a3621e74 3167
8aa23a47
YO
3168 Assuming this was/is a branch we are dealing with: 'scan' now
3169 points at the item that follows the branch sequence, whatever
3170 it is. We now start at the beginning of the sequence and look
3171 for subsequences of
a3621e74 3172
8aa23a47
YO
3173 BRANCH->EXACT=>x1
3174 BRANCH->EXACT=>x2
3175 tail
a3621e74 3176
8aa23a47 3177 which would be constructed from a pattern like /A|LIST|OF|WORDS/
a3621e74 3178
486ec47a 3179 If we can find such a subsequence we need to turn the first
8aa23a47
YO
3180 element into a trie and then add the subsequent branch exact
3181 strings to the trie.
a3621e74 3182
8aa23a47 3183 We have two cases
a3621e74 3184
3b753521 3185 1. patterns where the whole set of branches can be converted.
a3621e74 3186
8aa23a47 3187 2. patterns where only a subset can be converted.
a3621e74 3188
8aa23a47
YO
3189 In case 1 we can replace the whole set with a single regop
3190 for the trie. In case 2 we need to keep the start and end
3b753521 3191 branches so
a3621e74 3192
8aa23a47
YO
3193 'BRANCH EXACT; BRANCH EXACT; BRANCH X'
3194 becomes BRANCH TRIE; BRANCH X;
786e8c11 3195
8aa23a47
YO
3196 There is an additional case, that being where there is a
3197 common prefix, which gets split out into an EXACT like node
3198 preceding the TRIE node.
a3621e74 3199
8aa23a47
YO
3200 If x(1..n)==tail then we can do a simple trie, if not we make
3201 a "jump" trie, such that when we match the appropriate word
486ec47a 3202 we "jump" to the appropriate tail node. Essentially we turn
8aa23a47 3203 a nested if into a case structure of sorts.
b515a41d 3204
8aa23a47 3205 */
686b73d4 3206
8aa23a47
YO
3207 int made=0;
3208 if (!re_trie_maxbuff) {
3209 re_trie_maxbuff = get_sv(RE_TRIE_MAXBUF_NAME, 1);
3210 if (!SvIOK(re_trie_maxbuff))
3211 sv_setiv(re_trie_maxbuff, RE_TRIE_MAXBUF_INIT);
3212 }
3213 if ( SvIV(re_trie_maxbuff)>=0 ) {
3214 regnode *cur;
3215 regnode *first = (regnode *)NULL;
3216 regnode *last = (regnode *)NULL;
3217 regnode *tail = scan;
fab2782b 3218 U8 trietype = 0;
8aa23a47 3219 U32 count=0;
a3621e74
YO
3220
3221#ifdef DEBUGGING
8aa23a47 3222 SV * const mysv = sv_newmortal(); /* for dumping */
a3621e74 3223#endif
8aa23a47
YO
3224 /* var tail is used because there may be a TAIL
3225 regop in the way. Ie, the exacts will point to the
3226 thing following the TAIL, but the last branch will
3227 point at the TAIL. So we advance tail. If we
3228 have nested (?:) we may have to move through several
3229 tails.
3230 */
3231
3232 while ( OP( tail ) == TAIL ) {
3233 /* this is the TAIL generated by (?:) */
3234 tail = regnext( tail );
3235 }
a3621e74 3236
8aa23a47
YO
3237
3238 DEBUG_OPTIMISE_r({
3239 regprop(RExC_rx, mysv, tail );
3240 PerlIO_printf( Perl_debug_log, "%*s%s%s\n",
3241 (int)depth * 2 + 2, "",
3242 "Looking for TRIE'able sequences. Tail node is: ",
3243 SvPV_nolen_const( mysv )
3244 );
3245 });
3246
3247 /*
3248
fab2782b
YO
3249 Step through the branches
3250 cur represents each branch,
3251 noper is the first thing to be matched as part of that branch
3252 noper_next is the regnext() of that node.
3253
3254 We normally handle a case like this /FOO[xyz]|BAR[pqr]/
3255 via a "jump trie" but we also support building with NOJUMPTRIE,
3256 which restricts the trie logic to structures like /FOO|BAR/.
3257
3258 If noper is a trieable nodetype then the branch is a possible optimization
3259 target. If we are building under NOJUMPTRIE then we require that noper_next
3260 is the same as scan (our current position in the regex program).
3261
3262 Once we have two or more consecutive such branches we can create a
3263 trie of the EXACT's contents and stitch it in place into the program.
3264
3265 If the sequence represents all of the branches in the alternation we
3266 replace the entire thing with a single TRIE node.
3267
3268 Otherwise when it is a subsequence we need to stitch it in place and
3269 replace only the relevant branches. This means the first branch has
3270 to remain as it is used by the alternation logic, and its next pointer,
3271 and needs to be repointed at the item on the branch chain following
3272 the last branch we have optimized away.
3273
3274 This could be either a BRANCH, in which case the subsequence is internal,
3275 or it could be the item following the branch sequence in which case the
3276 subsequence is at the end (which does not necessarily mean the first node
3277 is the start of the alternation).
3278
3279 TRIE_TYPE(X) is a define which maps the optype to a trietype.
3280
3281 optype | trietype
3282 ----------------+-----------
3283 NOTHING | NOTHING
3284 EXACT | EXACT
3285 EXACTFU | EXACTFU
3286 EXACTFU_SS | EXACTFU
3287 EXACTFU_TRICKYFOLD | EXACTFU
3288 EXACTFA | 0
3289
8aa23a47
YO
3290
3291 */
fab2782b
YO
3292#define TRIE_TYPE(X) ( ( NOTHING == (X) ) ? NOTHING : \
3293 ( EXACT == (X) ) ? EXACT : \
3294 ( EXACTFU == (X) || EXACTFU_SS == (X) || EXACTFU_TRICKYFOLD == (X) ) ? EXACTFU : \
3295 0 )
8aa23a47
YO
3296
3297 /* dont use tail as the end marker for this traverse */
3298 for ( cur = startbranch ; cur != scan ; cur = regnext( cur ) ) {
3299 regnode * const noper = NEXTOPER( cur );
fab2782b
YO
3300 U8 noper_type = OP( noper );
3301 U8 noper_trietype = TRIE_TYPE( noper_type );
b515a41d 3302#if defined(DEBUGGING) || defined(NOJUMPTRIE)
8aa23a47 3303 regnode * const noper_next = regnext( noper );
b515a41d
YO
3304#endif
3305
8aa23a47
YO
3306 DEBUG_OPTIMISE_r({
3307 regprop(RExC_rx, mysv, cur);
3308 PerlIO_printf( Perl_debug_log, "%*s- %s (%d)",
3309 (int)depth * 2 + 2,"", SvPV_nolen_const( mysv ), REG_NODE_NUM(cur) );
3310
3311 regprop(RExC_rx, mysv, noper);
3312 PerlIO_printf( Perl_debug_log, " -> %s",
3313 SvPV_nolen_const(mysv));
3314
3315 if ( noper_next ) {
3316 regprop(RExC_rx, mysv, noper_next );
3317 PerlIO_printf( Perl_debug_log,"\t=> %s\t",
3318 SvPV_nolen_const(mysv));
3319 }
3320 PerlIO_printf( Perl_debug_log, "(First==%d,Last==%d,Cur==%d)\n",
3321 REG_NODE_NUM(first), REG_NODE_NUM(last), REG_NODE_NUM(cur) );
3322 });
fab2782b
YO
3323
3324 /* Is noper a trieable nodetype that can be merged with the
3325 * current trie (if there is one)? */
3326 if ( noper_trietype
3327 &&
3328 (
a40630bf
YO
3329 /* XXX: Currently we cannot allow a NOTHING node to be the first element
3330 * of a TRIEABLE sequence, Otherwise we will overwrite the regop following
3331 * the NOTHING with the TRIE regop later on. This is because a NOTHING node
3332 * is only one regnode wide, and a TRIE is two regnodes. An example of a
3333 * problematic pattern is: "x" =~ /\A(?>(?:(?:)A|B|C?x))\z/
3334 * At a later point of time we can somewhat workaround this by handling
3335 * NOTHING -> EXACT sequences as generated by /(?:)A|(?:)B/ type patterns,
3336 * as we can effectively ignore the NOTHING regop in that case.
3337 * This clause, which allows NOTHING to start a sequence is left commented
3338 * out as a reference.
3339 * - Yves
3340
3341 ( noper_trietype == NOTHING)
3342 || ( trietype == NOTHING )
3343 */
3344 ( noper_trietype == NOTHING && trietype )
3345 || ( trietype == noper_trietype )
fab2782b 3346 )
786e8c11 3347#ifdef NOJUMPTRIE
8aa23a47 3348 && noper_next == tail
786e8c11 3349#endif
8aa23a47
YO
3350 && count < U16_MAX)
3351 {
fab2782b
YO
3352 /* Handle mergable triable node
3353 * Either we are the first node in a new trieable sequence,
3354 * in which case we do some bookkeeping, otherwise we update
3355 * the end pointer. */
8aa23a47 3356 count++;
fab2782b
YO
3357 if ( !first ) {
3358 first = cur;
3359 trietype = noper_trietype;
8aa23a47 3360 } else {
fab2782b
YO
3361 if ( trietype == NOTHING )
3362 trietype = noper_trietype;
8aa23a47
YO
3363 last = cur;
3364 }
fab2782b
YO
3365 } /* end handle mergable triable node */
3366 else {
3367 /* handle unmergable node -
3368 * noper may either be a triable node which can not be tried
3369 * together with the current trie, or a non triable node */
729aaeb5
YO
3370 if ( last ) {
3371 /* If last is set and trietype is not NOTHING then we have found
3372 * at least two triable branch sequences in a row of a similar
3373 * trietype so we can turn them into a trie. If/when we
3374 * allow NOTHING to start a trie sequence this condition will be
3375 * required, and it isn't expensive so we leave it in for now. */
3376 if ( trietype != NOTHING )
3377 make_trie( pRExC_state,
3378 startbranch, first, cur, tail, count,
3379 trietype, depth+1 );
fab2782b 3380 last = NULL; /* note: we clear/update first, trietype etc below, so we dont do it here */
8aa23a47 3381 }
fab2782b 3382 if ( noper_trietype
786e8c11 3383#ifdef NOJUMPTRIE
8aa23a47 3384 && noper_next == tail
786e8c11 3385#endif
8aa23a47 3386 ){
fab2782b 3387 /* noper is triable, so we can start a new trie sequence */
8aa23a47
YO
3388 count = 1;
3389 first = cur;
fab2782b
YO
3390 trietype = noper_trietype;
3391 } else if (first) {
3392 /* if we already saw a first but the current node is not triable then we have
3393 * to reset the first information. */
8aa23a47
YO
3394 count = 0;
3395 first = NULL;
fab2782b 3396 trietype = 0;
8aa23a47 3397 }
fab2782b
YO
3398 } /* end handle unmergable node */
3399 } /* loop over branches */
8aa23a47
YO
3400 DEBUG_OPTIMISE_r({
3401 regprop(RExC_rx, mysv, cur);
3402 PerlIO_printf( Perl_debug_log,
3403 "%*s- %s (%d) <SCAN FINISHED>\n", (int)depth * 2 + 2,
3404 "", SvPV_nolen_const( mysv ),REG_NODE_NUM(cur));
3405
3406 });
fab2782b
YO
3407 if ( last && trietype != NOTHING ) {
3408 /* the last branch of the sequence was part of a trie,
3409 * so we have to construct it here outside of the loop
3410 */
3411 made= make_trie( pRExC_state, startbranch, first, scan, tail, count, trietype, depth+1 );
686b73d4 3412#ifdef TRIE_STUDY_OPT
8aa23a47
YO
3413 if ( ((made == MADE_EXACT_TRIE &&
3414 startbranch == first)
3415 || ( first_non_open == first )) &&
3416 depth==0 ) {
3417 flags |= SCF_TRIE_RESTUDY;
3418 if ( startbranch == first
3419 && scan == tail )
3420 {
3421 RExC_seen &=~REG_TOP_LEVEL_BRANCHES;
3422 }
3423 }
3dab1dad 3424#endif
fab2782b
YO
3425 } /* end if ( last) */
3426 } /* TRIE_MAXBUF is non zero */
8aa23a47
YO
3427
3428 } /* do trie */
3429
653099ff 3430 }
8aa23a47
YO
3431 else if ( code == BRANCHJ ) { /* single branch is optimized. */
3432 scan = NEXTOPER(NEXTOPER(scan));
3433 } else /* single branch is optimized. */
3434 scan = NEXTOPER(scan);
3435 continue;
3436 } else if (OP(scan) == SUSPEND || OP(scan) == GOSUB || OP(scan) == GOSTART) {
3437 scan_frame *newframe = NULL;
3438 I32 paren;
3439 regnode *start;
3440 regnode *end;
3441
3442 if (OP(scan) != SUSPEND) {
3443 /* set the pointer */
3444 if (OP(scan) == GOSUB) {
3445 paren = ARG(scan);
3446 RExC_recurse[ARG2L(scan)] = scan;
3447 start = RExC_open_parens[paren-1];
3448 end = RExC_close_parens[paren-1];
3449 } else {
3450 paren = 0;
f8fc2ecf 3451 start = RExC_rxi->program + 1;
8aa23a47
YO
3452 end = RExC_opend;
3453 }
3454 if (!recursed) {
3455 Newxz(recursed, (((RExC_npar)>>3) +1), U8);
3456 SAVEFREEPV(recursed);
3457 }
3458 if (!PAREN_TEST(recursed,paren+1)) {
3459 PAREN_SET(recursed,paren+1);
3460 Newx(newframe,1,scan_frame);
3461 } else {
3462 if (flags & SCF_DO_SUBSTR) {
304ee84b 3463 SCAN_COMMIT(pRExC_state,data,minlenp);
8aa23a47
YO
3464 data->longest = &(data->longest_float);
3465 }
3466 is_inf = is_inf_internal = 1;
3467 if (flags & SCF_DO_STCLASS_OR) /* Allow everything */
3fffb88a 3468 cl_anything(pRExC_state, data->start_class);
8aa23a47
YO
3469 flags &= ~SCF_DO_STCLASS;
3470 }
3471 } else {
3472 Newx(newframe,1,scan_frame);
3473 paren = stopparen;
3474 start = scan+2;
3475 end = regnext(scan);
3476 }
3477 if (newframe) {
3478 assert(start);
3479 assert(end);
3480 SAVEFREEPV(newframe);
3481 newframe->next = regnext(scan);
3482 newframe->last = last;
3483 newframe->stop = stopparen;
3484 newframe->prev = frame;
3485
3486 frame = newframe;
3487 scan = start;
3488 stopparen = paren;
3489 last = end;
3490
3491 continue;
3492 }
3493 }
3494 else if (OP(scan) == EXACT) {
3495 I32 l = STR_LEN(scan);
3496 UV uc;
3497 if (UTF) {
3498 const U8 * const s = (U8*)STRING(scan);
4b88fb76 3499 uc = utf8_to_uvchr_buf(s, s + l, NULL);
8aa23a47 3500 l = utf8_length(s, s + l);
8aa23a47
YO
3501 } else {
3502 uc = *((U8*)STRING(scan));
3503 }
3504 min += l;
3505 if (flags & SCF_DO_SUBSTR) { /* Update longest substr. */
3506 /* The code below prefers earlier match for fixed
3507 offset, later match for variable offset. */
3508 if (data->last_end == -1) { /* Update the start info. */
3509 data->last_start_min = data->pos_min;
3510 data->last_start_max = is_inf
3511 ? I32_MAX : data->pos_min + data->pos_delta;
b515a41d 3512 }
8aa23a47
YO
3513 sv_catpvn(data->last_found, STRING(scan), STR_LEN(scan));
3514 if (UTF)
3515 SvUTF8_on(data->last_found);
3516 {
3517 SV * const sv = data->last_found;
3518 MAGIC * const mg = SvUTF8(sv) && SvMAGICAL(sv) ?
3519 mg_find(sv, PERL_MAGIC_utf8) : NULL;
3520 if (mg && mg->mg_len >= 0)
3521 mg->mg_len += utf8_length((U8*)STRING(scan),
3522 (U8*)STRING(scan)+STR_LEN(scan));
b515a41d 3523 }
8aa23a47
YO
3524 data->last_end = data->pos_min + l;
3525 data->pos_min += l; /* As in the first entry. */
3526 data->flags &= ~SF_BEFORE_EOL;
3527 }
3528 if (flags & SCF_DO_STCLASS_AND) {
3529 /* Check whether it is compatible with what we know already! */
3530 int compat = 1;
3531
54251c2e 3532
486ec47a 3533 /* If compatible, we or it in below. It is compatible if is
54251c2e
KW
3534 * in the bitmp and either 1) its bit or its fold is set, or 2)
3535 * it's for a locale. Even if there isn't unicode semantics
3536 * here, at runtime there may be because of matching against a
3537 * utf8 string, so accept a possible false positive for
3538 * latin1-range folds */
8aa23a47
YO
3539 if (uc >= 0x100 ||
3540 (!(data->start_class->flags & (ANYOF_CLASS | ANYOF_LOCALE))
3541 && !ANYOF_BITMAP_TEST(data->start_class, uc)
39065660 3542 && (!(data->start_class->flags & ANYOF_LOC_NONBITMAP_FOLD)
54251c2e 3543 || !ANYOF_BITMAP_TEST(data->start_class, PL_fold_latin1[uc])))
8aa23a47 3544 )
d18bf9dc 3545 {
8aa23a47 3546 compat = 0;
d18bf9dc 3547 }
8aa23a47
YO
3548 ANYOF_CLASS_ZERO(data->start_class);
3549 ANYOF_BITMAP_ZERO(data->start_class);
3550 if (compat)
3551 ANYOF_BITMAP_SET(data->start_class, uc);
d18bf9dc
KW
3552 else if (uc >= 0x100) {
3553 int i;
3554
3555 /* Some Unicode code points fold to the Latin1 range; as
3556 * XXX temporary code, instead of figuring out if this is
3557 * one, just assume it is and set all the start class bits
3558 * that could be some such above 255 code point's fold
3559 * which will generate fals positives. As the code
3560 * elsewhere that does compute the fold settles down, it
3561 * can be extracted out and re-used here */
3562 for (i = 0; i < 256; i++){
3563 if (_HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(i)) {
3564 ANYOF_BITMAP_SET(data->start_class, i);
3565 }
3566 }
3567 }
8aa23a47
YO
3568 data->start_class->flags &= ~ANYOF_EOS;
3569 if (uc < 0x100)
3570 data->start_class->flags &= ~ANYOF_UNICODE_ALL;
3571 }
3572 else if (flags & SCF_DO_STCLASS_OR) {
3573 /* false positive possible if the class is case-folded */
3574 if (uc < 0x100)
3575 ANYOF_BITMAP_SET(data->start_class, uc);
3576 else
3577 data->start_class->flags |= ANYOF_UNICODE_ALL;
3578 data->start_class->flags &= ~ANYOF_EOS;
3579 cl_and(data->start_class, and_withp);
3580 }
3581 flags &= ~SCF_DO_STCLASS;
3582 }
3583 else if (PL_regkind[OP(scan)] == EXACT) { /* But OP != EXACT! */
3584 I32 l = STR_LEN(scan);
3585 UV uc = *((U8*)STRING(scan));
3586
3587 /* Search for fixed substrings supports EXACT only. */
3588 if (flags & SCF_DO_SUBSTR) {
3589 assert(data);
304ee84b 3590 SCAN_COMMIT(pRExC_state, data, minlenp);
8aa23a47
YO
3591 }
3592 if (UTF) {
3593 const U8 * const s = (U8 *)STRING(scan);
4b88fb76 3594 uc = utf8_to_uvchr_buf(s, s + l, NULL);
8aa23a47 3595 l = utf8_length(s, s + l);
8aa23a47 3596 }
f758bddf
KW
3597 else if (has_exactf_sharp_s) {
3598 RExC_seen |= REG_SEEN_EXACTF_SHARP_S;
bb914485 3599 }
9d071ca8 3600 min += l - min_subtract;
f646642f
KW
3601 if (min < 0) {
3602 min = 0;
3603 }
9d071ca8 3604 delta += min_subtract;
f646642f 3605 if (flags & SCF_DO_SUBSTR) {
9d071ca8 3606 data->pos_min += l - min_subtract;
f646642f
KW
3607 if (data->pos_min < 0) {
3608 data->pos_min = 0;
3609 }