Commit | Line | Data |
---|---|---|
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" | |
afda64e8 | 84 | EXTERN_C const struct regexp_engine my_reg_engine; |
54df2634 NC |
85 | #else |
86 | # include "regcomp.h" | |
87 | #endif | |
a687059c | 88 | |
04e98a4d | 89 | #include "dquote_static.c" |
26faadbd | 90 | #include "charclass_invlists.h" |
81e983c1 | 91 | #include "inline_invlist.c" |
1b0f46bf | 92 | #include "unicode_constants.h" |
04e98a4d | 93 | |
538e84ed KW |
94 | #define HAS_NONLATIN1_FOLD_CLOSURE(i) \ |
95 | _HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(i) | |
f12c0118 KW |
96 | #define HAS_NONLATIN1_SIMPLE_FOLD_CLOSURE(i) \ |
97 | _HAS_NONLATIN1_SIMPLE_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(i) | |
26faadbd | 98 | #define IS_NON_FINAL_FOLD(c) _IS_NON_FINAL_FOLD_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c) |
2c61f163 | 99 | #define IS_IN_SOME_FOLD_L1(c) _IS_IN_SOME_FOLD_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c) |
94dc5c2d | 100 | |
a687059c LW |
101 | #ifndef STATIC |
102 | #define STATIC static | |
103 | #endif | |
104 | ||
b1603ef8 | 105 | |
09b2b2e6 | 106 | struct RExC_state_t { |
514a91f1 DM |
107 | U32 flags; /* RXf_* are we folding, multilining? */ |
108 | U32 pm_flags; /* PMf_* stuff from the calling PMOP */ | |
830247a4 | 109 | char *precomp; /* uncompiled string. */ |
288b8c02 | 110 | REGEXP *rx_sv; /* The SV that is the regexp. */ |
f8fc2ecf | 111 | regexp *rx; /* perl core regexp structure */ |
538e84ed KW |
112 | regexp_internal *rxi; /* internal data for regexp object |
113 | pprivate field */ | |
fac92740 | 114 | char *start; /* Start of input for compile */ |
830247a4 IZ |
115 | char *end; /* End of input for compile */ |
116 | char *parse; /* Input-scan pointer. */ | |
ea3daa5d | 117 | SSize_t whilem_seen; /* number of WHILEM in this expr */ |
fac92740 | 118 | regnode *emit_start; /* Start of emitted-code area */ |
538e84ed KW |
119 | regnode *emit_bound; /* First regnode outside of the |
120 | allocated space */ | |
f7c7e32a DM |
121 | regnode *emit; /* Code-emit pointer; if = &emit_dummy, |
122 | implies compiling, so don't emit */ | |
9a81a976 KW |
123 | regnode_ssc emit_dummy; /* placeholder for emit to point to; |
124 | large enough for the largest | |
125 | non-EXACTish node, so can use it as | |
126 | scratch in pass1 */ | |
830247a4 IZ |
127 | I32 naughty; /* How bad is this pattern? */ |
128 | I32 sawback; /* Did we see \1, ...? */ | |
129 | U32 seen; | |
ea3daa5d | 130 | SSize_t size; /* Code size. */ |
538e84ed KW |
131 | I32 npar; /* Capture buffer count, (OPEN) plus |
132 | one. ("par" 0 is the whole | |
133 | pattern)*/ | |
134 | I32 nestroot; /* root parens we are in - used by | |
135 | accept */ | |
830247a4 IZ |
136 | I32 extralen; |
137 | I32 seen_zerolen; | |
40d049e4 YO |
138 | regnode **open_parens; /* pointers to open parens */ |
139 | regnode **close_parens; /* pointers to close parens */ | |
140 | regnode *opend; /* END node in program */ | |
02daf0ab YO |
141 | I32 utf8; /* whether the pattern is utf8 or not */ |
142 | I32 orig_utf8; /* whether the pattern was originally in utf8 */ | |
143 | /* XXX use this for future optimisation of case | |
144 | * where pattern must be upgraded to utf8. */ | |
e40e74fe KW |
145 | I32 uni_semantics; /* If a d charset modifier should use unicode |
146 | rules, even if the pattern is not in | |
147 | utf8 */ | |
81714fb9 | 148 | HV *paren_names; /* Paren names */ |
538e84ed | 149 | |
40d049e4 YO |
150 | regnode **recurse; /* Recurse regops */ |
151 | I32 recurse_count; /* Number of recurse regops */ | |
538e84ed KW |
152 | U8 *study_chunk_recursed; /* bitmap of which parens we have moved |
153 | through */ | |
09a65838 | 154 | U32 study_chunk_recursed_bytes; /* bytes in bitmap */ |
b57e4118 | 155 | I32 in_lookbehind; |
4624b182 | 156 | I32 contains_locale; |
cfafade5 | 157 | I32 contains_i; |
bb3f3ed2 | 158 | I32 override_recoding; |
9d53c457 | 159 | I32 in_multi_char_class; |
3d2bd50a | 160 | struct reg_code_block *code_blocks; /* positions of literal (?{}) |
68e2671b | 161 | within pattern */ |
b1603ef8 DM |
162 | int num_code_blocks; /* size of code_blocks[] */ |
163 | int code_index; /* next code_blocks[] slot */ | |
ee273784 | 164 | SSize_t maxlen; /* mininum possible number of chars in string to match */ |
dc6d7f5c | 165 | #ifdef ADD_TO_REGEXEC |
830247a4 IZ |
166 | char *starttry; /* -Dr: where regtry was called. */ |
167 | #define RExC_starttry (pRExC_state->starttry) | |
168 | #endif | |
d24ca0c5 | 169 | SV *runtime_code_qr; /* qr with the runtime code blocks */ |
3dab1dad | 170 | #ifdef DEBUGGING |
be8e71aa | 171 | const char *lastparse; |
3dab1dad | 172 | I32 lastnum; |
1f1031fe | 173 | AV *paren_name_list; /* idx -> name */ |
3dab1dad YO |
174 | #define RExC_lastparse (pRExC_state->lastparse) |
175 | #define RExC_lastnum (pRExC_state->lastnum) | |
1f1031fe | 176 | #define RExC_paren_name_list (pRExC_state->paren_name_list) |
3dab1dad | 177 | #endif |
09b2b2e6 | 178 | }; |
830247a4 | 179 | |
e2509266 | 180 | #define RExC_flags (pRExC_state->flags) |
514a91f1 | 181 | #define RExC_pm_flags (pRExC_state->pm_flags) |
830247a4 | 182 | #define RExC_precomp (pRExC_state->precomp) |
288b8c02 | 183 | #define RExC_rx_sv (pRExC_state->rx_sv) |
830247a4 | 184 | #define RExC_rx (pRExC_state->rx) |
f8fc2ecf | 185 | #define RExC_rxi (pRExC_state->rxi) |
fac92740 | 186 | #define RExC_start (pRExC_state->start) |
830247a4 IZ |
187 | #define RExC_end (pRExC_state->end) |
188 | #define RExC_parse (pRExC_state->parse) | |
189 | #define RExC_whilem_seen (pRExC_state->whilem_seen) | |
7122b237 | 190 | #ifdef RE_TRACK_PATTERN_OFFSETS |
538e84ed KW |
191 | #define RExC_offsets (pRExC_state->rxi->u.offsets) /* I am not like the |
192 | others */ | |
7122b237 | 193 | #endif |
830247a4 | 194 | #define RExC_emit (pRExC_state->emit) |
f7c7e32a | 195 | #define RExC_emit_dummy (pRExC_state->emit_dummy) |
fac92740 | 196 | #define RExC_emit_start (pRExC_state->emit_start) |
3b57cd43 | 197 | #define RExC_emit_bound (pRExC_state->emit_bound) |
830247a4 IZ |
198 | #define RExC_naughty (pRExC_state->naughty) |
199 | #define RExC_sawback (pRExC_state->sawback) | |
200 | #define RExC_seen (pRExC_state->seen) | |
201 | #define RExC_size (pRExC_state->size) | |
ee273784 | 202 | #define RExC_maxlen (pRExC_state->maxlen) |
830247a4 | 203 | #define RExC_npar (pRExC_state->npar) |
e2e6a0f1 | 204 | #define RExC_nestroot (pRExC_state->nestroot) |
830247a4 IZ |
205 | #define RExC_extralen (pRExC_state->extralen) |
206 | #define RExC_seen_zerolen (pRExC_state->seen_zerolen) | |
1aa99e6b | 207 | #define RExC_utf8 (pRExC_state->utf8) |
e40e74fe | 208 | #define RExC_uni_semantics (pRExC_state->uni_semantics) |
02daf0ab | 209 | #define RExC_orig_utf8 (pRExC_state->orig_utf8) |
40d049e4 YO |
210 | #define RExC_open_parens (pRExC_state->open_parens) |
211 | #define RExC_close_parens (pRExC_state->close_parens) | |
212 | #define RExC_opend (pRExC_state->opend) | |
81714fb9 | 213 | #define RExC_paren_names (pRExC_state->paren_names) |
40d049e4 YO |
214 | #define RExC_recurse (pRExC_state->recurse) |
215 | #define RExC_recurse_count (pRExC_state->recurse_count) | |
09a65838 | 216 | #define RExC_study_chunk_recursed (pRExC_state->study_chunk_recursed) |
538e84ed KW |
217 | #define RExC_study_chunk_recursed_bytes \ |
218 | (pRExC_state->study_chunk_recursed_bytes) | |
b57e4118 | 219 | #define RExC_in_lookbehind (pRExC_state->in_lookbehind) |
4624b182 | 220 | #define RExC_contains_locale (pRExC_state->contains_locale) |
cfafade5 | 221 | #define RExC_contains_i (pRExC_state->contains_i) |
9d53c457 KW |
222 | #define RExC_override_recoding (pRExC_state->override_recoding) |
223 | #define RExC_in_multi_char_class (pRExC_state->in_multi_char_class) | |
830247a4 | 224 | |
cde0cee5 | 225 | |
a687059c LW |
226 | #define ISMULT1(c) ((c) == '*' || (c) == '+' || (c) == '?') |
227 | #define ISMULT2(s) ((*s) == '*' || (*s) == '+' || (*s) == '?' || \ | |
412f55bb | 228 | ((*s) == '{' && regcurly(s))) |
a687059c LW |
229 | |
230 | /* | |
231 | * Flags to be passed up and down. | |
232 | */ | |
a687059c | 233 | #define WORST 0 /* Worst case. */ |
a3b492c3 | 234 | #define HASWIDTH 0x01 /* Known to match non-null strings. */ |
fda99bee | 235 | |
e64f369d | 236 | /* Simple enough to be STAR/PLUS operand; in an EXACTish node must be a single |
2fd92675 KW |
237 | * character. (There needs to be a case: in the switch statement in regexec.c |
238 | * for any node marked SIMPLE.) Note that this is not the same thing as | |
239 | * REGNODE_SIMPLE */ | |
fda99bee | 240 | #define SIMPLE 0x02 |
e64f369d | 241 | #define SPSTART 0x04 /* Starts with * or + */ |
8d9c2815 NC |
242 | #define POSTPONED 0x08 /* (?1),(?&name), (??{...}) or similar */ |
243 | #define TRYAGAIN 0x10 /* Weeded out a declaration. */ | |
244 | #define RESTART_UTF8 0x20 /* Restart, need to calcuate sizes as UTF-8 */ | |
a687059c | 245 | |
3dab1dad YO |
246 | #define REG_NODE_NUM(x) ((x) ? (int)((x)-RExC_emit_start) : -1) |
247 | ||
07be1b83 YO |
248 | /* whether trie related optimizations are enabled */ |
249 | #if PERL_ENABLE_EXTENDED_TRIE_OPTIMISATION | |
250 | #define TRIE_STUDY_OPT | |
786e8c11 | 251 | #define FULL_TRIE_STUDY |
07be1b83 YO |
252 | #define TRIE_STCLASS |
253 | #endif | |
1de06328 YO |
254 | |
255 | ||
40d049e4 YO |
256 | |
257 | #define PBYTE(u8str,paren) ((U8*)(u8str))[(paren) >> 3] | |
258 | #define PBITVAL(paren) (1 << ((paren) & 7)) | |
259 | #define PAREN_TEST(u8str,paren) ( PBYTE(u8str,paren) & PBITVAL(paren)) | |
260 | #define PAREN_SET(u8str,paren) PBYTE(u8str,paren) |= PBITVAL(paren) | |
261 | #define PAREN_UNSET(u8str,paren) PBYTE(u8str,paren) &= (~PBITVAL(paren)) | |
262 | ||
bbd61b5f | 263 | #define REQUIRE_UTF8 STMT_START { \ |
8d9c2815 NC |
264 | if (!UTF) { \ |
265 | *flagp = RESTART_UTF8; \ | |
266 | return NULL; \ | |
267 | } \ | |
bbd61b5f | 268 | } STMT_END |
40d049e4 | 269 | |
f19b1a63 KW |
270 | /* This converts the named class defined in regcomp.h to its equivalent class |
271 | * number defined in handy.h. */ | |
272 | #define namedclass_to_classnum(class) ((int) ((class) / 2)) | |
273 | #define classnum_to_namedclass(classnum) ((classnum) * 2) | |
274 | ||
de92f5e6 KW |
275 | #define _invlist_union_complement_2nd(a, b, output) \ |
276 | _invlist_union_maybe_complement_2nd(a, b, TRUE, output) | |
277 | #define _invlist_intersection_complement_2nd(a, b, output) \ | |
278 | _invlist_intersection_maybe_complement_2nd(a, b, TRUE, output) | |
279 | ||
1de06328 YO |
280 | /* About scan_data_t. |
281 | ||
282 | During optimisation we recurse through the regexp program performing | |
283 | various inplace (keyhole style) optimisations. In addition study_chunk | |
284 | and scan_commit populate this data structure with information about | |
538e84ed | 285 | what strings MUST appear in the pattern. We look for the longest |
3b753521 | 286 | string that must appear at a fixed location, and we look for the |
1de06328 YO |
287 | longest string that may appear at a floating location. So for instance |
288 | in the pattern: | |
538e84ed | 289 | |
1de06328 | 290 | /FOO[xX]A.*B[xX]BAR/ |
538e84ed | 291 | |
1de06328 YO |
292 | Both 'FOO' and 'A' are fixed strings. Both 'B' and 'BAR' are floating |
293 | strings (because they follow a .* construct). study_chunk will identify | |
294 | both FOO and BAR as being the longest fixed and floating strings respectively. | |
538e84ed | 295 | |
1de06328 | 296 | The strings can be composites, for instance |
538e84ed | 297 | |
1de06328 | 298 | /(f)(o)(o)/ |
538e84ed | 299 | |
1de06328 | 300 | will result in a composite fixed substring 'foo'. |
538e84ed | 301 | |
1de06328 | 302 | For each string some basic information is maintained: |
538e84ed | 303 | |
1de06328 YO |
304 | - offset or min_offset |
305 | This is the position the string must appear at, or not before. | |
306 | It also implicitly (when combined with minlenp) tells us how many | |
3b753521 FN |
307 | characters must match before the string we are searching for. |
308 | Likewise when combined with minlenp and the length of the string it | |
538e84ed | 309 | tells us how many characters must appear after the string we have |
1de06328 | 310 | found. |
538e84ed | 311 | |
1de06328 YO |
312 | - max_offset |
313 | Only used for floating strings. This is the rightmost point that | |
ea3daa5d | 314 | the string can appear at. If set to SSize_t_MAX it indicates that the |
1de06328 | 315 | string can occur infinitely far to the right. |
538e84ed | 316 | |
1de06328 | 317 | - minlenp |
2d608413 KW |
318 | A pointer to the minimum number of characters of the pattern that the |
319 | string was found inside. This is important as in the case of positive | |
538e84ed | 320 | lookahead or positive lookbehind we can have multiple patterns |
1de06328 | 321 | involved. Consider |
538e84ed | 322 | |
1de06328 | 323 | /(?=FOO).*F/ |
538e84ed | 324 | |
1de06328 YO |
325 | The minimum length of the pattern overall is 3, the minimum length |
326 | of the lookahead part is 3, but the minimum length of the part that | |
538e84ed | 327 | will actually match is 1. So 'FOO's minimum length is 3, but the |
1de06328 | 328 | minimum length for the F is 1. This is important as the minimum length |
538e84ed | 329 | is used to determine offsets in front of and behind the string being |
1de06328 | 330 | looked for. Since strings can be composites this is the length of the |
486ec47a | 331 | pattern at the time it was committed with a scan_commit. Note that |
1de06328 | 332 | the length is calculated by study_chunk, so that the minimum lengths |
538e84ed | 333 | are not known until the full pattern has been compiled, thus the |
1de06328 | 334 | pointer to the value. |
538e84ed | 335 | |
1de06328 | 336 | - lookbehind |
538e84ed | 337 | |
1de06328 | 338 | In the case of lookbehind the string being searched for can be |
538e84ed | 339 | offset past the start point of the final matching string. |
1de06328 YO |
340 | If this value was just blithely removed from the min_offset it would |
341 | invalidate some of the calculations for how many chars must match | |
342 | before or after (as they are derived from min_offset and minlen and | |
538e84ed | 343 | the length of the string being searched for). |
1de06328 YO |
344 | When the final pattern is compiled and the data is moved from the |
345 | scan_data_t structure into the regexp structure the information | |
538e84ed KW |
346 | about lookbehind is factored in, with the information that would |
347 | have been lost precalculated in the end_shift field for the | |
1de06328 YO |
348 | associated string. |
349 | ||
350 | The fields pos_min and pos_delta are used to store the minimum offset | |
538e84ed | 351 | and the delta to the maximum offset at the current point in the pattern. |
1de06328 YO |
352 | |
353 | */ | |
2c2d71f5 JH |
354 | |
355 | typedef struct scan_data_t { | |
1de06328 YO |
356 | /*I32 len_min; unused */ |
357 | /*I32 len_delta; unused */ | |
49f55535 | 358 | SSize_t pos_min; |
ea3daa5d | 359 | SSize_t pos_delta; |
2c2d71f5 | 360 | SV *last_found; |
ea3daa5d | 361 | SSize_t last_end; /* min value, <0 unless valid. */ |
49f55535 | 362 | SSize_t last_start_min; |
ea3daa5d | 363 | SSize_t last_start_max; |
1de06328 YO |
364 | SV **longest; /* Either &l_fixed, or &l_float. */ |
365 | SV *longest_fixed; /* longest fixed string found in pattern */ | |
49f55535 | 366 | SSize_t offset_fixed; /* offset where it starts */ |
ea3daa5d | 367 | SSize_t *minlen_fixed; /* pointer to the minlen relevant to the string */ |
1de06328 YO |
368 | I32 lookbehind_fixed; /* is the position of the string modfied by LB */ |
369 | SV *longest_float; /* longest floating string found in pattern */ | |
49f55535 | 370 | SSize_t offset_float_min; /* earliest point in string it can appear */ |
ea3daa5d FC |
371 | SSize_t offset_float_max; /* latest point in string it can appear */ |
372 | SSize_t *minlen_float; /* pointer to the minlen relevant to the string */ | |
49f55535 | 373 | SSize_t lookbehind_float; /* is the pos of the string modified by LB */ |
2c2d71f5 JH |
374 | I32 flags; |
375 | I32 whilem_c; | |
49f55535 | 376 | SSize_t *last_closep; |
b8f7bb16 | 377 | regnode_ssc *start_class; |
2c2d71f5 JH |
378 | } scan_data_t; |
379 | ||
c02c3054 KW |
380 | /* The below is perhaps overboard, but this allows us to save a test at the |
381 | * expense of a mask. This is because on both EBCDIC and ASCII machines, 'A' | |
382 | * and 'a' differ by a single bit; the same with the upper and lower case of | |
383 | * all other ASCII-range alphabetics. On ASCII platforms, they are 32 apart; | |
384 | * on EBCDIC, they are 64. This uses an exclusive 'or' to find that bit and | |
385 | * then inverts it to form a mask, with just a single 0, in the bit position | |
386 | * where the upper- and lowercase differ. XXX There are about 40 other | |
387 | * instances in the Perl core where this micro-optimization could be used. | |
388 | * Should decide if maintenance cost is worse, before changing those | |
389 | * | |
390 | * Returns a boolean as to whether or not 'v' is either a lowercase or | |
391 | * uppercase instance of 'c', where 'c' is in [A-Za-z]. If 'c' is a | |
392 | * compile-time constant, the generated code is better than some optimizing | |
393 | * compilers figure out, amounting to a mask and test. The results are | |
394 | * meaningless if 'c' is not one of [A-Za-z] */ | |
395 | #define isARG2_lower_or_UPPER_ARG1(c, v) \ | |
396 | (((v) & ~('A' ^ 'a')) == ((c) & ~('A' ^ 'a'))) | |
397 | ||
a687059c | 398 | /* |
e50aee73 | 399 | * Forward declarations for pregcomp()'s friends. |
a687059c | 400 | */ |
a0d0e21e | 401 | |
27da23d5 | 402 | static const scan_data_t zero_scan_data = |
1de06328 | 403 | { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ,0}; |
c277df42 IZ |
404 | |
405 | #define SF_BEFORE_EOL (SF_BEFORE_SEOL|SF_BEFORE_MEOL) | |
07be1b83 YO |
406 | #define SF_BEFORE_SEOL 0x0001 |
407 | #define SF_BEFORE_MEOL 0x0002 | |
c277df42 IZ |
408 | #define SF_FIX_BEFORE_EOL (SF_FIX_BEFORE_SEOL|SF_FIX_BEFORE_MEOL) |
409 | #define SF_FL_BEFORE_EOL (SF_FL_BEFORE_SEOL|SF_FL_BEFORE_MEOL) | |
410 | ||
44e3dfd2 BF |
411 | #define SF_FIX_SHIFT_EOL (+2) |
412 | #define SF_FL_SHIFT_EOL (+4) | |
c277df42 IZ |
413 | |
414 | #define SF_FIX_BEFORE_SEOL (SF_BEFORE_SEOL << SF_FIX_SHIFT_EOL) | |
415 | #define SF_FIX_BEFORE_MEOL (SF_BEFORE_MEOL << SF_FIX_SHIFT_EOL) | |
416 | ||
417 | #define SF_FL_BEFORE_SEOL (SF_BEFORE_SEOL << SF_FL_SHIFT_EOL) | |
418 | #define SF_FL_BEFORE_MEOL (SF_BEFORE_MEOL << SF_FL_SHIFT_EOL) /* 0x20 */ | |
07be1b83 YO |
419 | #define SF_IS_INF 0x0040 |
420 | #define SF_HAS_PAR 0x0080 | |
421 | #define SF_IN_PAR 0x0100 | |
422 | #define SF_HAS_EVAL 0x0200 | |
423 | #define SCF_DO_SUBSTR 0x0400 | |
653099ff GS |
424 | #define SCF_DO_STCLASS_AND 0x0800 |
425 | #define SCF_DO_STCLASS_OR 0x1000 | |
426 | #define SCF_DO_STCLASS (SCF_DO_STCLASS_AND|SCF_DO_STCLASS_OR) | |
e1901655 | 427 | #define SCF_WHILEM_VISITED_POS 0x2000 |
c277df42 | 428 | |
786e8c11 | 429 | #define SCF_TRIE_RESTUDY 0x4000 /* Do restudy? */ |
538e84ed | 430 | #define SCF_SEEN_ACCEPT 0x8000 |
688e0391 | 431 | #define SCF_TRIE_DOING_RESTUDY 0x10000 |
07be1b83 | 432 | |
43fead97 | 433 | #define UTF cBOOL(RExC_utf8) |
00b27cfc KW |
434 | |
435 | /* The enums for all these are ordered so things work out correctly */ | |
a62b1201 | 436 | #define LOC (get_regex_charset(RExC_flags) == REGEX_LOCALE_CHARSET) |
538e84ed KW |
437 | #define DEPENDS_SEMANTICS (get_regex_charset(RExC_flags) \ |
438 | == REGEX_DEPENDS_CHARSET) | |
00b27cfc | 439 | #define UNI_SEMANTICS (get_regex_charset(RExC_flags) == REGEX_UNICODE_CHARSET) |
538e84ed KW |
440 | #define AT_LEAST_UNI_SEMANTICS (get_regex_charset(RExC_flags) \ |
441 | >= REGEX_UNICODE_CHARSET) | |
442 | #define ASCII_RESTRICTED (get_regex_charset(RExC_flags) \ | |
443 | == REGEX_ASCII_RESTRICTED_CHARSET) | |
444 | #define AT_LEAST_ASCII_RESTRICTED (get_regex_charset(RExC_flags) \ | |
445 | >= REGEX_ASCII_RESTRICTED_CHARSET) | |
446 | #define ASCII_FOLD_RESTRICTED (get_regex_charset(RExC_flags) \ | |
447 | == REGEX_ASCII_MORE_RESTRICTED_CHARSET) | |
a62b1201 | 448 | |
43fead97 | 449 | #define FOLD cBOOL(RExC_flags & RXf_PMf_FOLD) |
a0ed51b3 | 450 | |
f2c2a6ab KW |
451 | /* For programs that want to be strictly Unicode compatible by dying if any |
452 | * attempt is made to match a non-Unicode code point against a Unicode | |
453 | * property. */ | |
454 | #define ALWAYS_WARN_SUPER ckDEAD(packWARN(WARN_NON_UNICODE)) | |
455 | ||
93733859 | 456 | #define OOB_NAMEDCLASS -1 |
b8c5462f | 457 | |
8e661ac5 KW |
458 | /* There is no code point that is out-of-bounds, so this is problematic. But |
459 | * its only current use is to initialize a variable that is always set before | |
460 | * looked at. */ | |
461 | #define OOB_UNICODE 0xDEADBEEF | |
462 | ||
a0ed51b3 LW |
463 | #define CHR_SVLEN(sv) (UTF ? sv_len_utf8(sv) : SvCUR(sv)) |
464 | #define CHR_DIST(a,b) (UTF ? utf8_distance(a,b) : a - b) | |
465 | ||
8615cb43 | 466 | |
b45f050a JF |
467 | /* length of regex to show in messages that don't mark a position within */ |
468 | #define RegexLengthToShowInErrorMessages 127 | |
469 | ||
470 | /* | |
471 | * If MARKER[12] are adjusted, be sure to adjust the constants at the top | |
472 | * of t/op/regmesg.t, the tests in t/op/re_tests, and those in | |
473 | * op/pragma/warn/regcomp. | |
474 | */ | |
7253e4e3 RK |
475 | #define MARKER1 "<-- HERE" /* marker as it appears in the description */ |
476 | #define MARKER2 " <-- HERE " /* marker as it appears within the regex */ | |
b81d288d | 477 | |
538e84ed KW |
478 | #define REPORT_LOCATION " in regex; marked by " MARKER1 \ |
479 | " in m/%"UTF8f MARKER2 "%"UTF8f"/" | |
b45f050a | 480 | |
c1d900c3 BF |
481 | #define REPORT_LOCATION_ARGS(offset) \ |
482 | UTF8fARG(UTF, offset, RExC_precomp), \ | |
483 | UTF8fARG(UTF, RExC_end - RExC_precomp - offset, RExC_precomp + offset) | |
484 | ||
b45f050a JF |
485 | /* |
486 | * Calls SAVEDESTRUCTOR_X if needed, then calls Perl_croak with the given | |
487 | * arg. Show regex, up to a maximum length. If it's too long, chop and add | |
488 | * "...". | |
489 | */ | |
58e23c8d | 490 | #define _FAIL(code) STMT_START { \ |
bfed75c6 | 491 | const char *ellipses = ""; \ |
ccb2c380 MP |
492 | IV len = RExC_end - RExC_precomp; \ |
493 | \ | |
494 | if (!SIZE_ONLY) \ | |
a5e7bc51 | 495 | SAVEFREESV(RExC_rx_sv); \ |
ccb2c380 MP |
496 | if (len > RegexLengthToShowInErrorMessages) { \ |
497 | /* chop 10 shorter than the max, to ensure meaning of "..." */ \ | |
498 | len = RegexLengthToShowInErrorMessages - 10; \ | |
499 | ellipses = "..."; \ | |
500 | } \ | |
58e23c8d | 501 | code; \ |
ccb2c380 | 502 | } STMT_END |
8615cb43 | 503 | |
58e23c8d | 504 | #define FAIL(msg) _FAIL( \ |
c1d900c3 BF |
505 | Perl_croak(aTHX_ "%s in regex m/%"UTF8f"%s/", \ |
506 | msg, UTF8fARG(UTF, len, RExC_precomp), ellipses)) | |
58e23c8d YO |
507 | |
508 | #define FAIL2(msg,arg) _FAIL( \ | |
c1d900c3 BF |
509 | Perl_croak(aTHX_ msg " in regex m/%"UTF8f"%s/", \ |
510 | arg, UTF8fARG(UTF, len, RExC_precomp), ellipses)) | |
58e23c8d | 511 | |
b45f050a | 512 | /* |
b45f050a JF |
513 | * Simple_vFAIL -- like FAIL, but marks the current location in the scan |
514 | */ | |
ccb2c380 | 515 | #define Simple_vFAIL(m) STMT_START { \ |
a28509cc | 516 | const IV offset = RExC_parse - RExC_precomp; \ |
ccb2c380 | 517 | Perl_croak(aTHX_ "%s" REPORT_LOCATION, \ |
c1d900c3 | 518 | m, REPORT_LOCATION_ARGS(offset)); \ |
ccb2c380 | 519 | } STMT_END |
b45f050a JF |
520 | |
521 | /* | |
522 | * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL() | |
523 | */ | |
ccb2c380 MP |
524 | #define vFAIL(m) STMT_START { \ |
525 | if (!SIZE_ONLY) \ | |
a5e7bc51 | 526 | SAVEFREESV(RExC_rx_sv); \ |
ccb2c380 MP |
527 | Simple_vFAIL(m); \ |
528 | } STMT_END | |
b45f050a JF |
529 | |
530 | /* | |
531 | * Like Simple_vFAIL(), but accepts two arguments. | |
532 | */ | |
ccb2c380 | 533 | #define Simple_vFAIL2(m,a1) STMT_START { \ |
a28509cc | 534 | const IV offset = RExC_parse - RExC_precomp; \ |
c1d900c3 BF |
535 | S_re_croak2(aTHX_ UTF, m, REPORT_LOCATION, a1, \ |
536 | REPORT_LOCATION_ARGS(offset)); \ | |
ccb2c380 | 537 | } STMT_END |
b45f050a JF |
538 | |
539 | /* | |
540 | * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL2(). | |
541 | */ | |
ccb2c380 MP |
542 | #define vFAIL2(m,a1) STMT_START { \ |
543 | if (!SIZE_ONLY) \ | |
a5e7bc51 | 544 | SAVEFREESV(RExC_rx_sv); \ |
ccb2c380 MP |
545 | Simple_vFAIL2(m, a1); \ |
546 | } STMT_END | |
b45f050a JF |
547 | |
548 | ||
549 | /* | |
550 | * Like Simple_vFAIL(), but accepts three arguments. | |
551 | */ | |
ccb2c380 | 552 | #define Simple_vFAIL3(m, a1, a2) STMT_START { \ |
a28509cc | 553 | const IV offset = RExC_parse - RExC_precomp; \ |
c1d900c3 BF |
554 | S_re_croak2(aTHX_ UTF, m, REPORT_LOCATION, a1, a2, \ |
555 | REPORT_LOCATION_ARGS(offset)); \ | |
ccb2c380 | 556 | } STMT_END |
b45f050a JF |
557 | |
558 | /* | |
559 | * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL3(). | |
560 | */ | |
ccb2c380 MP |
561 | #define vFAIL3(m,a1,a2) STMT_START { \ |
562 | if (!SIZE_ONLY) \ | |
a5e7bc51 | 563 | SAVEFREESV(RExC_rx_sv); \ |
ccb2c380 MP |
564 | Simple_vFAIL3(m, a1, a2); \ |
565 | } STMT_END | |
b45f050a JF |
566 | |
567 | /* | |
568 | * Like Simple_vFAIL(), but accepts four arguments. | |
569 | */ | |
ccb2c380 | 570 | #define Simple_vFAIL4(m, a1, a2, a3) STMT_START { \ |
a28509cc | 571 | const IV offset = RExC_parse - RExC_precomp; \ |
c1d900c3 BF |
572 | S_re_croak2(aTHX_ UTF, m, REPORT_LOCATION, a1, a2, a3, \ |
573 | REPORT_LOCATION_ARGS(offset)); \ | |
ccb2c380 | 574 | } STMT_END |
b45f050a | 575 | |
95db3ffa KW |
576 | #define vFAIL4(m,a1,a2,a3) STMT_START { \ |
577 | if (!SIZE_ONLY) \ | |
578 | SAVEFREESV(RExC_rx_sv); \ | |
579 | Simple_vFAIL4(m, a1, a2, a3); \ | |
580 | } STMT_END | |
581 | ||
946095af BF |
582 | /* A specialized version of vFAIL2 that works with UTF8f */ |
583 | #define vFAIL2utf8f(m, a1) STMT_START { \ | |
ef3f731d BF |
584 | const IV offset = RExC_parse - RExC_precomp; \ |
585 | if (!SIZE_ONLY) \ | |
586 | SAVEFREESV(RExC_rx_sv); \ | |
587 | S_re_croak2(aTHX_ UTF, m, REPORT_LOCATION, a1, \ | |
588 | REPORT_LOCATION_ARGS(offset)); \ | |
946095af BF |
589 | } STMT_END |
590 | ||
591 | ||
5e0a247b KW |
592 | /* m is not necessarily a "literal string", in this macro */ |
593 | #define reg_warn_non_literal_string(loc, m) STMT_START { \ | |
594 | const IV offset = loc - RExC_precomp; \ | |
595 | Perl_warner(aTHX_ packWARN(WARN_REGEXP), "%s" REPORT_LOCATION, \ | |
c1d900c3 | 596 | m, REPORT_LOCATION_ARGS(offset)); \ |
5e0a247b KW |
597 | } STMT_END |
598 | ||
668c081a | 599 | #define ckWARNreg(loc,m) STMT_START { \ |
a28509cc | 600 | const IV offset = loc - RExC_precomp; \ |
f10f4c18 | 601 | Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \ |
c1d900c3 | 602 | REPORT_LOCATION_ARGS(offset)); \ |
ccb2c380 MP |
603 | } STMT_END |
604 | ||
0d6106aa KW |
605 | #define vWARN_dep(loc, m) STMT_START { \ |
606 | const IV offset = loc - RExC_precomp; \ | |
607 | Perl_warner(aTHX_ packWARN(WARN_DEPRECATED), m REPORT_LOCATION, \ | |
c1d900c3 | 608 | REPORT_LOCATION_ARGS(offset)); \ |
0d6106aa KW |
609 | } STMT_END |
610 | ||
147508a2 KW |
611 | #define ckWARNdep(loc,m) STMT_START { \ |
612 | const IV offset = loc - RExC_precomp; \ | |
613 | Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED), \ | |
614 | m REPORT_LOCATION, \ | |
c1d900c3 | 615 | REPORT_LOCATION_ARGS(offset)); \ |
147508a2 KW |
616 | } STMT_END |
617 | ||
668c081a | 618 | #define ckWARNregdep(loc,m) STMT_START { \ |
a28509cc | 619 | const IV offset = loc - RExC_precomp; \ |
d1d15184 | 620 | Perl_ck_warner_d(aTHX_ packWARN2(WARN_DEPRECATED, WARN_REGEXP), \ |
f10f4c18 | 621 | m REPORT_LOCATION, \ |
c1d900c3 | 622 | REPORT_LOCATION_ARGS(offset)); \ |
ccb2c380 MP |
623 | } STMT_END |
624 | ||
b23eb183 | 625 | #define ckWARN2reg_d(loc,m, a1) STMT_START { \ |
2335b3d3 | 626 | const IV offset = loc - RExC_precomp; \ |
b23eb183 | 627 | Perl_ck_warner_d(aTHX_ packWARN(WARN_REGEXP), \ |
2335b3d3 | 628 | m REPORT_LOCATION, \ |
c1d900c3 | 629 | a1, REPORT_LOCATION_ARGS(offset)); \ |
2335b3d3 KW |
630 | } STMT_END |
631 | ||
668c081a | 632 | #define ckWARN2reg(loc, m, a1) STMT_START { \ |
a28509cc | 633 | const IV offset = loc - RExC_precomp; \ |
668c081a | 634 | Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \ |
c1d900c3 | 635 | a1, REPORT_LOCATION_ARGS(offset)); \ |
ccb2c380 MP |
636 | } STMT_END |
637 | ||
638 | #define vWARN3(loc, m, a1, a2) STMT_START { \ | |
a28509cc | 639 | const IV offset = loc - RExC_precomp; \ |
ccb2c380 | 640 | Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \ |
c1d900c3 | 641 | a1, a2, REPORT_LOCATION_ARGS(offset)); \ |
ccb2c380 MP |
642 | } STMT_END |
643 | ||
668c081a NC |
644 | #define ckWARN3reg(loc, m, a1, a2) STMT_START { \ |
645 | const IV offset = loc - RExC_precomp; \ | |
646 | Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \ | |
c1d900c3 | 647 | a1, a2, REPORT_LOCATION_ARGS(offset)); \ |
668c081a NC |
648 | } STMT_END |
649 | ||
ccb2c380 | 650 | #define vWARN4(loc, m, a1, a2, a3) STMT_START { \ |
a28509cc | 651 | const IV offset = loc - RExC_precomp; \ |
ccb2c380 | 652 | Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \ |
c1d900c3 | 653 | a1, a2, a3, REPORT_LOCATION_ARGS(offset)); \ |
ccb2c380 MP |
654 | } STMT_END |
655 | ||
668c081a NC |
656 | #define ckWARN4reg(loc, m, a1, a2, a3) STMT_START { \ |
657 | const IV offset = loc - RExC_precomp; \ | |
658 | Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \ | |
c1d900c3 | 659 | a1, a2, a3, REPORT_LOCATION_ARGS(offset)); \ |
668c081a NC |
660 | } STMT_END |
661 | ||
ccb2c380 | 662 | #define vWARN5(loc, m, a1, a2, a3, a4) STMT_START { \ |
a28509cc | 663 | const IV offset = loc - RExC_precomp; \ |
ccb2c380 | 664 | Perl_warner(aTHX_ packWARN(WARN_REGEXP), m REPORT_LOCATION, \ |
c1d900c3 | 665 | a1, a2, a3, a4, REPORT_LOCATION_ARGS(offset)); \ |
ccb2c380 | 666 | } STMT_END |
9d1d55b5 | 667 | |
8615cb43 | 668 | |
cd439c50 | 669 | /* Allow for side effects in s */ |
ccb2c380 MP |
670 | #define REGC(c,s) STMT_START { \ |
671 | if (!SIZE_ONLY) *(s) = (c); else (void)(s); \ | |
672 | } STMT_END | |
cd439c50 | 673 | |
538e84ed | 674 | /* Macros for recording node offsets. 20001227 mjd@plover.com |
fac92740 MJD |
675 | * Nodes are numbered 1, 2, 3, 4. Node #n's position is recorded in |
676 | * element 2*n-1 of the array. Element #2n holds the byte length node #n. | |
677 | * Element 0 holds the number n. | |
07be1b83 | 678 | * Position is 1 indexed. |
fac92740 | 679 | */ |
7122b237 YO |
680 | #ifndef RE_TRACK_PATTERN_OFFSETS |
681 | #define Set_Node_Offset_To_R(node,byte) | |
682 | #define Set_Node_Offset(node,byte) | |
683 | #define Set_Cur_Node_Offset | |
684 | #define Set_Node_Length_To_R(node,len) | |
685 | #define Set_Node_Length(node,len) | |
6a86c6ad | 686 | #define Set_Node_Cur_Length(node,start) |
538e84ed KW |
687 | #define Node_Offset(n) |
688 | #define Node_Length(n) | |
7122b237 YO |
689 | #define Set_Node_Offset_Length(node,offset,len) |
690 | #define ProgLen(ri) ri->u.proglen | |
691 | #define SetProgLen(ri,x) ri->u.proglen = x | |
692 | #else | |
693 | #define ProgLen(ri) ri->u.offsets[0] | |
694 | #define SetProgLen(ri,x) ri->u.offsets[0] = x | |
ccb2c380 MP |
695 | #define Set_Node_Offset_To_R(node,byte) STMT_START { \ |
696 | if (! SIZE_ONLY) { \ | |
697 | MJD_OFFSET_DEBUG(("** (%d) offset of node %d is %d.\n", \ | |
2a49f0f5 | 698 | __LINE__, (int)(node), (int)(byte))); \ |
ccb2c380 | 699 | if((node) < 0) { \ |
538e84ed KW |
700 | Perl_croak(aTHX_ "value of node is %d in Offset macro", \ |
701 | (int)(node)); \ | |
ccb2c380 MP |
702 | } else { \ |
703 | RExC_offsets[2*(node)-1] = (byte); \ | |
704 | } \ | |
705 | } \ | |
706 | } STMT_END | |
707 | ||
708 | #define Set_Node_Offset(node,byte) \ | |
709 | Set_Node_Offset_To_R((node)-RExC_emit_start, (byte)-RExC_start) | |
710 | #define Set_Cur_Node_Offset Set_Node_Offset(RExC_emit, RExC_parse) | |
711 | ||
712 | #define Set_Node_Length_To_R(node,len) STMT_START { \ | |
713 | if (! SIZE_ONLY) { \ | |
714 | MJD_OFFSET_DEBUG(("** (%d) size of node %d is %d.\n", \ | |
551405c4 | 715 | __LINE__, (int)(node), (int)(len))); \ |
ccb2c380 | 716 | if((node) < 0) { \ |
538e84ed KW |
717 | Perl_croak(aTHX_ "value of node is %d in Length macro", \ |
718 | (int)(node)); \ | |
ccb2c380 MP |
719 | } else { \ |
720 | RExC_offsets[2*(node)] = (len); \ | |
721 | } \ | |
722 | } \ | |
723 | } STMT_END | |
724 | ||
725 | #define Set_Node_Length(node,len) \ | |
726 | Set_Node_Length_To_R((node)-RExC_emit_start, len) | |
6a86c6ad NC |
727 | #define Set_Node_Cur_Length(node, start) \ |
728 | Set_Node_Length(node, RExC_parse - start) | |
fac92740 MJD |
729 | |
730 | /* Get offsets and lengths */ | |
731 | #define Node_Offset(n) (RExC_offsets[2*((n)-RExC_emit_start)-1]) | |
732 | #define Node_Length(n) (RExC_offsets[2*((n)-RExC_emit_start)]) | |
733 | ||
07be1b83 YO |
734 | #define Set_Node_Offset_Length(node,offset,len) STMT_START { \ |
735 | Set_Node_Offset_To_R((node)-RExC_emit_start, (offset)); \ | |
736 | Set_Node_Length_To_R((node)-RExC_emit_start, (len)); \ | |
737 | } STMT_END | |
7122b237 | 738 | #endif |
07be1b83 YO |
739 | |
740 | #if PERL_ENABLE_EXPERIMENTAL_REGEX_OPTIMISATIONS | |
741 | #define EXPERIMENTAL_INPLACESCAN | |
f427392e | 742 | #endif /*PERL_ENABLE_EXPERIMENTAL_REGEX_OPTIMISATIONS*/ |
07be1b83 | 743 | |
9e9ecfdf | 744 | #define DEBUG_RExC_seen() \ |
538e84ed KW |
745 | DEBUG_OPTIMISE_MORE_r({ \ |
746 | PerlIO_printf(Perl_debug_log,"RExC_seen: "); \ | |
747 | \ | |
e384d5c1 YO |
748 | if (RExC_seen & REG_ZERO_LEN_SEEN) \ |
749 | PerlIO_printf(Perl_debug_log,"REG_ZERO_LEN_SEEN "); \ | |
538e84ed | 750 | \ |
e384d5c1 YO |
751 | if (RExC_seen & REG_LOOKBEHIND_SEEN) \ |
752 | PerlIO_printf(Perl_debug_log,"REG_LOOKBEHIND_SEEN "); \ | |
538e84ed | 753 | \ |
e384d5c1 YO |
754 | if (RExC_seen & REG_GPOS_SEEN) \ |
755 | PerlIO_printf(Perl_debug_log,"REG_GPOS_SEEN "); \ | |
538e84ed | 756 | \ |
e384d5c1 YO |
757 | if (RExC_seen & REG_CANY_SEEN) \ |
758 | PerlIO_printf(Perl_debug_log,"REG_CANY_SEEN "); \ | |
538e84ed | 759 | \ |
e384d5c1 YO |
760 | if (RExC_seen & REG_RECURSE_SEEN) \ |
761 | PerlIO_printf(Perl_debug_log,"REG_RECURSE_SEEN "); \ | |
538e84ed | 762 | \ |
e384d5c1 YO |
763 | if (RExC_seen & REG_TOP_LEVEL_BRANCHES_SEEN) \ |
764 | PerlIO_printf(Perl_debug_log,"REG_TOP_LEVEL_BRANCHES_SEEN "); \ | |
538e84ed | 765 | \ |
e384d5c1 YO |
766 | if (RExC_seen & REG_VERBARG_SEEN) \ |
767 | PerlIO_printf(Perl_debug_log,"REG_VERBARG_SEEN "); \ | |
538e84ed | 768 | \ |
e384d5c1 YO |
769 | if (RExC_seen & REG_CUTGROUP_SEEN) \ |
770 | PerlIO_printf(Perl_debug_log,"REG_CUTGROUP_SEEN "); \ | |
538e84ed | 771 | \ |
e384d5c1 YO |
772 | if (RExC_seen & REG_RUN_ON_COMMENT_SEEN) \ |
773 | PerlIO_printf(Perl_debug_log,"REG_RUN_ON_COMMENT_SEEN "); \ | |
538e84ed | 774 | \ |
e384d5c1 YO |
775 | if (RExC_seen & REG_UNFOLDED_MULTI_SEEN) \ |
776 | PerlIO_printf(Perl_debug_log,"REG_UNFOLDED_MULTI_SEEN "); \ | |
538e84ed | 777 | \ |
e384d5c1 YO |
778 | if (RExC_seen & REG_GOSTART_SEEN) \ |
779 | PerlIO_printf(Perl_debug_log,"REG_GOSTART_SEEN "); \ | |
538e84ed | 780 | \ |
ee273784 YO |
781 | if (RExC_seen & REG_UNBOUNDED_QUANTIFIER_SEEN) \ |
782 | PerlIO_printf(Perl_debug_log,"REG_UNBOUNDED_QUANTIFIER_SEEN "); \ | |
783 | \ | |
538e84ed | 784 | PerlIO_printf(Perl_debug_log,"\n"); \ |
9e9ecfdf YO |
785 | }); |
786 | ||
304ee84b YO |
787 | #define DEBUG_STUDYDATA(str,data,depth) \ |
788 | DEBUG_OPTIMISE_MORE_r(if(data){ \ | |
1de06328 | 789 | PerlIO_printf(Perl_debug_log, \ |
304ee84b YO |
790 | "%*s" str "Pos:%"IVdf"/%"IVdf \ |
791 | " Flags: 0x%"UVXf" Whilem_c: %"IVdf" Lcp: %"IVdf" %s", \ | |
1de06328 YO |
792 | (int)(depth)*2, "", \ |
793 | (IV)((data)->pos_min), \ | |
794 | (IV)((data)->pos_delta), \ | |
304ee84b | 795 | (UV)((data)->flags), \ |
1de06328 | 796 | (IV)((data)->whilem_c), \ |
304ee84b YO |
797 | (IV)((data)->last_closep ? *((data)->last_closep) : -1), \ |
798 | is_inf ? "INF " : "" \ | |
1de06328 YO |
799 | ); \ |
800 | if ((data)->last_found) \ | |
801 | PerlIO_printf(Perl_debug_log, \ | |
802 | "Last:'%s' %"IVdf":%"IVdf"/%"IVdf" %sFixed:'%s' @ %"IVdf \ | |
803 | " %sFloat: '%s' @ %"IVdf"/%"IVdf"", \ | |
804 | SvPVX_const((data)->last_found), \ | |
805 | (IV)((data)->last_end), \ | |
806 | (IV)((data)->last_start_min), \ | |
807 | (IV)((data)->last_start_max), \ | |
808 | ((data)->longest && \ | |
809 | (data)->longest==&((data)->longest_fixed)) ? "*" : "", \ | |
810 | SvPVX_const((data)->longest_fixed), \ | |
811 | (IV)((data)->offset_fixed), \ | |
812 | ((data)->longest && \ | |
813 | (data)->longest==&((data)->longest_float)) ? "*" : "", \ | |
814 | SvPVX_const((data)->longest_float), \ | |
815 | (IV)((data)->offset_float_min), \ | |
816 | (IV)((data)->offset_float_max) \ | |
817 | ); \ | |
818 | PerlIO_printf(Perl_debug_log,"\n"); \ | |
819 | }); | |
820 | ||
653099ff | 821 | /* Mark that we cannot extend a found fixed substring at this point. |
786e8c11 | 822 | Update the longest found anchored substring and the longest found |
653099ff GS |
823 | floating substrings if needed. */ |
824 | ||
4327152a | 825 | STATIC void |
ea3daa5d FC |
826 | S_scan_commit(pTHX_ const RExC_state_t *pRExC_state, scan_data_t *data, |
827 | SSize_t *minlenp, int is_inf) | |
c277df42 | 828 | { |
e1ec3a88 AL |
829 | const STRLEN l = CHR_SVLEN(data->last_found); |
830 | const STRLEN old_l = CHR_SVLEN(*data->longest); | |
1de06328 | 831 | GET_RE_DEBUG_FLAGS_DECL; |
b81d288d | 832 | |
7918f24d NC |
833 | PERL_ARGS_ASSERT_SCAN_COMMIT; |
834 | ||
c277df42 | 835 | if ((l >= old_l) && ((l > old_l) || (data->flags & SF_BEFORE_EOL))) { |
6b43b216 | 836 | SvSetMagicSV(*data->longest, data->last_found); |
c277df42 IZ |
837 | if (*data->longest == data->longest_fixed) { |
838 | data->offset_fixed = l ? data->last_start_min : data->pos_min; | |
839 | if (data->flags & SF_BEFORE_EOL) | |
b81d288d | 840 | data->flags |
c277df42 IZ |
841 | |= ((data->flags & SF_BEFORE_EOL) << SF_FIX_SHIFT_EOL); |
842 | else | |
843 | data->flags &= ~SF_FIX_BEFORE_EOL; | |
686b73d4 | 844 | data->minlen_fixed=minlenp; |
1de06328 | 845 | data->lookbehind_fixed=0; |
a0ed51b3 | 846 | } |
304ee84b | 847 | else { /* *data->longest == data->longest_float */ |
c277df42 | 848 | data->offset_float_min = l ? data->last_start_min : data->pos_min; |
b81d288d AB |
849 | data->offset_float_max = (l |
850 | ? data->last_start_max | |
ea3daa5d FC |
851 | : (data->pos_delta == SSize_t_MAX |
852 | ? SSize_t_MAX | |
853 | : data->pos_min + data->pos_delta)); | |
854 | if (is_inf | |
855 | || (STRLEN)data->offset_float_max > (STRLEN)SSize_t_MAX) | |
856 | data->offset_float_max = SSize_t_MAX; | |
c277df42 | 857 | if (data->flags & SF_BEFORE_EOL) |
b81d288d | 858 | data->flags |
c277df42 IZ |
859 | |= ((data->flags & SF_BEFORE_EOL) << SF_FL_SHIFT_EOL); |
860 | else | |
861 | data->flags &= ~SF_FL_BEFORE_EOL; | |
1de06328 YO |
862 | data->minlen_float=minlenp; |
863 | data->lookbehind_float=0; | |
c277df42 IZ |
864 | } |
865 | } | |
866 | SvCUR_set(data->last_found, 0); | |
0eda9292 | 867 | { |
a28509cc | 868 | SV * const sv = data->last_found; |
097eb12c AL |
869 | if (SvUTF8(sv) && SvMAGICAL(sv)) { |
870 | MAGIC * const mg = mg_find(sv, PERL_MAGIC_utf8); | |
871 | if (mg) | |
872 | mg->mg_len = 0; | |
873 | } | |
0eda9292 | 874 | } |
c277df42 IZ |
875 | data->last_end = -1; |
876 | data->flags &= ~SF_BEFORE_EOL; | |
bcdf7404 | 877 | DEBUG_STUDYDATA("commit: ",data,0); |
c277df42 IZ |
878 | } |
879 | ||
cdd87c1d KW |
880 | /* An SSC is just a regnode_charclass_posix with an extra field: the inversion |
881 | * list that describes which code points it matches */ | |
882 | ||
653099ff | 883 | STATIC void |
3420edd7 | 884 | S_ssc_anything(pTHX_ regnode_ssc *ssc) |
653099ff | 885 | { |
cdd87c1d KW |
886 | /* Set the SSC 'ssc' to match an empty string or any code point */ |
887 | ||
557bd3fb | 888 | PERL_ARGS_ASSERT_SSC_ANYTHING; |
7918f24d | 889 | |
71068078 | 890 | assert(is_ANYOF_SYNTHETIC(ssc)); |
3fffb88a | 891 | |
cdd87c1d KW |
892 | ssc->invlist = sv_2mortal(_new_invlist(2)); /* mortalize so won't leak */ |
893 | _append_range_to_invlist(ssc->invlist, 0, UV_MAX); | |
a0dd4231 | 894 | ANYOF_FLAGS(ssc) |= ANYOF_EMPTY_STRING; /* Plus match empty string */ |
653099ff GS |
895 | } |
896 | ||
653099ff | 897 | STATIC int |
dc3bf405 | 898 | S_ssc_is_anything(const regnode_ssc *ssc) |
653099ff | 899 | { |
c144baaa KW |
900 | /* Returns TRUE if the SSC 'ssc' can match the empty string and any code |
901 | * point; FALSE otherwise. Thus, this is used to see if using 'ssc' buys | |
902 | * us anything: if the function returns TRUE, 'ssc' hasn't been restricted | |
903 | * in any way, so there's no point in using it */ | |
cdd87c1d KW |
904 | |
905 | UV start, end; | |
906 | bool ret; | |
653099ff | 907 | |
557bd3fb | 908 | PERL_ARGS_ASSERT_SSC_IS_ANYTHING; |
7918f24d | 909 | |
71068078 | 910 | assert(is_ANYOF_SYNTHETIC(ssc)); |
cdd87c1d | 911 | |
77ebeeba | 912 | if (! (ANYOF_FLAGS(ssc) & ANYOF_EMPTY_STRING)) { |
cdd87c1d KW |
913 | return FALSE; |
914 | } | |
915 | ||
916 | /* See if the list consists solely of the range 0 - Infinity */ | |
917 | invlist_iterinit(ssc->invlist); | |
918 | ret = invlist_iternext(ssc->invlist, &start, &end) | |
919 | && start == 0 | |
920 | && end == UV_MAX; | |
921 | ||
922 | invlist_iterfinish(ssc->invlist); | |
923 | ||
924 | if (ret) { | |
925 | return TRUE; | |
926 | } | |
927 | ||
928 | /* If e.g., both \w and \W are set, matches everything */ | |
e0e1be5f | 929 | if (ANYOF_POSIXL_SSC_TEST_ANY_SET(ssc)) { |
cdd87c1d KW |
930 | int i; |
931 | for (i = 0; i < ANYOF_POSIXL_MAX; i += 2) { | |
932 | if (ANYOF_POSIXL_TEST(ssc, i) && ANYOF_POSIXL_TEST(ssc, i+1)) { | |
933 | return TRUE; | |
934 | } | |
935 | } | |
936 | } | |
937 | ||
938 | return FALSE; | |
653099ff GS |
939 | } |
940 | ||
653099ff | 941 | STATIC void |
cdd87c1d | 942 | S_ssc_init(pTHX_ const RExC_state_t *pRExC_state, regnode_ssc *ssc) |
653099ff | 943 | { |
cdd87c1d KW |
944 | /* Initializes the SSC 'ssc'. This includes setting it to match an empty |
945 | * string, any code point, or any posix class under locale */ | |
946 | ||
557bd3fb | 947 | PERL_ARGS_ASSERT_SSC_INIT; |
7918f24d | 948 | |
557bd3fb | 949 | Zero(ssc, 1, regnode_ssc); |
71068078 | 950 | set_ANYOF_SYNTHETIC(ssc); |
cdd87c1d | 951 | ARG_SET(ssc, ANYOF_NONBITMAP_EMPTY); |
3420edd7 | 952 | ssc_anything(ssc); |
cdd87c1d KW |
953 | |
954 | /* If any portion of the regex is to operate under locale rules, | |
955 | * initialization includes it. The reason this isn't done for all regexes | |
956 | * is that the optimizer was written under the assumption that locale was | |
957 | * all-or-nothing. Given the complexity and lack of documentation in the | |
958 | * optimizer, and that there are inadequate test cases for locale, many | |
959 | * parts of it may not work properly, it is safest to avoid locale unless | |
960 | * necessary. */ | |
961 | if (RExC_contains_locale) { | |
962 | ANYOF_POSIXL_SETALL(ssc); | |
cdd87c1d KW |
963 | } |
964 | else { | |
965 | ANYOF_POSIXL_ZERO(ssc); | |
966 | } | |
653099ff GS |
967 | } |
968 | ||
b423522f | 969 | STATIC int |
dc3bf405 BF |
970 | S_ssc_is_cp_posixl_init(const RExC_state_t *pRExC_state, |
971 | const regnode_ssc *ssc) | |
b423522f KW |
972 | { |
973 | /* Returns TRUE if the SSC 'ssc' is in its initial state with regard only | |
974 | * to the list of code points matched, and locale posix classes; hence does | |
975 | * not check its flags) */ | |
976 | ||
977 | UV start, end; | |
978 | bool ret; | |
979 | ||
980 | PERL_ARGS_ASSERT_SSC_IS_CP_POSIXL_INIT; | |
981 | ||
71068078 | 982 | assert(is_ANYOF_SYNTHETIC(ssc)); |
b423522f KW |
983 | |
984 | invlist_iterinit(ssc->invlist); | |
985 | ret = invlist_iternext(ssc->invlist, &start, &end) | |
986 | && start == 0 | |
987 | && end == UV_MAX; | |
988 | ||
989 | invlist_iterfinish(ssc->invlist); | |
990 | ||
991 | if (! ret) { | |
992 | return FALSE; | |
993 | } | |
994 | ||
e0e1be5f | 995 | if (RExC_contains_locale && ! ANYOF_POSIXL_SSC_TEST_ALL_SET(ssc)) { |
31f05a37 | 996 | return FALSE; |
b423522f KW |
997 | } |
998 | ||
999 | return TRUE; | |
1000 | } | |
1001 | ||
1002 | STATIC SV* | |
1003 | S_get_ANYOF_cp_list_for_ssc(pTHX_ const RExC_state_t *pRExC_state, | |
5c0f85ef | 1004 | const regnode_charclass* const node) |
b423522f KW |
1005 | { |
1006 | /* Returns a mortal inversion list defining which code points are matched | |
1007 | * by 'node', which is of type ANYOF. Handles complementing the result if | |
1008 | * appropriate. If some code points aren't knowable at this time, the | |
31f05a37 KW |
1009 | * returned list must, and will, contain every code point that is a |
1010 | * possibility. */ | |
b423522f KW |
1011 | |
1012 | SV* invlist = sv_2mortal(_new_invlist(0)); | |
1ee208c4 | 1013 | SV* only_utf8_locale_invlist = NULL; |
b423522f KW |
1014 | unsigned int i; |
1015 | const U32 n = ARG(node); | |
31f05a37 | 1016 | bool new_node_has_latin1 = FALSE; |
b423522f KW |
1017 | |
1018 | PERL_ARGS_ASSERT_GET_ANYOF_CP_LIST_FOR_SSC; | |
1019 | ||
1020 | /* Look at the data structure created by S_set_ANYOF_arg() */ | |
1021 | if (n != ANYOF_NONBITMAP_EMPTY) { | |
1022 | SV * const rv = MUTABLE_SV(RExC_rxi->data->data[n]); | |
1023 | AV * const av = MUTABLE_AV(SvRV(rv)); | |
1024 | SV **const ary = AvARRAY(av); | |
1025 | assert(RExC_rxi->data->what[n] == 's'); | |
1026 | ||
1027 | if (ary[1] && ary[1] != &PL_sv_undef) { /* Has compile-time swash */ | |
1028 | invlist = sv_2mortal(invlist_clone(_get_swash_invlist(ary[1]))); | |
1029 | } | |
1030 | else if (ary[0] && ary[0] != &PL_sv_undef) { | |
1031 | ||
1032 | /* Here, no compile-time swash, and there are things that won't be | |
1033 | * known until runtime -- we have to assume it could be anything */ | |
1034 | return _add_range_to_invlist(invlist, 0, UV_MAX); | |
1035 | } | |
1ee208c4 | 1036 | else if (ary[3] && ary[3] != &PL_sv_undef) { |
b423522f KW |
1037 | |
1038 | /* Here no compile-time swash, and no run-time only data. Use the | |
1039 | * node's inversion list */ | |
1ee208c4 KW |
1040 | invlist = sv_2mortal(invlist_clone(ary[3])); |
1041 | } | |
1042 | ||
1043 | /* Get the code points valid only under UTF-8 locales */ | |
1044 | if ((ANYOF_FLAGS(node) & ANYOF_LOC_FOLD) | |
1045 | && ary[2] && ary[2] != &PL_sv_undef) | |
1046 | { | |
1047 | only_utf8_locale_invlist = ary[2]; | |
b423522f KW |
1048 | } |
1049 | } | |
1050 | ||
1051 | /* An ANYOF node contains a bitmap for the first 256 code points, and an | |
1052 | * inversion list for the others, but if there are code points that should | |
1053 | * match only conditionally on the target string being UTF-8, those are | |
1054 | * placed in the inversion list, and not the bitmap. Since there are | |
1055 | * circumstances under which they could match, they are included in the | |
1056 | * SSC. But if the ANYOF node is to be inverted, we have to exclude them | |
1057 | * here, so that when we invert below, the end result actually does include | |
1058 | * them. (Think about "\xe0" =~ /[^\xc0]/di;). We have to do this here | |
1059 | * before we add the unconditionally matched code points */ | |
1060 | if (ANYOF_FLAGS(node) & ANYOF_INVERT) { | |
1061 | _invlist_intersection_complement_2nd(invlist, | |
1062 | PL_UpperLatin1, | |
1063 | &invlist); | |
1064 | } | |
1065 | ||
1066 | /* Add in the points from the bit map */ | |
1067 | for (i = 0; i < 256; i++) { | |
1068 | if (ANYOF_BITMAP_TEST(node, i)) { | |
1069 | invlist = add_cp_to_invlist(invlist, i); | |
31f05a37 | 1070 | new_node_has_latin1 = TRUE; |
b423522f KW |
1071 | } |
1072 | } | |
1073 | ||
1074 | /* If this can match all upper Latin1 code points, have to add them | |
1075 | * as well */ | |
7bc66b18 | 1076 | if (ANYOF_FLAGS(node) & ANYOF_NON_UTF8_NON_ASCII_ALL) { |
b423522f KW |
1077 | _invlist_union(invlist, PL_UpperLatin1, &invlist); |
1078 | } | |
1079 | ||
1080 | /* Similarly for these */ | |
1081 | if (ANYOF_FLAGS(node) & ANYOF_ABOVE_LATIN1_ALL) { | |
1082 | invlist = _add_range_to_invlist(invlist, 256, UV_MAX); | |
1083 | } | |
1084 | ||
1085 | if (ANYOF_FLAGS(node) & ANYOF_INVERT) { | |
1086 | _invlist_invert(invlist); | |
1087 | } | |
31f05a37 KW |
1088 | else if (new_node_has_latin1 && ANYOF_FLAGS(node) & ANYOF_LOC_FOLD) { |
1089 | ||
1090 | /* Under /li, any 0-255 could fold to any other 0-255, depending on the | |
1091 | * locale. We can skip this if there are no 0-255 at all. */ | |
1092 | _invlist_union(invlist, PL_Latin1, &invlist); | |
1093 | } | |
1094 | ||
1ee208c4 KW |
1095 | /* Similarly add the UTF-8 locale possible matches. These have to be |
1096 | * deferred until after the non-UTF-8 locale ones are taken care of just | |
1097 | * above, or it leads to wrong results under ANYOF_INVERT */ | |
1098 | if (only_utf8_locale_invlist) { | |
31f05a37 | 1099 | _invlist_union_maybe_complement_2nd(invlist, |
1ee208c4 | 1100 | only_utf8_locale_invlist, |
31f05a37 KW |
1101 | ANYOF_FLAGS(node) & ANYOF_INVERT, |
1102 | &invlist); | |
1103 | } | |
b423522f KW |
1104 | |
1105 | return invlist; | |
1106 | } | |
1107 | ||
1051e1c4 | 1108 | /* These two functions currently do the exact same thing */ |
557bd3fb | 1109 | #define ssc_init_zero ssc_init |
653099ff | 1110 | |
cdd87c1d KW |
1111 | #define ssc_add_cp(ssc, cp) ssc_add_range((ssc), (cp), (cp)) |
1112 | #define ssc_match_all_cp(ssc) ssc_add_range(ssc, 0, UV_MAX) | |
1113 | ||
557bd3fb | 1114 | /* 'AND' a given class with another one. Can create false positives. 'ssc' |
8efd3f97 | 1115 | * should not be inverted. 'and_with->flags & ANYOF_POSIXL' should be 0 if |
b8f7bb16 | 1116 | * 'and_with' is a regnode_charclass instead of a regnode_ssc. */ |
cdd87c1d | 1117 | |
653099ff | 1118 | STATIC void |
b423522f | 1119 | S_ssc_and(pTHX_ const RExC_state_t *pRExC_state, regnode_ssc *ssc, |
7dcac5f6 | 1120 | const regnode_charclass *and_with) |
653099ff | 1121 | { |
cdd87c1d KW |
1122 | /* Accumulate into SSC 'ssc' its 'AND' with 'and_with', which is either |
1123 | * another SSC or a regular ANYOF class. Can create false positives. */ | |
40d049e4 | 1124 | |
a0dd4231 KW |
1125 | SV* anded_cp_list; |
1126 | U8 anded_flags; | |
1e6ade67 | 1127 | |
cdd87c1d | 1128 | PERL_ARGS_ASSERT_SSC_AND; |
653099ff | 1129 | |
71068078 | 1130 | assert(is_ANYOF_SYNTHETIC(ssc)); |
a0dd4231 KW |
1131 | |
1132 | /* 'and_with' is used as-is if it too is an SSC; otherwise have to extract | |
1133 | * the code point inversion list and just the relevant flags */ | |
71068078 | 1134 | if (is_ANYOF_SYNTHETIC(and_with)) { |
7dcac5f6 | 1135 | anded_cp_list = ((regnode_ssc *)and_with)->invlist; |
a0dd4231 | 1136 | anded_flags = ANYOF_FLAGS(and_with); |
e9b08962 KW |
1137 | |
1138 | /* XXX This is a kludge around what appears to be deficiencies in the | |
1139 | * optimizer. If we make S_ssc_anything() add in the WARN_SUPER flag, | |
1140 | * there are paths through the optimizer where it doesn't get weeded | |
1141 | * out when it should. And if we don't make some extra provision for | |
1142 | * it like the code just below, it doesn't get added when it should. | |
1143 | * This solution is to add it only when AND'ing, which is here, and | |
1144 | * only when what is being AND'ed is the pristine, original node | |
1145 | * matching anything. Thus it is like adding it to ssc_anything() but | |
1146 | * only when the result is to be AND'ed. Probably the same solution | |
1147 | * could be adopted for the same problem we have with /l matching, | |
1148 | * which is solved differently in S_ssc_init(), and that would lead to | |
1149 | * fewer false positives than that solution has. But if this solution | |
1150 | * creates bugs, the consequences are only that a warning isn't raised | |
1151 | * that should be; while the consequences for having /l bugs is | |
1152 | * incorrect matches */ | |
7dcac5f6 | 1153 | if (ssc_is_anything((regnode_ssc *)and_with)) { |
e9b08962 KW |
1154 | anded_flags |= ANYOF_WARN_SUPER; |
1155 | } | |
a0dd4231 KW |
1156 | } |
1157 | else { | |
5c0f85ef | 1158 | anded_cp_list = get_ANYOF_cp_list_for_ssc(pRExC_state, and_with); |
eff8b7dc | 1159 | anded_flags = ANYOF_FLAGS(and_with) & ANYOF_COMMON_FLAGS; |
a0dd4231 KW |
1160 | } |
1161 | ||
1162 | ANYOF_FLAGS(ssc) &= anded_flags; | |
cdd87c1d KW |
1163 | |
1164 | /* Below, C1 is the list of code points in 'ssc'; P1, its posix classes. | |
1165 | * C2 is the list of code points in 'and-with'; P2, its posix classes. | |
1166 | * 'and_with' may be inverted. When not inverted, we have the situation of | |
1167 | * computing: | |
1168 | * (C1 | P1) & (C2 | P2) | |
1169 | * = (C1 & (C2 | P2)) | (P1 & (C2 | P2)) | |
1170 | * = ((C1 & C2) | (C1 & P2)) | ((P1 & C2) | (P1 & P2)) | |
1171 | * <= ((C1 & C2) | P2)) | ( P1 | (P1 & P2)) | |
1172 | * <= ((C1 & C2) | P1 | P2) | |
1173 | * Alternatively, the last few steps could be: | |
1174 | * = ((C1 & C2) | (C1 & P2)) | ((P1 & C2) | (P1 & P2)) | |
1175 | * <= ((C1 & C2) | C1 ) | ( C2 | (P1 & P2)) | |
1176 | * <= (C1 | C2 | (P1 & P2)) | |
1177 | * We favor the second approach if either P1 or P2 is non-empty. This is | |
1178 | * because these components are a barrier to doing optimizations, as what | |
1179 | * they match cannot be known until the moment of matching as they are | |
1180 | * dependent on the current locale, 'AND"ing them likely will reduce or | |
1181 | * eliminate them. | |
1182 | * But we can do better if we know that C1,P1 are in their initial state (a | |
1183 | * frequent occurrence), each matching everything: | |
1184 | * (<everything>) & (C2 | P2) = C2 | P2 | |
1185 | * Similarly, if C2,P2 are in their initial state (again a frequent | |
1186 | * occurrence), the result is a no-op | |
1187 | * (C1 | P1) & (<everything>) = C1 | P1 | |
1188 | * | |
1189 | * Inverted, we have | |
1190 | * (C1 | P1) & ~(C2 | P2) = (C1 | P1) & (~C2 & ~P2) | |
1191 | * = (C1 & (~C2 & ~P2)) | (P1 & (~C2 & ~P2)) | |
1192 | * <= (C1 & ~C2) | (P1 & ~P2) | |
1193 | * */ | |
1aa99e6b | 1194 | |
a0dd4231 | 1195 | if ((ANYOF_FLAGS(and_with) & ANYOF_INVERT) |
71068078 | 1196 | && ! is_ANYOF_SYNTHETIC(and_with)) |
a0dd4231 | 1197 | { |
cdd87c1d | 1198 | unsigned int i; |
8951c461 | 1199 | |
cdd87c1d KW |
1200 | ssc_intersection(ssc, |
1201 | anded_cp_list, | |
1202 | FALSE /* Has already been inverted */ | |
1203 | ); | |
c6b76537 | 1204 | |
cdd87c1d KW |
1205 | /* If either P1 or P2 is empty, the intersection will be also; can skip |
1206 | * the loop */ | |
1207 | if (! (ANYOF_FLAGS(and_with) & ANYOF_POSIXL)) { | |
1208 | ANYOF_POSIXL_ZERO(ssc); | |
1209 | } | |
e0e1be5f | 1210 | else if (ANYOF_POSIXL_SSC_TEST_ANY_SET(ssc)) { |
cdd87c1d KW |
1211 | |
1212 | /* Note that the Posix class component P from 'and_with' actually | |
1213 | * looks like: | |
1214 | * P = Pa | Pb | ... | Pn | |
1215 | * where each component is one posix class, such as in [\w\s]. | |
1216 | * Thus | |
1217 | * ~P = ~(Pa | Pb | ... | Pn) | |
1218 | * = ~Pa & ~Pb & ... & ~Pn | |
1219 | * <= ~Pa | ~Pb | ... | ~Pn | |
1220 | * The last is something we can easily calculate, but unfortunately | |
1221 | * is likely to have many false positives. We could do better | |
1222 | * in some (but certainly not all) instances if two classes in | |
1223 | * P have known relationships. For example | |
1224 | * :lower: <= :alpha: <= :alnum: <= \w <= :graph: <= :print: | |
1225 | * So | |
1226 | * :lower: & :print: = :lower: | |
1227 | * And similarly for classes that must be disjoint. For example, | |
1228 | * since \s and \w can have no elements in common based on rules in | |
1229 | * the POSIX standard, | |
1230 | * \w & ^\S = nothing | |
1231 | * Unfortunately, some vendor locales do not meet the Posix | |
1232 | * standard, in particular almost everything by Microsoft. | |
1233 | * The loop below just changes e.g., \w into \W and vice versa */ | |
1234 | ||
1ee208c4 | 1235 | regnode_charclass_posixl temp; |
cdd87c1d KW |
1236 | int add = 1; /* To calculate the index of the complement */ |
1237 | ||
1238 | ANYOF_POSIXL_ZERO(&temp); | |
1239 | for (i = 0; i < ANYOF_MAX; i++) { | |
1240 | assert(i % 2 != 0 | |
7dcac5f6 KW |
1241 | || ! ANYOF_POSIXL_TEST((regnode_charclass_posixl*) and_with, i) |
1242 | || ! ANYOF_POSIXL_TEST((regnode_charclass_posixl*) and_with, i + 1)); | |
cdd87c1d | 1243 | |
7dcac5f6 | 1244 | if (ANYOF_POSIXL_TEST((regnode_charclass_posixl*) and_with, i)) { |
cdd87c1d KW |
1245 | ANYOF_POSIXL_SET(&temp, i + add); |
1246 | } | |
1247 | add = 0 - add; /* 1 goes to -1; -1 goes to 1 */ | |
1248 | } | |
1249 | ANYOF_POSIXL_AND(&temp, ssc); | |
c6b76537 | 1250 | |
cdd87c1d KW |
1251 | } /* else ssc already has no posixes */ |
1252 | } /* else: Not inverted. This routine is a no-op if 'and_with' is an SSC | |
1253 | in its initial state */ | |
71068078 | 1254 | else if (! is_ANYOF_SYNTHETIC(and_with) |
7dcac5f6 | 1255 | || ! ssc_is_cp_posixl_init(pRExC_state, (regnode_ssc *)and_with)) |
cdd87c1d KW |
1256 | { |
1257 | /* But if 'ssc' is in its initial state, the result is just 'and_with'; | |
1258 | * copy it over 'ssc' */ | |
1259 | if (ssc_is_cp_posixl_init(pRExC_state, ssc)) { | |
71068078 | 1260 | if (is_ANYOF_SYNTHETIC(and_with)) { |
cdd87c1d KW |
1261 | StructCopy(and_with, ssc, regnode_ssc); |
1262 | } | |
1263 | else { | |
1264 | ssc->invlist = anded_cp_list; | |
1265 | ANYOF_POSIXL_ZERO(ssc); | |
1266 | if (ANYOF_FLAGS(and_with) & ANYOF_POSIXL) { | |
7dcac5f6 | 1267 | ANYOF_POSIXL_OR((regnode_charclass_posixl*) and_with, ssc); |
cdd87c1d KW |
1268 | } |
1269 | } | |
1270 | } | |
e0e1be5f KW |
1271 | else if (ANYOF_POSIXL_SSC_TEST_ANY_SET(ssc) |
1272 | || (ANYOF_FLAGS(and_with) & ANYOF_POSIXL)) | |
cdd87c1d KW |
1273 | { |
1274 | /* One or the other of P1, P2 is non-empty. */ | |
1ea8b7fe KW |
1275 | if (ANYOF_FLAGS(and_with) & ANYOF_POSIXL) { |
1276 | ANYOF_POSIXL_AND((regnode_charclass_posixl*) and_with, ssc); | |
1277 | } | |
cdd87c1d KW |
1278 | ssc_union(ssc, anded_cp_list, FALSE); |
1279 | } | |
1280 | else { /* P1 = P2 = empty */ | |
1281 | ssc_intersection(ssc, anded_cp_list, FALSE); | |
1282 | } | |
137165a6 | 1283 | } |
653099ff GS |
1284 | } |
1285 | ||
653099ff | 1286 | STATIC void |
cdd87c1d | 1287 | S_ssc_or(pTHX_ const RExC_state_t *pRExC_state, regnode_ssc *ssc, |
7dcac5f6 | 1288 | const regnode_charclass *or_with) |
653099ff | 1289 | { |
cdd87c1d KW |
1290 | /* Accumulate into SSC 'ssc' its 'OR' with 'or_with', which is either |
1291 | * another SSC or a regular ANYOF class. Can create false positives if | |
1292 | * 'or_with' is to be inverted. */ | |
7918f24d | 1293 | |
a0dd4231 KW |
1294 | SV* ored_cp_list; |
1295 | U8 ored_flags; | |
c6b76537 | 1296 | |
cdd87c1d | 1297 | PERL_ARGS_ASSERT_SSC_OR; |
c6b76537 | 1298 | |
71068078 | 1299 | assert(is_ANYOF_SYNTHETIC(ssc)); |
a0dd4231 KW |
1300 | |
1301 | /* 'or_with' is used as-is if it too is an SSC; otherwise have to extract | |
1302 | * the code point inversion list and just the relevant flags */ | |
71068078 | 1303 | if (is_ANYOF_SYNTHETIC(or_with)) { |
7dcac5f6 | 1304 | ored_cp_list = ((regnode_ssc*) or_with)->invlist; |
a0dd4231 KW |
1305 | ored_flags = ANYOF_FLAGS(or_with); |
1306 | } | |
1307 | else { | |
5c0f85ef | 1308 | ored_cp_list = get_ANYOF_cp_list_for_ssc(pRExC_state, or_with); |
eff8b7dc | 1309 | ored_flags = ANYOF_FLAGS(or_with) & ANYOF_COMMON_FLAGS; |
a0dd4231 KW |
1310 | } |
1311 | ||
1312 | ANYOF_FLAGS(ssc) |= ored_flags; | |
cdd87c1d KW |
1313 | |
1314 | /* Below, C1 is the list of code points in 'ssc'; P1, its posix classes. | |
1315 | * C2 is the list of code points in 'or-with'; P2, its posix classes. | |
1316 | * 'or_with' may be inverted. When not inverted, we have the simple | |
1317 | * situation of computing: | |
1318 | * (C1 | P1) | (C2 | P2) = (C1 | C2) | (P1 | P2) | |
1319 | * If P1|P2 yields a situation with both a class and its complement are | |
1320 | * set, like having both \w and \W, this matches all code points, and we | |
1321 | * can delete these from the P component of the ssc going forward. XXX We | |
1322 | * might be able to delete all the P components, but I (khw) am not certain | |
1323 | * about this, and it is better to be safe. | |
1324 | * | |
1325 | * Inverted, we have | |
1326 | * (C1 | P1) | ~(C2 | P2) = (C1 | P1) | (~C2 & ~P2) | |
1327 | * <= (C1 | P1) | ~C2 | |
1328 | * <= (C1 | ~C2) | P1 | |
1329 | * (which results in actually simpler code than the non-inverted case) | |
1330 | * */ | |
9826f543 | 1331 | |
a0dd4231 | 1332 | if ((ANYOF_FLAGS(or_with) & ANYOF_INVERT) |
71068078 | 1333 | && ! is_ANYOF_SYNTHETIC(or_with)) |
a0dd4231 | 1334 | { |
cdd87c1d | 1335 | /* We ignore P2, leaving P1 going forward */ |
1ea8b7fe KW |
1336 | } /* else Not inverted */ |
1337 | else if (ANYOF_FLAGS(or_with) & ANYOF_POSIXL) { | |
7dcac5f6 | 1338 | ANYOF_POSIXL_OR((regnode_charclass_posixl*)or_with, ssc); |
e0e1be5f | 1339 | if (ANYOF_POSIXL_SSC_TEST_ANY_SET(ssc)) { |
cdd87c1d KW |
1340 | unsigned int i; |
1341 | for (i = 0; i < ANYOF_MAX; i += 2) { | |
1342 | if (ANYOF_POSIXL_TEST(ssc, i) && ANYOF_POSIXL_TEST(ssc, i + 1)) | |
1343 | { | |
1344 | ssc_match_all_cp(ssc); | |
1345 | ANYOF_POSIXL_CLEAR(ssc, i); | |
1346 | ANYOF_POSIXL_CLEAR(ssc, i+1); | |
cdd87c1d KW |
1347 | } |
1348 | } | |
1349 | } | |
1aa99e6b | 1350 | } |
cdd87c1d KW |
1351 | |
1352 | ssc_union(ssc, | |
1353 | ored_cp_list, | |
1354 | FALSE /* Already has been inverted */ | |
1355 | ); | |
653099ff GS |
1356 | } |
1357 | ||
b423522f KW |
1358 | PERL_STATIC_INLINE void |
1359 | S_ssc_union(pTHX_ regnode_ssc *ssc, SV* const invlist, const bool invert2nd) | |
1360 | { | |
1361 | PERL_ARGS_ASSERT_SSC_UNION; | |
1362 | ||
71068078 | 1363 | assert(is_ANYOF_SYNTHETIC(ssc)); |
b423522f KW |
1364 | |
1365 | _invlist_union_maybe_complement_2nd(ssc->invlist, | |
1366 | invlist, | |
1367 | invert2nd, | |
1368 | &ssc->invlist); | |
1369 | } | |
1370 | ||
1371 | PERL_STATIC_INLINE void | |
1372 | S_ssc_intersection(pTHX_ regnode_ssc *ssc, | |
1373 | SV* const invlist, | |
1374 | const bool invert2nd) | |
1375 | { | |
1376 | PERL_ARGS_ASSERT_SSC_INTERSECTION; | |
1377 | ||
71068078 | 1378 | assert(is_ANYOF_SYNTHETIC(ssc)); |
b423522f KW |
1379 | |
1380 | _invlist_intersection_maybe_complement_2nd(ssc->invlist, | |
1381 | invlist, | |
1382 | invert2nd, | |
1383 | &ssc->invlist); | |
1384 | } | |
1385 | ||
1386 | PERL_STATIC_INLINE void | |
1387 | S_ssc_add_range(pTHX_ regnode_ssc *ssc, const UV start, const UV end) | |
1388 | { | |
1389 | PERL_ARGS_ASSERT_SSC_ADD_RANGE; | |
1390 | ||
71068078 | 1391 | assert(is_ANYOF_SYNTHETIC(ssc)); |
b423522f KW |
1392 | |
1393 | ssc->invlist = _add_range_to_invlist(ssc->invlist, start, end); | |
1394 | } | |
1395 | ||
1396 | PERL_STATIC_INLINE void | |
1397 | S_ssc_cp_and(pTHX_ regnode_ssc *ssc, const UV cp) | |
1398 | { | |
1399 | /* AND just the single code point 'cp' into the SSC 'ssc' */ | |
1400 | ||
1401 | SV* cp_list = _new_invlist(2); | |
1402 | ||
1403 | PERL_ARGS_ASSERT_SSC_CP_AND; | |
1404 | ||
71068078 | 1405 | assert(is_ANYOF_SYNTHETIC(ssc)); |
b423522f KW |
1406 | |
1407 | cp_list = add_cp_to_invlist(cp_list, cp); | |
1408 | ssc_intersection(ssc, cp_list, | |
1409 | FALSE /* Not inverted */ | |
1410 | ); | |
1411 | SvREFCNT_dec_NN(cp_list); | |
1412 | } | |
1413 | ||
1414 | PERL_STATIC_INLINE void | |
dc3bf405 | 1415 | S_ssc_clear_locale(regnode_ssc *ssc) |
b423522f KW |
1416 | { |
1417 | /* Set the SSC 'ssc' to not match any locale things */ | |
b423522f KW |
1418 | PERL_ARGS_ASSERT_SSC_CLEAR_LOCALE; |
1419 | ||
71068078 | 1420 | assert(is_ANYOF_SYNTHETIC(ssc)); |
b423522f KW |
1421 | |
1422 | ANYOF_POSIXL_ZERO(ssc); | |
1423 | ANYOF_FLAGS(ssc) &= ~ANYOF_LOCALE_FLAGS; | |
1424 | } | |
1425 | ||
1426 | STATIC void | |
1427 | S_ssc_finalize(pTHX_ RExC_state_t *pRExC_state, regnode_ssc *ssc) | |
1428 | { | |
1429 | /* The inversion list in the SSC is marked mortal; now we need a more | |
1430 | * permanent copy, which is stored the same way that is done in a regular | |
1431 | * ANYOF node, with the first 256 code points in a bit map */ | |
1432 | ||
1433 | SV* invlist = invlist_clone(ssc->invlist); | |
1434 | ||
1435 | PERL_ARGS_ASSERT_SSC_FINALIZE; | |
1436 | ||
71068078 | 1437 | assert(is_ANYOF_SYNTHETIC(ssc)); |
b423522f | 1438 | |
a0dd4231 KW |
1439 | /* The code in this file assumes that all but these flags aren't relevant |
1440 | * to the SSC, except ANYOF_EMPTY_STRING, which should be cleared by the | |
1441 | * time we reach here */ | |
eff8b7dc | 1442 | assert(! (ANYOF_FLAGS(ssc) & ~ANYOF_COMMON_FLAGS)); |
a0dd4231 | 1443 | |
b423522f KW |
1444 | populate_ANYOF_from_invlist( (regnode *) ssc, &invlist); |
1445 | ||
1ee208c4 KW |
1446 | set_ANYOF_arg(pRExC_state, (regnode *) ssc, invlist, |
1447 | NULL, NULL, NULL, FALSE); | |
b423522f | 1448 | |
85c8e306 KW |
1449 | /* Make sure is clone-safe */ |
1450 | ssc->invlist = NULL; | |
1451 | ||
e0e1be5f | 1452 | if (ANYOF_POSIXL_SSC_TEST_ANY_SET(ssc)) { |
1462525b | 1453 | ANYOF_FLAGS(ssc) |= ANYOF_POSIXL; |
e0e1be5f | 1454 | } |
1462525b KW |
1455 | |
1456 | assert(! (ANYOF_FLAGS(ssc) & ANYOF_LOCALE_FLAGS) || RExC_contains_locale); | |
b423522f KW |
1457 | } |
1458 | ||
a3621e74 YO |
1459 | #define TRIE_LIST_ITEM(state,idx) (trie->states[state].trans.list)[ idx ] |
1460 | #define TRIE_LIST_CUR(state) ( TRIE_LIST_ITEM( state, 0 ).forid ) | |
1461 | #define TRIE_LIST_LEN(state) ( TRIE_LIST_ITEM( state, 0 ).newstate ) | |
538e84ed KW |
1462 | #define TRIE_LIST_USED(idx) ( trie->states[state].trans.list \ |
1463 | ? (TRIE_LIST_CUR( idx ) - 1) \ | |
1464 | : 0 ) | |
a3621e74 | 1465 | |
3dab1dad YO |
1466 | |
1467 | #ifdef DEBUGGING | |
07be1b83 | 1468 | /* |
2b8b4781 NC |
1469 | dump_trie(trie,widecharmap,revcharmap) |
1470 | dump_trie_interim_list(trie,widecharmap,revcharmap,next_alloc) | |
1471 | dump_trie_interim_table(trie,widecharmap,revcharmap,next_alloc) | |
3dab1dad YO |
1472 | |
1473 | These routines dump out a trie in a somewhat readable format. | |
07be1b83 YO |
1474 | The _interim_ variants are used for debugging the interim |
1475 | tables that are used to generate the final compressed | |
1476 | representation which is what dump_trie expects. | |
1477 | ||
486ec47a | 1478 | Part of the reason for their existence is to provide a form |
3dab1dad | 1479 | of documentation as to how the different representations function. |
07be1b83 YO |
1480 | |
1481 | */ | |
3dab1dad YO |
1482 | |
1483 | /* | |
3dab1dad YO |
1484 | Dumps the final compressed table form of the trie to Perl_debug_log. |
1485 | Used for debugging make_trie(). | |
1486 | */ | |
b9a59e08 | 1487 | |
3dab1dad | 1488 | STATIC void |
2b8b4781 NC |
1489 | S_dump_trie(pTHX_ const struct _reg_trie_data *trie, HV *widecharmap, |
1490 | AV *revcharmap, U32 depth) | |
3dab1dad YO |
1491 | { |
1492 | U32 state; | |
ab3bbdeb | 1493 | SV *sv=sv_newmortal(); |
55eed653 | 1494 | int colwidth= widecharmap ? 6 : 4; |
2e64971a | 1495 | U16 word; |
3dab1dad YO |
1496 | GET_RE_DEBUG_FLAGS_DECL; |
1497 | ||
7918f24d | 1498 | PERL_ARGS_ASSERT_DUMP_TRIE; |
ab3bbdeb | 1499 | |
3dab1dad YO |
1500 | PerlIO_printf( Perl_debug_log, "%*sChar : %-6s%-6s%-4s ", |
1501 | (int)depth * 2 + 2,"", | |
1502 | "Match","Base","Ofs" ); | |
1503 | ||
1504 | for( state = 0 ; state < trie->uniquecharcount ; state++ ) { | |
2b8b4781 | 1505 | SV ** const tmp = av_fetch( revcharmap, state, 0); |
3dab1dad | 1506 | if ( tmp ) { |
538e84ed | 1507 | PerlIO_printf( Perl_debug_log, "%*s", |
ab3bbdeb | 1508 | colwidth, |
538e84ed | 1509 | pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth, |
ab3bbdeb YO |
1510 | PL_colors[0], PL_colors[1], |
1511 | (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) | | |
538e84ed KW |
1512 | PERL_PV_ESCAPE_FIRSTCHAR |
1513 | ) | |
ab3bbdeb | 1514 | ); |
3dab1dad YO |
1515 | } |
1516 | } | |
1517 | PerlIO_printf( Perl_debug_log, "\n%*sState|-----------------------", | |
1518 | (int)depth * 2 + 2,""); | |
1519 | ||
1520 | for( state = 0 ; state < trie->uniquecharcount ; state++ ) | |
ab3bbdeb | 1521 | PerlIO_printf( Perl_debug_log, "%.*s", colwidth, "--------"); |
3dab1dad YO |
1522 | PerlIO_printf( Perl_debug_log, "\n"); |
1523 | ||
1e2e3d02 | 1524 | for( state = 1 ; state < trie->statecount ; state++ ) { |
be8e71aa | 1525 | const U32 base = trie->states[ state ].trans.base; |
3dab1dad | 1526 | |
538e84ed KW |
1527 | PerlIO_printf( Perl_debug_log, "%*s#%4"UVXf"|", |
1528 | (int)depth * 2 + 2,"", (UV)state); | |
3dab1dad YO |
1529 | |
1530 | if ( trie->states[ state ].wordnum ) { | |
538e84ed KW |
1531 | PerlIO_printf( Perl_debug_log, " W%4X", |
1532 | trie->states[ state ].wordnum ); | |
3dab1dad YO |
1533 | } else { |
1534 | PerlIO_printf( Perl_debug_log, "%6s", "" ); | |
1535 | } | |
1536 | ||
1537 | PerlIO_printf( Perl_debug_log, " @%4"UVXf" ", (UV)base ); | |
1538 | ||
1539 | if ( base ) { | |
1540 | U32 ofs = 0; | |
1541 | ||
1542 | while( ( base + ofs < trie->uniquecharcount ) || | |
1543 | ( base + ofs - trie->uniquecharcount < trie->lasttrans | |
538e84ed KW |
1544 | && trie->trans[ base + ofs - trie->uniquecharcount ].check |
1545 | != state)) | |
3dab1dad YO |
1546 | ofs++; |
1547 | ||
1548 | PerlIO_printf( Perl_debug_log, "+%2"UVXf"[ ", (UV)ofs); | |
1549 | ||
1550 | for ( ofs = 0 ; ofs < trie->uniquecharcount ; ofs++ ) { | |
538e84ed KW |
1551 | if ( ( base + ofs >= trie->uniquecharcount ) |
1552 | && ( base + ofs - trie->uniquecharcount | |
1553 | < trie->lasttrans ) | |
1554 | && trie->trans[ base + ofs | |
1555 | - trie->uniquecharcount ].check == state ) | |
3dab1dad | 1556 | { |
ab3bbdeb YO |
1557 | PerlIO_printf( Perl_debug_log, "%*"UVXf, |
1558 | colwidth, | |
538e84ed KW |
1559 | (UV)trie->trans[ base + ofs |
1560 | - trie->uniquecharcount ].next ); | |
3dab1dad | 1561 | } else { |
ab3bbdeb | 1562 | PerlIO_printf( Perl_debug_log, "%*s",colwidth," ." ); |
3dab1dad YO |
1563 | } |
1564 | } | |
1565 | ||
1566 | PerlIO_printf( Perl_debug_log, "]"); | |
1567 | ||
1568 | } | |
1569 | PerlIO_printf( Perl_debug_log, "\n" ); | |
1570 | } | |
538e84ed KW |
1571 | PerlIO_printf(Perl_debug_log, "%*sword_info N:(prev,len)=", |
1572 | (int)depth*2, ""); | |
2e64971a DM |
1573 | for (word=1; word <= trie->wordcount; word++) { |
1574 | PerlIO_printf(Perl_debug_log, " %d:(%d,%d)", | |
1575 | (int)word, (int)(trie->wordinfo[word].prev), | |
1576 | (int)(trie->wordinfo[word].len)); | |
1577 | } | |
1578 | PerlIO_printf(Perl_debug_log, "\n" ); | |
538e84ed | 1579 | } |
3dab1dad | 1580 | /* |
3dab1dad | 1581 | Dumps a fully constructed but uncompressed trie in list form. |
538e84ed | 1582 | List tries normally only are used for construction when the number of |
3dab1dad YO |
1583 | possible chars (trie->uniquecharcount) is very high. |
1584 | Used for debugging make_trie(). | |
1585 | */ | |
1586 | STATIC void | |
55eed653 | 1587 | S_dump_trie_interim_list(pTHX_ const struct _reg_trie_data *trie, |
2b8b4781 NC |
1588 | HV *widecharmap, AV *revcharmap, U32 next_alloc, |
1589 | U32 depth) | |
3dab1dad YO |
1590 | { |
1591 | U32 state; | |
ab3bbdeb | 1592 | SV *sv=sv_newmortal(); |
55eed653 | 1593 | int colwidth= widecharmap ? 6 : 4; |
3dab1dad | 1594 | GET_RE_DEBUG_FLAGS_DECL; |
7918f24d NC |
1595 | |
1596 | PERL_ARGS_ASSERT_DUMP_TRIE_INTERIM_LIST; | |
1597 | ||
3dab1dad | 1598 | /* print out the table precompression. */ |
ab3bbdeb YO |
1599 | PerlIO_printf( Perl_debug_log, "%*sState :Word | Transition Data\n%*s%s", |
1600 | (int)depth * 2 + 2,"", (int)depth * 2 + 2,"", | |
1601 | "------:-----+-----------------\n" ); | |
538e84ed | 1602 | |
3dab1dad YO |
1603 | for( state=1 ; state < next_alloc ; state ++ ) { |
1604 | U16 charid; | |
538e84ed | 1605 | |
ab3bbdeb | 1606 | PerlIO_printf( Perl_debug_log, "%*s %4"UVXf" :", |
3dab1dad YO |
1607 | (int)depth * 2 + 2,"", (UV)state ); |
1608 | if ( ! trie->states[ state ].wordnum ) { | |
1609 | PerlIO_printf( Perl_debug_log, "%5s| ",""); | |
1610 | } else { | |
1611 | PerlIO_printf( Perl_debug_log, "W%4x| ", | |
1612 | trie->states[ state ].wordnum | |
1613 | ); | |
1614 | } | |
1615 | for( charid = 1 ; charid <= TRIE_LIST_USED( state ) ; charid++ ) { | |
538e84ed KW |
1616 | SV ** const tmp = av_fetch( revcharmap, |
1617 | TRIE_LIST_ITEM(state,charid).forid, 0); | |
ab3bbdeb YO |
1618 | if ( tmp ) { |
1619 | PerlIO_printf( Perl_debug_log, "%*s:%3X=%4"UVXf" | ", | |
1620 | colwidth, | |
538e84ed KW |
1621 | pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), |
1622 | colwidth, | |
1623 | PL_colors[0], PL_colors[1], | |
1624 | (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) | |
1625 | | PERL_PV_ESCAPE_FIRSTCHAR | |
ab3bbdeb | 1626 | ) , |
1e2e3d02 YO |
1627 | TRIE_LIST_ITEM(state,charid).forid, |
1628 | (UV)TRIE_LIST_ITEM(state,charid).newstate | |
1629 | ); | |
538e84ed | 1630 | if (!(charid % 10)) |
664e119d RGS |
1631 | PerlIO_printf(Perl_debug_log, "\n%*s| ", |
1632 | (int)((depth * 2) + 14), ""); | |
1e2e3d02 | 1633 | } |
ab3bbdeb YO |
1634 | } |
1635 | PerlIO_printf( Perl_debug_log, "\n"); | |
3dab1dad | 1636 | } |
538e84ed | 1637 | } |
3dab1dad YO |
1638 | |
1639 | /* | |
3dab1dad | 1640 | Dumps a fully constructed but uncompressed trie in table form. |
538e84ed KW |
1641 | This is the normal DFA style state transition table, with a few |
1642 | twists to facilitate compression later. | |
3dab1dad YO |
1643 | Used for debugging make_trie(). |
1644 | */ | |
1645 | STATIC void | |
55eed653 | 1646 | S_dump_trie_interim_table(pTHX_ const struct _reg_trie_data *trie, |
2b8b4781 NC |
1647 | HV *widecharmap, AV *revcharmap, U32 next_alloc, |
1648 | U32 depth) | |
3dab1dad YO |
1649 | { |
1650 | U32 state; | |
1651 | U16 charid; | |
ab3bbdeb | 1652 | SV *sv=sv_newmortal(); |
55eed653 | 1653 | int colwidth= widecharmap ? 6 : 4; |
3dab1dad | 1654 | GET_RE_DEBUG_FLAGS_DECL; |
7918f24d NC |
1655 | |
1656 | PERL_ARGS_ASSERT_DUMP_TRIE_INTERIM_TABLE; | |
538e84ed | 1657 | |
3dab1dad YO |
1658 | /* |
1659 | print out the table precompression so that we can do a visual check | |
1660 | that they are identical. | |
1661 | */ | |
538e84ed | 1662 | |
3dab1dad YO |
1663 | PerlIO_printf( Perl_debug_log, "%*sChar : ",(int)depth * 2 + 2,"" ); |
1664 | ||
1665 | for( charid = 0 ; charid < trie->uniquecharcount ; charid++ ) { | |
2b8b4781 | 1666 | SV ** const tmp = av_fetch( revcharmap, charid, 0); |
3dab1dad | 1667 | if ( tmp ) { |
538e84ed | 1668 | PerlIO_printf( Perl_debug_log, "%*s", |
ab3bbdeb | 1669 | colwidth, |
538e84ed | 1670 | pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), colwidth, |
ab3bbdeb YO |
1671 | PL_colors[0], PL_colors[1], |
1672 | (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) | | |
538e84ed KW |
1673 | PERL_PV_ESCAPE_FIRSTCHAR |
1674 | ) | |
ab3bbdeb | 1675 | ); |
3dab1dad YO |
1676 | } |
1677 | } | |
1678 | ||
1679 | PerlIO_printf( Perl_debug_log, "\n%*sState+-",(int)depth * 2 + 2,"" ); | |
1680 | ||
1681 | for( charid=0 ; charid < trie->uniquecharcount ; charid++ ) { | |
ab3bbdeb | 1682 | PerlIO_printf( Perl_debug_log, "%.*s", colwidth,"--------"); |
3dab1dad YO |
1683 | } |
1684 | ||
1685 | PerlIO_printf( Perl_debug_log, "\n" ); | |
1686 | ||
1687 | for( state=1 ; state < next_alloc ; state += trie->uniquecharcount ) { | |
1688 | ||
538e84ed | 1689 | PerlIO_printf( Perl_debug_log, "%*s%4"UVXf" : ", |
3dab1dad YO |
1690 | (int)depth * 2 + 2,"", |
1691 | (UV)TRIE_NODENUM( state ) ); | |
1692 | ||
1693 | for( charid = 0 ; charid < trie->uniquecharcount ; charid++ ) { | |
ab3bbdeb YO |
1694 | UV v=(UV)SAFE_TRIE_NODENUM( trie->trans[ state + charid ].next ); |
1695 | if (v) | |
1696 | PerlIO_printf( Perl_debug_log, "%*"UVXf, colwidth, v ); | |
1697 | else | |
1698 | PerlIO_printf( Perl_debug_log, "%*s", colwidth, "." ); | |
3dab1dad YO |
1699 | } |
1700 | if ( ! trie->states[ TRIE_NODENUM( state ) ].wordnum ) { | |
538e84ed KW |
1701 | PerlIO_printf( Perl_debug_log, " (%4"UVXf")\n", |
1702 | (UV)trie->trans[ state ].check ); | |
3dab1dad | 1703 | } else { |
538e84ed KW |
1704 | PerlIO_printf( Perl_debug_log, " (%4"UVXf") W%4X\n", |
1705 | (UV)trie->trans[ state ].check, | |
3dab1dad YO |
1706 | trie->states[ TRIE_NODENUM( state ) ].wordnum ); |
1707 | } | |
1708 | } | |
07be1b83 | 1709 | } |
3dab1dad YO |
1710 | |
1711 | #endif | |
1712 | ||
2e64971a | 1713 | |
786e8c11 YO |
1714 | /* make_trie(startbranch,first,last,tail,word_count,flags,depth) |
1715 | startbranch: the first branch in the whole branch sequence | |
1716 | first : start branch of sequence of branch-exact nodes. | |
1717 | May be the same as startbranch | |
1718 | last : Thing following the last branch. | |
1719 | May be the same as tail. | |
1720 | tail : item following the branch sequence | |
1721 | count : words in the sequence | |
cce29a1d | 1722 | flags : currently the OP() type we will be building one of /EXACT(|F|FA|FU|FU_SS)/ |
786e8c11 | 1723 | depth : indent depth |
3dab1dad | 1724 | |
786e8c11 | 1725 | Inplace optimizes a sequence of 2 or more Branch-Exact nodes into a TRIE node. |
07be1b83 | 1726 | |
786e8c11 YO |
1727 | A trie is an N'ary tree where the branches are determined by digital |
1728 | decomposition of the key. IE, at the root node you look up the 1st character and | |
1729 | follow that branch repeat until you find the end of the branches. Nodes can be | |
1730 | marked as "accepting" meaning they represent a complete word. Eg: | |
07be1b83 | 1731 | |
786e8c11 | 1732 | /he|she|his|hers/ |
72f13be8 | 1733 | |
786e8c11 YO |
1734 | would convert into the following structure. Numbers represent states, letters |
1735 | following numbers represent valid transitions on the letter from that state, if | |
1736 | the number is in square brackets it represents an accepting state, otherwise it | |
1737 | will be in parenthesis. | |
07be1b83 | 1738 | |
786e8c11 YO |
1739 | +-h->+-e->[3]-+-r->(8)-+-s->[9] |
1740 | | | | |
1741 | | (2) | |
1742 | | | | |
1743 | (1) +-i->(6)-+-s->[7] | |
1744 | | | |
1745 | +-s->(3)-+-h->(4)-+-e->[5] | |
07be1b83 | 1746 | |
786e8c11 YO |
1747 | Accept Word Mapping: 3=>1 (he),5=>2 (she), 7=>3 (his), 9=>4 (hers) |
1748 | ||
1749 | This shows that when matching against the string 'hers' we will begin at state 1 | |
1750 | read 'h' and move to state 2, read 'e' and move to state 3 which is accepting, | |
1751 | then read 'r' and go to state 8 followed by 's' which takes us to state 9 which | |
1752 | is also accepting. Thus we know that we can match both 'he' and 'hers' with a | |
1753 | single traverse. We store a mapping from accepting to state to which word was | |
1754 | matched, and then when we have multiple possibilities we try to complete the | |
1755 | rest of the regex in the order in which they occured in the alternation. | |
1756 | ||
1757 | The only prior NFA like behaviour that would be changed by the TRIE support is | |
1758 | the silent ignoring of duplicate alternations which are of the form: | |
1759 | ||
1760 | / (DUPE|DUPE) X? (?{ ... }) Y /x | |
1761 | ||
4b714af6 | 1762 | Thus EVAL blocks following a trie may be called a different number of times with |
786e8c11 | 1763 | and without the optimisation. With the optimisations dupes will be silently |
486ec47a | 1764 | ignored. This inconsistent behaviour of EVAL type nodes is well established as |
786e8c11 YO |
1765 | the following demonstrates: |
1766 | ||
1767 | 'words'=~/(word|word|word)(?{ print $1 })[xyz]/ | |
1768 | ||
1769 | which prints out 'word' three times, but | |
1770 | ||
1771 | 'words'=~/(word|word|word)(?{ print $1 })S/ | |
1772 | ||
1773 | which doesnt print it out at all. This is due to other optimisations kicking in. | |
1774 | ||
1775 | Example of what happens on a structural level: | |
1776 | ||
486ec47a | 1777 | The regexp /(ac|ad|ab)+/ will produce the following debug output: |
786e8c11 YO |
1778 | |
1779 | 1: CURLYM[1] {1,32767}(18) | |
1780 | 5: BRANCH(8) | |
1781 | 6: EXACT <ac>(16) | |
1782 | 8: BRANCH(11) | |
1783 | 9: EXACT <ad>(16) | |
1784 | 11: BRANCH(14) | |
1785 | 12: EXACT <ab>(16) | |
1786 | 16: SUCCEED(0) | |
1787 | 17: NOTHING(18) | |
1788 | 18: END(0) | |
1789 | ||
1790 | This would be optimizable with startbranch=5, first=5, last=16, tail=16 | |
1791 | and should turn into: | |
1792 | ||
1793 | 1: CURLYM[1] {1,32767}(18) | |
1794 | 5: TRIE(16) | |
1795 | [Words:3 Chars Stored:6 Unique Chars:4 States:5 NCP:1] | |
1796 | <ac> | |
1797 | <ad> | |
1798 | <ab> | |
1799 | 16: SUCCEED(0) | |
1800 | 17: NOTHING(18) | |
1801 | 18: END(0) | |
1802 | ||
1803 | Cases where tail != last would be like /(?foo|bar)baz/: | |
1804 | ||
1805 | 1: BRANCH(4) | |
1806 | 2: EXACT <foo>(8) | |
1807 | 4: BRANCH(7) | |
1808 | 5: EXACT <bar>(8) | |
1809 | 7: TAIL(8) | |
1810 | 8: EXACT <baz>(10) | |
1811 | 10: END(0) | |
1812 | ||
1813 | which would be optimizable with startbranch=1, first=1, last=7, tail=8 | |
1814 | and would end up looking like: | |
1815 | ||
1816 | 1: TRIE(8) | |
1817 | [Words:2 Chars Stored:6 Unique Chars:5 States:7 NCP:1] | |
1818 | <foo> | |
1819 | <bar> | |
1820 | 7: TAIL(8) | |
1821 | 8: EXACT <baz>(10) | |
1822 | 10: END(0) | |
1823 | ||
c80e42f3 | 1824 | d = uvchr_to_utf8_flags(d, uv, 0); |
786e8c11 YO |
1825 | |
1826 | is the recommended Unicode-aware way of saying | |
1827 | ||
1828 | *(d++) = uv; | |
1829 | */ | |
1830 | ||
fab2782b | 1831 | #define TRIE_STORE_REVCHAR(val) \ |
786e8c11 | 1832 | STMT_START { \ |
73031816 | 1833 | if (UTF) { \ |
fab2782b | 1834 | SV *zlopp = newSV(7); /* XXX: optimize me */ \ |
88c9ea1e | 1835 | unsigned char *flrbbbbb = (unsigned char *) SvPVX(zlopp); \ |
c80e42f3 | 1836 | unsigned const char *const kapow = uvchr_to_utf8(flrbbbbb, val); \ |
73031816 NC |
1837 | SvCUR_set(zlopp, kapow - flrbbbbb); \ |
1838 | SvPOK_on(zlopp); \ | |
1839 | SvUTF8_on(zlopp); \ | |
1840 | av_push(revcharmap, zlopp); \ | |
1841 | } else { \ | |
fab2782b | 1842 | char ooooff = (char)val; \ |
73031816 NC |
1843 | av_push(revcharmap, newSVpvn(&ooooff, 1)); \ |
1844 | } \ | |
1845 | } STMT_END | |
786e8c11 | 1846 | |
914a25d5 KW |
1847 | /* This gets the next character from the input, folding it if not already |
1848 | * folded. */ | |
1849 | #define TRIE_READ_CHAR STMT_START { \ | |
1850 | wordlen++; \ | |
1851 | if ( UTF ) { \ | |
1852 | /* if it is UTF then it is either already folded, or does not need \ | |
1853 | * folding */ \ | |
1c1d615a | 1854 | uvc = valid_utf8_to_uvchr( (const U8*) uc, &len); \ |
914a25d5 KW |
1855 | } \ |
1856 | else if (folder == PL_fold_latin1) { \ | |
7d006b13 KW |
1857 | /* This folder implies Unicode rules, which in the range expressible \ |
1858 | * by not UTF is the lower case, with the two exceptions, one of \ | |
1859 | * which should have been taken care of before calling this */ \ | |
1860 | assert(*uc != LATIN_SMALL_LETTER_SHARP_S); \ | |
1861 | uvc = toLOWER_L1(*uc); \ | |
1862 | if (UNLIKELY(uvc == MICRO_SIGN)) uvc = GREEK_SMALL_LETTER_MU; \ | |
1863 | len = 1; \ | |
914a25d5 KW |
1864 | } else { \ |
1865 | /* raw data, will be folded later if needed */ \ | |
1866 | uvc = (U32)*uc; \ | |
1867 | len = 1; \ | |
1868 | } \ | |
786e8c11 YO |
1869 | } STMT_END |
1870 | ||
1871 | ||
1872 | ||
1873 | #define TRIE_LIST_PUSH(state,fid,ns) STMT_START { \ | |
1874 | if ( TRIE_LIST_CUR( state ) >=TRIE_LIST_LEN( state ) ) { \ | |
f9003953 NC |
1875 | U32 ging = TRIE_LIST_LEN( state ) *= 2; \ |
1876 | Renew( trie->states[ state ].trans.list, ging, reg_trie_trans_le ); \ | |
786e8c11 YO |
1877 | } \ |
1878 | TRIE_LIST_ITEM( state, TRIE_LIST_CUR( state ) ).forid = fid; \ | |
1879 | TRIE_LIST_ITEM( state, TRIE_LIST_CUR( state ) ).newstate = ns; \ | |
1880 | TRIE_LIST_CUR( state )++; \ | |
1881 | } STMT_END | |
07be1b83 | 1882 | |
786e8c11 YO |
1883 | #define TRIE_LIST_NEW(state) STMT_START { \ |
1884 | Newxz( trie->states[ state ].trans.list, \ | |
1885 | 4, reg_trie_trans_le ); \ | |
1886 | TRIE_LIST_CUR( state ) = 1; \ | |
1887 | TRIE_LIST_LEN( state ) = 4; \ | |
1888 | } STMT_END | |
07be1b83 | 1889 | |
786e8c11 YO |
1890 | #define TRIE_HANDLE_WORD(state) STMT_START { \ |
1891 | U16 dupe= trie->states[ state ].wordnum; \ | |
1892 | regnode * const noper_next = regnext( noper ); \ | |
1893 | \ | |
786e8c11 YO |
1894 | DEBUG_r({ \ |
1895 | /* store the word for dumping */ \ | |
1896 | SV* tmp; \ | |
1897 | if (OP(noper) != NOTHING) \ | |
740cce10 | 1898 | tmp = newSVpvn_utf8(STRING(noper), STR_LEN(noper), UTF); \ |
786e8c11 | 1899 | else \ |
740cce10 | 1900 | tmp = newSVpvn_utf8( "", 0, UTF ); \ |
2b8b4781 | 1901 | av_push( trie_words, tmp ); \ |
786e8c11 YO |
1902 | }); \ |
1903 | \ | |
1904 | curword++; \ | |
2e64971a DM |
1905 | trie->wordinfo[curword].prev = 0; \ |
1906 | trie->wordinfo[curword].len = wordlen; \ | |
1907 | trie->wordinfo[curword].accept = state; \ | |
786e8c11 YO |
1908 | \ |
1909 | if ( noper_next < tail ) { \ | |
1910 | if (!trie->jump) \ | |
538e84ed KW |
1911 | trie->jump = (U16 *) PerlMemShared_calloc( word_count + 1, \ |
1912 | sizeof(U16) ); \ | |
7f69552c | 1913 | trie->jump[curword] = (U16)(noper_next - convert); \ |
786e8c11 YO |
1914 | if (!jumper) \ |
1915 | jumper = noper_next; \ | |
1916 | if (!nextbranch) \ | |
1917 | nextbranch= regnext(cur); \ | |
1918 | } \ | |
1919 | \ | |
1920 | if ( dupe ) { \ | |
2e64971a DM |
1921 | /* It's a dupe. Pre-insert into the wordinfo[].prev */\ |
1922 | /* chain, so that when the bits of chain are later */\ | |
1923 | /* linked together, the dups appear in the chain */\ | |
1924 | trie->wordinfo[curword].prev = trie->wordinfo[dupe].prev; \ | |
1925 | trie->wordinfo[dupe].prev = curword; \ | |
786e8c11 YO |
1926 | } else { \ |
1927 | /* we haven't inserted this word yet. */ \ | |
1928 | trie->states[ state ].wordnum = curword; \ | |
1929 | } \ | |
1930 | } STMT_END | |
07be1b83 | 1931 | |
3dab1dad | 1932 | |
786e8c11 YO |
1933 | #define TRIE_TRANS_STATE(state,base,ucharcount,charid,special) \ |
1934 | ( ( base + charid >= ucharcount \ | |
1935 | && base + charid < ubound \ | |
1936 | && state == trie->trans[ base - ucharcount + charid ].check \ | |
1937 | && trie->trans[ base - ucharcount + charid ].next ) \ | |
1938 | ? trie->trans[ base - ucharcount + charid ].next \ | |
1939 | : ( state==1 ? special : 0 ) \ | |
1940 | ) | |
3dab1dad | 1941 | |
786e8c11 YO |
1942 | #define MADE_TRIE 1 |
1943 | #define MADE_JUMP_TRIE 2 | |
1944 | #define MADE_EXACT_TRIE 4 | |
3dab1dad | 1945 | |
a3621e74 | 1946 | STATIC I32 |
538e84ed KW |
1947 | S_make_trie(pTHX_ RExC_state_t *pRExC_state, regnode *startbranch, |
1948 | regnode *first, regnode *last, regnode *tail, | |
1949 | U32 word_count, U32 flags, U32 depth) | |
a3621e74 YO |
1950 | { |
1951 | /* first pass, loop through and scan words */ | |
1952 | reg_trie_data *trie; | |
55eed653 | 1953 | HV *widecharmap = NULL; |
2b8b4781 | 1954 | AV *revcharmap = newAV(); |
a3621e74 | 1955 | regnode *cur; |
a3621e74 YO |
1956 | STRLEN len = 0; |
1957 | UV uvc = 0; | |
1958 | U16 curword = 0; | |
1959 | U32 next_alloc = 0; | |
786e8c11 YO |
1960 | regnode *jumper = NULL; |
1961 | regnode *nextbranch = NULL; | |
7f69552c | 1962 | regnode *convert = NULL; |
2e64971a | 1963 | U32 *prev_states; /* temp array mapping each state to previous one */ |
a3621e74 | 1964 | /* we just use folder as a flag in utf8 */ |
1e696034 | 1965 | const U8 * folder = NULL; |
a3621e74 | 1966 | |
2b8b4781 | 1967 | #ifdef DEBUGGING |
cf78de0b | 1968 | const U32 data_slot = add_data( pRExC_state, STR_WITH_LEN("tuuu")); |
2b8b4781 NC |
1969 | AV *trie_words = NULL; |
1970 | /* along with revcharmap, this only used during construction but both are | |
1971 | * useful during debugging so we store them in the struct when debugging. | |
8e11feef | 1972 | */ |
2b8b4781 | 1973 | #else |
cf78de0b | 1974 | const U32 data_slot = add_data( pRExC_state, STR_WITH_LEN("tu")); |
3dab1dad | 1975 | STRLEN trie_charcount=0; |
3dab1dad | 1976 | #endif |
2b8b4781 | 1977 | SV *re_trie_maxbuff; |
a3621e74 | 1978 | GET_RE_DEBUG_FLAGS_DECL; |
7918f24d NC |
1979 | |
1980 | PERL_ARGS_ASSERT_MAKE_TRIE; | |
72f13be8 YO |
1981 | #ifndef DEBUGGING |
1982 | PERL_UNUSED_ARG(depth); | |
1983 | #endif | |
a3621e74 | 1984 | |
1e696034 | 1985 | switch (flags) { |
79a81a6e | 1986 | case EXACT: break; |
2f7f8cb1 | 1987 | case EXACTFA: |
fab2782b | 1988 | case EXACTFU_SS: |
1e696034 KW |
1989 | case EXACTFU: folder = PL_fold_latin1; break; |
1990 | case EXACTF: folder = PL_fold; break; | |
fab2782b | 1991 | default: Perl_croak( aTHX_ "panic! In trie construction, unknown node type %u %s", (unsigned) flags, PL_reg_name[flags] ); |
1e696034 KW |
1992 | } |
1993 | ||
c944940b | 1994 | trie = (reg_trie_data *) PerlMemShared_calloc( 1, sizeof(reg_trie_data) ); |
a3621e74 | 1995 | trie->refcount = 1; |
3dab1dad | 1996 | trie->startstate = 1; |
786e8c11 | 1997 | trie->wordcount = word_count; |
f8fc2ecf | 1998 | RExC_rxi->data->data[ data_slot ] = (void*)trie; |
c944940b | 1999 | trie->charmap = (U16 *) PerlMemShared_calloc( 256, sizeof(U16) ); |
fab2782b | 2000 | if (flags == EXACT) |
c944940b | 2001 | trie->bitmap = (char *) PerlMemShared_calloc( ANYOF_BITMAP_SIZE, 1 ); |
2e64971a DM |
2002 | trie->wordinfo = (reg_trie_wordinfo *) PerlMemShared_calloc( |
2003 | trie->wordcount+1, sizeof(reg_trie_wordinfo)); | |
2004 | ||
a3621e74 | 2005 | DEBUG_r({ |
2b8b4781 | 2006 | trie_words = newAV(); |
a3621e74 | 2007 | }); |
a3621e74 | 2008 | |
0111c4fd | 2009 | re_trie_maxbuff = get_sv(RE_TRIE_MAXBUF_NAME, 1); |
316ebaf2 | 2010 | assert(re_trie_maxbuff); |
a3621e74 | 2011 | if (!SvIOK(re_trie_maxbuff)) { |
0111c4fd | 2012 | sv_setiv(re_trie_maxbuff, RE_TRIE_MAXBUF_INIT); |
a3621e74 | 2013 | } |
df826430 | 2014 | DEBUG_TRIE_COMPILE_r({ |
538e84ed KW |
2015 | PerlIO_printf( Perl_debug_log, |
2016 | "%*smake_trie start==%d, first==%d, last==%d, tail==%d depth=%d\n", | |
2017 | (int)depth * 2 + 2, "", | |
2018 | REG_NODE_NUM(startbranch),REG_NODE_NUM(first), | |
2019 | REG_NODE_NUM(last), REG_NODE_NUM(tail), (int)depth); | |
3dab1dad | 2020 | }); |
538e84ed | 2021 | |
7f69552c YO |
2022 | /* Find the node we are going to overwrite */ |
2023 | if ( first == startbranch && OP( last ) != BRANCH ) { | |
2024 | /* whole branch chain */ | |
2025 | convert = first; | |
2026 | } else { | |
2027 | /* branch sub-chain */ | |
2028 | convert = NEXTOPER( first ); | |
2029 | } | |
538e84ed | 2030 | |
a3621e74 YO |
2031 | /* -- First loop and Setup -- |
2032 | ||
2033 | We first traverse the branches and scan each word to determine if it | |
2034 | contains widechars, and how many unique chars there are, this is | |
2035 | important as we have to build a table with at least as many columns as we | |
2036 | have unique chars. | |
2037 | ||
2038 | We use an array of integers to represent the character codes 0..255 | |
538e84ed KW |
2039 | (trie->charmap) and we use a an HV* to store Unicode characters. We use |
2040 | the native representation of the character value as the key and IV's for | |
2041 | the coded index. | |
a3621e74 YO |
2042 | |
2043 | *TODO* If we keep track of how many times each character is used we can | |
2044 | remap the columns so that the table compression later on is more | |
3b753521 | 2045 | efficient in terms of memory by ensuring the most common value is in the |
a3621e74 YO |
2046 | middle and the least common are on the outside. IMO this would be better |
2047 | than a most to least common mapping as theres a decent chance the most | |
2048 | common letter will share a node with the least common, meaning the node | |
486ec47a | 2049 | will not be compressible. With a middle is most common approach the worst |
a3621e74 YO |
2050 | case is when we have the least common nodes twice. |
2051 | ||
2052 | */ | |
2053 | ||
a3621e74 | 2054 | for ( cur = first ; cur < last ; cur = regnext( cur ) ) { |
df826430 | 2055 | regnode *noper = NEXTOPER( cur ); |
e1ec3a88 | 2056 | const U8 *uc = (U8*)STRING( noper ); |
df826430 | 2057 | const U8 *e = uc + STR_LEN( noper ); |
bc031a7d | 2058 | int foldlen = 0; |
07be1b83 | 2059 | U32 wordlen = 0; /* required init */ |
bc031a7d KW |
2060 | STRLEN minchars = 0; |
2061 | STRLEN maxchars = 0; | |
538e84ed KW |
2062 | bool set_bit = trie->bitmap ? 1 : 0; /*store the first char in the |
2063 | bitmap?*/ | |
a3621e74 | 2064 | |
3dab1dad | 2065 | if (OP(noper) == NOTHING) { |
df826430 YO |
2066 | regnode *noper_next= regnext(noper); |
2067 | if (noper_next != tail && OP(noper_next) == flags) { | |
2068 | noper = noper_next; | |
2069 | uc= (U8*)STRING(noper); | |
2070 | e= uc + STR_LEN(noper); | |
2071 | trie->minlen= STR_LEN(noper); | |
2072 | } else { | |
2073 | trie->minlen= 0; | |
2074 | continue; | |
2075 | } | |
3dab1dad | 2076 | } |
df826430 | 2077 | |
fab2782b | 2078 | if ( set_bit ) { /* bitmap only alloced when !(UTF&&Folding) */ |
02daf0ab YO |
2079 | TRIE_BITMAP_SET(trie,*uc); /* store the raw first byte |
2080 | regardless of encoding */ | |
fab2782b YO |
2081 | if (OP( noper ) == EXACTFU_SS) { |
2082 | /* false positives are ok, so just set this */ | |
0dc4a61d | 2083 | TRIE_BITMAP_SET(trie, LATIN_SMALL_LETTER_SHARP_S); |
fab2782b YO |
2084 | } |
2085 | } | |
bc031a7d KW |
2086 | for ( ; uc < e ; uc += len ) { /* Look at each char in the current |
2087 | branch */ | |
3dab1dad | 2088 | TRIE_CHARCOUNT(trie)++; |
a3621e74 | 2089 | TRIE_READ_CHAR; |
645de4ce | 2090 | |
bc031a7d KW |
2091 | /* TRIE_READ_CHAR returns the current character, or its fold if /i |
2092 | * is in effect. Under /i, this character can match itself, or | |
2093 | * anything that folds to it. If not under /i, it can match just | |
2094 | * itself. Most folds are 1-1, for example k, K, and KELVIN SIGN | |
2095 | * all fold to k, and all are single characters. But some folds | |
2096 | * expand to more than one character, so for example LATIN SMALL | |
2097 | * LIGATURE FFI folds to the three character sequence 'ffi'. If | |
2098 | * the string beginning at 'uc' is 'ffi', it could be matched by | |
2099 | * three characters, or just by the one ligature character. (It | |
2100 | * could also be matched by two characters: LATIN SMALL LIGATURE FF | |
2101 | * followed by 'i', or by 'f' followed by LATIN SMALL LIGATURE FI). | |
2102 | * (Of course 'I' and/or 'F' instead of 'i' and 'f' can also | |
2103 | * match.) The trie needs to know the minimum and maximum number | |
2104 | * of characters that could match so that it can use size alone to | |
2105 | * quickly reject many match attempts. The max is simple: it is | |
2106 | * the number of folded characters in this branch (since a fold is | |
2107 | * never shorter than what folds to it. */ | |
2108 | ||
2109 | maxchars++; | |
2110 | ||
2111 | /* And the min is equal to the max if not under /i (indicated by | |
2112 | * 'folder' being NULL), or there are no multi-character folds. If | |
2113 | * there is a multi-character fold, the min is incremented just | |
2114 | * once, for the character that folds to the sequence. Each | |
2115 | * character in the sequence needs to be added to the list below of | |
2116 | * characters in the trie, but we count only the first towards the | |
2117 | * min number of characters needed. This is done through the | |
2118 | * variable 'foldlen', which is returned by the macros that look | |
2119 | * for these sequences as the number of bytes the sequence | |
2120 | * occupies. Each time through the loop, we decrement 'foldlen' by | |
2121 | * how many bytes the current char occupies. Only when it reaches | |
2122 | * 0 do we increment 'minchars' or look for another multi-character | |
2123 | * sequence. */ | |
2124 | if (folder == NULL) { | |
2125 | minchars++; | |
2126 | } | |
2127 | else if (foldlen > 0) { | |
2128 | foldlen -= (UTF) ? UTF8SKIP(uc) : 1; | |
645de4ce KW |
2129 | } |
2130 | else { | |
bc031a7d KW |
2131 | minchars++; |
2132 | ||
2133 | /* See if *uc is the beginning of a multi-character fold. If | |
2134 | * so, we decrement the length remaining to look at, to account | |
2135 | * for the current character this iteration. (We can use 'uc' | |
2136 | * instead of the fold returned by TRIE_READ_CHAR because for | |
2137 | * non-UTF, the latin1_safe macro is smart enough to account | |
2138 | * for all the unfolded characters, and because for UTF, the | |
2139 | * string will already have been folded earlier in the | |
2140 | * compilation process */ | |
2141 | if (UTF) { | |
2142 | if ((foldlen = is_MULTI_CHAR_FOLD_utf8_safe(uc, e))) { | |
2143 | foldlen -= UTF8SKIP(uc); | |
645de4ce KW |
2144 | } |
2145 | } | |
bc031a7d KW |
2146 | else if ((foldlen = is_MULTI_CHAR_FOLD_latin1_safe(uc, e))) { |
2147 | foldlen--; | |
2148 | } | |
645de4ce | 2149 | } |
bc031a7d KW |
2150 | |
2151 | /* The current character (and any potential folds) should be added | |
2152 | * to the possible matching characters for this position in this | |
2153 | * branch */ | |
a3621e74 | 2154 | if ( uvc < 256 ) { |
fab2782b YO |
2155 | if ( folder ) { |
2156 | U8 folded= folder[ (U8) uvc ]; | |
2157 | if ( !trie->charmap[ folded ] ) { | |
2158 | trie->charmap[ folded ]=( ++trie->uniquecharcount ); | |
2159 | TRIE_STORE_REVCHAR( folded ); | |
2160 | } | |
2161 | } | |
a3621e74 YO |
2162 | if ( !trie->charmap[ uvc ] ) { |
2163 | trie->charmap[ uvc ]=( ++trie->uniquecharcount ); | |
fab2782b | 2164 | TRIE_STORE_REVCHAR( uvc ); |
a3621e74 | 2165 | } |
02daf0ab | 2166 | if ( set_bit ) { |
62012aee KW |
2167 | /* store the codepoint in the bitmap, and its folded |
2168 | * equivalent. */ | |
fab2782b | 2169 | TRIE_BITMAP_SET(trie, uvc); |
0921ee73 T |
2170 | |
2171 | /* store the folded codepoint */ | |
fab2782b | 2172 | if ( folder ) TRIE_BITMAP_SET(trie, folder[(U8) uvc ]); |
0921ee73 T |
2173 | |
2174 | if ( !UTF ) { | |
2175 | /* store first byte of utf8 representation of | |
acdf4139 | 2176 | variant codepoints */ |
6f2d5cbc | 2177 | if (! UVCHR_IS_INVARIANT(uvc)) { |
acdf4139 | 2178 | TRIE_BITMAP_SET(trie, UTF8_TWO_BYTE_HI(uvc)); |
0921ee73 T |
2179 | } |
2180 | } | |
02daf0ab YO |
2181 | set_bit = 0; /* We've done our bit :-) */ |
2182 | } | |
a3621e74 | 2183 | } else { |
bc031a7d KW |
2184 | |
2185 | /* XXX We could come up with the list of code points that fold | |
2186 | * to this using PL_utf8_foldclosures, except not for | |
2187 | * multi-char folds, as there may be multiple combinations | |
2188 | * there that could work, which needs to wait until runtime to | |
2189 | * resolve (The comment about LIGATURE FFI above is such an | |
2190 | * example */ | |
2191 | ||
a3621e74 | 2192 | SV** svpp; |
55eed653 NC |
2193 | if ( !widecharmap ) |
2194 | widecharmap = newHV(); | |
a3621e74 | 2195 | |
55eed653 | 2196 | svpp = hv_fetch( widecharmap, (char*)&uvc, sizeof( UV ), 1 ); |
a3621e74 YO |
2197 | |
2198 | if ( !svpp ) | |
e4584336 | 2199 | Perl_croak( aTHX_ "error creating/fetching widecharmap entry for 0x%"UVXf, uvc ); |
a3621e74 YO |
2200 | |
2201 | if ( !SvTRUE( *svpp ) ) { | |
2202 | sv_setiv( *svpp, ++trie->uniquecharcount ); | |
fab2782b | 2203 | TRIE_STORE_REVCHAR(uvc); |
a3621e74 YO |
2204 | } |
2205 | } | |
bc031a7d KW |
2206 | } /* end loop through characters in this branch of the trie */ |
2207 | ||
2208 | /* We take the min and max for this branch and combine to find the min | |
2209 | * and max for all branches processed so far */ | |
3dab1dad | 2210 | if( cur == first ) { |
bc031a7d KW |
2211 | trie->minlen = minchars; |
2212 | trie->maxlen = maxchars; | |
2213 | } else if (minchars < trie->minlen) { | |
2214 | trie->minlen = minchars; | |
2215 | } else if (maxchars > trie->maxlen) { | |
2216 | trie->maxlen = maxchars; | |
fab2782b | 2217 | } |
a3621e74 YO |
2218 | } /* end first pass */ |
2219 | DEBUG_TRIE_COMPILE_r( | |
538e84ed KW |
2220 | PerlIO_printf( Perl_debug_log, |
2221 | "%*sTRIE(%s): W:%d C:%d Uq:%d Min:%d Max:%d\n", | |
3dab1dad | 2222 | (int)depth * 2 + 2,"", |
55eed653 | 2223 | ( widecharmap ? "UTF8" : "NATIVE" ), (int)word_count, |
be8e71aa YO |
2224 | (int)TRIE_CHARCOUNT(trie), trie->uniquecharcount, |
2225 | (int)trie->minlen, (int)trie->maxlen ) | |
a3621e74 | 2226 | ); |
a3621e74 YO |
2227 | |
2228 | /* | |
2229 | We now know what we are dealing with in terms of unique chars and | |
2230 | string sizes so we can calculate how much memory a naive | |
0111c4fd RGS |
2231 | representation using a flat table will take. If it's over a reasonable |
2232 | limit (as specified by ${^RE_TRIE_MAXBUF}) we use a more memory | |
a3621e74 YO |
2233 | conservative but potentially much slower representation using an array |
2234 | of lists. | |
2235 | ||
2236 | At the end we convert both representations into the same compressed | |
2237 | form that will be used in regexec.c for matching with. The latter | |
2238 | is a form that cannot be used to construct with but has memory | |
2239 | properties similar to the list form and access properties similar | |
2240 | to the table form making it both suitable for fast searches and | |
2241 | small enough that its feasable to store for the duration of a program. | |
2242 | ||
2243 | See the comment in the code where the compressed table is produced | |
2244 | inplace from the flat tabe representation for an explanation of how | |
2245 | the compression works. | |
2246 | ||
2247 | */ | |
2248 | ||
2249 | ||
2e64971a DM |
2250 | Newx(prev_states, TRIE_CHARCOUNT(trie) + 2, U32); |
2251 | prev_states[1] = 0; | |
2252 | ||
538e84ed KW |
2253 | if ( (IV)( ( TRIE_CHARCOUNT(trie) + 1 ) * trie->uniquecharcount + 1) |
2254 | > SvIV(re_trie_maxbuff) ) | |
2255 | { | |
a3621e74 YO |
2256 | /* |
2257 | Second Pass -- Array Of Lists Representation | |
2258 | ||
2259 | Each state will be represented by a list of charid:state records | |
2260 | (reg_trie_trans_le) the first such element holds the CUR and LEN | |
2261 | points of the allocated array. (See defines above). | |
2262 | ||
2263 | We build the initial structure using the lists, and then convert | |
2264 | it into the compressed table form which allows faster lookups | |
2265 | (but cant be modified once converted). | |
a3621e74 YO |
2266 | */ |
2267 | ||
a3621e74 YO |
2268 | STRLEN transcount = 1; |
2269 | ||
538e84ed | 2270 | DEBUG_TRIE_COMPILE_MORE_r( PerlIO_printf( Perl_debug_log, |
1e2e3d02 YO |
2271 | "%*sCompiling trie using list compiler\n", |
2272 | (int)depth * 2 + 2, "")); | |
686b73d4 | 2273 | |
c944940b JH |
2274 | trie->states = (reg_trie_state *) |
2275 | PerlMemShared_calloc( TRIE_CHARCOUNT(trie) + 2, | |
2276 | sizeof(reg_trie_state) ); | |
a3621e74 YO |
2277 | TRIE_LIST_NEW(1); |
2278 | next_alloc = 2; | |
2279 | ||
2280 | for ( cur = first ; cur < last ; cur = regnext( cur ) ) { | |
2281 | ||
df826430 | 2282 | regnode *noper = NEXTOPER( cur ); |
c445ea15 | 2283 | U8 *uc = (U8*)STRING( noper ); |
df826430 | 2284 | const U8 *e = uc + STR_LEN( noper ); |
c445ea15 AL |
2285 | U32 state = 1; /* required init */ |
2286 | U16 charid = 0; /* sanity init */ | |
07be1b83 | 2287 | U32 wordlen = 0; /* required init */ |
c445ea15 | 2288 | |
df826430 YO |
2289 | if (OP(noper) == NOTHING) { |
2290 | regnode *noper_next= regnext(noper); | |
2291 | if (noper_next != tail && OP(noper_next) == flags) { | |
2292 | noper = noper_next; | |
2293 | uc= (U8*)STRING(noper); | |
2294 | e= uc + STR_LEN(noper); | |
2295 | } | |
2296 | } | |
2297 | ||
3dab1dad | 2298 | if (OP(noper) != NOTHING) { |
786e8c11 | 2299 | for ( ; uc < e ; uc += len ) { |
c445ea15 | 2300 | |
786e8c11 | 2301 | TRIE_READ_CHAR; |
c445ea15 | 2302 | |
786e8c11 YO |
2303 | if ( uvc < 256 ) { |
2304 | charid = trie->charmap[ uvc ]; | |
c445ea15 | 2305 | } else { |
538e84ed KW |
2306 | SV** const svpp = hv_fetch( widecharmap, |
2307 | (char*)&uvc, | |
2308 | sizeof( UV ), | |
2309 | 0); | |
786e8c11 YO |
2310 | if ( !svpp ) { |
2311 | charid = 0; | |
2312 | } else { | |
2313 | charid=(U16)SvIV( *svpp ); | |
2314 | } | |
c445ea15 | 2315 | } |
538e84ed KW |
2316 | /* charid is now 0 if we dont know the char read, or |
2317 | * nonzero if we do */ | |
786e8c11 | 2318 | if ( charid ) { |
a3621e74 | 2319 | |
786e8c11 YO |
2320 | U16 check; |
2321 | U32 newstate = 0; | |
a3621e74 | 2322 | |
786e8c11 YO |
2323 | charid--; |
2324 | if ( !trie->states[ state ].trans.list ) { | |
2325 | TRIE_LIST_NEW( state ); | |
c445ea15 | 2326 | } |
538e84ed KW |
2327 | for ( check = 1; |
2328 | check <= TRIE_LIST_USED( state ); | |
2329 | check++ ) | |
2330 | { | |
2331 | if ( TRIE_LIST_ITEM( state, check ).forid | |
2332 | == charid ) | |
2333 | { | |
786e8c11 YO |
2334 | newstate = TRIE_LIST_ITEM( state, check ).newstate; |
2335 | break; | |
2336 | } | |
2337 | } | |
2338 | if ( ! newstate ) { | |
2339 | newstate = next_alloc++; | |
2e64971a | 2340 | prev_states[newstate] = state; |
786e8c11 YO |
2341 | TRIE_LIST_PUSH( state, charid, newstate ); |
2342 | transcount++; | |
2343 | } | |
2344 | state = newstate; | |
2345 | } else { | |
2346 | Perl_croak( aTHX_ "panic! In trie construction, no char mapping for %"IVdf, uvc ); | |
c445ea15 | 2347 | } |
a28509cc | 2348 | } |
c445ea15 | 2349 | } |
3dab1dad | 2350 | TRIE_HANDLE_WORD(state); |
a3621e74 YO |
2351 | |
2352 | } /* end second pass */ | |
2353 | ||
1e2e3d02 | 2354 | /* next alloc is the NEXT state to be allocated */ |
538e84ed | 2355 | trie->statecount = next_alloc; |
c944940b JH |
2356 | trie->states = (reg_trie_state *) |
2357 | PerlMemShared_realloc( trie->states, | |
2358 | next_alloc | |
2359 | * sizeof(reg_trie_state) ); | |
a3621e74 | 2360 | |
3dab1dad | 2361 | /* and now dump it out before we compress it */ |
2b8b4781 NC |
2362 | DEBUG_TRIE_COMPILE_MORE_r(dump_trie_interim_list(trie, widecharmap, |
2363 | revcharmap, next_alloc, | |
2364 | depth+1) | |
1e2e3d02 | 2365 | ); |
a3621e74 | 2366 | |
c944940b JH |
2367 | trie->trans = (reg_trie_trans *) |
2368 | PerlMemShared_calloc( transcount, sizeof(reg_trie_trans) ); | |
a3621e74 YO |
2369 | { |
2370 | U32 state; | |
a3621e74 YO |
2371 | U32 tp = 0; |
2372 | U32 zp = 0; | |
2373 | ||
2374 | ||
2375 | for( state=1 ; state < next_alloc ; state ++ ) { | |
2376 | U32 base=0; | |
2377 | ||
2378 | /* | |
2379 | DEBUG_TRIE_COMPILE_MORE_r( | |
2380 | PerlIO_printf( Perl_debug_log, "tp: %d zp: %d ",tp,zp) | |
2381 | ); | |
2382 | */ | |
2383 | ||
2384 | if (trie->states[state].trans.list) { | |
2385 | U16 minid=TRIE_LIST_ITEM( state, 1).forid; | |
2386 | U16 maxid=minid; | |
a28509cc | 2387 | U16 idx; |
a3621e74 YO |
2388 | |
2389 | for( idx = 2 ; idx <= TRIE_LIST_USED( state ) ; idx++ ) { | |
c445ea15 AL |
2390 | const U16 forid = TRIE_LIST_ITEM( state, idx).forid; |
2391 | if ( forid < minid ) { | |
2392 | minid=forid; | |
2393 | } else if ( forid > maxid ) { | |
2394 | maxid=forid; | |
2395 | } | |
a3621e74 YO |
2396 | } |
2397 | if ( transcount < tp + maxid - minid + 1) { | |
2398 | transcount *= 2; | |
c944940b JH |
2399 | trie->trans = (reg_trie_trans *) |
2400 | PerlMemShared_realloc( trie->trans, | |
446bd890 NC |
2401 | transcount |
2402 | * sizeof(reg_trie_trans) ); | |
538e84ed KW |
2403 | Zero( trie->trans + (transcount / 2), |
2404 | transcount / 2, | |
2405 | reg_trie_trans ); | |
a3621e74 YO |
2406 | } |
2407 | base = trie->uniquecharcount + tp - minid; | |
2408 | if ( maxid == minid ) { | |
2409 | U32 set = 0; | |
2410 | for ( ; zp < tp ; zp++ ) { | |
2411 | if ( ! trie->trans[ zp ].next ) { | |
2412 | base = trie->uniquecharcount + zp - minid; | |
538e84ed KW |
2413 | trie->trans[ zp ].next = TRIE_LIST_ITEM( state, |
2414 | 1).newstate; | |
a3621e74 YO |
2415 | trie->trans[ zp ].check = state; |
2416 | set = 1; | |
2417 | break; | |
2418 | } | |
2419 | } | |
2420 | if ( !set ) { | |
538e84ed KW |
2421 | trie->trans[ tp ].next = TRIE_LIST_ITEM( state, |
2422 | 1).newstate; | |
a3621e74 YO |
2423 | trie->trans[ tp ].check = state; |
2424 | tp++; | |
2425 | zp = tp; | |
2426 | } | |
2427 | } else { | |
2428 | for ( idx=1; idx <= TRIE_LIST_USED( state ) ; idx++ ) { | |
538e84ed KW |
2429 | const U32 tid = base |
2430 | - trie->uniquecharcount | |
2431 | + TRIE_LIST_ITEM( state, idx ).forid; | |
2432 | trie->trans[ tid ].next = TRIE_LIST_ITEM( state, | |
2433 | idx ).newstate; | |
a3621e74 YO |
2434 | trie->trans[ tid ].check = state; |
2435 | } | |
2436 | tp += ( maxid - minid + 1 ); | |
2437 | } | |
2438 | Safefree(trie->states[ state ].trans.list); | |
2439 | } | |
2440 | /* | |
2441 | DEBUG_TRIE_COMPILE_MORE_r( | |
2442 | PerlIO_printf( Perl_debug_log, " base: %d\n",base); | |
2443 | ); | |
2444 | */ | |
2445 | trie->states[ state ].trans.base=base; | |
2446 | } | |
cc601c31 | 2447 | trie->lasttrans = tp + 1; |
a3621e74 YO |
2448 | } |
2449 | } else { | |
2450 | /* | |
2451 | Second Pass -- Flat Table Representation. | |
2452 | ||
b423522f KW |
2453 | we dont use the 0 slot of either trans[] or states[] so we add 1 to |
2454 | each. We know that we will need Charcount+1 trans at most to store | |
2455 | the data (one row per char at worst case) So we preallocate both | |
2456 | structures assuming worst case. | |
a3621e74 YO |
2457 | |
2458 | We then construct the trie using only the .next slots of the entry | |
2459 | structs. | |
2460 | ||
b423522f KW |
2461 | We use the .check field of the first entry of the node temporarily |
2462 | to make compression both faster and easier by keeping track of how | |
2463 | many non zero fields are in the node. | |
a3621e74 YO |
2464 | |
2465 | Since trans are numbered from 1 any 0 pointer in the table is a FAIL | |
2466 | transition. | |
2467 | ||
b423522f KW |
2468 | There are two terms at use here: state as a TRIE_NODEIDX() which is |
2469 | a number representing the first entry of the node, and state as a | |
2470 | TRIE_NODENUM() which is the trans number. state 1 is TRIE_NODEIDX(1) | |
2471 | and TRIE_NODENUM(1), state 2 is TRIE_NODEIDX(2) and TRIE_NODENUM(3) | |
2472 | if there are 2 entrys per node. eg: | |
a3621e74 YO |
2473 | |
2474 | A B A B | |
2475 | 1. 2 4 1. 3 7 | |
2476 | 2. 0 3 3. 0 5 | |
2477 | 3. 0 0 5. 0 0 | |
2478 | 4. 0 0 7. 0 0 | |
2479 | ||
b423522f KW |
2480 | The table is internally in the right hand, idx form. However as we |
2481 | also have to deal with the states array which is indexed by nodenum | |
2482 | we have to use TRIE_NODENUM() to convert. | |
a3621e74 YO |
2483 | |
2484 | */ | |
538e84ed | 2485 | DEBUG_TRIE_COMPILE_MORE_r( PerlIO_printf( Perl_debug_log, |
1e2e3d02 YO |
2486 | "%*sCompiling trie using table compiler\n", |
2487 | (int)depth * 2 + 2, "")); | |
3dab1dad | 2488 | |
c944940b JH |
2489 | trie->trans = (reg_trie_trans *) |
2490 | PerlMemShared_calloc( ( TRIE_CHARCOUNT(trie) + 1 ) | |
2491 | * trie->uniquecharcount + 1, | |
2492 | sizeof(reg_trie_trans) ); | |
2493 | trie->states = (reg_trie_state *) | |
2494 | PerlMemShared_calloc( TRIE_CHARCOUNT(trie) + 2, | |
2495 | sizeof(reg_trie_state) ); | |
a3621e74 YO |
2496 | next_alloc = trie->uniquecharcount + 1; |
2497 | ||
3dab1dad | 2498 | |
a3621e74 YO |
2499 | for ( cur = first ; cur < last ; cur = regnext( cur ) ) { |
2500 | ||
df826430 | 2501 | regnode *noper = NEXTOPER( cur ); |
a28509cc | 2502 | const U8 *uc = (U8*)STRING( noper ); |
df826430 | 2503 | const U8 *e = uc + STR_LEN( noper ); |
a3621e74 YO |
2504 | |
2505 | U32 state = 1; /* required init */ | |
2506 | ||
2507 | U16 charid = 0; /* sanity init */ | |
2508 | U32 accept_state = 0; /* sanity init */ | |
a3621e74 | 2509 | |
07be1b83 | 2510 | U32 wordlen = 0; /* required init */ |
a3621e74 | 2511 | |
df826430 YO |
2512 | if (OP(noper) == NOTHING) { |
2513 | regnode *noper_next= regnext(noper); | |
2514 | if (noper_next != tail && OP(noper_next) == flags) { | |
2515 | noper = noper_next; | |
2516 | uc= (U8*)STRING(noper); | |
2517 | e= uc + STR_LEN(noper); | |
2518 | } | |
2519 | } | |
fab2782b | 2520 | |
3dab1dad | 2521 | if ( OP(noper) != NOTHING ) { |
786e8c11 | 2522 | for ( ; uc < e ; uc += len ) { |
a3621e74 | 2523 | |
786e8c11 | 2524 | TRIE_READ_CHAR; |
a3621e74 | 2525 | |
786e8c11 YO |
2526 | if ( uvc < 256 ) { |
2527 | charid = trie->charmap[ uvc ]; | |
2528 | } else { | |
538e84ed KW |
2529 | SV* const * const svpp = hv_fetch( widecharmap, |
2530 | (char*)&uvc, | |
2531 | sizeof( UV ), | |
2532 | 0); | |
786e8c11 | 2533 | charid = svpp ? (U16)SvIV(*svpp) : 0; |
a3621e74 | 2534 | } |
786e8c11 YO |
2535 | if ( charid ) { |
2536 | charid--; | |
2537 | if ( !trie->trans[ state + charid ].next ) { | |
2538 | trie->trans[ state + charid ].next = next_alloc; | |
2539 | trie->trans[ state ].check++; | |
2e64971a DM |
2540 | prev_states[TRIE_NODENUM(next_alloc)] |
2541 | = TRIE_NODENUM(state); | |
786e8c11 YO |
2542 | next_alloc += trie->uniquecharcount; |
2543 | } | |
2544 | state = trie->trans[ state + charid ].next; | |
2545 | } else { | |
2546 | Perl_croak( aTHX_ "panic! In trie construction, no char mapping for %"IVdf, uvc ); | |
2547 | } | |
538e84ed KW |
2548 | /* charid is now 0 if we dont know the char read, or |
2549 | * nonzero if we do */ | |
a3621e74 | 2550 | } |
a3621e74 | 2551 | } |
3dab1dad YO |
2552 | accept_state = TRIE_NODENUM( state ); |
2553 | TRIE_HANDLE_WORD(accept_state); | |
a3621e74 YO |
2554 | |
2555 | } /* end second pass */ | |
2556 | ||
3dab1dad | 2557 | /* and now dump it out before we compress it */ |
2b8b4781 NC |
2558 | DEBUG_TRIE_COMPILE_MORE_r(dump_trie_interim_table(trie, widecharmap, |
2559 | revcharmap, | |
2560 | next_alloc, depth+1)); | |
a3621e74 | 2561 | |
a3621e74 YO |
2562 | { |
2563 | /* | |
2564 | * Inplace compress the table.* | |
2565 | ||
2566 | For sparse data sets the table constructed by the trie algorithm will | |
2567 | be mostly 0/FAIL transitions or to put it another way mostly empty. | |
2568 | (Note that leaf nodes will not contain any transitions.) | |
2569 | ||
2570 | This algorithm compresses the tables by eliminating most such | |
2571 | transitions, at the cost of a modest bit of extra work during lookup: | |
2572 | ||
2573 | - Each states[] entry contains a .base field which indicates the | |
2574 | index in the state[] array wheres its transition data is stored. | |
2575 | ||
3b753521 | 2576 | - If .base is 0 there are no valid transitions from that node. |
a3621e74 YO |
2577 | |
2578 | - If .base is nonzero then charid is added to it to find an entry in | |
2579 | the trans array. | |
2580 | ||
2581 | -If trans[states[state].base+charid].check!=state then the | |
2582 | transition is taken to be a 0/Fail transition. Thus if there are fail | |
2583 | transitions at the front of the node then the .base offset will point | |
2584 | somewhere inside the previous nodes data (or maybe even into a node | |
2585 | even earlier), but the .check field determines if the transition is | |
2586 | valid. | |
2587 | ||
786e8c11 | 2588 | XXX - wrong maybe? |
a3621e74 | 2589 | The following process inplace converts the table to the compressed |
3b753521 | 2590 | table: We first do not compress the root node 1,and mark all its |
a3621e74 | 2591 | .check pointers as 1 and set its .base pointer as 1 as well. This |
3b753521 FN |
2592 | allows us to do a DFA construction from the compressed table later, |
2593 | and ensures that any .base pointers we calculate later are greater | |
2594 | than 0. | |
a3621e74 YO |
2595 | |
2596 | - We set 'pos' to indicate the first entry of the second node. | |
2597 | ||
2598 | - We then iterate over the columns of the node, finding the first and | |
2599 | last used entry at l and m. We then copy l..m into pos..(pos+m-l), | |
2600 | and set the .check pointers accordingly, and advance pos | |
2601 | appropriately and repreat for the next node. Note that when we copy | |
2602 | the next pointers we have to convert them from the original | |
2603 | NODEIDX form to NODENUM form as the former is not valid post | |
2604 | compression. | |
2605 | ||
2606 | - If a node has no transitions used we mark its base as 0 and do not | |
2607 | advance the pos pointer. | |
2608 | ||
2609 | - If a node only has one transition we use a second pointer into the | |
2610 | structure to fill in allocated fail transitions from other states. | |
2611 | This pointer is independent of the main pointer and scans forward | |
2612 | looking for null transitions that are allocated to a state. When it | |
2613 | finds one it writes the single transition into the "hole". If the | |
786e8c11 | 2614 | pointer doesnt find one the single transition is appended as normal. |
a3621e74 YO |
2615 | |
2616 | - Once compressed we can Renew/realloc the structures to release the | |
2617 | excess space. | |
2618 | ||
2619 | See "Table-Compression Methods" in sec 3.9 of the Red Dragon, | |
2620 | specifically Fig 3.47 and the associated pseudocode. | |
2621 | ||
2622 | demq | |
2623 | */ | |
a3b680e6 | 2624 | const U32 laststate = TRIE_NODENUM( next_alloc ); |
a28509cc | 2625 | U32 state, charid; |
a3621e74 | 2626 | U32 pos = 0, zp=0; |
1e2e3d02 | 2627 | trie->statecount = laststate; |
a3621e74 YO |
2628 | |
2629 | for ( state = 1 ; state < laststate ; state++ ) { | |
2630 | U8 flag = 0; | |
a28509cc AL |
2631 | const U32 stateidx = TRIE_NODEIDX( state ); |
2632 | const U32 o_used = trie->trans[ stateidx ].check; | |
2633 | U32 used = trie->trans[ stateidx ].check; | |
a3621e74 YO |
2634 | trie->trans[ stateidx ].check = 0; |
2635 | ||
538e84ed KW |
2636 | for ( charid = 0; |
2637 | used && charid < trie->uniquecharcount; | |
2638 | charid++ ) | |
2639 | { | |
a3621e74 YO |
2640 | if ( flag || trie->trans[ stateidx + charid ].next ) { |
2641 | if ( trie->trans[ stateidx + charid ].next ) { | |
2642 | if (o_used == 1) { | |
2643 | for ( ; zp < pos ; zp++ ) { | |
2644 | if ( ! trie->trans[ zp ].next ) { | |
2645 | break; | |
2646 | } | |
2647 | } | |
538e84ed KW |
2648 | trie->states[ state ].trans.base |
2649 | = zp | |
2650 | + trie->uniquecharcount | |
2651 | - charid ; | |
2652 | trie->trans[ zp ].next | |
2653 | = SAFE_TRIE_NODENUM( trie->trans[ stateidx | |
2654 | + charid ].next ); | |
a3621e74 YO |
2655 | trie->trans[ zp ].check = state; |
2656 | if ( ++zp > pos ) pos = zp; | |
2657 | break; | |
2658 | } | |
2659 | used--; | |
2660 | } | |
2661 | if ( !flag ) { | |
2662 | flag = 1; | |
538e84ed KW |
2663 | trie->states[ state ].trans.base |
2664 | = pos + trie->uniquecharcount - charid ; | |
a3621e74 | 2665 | } |
538e84ed KW |
2666 | trie->trans[ pos ].next |
2667 | = SAFE_TRIE_NODENUM( | |
2668 | trie->trans[ stateidx + charid ].next ); | |
a3621e74 YO |
2669 | trie->trans[ pos ].check = state; |
2670 | pos++; | |
2671 | } | |
2672 | } | |
2673 | } | |
cc601c31 | 2674 | trie->lasttrans = pos + 1; |
c944940b JH |
2675 | trie->states = (reg_trie_state *) |
2676 | PerlMemShared_realloc( trie->states, laststate | |
2677 | * sizeof(reg_trie_state) ); | |
a3621e74 | 2678 | DEBUG_TRIE_COMPILE_MORE_r( |
538e84ed KW |
2679 | PerlIO_printf( Perl_debug_log, |
2680 | "%*sAlloc: %d Orig: %"IVdf" elements, Final:%"IVdf". Savings of %%%5.2f\n", | |
2681 | (int)depth * 2 + 2,"", | |
2682 | (int)( ( TRIE_CHARCOUNT(trie) + 1 ) * trie->uniquecharcount | |
2683 | + 1 ), | |
2684 | (IV)next_alloc, | |
2685 | (IV)pos, | |
2686 | ( ( next_alloc - pos ) * 100 ) / (double)next_alloc ); | |
a3621e74 YO |
2687 | ); |
2688 | ||
2689 | } /* end table compress */ | |
2690 | } | |
1e2e3d02 | 2691 | DEBUG_TRIE_COMPILE_MORE_r( |
538e84ed KW |
2692 | PerlIO_printf(Perl_debug_log, |
2693 | "%*sStatecount:%"UVxf" Lasttrans:%"UVxf"\n", | |
1e2e3d02 YO |
2694 | (int)depth * 2 + 2, "", |
2695 | (UV)trie->statecount, | |
2696 | (UV)trie->lasttrans) | |
2697 | ); | |
cc601c31 | 2698 | /* resize the trans array to remove unused space */ |
c944940b JH |
2699 | trie->trans = (reg_trie_trans *) |
2700 | PerlMemShared_realloc( trie->trans, trie->lasttrans | |
2701 | * sizeof(reg_trie_trans) ); | |
a3621e74 | 2702 | |
538e84ed | 2703 | { /* Modify the program and insert the new TRIE node */ |
3dab1dad YO |
2704 | U8 nodetype =(U8)(flags & 0xFF); |
2705 | char *str=NULL; | |
538e84ed | 2706 | |
07be1b83 | 2707 | #ifdef DEBUGGING |
e62cc96a | 2708 | regnode *optimize = NULL; |
7122b237 YO |
2709 | #ifdef RE_TRACK_PATTERN_OFFSETS |
2710 | ||
b57a0404 JH |
2711 | U32 mjd_offset = 0; |
2712 | U32 mjd_nodelen = 0; | |
7122b237 YO |
2713 | #endif /* RE_TRACK_PATTERN_OFFSETS */ |
2714 | #endif /* DEBUGGING */ | |
a3621e74 | 2715 | /* |
3dab1dad YO |
2716 | This means we convert either the first branch or the first Exact, |
2717 | depending on whether the thing following (in 'last') is a branch | |
2718 | or not and whther first is the startbranch (ie is it a sub part of | |
2719 | the alternation or is it the whole thing.) | |
3b753521 | 2720 | Assuming its a sub part we convert the EXACT otherwise we convert |
3dab1dad | 2721 | the whole branch sequence, including the first. |
a3621e74 | 2722 | */ |
3dab1dad | 2723 | /* Find the node we are going to overwrite */ |
7f69552c | 2724 | if ( first != startbranch || OP( last ) == BRANCH ) { |
07be1b83 | 2725 | /* branch sub-chain */ |
3dab1dad | 2726 | NEXT_OFF( first ) = (U16)(last - first); |
7122b237 | 2727 | #ifdef RE_TRACK_PATTERN_OFFSETS |
07be1b83 YO |
2728 | DEBUG_r({ |
2729 | mjd_offset= Node_Offset((convert)); | |
2730 | mjd_nodelen= Node_Length((convert)); | |
2731 | }); | |
7122b237 | 2732 | #endif |
7f69552c | 2733 | /* whole branch chain */ |
7122b237 YO |
2734 | } |
2735 | #ifdef RE_TRACK_PATTERN_OFFSETS | |
2736 | else { | |
7f69552c YO |
2737 | DEBUG_r({ |
2738 | const regnode *nop = NEXTOPER( convert ); | |
2739 | mjd_offset= Node_Offset((nop)); | |
2740 | mjd_nodelen= Node_Length((nop)); | |
2741 | }); | |
07be1b83 YO |
2742 | } |
2743 | DEBUG_OPTIMISE_r( | |
538e84ed KW |
2744 | PerlIO_printf(Perl_debug_log, |
2745 | "%*sMJD offset:%"UVuf" MJD length:%"UVuf"\n", | |
07be1b83 | 2746 | (int)depth * 2 + 2, "", |
786e8c11 | 2747 | (UV)mjd_offset, (UV)mjd_nodelen) |
07be1b83 | 2748 | ); |
7122b237 | 2749 | #endif |
538e84ed | 2750 | /* But first we check to see if there is a common prefix we can |
3dab1dad YO |
2751 | split out as an EXACT and put in front of the TRIE node. */ |
2752 | trie->startstate= 1; | |
55eed653 | 2753 | if ( trie->bitmap && !widecharmap && !trie->jump ) { |
3dab1dad | 2754 | U32 state; |
1e2e3d02 | 2755 | for ( state = 1 ; state < trie->statecount-1 ; state++ ) { |
a3621e74 | 2756 | U32 ofs = 0; |
8e11feef RGS |
2757 | I32 idx = -1; |
2758 | U32 count = 0; | |
2759 | const U32 base = trie->states[ state ].trans.base; | |
a3621e74 | 2760 | |
3dab1dad | 2761 | if ( trie->states[state].wordnum ) |
8e11feef | 2762 | count = 1; |
a3621e74 | 2763 | |
8e11feef | 2764 | for ( ofs = 0 ; ofs < trie->uniquecharcount ; ofs++ ) { |
cc601c31 YO |
2765 | if ( ( base + ofs >= trie->uniquecharcount ) && |
2766 | ( base + ofs - trie->uniquecharcount < trie->lasttrans ) && | |
a3621e74 YO |
2767 | trie->trans[ base + ofs - trie->uniquecharcount ].check == state ) |
2768 | { | |
3dab1dad | 2769 | if ( ++count > 1 ) { |
2b8b4781 | 2770 | SV **tmp = av_fetch( revcharmap, ofs, 0); |
07be1b83 | 2771 | const U8 *ch = (U8*)SvPV_nolen_const( *tmp ); |
8e11feef | 2772 | if ( state == 1 ) break; |
3dab1dad YO |
2773 | if ( count == 2 ) { |
2774 | Zero(trie->bitmap, ANYOF_BITMAP_SIZE, char); | |
2775 | DEBUG_OPTIMISE_r( | |
8e11feef RGS |
2776 | PerlIO_printf(Perl_debug_log, |
2777 | "%*sNew Start State=%"UVuf" Class: [", | |
2778 | (int)depth * 2 + 2, "", | |
786e8c11 | 2779 | (UV)state)); |
be8e71aa | 2780 | if (idx >= 0) { |
2b8b4781 | 2781 | SV ** const tmp = av_fetch( revcharmap, idx, 0); |
be8e71aa | 2782 | const U8 * const ch = (U8*)SvPV_nolen_const( *tmp ); |
8e11feef | 2783 | |
3dab1dad | 2784 | TRIE_BITMAP_SET(trie,*ch); |
8e11feef RGS |
2785 | if ( folder ) |
2786 | TRIE_BITMAP_SET(trie, folder[ *ch ]); | |
3dab1dad | 2787 | DEBUG_OPTIMISE_r( |
f1f66076 | 2788 | PerlIO_printf(Perl_debug_log, "%s", (char*)ch) |
3dab1dad | 2789 | ); |
8e11feef RGS |
2790 | } |
2791 | } | |
2792 | TRIE_BITMAP_SET(trie,*ch); | |
2793 | if ( folder ) | |
2794 | TRIE_BITMAP_SET(trie,folder[ *ch ]); | |
2795 | DEBUG_OPTIMISE_r(PerlIO_printf( Perl_debug_log,"%s", ch)); | |
2796 | } | |
2797 | idx = ofs; | |
2798 | } | |
3dab1dad YO |
2799 | } |
2800 | if ( count == 1 ) { | |
2b8b4781 | 2801 | SV **tmp = av_fetch( revcharmap, idx, 0); |
c490c714 YO |
2802 | STRLEN len; |
2803 | char *ch = SvPV( *tmp, len ); | |
de734bd5 A |
2804 | DEBUG_OPTIMISE_r({ |
2805 | SV *sv=sv_newmortal(); | |
8e11feef RGS |
2806 | PerlIO_printf( Perl_debug_log, |
2807 | "%*sPrefix State: %"UVuf" Idx:%"UVuf" Char='%s'\n", | |
2808 | (int)depth * 2 + 2, "", | |
538e84ed KW |
2809 | (UV)state, (UV)idx, |
2810 | pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), 6, | |
de734bd5 A |
2811 | PL_colors[0], PL_colors[1], |
2812 | (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0) | | |
538e84ed | 2813 | PERL_PV_ESCAPE_FIRSTCHAR |
de734bd5 A |
2814 | ) |
2815 | ); | |
2816 | }); | |
3dab1dad YO |
2817 | if ( state==1 ) { |
2818 | OP( convert ) = nodetype; | |
2819 | str=STRING(convert); | |
2820 | STR_LEN(convert)=0; | |
2821 | } | |
c490c714 YO |
2822 | STR_LEN(convert) += len; |
2823 | while (len--) | |
de734bd5 | 2824 | *str++ = *ch++; |
8e11feef | 2825 | } else { |
538e84ed | 2826 | #ifdef DEBUGGING |
8e11feef RGS |
2827 | if (state>1) |
2828 | DEBUG_OPTIMISE_r(PerlIO_printf( Perl_debug_log,"]\n")); | |
f9049ba1 | 2829 | #endif |
8e11feef RGS |
2830 | break; |
2831 | } | |
2832 | } | |
2e64971a | 2833 | trie->prefixlen = (state-1); |
3dab1dad | 2834 | if (str) { |
8e11feef | 2835 | regnode *n = convert+NODE_SZ_STR(convert); |
07be1b83 | 2836 | NEXT_OFF(convert) = NODE_SZ_STR(convert); |
8e11feef | 2837 | trie->startstate = state; |
07be1b83 YO |
2838 | trie->minlen -= (state - 1); |
2839 | trie->maxlen -= (state - 1); | |
33809eae JH |
2840 | #ifdef DEBUGGING |
2841 | /* At least the UNICOS C compiler choked on this | |
2842 | * being argument to DEBUG_r(), so let's just have | |
2843 | * it right here. */ | |
2844 | if ( | |
2845 | #ifdef PERL_EXT_RE_BUILD | |
2846 | 1 | |
2847 | #else | |
2848 | DEBUG_r_TEST | |
2849 | #endif | |
2850 | ) { | |
2851 | regnode *fix = convert; | |
2852 | U32 word = trie->wordcount; | |
2853 | mjd_nodelen++; | |
2854 | Set_Node_Offset_Length(convert, mjd_offset, state - 1); | |
2855 | while( ++fix < n ) { | |
2856 | Set_Node_Offset_Length(fix, 0, 0); | |
2857 | } | |
2858 | while (word--) { | |
2859 | SV ** const tmp = av_fetch( trie_words, word, 0 ); | |
2860 | if (tmp) { | |
2861 | if ( STR_LEN(convert) <= SvCUR(*tmp) ) | |
2862 | sv_chop(*tmp, SvPV_nolen(*tmp) + STR_LEN(convert)); | |
2863 | else | |
2864 | sv_chop(*tmp, SvPV_nolen(*tmp) + SvCUR(*tmp)); | |
2865 | } | |
2866 | } | |
2867 | } | |
2868 | #endif | |
8e11feef RGS |
2869 | if (trie->maxlen) { |
2870 | convert = n; | |
2871 | } else { | |
3dab1dad | 2872 | NEXT_OFF(convert) = (U16)(tail - convert); |
a5ca303d | 2873 | DEBUG_r(optimize= n); |
3dab1dad YO |
2874 | } |
2875 | } | |
2876 | } | |
538e84ed KW |
2877 | if (!jumper) |
2878 | jumper = last; | |
3dab1dad | 2879 | if ( trie->maxlen ) { |
8e11feef RGS |
2880 | NEXT_OFF( convert ) = (U16)(tail - convert); |
2881 | ARG_SET( convert, data_slot ); | |
538e84ed KW |
2882 | /* Store the offset to the first unabsorbed branch in |
2883 | jump[0], which is otherwise unused by the jump logic. | |
786e8c11 | 2884 | We use this when dumping a trie and during optimisation. */ |
538e84ed | 2885 | if (trie->jump) |
7f69552c | 2886 | trie->jump[0] = (U16)(nextbranch - convert); |
538e84ed | 2887 | |
6c48061a YO |
2888 | /* If the start state is not accepting (meaning there is no empty string/NOTHING) |
2889 | * and there is a bitmap | |
2890 | * and the first "jump target" node we found leaves enough room | |
2891 | * then convert the TRIE node into a TRIEC node, with the bitmap | |
2892 | * embedded inline in the opcode - this is hypothetically faster. | |
2893 | */ | |
2894 | if ( !trie->states[trie->startstate].wordnum | |
2895 | && trie->bitmap | |
2896 | && ( (char *)jumper - (char *)convert) >= (int)sizeof(struct regnode_charclass) ) | |
786e8c11 YO |
2897 | { |
2898 | OP( convert ) = TRIEC; | |
2899 | Copy(trie->bitmap, ((struct regnode_charclass *)convert)->bitmap, ANYOF_BITMAP_SIZE, char); | |
446bd890 | 2900 | PerlMemShared_free(trie->bitmap); |
786e8c11 | 2901 | trie->bitmap= NULL; |
538e84ed | 2902 | } else |
786e8c11 | 2903 | OP( convert ) = TRIE; |
a3621e74 | 2904 | |
3dab1dad YO |
2905 | /* store the type in the flags */ |
2906 | convert->flags = nodetype; | |
a5ca303d | 2907 | DEBUG_r({ |
538e84ed KW |
2908 | optimize = convert |
2909 | + NODE_STEP_REGNODE | |
a5ca303d YO |
2910 | + regarglen[ OP( convert ) ]; |
2911 | }); | |
538e84ed | 2912 | /* XXX We really should free up the resource in trie now, |
a5ca303d | 2913 | as we won't use them - (which resources?) dmq */ |
3dab1dad | 2914 | } |
a3621e74 | 2915 | /* needed for dumping*/ |
e62cc96a | 2916 | DEBUG_r(if (optimize) { |
07be1b83 | 2917 | regnode *opt = convert; |
bcdf7404 | 2918 | |
e62cc96a | 2919 | while ( ++opt < optimize) { |
07be1b83 YO |
2920 | Set_Node_Offset_Length(opt,0,0); |
2921 | } | |
538e84ed KW |
2922 | /* |
2923 | Try to clean up some of the debris left after the | |
786e8c11 | 2924 | optimisation. |
a3621e74 | 2925 | */ |
786e8c11 | 2926 | while( optimize < jumper ) { |
07be1b83 | 2927 | mjd_nodelen += Node_Length((optimize)); |
a3621e74 | 2928 | OP( optimize ) = OPTIMIZED; |
07be1b83 | 2929 | Set_Node_Offset_Length(optimize,0,0); |
a3621e74 YO |
2930 | optimize++; |
2931 | } | |
07be1b83 | 2932 | Set_Node_Offset_Length(convert,mjd_offset,mjd_nodelen); |
a3621e74 YO |
2933 | }); |
2934 | } /* end node insert */ | |
2e64971a DM |
2935 | |
2936 | /* Finish populating the prev field of the wordinfo array. Walk back | |
2937 | * from each accept state until we find another accept state, and if | |
2938 | * so, point the first word's .prev field at the second word. If the | |
2939 | * second already has a .prev field set, stop now. This will be the | |
2940 | * case either if we've already processed that word's accept state, | |
3b753521 FN |
2941 | * or that state had multiple words, and the overspill words were |
2942 | * already linked up earlier. | |
2e64971a DM |
2943 | */ |
2944 | { | |
2945 | U16 word; | |
2946 | U32 state; | |
2947 | U16 prev; | |
2948 | ||
2949 | for (word=1; word <= trie->wordcount; word++) { | |
2950 | prev = 0; | |
2951 | if (trie->wordinfo[word].prev) | |
2952 | continue; | |
2953 | state = trie->wordinfo[word].accept; | |
2954 | while (state) { | |
2955 | state = prev_states[state]; | |
2956 | if (!state) | |
2957 | break; | |
2958 | prev = trie->states[state].wordnum; | |
2959 | if (prev) | |
2960 | break; | |
2961 | } | |
2962 | trie->wordinfo[word].prev = prev; | |
2963 | } | |
2964 | Safefree(prev_states); | |
2965 | } | |
2966 | ||
2967 | ||
2968 | /* and now dump out the compressed format */ | |
2969 | DEBUG_TRIE_COMPILE_r(dump_trie(trie, widecharmap, revcharmap, depth+1)); | |
2970 | ||
55eed653 | 2971 | RExC_rxi->data->data[ data_slot + 1 ] = (void*)widecharmap; |
2b8b4781 NC |
2972 | #ifdef DEBUGGING |
2973 | RExC_rxi->data->data[ data_slot + TRIE_WORDS_OFFSET ] = (void*)trie_words; | |
2974 | RExC_rxi->data->data[ data_slot + 3 ] = (void*)revcharmap; | |
2975 | #else | |
03e70be4 | 2976 | SvREFCNT_dec_NN(revcharmap); |
07be1b83 | 2977 | #endif |
538e84ed KW |
2978 | return trie->jump |
2979 | ? MADE_JUMP_TRIE | |
2980 | : trie->startstate>1 | |
2981 | ? MADE_EXACT_TRIE | |
786e8c11 YO |
2982 | : MADE_TRIE; |
2983 | } | |
2984 | ||
615a2e7f YO |
2985 | STATIC regnode * |
2986 | S_construct_ahocorasick_from_trie(pTHX_ RExC_state_t *pRExC_state, regnode *source, U32 depth) | |
786e8c11 | 2987 | { |
b423522f KW |
2988 | /* The Trie is constructed and compressed now so we can build a fail array if |
2989 | * it's needed | |
786e8c11 | 2990 | |
b423522f KW |
2991 | This is basically the Aho-Corasick algorithm. Its from exercise 3.31 and |
2992 | 3.32 in the | |
2993 | "Red Dragon" -- Compilers, principles, techniques, and tools. Aho, Sethi, | |
2994 | Ullman 1985/88 | |
786e8c11 YO |
2995 | ISBN 0-201-10088-6 |
2996 | ||
b423522f KW |
2997 | We find the fail state for each state in the trie, this state is the longest |
2998 | proper suffix of the current state's 'word' that is also a proper prefix of | |
2999 | another word in our trie. State 1 represents the word '' and is thus the | |
3000 | default fail state. This allows the DFA not to have to restart after its | |
3001 | tried and failed a word at a given point, it simply continues as though it | |
3002 | had been matching the other word in the first place. | |
786e8c11 YO |
3003 | Consider |
3004 | 'abcdgu'=~/abcdefg|cdgu/ | |
b423522f KW |
3005 | When we get to 'd' we are still matching the first word, we would encounter |
3006 | 'g' which would fail, which would bring us to the state representing 'd' in | |
3007 | the second word where we would try 'g' and succeed, proceeding to match | |
3008 | 'cdgu'. | |
786e8c11 YO |
3009 | */ |
3010 | /* add a fail transition */ | |
3251b653 NC |
3011 | const U32 trie_offset = ARG(source); |
3012 | reg_trie_data *trie=(reg_trie_data *)RExC_rxi->data->data[trie_offset]; | |
786e8c11 YO |
3013 | U32 *q; |
3014 | const U32 ucharcount = trie->uniquecharcount; | |
1e2e3d02 | 3015 | const U32 numstates = trie->statecount; |
786e8c11 YO |
3016 | const U32 ubound = trie->lasttrans + ucharcount; |
3017 | U32 q_read = 0; | |
3018 | U32 q_write = 0; | |
3019 | U32 charid; | |
3020 | U32 base = trie->states[ 1 ].trans.base; | |
3021 | U32 *fail; | |
3022 | reg_ac_data *aho; | |
cf78de0b | 3023 | const U32 data_slot = add_data( pRExC_state, STR_WITH_LEN("T")); |
615a2e7f | 3024 | regnode *stclass; |
786e8c11 | 3025 | GET_RE_DEBUG_FLAGS_DECL; |
7918f24d | 3026 | |
615a2e7f | 3027 | PERL_ARGS_ASSERT_CONSTRUCT_AHOCORASICK_FROM_TRIE; |
81611534 | 3028 | PERL_UNUSED_CONTEXT; |
786e8c11 YO |
3029 | #ifndef DEBUGGING |
3030 | PERL_UNUSED_ARG(depth); | |
3031 | #endif | |
3032 | ||
615a2e7f YO |
3033 | if ( OP(source) == TRIE ) { |
3034 | struct regnode_1 *op = (struct regnode_1 *) | |
3035 | PerlMemShared_calloc(1, sizeof(struct regnode_1)); | |
3036 | StructCopy(source,op,struct regnode_1); | |
3037 | stclass = (regnode *)op; | |
3038 | } else { | |
3039 | struct regnode_charclass *op = (struct regnode_charclass *) | |
3040 | PerlMemShared_calloc(1, sizeof(struct regnode_charclass)); | |
3041 | StructCopy(source,op,struct regnode_charclass); | |
3042 | stclass = (regnode *)op; | |
3043 | } | |
3044 | OP(stclass)+=2; /* covert the TRIE type to its AHO-CORASICK equivalent */ | |
786e8c11 YO |
3045 | |
3046 | ARG_SET( stclass, data_slot ); | |
c944940b | 3047 | aho = (reg_ac_data *) PerlMemShared_calloc( 1, sizeof(reg_ac_data) ); |
f8fc2ecf | 3048 | RExC_rxi->data->data[ data_slot ] = (void*)aho; |
3251b653 | 3049 | aho->trie=trie_offset; |
446bd890 NC |
3050 | aho->states=(reg_trie_state *)PerlMemShared_malloc( numstates * sizeof(reg_trie_state) ); |
3051 | Copy( trie->states, aho->states, numstates, reg_trie_state ); | |
786e8c11 | 3052 | Newxz( q, numstates, U32); |
c944940b | 3053 | aho->fail = (U32 *) PerlMemShared_calloc( numstates, sizeof(U32) ); |
786e8c11 YO |
3054 | aho->refcount = 1; |
3055 | fail = aho->fail; | |
3056 | /* initialize fail[0..1] to be 1 so that we always have | |
3057 | a valid final fail state */ | |
3058 | fail[ 0 ] = fail[ 1 ] = 1; | |
3059 | ||
3060 | for ( charid = 0; charid < ucharcount ; charid++ ) { | |
3061 | const U32 newstate = TRIE_TRANS_STATE( 1, base, ucharcount, charid, 0 ); | |
3062 | if ( newstate ) { | |
3063 | q[ q_write ] = newstate; | |
3064 | /* set to point at the root */ | |
3065 | fail[ q[ q_write++ ] ]=1; | |
3066 | } | |
3067 | } | |
3068 | while ( q_read < q_write) { | |
3069 | const U32 cur = q[ q_read++ % numstates ]; | |
3070 | base = trie->states[ cur ].trans.base; | |
3071 | ||
3072 | for ( charid = 0 ; charid < ucharcount ; charid++ ) { | |
3073 | const U32 ch_state = TRIE_TRANS_STATE( cur, base, ucharcount, charid, 1 ); | |
3074 | if (ch_state) { | |
3075 | U32 fail_state = cur; | |
3076 | U32 fail_base; | |
3077 | do { | |
3078 | fail_state = fail[ fail_state ]; | |
3079 | fail_base = aho->states[ fail_state ].trans.base; | |
3080 | } while ( !TRIE_TRANS_STATE( fail_state, fail_base, ucharcount, charid, 1 ) ); | |
3081 | ||
3082 | fail_state = TRIE_TRANS_STATE( fail_state, fail_base, ucharcount, charid, 1 ); | |
3083 | fail[ ch_state ] = fail_state; | |
3084 | if ( !aho->states[ ch_state ].wordnum && aho->states[ fail_state ].wordnum ) | |
3085 | { | |
3086 | aho->states[ ch_state ].wordnum = aho->states[ fail_state ].wordnum; | |
3087 | } | |
3088 | q[ q_write++ % numstates] = ch_state; | |
3089 | } | |
3090 | } | |
3091 | } | |
3092 | /* restore fail[0..1] to 0 so that we "fall out" of the AC loop | |
3093 | when we fail in state 1, this allows us to use the | |
3094 | charclass scan to find a valid start char. This is based on the principle | |
3095 | that theres a good chance the string being searched contains lots of stuff | |
3096 | that cant be a start char. | |
3097 | */ | |
3098 | fail[ 0 ] = fail[ 1 ] = 0; | |
3099 | DEBUG_TRIE_COMPILE_r({ | |
6d99fb9b | 3100 | PerlIO_printf(Perl_debug_log, |
538e84ed | 3101 | "%*sStclass Failtable (%"UVuf" states): 0", |
6d99fb9b | 3102 | (int)(depth * 2), "", (UV)numstates |
1e2e3d02 | 3103 | ); |
786e8c11 YO |
3104 | for( q_read=1; q_read<numstates; q_read++ ) { |
3105 | PerlIO_printf(Perl_debug_log, ", %"UVuf, (UV)fail[q_read]); | |
3106 | } | |
3107 | PerlIO_printf(Perl_debug_log, "\n"); | |
3108 | }); | |
3109 | Safefree(q); | |
e384d5c1 | 3110 | /*RExC_seen |= REG_TRIEDFA_SEEN;*/ |
615a2e7f | 3111 | return stclass; |
a3621e74 YO |
3112 | } |
3113 | ||
786e8c11 | 3114 | |
07be1b83 | 3115 | #define DEBUG_PEEP(str,scan,depth) \ |
b515a41d | 3116 | DEBUG_OPTIMISE_r({if (scan){ \ |
07be1b83 YO |
3117 | SV * const mysv=sv_newmortal(); \ |
3118 | regnode *Next = regnext(scan); \ | |
2395827c | 3119 | regprop(RExC_rx, mysv, scan, NULL); \ |
7f69552c | 3120 | PerlIO_printf(Perl_debug_log, "%*s" str ">%3d: %s (%d)\n", \ |
07be1b83 YO |
3121 | (int)depth*2, "", REG_NODE_NUM(scan), SvPV_nolen_const(mysv),\ |
3122 | Next ? (REG_NODE_NUM(Next)) : 0 ); \ | |
b515a41d | 3123 | }}); |
07be1b83 | 3124 | |
1de06328 | 3125 | |
bb914485 | 3126 | /* The below joins as many adjacent EXACTish nodes as possible into a single |
0a982f06 KW |
3127 | * one. The regop may be changed if the node(s) contain certain sequences that |
3128 | * require special handling. The joining is only done if: | |
bb914485 KW |
3129 | * 1) there is room in the current conglomerated node to entirely contain the |
3130 | * next one. | |
3131 | * 2) they are the exact same node type | |
3132 | * | |
87b8b349 | 3133 | * The adjacent nodes actually may be separated by NOTHING-kind nodes, and |
bb914485 KW |
3134 | * these get optimized out |
3135 | * | |
0a982f06 KW |
3136 | * If a node is to match under /i (folded), the number of characters it matches |
3137 | * can be different than its character length if it contains a multi-character | |
31f05a37 KW |
3138 | * fold. *min_subtract is set to the total delta number of characters of the |
3139 | * input nodes. | |
bb914485 | 3140 | * |
fb29cc72 | 3141 | * And *unfolded_multi_char is set to indicate whether or not the node contains |
31f05a37 KW |
3142 | * an unfolded multi-char fold. This happens when whether the fold is valid or |
3143 | * not won't be known until runtime; namely for EXACTF nodes that contain LATIN | |
3144 | * SMALL LETTER SHARP S, as only if the target string being matched against | |
3145 | * turns out to be UTF-8 is that fold valid; and also for EXACTFL nodes whose | |
3146 | * folding rules depend on the locale in force at runtime. (Multi-char folds | |
3147 | * whose components are all above the Latin1 range are not run-time locale | |
3148 | * dependent, and have already been folded by the time this function is | |
3149 | * called.) | |
f758bddf | 3150 | * |
bb914485 | 3151 | * This is as good a place as any to discuss the design of handling these |
0a982f06 KW |
3152 | * multi-character fold sequences. It's been wrong in Perl for a very long |
3153 | * time. There are three code points in Unicode whose multi-character folds | |
3154 | * were long ago discovered to mess things up. The previous designs for | |
3155 | * dealing with these involved assigning a special node for them. This | |
538e84ed | 3156 | * approach doesn't always work, as evidenced by this example: |
a0c4c608 | 3157 | * "\xDFs" =~ /s\xDF/ui # Used to fail before these patches |
538e84ed | 3158 | * Both sides fold to "sss", but if the pattern is parsed to create a node that |
0a982f06 | 3159 | * would match just the \xDF, it won't be able to handle the case where a |
bb914485 KW |
3160 | * successful match would have to cross the node's boundary. The new approach |
3161 | * that hopefully generally solves the problem generates an EXACTFU_SS node | |
538e84ed | 3162 | * that is "sss" in this case. |
bb914485 | 3163 | * |
0a982f06 | 3164 | * It turns out that there are problems with all multi-character folds, and not |
cb117658 KW |
3165 | * just these three. Now the code is general, for all such cases. The |
3166 | * approach taken is: | |
0a982f06 | 3167 | * 1) This routine examines each EXACTFish node that could contain multi- |
538e84ed KW |
3168 | * character folded sequences. Since a single character can fold into |
3169 | * such a sequence, the minimum match length for this node is less than | |
3170 | * the number of characters in the node. This routine returns in | |
31f05a37 KW |
3171 | * *min_subtract how many characters to subtract from the the actual |
3172 | * length of the string to get a real minimum match length; it is 0 if | |
3173 | * there are no multi-char foldeds. This delta is used by the caller to | |
3174 | * adjust the min length of the match, and the delta between min and max, | |
3175 | * so that the optimizer doesn't reject these possibilities based on size | |
3176 | * constraints. | |
cb117658 | 3177 | * 2) For the sequence involving the Sharp s (\xDF), the node type EXACTFU_SS |
0a982f06 KW |
3178 | * is used for an EXACTFU node that contains at least one "ss" sequence in |
3179 | * it. For non-UTF-8 patterns and strings, this is the only case where | |
3180 | * there is a possible fold length change. That means that a regular | |
3181 | * EXACTFU node without UTF-8 involvement doesn't have to concern itself | |
3182 | * with length changes, and so can be processed faster. regexec.c takes | |
3183 | * advantage of this. Generally, an EXACTFish node that is in UTF-8 is | |
31f05a37 KW |
3184 | * pre-folded by regcomp.c (except EXACTFL, some of whose folds aren't |
3185 | * known until runtime). This saves effort in regex matching. However, | |
3186 | * the pre-folding isn't done for non-UTF8 patterns because the fold of | |
3187 | * the MICRO SIGN requires UTF-8, and we don't want to slow things down by | |
3188 | * forcing the pattern into UTF8 unless necessary. Also what EXACTF (and, | |
3189 | * again, EXACTFL) nodes fold to isn't known until runtime. The fold | |
0a982f06 KW |
3190 | * possibilities for the non-UTF8 patterns are quite simple, except for |
3191 | * the sharp s. All the ones that don't involve a UTF-8 target string are | |
3192 | * members of a fold-pair, and arrays are set up for all of them so that | |
3193 | * the other member of the pair can be found quickly. Code elsewhere in | |
3194 | * this file makes sure that in EXACTFU nodes, the sharp s gets folded to | |
3195 | * 'ss', even if the pattern isn't UTF-8. This avoids the issues | |
3196 | * described in the next item. | |
31f05a37 KW |
3197 | * 3) A problem remains for unfolded multi-char folds. (These occur when the |
3198 | * validity of the fold won't be known until runtime, and so must remain | |
3199 | * unfolded for now. This happens for the sharp s in EXACTF and EXACTFA | |
3200 | * nodes when the pattern isn't in UTF-8. (Note, BTW, that there cannot | |
3201 | * be an EXACTF node with a UTF-8 pattern.) They also occur for various | |
3202 | * folds in EXACTFL nodes, regardless of the UTF-ness of the pattern.) | |
3203 | * The reason this is a problem is that the optimizer part of regexec.c | |
3204 | * (probably unwittingly, in Perl_regexec_flags()) makes an assumption | |
3205 | * that a character in the pattern corresponds to at most a single | |
3206 | * character in the target string. (And I do mean character, and not byte | |
3207 | * here, unlike other parts of the documentation that have never been | |
3208 | * updated to account for multibyte Unicode.) sharp s in EXACTF and | |
3209 | * EXACTFL nodes can match the two character string 'ss'; in EXACTFA nodes | |
3210 | * it can match "\x{17F}\x{17F}". These, along with other ones in EXACTFL | |
3211 | * nodes, violate the assumption, and they are the only instances where it | |
3212 | * is violated. I'm reluctant to try to change the assumption, as the | |
3213 | * code involved is impenetrable to me (khw), so instead the code here | |
3214 | * punts. This routine examines EXACTFL nodes, and (when the pattern | |
3215 | * isn't UTF-8) EXACTF and EXACTFA for such unfolded folds, and returns a | |
3216 | * boolean indicating whether or not the node contains such a fold. When | |
3217 | * it is true, the caller sets a flag that later causes the optimizer in | |
3218 | * this file to not set values for the floating and fixed string lengths, | |
3219 | * and thus avoids the optimizer code in regexec.c that makes the invalid | |
1ca267a5 | 3220 | * assumption. Thus, there is no optimization based on string lengths for |
31f05a37 KW |
3221 | * EXACTFL nodes that contain these few folds, nor for non-UTF8-pattern |
3222 | * EXACTF and EXACTFA nodes that contain the sharp s. (The reason the | |
3223 | * assumption is wrong only in these cases is that all other non-UTF-8 | |
3224 | * folds are 1-1; and, for UTF-8 patterns, we pre-fold all other folds to | |
3225 | * their expanded versions. (Again, we can't prefold sharp s to 'ss' in | |
3226 | * EXACTF nodes because we don't know at compile time if it actually | |
3227 | * matches 'ss' or not. For EXACTF nodes it will match iff the target | |
3228 | * string is in UTF-8. This is in contrast to EXACTFU nodes, where it | |
3229 | * always matches; and EXACTFA where it never does. In an EXACTFA node in | |
3230 | * a UTF-8 pattern, sharp s is folded to "\x{17F}\x{17F}, avoiding the | |
3231 | * problem; but in a non-UTF8 pattern, folding it to that above-Latin1 | |
3232 | * string would require the pattern to be forced into UTF-8, the overhead | |
3233 | * of which we want to avoid. Similarly the unfolded multi-char folds in | |
3234 | * EXACTFL nodes will match iff the locale at the time of match is a UTF-8 | |
3235 | * locale.) | |
098b07d5 KW |
3236 | * |
3237 | * Similarly, the code that generates tries doesn't currently handle | |
3238 | * not-already-folded multi-char folds, and it looks like a pain to change | |
3239 | * that. Therefore, trie generation of EXACTFA nodes with the sharp s | |
3240 | * doesn't work. Instead, such an EXACTFA is turned into a new regnode, | |
3241 | * EXACTFA_NO_TRIE, which the trie code knows not to handle. Most people | |
3242 | * using /iaa matching will be doing so almost entirely with ASCII | |
3243 | * strings, so this should rarely be encountered in practice */ | |
1de06328 | 3244 | |
fb29cc72 | 3245 | #define JOIN_EXACT(scan,min_subtract,unfolded_multi_char, flags) \ |
07be1b83 | 3246 | if (PL_regkind[OP(scan)] == EXACT) \ |
fb29cc72 | 3247 | join_exact(pRExC_state,(scan),(min_subtract),unfolded_multi_char, (flags),NULL,depth+1) |
07be1b83 | 3248 | |
be8e71aa | 3249 | STATIC U32 |
538e84ed | 3250 | S_join_exact(pTHX_ RExC_state_t *pRExC_state, regnode *scan, |
fb29cc72 | 3251 | UV *min_subtract, bool *unfolded_multi_char, |
538e84ed KW |
3252 | U32 flags,regnode *val, U32 depth) |
3253 | { | |
07be1b83 YO |
3254 | /* Merge several consecutive EXACTish nodes into one. */ |
3255 | regnode *n = regnext(scan); | |
3256 | U32 stringok = 1; | |
3257 | regnode *next = scan + NODE_SZ_STR(scan); | |
3258 | U32 merged = 0; | |
3259 | U32 stopnow = 0; | |
3260 | #ifdef DEBUGGING | |
3261 | regnode *stop = scan; | |
72f13be8 | 3262 | GET_RE_DEBUG_FLAGS_DECL; |
f9049ba1 | 3263 | #else |
d47053eb RGS |
3264 | PERL_UNUSED_ARG(depth); |
3265 | #endif | |
7918f24d NC |
3266 | |
3267 | PERL_ARGS_ASSERT_JOIN_EXACT; | |
d47053eb | 3268 | #ifndef EXPERIMENTAL_INPLACESCAN |
f9049ba1 SP |
3269 | PERL_UNUSED_ARG(flags); |
3270 | PERL_UNUSED_ARG(val); | |
07be1b83 | 3271 | #endif |
07be1b83 | 3272 | DEBUG_PEEP("join",scan,depth); |
bb914485 | 3273 | |
3f410cf6 KW |
3274 | /* Look through the subsequent nodes in the chain. Skip NOTHING, merge |
3275 | * EXACT ones that are mergeable to the current one. */ | |
3276 | while (n | |
3277 | && (PL_regkind[OP(n)] == NOTHING | |
3278 | || (stringok && OP(n) == OP(scan))) | |
07be1b83 | 3279 | && NEXT_OFF(n) |
3f410cf6 KW |
3280 | && NEXT_OFF(scan) + NEXT_OFF(n) < I16_MAX) |
3281 | { | |
538e84ed | 3282 | |
07be1b83 YO |
3283 | if (OP(n) == TAIL || n > next) |
3284 | stringok = 0; | |
3285 | if (PL_regkind[OP(n)] == NOTHING) { | |
07be1b83 YO |
3286 | DEBUG_PEEP("skip:",n,depth); |
3287 | NEXT_OFF(scan) += NEXT_OFF(n); | |
3288 | next = n + NODE_STEP_REGNODE; | |
3289 | #ifdef DEBUGGING | |
3290 | if (stringok) | |
3291 | stop = n; | |
3292 | #endif | |
3293 | n = regnext(n); | |
3294 | } | |
3295 | else if (stringok) { | |
786e8c11 | 3296 | const unsigned int oldl = STR_LEN(scan); |
07be1b83 | 3297 | regnode * const nnext = regnext(n); |
b2230d39 | 3298 | |
baa60164 KW |
3299 | /* XXX I (khw) kind of doubt that this works on platforms (should |
3300 | * Perl ever run on one) where U8_MAX is above 255 because of lots | |
3301 | * of other assumptions */ | |
79a81a6e | 3302 | /* Don't join if the sum can't fit into a single node */ |
b2230d39 KW |
3303 | if (oldl + STR_LEN(n) > U8_MAX) |
3304 | break; | |
538e84ed | 3305 | |
07be1b83 | 3306 | DEBUG_PEEP("merg",n,depth); |
07be1b83 | 3307 | merged++; |
b2230d39 | 3308 | |
07be1b83 YO |
3309 | NEXT_OFF(scan) += NEXT_OFF(n); |
3310 | STR_LEN(scan) += STR_LEN(n); | |
3311 | next = n + NODE_SZ_STR(n); | |
3312 | /* Now we can overwrite *n : */ | |
3313 | Move(STRING(n), STRING(scan) + oldl, STR_LEN(n), char); | |
3314 | #ifdef DEBUGGING | |
3315 | stop = next - 1; | |
3316 | #endif | |
3317 | n = nnext; | |
3318 | if (stopnow) break; | |
3319 | } | |
3320 | ||
d47053eb RGS |
3321 | #ifdef EXPERIMENTAL_INPLACESCAN |
3322 | if (flags && !NEXT_OFF(n)) { | |
3323 | DEBUG_PEEP("atch", val, depth); | |
3324 | if (reg_off_by_arg[OP(n)]) { | |
3325 | ARG_SET(n, val - n); | |
3326 | } | |
3327 | else { | |
3328 | NEXT_OFF(n) = val - n; | |
3329 | } | |
3330 | stopnow = 1; | |
3331 | } | |
07be1b83 YO |
3332 | #endif |
3333 | } | |
2c2b7f86 | 3334 | |
9d071ca8 | 3335 | *min_subtract = 0; |
fb29cc72 | 3336 | *unfolded_multi_char = FALSE; |
f646642f | 3337 | |
3f410cf6 KW |
3338 | /* Here, all the adjacent mergeable EXACTish nodes have been merged. We |
3339 | * can now analyze for sequences of problematic code points. (Prior to | |
3340 | * this final joining, sequences could have been split over boundaries, and | |
a0c4c608 KW |
3341 | * hence missed). The sequences only happen in folding, hence for any |
3342 | * non-EXACT EXACTish node */ | |
86d6fcad | 3343 | if (OP(scan) != EXACT) { |
31f05a37 KW |
3344 | U8* s0 = (U8*) STRING(scan); |
3345 | U8* s = s0; | |
3346 | U8* s_end = s0 + STR_LEN(scan); | |
3347 | ||
3348 | int total_count_delta = 0; /* Total delta number of characters that | |
3349 | multi-char folds expand to */ | |
f758bddf KW |
3350 | |
3351 | /* One pass is made over the node's string looking for all the | |
baa60164 | 3352 | * possibilities. To avoid some tests in the loop, there are two main |
f758bddf KW |
3353 | * cases, for UTF-8 patterns (which can't have EXACTF nodes) and |
3354 | * non-UTF-8 */ | |
3355 | if (UTF) { | |
31f05a37 KW |
3356 | U8* folded = NULL; |
3357 | ||
3358 | if (OP(scan) == EXACTFL) { | |
3359 | U8 *d; | |
3360 | ||
3361 | /* An EXACTFL node would already have been changed to another | |
3362 | * node type unless there is at least one character in it that | |
3363 | * is problematic; likely a character whose fold definition | |
3364 | * won't be known until runtime, and so has yet to be folded. | |
3365 | * For all but the UTF-8 locale, folds are 1-1 in length, but | |
3366 | * to handle the UTF-8 case, we need to create a temporary | |
3367 | * folded copy using UTF-8 locale rules in order to analyze it. | |
3368 | * This is because our macros that look to see if a sequence is | |
3369 | * a multi-char fold assume everything is folded (otherwise the | |
3370 | * tests in those macros would be too complicated and slow). | |
3371 | * Note that here, the non-problematic folds will have already | |
3372 | * been done, so we can just copy such characters. We actually | |
3373 | * don't completely fold the EXACTFL string. We skip the | |
3374 | * unfolded multi-char folds, as that would just create work | |
3375 | * below to figure out the size they already are */ | |
3376 | ||
3377 | Newx(folded, UTF8_MAX_FOLD_CHAR_EXPAND * STR_LEN(scan) + 1, U8); | |
3378 | d = folded; | |
3379 | while (s < s_end) { | |
3380 | STRLEN s_len = UTF8SKIP(s); | |
3381 | if (! is_PROBLEMATIC_LOCALE_FOLD_utf8(s)) { | |
3382 | Copy(s, d, s_len, U8); | |
3383 | d += s_len; | |
3384 | } | |
3385 | else if (is_FOLDS_TO_MULTI_utf8(s)) { | |
fb29cc72 | 3386 | *unfolded_multi_char = TRUE; |
31f05a37 KW |
3387 | Copy(s, d, s_len, U8); |
3388 | d += s_len; | |
3389 | } | |
3390 | else if (isASCII(*s)) { | |
3391 | *(d++) = toFOLD(*s); | |
3392 | } | |
3393 | else { | |
3394 | STRLEN len; | |
3395 | _to_utf8_fold_flags(s, d, &len, FOLD_FLAGS_FULL); | |
3396 | d += len; | |
3397 | } | |
3398 | s += s_len; | |
3399 | } | |
3400 | ||
3401 | /* Point the remainder of the routine to look at our temporary | |
3402 | * folded copy */ | |
3403 | s = folded; | |
3404 | s_end = d; | |
3405 | } /* End of creating folded copy of EXACTFL string */ | |
86d6fcad | 3406 | |
0a982f06 KW |
3407 | /* Examine the string for a multi-character fold sequence. UTF-8 |
3408 | * patterns have all characters pre-folded by the time this code is | |
3409 | * executed */ | |
3410 | while (s < s_end - 1) /* Can stop 1 before the end, as minimum | |
3411 | length sequence we are looking for is 2 */ | |
86d6fcad | 3412 | { |
538e84ed | 3413 | int count = 0; /* How many characters in a multi-char fold */ |
251b239f | 3414 | int len = is_MULTI_CHAR_FOLD_utf8_safe(s, s_end); |
0a982f06 KW |
3415 | if (! len) { /* Not a multi-char fold: get next char */ |
3416 | s += UTF8SKIP(s); | |
3417 | continue; | |
3418 | } | |
bb914485 | 3419 | |
31f05a37 KW |
3420 | /* Nodes with 'ss' require special handling, except for |
3421 | * EXACTFA-ish for which there is no multi-char fold to this */ | |
0a982f06 | 3422 | if (len == 2 && *s == 's' && *(s+1) == 's' |
098b07d5 KW |
3423 | && OP(scan) != EXACTFA |
3424 | && OP(scan) != EXACTFA_NO_TRIE) | |
0a982f06 KW |
3425 | { |
3426 | count = 2; | |
31f05a37 KW |
3427 | if (OP(scan) != EXACTFL) { |
3428 | OP(scan) = EXACTFU_SS; | |
3429 | } | |
0a982f06 KW |
3430 | s += 2; |
3431 | } | |
0a982f06 | 3432 | else { /* Here is a generic multi-char fold. */ |
31f05a37 KW |
3433 | U8* multi_end = s + len; |
3434 | ||
2fe3656f KW |
3435 | /* Count how many characters are in it. In the case of |
3436 | * /aa, no folds which contain ASCII code points are | |
3437 | * allowed, so check for those, and skip if found. */ | |
31f05a37 | 3438 | if (OP(scan) != EXACTFA && OP(scan) != EXACTFA_NO_TRIE) { |
0a982f06 KW |
3439 | count = utf8_length(s, multi_end); |
3440 | s = multi_end; | |
3441 | } | |
3442 | else { | |
3443 | while (s < multi_end) { | |
3444 | if (isASCII(*s)) { | |
3445 | s++; | |
3446 | goto next_iteration; | |
3447 | } | |
3448 | else { | |
3449 | s += UTF8SKIP(s); | |
3450 | } | |
3451 | count++; | |
3452 | } | |
3453 | } | |
3454 | } | |
f758bddf | 3455 | |
0a982f06 KW |
3456 | /* The delta is how long the sequence is minus 1 (1 is how long |
3457 | * the character that folds to the sequence is) */ | |
31f05a37 KW |
3458 | total_count_delta += count - 1; |
3459 | next_iteration: ; | |
bb914485 | 3460 | } |
31f05a37 KW |
3461 | |
3462 | /* We created a temporary folded copy of the string in EXACTFL | |
3463 | * nodes. Therefore we need to be sure it doesn't go below zero, | |
3464 | * as the real string could be shorter */ | |
3465 | if (OP(scan) == EXACTFL) { | |
3466 | int total_chars = utf8_length((U8*) STRING(scan), | |
3467 | (U8*) STRING(scan) + STR_LEN(scan)); | |
3468 | if (total_count_delta > total_chars) { | |
3469 | total_count_delta = total_chars; | |
3470 | } | |
3471 | } | |
3472 | ||
3473 | *min_subtract += total_count_delta; | |
3474 | Safefree(folded); | |
bb914485 | 3475 | } |