This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Dual-life Text::Abbrev
[perl5.git] / regexec.c
CommitLineData
a0d0e21e
LW
1/* regexec.c
2 */
3
4/*
4ac71550
TC
5 * One Ring to rule them all, One Ring to find them
6 &
7 * [p.v of _The Lord of the Rings_, opening poem]
8 * [p.50 of _The Lord of the Rings_, I/iii: "The Shadow of the Past"]
9 * [p.254 of _The Lord of the Rings_, II/ii: "The Council of Elrond"]
a0d0e21e
LW
10 */
11
61296642
DM
12/* This file contains functions for executing a regular expression. See
13 * also regcomp.c which funnily enough, contains functions for compiling
166f8a29 14 * a regular expression.
e4a054ea
DM
15 *
16 * This file is also copied at build time to ext/re/re_exec.c, where
17 * it's built with -DPERL_EXT_RE_BUILD -DPERL_EXT_RE_DEBUG -DPERL_EXT.
18 * This causes the main functions to be compiled under new names and with
19 * debugging support added, which makes "use re 'debug'" work.
166f8a29
DM
20 */
21
a687059c
LW
22/* NOTE: this is derived from Henry Spencer's regexp code, and should not
23 * confused with the original package (see point 3 below). Thanks, Henry!
24 */
25
26/* Additional note: this code is very heavily munged from Henry's version
27 * in places. In some spots I've traded clarity for efficiency, so don't
28 * blame Henry for some of the lack of readability.
29 */
30
e50aee73
AD
31/* The names of the functions have been changed from regcomp and
32 * regexec to pregcomp and pregexec in order to avoid conflicts
33 * with the POSIX routines of the same names.
34*/
35
b9d5759e 36#ifdef PERL_EXT_RE_BUILD
54df2634 37#include "re_top.h"
9041c2e3 38#endif
56953603 39
a687059c 40/*
e50aee73 41 * pregcomp and pregexec -- regsub and regerror are not used in perl
a687059c
LW
42 *
43 * Copyright (c) 1986 by University of Toronto.
44 * Written by Henry Spencer. Not derived from licensed software.
45 *
46 * Permission is granted to anyone to use this software for any
47 * purpose on any computer system, and to redistribute it freely,
48 * subject to the following restrictions:
49 *
50 * 1. The author is not responsible for the consequences of use of
51 * this software, no matter how awful, even if they arise
52 * from defects in it.
53 *
54 * 2. The origin of this software must not be misrepresented, either
55 * by explicit claim or by omission.
56 *
57 * 3. Altered versions must be plainly marked as such, and must not
58 * be misrepresented as being the original software.
59 *
60 **** Alterations to Henry's code are...
61 ****
4bb101f2 62 **** Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
1129b882
NC
63 **** 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
64 **** by Larry Wall and others
a687059c 65 ****
9ef589d8
LW
66 **** You may distribute under the terms of either the GNU General Public
67 **** License or the Artistic License, as specified in the README file.
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_REGEXEC_C
a687059c 75#include "perl.h"
0f5d15d6 76
54df2634
NC
77#ifdef PERL_IN_XSUB_RE
78# include "re_comp.h"
79#else
80# include "regcomp.h"
81#endif
a687059c 82
ef07e810 83#define RF_tainted 1 /* tainted information used? e.g. locale */
c277df42 84#define RF_warned 2 /* warned about big count? */
faec1544 85
ab3bbdeb 86#define RF_utf8 8 /* Pattern contains multibyte chars? */
a0ed51b3 87
f2ed9b32 88#define UTF_PATTERN ((PL_reg_flags & RF_utf8) != 0)
ce862d02
IZ
89
90#define RS_init 1 /* eval environment created */
91#define RS_set 2 /* replsv value is set */
c277df42 92
a687059c
LW
93#ifndef STATIC
94#define STATIC static
95#endif
96
7e2509c1
KW
97/* Valid for non-utf8 strings, non-ANYOFV nodes only: avoids the reginclass
98 * call if there are no complications: i.e., if everything matchable is
99 * straight forward in the bitmap */
af364d03
KW
100#define REGINCLASS(prog,p,c) (ANYOF_FLAGS(p) ? reginclass(prog,p,c,0,0) \
101 : ANYOF_BITMAP_TEST(p,*(c)))
7d3e948e 102
c277df42
IZ
103/*
104 * Forwards.
105 */
106
f2ed9b32 107#define CHR_SVLEN(sv) (utf8_target ? sv_len_utf8(sv) : SvCUR(sv))
53c4c00c 108#define CHR_DIST(a,b) (PL_reg_match_utf8 ? utf8_distance(a,b) : a - b)
a0ed51b3 109
3dab1dad
YO
110#define HOPc(pos,off) \
111 (char *)(PL_reg_match_utf8 \
52657f30 112 ? reghop3((U8*)pos, off, (U8*)(off >= 0 ? PL_regeol : PL_bostr)) \
3dab1dad
YO
113 : (U8*)(pos + off))
114#define HOPBACKc(pos, off) \
07be1b83
YO
115 (char*)(PL_reg_match_utf8\
116 ? reghopmaybe3((U8*)pos, -off, (U8*)PL_bostr) \
117 : (pos - off >= PL_bostr) \
8e11feef 118 ? (U8*)pos - off \
3dab1dad 119 : NULL)
efb30f32 120
e7409c1b 121#define HOP3(pos,off,lim) (PL_reg_match_utf8 ? reghop3((U8*)(pos), off, (U8*)(lim)) : (U8*)(pos + off))
1aa99e6b 122#define HOP3c(pos,off,lim) ((char*)HOP3(pos,off,lim))
1aa99e6b 123
20d0b1e9 124/* these are unrolled below in the CCC_TRY_XXX defined */
1a4fad37 125#define LOAD_UTF8_CHARCLASS(class,str) STMT_START { \
9c4fdda1
RB
126 if (!CAT2(PL_utf8_,class)) { \
127 bool ok; \
128 ENTER; save_re_context(); \
129 ok=CAT2(is_utf8_,class)((const U8*)str); \
130 assert(ok); LEAVE; } } STMT_END
37e2e78e
KW
131
132/* Doesn't do an assert to verify that is correct */
133#define LOAD_UTF8_CHARCLASS_NO_CHECK(class) STMT_START { \
9c4fdda1
RB
134 if (!CAT2(PL_utf8_,class)) { \
135 bool throw_away __attribute__unused__; \
136 ENTER; save_re_context(); \
137 throw_away = CAT2(is_utf8_,class)((const U8*)" "); \
138 LEAVE; } } STMT_END
37e2e78e 139
1a4fad37
AL
140#define LOAD_UTF8_CHARCLASS_ALNUM() LOAD_UTF8_CHARCLASS(alnum,"a")
141#define LOAD_UTF8_CHARCLASS_DIGIT() LOAD_UTF8_CHARCLASS(digit,"0")
142#define LOAD_UTF8_CHARCLASS_SPACE() LOAD_UTF8_CHARCLASS(space," ")
51371543 143
37e2e78e 144#define LOAD_UTF8_CHARCLASS_GCB() /* Grapheme cluster boundaries */ \
d275fa5e
CB
145 LOAD_UTF8_CHARCLASS(X_begin, " "); \
146 LOAD_UTF8_CHARCLASS(X_non_hangul, "A"); \
37e2e78e
KW
147 /* These are utf8 constants, and not utf-ebcdic constants, so the \
148 * assert should likely and hopefully fail on an EBCDIC machine */ \
d275fa5e 149 LOAD_UTF8_CHARCLASS(X_extend, "\xcc\x80"); /* U+0300 */ \
37e2e78e
KW
150 \
151 /* No asserts are done for these, in case called on an early \
152 * Unicode version in which they map to nothing */ \
d275fa5e
CB
153 LOAD_UTF8_CHARCLASS_NO_CHECK(X_prepend);/* U+0E40 "\xe0\xb9\x80" */ \
154 LOAD_UTF8_CHARCLASS_NO_CHECK(X_L); /* U+1100 "\xe1\x84\x80" */ \
155 LOAD_UTF8_CHARCLASS_NO_CHECK(X_LV); /* U+AC00 "\xea\xb0\x80" */ \
156 LOAD_UTF8_CHARCLASS_NO_CHECK(X_LVT); /* U+AC01 "\xea\xb0\x81" */ \
157 LOAD_UTF8_CHARCLASS_NO_CHECK(X_LV_LVT_V);/* U+AC01 "\xea\xb0\x81" */\
158 LOAD_UTF8_CHARCLASS_NO_CHECK(X_T); /* U+11A8 "\xe1\x86\xa8" */ \
37e2e78e 159 LOAD_UTF8_CHARCLASS_NO_CHECK(X_V) /* U+1160 "\xe1\x85\xa0" */
20d0b1e9 160
1dcf4a1b 161#define PLACEHOLDER /* Something for the preprocessor to grab onto */
d1eb3177 162
ee9a90b8
KW
163/* The actual code for CCC_TRY, which uses several variables from the routine
164 * it's callable from. It is designed to be the bulk of a case statement.
165 * FUNC is the macro or function to call on non-utf8 targets that indicate if
166 * nextchr matches the class.
167 * UTF8_TEST is the whole test string to use for utf8 targets
168 * LOAD is what to use to test, and if not present to load in the swash for the
169 * class
170 * POS_OR_NEG is either empty or ! to complement the results of FUNC or
171 * UTF8_TEST test.
172 * The logic is: Fail if we're at the end-of-string; otherwise if the target is
173 * utf8 and a variant, load the swash if necessary and test using the utf8
174 * test. Advance to the next character if test is ok, otherwise fail; If not
175 * utf8 or an invariant under utf8, use the non-utf8 test, and fail if it
176 * fails, or advance to the next character */
177
178#define _CCC_TRY_CODE(POS_OR_NEG, FUNC, UTF8_TEST, CLASS, STR) \
179 if (locinput >= PL_regeol) { \
180 sayNO; \
181 } \
182 if (utf8_target && UTF8_IS_CONTINUED(nextchr)) { \
183 LOAD_UTF8_CHARCLASS(CLASS, STR); \
184 if (POS_OR_NEG (UTF8_TEST)) { \
185 sayNO; \
186 } \
187 locinput += PL_utf8skip[nextchr]; \
188 nextchr = UCHARAT(locinput); \
189 break; \
190 } \
191 if (POS_OR_NEG (FUNC(nextchr))) { \
192 sayNO; \
193 } \
194 nextchr = UCHARAT(++locinput); \
980866de
KW
195 break;
196
ee9a90b8
KW
197/* Handle the non-locale cases for a character class and its complement. It
198 * calls _CCC_TRY_CODE with a ! to complement the test for the character class.
199 * This is because that code fails when the test succeeds, so we want to have
200 * the test fail so that the code succeeds. The swash is stored in a
201 * predictable PL_ place */
cfaf538b
KW
202#define _CCC_TRY_NONLOCALE(NAME, NNAME, FUNC, \
203 CLASS, STR) \
ee9a90b8
KW
204 case NAME: \
205 _CCC_TRY_CODE( !, FUNC, \
206 cBOOL(swash_fetch(CAT2(PL_utf8_,CLASS), \
207 (U8*)locinput, TRUE)), \
208 CLASS, STR) \
209 case NNAME: \
1dcf4a1b 210 _CCC_TRY_CODE( PLACEHOLDER , FUNC, \
ee9a90b8
KW
211 cBOOL(swash_fetch(CAT2(PL_utf8_,CLASS), \
212 (U8*)locinput, TRUE)), \
213 CLASS, STR) \
214
215/* Generate the case statements for both locale and non-locale character
216 * classes in regmatch for classes that don't have special unicode semantics.
217 * Locales don't use an immediate swash, but an intermediary special locale
218 * function that is called on the pointer to the current place in the input
219 * string. That function will resolve to needing the same swash. One might
220 * think that because we don't know what the locale will match, we shouldn't
221 * check with the swash loading function that it loaded properly; ie, that we
222 * should use LOAD_UTF8_CHARCLASS_NO_CHECK for those, but what is passed to the
223 * regular LOAD_UTF8_CHARCLASS is in non-locale terms, and so locale is
224 * irrelevant here */
225#define CCC_TRY(NAME, NNAME, FUNC, \
226 NAMEL, NNAMEL, LCFUNC, LCFUNC_utf8, \
cfaf538b 227 NAMEA, NNAMEA, FUNCA, \
ee9a90b8
KW
228 CLASS, STR) \
229 case NAMEL: \
230 PL_reg_flags |= RF_tainted; \
231 _CCC_TRY_CODE( !, LCFUNC, LCFUNC_utf8((U8*)locinput), CLASS, STR) \
232 case NNAMEL: \
233 PL_reg_flags |= RF_tainted; \
1dcf4a1b
KW
234 _CCC_TRY_CODE( PLACEHOLDER, LCFUNC, LCFUNC_utf8((U8*)locinput), \
235 CLASS, STR) \
cfaf538b
KW
236 case NAMEA: \
237 if (locinput >= PL_regeol || ! FUNCA(nextchr)) { \
238 sayNO; \
239 } \
240 /* Matched a utf8-invariant, so don't have to worry about utf8 */ \
241 nextchr = UCHARAT(++locinput); \
242 break; \
243 case NNAMEA: \
244 if (locinput >= PL_regeol || FUNCA(nextchr)) { \
245 sayNO; \
246 } \
247 if (utf8_target) { \
248 locinput += PL_utf8skip[nextchr]; \
249 nextchr = UCHARAT(locinput); \
250 } \
251 else { \
252 nextchr = UCHARAT(++locinput); \
253 } \
254 break; \
ee9a90b8
KW
255 /* Generate the non-locale cases */ \
256 _CCC_TRY_NONLOCALE(NAME, NNAME, FUNC, CLASS, STR)
257
258/* This is like CCC_TRY, but has an extra set of parameters for generating case
259 * statements to handle separate Unicode semantics nodes */
260#define CCC_TRY_U(NAME, NNAME, FUNC, \
261 NAMEL, NNAMEL, LCFUNC, LCFUNC_utf8, \
262 NAMEU, NNAMEU, FUNCU, \
cfaf538b 263 NAMEA, NNAMEA, FUNCA, \
ee9a90b8 264 CLASS, STR) \
cfaf538b
KW
265 CCC_TRY(NAME, NNAME, FUNC, \
266 NAMEL, NNAMEL, LCFUNC, LCFUNC_utf8, \
267 NAMEA, NNAMEA, FUNCA, \
268 CLASS, STR) \
ee9a90b8 269 _CCC_TRY_NONLOCALE(NAMEU, NNAMEU, FUNCU, CLASS, STR)
d1eb3177 270
3dab1dad
YO
271/* TODO: Combine JUMPABLE and HAS_TEXT to cache OP(rn) */
272
5f80c4cf 273/* for use after a quantifier and before an EXACT-like node -- japhy */
c35dcbe2
YO
274/* it would be nice to rework regcomp.sym to generate this stuff. sigh
275 *
276 * NOTE that *nothing* that affects backtracking should be in here, specifically
277 * VERBS must NOT be included. JUMPABLE is used to determine if we can ignore a
278 * node that is in between two EXACT like nodes when ascertaining what the required
279 * "follow" character is. This should probably be moved to regex compile time
280 * although it may be done at run time beause of the REF possibility - more
281 * investigation required. -- demerphq
282*/
3e901dc0
YO
283#define JUMPABLE(rn) ( \
284 OP(rn) == OPEN || \
285 (OP(rn) == CLOSE && (!cur_eval || cur_eval->u.eval.close_paren != ARG(rn))) || \
286 OP(rn) == EVAL || \
cca55fe3
JP
287 OP(rn) == SUSPEND || OP(rn) == IFMATCH || \
288 OP(rn) == PLUS || OP(rn) == MINMOD || \
d1c771f5 289 OP(rn) == KEEPS || \
3dab1dad 290 (PL_regkind[OP(rn)] == CURLY && ARG1(rn) > 0) \
e2d8ce26 291)
ee9b8eae 292#define IS_EXACT(rn) (PL_regkind[OP(rn)] == EXACT)
e2d8ce26 293
ee9b8eae
YO
294#define HAS_TEXT(rn) ( IS_EXACT(rn) || PL_regkind[OP(rn)] == REF )
295
296#if 0
297/* Currently these are only used when PL_regkind[OP(rn)] == EXACT so
298 we don't need this definition. */
299#define IS_TEXT(rn) ( OP(rn)==EXACT || OP(rn)==REF || OP(rn)==NREF )
2f7f8cb1 300#define IS_TEXTF(rn) ( (OP(rn)==EXACTFU || OP(rn)==EXACTFA || OP(rn)==EXACTF) || OP(rn)==REFF || OP(rn)==NREFF )
ee9b8eae
YO
301#define IS_TEXTFL(rn) ( OP(rn)==EXACTFL || OP(rn)==REFFL || OP(rn)==NREFFL )
302
303#else
304/* ... so we use this as its faster. */
305#define IS_TEXT(rn) ( OP(rn)==EXACT )
2f7f8cb1 306#define IS_TEXTFU(rn) ( OP(rn)==EXACTFU || OP(rn) == EXACTFA)
ee9b8eae
YO
307#define IS_TEXTF(rn) ( OP(rn)==EXACTF )
308#define IS_TEXTFL(rn) ( OP(rn)==EXACTFL )
309
310#endif
e2d8ce26 311
a84d97b6
HS
312/*
313 Search for mandatory following text node; for lookahead, the text must
314 follow but for lookbehind (rn->flags != 0) we skip to the next step.
315*/
cca55fe3 316#define FIND_NEXT_IMPT(rn) STMT_START { \
3dab1dad
YO
317 while (JUMPABLE(rn)) { \
318 const OPCODE type = OP(rn); \
319 if (type == SUSPEND || PL_regkind[type] == CURLY) \
e2d8ce26 320 rn = NEXTOPER(NEXTOPER(rn)); \
3dab1dad 321 else if (type == PLUS) \
cca55fe3 322 rn = NEXTOPER(rn); \
3dab1dad 323 else if (type == IFMATCH) \
a84d97b6 324 rn = (rn->flags == 0) ? NEXTOPER(NEXTOPER(rn)) : rn + ARG(rn); \
e2d8ce26 325 else rn += NEXT_OFF(rn); \
3dab1dad 326 } \
5f80c4cf 327} STMT_END
74750237 328
c476f425 329
acfe0abc 330static void restore_pos(pTHX_ void *arg);
51371543 331
620d5b66
NC
332#define REGCP_PAREN_ELEMS 4
333#define REGCP_OTHER_ELEMS 5
e0fa7e2b 334#define REGCP_FRAME_ELEMS 1
620d5b66
NC
335/* REGCP_FRAME_ELEMS are not part of the REGCP_OTHER_ELEMS and
336 * are needed for the regexp context stack bookkeeping. */
337
76e3520e 338STATIC CHECKPOINT
cea2e8a9 339S_regcppush(pTHX_ I32 parenfloor)
a0d0e21e 340{
97aff369 341 dVAR;
a3b680e6 342 const int retval = PL_savestack_ix;
a3b680e6 343 const int paren_elems_to_push = (PL_regsize - parenfloor) * REGCP_PAREN_ELEMS;
e0fa7e2b
NC
344 const UV total_elems = paren_elems_to_push + REGCP_OTHER_ELEMS;
345 const UV elems_shifted = total_elems << SAVE_TIGHT_SHIFT;
a0d0e21e 346 int p;
40a82448 347 GET_RE_DEBUG_FLAGS_DECL;
a0d0e21e 348
e49a9654
IH
349 if (paren_elems_to_push < 0)
350 Perl_croak(aTHX_ "panic: paren_elems_to_push < 0");
351
e0fa7e2b
NC
352 if ((elems_shifted >> SAVE_TIGHT_SHIFT) != total_elems)
353 Perl_croak(aTHX_ "panic: paren_elems_to_push offset %"UVuf
5df417d0
JH
354 " out of range (%lu-%ld)",
355 total_elems, (unsigned long)PL_regsize, (long)parenfloor);
e0fa7e2b 356
620d5b66 357 SSGROW(total_elems + REGCP_FRAME_ELEMS);
7f69552c 358
3280af22 359 for (p = PL_regsize; p > parenfloor; p--) {
b1ce53c5 360/* REGCP_PARENS_ELEMS are pushed per pairs of parentheses. */
f0ab9afb
NC
361 SSPUSHINT(PL_regoffs[p].end);
362 SSPUSHINT(PL_regoffs[p].start);
3280af22 363 SSPUSHPTR(PL_reg_start_tmp[p]);
a0d0e21e 364 SSPUSHINT(p);
e7707071 365 DEBUG_BUFFERS_r(PerlIO_printf(Perl_debug_log,
40a82448 366 " saving \\%"UVuf" %"IVdf"(%"IVdf")..%"IVdf"\n",
f0ab9afb 367 (UV)p, (IV)PL_regoffs[p].start,
40a82448 368 (IV)(PL_reg_start_tmp[p] - PL_bostr),
f0ab9afb 369 (IV)PL_regoffs[p].end
40a82448 370 ));
a0d0e21e 371 }
b1ce53c5 372/* REGCP_OTHER_ELEMS are pushed in any case, parentheses or no. */
f0ab9afb 373 SSPUSHPTR(PL_regoffs);
3280af22
NIS
374 SSPUSHINT(PL_regsize);
375 SSPUSHINT(*PL_reglastparen);
a01268b5 376 SSPUSHINT(*PL_reglastcloseparen);
3280af22 377 SSPUSHPTR(PL_reginput);
e0fa7e2b 378 SSPUSHUV(SAVEt_REGCONTEXT | elems_shifted); /* Magic cookie. */
41123dfd 379
a0d0e21e
LW
380 return retval;
381}
382
c277df42 383/* These are needed since we do not localize EVAL nodes: */
ab3bbdeb
YO
384#define REGCP_SET(cp) \
385 DEBUG_STATE_r( \
ab3bbdeb 386 PerlIO_printf(Perl_debug_log, \
e4f74956 387 " Setting an EVAL scope, savestack=%"IVdf"\n", \
ab3bbdeb
YO
388 (IV)PL_savestack_ix)); \
389 cp = PL_savestack_ix
c3464db5 390
ab3bbdeb 391#define REGCP_UNWIND(cp) \
e4f74956 392 DEBUG_STATE_r( \
ab3bbdeb 393 if (cp != PL_savestack_ix) \
e4f74956
YO
394 PerlIO_printf(Perl_debug_log, \
395 " Clearing an EVAL scope, savestack=%"IVdf"..%"IVdf"\n", \
ab3bbdeb
YO
396 (IV)(cp), (IV)PL_savestack_ix)); \
397 regcpblow(cp)
c277df42 398
76e3520e 399STATIC char *
097eb12c 400S_regcppop(pTHX_ const regexp *rex)
a0d0e21e 401{
97aff369 402 dVAR;
e0fa7e2b 403 UV i;
a0d0e21e 404 char *input;
a3621e74
YO
405 GET_RE_DEBUG_FLAGS_DECL;
406
7918f24d
NC
407 PERL_ARGS_ASSERT_REGCPPOP;
408
b1ce53c5 409 /* Pop REGCP_OTHER_ELEMS before the parentheses loop starts. */
c6bf6a65 410 i = SSPOPUV;
e0fa7e2b
NC
411 assert((i & SAVE_MASK) == SAVEt_REGCONTEXT); /* Check that the magic cookie is there. */
412 i >>= SAVE_TIGHT_SHIFT; /* Parentheses elements to pop. */
a0d0e21e 413 input = (char *) SSPOPPTR;
a01268b5 414 *PL_reglastcloseparen = SSPOPINT;
3280af22
NIS
415 *PL_reglastparen = SSPOPINT;
416 PL_regsize = SSPOPINT;
f0ab9afb 417 PL_regoffs=(regexp_paren_pair *) SSPOPPTR;
b1ce53c5 418
620d5b66 419 i -= REGCP_OTHER_ELEMS;
b1ce53c5 420 /* Now restore the parentheses context. */
620d5b66 421 for ( ; i > 0; i -= REGCP_PAREN_ELEMS) {
1df70142 422 I32 tmps;
097eb12c 423 U32 paren = (U32)SSPOPINT;
3280af22 424 PL_reg_start_tmp[paren] = (char *) SSPOPPTR;
f0ab9afb 425 PL_regoffs[paren].start = SSPOPINT;
cf93c79d 426 tmps = SSPOPINT;
3280af22 427 if (paren <= *PL_reglastparen)
f0ab9afb 428 PL_regoffs[paren].end = tmps;
e7707071 429 DEBUG_BUFFERS_r(
c3464db5 430 PerlIO_printf(Perl_debug_log,
b900a521 431 " restoring \\%"UVuf" to %"IVdf"(%"IVdf")..%"IVdf"%s\n",
f0ab9afb 432 (UV)paren, (IV)PL_regoffs[paren].start,
b900a521 433 (IV)(PL_reg_start_tmp[paren] - PL_bostr),
f0ab9afb 434 (IV)PL_regoffs[paren].end,
3280af22 435 (paren > *PL_reglastparen ? "(no)" : ""));
c277df42 436 );
a0d0e21e 437 }
e7707071 438 DEBUG_BUFFERS_r(
bb7a0f54 439 if (*PL_reglastparen + 1 <= rex->nparens) {
c3464db5 440 PerlIO_printf(Perl_debug_log,
faccc32b 441 " restoring \\%"IVdf"..\\%"IVdf" to undef\n",
4f639d21 442 (IV)(*PL_reglastparen + 1), (IV)rex->nparens);
c277df42
IZ
443 }
444 );
daf18116 445#if 1
dafc8851
JH
446 /* It would seem that the similar code in regtry()
447 * already takes care of this, and in fact it is in
448 * a better location to since this code can #if 0-ed out
449 * but the code in regtry() is needed or otherwise tests
450 * requiring null fields (pat.t#187 and split.t#{13,14}
daf18116
JH
451 * (as of patchlevel 7877) will fail. Then again,
452 * this code seems to be necessary or otherwise
225593e1
DM
453 * this erroneously leaves $1 defined: "1" =~ /^(?:(\d)x)?\d$/
454 * --jhi updated by dapm */
3b6647e0 455 for (i = *PL_reglastparen + 1; i <= rex->nparens; i++) {
097eb12c 456 if (i > PL_regsize)
f0ab9afb
NC
457 PL_regoffs[i].start = -1;
458 PL_regoffs[i].end = -1;
a0d0e21e 459 }
dafc8851 460#endif
a0d0e21e
LW
461 return input;
462}
463
02db2b7b 464#define regcpblow(cp) LEAVE_SCOPE(cp) /* Ignores regcppush()ed data. */
a0d0e21e 465
a687059c 466/*
e50aee73 467 * pregexec and friends
a687059c
LW
468 */
469
76234dfb 470#ifndef PERL_IN_XSUB_RE
a687059c 471/*
c277df42 472 - pregexec - match a regexp against a string
a687059c 473 */
c277df42 474I32
49d7dfbc 475Perl_pregexec(pTHX_ REGEXP * const prog, char* stringarg, register char *strend,
c3464db5 476 char *strbeg, I32 minend, SV *screamer, U32 nosave)
c277df42
IZ
477/* strend: pointer to null at end of string */
478/* strbeg: real beginning of string */
479/* minend: end of match must be >=minend after stringarg. */
480/* nosave: For optimizations. */
481{
7918f24d
NC
482 PERL_ARGS_ASSERT_PREGEXEC;
483
c277df42 484 return
9041c2e3 485 regexec_flags(prog, stringarg, strend, strbeg, minend, screamer, NULL,
c277df42
IZ
486 nosave ? 0 : REXEC_COPY_STR);
487}
76234dfb 488#endif
22e551b9 489
9041c2e3 490/*
cad2e5aa
JH
491 * Need to implement the following flags for reg_anch:
492 *
493 * USE_INTUIT_NOML - Useful to call re_intuit_start() first
494 * USE_INTUIT_ML
495 * INTUIT_AUTORITATIVE_NOML - Can trust a positive answer
496 * INTUIT_AUTORITATIVE_ML
497 * INTUIT_ONCE_NOML - Intuit can match in one location only.
498 * INTUIT_ONCE_ML
499 *
500 * Another flag for this function: SECOND_TIME (so that float substrs
501 * with giant delta may be not rechecked).
502 */
503
504/* Assumptions: if ANCH_GPOS, then strpos is anchored. XXXX Check GPOS logic */
505
3f7c398e 506/* If SCREAM, then SvPVX_const(sv) should be compatible with strpos and strend.
cad2e5aa
JH
507 Otherwise, only SvCUR(sv) is used to get strbeg. */
508
509/* XXXX We assume that strpos is strbeg unless sv. */
510
6eb5f6b9
JH
511/* XXXX Some places assume that there is a fixed substring.
512 An update may be needed if optimizer marks as "INTUITable"
513 RExen without fixed substrings. Similarly, it is assumed that
514 lengths of all the strings are no more than minlen, thus they
515 cannot come from lookahead.
40d049e4
YO
516 (Or minlen should take into account lookahead.)
517 NOTE: Some of this comment is not correct. minlen does now take account
518 of lookahead/behind. Further research is required. -- demerphq
519
520*/
6eb5f6b9 521
2c2d71f5
JH
522/* A failure to find a constant substring means that there is no need to make
523 an expensive call to REx engine, thus we celebrate a failure. Similarly,
524 finding a substring too deep into the string means that less calls to
30944b6d
IZ
525 regtry() should be needed.
526
527 REx compiler's optimizer found 4 possible hints:
528 a) Anchored substring;
529 b) Fixed substring;
530 c) Whether we are anchored (beginning-of-line or \G);
486ec47a 531 d) First node (of those at offset 0) which may distinguish positions;
6eb5f6b9 532 We use a)b)d) and multiline-part of c), and try to find a position in the
30944b6d
IZ
533 string which does not contradict any of them.
534 */
2c2d71f5 535
6eb5f6b9
JH
536/* Most of decisions we do here should have been done at compile time.
537 The nodes of the REx which we used for the search should have been
538 deleted from the finite automaton. */
539
cad2e5aa 540char *
288b8c02 541Perl_re_intuit_start(pTHX_ REGEXP * const rx, SV *sv, char *strpos,
9f61653a 542 char *strend, const U32 flags, re_scream_pos_data *data)
cad2e5aa 543{
97aff369 544 dVAR;
288b8c02 545 struct regexp *const prog = (struct regexp *)SvANY(rx);
b7953727 546 register I32 start_shift = 0;
cad2e5aa 547 /* Should be nonnegative! */
b7953727 548 register I32 end_shift = 0;
2c2d71f5
JH
549 register char *s;
550 register SV *check;
a1933d95 551 char *strbeg;
cad2e5aa 552 char *t;
f2ed9b32 553 const bool utf8_target = (sv && SvUTF8(sv)) ? 1 : 0; /* if no sv we have to assume bytes */
cad2e5aa 554 I32 ml_anch;
bd61b366
SS
555 register char *other_last = NULL; /* other substr checked before this */
556 char *check_at = NULL; /* check substr found at this pos */
bbe252da 557 const I32 multiline = prog->extflags & RXf_PMf_MULTILINE;
f8fc2ecf 558 RXi_GET_DECL(prog,progi);
30944b6d 559#ifdef DEBUGGING
890ce7af 560 const char * const i_strpos = strpos;
30944b6d 561#endif
a3621e74
YO
562 GET_RE_DEBUG_FLAGS_DECL;
563
7918f24d
NC
564 PERL_ARGS_ASSERT_RE_INTUIT_START;
565
f2ed9b32 566 RX_MATCH_UTF8_set(rx,utf8_target);
cad2e5aa 567
3c8556c3 568 if (RX_UTF8(rx)) {
b8d68ded
JH
569 PL_reg_flags |= RF_utf8;
570 }
ab3bbdeb 571 DEBUG_EXECUTE_r(
f2ed9b32 572 debug_start_match(rx, utf8_target, strpos, strend,
1de06328
YO
573 sv ? "Guessing start of match in sv for"
574 : "Guessing start of match in string for");
2a782b5b 575 );
cad2e5aa 576
c344f387
JH
577 /* CHR_DIST() would be more correct here but it makes things slow. */
578 if (prog->minlen > strend - strpos) {
a3621e74 579 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
a72c7584 580 "String too short... [re_intuit_start]\n"));
cad2e5aa 581 goto fail;
2c2d71f5 582 }
1de06328 583
a1933d95 584 strbeg = (sv && SvPOK(sv)) ? strend - SvCUR(sv) : strpos;
1aa99e6b 585 PL_regeol = strend;
f2ed9b32 586 if (utf8_target) {
33b8afdf
JH
587 if (!prog->check_utf8 && prog->check_substr)
588 to_utf8_substr(prog);
589 check = prog->check_utf8;
590 } else {
591 if (!prog->check_substr && prog->check_utf8)
592 to_byte_substr(prog);
593 check = prog->check_substr;
594 }
1de06328 595 if (check == &PL_sv_undef) {
a3621e74 596 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
1de06328 597 "Non-utf8 string cannot match utf8 check string\n"));
33b8afdf
JH
598 goto fail;
599 }
bbe252da
YO
600 if (prog->extflags & RXf_ANCH) { /* Match at beg-of-str or after \n */
601 ml_anch = !( (prog->extflags & RXf_ANCH_SINGLE)
602 || ( (prog->extflags & RXf_ANCH_BOL)
7fba1cd6 603 && !multiline ) ); /* Check after \n? */
cad2e5aa 604
7e25d62c 605 if (!ml_anch) {
bbe252da
YO
606 if ( !(prog->extflags & RXf_ANCH_GPOS) /* Checked by the caller */
607 && !(prog->intflags & PREGf_IMPLICIT) /* not a real BOL */
3f7c398e 608 /* SvCUR is not set on references: SvRV and SvPVX_const overlap */
7e25d62c
JH
609 && sv && !SvROK(sv)
610 && (strpos != strbeg)) {
a3621e74 611 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Not at start...\n"));
7e25d62c
JH
612 goto fail;
613 }
614 if (prog->check_offset_min == prog->check_offset_max &&
bbe252da 615 !(prog->extflags & RXf_CANY_SEEN)) {
2c2d71f5 616 /* Substring at constant offset from beg-of-str... */
cad2e5aa
JH
617 I32 slen;
618
1aa99e6b 619 s = HOP3c(strpos, prog->check_offset_min, strend);
1de06328 620
653099ff
GS
621 if (SvTAIL(check)) {
622 slen = SvCUR(check); /* >= 1 */
cad2e5aa 623
9041c2e3 624 if ( strend - s > slen || strend - s < slen - 1
2c2d71f5 625 || (strend - s == slen && strend[-1] != '\n')) {
a3621e74 626 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "String too long...\n"));
2c2d71f5 627 goto fail_finish;
cad2e5aa
JH
628 }
629 /* Now should match s[0..slen-2] */
630 slen--;
3f7c398e 631 if (slen && (*SvPVX_const(check) != *s
cad2e5aa 632 || (slen > 1
3f7c398e 633 && memNE(SvPVX_const(check), s, slen)))) {
2c2d71f5 634 report_neq:
a3621e74 635 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "String not equal...\n"));
2c2d71f5
JH
636 goto fail_finish;
637 }
cad2e5aa 638 }
3f7c398e 639 else if (*SvPVX_const(check) != *s
653099ff 640 || ((slen = SvCUR(check)) > 1
3f7c398e 641 && memNE(SvPVX_const(check), s, slen)))
2c2d71f5 642 goto report_neq;
c315bfe8 643 check_at = s;
2c2d71f5 644 goto success_at_start;
7e25d62c 645 }
cad2e5aa 646 }
2c2d71f5 647 /* Match is anchored, but substr is not anchored wrt beg-of-str. */
cad2e5aa 648 s = strpos;
2c2d71f5 649 start_shift = prog->check_offset_min; /* okay to underestimate on CC */
1de06328
YO
650 end_shift = prog->check_end_shift;
651
2c2d71f5 652 if (!ml_anch) {
a3b680e6 653 const I32 end = prog->check_offset_max + CHR_SVLEN(check)
653099ff 654 - (SvTAIL(check) != 0);
a3b680e6 655 const I32 eshift = CHR_DIST((U8*)strend, (U8*)s) - end;
2c2d71f5
JH
656
657 if (end_shift < eshift)
658 end_shift = eshift;
659 }
cad2e5aa 660 }
2c2d71f5 661 else { /* Can match at random position */
cad2e5aa
JH
662 ml_anch = 0;
663 s = strpos;
1de06328
YO
664 start_shift = prog->check_offset_min; /* okay to underestimate on CC */
665 end_shift = prog->check_end_shift;
666
667 /* end shift should be non negative here */
cad2e5aa
JH
668 }
669
bcdf7404 670#ifdef QDEBUGGING /* 7/99: reports of failure (with the older version) */
0033605d 671 if (end_shift < 0)
1de06328 672 Perl_croak(aTHX_ "panic: end_shift: %"IVdf" pattern:\n%s\n ",
220fc49f 673 (IV)end_shift, RX_PRECOMP(prog));
2c2d71f5
JH
674#endif
675
2c2d71f5
JH
676 restart:
677 /* Find a possible match in the region s..strend by looking for
678 the "check" substring in the region corrected by start/end_shift. */
1de06328
YO
679
680 {
681 I32 srch_start_shift = start_shift;
682 I32 srch_end_shift = end_shift;
683 if (srch_start_shift < 0 && strbeg - s > srch_start_shift) {
684 srch_end_shift -= ((strbeg - s) - srch_start_shift);
685 srch_start_shift = strbeg - s;
686 }
6bda09f9 687 DEBUG_OPTIMISE_MORE_r({
1de06328
YO
688 PerlIO_printf(Perl_debug_log, "Check offset min: %"IVdf" Start shift: %"IVdf" End shift %"IVdf" Real End Shift: %"IVdf"\n",
689 (IV)prog->check_offset_min,
690 (IV)srch_start_shift,
691 (IV)srch_end_shift,
692 (IV)prog->check_end_shift);
693 });
694
f1905e1b 695 if ((flags & REXEC_SCREAM) && SvSCREAM(sv)) {
cad2e5aa 696 I32 p = -1; /* Internal iterator of scream. */
a3b680e6 697 I32 * const pp = data ? data->scream_pos : &p;
4185c919 698 const MAGIC *mg;
72de20cd 699 bool found = FALSE;
cad2e5aa 700
4185c919
NC
701 assert(SvMAGICAL(sv));
702 mg = mg_find(sv, PERL_MAGIC_study);
703 assert(mg);
704
72de20cd
NC
705 if (mg->mg_private == 1) {
706 found = ((U8 *)mg->mg_ptr)[BmRARE(check)] != (U8)~0;
707 } else if (mg->mg_private == 2) {
708 found = ((U16 *)mg->mg_ptr)[BmRARE(check)] != (U16)~0;
709 } else {
710 assert (mg->mg_private == 4);
711 found = ((U32 *)mg->mg_ptr)[BmRARE(check)] != (U32)~0;
712 }
713
714 if (found
2c2d71f5 715 || ( BmRARE(check) == '\n'
85c508c3 716 && (BmPREVIOUS(check) == SvCUR(check) - 1)
2c2d71f5 717 && SvTAIL(check) ))
9041c2e3 718 s = screaminstr(sv, check,
1de06328 719 srch_start_shift + (s - strbeg), srch_end_shift, pp, 0);
cad2e5aa 720 else
2c2d71f5 721 goto fail_finish;
4addbd3b 722 /* we may be pointing at the wrong string */
07bc277f 723 if (s && RXp_MATCH_COPIED(prog))
3f7c398e 724 s = strbeg + (s - SvPVX_const(sv));
cad2e5aa
JH
725 if (data)
726 *data->scream_olds = s;
727 }
1de06328
YO
728 else {
729 U8* start_point;
730 U8* end_point;
bbe252da 731 if (prog->extflags & RXf_CANY_SEEN) {
1de06328
YO
732 start_point= (U8*)(s + srch_start_shift);
733 end_point= (U8*)(strend - srch_end_shift);
734 } else {
735 start_point= HOP3(s, srch_start_shift, srch_start_shift < 0 ? strbeg : strend);
736 end_point= HOP3(strend, -srch_end_shift, strbeg);
737 }
6bda09f9 738 DEBUG_OPTIMISE_MORE_r({
56570a2c 739 PerlIO_printf(Perl_debug_log, "fbm_instr len=%d str=<%.*s>\n",
1de06328 740 (int)(end_point - start_point),
fc8cd66c 741 (int)(end_point - start_point) > 20 ? 20 : (int)(end_point - start_point),
1de06328
YO
742 start_point);
743 });
744
745 s = fbm_instr( start_point, end_point,
7fba1cd6 746 check, multiline ? FBMrf_MULTILINE : 0);
1de06328
YO
747 }
748 }
cad2e5aa
JH
749 /* Update the count-of-usability, remove useless subpatterns,
750 unshift s. */
2c2d71f5 751
ab3bbdeb 752 DEBUG_EXECUTE_r({
f2ed9b32 753 RE_PV_QUOTED_DECL(quoted, utf8_target, PERL_DEBUG_PAD_ZERO(0),
ab3bbdeb
YO
754 SvPVX_const(check), RE_SV_DUMPLEN(check), 30);
755 PerlIO_printf(Perl_debug_log, "%s %s substr %s%s%s",
2c2d71f5 756 (s ? "Found" : "Did not find"),
f2ed9b32 757 (check == (utf8_target ? prog->anchored_utf8 : prog->anchored_substr)
ab3bbdeb
YO
758 ? "anchored" : "floating"),
759 quoted,
760 RE_SV_TAIL(check),
761 (s ? " at offset " : "...\n") );
762 });
2c2d71f5
JH
763
764 if (!s)
765 goto fail_finish;
2c2d71f5 766 /* Finish the diagnostic message */
a3621e74 767 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%ld...\n", (long)(s - i_strpos)) );
2c2d71f5 768
1de06328
YO
769 /* XXX dmq: first branch is for positive lookbehind...
770 Our check string is offset from the beginning of the pattern.
771 So we need to do any stclass tests offset forward from that
772 point. I think. :-(
773 */
774
775
776
777 check_at=s;
778
779
2c2d71f5
JH
780 /* Got a candidate. Check MBOL anchoring, and the *other* substr.
781 Start with the other substr.
782 XXXX no SCREAM optimization yet - and a very coarse implementation
a0288114 783 XXXX /ttx+/ results in anchored="ttx", floating="x". floating will
2c2d71f5
JH
784 *always* match. Probably should be marked during compile...
785 Probably it is right to do no SCREAM here...
786 */
787
f2ed9b32 788 if (utf8_target ? (prog->float_utf8 && prog->anchored_utf8)
1de06328
YO
789 : (prog->float_substr && prog->anchored_substr))
790 {
30944b6d 791 /* Take into account the "other" substring. */
2c2d71f5
JH
792 /* XXXX May be hopelessly wrong for UTF... */
793 if (!other_last)
6eb5f6b9 794 other_last = strpos;
f2ed9b32 795 if (check == (utf8_target ? prog->float_utf8 : prog->float_substr)) {
30944b6d
IZ
796 do_other_anchored:
797 {
890ce7af
AL
798 char * const last = HOP3c(s, -start_shift, strbeg);
799 char *last1, *last2;
be8e71aa 800 char * const saved_s = s;
33b8afdf 801 SV* must;
2c2d71f5 802
2c2d71f5
JH
803 t = s - prog->check_offset_max;
804 if (s - strpos > prog->check_offset_max /* signed-corrected t > strpos */
f2ed9b32 805 && (!utf8_target
0ce71af7 806 || ((t = (char*)reghopmaybe3((U8*)s, -(prog->check_offset_max), (U8*)strpos))
2c2d71f5 807 && t > strpos)))
6f207bd3 808 NOOP;
2c2d71f5
JH
809 else
810 t = strpos;
1aa99e6b 811 t = HOP3c(t, prog->anchored_offset, strend);
6eb5f6b9
JH
812 if (t < other_last) /* These positions already checked */
813 t = other_last;
1aa99e6b 814 last2 = last1 = HOP3c(strend, -prog->minlen, strbeg);
2c2d71f5
JH
815 if (last < last1)
816 last1 = last;
1de06328
YO
817 /* XXXX It is not documented what units *_offsets are in.
818 We assume bytes, but this is clearly wrong.
819 Meaning this code needs to be carefully reviewed for errors.
820 dmq.
821 */
822
2c2d71f5 823 /* On end-of-str: see comment below. */
f2ed9b32 824 must = utf8_target ? prog->anchored_utf8 : prog->anchored_substr;
33b8afdf
JH
825 if (must == &PL_sv_undef) {
826 s = (char*)NULL;
1de06328 827 DEBUG_r(must = prog->anchored_utf8); /* for debug */
33b8afdf
JH
828 }
829 else
830 s = fbm_instr(
831 (unsigned char*)t,
832 HOP3(HOP3(last1, prog->anchored_offset, strend)
833 + SvCUR(must), -(SvTAIL(must)!=0), strbeg),
834 must,
7fba1cd6 835 multiline ? FBMrf_MULTILINE : 0
33b8afdf 836 );
ab3bbdeb 837 DEBUG_EXECUTE_r({
f2ed9b32 838 RE_PV_QUOTED_DECL(quoted, utf8_target, PERL_DEBUG_PAD_ZERO(0),
ab3bbdeb
YO
839 SvPVX_const(must), RE_SV_DUMPLEN(must), 30);
840 PerlIO_printf(Perl_debug_log, "%s anchored substr %s%s",
2c2d71f5 841 (s ? "Found" : "Contradicts"),
ab3bbdeb
YO
842 quoted, RE_SV_TAIL(must));
843 });
844
845
2c2d71f5
JH
846 if (!s) {
847 if (last1 >= last2) {
a3621e74 848 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
2c2d71f5
JH
849 ", giving up...\n"));
850 goto fail_finish;
851 }
a3621e74 852 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
2c2d71f5 853 ", trying floating at offset %ld...\n",
be8e71aa 854 (long)(HOP3c(saved_s, 1, strend) - i_strpos)));
1aa99e6b
IH
855 other_last = HOP3c(last1, prog->anchored_offset+1, strend);
856 s = HOP3c(last, 1, strend);
2c2d71f5
JH
857 goto restart;
858 }
859 else {
a3621e74 860 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, " at offset %ld...\n",
30944b6d 861 (long)(s - i_strpos)));
1aa99e6b
IH
862 t = HOP3c(s, -prog->anchored_offset, strbeg);
863 other_last = HOP3c(s, 1, strend);
be8e71aa 864 s = saved_s;
2c2d71f5
JH
865 if (t == strpos)
866 goto try_at_start;
2c2d71f5
JH
867 goto try_at_offset;
868 }
30944b6d 869 }
2c2d71f5
JH
870 }
871 else { /* Take into account the floating substring. */
33b8afdf 872 char *last, *last1;
be8e71aa 873 char * const saved_s = s;
33b8afdf
JH
874 SV* must;
875
876 t = HOP3c(s, -start_shift, strbeg);
877 last1 = last =
878 HOP3c(strend, -prog->minlen + prog->float_min_offset, strbeg);
879 if (CHR_DIST((U8*)last, (U8*)t) > prog->float_max_offset)
880 last = HOP3c(t, prog->float_max_offset, strend);
881 s = HOP3c(t, prog->float_min_offset, strend);
882 if (s < other_last)
883 s = other_last;
2c2d71f5 884 /* XXXX It is not documented what units *_offsets are in. Assume bytes. */
f2ed9b32 885 must = utf8_target ? prog->float_utf8 : prog->float_substr;
33b8afdf
JH
886 /* fbm_instr() takes into account exact value of end-of-str
887 if the check is SvTAIL(ed). Since false positives are OK,
888 and end-of-str is not later than strend we are OK. */
889 if (must == &PL_sv_undef) {
890 s = (char*)NULL;
1de06328 891 DEBUG_r(must = prog->float_utf8); /* for debug message */
33b8afdf
JH
892 }
893 else
2c2d71f5 894 s = fbm_instr((unsigned char*)s,
33b8afdf
JH
895 (unsigned char*)last + SvCUR(must)
896 - (SvTAIL(must)!=0),
7fba1cd6 897 must, multiline ? FBMrf_MULTILINE : 0);
ab3bbdeb 898 DEBUG_EXECUTE_r({
f2ed9b32 899 RE_PV_QUOTED_DECL(quoted, utf8_target, PERL_DEBUG_PAD_ZERO(0),
ab3bbdeb
YO
900 SvPVX_const(must), RE_SV_DUMPLEN(must), 30);
901 PerlIO_printf(Perl_debug_log, "%s floating substr %s%s",
33b8afdf 902 (s ? "Found" : "Contradicts"),
ab3bbdeb
YO
903 quoted, RE_SV_TAIL(must));
904 });
33b8afdf
JH
905 if (!s) {
906 if (last1 == last) {
a3621e74 907 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
33b8afdf
JH
908 ", giving up...\n"));
909 goto fail_finish;
2c2d71f5 910 }
a3621e74 911 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
33b8afdf 912 ", trying anchored starting at offset %ld...\n",
be8e71aa 913 (long)(saved_s + 1 - i_strpos)));
33b8afdf
JH
914 other_last = last;
915 s = HOP3c(t, 1, strend);
916 goto restart;
917 }
918 else {
a3621e74 919 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, " at offset %ld...\n",
33b8afdf
JH
920 (long)(s - i_strpos)));
921 other_last = s; /* Fix this later. --Hugo */
be8e71aa 922 s = saved_s;
33b8afdf
JH
923 if (t == strpos)
924 goto try_at_start;
925 goto try_at_offset;
926 }
2c2d71f5 927 }
cad2e5aa 928 }
2c2d71f5 929
1de06328 930
9ef43ace 931 t= (char*)HOP3( s, -prog->check_offset_max, (prog->check_offset_max<0) ? strend : strpos);
1de06328 932
6bda09f9 933 DEBUG_OPTIMISE_MORE_r(
1de06328
YO
934 PerlIO_printf(Perl_debug_log,
935 "Check offset min:%"IVdf" max:%"IVdf" S:%"IVdf" t:%"IVdf" D:%"IVdf" end:%"IVdf"\n",
936 (IV)prog->check_offset_min,
937 (IV)prog->check_offset_max,
938 (IV)(s-strpos),
939 (IV)(t-strpos),
940 (IV)(t-s),
941 (IV)(strend-strpos)
942 )
943 );
944
2c2d71f5 945 if (s - strpos > prog->check_offset_max /* signed-corrected t > strpos */
f2ed9b32 946 && (!utf8_target
9ef43ace 947 || ((t = (char*)reghopmaybe3((U8*)s, -prog->check_offset_max, (U8*) ((prog->check_offset_max<0) ? strend : strpos)))
1de06328
YO
948 && t > strpos)))
949 {
2c2d71f5
JH
950 /* Fixed substring is found far enough so that the match
951 cannot start at strpos. */
952 try_at_offset:
cad2e5aa 953 if (ml_anch && t[-1] != '\n') {
30944b6d
IZ
954 /* Eventually fbm_*() should handle this, but often
955 anchored_offset is not 0, so this check will not be wasted. */
956 /* XXXX In the code below we prefer to look for "^" even in
957 presence of anchored substrings. And we search even
958 beyond the found float position. These pessimizations
959 are historical artefacts only. */
960 find_anchor:
2c2d71f5 961 while (t < strend - prog->minlen) {
cad2e5aa 962 if (*t == '\n') {
4ee3650e 963 if (t < check_at - prog->check_offset_min) {
f2ed9b32 964 if (utf8_target ? prog->anchored_utf8 : prog->anchored_substr) {
4ee3650e
GS
965 /* Since we moved from the found position,
966 we definitely contradict the found anchored
30944b6d
IZ
967 substr. Due to the above check we do not
968 contradict "check" substr.
969 Thus we can arrive here only if check substr
970 is float. Redo checking for "other"=="fixed".
971 */
9041c2e3 972 strpos = t + 1;
a3621e74 973 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Found /%s^%s/m at offset %ld, rescanning for anchored from offset %ld...\n",
e4584336 974 PL_colors[0], PL_colors[1], (long)(strpos - i_strpos), (long)(strpos - i_strpos + prog->anchored_offset)));
30944b6d
IZ
975 goto do_other_anchored;
976 }
4ee3650e
GS
977 /* We don't contradict the found floating substring. */
978 /* XXXX Why not check for STCLASS? */
cad2e5aa 979 s = t + 1;
a3621e74 980 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Found /%s^%s/m at offset %ld...\n",
e4584336 981 PL_colors[0], PL_colors[1], (long)(s - i_strpos)));
cad2e5aa
JH
982 goto set_useful;
983 }
4ee3650e
GS
984 /* Position contradicts check-string */
985 /* XXXX probably better to look for check-string
986 than for "\n", so one should lower the limit for t? */
a3621e74 987 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Found /%s^%s/m, restarting lookup for check-string at offset %ld...\n",
e4584336 988 PL_colors[0], PL_colors[1], (long)(t + 1 - i_strpos)));
0e41cd87 989 other_last = strpos = s = t + 1;
cad2e5aa
JH
990 goto restart;
991 }
992 t++;
993 }
a3621e74 994 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Did not find /%s^%s/m...\n",
e4584336 995 PL_colors[0], PL_colors[1]));
2c2d71f5 996 goto fail_finish;
cad2e5aa 997 }
f5952150 998 else {
a3621e74 999 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Starting position does not contradict /%s^%s/m...\n",
e4584336 1000 PL_colors[0], PL_colors[1]));
f5952150 1001 }
cad2e5aa
JH
1002 s = t;
1003 set_useful:
f2ed9b32 1004 ++BmUSEFUL(utf8_target ? prog->check_utf8 : prog->check_substr); /* hooray/5 */
cad2e5aa
JH
1005 }
1006 else {
f5952150 1007 /* The found string does not prohibit matching at strpos,
2c2d71f5 1008 - no optimization of calling REx engine can be performed,
f5952150
GS
1009 unless it was an MBOL and we are not after MBOL,
1010 or a future STCLASS check will fail this. */
2c2d71f5
JH
1011 try_at_start:
1012 /* Even in this situation we may use MBOL flag if strpos is offset
1013 wrt the start of the string. */
05b4157f 1014 if (ml_anch && sv && !SvROK(sv) /* See prev comment on SvROK */
a1933d95 1015 && (strpos != strbeg) && strpos[-1] != '\n'
d506a20d 1016 /* May be due to an implicit anchor of m{.*foo} */
bbe252da 1017 && !(prog->intflags & PREGf_IMPLICIT))
d506a20d 1018 {
cad2e5aa
JH
1019 t = strpos;
1020 goto find_anchor;
1021 }
a3621e74 1022 DEBUG_EXECUTE_r( if (ml_anch)
f5952150 1023 PerlIO_printf(Perl_debug_log, "Position at offset %ld does not contradict /%s^%s/m...\n",
70685ca0 1024 (long)(strpos - i_strpos), PL_colors[0], PL_colors[1]);
30944b6d 1025 );
2c2d71f5 1026 success_at_start:
bbe252da 1027 if (!(prog->intflags & PREGf_NAUGHTY) /* XXXX If strpos moved? */
f2ed9b32 1028 && (utf8_target ? (
33b8afdf
JH
1029 prog->check_utf8 /* Could be deleted already */
1030 && --BmUSEFUL(prog->check_utf8) < 0
1031 && (prog->check_utf8 == prog->float_utf8)
1032 ) : (
1033 prog->check_substr /* Could be deleted already */
1034 && --BmUSEFUL(prog->check_substr) < 0
1035 && (prog->check_substr == prog->float_substr)
1036 )))
66e933ab 1037 {
cad2e5aa 1038 /* If flags & SOMETHING - do not do it many times on the same match */
a3621e74 1039 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "... Disabling check substring...\n"));
f2ed9b32
KW
1040 /* XXX Does the destruction order has to change with utf8_target? */
1041 SvREFCNT_dec(utf8_target ? prog->check_utf8 : prog->check_substr);
1042 SvREFCNT_dec(utf8_target ? prog->check_substr : prog->check_utf8);
a0714e2c
SS
1043 prog->check_substr = prog->check_utf8 = NULL; /* disable */
1044 prog->float_substr = prog->float_utf8 = NULL; /* clear */
1045 check = NULL; /* abort */
cad2e5aa 1046 s = strpos;
486ec47a 1047 /* XXXX If the check string was an implicit check MBOL, then we need to unset the relevant flag
c9415951
YO
1048 see http://bugs.activestate.com/show_bug.cgi?id=87173 */
1049 if (prog->intflags & PREGf_IMPLICIT)
1050 prog->extflags &= ~RXf_ANCH_MBOL;
3cf5c195
IZ
1051 /* XXXX This is a remnant of the old implementation. It
1052 looks wasteful, since now INTUIT can use many
6eb5f6b9 1053 other heuristics. */
bbe252da 1054 prog->extflags &= ~RXf_USE_INTUIT;
c9415951 1055 /* XXXX What other flags might need to be cleared in this branch? */
cad2e5aa
JH
1056 }
1057 else
1058 s = strpos;
1059 }
1060
6eb5f6b9
JH
1061 /* Last resort... */
1062 /* XXXX BmUSEFUL already changed, maybe multiple change is meaningful... */
1de06328
YO
1063 /* trie stclasses are too expensive to use here, we are better off to
1064 leave it to regmatch itself */
f8fc2ecf 1065 if (progi->regstclass && PL_regkind[OP(progi->regstclass)]!=TRIE) {
6eb5f6b9
JH
1066 /* minlen == 0 is possible if regstclass is \b or \B,
1067 and the fixed substr is ''$.
1068 Since minlen is already taken into account, s+1 is before strend;
1069 accidentally, minlen >= 1 guaranties no false positives at s + 1
1070 even for \b or \B. But (minlen? 1 : 0) below assumes that
1071 regstclass does not come from lookahead... */
1072 /* If regstclass takes bytelength more than 1: If charlength==1, OK.
af944926 1073 This leaves EXACTF-ish only, which are dealt with in find_byclass(). */
f8fc2ecf
YO
1074 const U8* const str = (U8*)STRING(progi->regstclass);
1075 const int cl_l = (PL_regkind[OP(progi->regstclass)] == EXACT
1076 ? CHR_DIST(str+STR_LEN(progi->regstclass), str)
66e933ab 1077 : 1);
1de06328
YO
1078 char * endpos;
1079 if (prog->anchored_substr || prog->anchored_utf8 || ml_anch)
1080 endpos= HOP3c(s, (prog->minlen ? cl_l : 0), strend);
1081 else if (prog->float_substr || prog->float_utf8)
1082 endpos= HOP3c(HOP3c(check_at, -start_shift, strbeg), cl_l, strend);
1083 else
1084 endpos= strend;
1085
70685ca0
JH
1086 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "start_shift: %"IVdf" check_at: %"IVdf" s: %"IVdf" endpos: %"IVdf"\n",
1087 (IV)start_shift, (IV)(check_at - strbeg), (IV)(s - strbeg), (IV)(endpos - strbeg)));
1de06328 1088
6eb5f6b9 1089 t = s;
f8fc2ecf 1090 s = find_byclass(prog, progi->regstclass, s, endpos, NULL);
6eb5f6b9
JH
1091 if (!s) {
1092#ifdef DEBUGGING
cbbf8932 1093 const char *what = NULL;
6eb5f6b9
JH
1094#endif
1095 if (endpos == strend) {
a3621e74 1096 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
6eb5f6b9
JH
1097 "Could not match STCLASS...\n") );
1098 goto fail;
1099 }
a3621e74 1100 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
66e933ab 1101 "This position contradicts STCLASS...\n") );
bbe252da 1102 if ((prog->extflags & RXf_ANCH) && !ml_anch)
653099ff 1103 goto fail;
6eb5f6b9 1104 /* Contradict one of substrings */
33b8afdf 1105 if (prog->anchored_substr || prog->anchored_utf8) {
f2ed9b32 1106 if ((utf8_target ? prog->anchored_utf8 : prog->anchored_substr) == check) {
a3621e74 1107 DEBUG_EXECUTE_r( what = "anchored" );
6eb5f6b9 1108 hop_and_restart:
1aa99e6b 1109 s = HOP3c(t, 1, strend);
66e933ab
GS
1110 if (s + start_shift + end_shift > strend) {
1111 /* XXXX Should be taken into account earlier? */
a3621e74 1112 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
66e933ab
GS
1113 "Could not match STCLASS...\n") );
1114 goto fail;
1115 }
5e39e1e5
HS
1116 if (!check)
1117 goto giveup;
a3621e74 1118 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
f5952150 1119 "Looking for %s substr starting at offset %ld...\n",
6eb5f6b9
JH
1120 what, (long)(s + start_shift - i_strpos)) );
1121 goto restart;
1122 }
66e933ab 1123 /* Have both, check_string is floating */
6eb5f6b9
JH
1124 if (t + start_shift >= check_at) /* Contradicts floating=check */
1125 goto retry_floating_check;
1126 /* Recheck anchored substring, but not floating... */
9041c2e3 1127 s = check_at;
5e39e1e5
HS
1128 if (!check)
1129 goto giveup;
a3621e74 1130 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
f5952150 1131 "Looking for anchored substr starting at offset %ld...\n",
6eb5f6b9
JH
1132 (long)(other_last - i_strpos)) );
1133 goto do_other_anchored;
1134 }
60e71179
GS
1135 /* Another way we could have checked stclass at the
1136 current position only: */
1137 if (ml_anch) {
1138 s = t = t + 1;
5e39e1e5
HS
1139 if (!check)
1140 goto giveup;
a3621e74 1141 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
f5952150 1142 "Looking for /%s^%s/m starting at offset %ld...\n",
e4584336 1143 PL_colors[0], PL_colors[1], (long)(t - i_strpos)) );
60e71179 1144 goto try_at_offset;
66e933ab 1145 }
f2ed9b32 1146 if (!(utf8_target ? prog->float_utf8 : prog->float_substr)) /* Could have been deleted */
60e71179 1147 goto fail;
486ec47a 1148 /* Check is floating substring. */
6eb5f6b9
JH
1149 retry_floating_check:
1150 t = check_at - start_shift;
a3621e74 1151 DEBUG_EXECUTE_r( what = "floating" );
6eb5f6b9
JH
1152 goto hop_and_restart;
1153 }
b7953727 1154 if (t != s) {
a3621e74 1155 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
6eb5f6b9 1156 "By STCLASS: moving %ld --> %ld\n",
b7953727
JH
1157 (long)(t - i_strpos), (long)(s - i_strpos))
1158 );
1159 }
1160 else {
a3621e74 1161 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
b7953727
JH
1162 "Does not contradict STCLASS...\n");
1163 );
1164 }
6eb5f6b9 1165 }
5e39e1e5 1166 giveup:
a3621e74 1167 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%s%s:%s match at offset %ld\n",
5e39e1e5
HS
1168 PL_colors[4], (check ? "Guessed" : "Giving up"),
1169 PL_colors[5], (long)(s - i_strpos)) );
cad2e5aa 1170 return s;
2c2d71f5
JH
1171
1172 fail_finish: /* Substring not found */
33b8afdf 1173 if (prog->check_substr || prog->check_utf8) /* could be removed already */
f2ed9b32 1174 BmUSEFUL(utf8_target ? prog->check_utf8 : prog->check_substr) += 5; /* hooray */
cad2e5aa 1175 fail:
a3621e74 1176 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%sMatch rejected by optimizer%s\n",
e4584336 1177 PL_colors[4], PL_colors[5]));
bd61b366 1178 return NULL;
cad2e5aa 1179}
9661b544 1180
a0a388a1
YO
1181#define DECL_TRIE_TYPE(scan) \
1182 const enum { trie_plain, trie_utf8, trie_utf8_fold, trie_latin_utf8_fold } \
1183 trie_type = (scan->flags != EXACT) \
f2ed9b32
KW
1184 ? (utf8_target ? trie_utf8_fold : (UTF_PATTERN ? trie_latin_utf8_fold : trie_plain)) \
1185 : (utf8_target ? trie_utf8 : trie_plain)
3b0527fe 1186
55eed653
NC
1187#define REXEC_TRIE_READ_CHAR(trie_type, trie, widecharmap, uc, uscan, len, \
1188uvc, charid, foldlen, foldbuf, uniflags) STMT_START { \
4cadc6a9
YO
1189 switch (trie_type) { \
1190 case trie_utf8_fold: \
1191 if ( foldlen>0 ) { \
0abd0d78 1192 uvc = utf8n_to_uvuni( uscan, UTF8_MAXLEN, &len, uniflags ); \
4cadc6a9
YO
1193 foldlen -= len; \
1194 uscan += len; \
1195 len=0; \
1196 } else { \
0abd0d78 1197 uvc = utf8n_to_uvuni( (U8*)uc, UTF8_MAXLEN, &len, uniflags ); \
4cadc6a9
YO
1198 uvc = to_uni_fold( uvc, foldbuf, &foldlen ); \
1199 foldlen -= UNISKIP( uvc ); \
1200 uscan = foldbuf + UNISKIP( uvc ); \
1201 } \
1202 break; \
a0a388a1
YO
1203 case trie_latin_utf8_fold: \
1204 if ( foldlen>0 ) { \
1205 uvc = utf8n_to_uvuni( uscan, UTF8_MAXLEN, &len, uniflags ); \
1206 foldlen -= len; \
1207 uscan += len; \
1208 len=0; \
1209 } else { \
1210 len = 1; \
1211 uvc = to_uni_fold( *(U8*)uc, foldbuf, &foldlen ); \
1212 foldlen -= UNISKIP( uvc ); \
1213 uscan = foldbuf + UNISKIP( uvc ); \
1214 } \
1215 break; \
4cadc6a9
YO
1216 case trie_utf8: \
1217 uvc = utf8n_to_uvuni( (U8*)uc, UTF8_MAXLEN, &len, uniflags ); \
1218 break; \
1219 case trie_plain: \
1220 uvc = (UV)*uc; \
1221 len = 1; \
1222 } \
4cadc6a9
YO
1223 if (uvc < 256) { \
1224 charid = trie->charmap[ uvc ]; \
1225 } \
1226 else { \
1227 charid = 0; \
55eed653
NC
1228 if (widecharmap) { \
1229 SV** const svpp = hv_fetch(widecharmap, \
4cadc6a9
YO
1230 (char*)&uvc, sizeof(UV), 0); \
1231 if (svpp) \
1232 charid = (U16)SvIV(*svpp); \
1233 } \
1234 } \
1235} STMT_END
1236
4cadc6a9
YO
1237#define REXEC_FBC_EXACTISH_SCAN(CoNd) \
1238STMT_START { \
1239 while (s <= e) { \
1240 if ( (CoNd) \
fac1af77 1241 && (ln == 1 || folder(s, pat_string, ln)) \
9a5a5549 1242 && (!reginfo || regtry(reginfo, &s)) ) \
4cadc6a9
YO
1243 goto got_it; \
1244 s++; \
1245 } \
1246} STMT_END
1247
1248#define REXEC_FBC_UTF8_SCAN(CoDe) \
1249STMT_START { \
1250 while (s + (uskip = UTF8SKIP(s)) <= strend) { \
1251 CoDe \
1252 s += uskip; \
1253 } \
1254} STMT_END
1255
1256#define REXEC_FBC_SCAN(CoDe) \
1257STMT_START { \
1258 while (s < strend) { \
1259 CoDe \
1260 s++; \
1261 } \
1262} STMT_END
1263
1264#define REXEC_FBC_UTF8_CLASS_SCAN(CoNd) \
1265REXEC_FBC_UTF8_SCAN( \
1266 if (CoNd) { \
24b23f37 1267 if (tmp && (!reginfo || regtry(reginfo, &s))) \
4cadc6a9
YO
1268 goto got_it; \
1269 else \
1270 tmp = doevery; \
1271 } \
1272 else \
1273 tmp = 1; \
1274)
1275
1276#define REXEC_FBC_CLASS_SCAN(CoNd) \
1277REXEC_FBC_SCAN( \
1278 if (CoNd) { \
24b23f37 1279 if (tmp && (!reginfo || regtry(reginfo, &s))) \
4cadc6a9
YO
1280 goto got_it; \
1281 else \
1282 tmp = doevery; \
1283 } \
1284 else \
1285 tmp = 1; \
1286)
1287
1288#define REXEC_FBC_TRYIT \
24b23f37 1289if ((!reginfo || regtry(reginfo, &s))) \
4cadc6a9
YO
1290 goto got_it
1291
e1d1eefb 1292#define REXEC_FBC_CSCAN(CoNdUtF8,CoNd) \
f2ed9b32 1293 if (utf8_target) { \
e1d1eefb
YO
1294 REXEC_FBC_UTF8_CLASS_SCAN(CoNdUtF8); \
1295 } \
1296 else { \
1297 REXEC_FBC_CLASS_SCAN(CoNd); \
d981ef24 1298 }
e1d1eefb 1299
4cadc6a9 1300#define REXEC_FBC_CSCAN_PRELOAD(UtFpReLoAd,CoNdUtF8,CoNd) \
f2ed9b32 1301 if (utf8_target) { \
4cadc6a9
YO
1302 UtFpReLoAd; \
1303 REXEC_FBC_UTF8_CLASS_SCAN(CoNdUtF8); \
1304 } \
1305 else { \
1306 REXEC_FBC_CLASS_SCAN(CoNd); \
d981ef24 1307 }
4cadc6a9
YO
1308
1309#define REXEC_FBC_CSCAN_TAINT(CoNdUtF8,CoNd) \
1310 PL_reg_flags |= RF_tainted; \
f2ed9b32 1311 if (utf8_target) { \
4cadc6a9
YO
1312 REXEC_FBC_UTF8_CLASS_SCAN(CoNdUtF8); \
1313 } \
1314 else { \
1315 REXEC_FBC_CLASS_SCAN(CoNd); \
d981ef24 1316 }
4cadc6a9 1317
786e8c11
YO
1318#define DUMP_EXEC_POS(li,s,doutf8) \
1319 dump_exec_pos(li,s,(PL_regeol),(PL_bostr),(PL_reg_starttry),doutf8)
1320
cfaf538b
KW
1321
1322#define UTF8_NOLOAD(TEST_NON_UTF8, IF_SUCCESS, IF_FAIL) \
1323 tmp = (s != PL_bostr) ? UCHARAT(s - 1) : '\n'; \
1324 tmp = TEST_NON_UTF8(tmp); \
1325 REXEC_FBC_UTF8_SCAN( \
1326 if (tmp == ! TEST_NON_UTF8((U8) *s)) { \
1327 tmp = !tmp; \
1328 IF_SUCCESS; \
1329 } \
1330 else { \
1331 IF_FAIL; \
1332 } \
1333 ); \
1334
1335#define UTF8_LOAD(TeSt1_UtF8, TeSt2_UtF8, IF_SUCCESS, IF_FAIL) \
1336 if (s == PL_bostr) { \
1337 tmp = '\n'; \
1338 } \
1339 else { \
1340 U8 * const r = reghop3((U8*)s, -1, (U8*)PL_bostr); \
1341 tmp = utf8n_to_uvchr(r, UTF8SKIP(r), 0, UTF8_ALLOW_DEFAULT); \
1342 } \
1343 tmp = TeSt1_UtF8; \
1344 LOAD_UTF8_CHARCLASS_ALNUM(); \
1345 REXEC_FBC_UTF8_SCAN( \
1346 if (tmp == ! (TeSt2_UtF8)) { \
1347 tmp = !tmp; \
1348 IF_SUCCESS; \
1349 } \
1350 else { \
1351 IF_FAIL; \
1352 } \
1353 ); \
1354
63ac0dad
KW
1355/* The only difference between the BOUND and NBOUND cases is that
1356 * REXEC_FBC_TRYIT is called when matched in BOUND, and when non-matched in
1357 * NBOUND. This is accomplished by passing it in either the if or else clause,
1358 * with the other one being empty */
1359#define FBC_BOUND(TEST_NON_UTF8, TEST1_UTF8, TEST2_UTF8) \
1dcf4a1b 1360 FBC_BOUND_COMMON(UTF8_LOAD(TEST1_UTF8, TEST2_UTF8, REXEC_FBC_TRYIT, PLACEHOLDER), TEST_NON_UTF8, REXEC_FBC_TRYIT, PLACEHOLDER)
cfaf538b
KW
1361
1362#define FBC_BOUND_NOLOAD(TEST_NON_UTF8, TEST1_UTF8, TEST2_UTF8) \
1dcf4a1b 1363 FBC_BOUND_COMMON(UTF8_NOLOAD(TEST_NON_UTF8, REXEC_FBC_TRYIT, PLACEHOLDER), TEST_NON_UTF8, REXEC_FBC_TRYIT, PLACEHOLDER)
63ac0dad
KW
1364
1365#define FBC_NBOUND(TEST_NON_UTF8, TEST1_UTF8, TEST2_UTF8) \
1dcf4a1b 1366 FBC_BOUND_COMMON(UTF8_LOAD(TEST1_UTF8, TEST2_UTF8, PLACEHOLDER, REXEC_FBC_TRYIT), TEST_NON_UTF8, PLACEHOLDER, REXEC_FBC_TRYIT)
cfaf538b
KW
1367
1368#define FBC_NBOUND_NOLOAD(TEST_NON_UTF8, TEST1_UTF8, TEST2_UTF8) \
1dcf4a1b 1369 FBC_BOUND_COMMON(UTF8_NOLOAD(TEST_NON_UTF8, PLACEHOLDER, REXEC_FBC_TRYIT), TEST_NON_UTF8, PLACEHOLDER, REXEC_FBC_TRYIT)
cfaf538b 1370
63ac0dad
KW
1371
1372/* Common to the BOUND and NBOUND cases. Unfortunately the UTF8 tests need to
1373 * be passed in completely with the variable name being tested, which isn't
1374 * such a clean interface, but this is easier to read than it was before. We
1375 * are looking for the boundary (or non-boundary between a word and non-word
1376 * character. The utf8 and non-utf8 cases have the same logic, but the details
1377 * must be different. Find the "wordness" of the character just prior to this
1378 * one, and compare it with the wordness of this one. If they differ, we have
1379 * a boundary. At the beginning of the string, pretend that the previous
1380 * character was a new-line */
cfaf538b 1381#define FBC_BOUND_COMMON(UTF8_CODE, TEST_NON_UTF8, IF_SUCCESS, IF_FAIL) \
63ac0dad 1382 if (utf8_target) { \
cfaf538b 1383 UTF8_CODE \
63ac0dad
KW
1384 } \
1385 else { /* Not utf8 */ \
1386 tmp = (s != PL_bostr) ? UCHARAT(s - 1) : '\n'; \
1387 tmp = TEST_NON_UTF8(tmp); \
1388 REXEC_FBC_SCAN( \
1389 if (tmp == ! TEST_NON_UTF8((U8) *s)) { \
1390 tmp = !tmp; \
1391 IF_SUCCESS; \
1392 } \
1393 else { \
1394 IF_FAIL; \
1395 } \
1396 ); \
1397 } \
1398 if ((!prog->minlen && tmp) && (!reginfo || regtry(reginfo, &s))) \
1399 goto got_it;
1400
786e8c11
YO
1401/* We know what class REx starts with. Try to find this position... */
1402/* if reginfo is NULL, its a dryrun */
1403/* annoyingly all the vars in this routine have different names from their counterparts
1404 in regmatch. /grrr */
1405
3c3eec57 1406STATIC char *
07be1b83 1407S_find_byclass(pTHX_ regexp * prog, const regnode *c, char *s,
24b23f37 1408 const char *strend, regmatch_info *reginfo)
a687059c 1409{
27da23d5 1410 dVAR;
bbe252da 1411 const I32 doevery = (prog->intflags & PREGf_SKIP) == 0;
fac1af77
KW
1412 char *pat_string; /* The pattern's exactish string */
1413 char *pat_end; /* ptr to end char of pat_string */
1414 re_fold_t folder; /* Function for computing non-utf8 folds */
1415 const U8 *fold_array; /* array for folding ords < 256 */
d8093b23 1416 STRLEN ln;
5dab1207 1417 STRLEN lnc;
078c425b 1418 register STRLEN uskip;
fac1af77
KW
1419 U8 c1;
1420 U8 c2;
6eb5f6b9
JH
1421 char *e;
1422 register I32 tmp = 1; /* Scratch variable? */
f2ed9b32 1423 register const bool utf8_target = PL_reg_match_utf8;
453bfd44 1424 UV utf8_fold_flags = 0;
f8fc2ecf 1425 RXi_GET_DECL(prog,progi);
7918f24d
NC
1426
1427 PERL_ARGS_ASSERT_FIND_BYCLASS;
f8fc2ecf 1428
6eb5f6b9
JH
1429 /* We know what class it must start with. */
1430 switch (OP(c)) {
f56b6394 1431 case ANYOFV:
6eb5f6b9 1432 case ANYOF:
f56b6394 1433 if (utf8_target || OP(c) == ANYOFV) {
b1e3e569
KW
1434 STRLEN inclasslen = strend - s;
1435 REXEC_FBC_UTF8_CLASS_SCAN(
1436 reginclass(prog, c, (U8*)s, &inclasslen, utf8_target));
388cc4de
HS
1437 }
1438 else {
6ef69d56 1439 REXEC_FBC_CLASS_SCAN(REGINCLASS(prog, c, (U8*)s));
a0d0e21e 1440 }
6eb5f6b9 1441 break;
f33976b4 1442 case CANY:
4cadc6a9 1443 REXEC_FBC_SCAN(
24b23f37 1444 if (tmp && (!reginfo || regtry(reginfo, &s)))
f33976b4
DB
1445 goto got_it;
1446 else
1447 tmp = doevery;
4cadc6a9 1448 );
f33976b4 1449 break;
2f7f8cb1
KW
1450
1451 case EXACTFA:
1452 if (UTF_PATTERN || utf8_target) {
1453 utf8_fold_flags = FOLDEQ_UTF8_NOMIX_ASCII;
1454 goto do_exactf_utf8;
1455 }
1456 fold_array = PL_fold_latin1; /* Latin1 folds are not affected by */
1457 folder = foldEQ_latin1; /* /a, except the sharp s one which */
1458 goto do_exactf_non_utf8; /* isn't dealt with by these */
1459
9a5a5549 1460 case EXACTFU:
fac1af77
KW
1461 if (UTF_PATTERN || utf8_target) {
1462 utf8_fold_flags = 0;
1463 goto do_exactf_utf8;
1464 }
0a185c45
KW
1465
1466 /* Any 'ss' in the pattern should have been replaced by regcomp,
1467 * so we don't have to worry here about this single special case
1468 * in the Latin1 range */
fac1af77
KW
1469 fold_array = PL_fold_latin1;
1470 folder = foldEQ_latin1;
0a185c45 1471 goto do_exactf_non_utf8;
fac1af77 1472
6eb5f6b9 1473 case EXACTF:
fac1af77
KW
1474 if (UTF_PATTERN || utf8_target) {
1475 utf8_fold_flags = 0;
1476 goto do_exactf_utf8;
1477 }
1478 fold_array = PL_fold;
1479 folder = foldEQ;
1480 goto do_exactf_non_utf8;
1481
1482 case EXACTFL:
1483 if (UTF_PATTERN || utf8_target) {
17580e7a 1484 utf8_fold_flags = FOLDEQ_UTF8_LOCALE;
fac1af77
KW
1485 goto do_exactf_utf8;
1486 }
1487 fold_array = PL_fold_locale;
1488 folder = foldEQ_locale;
1489
1490 /* FALL THROUGH */
1491
1492 do_exactf_non_utf8: /* Neither pattern nor string are UTF8 */
1493
1494 /* The idea in the non-utf8 EXACTF* cases is to first find the
1495 * first character of the EXACTF* node and then, if necessary,
1496 * case-insensitively compare the full text of the node. c1 is the
1497 * first character. c2 is its fold. This logic will not work for
1498 * Unicode semantics and the german sharp ss, which hence should
1499 * not be compiled into a node that gets here. */
1500 pat_string = STRING(c);
1501 ln = STR_LEN(c); /* length to match in octets/bytes */
1502
1503 e = HOP3c(strend, -((I32)ln), s);
1504
1505 if (!reginfo && e < s) {
1506 e = s; /* Due to minlen logic of intuit() */
1507 }
1508
1509 c1 = *pat_string;
1510 c2 = fold_array[c1];
1511 if (c1 == c2) { /* If char and fold are the same */
1512 REXEC_FBC_EXACTISH_SCAN(*(U8*)s == c1);
1513 }
1514 else {
1515 REXEC_FBC_EXACTISH_SCAN(*(U8*)s == c1 || *(U8*)s == c2);
1516 }
1517 break;
1518
1519 do_exactf_utf8:
1520
1521 /* If one of the operands is in utf8, we can't use the simpler
1522 * folding above, due to the fact that many different characters
1523 * can have the same fold, or portion of a fold, or different-
1524 * length fold */
1525 pat_string = STRING(c);
1526 ln = STR_LEN(c); /* length to match in octets/bytes */
1527 pat_end = pat_string + ln;
1528 lnc = (UTF_PATTERN) /* length to match in characters */
1529 ? utf8_length((U8 *) pat_string, (U8 *) pat_end)
1530 : ln;
1531
1532 e = HOP3c(strend, -((I32)lnc), s);
1533
1534 if (!reginfo && e < s) {
1535 e = s; /* Due to minlen logic of intuit() */
1536 }
1537
1538 while (s <= e) {
1539 char *my_strend= (char *)strend;
1540 if (foldEQ_utf8_flags(s, &my_strend, 0, utf8_target,
1541 pat_string, NULL, ln, cBOOL(UTF_PATTERN), utf8_fold_flags)
1542 && (!reginfo || regtry(reginfo, &s)) )
1543 {
1544 goto got_it;
1545 }
1546 s += UTF8SKIP(s);
1547 }
1548 break;
bbce6d69 1549 case BOUNDL:
3280af22 1550 PL_reg_flags |= RF_tainted;
63ac0dad
KW
1551 FBC_BOUND(isALNUM_LC,
1552 isALNUM_LC_uvchr(UNI_TO_NATIVE(tmp)),
1553 isALNUM_LC_utf8((U8*)s));
a0ed51b3 1554 break;
bbce6d69 1555 case NBOUNDL:
3280af22 1556 PL_reg_flags |= RF_tainted;
63ac0dad
KW
1557 FBC_NBOUND(isALNUM_LC,
1558 isALNUM_LC_uvchr(UNI_TO_NATIVE(tmp)),
1559 isALNUM_LC_utf8((U8*)s));
1560 break;
1561 case BOUND:
1562 FBC_BOUND(isWORDCHAR,
1563 isALNUM_uni(tmp),
1564 cBOOL(swash_fetch(PL_utf8_alnum, (U8*)s, utf8_target)));
1565 break;
cfaf538b
KW
1566 case BOUNDA:
1567 FBC_BOUND_NOLOAD(isWORDCHAR_A,
1568 isWORDCHAR_A(tmp),
1569 isWORDCHAR_A((U8*)s));
1570 break;
a0d0e21e 1571 case NBOUND:
63ac0dad
KW
1572 FBC_NBOUND(isWORDCHAR,
1573 isALNUM_uni(tmp),
1574 cBOOL(swash_fetch(PL_utf8_alnum, (U8*)s, utf8_target)));
1575 break;
cfaf538b
KW
1576 case NBOUNDA:
1577 FBC_NBOUND_NOLOAD(isWORDCHAR_A,
1578 isWORDCHAR_A(tmp),
1579 isWORDCHAR_A((U8*)s));
1580 break;
63ac0dad
KW
1581 case BOUNDU:
1582 FBC_BOUND(isWORDCHAR_L1,
1583 isALNUM_uni(tmp),
1584 cBOOL(swash_fetch(PL_utf8_alnum, (U8*)s, utf8_target)));
1585 break;
1586 case NBOUNDU:
1587 FBC_NBOUND(isWORDCHAR_L1,
1588 isALNUM_uni(tmp),
1589 cBOOL(swash_fetch(PL_utf8_alnum, (U8*)s, utf8_target)));
a0ed51b3 1590 break;
bbce6d69 1591 case ALNUML:
4cadc6a9
YO
1592 REXEC_FBC_CSCAN_TAINT(
1593 isALNUM_LC_utf8((U8*)s),
1594 isALNUM_LC(*s)
1595 );
6895a8aa 1596 break;
980866de
KW
1597 case ALNUMU:
1598 REXEC_FBC_CSCAN_PRELOAD(
779d7b58
KW
1599 LOAD_UTF8_CHARCLASS_ALNUM(),
1600 swash_fetch(PL_utf8_alnum,(U8*)s, utf8_target),
980866de
KW
1601 isWORDCHAR_L1((U8) *s)
1602 );
6895a8aa 1603 break;
980866de
KW
1604 case ALNUM:
1605 REXEC_FBC_CSCAN_PRELOAD(
779d7b58
KW
1606 LOAD_UTF8_CHARCLASS_ALNUM(),
1607 swash_fetch(PL_utf8_alnum,(U8*)s, utf8_target),
980866de
KW
1608 isWORDCHAR((U8) *s)
1609 );
6895a8aa 1610 break;
cfaf538b 1611 case ALNUMA:
8e9da4d4
KW
1612 /* Don't need to worry about utf8, as it can match only a single
1613 * byte invariant character */
cfaf538b 1614 REXEC_FBC_CLASS_SCAN( isWORDCHAR_A(*s));
6895a8aa 1615 break;
980866de
KW
1616 case NALNUMU:
1617 REXEC_FBC_CSCAN_PRELOAD(
779d7b58 1618 LOAD_UTF8_CHARCLASS_ALNUM(),
359960d4 1619 !swash_fetch(PL_utf8_alnum,(U8*)s, utf8_target),
980866de
KW
1620 ! isWORDCHAR_L1((U8) *s)
1621 );
6895a8aa 1622 break;
a0d0e21e 1623 case NALNUM:
4cadc6a9 1624 REXEC_FBC_CSCAN_PRELOAD(
779d7b58
KW
1625 LOAD_UTF8_CHARCLASS_ALNUM(),
1626 !swash_fetch(PL_utf8_alnum, (U8*)s, utf8_target),
980866de 1627 ! isALNUM(*s)
4cadc6a9 1628 );
6895a8aa 1629 break;
cfaf538b 1630 case NALNUMA:
8e9da4d4
KW
1631 REXEC_FBC_CSCAN(
1632 !isWORDCHAR_A(*s),
1633 !isWORDCHAR_A(*s)
1634 );
1635 break;
bbce6d69 1636 case NALNUML:
4cadc6a9
YO
1637 REXEC_FBC_CSCAN_TAINT(
1638 !isALNUM_LC_utf8((U8*)s),
1639 !isALNUM_LC(*s)
1640 );
6895a8aa 1641 break;
980866de
KW
1642 case SPACEU:
1643 REXEC_FBC_CSCAN_PRELOAD(
779d7b58
KW
1644 LOAD_UTF8_CHARCLASS_SPACE(),
1645 *s == ' ' || swash_fetch(PL_utf8_space,(U8*)s, utf8_target),
980866de
KW
1646 isSPACE_L1((U8) *s)
1647 );
6895a8aa 1648 break;
a0d0e21e 1649 case SPACE:
4cadc6a9 1650 REXEC_FBC_CSCAN_PRELOAD(
779d7b58
KW
1651 LOAD_UTF8_CHARCLASS_SPACE(),
1652 *s == ' ' || swash_fetch(PL_utf8_space,(U8*)s, utf8_target),
980866de 1653 isSPACE((U8) *s)
4cadc6a9 1654 );
6895a8aa 1655 break;
cfaf538b 1656 case SPACEA:
8e9da4d4
KW
1657 /* Don't need to worry about utf8, as it can match only a single
1658 * byte invariant character */
cfaf538b 1659 REXEC_FBC_CLASS_SCAN( isSPACE_A(*s));
6895a8aa 1660 break;
bbce6d69 1661 case SPACEL:
4cadc6a9 1662 REXEC_FBC_CSCAN_TAINT(
6bbba904 1663 isSPACE_LC_utf8((U8*)s),
4cadc6a9
YO
1664 isSPACE_LC(*s)
1665 );
6895a8aa 1666 break;
980866de
KW
1667 case NSPACEU:
1668 REXEC_FBC_CSCAN_PRELOAD(
779d7b58
KW
1669 LOAD_UTF8_CHARCLASS_SPACE(),
1670 !( *s == ' ' || swash_fetch(PL_utf8_space,(U8*)s, utf8_target)),
980866de
KW
1671 ! isSPACE_L1((U8) *s)
1672 );
6895a8aa 1673 break;
a0d0e21e 1674 case NSPACE:
4cadc6a9 1675 REXEC_FBC_CSCAN_PRELOAD(
779d7b58
KW
1676 LOAD_UTF8_CHARCLASS_SPACE(),
1677 !(*s == ' ' || swash_fetch(PL_utf8_space,(U8*)s, utf8_target)),
980866de 1678 ! isSPACE((U8) *s)
4cadc6a9 1679 );
6895a8aa 1680 break;
cfaf538b 1681 case NSPACEA:
8e9da4d4
KW
1682 REXEC_FBC_CSCAN(
1683 !isSPACE_A(*s),
1684 !isSPACE_A(*s)
1685 );
1686 break;
bbce6d69 1687 case NSPACEL:
4cadc6a9 1688 REXEC_FBC_CSCAN_TAINT(
6bbba904 1689 !isSPACE_LC_utf8((U8*)s),
4cadc6a9
YO
1690 !isSPACE_LC(*s)
1691 );
6895a8aa 1692 break;
a0d0e21e 1693 case DIGIT:
4cadc6a9 1694 REXEC_FBC_CSCAN_PRELOAD(
779d7b58
KW
1695 LOAD_UTF8_CHARCLASS_DIGIT(),
1696 swash_fetch(PL_utf8_digit,(U8*)s, utf8_target),
4cadc6a9
YO
1697 isDIGIT(*s)
1698 );
6895a8aa 1699 break;
cfaf538b 1700 case DIGITA:
8e9da4d4
KW
1701 /* Don't need to worry about utf8, as it can match only a single
1702 * byte invariant character */
cfaf538b 1703 REXEC_FBC_CLASS_SCAN( isDIGIT_A(*s));
6895a8aa 1704 break;
b8c5462f 1705 case DIGITL:
4cadc6a9
YO
1706 REXEC_FBC_CSCAN_TAINT(
1707 isDIGIT_LC_utf8((U8*)s),
1708 isDIGIT_LC(*s)
1709 );
6895a8aa 1710 break;
a0d0e21e 1711 case NDIGIT:
4cadc6a9 1712 REXEC_FBC_CSCAN_PRELOAD(
779d7b58
KW
1713 LOAD_UTF8_CHARCLASS_DIGIT(),
1714 !swash_fetch(PL_utf8_digit,(U8*)s, utf8_target),
4cadc6a9
YO
1715 !isDIGIT(*s)
1716 );
6895a8aa 1717 break;
cfaf538b 1718 case NDIGITA:
8e9da4d4
KW
1719 REXEC_FBC_CSCAN(
1720 !isDIGIT_A(*s),
1721 !isDIGIT_A(*s)
1722 );
1723 break;
b8c5462f 1724 case NDIGITL:
4cadc6a9
YO
1725 REXEC_FBC_CSCAN_TAINT(
1726 !isDIGIT_LC_utf8((U8*)s),
1727 !isDIGIT_LC(*s)
1728 );
6895a8aa 1729 break;
e1d1eefb
YO
1730 case LNBREAK:
1731 REXEC_FBC_CSCAN(
1732 is_LNBREAK_utf8(s),
1733 is_LNBREAK_latin1(s)
1734 );
6895a8aa 1735 break;
e1d1eefb
YO
1736 case VERTWS:
1737 REXEC_FBC_CSCAN(
1738 is_VERTWS_utf8(s),
1739 is_VERTWS_latin1(s)
1740 );
6895a8aa 1741 break;
e1d1eefb
YO
1742 case NVERTWS:
1743 REXEC_FBC_CSCAN(
1744 !is_VERTWS_utf8(s),
1745 !is_VERTWS_latin1(s)
1746 );
6895a8aa 1747 break;
e1d1eefb
YO
1748 case HORIZWS:
1749 REXEC_FBC_CSCAN(
1750 is_HORIZWS_utf8(s),
1751 is_HORIZWS_latin1(s)
1752 );
6895a8aa 1753 break;
e1d1eefb
YO
1754 case NHORIZWS:
1755 REXEC_FBC_CSCAN(
1756 !is_HORIZWS_utf8(s),
1757 !is_HORIZWS_latin1(s)
1758 );
6895a8aa 1759 break;
1de06328
YO
1760 case AHOCORASICKC:
1761 case AHOCORASICK:
07be1b83 1762 {
a0a388a1 1763 DECL_TRIE_TYPE(c);
07be1b83
YO
1764 /* what trie are we using right now */
1765 reg_ac_data *aho
f8fc2ecf 1766 = (reg_ac_data*)progi->data->data[ ARG( c ) ];
3251b653
NC
1767 reg_trie_data *trie
1768 = (reg_trie_data*)progi->data->data[ aho->trie ];
85fbaab2 1769 HV *widecharmap = MUTABLE_HV(progi->data->data[ aho->trie + 1 ]);
07be1b83
YO
1770
1771 const char *last_start = strend - trie->minlen;
6148ee25 1772#ifdef DEBUGGING
07be1b83 1773 const char *real_start = s;
6148ee25 1774#endif
07be1b83 1775 STRLEN maxlen = trie->maxlen;
be8e71aa
YO
1776 SV *sv_points;
1777 U8 **points; /* map of where we were in the input string
786e8c11 1778 when reading a given char. For ASCII this
be8e71aa 1779 is unnecessary overhead as the relationship
38a44b82
NC
1780 is always 1:1, but for Unicode, especially
1781 case folded Unicode this is not true. */
f9e705e8 1782 U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
786e8c11
YO
1783 U8 *bitmap=NULL;
1784
07be1b83
YO
1785
1786 GET_RE_DEBUG_FLAGS_DECL;
1787
be8e71aa
YO
1788 /* We can't just allocate points here. We need to wrap it in
1789 * an SV so it gets freed properly if there is a croak while
1790 * running the match */
1791 ENTER;
1792 SAVETMPS;
1793 sv_points=newSV(maxlen * sizeof(U8 *));
1794 SvCUR_set(sv_points,
1795 maxlen * sizeof(U8 *));
1796 SvPOK_on(sv_points);
1797 sv_2mortal(sv_points);
1798 points=(U8**)SvPV_nolen(sv_points );
1de06328
YO
1799 if ( trie_type != trie_utf8_fold
1800 && (trie->bitmap || OP(c)==AHOCORASICKC) )
1801 {
786e8c11
YO
1802 if (trie->bitmap)
1803 bitmap=(U8*)trie->bitmap;
1804 else
1805 bitmap=(U8*)ANYOF_BITMAP(c);
07be1b83 1806 }
786e8c11
YO
1807 /* this is the Aho-Corasick algorithm modified a touch
1808 to include special handling for long "unknown char"
1809 sequences. The basic idea being that we use AC as long
1810 as we are dealing with a possible matching char, when
1811 we encounter an unknown char (and we have not encountered
1812 an accepting state) we scan forward until we find a legal
1813 starting char.
1814 AC matching is basically that of trie matching, except
1815 that when we encounter a failing transition, we fall back
1816 to the current states "fail state", and try the current char
1817 again, a process we repeat until we reach the root state,
1818 state 1, or a legal transition. If we fail on the root state
1819 then we can either terminate if we have reached an accepting
1820 state previously, or restart the entire process from the beginning
1821 if we have not.
1822
1823 */
07be1b83
YO
1824 while (s <= last_start) {
1825 const U32 uniflags = UTF8_ALLOW_DEFAULT;
1826 U8 *uc = (U8*)s;
1827 U16 charid = 0;
1828 U32 base = 1;
1829 U32 state = 1;
1830 UV uvc = 0;
1831 STRLEN len = 0;
1832 STRLEN foldlen = 0;
1833 U8 *uscan = (U8*)NULL;
1834 U8 *leftmost = NULL;
786e8c11
YO
1835#ifdef DEBUGGING
1836 U32 accepted_word= 0;
1837#endif
07be1b83
YO
1838 U32 pointpos = 0;
1839
1840 while ( state && uc <= (U8*)strend ) {
1841 int failed=0;
786e8c11
YO
1842 U32 word = aho->states[ state ].wordnum;
1843
1de06328
YO
1844 if( state==1 ) {
1845 if ( bitmap ) {
1846 DEBUG_TRIE_EXECUTE_r(
1847 if ( uc <= (U8*)last_start && !BITMAP_TEST(bitmap,*uc) ) {
1848 dump_exec_pos( (char *)uc, c, strend, real_start,
f2ed9b32 1849 (char *)uc, utf8_target );
1de06328
YO
1850 PerlIO_printf( Perl_debug_log,
1851 " Scanning for legal start char...\n");
1852 }
d085b490
YO
1853 );
1854 if (utf8_target) {
1855 while ( uc <= (U8*)last_start && !BITMAP_TEST(bitmap,*uc) ) {
1856 uc += UTF8SKIP(uc);
1857 }
1858 } else {
1859 while ( uc <= (U8*)last_start && !BITMAP_TEST(bitmap,*uc) ) {
1860 uc++;
1861 }
1862 }
1de06328 1863 s= (char *)uc;
786e8c11 1864 }
786e8c11
YO
1865 if (uc >(U8*)last_start) break;
1866 }
1867
1868 if ( word ) {
2e64971a 1869 U8 *lpos= points[ (pointpos - trie->wordinfo[word].len) % maxlen ];
786e8c11
YO
1870 if (!leftmost || lpos < leftmost) {
1871 DEBUG_r(accepted_word=word);
07be1b83 1872 leftmost= lpos;
786e8c11 1873 }
07be1b83 1874 if (base==0) break;
786e8c11 1875
07be1b83
YO
1876 }
1877 points[pointpos++ % maxlen]= uc;
55eed653
NC
1878 REXEC_TRIE_READ_CHAR(trie_type, trie, widecharmap, uc,
1879 uscan, len, uvc, charid, foldlen,
1880 foldbuf, uniflags);
786e8c11
YO
1881 DEBUG_TRIE_EXECUTE_r({
1882 dump_exec_pos( (char *)uc, c, strend, real_start,
f2ed9b32 1883 s, utf8_target );
07be1b83 1884 PerlIO_printf(Perl_debug_log,
786e8c11
YO
1885 " Charid:%3u CP:%4"UVxf" ",
1886 charid, uvc);
1887 });
07be1b83
YO
1888
1889 do {
6148ee25 1890#ifdef DEBUGGING
786e8c11 1891 word = aho->states[ state ].wordnum;
6148ee25 1892#endif
07be1b83
YO
1893 base = aho->states[ state ].trans.base;
1894
786e8c11
YO
1895 DEBUG_TRIE_EXECUTE_r({
1896 if (failed)
1897 dump_exec_pos( (char *)uc, c, strend, real_start,
f2ed9b32 1898 s, utf8_target );
07be1b83 1899 PerlIO_printf( Perl_debug_log,
786e8c11
YO
1900 "%sState: %4"UVxf", word=%"UVxf,
1901 failed ? " Fail transition to " : "",
1902 (UV)state, (UV)word);
1903 });
07be1b83
YO
1904 if ( base ) {
1905 U32 tmp;
6dd2be57 1906 I32 offset;
07be1b83 1907 if (charid &&
6dd2be57
DM
1908 ( ((offset = base + charid
1909 - 1 - trie->uniquecharcount)) >= 0)
1910 && ((U32)offset < trie->lasttrans)
1911 && trie->trans[offset].check == state
1912 && (tmp=trie->trans[offset].next))
07be1b83 1913 {
786e8c11
YO
1914 DEBUG_TRIE_EXECUTE_r(
1915 PerlIO_printf( Perl_debug_log," - legal\n"));
07be1b83
YO
1916 state = tmp;
1917 break;
1918 }
1919 else {
786e8c11
YO
1920 DEBUG_TRIE_EXECUTE_r(
1921 PerlIO_printf( Perl_debug_log," - fail\n"));
1922 failed = 1;
1923 state = aho->fail[state];
07be1b83
YO
1924 }
1925 }
1926 else {
1927 /* we must be accepting here */
786e8c11
YO
1928 DEBUG_TRIE_EXECUTE_r(
1929 PerlIO_printf( Perl_debug_log," - accepting\n"));
1930 failed = 1;
07be1b83
YO
1931 break;
1932 }
1933 } while(state);
786e8c11 1934 uc += len;
07be1b83
YO
1935 if (failed) {
1936 if (leftmost)
1937 break;
786e8c11 1938 if (!state) state = 1;
07be1b83
YO
1939 }
1940 }
1941 if ( aho->states[ state ].wordnum ) {
2e64971a 1942 U8 *lpos = points[ (pointpos - trie->wordinfo[aho->states[ state ].wordnum].len) % maxlen ];
786e8c11
YO
1943 if (!leftmost || lpos < leftmost) {
1944 DEBUG_r(accepted_word=aho->states[ state ].wordnum);
07be1b83 1945 leftmost = lpos;
786e8c11 1946 }
07be1b83 1947 }
07be1b83
YO
1948 if (leftmost) {
1949 s = (char*)leftmost;
786e8c11
YO
1950 DEBUG_TRIE_EXECUTE_r({
1951 PerlIO_printf(
70685ca0
JH
1952 Perl_debug_log,"Matches word #%"UVxf" at position %"IVdf". Trying full pattern...\n",
1953 (UV)accepted_word, (IV)(s - real_start)
786e8c11
YO
1954 );
1955 });
24b23f37 1956 if (!reginfo || regtry(reginfo, &s)) {
be8e71aa
YO
1957 FREETMPS;
1958 LEAVE;
07be1b83 1959 goto got_it;
be8e71aa 1960 }
07be1b83 1961 s = HOPc(s,1);
786e8c11
YO
1962 DEBUG_TRIE_EXECUTE_r({
1963 PerlIO_printf( Perl_debug_log,"Pattern failed. Looking for new start point...\n");
1964 });
07be1b83 1965 } else {
786e8c11
YO
1966 DEBUG_TRIE_EXECUTE_r(
1967 PerlIO_printf( Perl_debug_log,"No match.\n"));
07be1b83
YO
1968 break;
1969 }
1970 }
be8e71aa
YO
1971 FREETMPS;
1972 LEAVE;
07be1b83
YO
1973 }
1974 break;
b3c9acc1 1975 default:
3c3eec57
GS
1976 Perl_croak(aTHX_ "panic: unknown regstclass %d", (int)OP(c));
1977 break;
d6a28714 1978 }
6eb5f6b9
JH
1979 return 0;
1980 got_it:
1981 return s;
1982}
1983
fae667d5 1984
6eb5f6b9
JH
1985/*
1986 - regexec_flags - match a regexp against a string
1987 */
1988I32
288b8c02 1989Perl_regexec_flags(pTHX_ REGEXP * const rx, char *stringarg, register char *strend,
6eb5f6b9
JH
1990 char *strbeg, I32 minend, SV *sv, void *data, U32 flags)
1991/* strend: pointer to null at end of string */
1992/* strbeg: real beginning of string */
1993/* minend: end of match must be >=minend after stringarg. */
58e23c8d
YO
1994/* data: May be used for some additional optimizations.
1995 Currently its only used, with a U32 cast, for transmitting
1996 the ganch offset when doing a /g match. This will change */
6eb5f6b9
JH
1997/* nosave: For optimizations. */
1998{
97aff369 1999 dVAR;
288b8c02 2000 struct regexp *const prog = (struct regexp *)SvANY(rx);
24b23f37 2001 /*register*/ char *s;
6eb5f6b9 2002 register regnode *c;
24b23f37 2003 /*register*/ char *startpos = stringarg;
6eb5f6b9
JH
2004 I32 minlen; /* must match at least this many chars */
2005 I32 dontbother = 0; /* how many characters not to try at end */
6eb5f6b9
JH
2006 I32 end_shift = 0; /* Same for the end. */ /* CC */
2007 I32 scream_pos = -1; /* Internal iterator of scream. */
ccac19ea 2008 char *scream_olds = NULL;
f2ed9b32 2009 const bool utf8_target = cBOOL(DO_UTF8(sv));
2757e526 2010 I32 multiline;
f8fc2ecf 2011 RXi_GET_DECL(prog,progi);
3b0527fe 2012 regmatch_info reginfo; /* create some info to pass to regtry etc */
e9105d30 2013 regexp_paren_pair *swap = NULL;
a3621e74
YO
2014 GET_RE_DEBUG_FLAGS_DECL;
2015
7918f24d 2016 PERL_ARGS_ASSERT_REGEXEC_FLAGS;
9d4ba2ae 2017 PERL_UNUSED_ARG(data);
6eb5f6b9
JH
2018
2019 /* Be paranoid... */
2020 if (prog == NULL || startpos == NULL) {
2021 Perl_croak(aTHX_ "NULL regexp parameter");
2022 return 0;
2023 }
2024
bbe252da 2025 multiline = prog->extflags & RXf_PMf_MULTILINE;
288b8c02 2026 reginfo.prog = rx; /* Yes, sorry that this is confusing. */
2757e526 2027
f2ed9b32 2028 RX_MATCH_UTF8_set(rx, utf8_target);
1de06328 2029 DEBUG_EXECUTE_r(
f2ed9b32 2030 debug_start_match(rx, utf8_target, startpos, strend,
1de06328
YO
2031 "Matching");
2032 );
bac06658 2033
6eb5f6b9 2034 minlen = prog->minlen;
1de06328
YO
2035
2036 if (strend - startpos < (minlen+(prog->check_offset_min<0?prog->check_offset_min:0))) {
a3621e74 2037 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
a72c7584
JH
2038 "String too short [regexec_flags]...\n"));
2039 goto phooey;
1aa99e6b 2040 }
6eb5f6b9 2041
1de06328 2042
6eb5f6b9 2043 /* Check validity of program. */
f8fc2ecf 2044 if (UCHARAT(progi->program) != REG_MAGIC) {
6eb5f6b9
JH
2045 Perl_croak(aTHX_ "corrupted regexp program");
2046 }
2047
2048 PL_reg_flags = 0;
2049 PL_reg_eval_set = 0;
2050 PL_reg_maxiter = 0;
2051
3c8556c3 2052 if (RX_UTF8(rx))
6eb5f6b9
JH
2053 PL_reg_flags |= RF_utf8;
2054
2055 /* Mark beginning of line for ^ and lookbehind. */
3b0527fe 2056 reginfo.bol = startpos; /* XXX not used ??? */
6eb5f6b9 2057 PL_bostr = strbeg;
3b0527fe 2058 reginfo.sv = sv;
6eb5f6b9
JH
2059
2060 /* Mark end of line for $ (and such) */
2061 PL_regeol = strend;
2062
2063 /* see how far we have to get to not match where we matched before */
3b0527fe 2064 reginfo.till = startpos+minend;
6eb5f6b9 2065
6eb5f6b9
JH
2066 /* If there is a "must appear" string, look for it. */
2067 s = startpos;
2068
bbe252da 2069 if (prog->extflags & RXf_GPOS_SEEN) { /* Need to set reginfo->ganch */
6eb5f6b9 2070 MAGIC *mg;
2c296965 2071 if (flags & REXEC_IGNOREPOS){ /* Means: check only at start */
58e23c8d 2072 reginfo.ganch = startpos + prog->gofs;
2c296965 2073 DEBUG_GPOS_r(PerlIO_printf(Perl_debug_log,
ed549f2e 2074 "GPOS IGNOREPOS: reginfo.ganch = startpos + %"UVxf"\n",(UV)prog->gofs));
2c296965 2075 } else if (sv && SvTYPE(sv) >= SVt_PVMG
6eb5f6b9 2076 && SvMAGIC(sv)
14befaf4
DM
2077 && (mg = mg_find(sv, PERL_MAGIC_regex_global))
2078 && mg->mg_len >= 0) {
3b0527fe 2079 reginfo.ganch = strbeg + mg->mg_len; /* Defined pos() */
2c296965 2080 DEBUG_GPOS_r(PerlIO_printf(Perl_debug_log,
ed549f2e 2081 "GPOS MAGIC: reginfo.ganch = strbeg + %"IVdf"\n",(IV)mg->mg_len));
2c296965 2082
bbe252da 2083 if (prog->extflags & RXf_ANCH_GPOS) {
3b0527fe 2084 if (s > reginfo.ganch)
6eb5f6b9 2085 goto phooey;
58e23c8d 2086 s = reginfo.ganch - prog->gofs;
2c296965 2087 DEBUG_GPOS_r(PerlIO_printf(Perl_debug_log,
ed549f2e 2088 "GPOS ANCH_GPOS: s = ganch - %"UVxf"\n",(UV)prog->gofs));
c584a96e
YO
2089 if (s < strbeg)
2090 goto phooey;
6eb5f6b9
JH
2091 }
2092 }
58e23c8d 2093 else if (data) {
70685ca0 2094 reginfo.ganch = strbeg + PTR2UV(data);
2c296965
YO
2095 DEBUG_GPOS_r(PerlIO_printf(Perl_debug_log,
2096 "GPOS DATA: reginfo.ganch= strbeg + %"UVxf"\n",PTR2UV(data)));
2097
2098 } else { /* pos() not defined */
3b0527fe 2099 reginfo.ganch = strbeg;
2c296965
YO
2100 DEBUG_GPOS_r(PerlIO_printf(Perl_debug_log,
2101 "GPOS: reginfo.ganch = strbeg\n"));
2102 }
6eb5f6b9 2103 }
288b8c02 2104 if (PL_curpm && (PM_GETRE(PL_curpm) == rx)) {
e9105d30
GG
2105 /* We have to be careful. If the previous successful match
2106 was from this regex we don't want a subsequent partially
2107 successful match to clobber the old results.
2108 So when we detect this possibility we add a swap buffer
2109 to the re, and switch the buffer each match. If we fail
2110 we switch it back, otherwise we leave it swapped.
2111 */
2112 swap = prog->offs;
2113 /* do we need a save destructor here for eval dies? */
2114 Newxz(prog->offs, (prog->nparens + 1), regexp_paren_pair);
c74340f9 2115 }
a0714e2c 2116 if (!(flags & REXEC_CHECKED) && (prog->check_substr != NULL || prog->check_utf8 != NULL)) {
6eb5f6b9
JH
2117 re_scream_pos_data d;
2118
2119 d.scream_olds = &scream_olds;
2120 d.scream_pos = &scream_pos;
288b8c02 2121 s = re_intuit_start(rx, sv, s, strend, flags, &d);
3fa9c3d7 2122 if (!s) {
a3621e74 2123 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Not present...\n"));
6eb5f6b9 2124 goto phooey; /* not present */
3fa9c3d7 2125 }
6eb5f6b9
JH
2126 }
2127
1de06328 2128
6eb5f6b9
JH
2129
2130 /* Simplest case: anchored match need be tried only once. */
2131 /* [unless only anchor is BOL and multiline is set] */
bbe252da 2132 if (prog->extflags & (RXf_ANCH & ~RXf_ANCH_GPOS)) {
24b23f37 2133 if (s == startpos && regtry(&reginfo, &startpos))
6eb5f6b9 2134 goto got_it;
bbe252da
YO
2135 else if (multiline || (prog->intflags & PREGf_IMPLICIT)
2136 || (prog->extflags & RXf_ANCH_MBOL)) /* XXXX SBOL? */
6eb5f6b9
JH
2137 {
2138 char *end;
2139
2140 if (minlen)
2141 dontbother = minlen - 1;
1aa99e6b 2142 end = HOP3c(strend, -dontbother, strbeg) - 1;
6eb5f6b9 2143 /* for multiline we only have to try after newlines */
33b8afdf 2144 if (prog->check_substr || prog->check_utf8) {
92f3d482
YO
2145 /* because of the goto we can not easily reuse the macros for bifurcating the
2146 unicode/non-unicode match modes here like we do elsewhere - demerphq */
2147 if (utf8_target) {
2148 if (s == startpos)
2149 goto after_try_utf8;
2150 while (1) {
2151 if (regtry(&reginfo, &s)) {
2152 goto got_it;
2153 }
2154 after_try_utf8:
2155 if (s > end) {
2156 goto phooey;
2157 }
2158 if (prog->extflags & RXf_USE_INTUIT) {
2159 s = re_intuit_start(rx, sv, s + UTF8SKIP(s), strend, flags, NULL);
2160 if (!s) {
2161 goto phooey;
2162 }
2163 }
2164 else {
2165 s += UTF8SKIP(s);
2166 }
2167 }
2168 } /* end search for check string in unicode */
2169 else {
2170 if (s == startpos) {
2171 goto after_try_latin;
2172 }
2173 while (1) {
2174 if (regtry(&reginfo, &s)) {
2175 goto got_it;
2176 }
2177 after_try_latin:
2178 if (s > end) {
2179 goto phooey;
2180 }
2181 if (prog->extflags & RXf_USE_INTUIT) {
2182 s = re_intuit_start(rx, sv, s + 1, strend, flags, NULL);
2183 if (!s) {
2184 goto phooey;
2185 }
2186 }
2187 else {
2188 s++;
2189 }
2190 }
2191 } /* end search for check string in latin*/
2192 } /* end search for check string */
2193 else { /* search for newline */
2194 if (s > startpos) {
2195 /*XXX: The s-- is almost definitely wrong here under unicode - demeprhq*/
6eb5f6b9 2196 s--;
92f3d482
YO
2197 }
2198 /* We can use a more efficient search as newlines are the same in unicode as they are in latin */
6eb5f6b9
JH
2199 while (s < end) {
2200 if (*s++ == '\n') { /* don't need PL_utf8skip here */
24b23f37 2201 if (regtry(&reginfo, &s))
6eb5f6b9
JH
2202 goto got_it;
2203 }
92f3d482
YO
2204 }
2205 } /* end search for newline */
2206 } /* end anchored/multiline check string search */
6eb5f6b9 2207 goto phooey;
bbe252da 2208 } else if (RXf_GPOS_CHECK == (prog->extflags & RXf_GPOS_CHECK))
f9f4320a 2209 {
486ec47a 2210 /* the warning about reginfo.ganch being used without initialization
bbe252da 2211 is bogus -- we set it above, when prog->extflags & RXf_GPOS_SEEN
f9f4320a 2212 and we only enter this block when the same bit is set. */
58e23c8d 2213 char *tmp_s = reginfo.ganch - prog->gofs;
c584a96e
YO
2214
2215 if (tmp_s >= strbeg && regtry(&reginfo, &tmp_s))
6eb5f6b9
JH
2216 goto got_it;
2217 goto phooey;
2218 }
2219
2220 /* Messy cases: unanchored match. */
bbe252da 2221 if ((prog->anchored_substr || prog->anchored_utf8) && prog->intflags & PREGf_SKIP) {
6eb5f6b9 2222 /* we have /x+whatever/ */
f2ed9b32 2223 /* it must be a one character string (XXXX Except UTF_PATTERN?) */
33b8afdf 2224 char ch;
bf93d4cc
GS
2225#ifdef DEBUGGING
2226 int did_match = 0;
2227#endif
f2ed9b32
KW
2228 if (!(utf8_target ? prog->anchored_utf8 : prog->anchored_substr))
2229 utf8_target ? to_utf8_substr(prog) : to_byte_substr(prog);
2230 ch = SvPVX_const(utf8_target ? prog->anchored_utf8 : prog->anchored_substr)[0];
bf93d4cc 2231
f2ed9b32 2232 if (utf8_target) {
4cadc6a9 2233 REXEC_FBC_SCAN(
6eb5f6b9 2234 if (*s == ch) {
a3621e74 2235 DEBUG_EXECUTE_r( did_match = 1 );
24b23f37 2236 if (regtry(&reginfo, &s)) goto got_it;
6eb5f6b9
JH
2237 s += UTF8SKIP(s);
2238 while (s < strend && *s == ch)
2239 s += UTF8SKIP(s);
2240 }
4cadc6a9 2241 );
6eb5f6b9
JH
2242 }
2243 else {
4cadc6a9 2244 REXEC_FBC_SCAN(
6eb5f6b9 2245 if (*s == ch) {
a3621e74 2246 DEBUG_EXECUTE_r( did_match = 1 );
24b23f37 2247 if (regtry(&reginfo, &s)) goto got_it;
6eb5f6b9
JH
2248 s++;
2249 while (s < strend && *s == ch)
2250 s++;
2251 }
4cadc6a9 2252 );
6eb5f6b9 2253 }
a3621e74 2254 DEBUG_EXECUTE_r(if (!did_match)
bf93d4cc 2255 PerlIO_printf(Perl_debug_log,
b7953727
JH
2256 "Did not find anchored character...\n")
2257 );
6eb5f6b9 2258 }
a0714e2c
SS
2259 else if (prog->anchored_substr != NULL
2260 || prog->anchored_utf8 != NULL
2261 || ((prog->float_substr != NULL || prog->float_utf8 != NULL)
33b8afdf
JH
2262 && prog->float_max_offset < strend - s)) {
2263 SV *must;
2264 I32 back_max;
2265 I32 back_min;
2266 char *last;
6eb5f6b9 2267 char *last1; /* Last position checked before */
bf93d4cc
GS
2268#ifdef DEBUGGING
2269 int did_match = 0;
2270#endif
33b8afdf 2271 if (prog->anchored_substr || prog->anchored_utf8) {
f2ed9b32
KW
2272 if (!(utf8_target ? prog->anchored_utf8 : prog->anchored_substr))
2273 utf8_target ? to_utf8_substr(prog) : to_byte_substr(prog);
2274 must = utf8_target ? prog->anchored_utf8 : prog->anchored_substr;
33b8afdf
JH
2275 back_max = back_min = prog->anchored_offset;
2276 } else {
f2ed9b32
KW
2277 if (!(utf8_target ? prog->float_utf8 : prog->float_substr))
2278 utf8_target ? to_utf8_substr(prog) : to_byte_substr(prog);
2279 must = utf8_target ? prog->float_utf8 : prog->float_substr;
33b8afdf
JH
2280 back_max = prog->float_max_offset;
2281 back_min = prog->float_min_offset;
2282 }
1de06328
YO
2283
2284
33b8afdf
JH
2285 if (must == &PL_sv_undef)
2286 /* could not downgrade utf8 check substring, so must fail */
2287 goto phooey;
2288
1de06328
YO
2289 if (back_min<0) {
2290 last = strend;
2291 } else {
2292 last = HOP3c(strend, /* Cannot start after this */
2293 -(I32)(CHR_SVLEN(must)
2294 - (SvTAIL(must) != 0) + back_min), strbeg);
2295 }
6eb5f6b9
JH
2296 if (s > PL_bostr)
2297 last1 = HOPc(s, -1);
2298 else
2299 last1 = s - 1; /* bogus */
2300
a0288114 2301 /* XXXX check_substr already used to find "s", can optimize if
6eb5f6b9
JH
2302 check_substr==must. */
2303 scream_pos = -1;
2304 dontbother = end_shift;
2305 strend = HOPc(strend, -dontbother);
2306 while ( (s <= last) &&
f1905e1b 2307 ((flags & REXEC_SCREAM) && SvSCREAM(sv)
1de06328 2308 ? (s = screaminstr(sv, must, HOP3c(s, back_min, (back_min<0 ? strbeg : strend)) - strbeg,
6eb5f6b9 2309 end_shift, &scream_pos, 0))
1de06328 2310 : (s = fbm_instr((unsigned char*)HOP3(s, back_min, (back_min<0 ? strbeg : strend)),
9041c2e3 2311 (unsigned char*)strend, must,
7fba1cd6 2312 multiline ? FBMrf_MULTILINE : 0))) ) {
4addbd3b 2313 /* we may be pointing at the wrong string */
07bc277f 2314 if ((flags & REXEC_SCREAM) && RXp_MATCH_COPIED(prog))
3f7c398e 2315 s = strbeg + (s - SvPVX_const(sv));
a3621e74 2316 DEBUG_EXECUTE_r( did_match = 1 );
6eb5f6b9
JH
2317 if (HOPc(s, -back_max) > last1) {
2318 last1 = HOPc(s, -back_min);
2319 s = HOPc(s, -back_max);
2320 }
2321 else {
52657f30 2322 char * const t = (last1 >= PL_bostr) ? HOPc(last1, 1) : last1 + 1;
6eb5f6b9
JH
2323
2324 last1 = HOPc(s, -back_min);
52657f30 2325 s = t;
6eb5f6b9 2326 }
f2ed9b32 2327 if (utf8_target) {
6eb5f6b9 2328 while (s <= last1) {
24b23f37 2329 if (regtry(&reginfo, &s))
6eb5f6b9
JH
2330 goto got_it;
2331 s += UTF8SKIP(s);
2332 }
2333 }
2334 else {
2335 while (s <= last1) {
24b23f37 2336 if (regtry(&reginfo, &s))
6eb5f6b9
JH
2337 goto got_it;
2338 s++;
2339 }
2340 }
2341 }
ab3bbdeb 2342 DEBUG_EXECUTE_r(if (!did_match) {
f2ed9b32 2343 RE_PV_QUOTED_DECL(quoted, utf8_target, PERL_DEBUG_PAD_ZERO(0),
ab3bbdeb
YO
2344 SvPVX_const(must), RE_SV_DUMPLEN(must), 30);
2345 PerlIO_printf(Perl_debug_log, "Did not find %s substr %s%s...\n",
33b8afdf 2346 ((must == prog->anchored_substr || must == prog->anchored_utf8)
bf93d4cc 2347 ? "anchored" : "floating"),
ab3bbdeb
YO
2348 quoted, RE_SV_TAIL(must));
2349 });
6eb5f6b9
JH
2350 goto phooey;
2351 }
f8fc2ecf 2352 else if ( (c = progi->regstclass) ) {
f14c76ed 2353 if (minlen) {
f8fc2ecf 2354 const OPCODE op = OP(progi->regstclass);
66e933ab 2355 /* don't bother with what can't match */
786e8c11 2356 if (PL_regkind[op] != EXACT && op != CANY && PL_regkind[op] != TRIE)
f14c76ed
RGS
2357 strend = HOPc(strend, -(minlen - 1));
2358 }
a3621e74 2359 DEBUG_EXECUTE_r({
be8e71aa 2360 SV * const prop = sv_newmortal();
32fc9b6a 2361 regprop(prog, prop, c);
0df25f3d 2362 {
f2ed9b32 2363 RE_PV_QUOTED_DECL(quoted,utf8_target,PERL_DEBUG_PAD_ZERO(1),
ab3bbdeb 2364 s,strend-s,60);
0df25f3d 2365 PerlIO_printf(Perl_debug_log,
1c8f8eb1 2366 "Matching stclass %.*s against %s (%d bytes)\n",
e4f74956 2367 (int)SvCUR(prop), SvPVX_const(prop),
ab3bbdeb 2368 quoted, (int)(strend - s));
0df25f3d 2369 }
ffc61ed2 2370 });
3b0527fe 2371 if (find_byclass(prog, c, s, strend, &reginfo))
6eb5f6b9 2372 goto got_it;
07be1b83 2373 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Contradicts stclass... [regexec_flags]\n"));
d6a28714
JH
2374 }
2375 else {
2376 dontbother = 0;
a0714e2c 2377 if (prog->float_substr != NULL || prog->float_utf8 != NULL) {
33b8afdf 2378 /* Trim the end. */
d6a28714 2379 char *last;
33b8afdf
JH
2380 SV* float_real;
2381
f2ed9b32
KW
2382 if (!(utf8_target ? prog->float_utf8 : prog->float_substr))
2383 utf8_target ? to_utf8_substr(prog) : to_byte_substr(prog);
2384 float_real = utf8_target ? prog->float_utf8 : prog->float_substr;
d6a28714 2385
f1905e1b 2386 if ((flags & REXEC_SCREAM) && SvSCREAM(sv)) {
33b8afdf 2387 last = screaminstr(sv, float_real, s - strbeg,
d6a28714
JH
2388 end_shift, &scream_pos, 1); /* last one */
2389 if (!last)
ffc61ed2 2390 last = scream_olds; /* Only one occurrence. */
4addbd3b 2391 /* we may be pointing at the wrong string */
07bc277f 2392 else if (RXp_MATCH_COPIED(prog))
3f7c398e 2393 s = strbeg + (s - SvPVX_const(sv));
b8c5462f 2394 }
d6a28714
JH
2395 else {
2396 STRLEN len;
cfd0369c 2397 const char * const little = SvPV_const(float_real, len);
d6a28714 2398
33b8afdf 2399 if (SvTAIL(float_real)) {
d6a28714
JH
2400 if (memEQ(strend - len + 1, little, len - 1))
2401 last = strend - len + 1;
7fba1cd6 2402 else if (!multiline)
9041c2e3 2403 last = memEQ(strend - len, little, len)
bd61b366 2404 ? strend - len : NULL;
b8c5462f 2405 else
d6a28714
JH
2406 goto find_last;
2407 } else {
2408 find_last:
9041c2e3 2409 if (len)
d6a28714 2410 last = rninstr(s, strend, little, little + len);
b8c5462f 2411 else
a0288114 2412 last = strend; /* matching "$" */
b8c5462f 2413 }
b8c5462f 2414 }
bf93d4cc 2415 if (last == NULL) {
6bda09f9
YO
2416 DEBUG_EXECUTE_r(
2417 PerlIO_printf(Perl_debug_log,
2418 "%sCan't trim the tail, match fails (should not happen)%s\n",
2419 PL_colors[4], PL_colors[5]));
bf93d4cc
GS
2420 goto phooey; /* Should not happen! */
2421 }
d6a28714
JH
2422 dontbother = strend - last + prog->float_min_offset;
2423 }
2424 if (minlen && (dontbother < minlen))
2425 dontbother = minlen - 1;
2426 strend -= dontbother; /* this one's always in bytes! */
2427 /* We don't know much -- general case. */
f2ed9b32 2428 if (utf8_target) {
d6a28714 2429 for (;;) {
24b23f37 2430 if (regtry(&reginfo, &s))
d6a28714
JH
2431 goto got_it;
2432 if (s >= strend)
2433 break;
b8c5462f 2434 s += UTF8SKIP(s);
d6a28714
JH
2435 };
2436 }
2437 else {
2438 do {
24b23f37 2439 if (regtry(&reginfo, &s))
d6a28714
JH
2440 goto got_it;
2441 } while (s++ < strend);
2442 }
2443 }
2444
2445 /* Failure. */
2446 goto phooey;
2447
2448got_it:
e9105d30 2449 Safefree(swap);
288b8c02 2450 RX_MATCH_TAINTED_set(rx, PL_reg_flags & RF_tainted);
d6a28714 2451
19b95bf0 2452 if (PL_reg_eval_set)
4f639d21 2453 restore_pos(aTHX_ prog);
5daac39c
NC
2454 if (RXp_PAREN_NAMES(prog))
2455 (void)hv_iterinit(RXp_PAREN_NAMES(prog));
d6a28714
JH
2456
2457 /* make sure $`, $&, $', and $digit will work later */
2458 if ( !(flags & REXEC_NOT_FIRST) ) {
288b8c02 2459 RX_MATCH_COPY_FREE(rx);
d6a28714 2460 if (flags & REXEC_COPY_STR) {
be8e71aa 2461 const I32 i = PL_regeol - startpos + (stringarg - strbeg);
f8c7b90f 2462#ifdef PERL_OLD_COPY_ON_WRITE
ed252734
NC
2463 if ((SvIsCOW(sv)
2464 || (SvFLAGS(sv) & CAN_COW_MASK) == CAN_COW_FLAGS)) {
2465 if (DEBUG_C_TEST) {
2466 PerlIO_printf(Perl_debug_log,
2467 "Copy on write: regexp capture, type %d\n",
2468 (int) SvTYPE(sv));
2469 }
2470 prog->saved_copy = sv_setsv_cow(prog->saved_copy, sv);
d5263905 2471 prog->subbeg = (char *)SvPVX_const(prog->saved_copy);
ed252734
NC
2472 assert (SvPOKp(prog->saved_copy));
2473 } else
2474#endif
2475 {
288b8c02 2476 RX_MATCH_COPIED_on(rx);
ed252734
NC
2477 s = savepvn(strbeg, i);
2478 prog->subbeg = s;
2479 }
d6a28714 2480 prog->sublen = i;
d6a28714
JH
2481 }
2482 else {
2483 prog->subbeg = strbeg;
2484 prog->sublen = PL_regeol - strbeg; /* strend may have been modified */
2485 }
2486 }
9041c2e3 2487
d6a28714
JH
2488 return 1;
2489
2490phooey:
a3621e74 2491 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%sMatch failed%s\n",
e4584336 2492 PL_colors[4], PL_colors[5]));
d6a28714 2493 if (PL_reg_eval_set)
4f639d21 2494 restore_pos(aTHX_ prog);
e9105d30 2495 if (swap) {
c74340f9 2496 /* we failed :-( roll it back */
e9105d30
GG
2497 Safefree(prog->offs);
2498 prog->offs = swap;
2499 }
2500
d6a28714
JH
2501 return 0;
2502}
2503
6bda09f9 2504
d6a28714
JH
2505/*
2506 - regtry - try match at specific point
2507 */
2508STATIC I32 /* 0 failure, 1 success */
24b23f37 2509S_regtry(pTHX_ regmatch_info *reginfo, char **startpos)
d6a28714 2510{
97aff369 2511 dVAR;
d6a28714 2512 CHECKPOINT lastcp;
288b8c02
NC
2513 REGEXP *const rx = reginfo->prog;
2514 regexp *const prog = (struct regexp *)SvANY(rx);
f8fc2ecf 2515 RXi_GET_DECL(prog,progi);
a3621e74 2516 GET_RE_DEBUG_FLAGS_DECL;
7918f24d
NC
2517
2518 PERL_ARGS_ASSERT_REGTRY;
2519
24b23f37 2520 reginfo->cutpoint=NULL;
d6a28714 2521
bbe252da 2522 if ((prog->extflags & RXf_EVAL_SEEN) && !PL_reg_eval_set) {
d6a28714
JH
2523 MAGIC *mg;
2524
2525 PL_reg_eval_set = RS_init;
a3621e74 2526 DEBUG_EXECUTE_r(DEBUG_s(
b900a521
JH
2527 PerlIO_printf(Perl_debug_log, " setting stack tmpbase at %"IVdf"\n",
2528 (IV)(PL_stack_sp - PL_stack_base));
d6a28714 2529 ));
ea8d6ae1 2530 SAVESTACK_CXPOS();
d6a28714
JH
2531 cxstack[cxstack_ix].blk_oldsp = PL_stack_sp - PL_stack_base;
2532 /* Otherwise OP_NEXTSTATE will free whatever on stack now. */
2533 SAVETMPS;
2534 /* Apparently this is not needed, judging by wantarray. */
e8347627 2535 /* SAVEI8(cxstack[cxstack_ix].blk_gimme);
d6a28714
JH
2536 cxstack[cxstack_ix].blk_gimme = G_SCALAR; */
2537
3b0527fe 2538 if (reginfo->sv) {
d6a28714 2539 /* Make $_ available to executed code. */
3b0527fe 2540 if (reginfo->sv != DEFSV) {
59f00321 2541 SAVE_DEFSV;
414bf5ae 2542 DEFSV_set(reginfo->sv);
b8c5462f 2543 }
d6a28714 2544
3b0527fe
DM
2545 if (!(SvTYPE(reginfo->sv) >= SVt_PVMG && SvMAGIC(reginfo->sv)
2546 && (mg = mg_find(reginfo->sv, PERL_MAGIC_regex_global)))) {
d6a28714 2547 /* prepare for quick setting of pos */
d300d9fa 2548#ifdef PERL_OLD_COPY_ON_WRITE
51a9ea20
NC
2549 if (SvIsCOW(reginfo->sv))
2550 sv_force_normal_flags(reginfo->sv, 0);
d300d9fa 2551#endif
3dab1dad 2552 mg = sv_magicext(reginfo->sv, NULL, PERL_MAGIC_regex_global,
d300d9fa 2553 &PL_vtbl_mglob, NULL, 0);
d6a28714 2554 mg->mg_len = -1;
b8c5462f 2555 }
d6a28714
JH
2556 PL_reg_magic = mg;
2557 PL_reg_oldpos = mg->mg_len;
4f639d21 2558 SAVEDESTRUCTOR_X(restore_pos, prog);
d6a28714 2559 }
09687e5a 2560 if (!PL_reg_curpm) {
a02a5408 2561 Newxz(PL_reg_curpm, 1, PMOP);
09687e5a
AB
2562#ifdef USE_ITHREADS
2563 {
14a49a24 2564 SV* const repointer = &PL_sv_undef;
92313705
NC
2565 /* this regexp is also owned by the new PL_reg_curpm, which
2566 will try to free it. */
d2ece331 2567 av_push(PL_regex_padav, repointer);
09687e5a
AB
2568 PL_reg_curpm->op_pmoffset = av_len(PL_regex_padav);
2569 PL_regex_pad = AvARRAY(PL_regex_padav);
2570 }
2571#endif
2572 }
86c29d75
NC
2573#ifdef USE_ITHREADS
2574 /* It seems that non-ithreads works both with and without this code.
2575 So for efficiency reasons it seems best not to have the code
2576 compiled when it is not needed. */
92313705
NC
2577 /* This is safe against NULLs: */
2578 ReREFCNT_dec(PM_GETRE(PL_reg_curpm));
2579 /* PM_reg_curpm owns a reference to this regexp. */
cd733337 2580 (void)ReREFCNT_inc(rx);
86c29d75 2581#endif
288b8c02 2582 PM_SETRE(PL_reg_curpm, rx);
d6a28714
JH
2583 PL_reg_oldcurpm = PL_curpm;
2584 PL_curpm = PL_reg_curpm;
07bc277f 2585 if (RXp_MATCH_COPIED(prog)) {
d6a28714
JH
2586 /* Here is a serious problem: we cannot rewrite subbeg,
2587 since it may be needed if this match fails. Thus
2588 $` inside (?{}) could fail... */
2589 PL_reg_oldsaved = prog->subbeg;
2590 PL_reg_oldsavedlen = prog->sublen;
f8c7b90f 2591#ifdef PERL_OLD_COPY_ON_WRITE
ed252734
NC
2592 PL_nrs = prog->saved_copy;
2593#endif
07bc277f 2594 RXp_MATCH_COPIED_off(prog);
d6a28714
JH
2595 }
2596 else
bd61b366 2597 PL_reg_oldsaved = NULL;
d6a28714
JH
2598 prog->subbeg = PL_bostr;
2599 prog->sublen = PL_regeol - PL_bostr; /* strend may have been modified */
2600 }
24b23f37 2601 DEBUG_EXECUTE_r(PL_reg_starttry = *startpos);
f0ab9afb 2602 prog->offs[0].start = *startpos - PL_bostr;
24b23f37 2603 PL_reginput = *startpos;
d6a28714 2604 PL_reglastparen = &prog->lastparen;
a01268b5 2605 PL_reglastcloseparen = &prog->lastcloseparen;
d6a28714 2606 prog->lastparen = 0;
03994de8 2607 prog->lastcloseparen = 0;
d6a28714 2608 PL_regsize = 0;
f0ab9afb 2609 PL_regoffs = prog->offs;
d6a28714
JH
2610 if (PL_reg_start_tmpl <= prog->nparens) {
2611 PL_reg_start_tmpl = prog->nparens*3/2 + 3;
2612 if(PL_reg_start_tmp)
2613 Renew(PL_reg_start_tmp, PL_reg_start_tmpl, char*);
2614 else
a02a5408 2615 Newx(PL_reg_start_tmp, PL_reg_start_tmpl, char*);
d6a28714
JH
2616 }
2617
2618 /* XXXX What this code is doing here?!!! There should be no need
2619 to do this again and again, PL_reglastparen should take care of
3dd2943c 2620 this! --ilya*/
dafc8851
JH
2621
2622 /* Tests pat.t#187 and split.t#{13,14} seem to depend on this code.
2623 * Actually, the code in regcppop() (which Ilya may be meaning by
daf18116 2624 * PL_reglastparen), is not needed at all by the test suite
225593e1
DM
2625 * (op/regexp, op/pat, op/split), but that code is needed otherwise
2626 * this erroneously leaves $1 defined: "1" =~ /^(?:(\d)x)?\d$/
2627 * Meanwhile, this code *is* needed for the
daf18116
JH
2628 * above-mentioned test suite tests to succeed. The common theme
2629 * on those tests seems to be returning null fields from matches.
225593e1 2630 * --jhi updated by dapm */
dafc8851 2631#if 1
d6a28714 2632 if (prog->nparens) {
f0ab9afb 2633 regexp_paren_pair *pp = PL_regoffs;
097eb12c 2634 register I32 i;
eb160463 2635 for (i = prog->nparens; i > (I32)*PL_reglastparen; i--) {
f0ab9afb
NC
2636 ++pp;
2637 pp->start = -1;
2638 pp->end = -1;
d6a28714
JH
2639 }
2640 }
dafc8851 2641#endif
02db2b7b 2642 REGCP_SET(lastcp);
f8fc2ecf 2643 if (regmatch(reginfo, progi->program + 1)) {
f0ab9afb 2644 PL_regoffs[0].end = PL_reginput - PL_bostr;
d6a28714
JH
2645 return 1;
2646 }
24b23f37
YO
2647 if (reginfo->cutpoint)
2648 *startpos= reginfo->cutpoint;
02db2b7b 2649 REGCP_UNWIND(lastcp);
d6a28714
JH
2650 return 0;
2651}
2652
02db2b7b 2653
8ba1375e
MJD
2654#define sayYES goto yes
2655#define sayNO goto no
262b90c4 2656#define sayNO_SILENT goto no_silent
8ba1375e 2657
f9f4320a
YO
2658/* we dont use STMT_START/END here because it leads to
2659 "unreachable code" warnings, which are bogus, but distracting. */
2660#define CACHEsayNO \
c476f425
DM
2661 if (ST.cache_mask) \
2662 PL_reg_poscache[ST.cache_offset] |= ST.cache_mask; \
f9f4320a 2663 sayNO
3298f257 2664
a3621e74 2665/* this is used to determine how far from the left messages like
265c4333
YO
2666 'failed...' are printed. It should be set such that messages
2667 are inline with the regop output that created them.
a3621e74 2668*/
265c4333 2669#define REPORT_CODE_OFF 32
a3621e74
YO
2670
2671
40a82448
DM
2672#define CHRTEST_UNINIT -1001 /* c1/c2 haven't been calculated yet */
2673#define CHRTEST_VOID -1000 /* the c1/c2 "next char" test should be skipped */
9e137952 2674
86545054
DM
2675#define SLAB_FIRST(s) (&(s)->states[0])
2676#define SLAB_LAST(s) (&(s)->states[PERL_REGMATCH_SLAB_SLOTS-1])
2677
5d9a96ca
DM
2678/* grab a new slab and return the first slot in it */
2679
2680STATIC regmatch_state *
2681S_push_slab(pTHX)
2682{
a35a87e7 2683#if PERL_VERSION < 9 && !defined(PERL_CORE)
54df2634
NC
2684 dMY_CXT;
2685#endif
5d9a96ca
DM
2686 regmatch_slab *s = PL_regmatch_slab->next;
2687 if (!s) {
2688 Newx(s, 1, regmatch_slab);
2689 s->prev = PL_regmatch_slab;
2690 s->next = NULL;
2691 PL_regmatch_slab->next = s;
2692 }
2693 PL_regmatch_slab = s;
86545054 2694 return SLAB_FIRST(s);
5d9a96ca 2695}
5b47454d 2696
95b24440 2697
40a82448
DM
2698/* push a new state then goto it */
2699
2700#define PUSH_STATE_GOTO(state, node) \
2701 scan = node; \
2702 st->resume_state = state; \
2703 goto push_state;
2704
2705/* push a new state with success backtracking, then goto it */
2706
2707#define PUSH_YES_STATE_GOTO(state, node) \
2708 scan = node; \
2709 st->resume_state = state; \
2710 goto push_yes_state;
2711
aa283a38 2712
aa283a38 2713
d6a28714 2714/*
95b24440 2715
bf1f174e
DM
2716regmatch() - main matching routine
2717
2718This is basically one big switch statement in a loop. We execute an op,
2719set 'next' to point the next op, and continue. If we come to a point which
2720we may need to backtrack to on failure such as (A|B|C), we push a
2721backtrack state onto the backtrack stack. On failure, we pop the top
2722state, and re-enter the loop at the state indicated. If there are no more
2723states to pop, we return failure.
2724
2725Sometimes we also need to backtrack on success; for example /A+/, where
2726after successfully matching one A, we need to go back and try to
2727match another one; similarly for lookahead assertions: if the assertion
2728completes successfully, we backtrack to the state just before the assertion
2729and then carry on. In these cases, the pushed state is marked as
2730'backtrack on success too'. This marking is in fact done by a chain of
2731pointers, each pointing to the previous 'yes' state. On success, we pop to
2732the nearest yes state, discarding any intermediate failure-only states.
2733Sometimes a yes state is pushed just to force some cleanup code to be
2734called at the end of a successful match or submatch; e.g. (??{$re}) uses
2735it to free the inner regex.
2736
2737Note that failure backtracking rewinds the cursor position, while
2738success backtracking leaves it alone.
2739
2740A pattern is complete when the END op is executed, while a subpattern
2741such as (?=foo) is complete when the SUCCESS op is executed. Both of these
2742ops trigger the "pop to last yes state if any, otherwise return true"
2743behaviour.
2744
2745A common convention in this function is to use A and B to refer to the two
2746subpatterns (or to the first nodes thereof) in patterns like /A*B/: so A is
2747the subpattern to be matched possibly multiple times, while B is the entire
2748rest of the pattern. Variable and state names reflect this convention.
2749
2750The states in the main switch are the union of ops and failure/success of
2751substates associated with with that op. For example, IFMATCH is the op
2752that does lookahead assertions /(?=A)B/ and so the IFMATCH state means
2753'execute IFMATCH'; while IFMATCH_A is a state saying that we have just
2754successfully matched A and IFMATCH_A_fail is a state saying that we have
2755just failed to match A. Resume states always come in pairs. The backtrack
2756state we push is marked as 'IFMATCH_A', but when that is popped, we resume
2757at IFMATCH_A or IFMATCH_A_fail, depending on whether we are backtracking
2758on success or failure.
2759
2760The struct that holds a backtracking state is actually a big union, with
2761one variant for each major type of op. The variable st points to the
2762top-most backtrack struct. To make the code clearer, within each
2763block of code we #define ST to alias the relevant union.
2764
2765Here's a concrete example of a (vastly oversimplified) IFMATCH
2766implementation:
2767
2768 switch (state) {
2769 ....
2770
2771#define ST st->u.ifmatch
2772
2773 case IFMATCH: // we are executing the IFMATCH op, (?=A)B
2774 ST.foo = ...; // some state we wish to save
95b24440 2775 ...
bf1f174e
DM
2776 // push a yes backtrack state with a resume value of
2777 // IFMATCH_A/IFMATCH_A_fail, then continue execution at the
2778 // first node of A:
2779 PUSH_YES_STATE_GOTO(IFMATCH_A, A);
2780 // NOTREACHED
2781
2782 case IFMATCH_A: // we have successfully executed A; now continue with B
2783 next = B;
2784 bar = ST.foo; // do something with the preserved value
2785 break;
2786
2787 case IFMATCH_A_fail: // A failed, so the assertion failed
2788 ...; // do some housekeeping, then ...
2789 sayNO; // propagate the failure
2790
2791#undef ST
95b24440 2792
bf1f174e
DM
2793 ...
2794 }
95b24440 2795
bf1f174e
DM
2796For any old-timers reading this who are familiar with the old recursive
2797approach, the code above is equivalent to:
95b24440 2798
bf1f174e
DM
2799 case IFMATCH: // we are executing the IFMATCH op, (?=A)B
2800 {
2801 int foo = ...
95b24440 2802 ...
bf1f174e
DM
2803 if (regmatch(A)) {
2804 next = B;
2805 bar = foo;
2806 break;
95b24440 2807 }
bf1f174e
DM
2808 ...; // do some housekeeping, then ...
2809 sayNO; // propagate the failure
95b24440 2810 }
bf1f174e
DM
2811
2812The topmost backtrack state, pointed to by st, is usually free. If you
2813want to claim it, populate any ST.foo fields in it with values you wish to
2814save, then do one of
2815
2816 PUSH_STATE_GOTO(resume_state, node);
2817 PUSH_YES_STATE_GOTO(resume_state, node);
2818
2819which sets that backtrack state's resume value to 'resume_state', pushes a
2820new free entry to the top of the backtrack stack, then goes to 'node'.
2821On backtracking, the free slot is popped, and the saved state becomes the
2822new free state. An ST.foo field in this new top state can be temporarily
2823accessed to retrieve values, but once the main loop is re-entered, it
2824becomes available for reuse.
2825
2826Note that the depth of the backtrack stack constantly increases during the
2827left-to-right execution of the pattern, rather than going up and down with
2828the pattern nesting. For example the stack is at its maximum at Z at the
2829end of the pattern, rather than at X in the following:
2830
2831 /(((X)+)+)+....(Y)+....Z/
2832
2833The only exceptions to this are lookahead/behind assertions and the cut,
2834(?>A), which pop all the backtrack states associated with A before
2835continuing.
2836
486ec47a 2837Backtrack state structs are allocated in slabs of about 4K in size.
bf1f174e
DM
2838PL_regmatch_state and st always point to the currently active state,
2839and PL_regmatch_slab points to the slab currently containing
2840PL_regmatch_state. The first time regmatch() is called, the first slab is
2841allocated, and is never freed until interpreter destruction. When the slab
2842is full, a new one is allocated and chained to the end. At exit from
2843regmatch(), slabs allocated since entry are freed.
2844
2845*/
95b24440 2846
40a82448 2847
5bc10b2c 2848#define DEBUG_STATE_pp(pp) \
265c4333 2849 DEBUG_STATE_r({ \
f2ed9b32 2850 DUMP_EXEC_POS(locinput, scan, utf8_target); \
5bc10b2c 2851 PerlIO_printf(Perl_debug_log, \
5d458dd8 2852 " %*s"pp" %s%s%s%s%s\n", \
5bc10b2c 2853 depth*2, "", \
13d6edb4 2854 PL_reg_name[st->resume_state], \
5d458dd8
YO
2855 ((st==yes_state||st==mark_state) ? "[" : ""), \
2856 ((st==yes_state) ? "Y" : ""), \
2857 ((st==mark_state) ? "M" : ""), \
2858 ((st==yes_state||st==mark_state) ? "]" : "") \
2859 ); \
265c4333 2860 });
5bc10b2c 2861
40a82448 2862
3dab1dad 2863#define REG_NODE_NUM(x) ((x) ? (int)((x)-prog) : -1)
95b24440 2864
3df15adc 2865#ifdef DEBUGGING
5bc10b2c 2866
ab3bbdeb 2867STATIC void
f2ed9b32 2868S_debug_start_match(pTHX_ const REGEXP *prog, const bool utf8_target,
ab3bbdeb
YO
2869 const char *start, const char *end, const char *blurb)
2870{
efd26800 2871 const bool utf8_pat = RX_UTF8(prog) ? 1 : 0;
7918f24d
NC
2872
2873 PERL_ARGS_ASSERT_DEBUG_START_MATCH;
2874
ab3bbdeb
YO
2875 if (!PL_colorset)
2876 reginitcolors();
2877 {
2878 RE_PV_QUOTED_DECL(s0, utf8_pat, PERL_DEBUG_PAD_ZERO(0),
d2c6dc5e 2879 RX_PRECOMP_const(prog), RX_PRELEN(prog), 60);
ab3bbdeb 2880
f2ed9b32 2881 RE_PV_QUOTED_DECL(s1, utf8_target, PERL_DEBUG_PAD_ZERO(1),
ab3bbdeb
YO
2882 start, end - start, 60);
2883
2884 PerlIO_printf(Perl_debug_log,
2885 "%s%s REx%s %s against %s\n",
2886 PL_colors[4], blurb, PL_colors[5], s0, s1);
2887
f2ed9b32 2888 if (utf8_target||utf8_pat)
1de06328
YO
2889 PerlIO_printf(Perl_debug_log, "UTF-8 %s%s%s...\n",
2890 utf8_pat ? "pattern" : "",
f2ed9b32
KW
2891 utf8_pat && utf8_target ? " and " : "",
2892 utf8_target ? "string" : ""
ab3bbdeb
YO
2893 );
2894 }
2895}
3df15adc
YO
2896
2897STATIC void
786e8c11
YO
2898S_dump_exec_pos(pTHX_ const char *locinput,
2899 const regnode *scan,
2900 const char *loc_regeol,
2901 const char *loc_bostr,
2902 const char *loc_reg_starttry,
f2ed9b32 2903 const bool utf8_target)
07be1b83 2904{
786e8c11 2905 const int docolor = *PL_colors[0] || *PL_colors[2] || *PL_colors[4];
07be1b83 2906 const int taill = (docolor ? 10 : 7); /* 3 chars for "> <" */
786e8c11 2907 int l = (loc_regeol - locinput) > taill ? taill : (loc_regeol - locinput);
07be1b83
YO
2908 /* The part of the string before starttry has one color
2909 (pref0_len chars), between starttry and current
2910 position another one (pref_len - pref0_len chars),
2911 after the current position the third one.
2912 We assume that pref0_len <= pref_len, otherwise we
2913 decrease pref0_len. */
786e8c11
YO
2914 int pref_len = (locinput - loc_bostr) > (5 + taill) - l
2915 ? (5 + taill) - l : locinput - loc_bostr;
07be1b83
YO
2916 int pref0_len;
2917
7918f24d
NC
2918 PERL_ARGS_ASSERT_DUMP_EXEC_POS;
2919
f2ed9b32 2920 while (utf8_target && UTF8_IS_CONTINUATION(*(U8*)(locinput - pref_len)))
07be1b83 2921 pref_len++;
786e8c11
YO
2922 pref0_len = pref_len - (locinput - loc_reg_starttry);
2923 if (l + pref_len < (5 + taill) && l < loc_regeol - locinput)
2924 l = ( loc_regeol - locinput > (5 + taill) - pref_len
2925 ? (5 + taill) - pref_len : loc_regeol - locinput);
f2ed9b32 2926 while (utf8_target && UTF8_IS_CONTINUATION(*(U8*)(locinput + l)))
07be1b83
YO
2927 l--;
2928 if (pref0_len < 0)
2929 pref0_len = 0;
2930 if (pref0_len > pref_len)
2931 pref0_len = pref_len;
2932 {
f2ed9b32 2933 const int is_uni = (utf8_target && OP(scan) != CANY) ? 1 : 0;
0df25f3d 2934
ab3bbdeb 2935 RE_PV_COLOR_DECL(s0,len0,is_uni,PERL_DEBUG_PAD(0),
1de06328 2936 (locinput - pref_len),pref0_len, 60, 4, 5);
0df25f3d 2937
ab3bbdeb 2938 RE_PV_COLOR_DECL(s1,len1,is_uni,PERL_DEBUG_PAD(1),
3df15adc 2939 (locinput - pref_len + pref0_len),
1de06328 2940 pref_len - pref0_len, 60, 2, 3);
0df25f3d 2941
ab3bbdeb 2942 RE_PV_COLOR_DECL(s2,len2,is_uni,PERL_DEBUG_PAD(2),
1de06328 2943 locinput, loc_regeol - locinput, 10, 0, 1);
0df25f3d 2944
1de06328 2945 const STRLEN tlen=len0+len1+len2;
3df15adc 2946 PerlIO_printf(Perl_debug_log,
ab3bbdeb 2947 "%4"IVdf" <%.*s%.*s%s%.*s>%*s|",
786e8c11 2948 (IV)(locinput - loc_bostr),
07be1b83 2949 len0, s0,
07be1b83 2950 len1, s1,
07be1b83 2951 (docolor ? "" : "> <"),
07be1b83 2952 len2, s2,
f9f4320a 2953 (int)(tlen > 19 ? 0 : 19 - tlen),
07be1b83
YO
2954 "");
2955 }
2956}
3df15adc 2957
07be1b83
YO
2958#endif
2959
0a4db386
YO
2960/* reg_check_named_buff_matched()
2961 * Checks to see if a named buffer has matched. The data array of
2962 * buffer numbers corresponding to the buffer is expected to reside
2963 * in the regexp->data->data array in the slot stored in the ARG() of
2964 * node involved. Note that this routine doesn't actually care about the
2965 * name, that information is not preserved from compilation to execution.
2966 * Returns the index of the leftmost defined buffer with the given name
2967 * or 0 if non of the buffers matched.
2968 */
2969STATIC I32
7918f24d
NC
2970S_reg_check_named_buff_matched(pTHX_ const regexp *rex, const regnode *scan)
2971{
0a4db386 2972 I32 n;
f8fc2ecf 2973 RXi_GET_DECL(rex,rexi);
ad64d0ec 2974 SV *sv_dat= MUTABLE_SV(rexi->data->data[ ARG( scan ) ]);
0a4db386 2975 I32 *nums=(I32*)SvPVX(sv_dat);
7918f24d
NC
2976
2977 PERL_ARGS_ASSERT_REG_CHECK_NAMED_BUFF_MATCHED;
2978
0a4db386
YO
2979 for ( n=0; n<SvIVX(sv_dat); n++ ) {
2980 if ((I32)*PL_reglastparen >= nums[n] &&
f0ab9afb 2981 PL_regoffs[nums[n]].end != -1)
0a4db386
YO
2982 {
2983 return nums[n];
2984 }
2985 }
2986 return 0;
2987}
2988
2f554ef7
DM
2989
2990/* free all slabs above current one - called during LEAVE_SCOPE */
2991
2992STATIC void
2993S_clear_backtrack_stack(pTHX_ void *p)
2994{
2995 regmatch_slab *s = PL_regmatch_slab->next;
2996 PERL_UNUSED_ARG(p);
2997
2998 if (!s)
2999 return;
3000 PL_regmatch_slab->next = NULL;
3001 while (s) {
3002 regmatch_slab * const osl = s;
3003 s = s->next;
3004 Safefree(osl);
3005 }
3006}
3007
3008
28d8d7f4
YO
3009#define SETREX(Re1,Re2) \
3010 if (PL_reg_eval_set) PM_SETRE((PL_reg_curpm), (Re2)); \
3011 Re1 = (Re2)
3012
d6a28714 3013STATIC I32 /* 0 failure, 1 success */
24b23f37 3014S_regmatch(pTHX_ regmatch_info *reginfo, regnode *prog)
d6a28714 3015{
a35a87e7 3016#if PERL_VERSION < 9 && !defined(PERL_CORE)
54df2634
NC
3017 dMY_CXT;
3018#endif
27da23d5 3019 dVAR;
f2ed9b32 3020 register const bool utf8_target = PL_reg_match_utf8;
4ad0818d 3021 const U32 uniflags = UTF8_ALLOW_DEFAULT;
288b8c02
NC
3022 REGEXP *rex_sv = reginfo->prog;
3023 regexp *rex = (struct regexp *)SvANY(rex_sv);
f8fc2ecf 3024 RXi_GET_DECL(rex,rexi);
2f554ef7 3025 I32 oldsave;
5d9a96ca
DM
3026 /* the current state. This is a cached copy of PL_regmatch_state */
3027 register regmatch_state *st;
5d9a96ca
DM
3028 /* cache heavy used fields of st in registers */
3029 register regnode *scan;
3030 register regnode *next;
438e9bae 3031 register U32 n = 0; /* general value; init to avoid compiler warning */
24d3c4a9 3032 register I32 ln = 0; /* len or last; init to avoid compiler warning */
5d9a96ca 3033 register char *locinput = PL_reginput;
5d9a96ca 3034 register I32 nextchr; /* is always set to UCHARAT(locinput) */
24d3c4a9 3035
b69b0499 3036 bool result = 0; /* return value of S_regmatch */
24d3c4a9 3037 int depth = 0; /* depth of backtrack stack */
4b196cd4
YO
3038 U32 nochange_depth = 0; /* depth of GOSUB recursion with nochange */
3039 const U32 max_nochange_depth =
3040 (3 * rex->nparens > MAX_RECURSE_EVAL_NOCHANGE_DEPTH) ?
3041 3 * rex->nparens : MAX_RECURSE_EVAL_NOCHANGE_DEPTH;
77cb431f
DM
3042 regmatch_state *yes_state = NULL; /* state to pop to on success of
3043 subpattern */
e2e6a0f1
YO
3044 /* mark_state piggy backs on the yes_state logic so that when we unwind
3045 the stack on success we can update the mark_state as we go */
3046 regmatch_state *mark_state = NULL; /* last mark state we have seen */
faec1544 3047 regmatch_state *cur_eval = NULL; /* most recent EVAL_AB state */
b8591aee 3048 struct regmatch_state *cur_curlyx = NULL; /* most recent curlyx */
40a82448 3049 U32 state_num;
5d458dd8
YO
3050 bool no_final = 0; /* prevent failure from backtracking? */
3051 bool do_cutgroup = 0; /* no_final only until next branch/trie entry */
e2e6a0f1 3052 char *startpoint = PL_reginput;
5d458dd8
YO
3053 SV *popmark = NULL; /* are we looking for a mark? */
3054 SV *sv_commit = NULL; /* last mark name seen in failure */
3055 SV *sv_yes_mark = NULL; /* last mark name we have seen
486ec47a 3056 during a successful match */
5d458dd8
YO
3057 U32 lastopen = 0; /* last open we saw */
3058 bool has_cutgroup = RX_HAS_CUTGROUP(rex) ? 1 : 0;
19b95bf0 3059 SV* const oreplsv = GvSV(PL_replgv);
24d3c4a9
DM
3060 /* these three flags are set by various ops to signal information to
3061 * the very next op. They have a useful lifetime of exactly one loop
3062 * iteration, and are not preserved or restored by state pushes/pops
3063 */
3064 bool sw = 0; /* the condition value in (?(cond)a|b) */
3065 bool minmod = 0; /* the next "{n,m}" is a "{n,m}?" */
3066 int logical = 0; /* the following EVAL is:
3067 0: (?{...})
3068 1: (?(?{...})X|Y)
3069 2: (??{...})
3070 or the following IFMATCH/UNLESSM is:
3071 false: plain (?=foo)
3072 true: used as a condition: (?(?=foo))
3073 */
95b24440 3074#ifdef DEBUGGING
e68ec53f 3075 GET_RE_DEBUG_FLAGS_DECL;
d6a28714
JH
3076#endif
3077
7918f24d
NC
3078 PERL_ARGS_ASSERT_REGMATCH;
3079
3b57cd43 3080 DEBUG_OPTIMISE_r( DEBUG_EXECUTE_r({
24b23f37 3081 PerlIO_printf(Perl_debug_log,"regmatch start\n");
3b57cd43 3082 }));
5d9a96ca
DM
3083 /* on first ever call to regmatch, allocate first slab */
3084 if (!PL_regmatch_slab) {
3085 Newx(PL_regmatch_slab, 1, regmatch_slab);
3086 PL_regmatch_slab->prev = NULL;
3087 PL_regmatch_slab->next = NULL;
86545054 3088 PL_regmatch_state = SLAB_FIRST(PL_regmatch_slab);
5d9a96ca
DM
3089 }
3090
2f554ef7
DM
3091 oldsave = PL_savestack_ix;
3092 SAVEDESTRUCTOR_X(S_clear_backtrack_stack, NULL);
3093 SAVEVPTR(PL_regmatch_slab);
3094 SAVEVPTR(PL_regmatch_state);
5d9a96ca
DM
3095
3096 /* grab next free state slot */
3097 st = ++PL_regmatch_state;
86545054 3098 if (st > SLAB_LAST(PL_regmatch_slab))
5d9a96ca
DM
3099 st = PL_regmatch_state = S_push_slab(aTHX);
3100
d6a28714
JH
3101 /* Note that nextchr is a byte even in UTF */
3102 nextchr = UCHARAT(locinput);
3103 scan = prog;
3104 while (scan != NULL) {
8ba1375e 3105
a3621e74 3106 DEBUG_EXECUTE_r( {
6136c704 3107 SV * const prop = sv_newmortal();
1de06328 3108 regnode *rnext=regnext(scan);
f2ed9b32 3109 DUMP_EXEC_POS( locinput, scan, utf8_target );
32fc9b6a 3110 regprop(rex, prop, scan);
07be1b83
YO
3111
3112 PerlIO_printf(Perl_debug_log,
3113 "%3"IVdf":%*s%s(%"IVdf")\n",
f8fc2ecf 3114 (IV)(scan - rexi->program), depth*2, "",
07be1b83 3115 SvPVX_const(prop),
1de06328 3116 (PL_regkind[OP(scan)] == END || !rnext) ?
f8fc2ecf 3117 0 : (IV)(rnext - rexi->program));
2a782b5b 3118 });
d6a28714
JH
3119
3120 next = scan + NEXT_OFF(scan);
3121 if (next == scan)
3122 next = NULL;
40a82448 3123 state_num = OP(scan);
d6a28714 3124
40a82448 3125 reenter_switch:
34a81e2b
B
3126
3127 assert(PL_reglastparen == &rex->lastparen);
3128 assert(PL_reglastcloseparen == &rex->lastcloseparen);
3129 assert(PL_regoffs == rex->offs);
3130
40a82448 3131 switch (state_num) {
d6a28714 3132 case BOL:
7fba1cd6 3133 if (locinput == PL_bostr)
d6a28714 3134 {
3b0527fe 3135 /* reginfo->till = reginfo->bol; */
b8c5462f
JH
3136 break;
3137 }
d6a28714
JH
3138 sayNO;
3139 case MBOL:
12d33761
HS
3140 if (locinput == PL_bostr ||
3141 ((nextchr || locinput < PL_regeol) && locinput[-1] == '\n'))
d6a28714 3142 {
b8c5462f
JH
3143 break;
3144 }
d6a28714
JH
3145 sayNO;
3146 case SBOL:
c2a73568 3147 if (locinput == PL_bostr)
b8c5462f 3148 break;
d6a28714
JH
3149 sayNO;
3150 case GPOS:
3b0527fe 3151 if (locinput == reginfo->ganch)
d6a28714
JH
3152 break;
3153 sayNO;
ee9b8eae
YO
3154
3155 case KEEPS:
3156 /* update the startpoint */
f0ab9afb 3157 st->u.keeper.val = PL_regoffs[0].start;
ee9b8eae 3158 PL_reginput = locinput;
f0ab9afb 3159 PL_regoffs[0].start = locinput - PL_bostr;
ee9b8eae
YO
3160 PUSH_STATE_GOTO(KEEPS_next, next);
3161 /*NOT-REACHED*/
3162 case KEEPS_next_fail:
3163 /* rollback the start point change */
f0ab9afb 3164 PL_regoffs[0].start = st->u.keeper.val;
ee9b8eae
YO
3165 sayNO_SILENT;
3166 /*NOT-REACHED*/
d6a28714 3167 case EOL:
d6a28714
JH
3168 goto seol;
3169 case MEOL:
d6a28714 3170 if ((nextchr || locinput < PL_regeol) && nextchr != '\n')
b8c5462f 3171 sayNO;
b8c5462f 3172 break;
d6a28714
JH
3173 case SEOL:
3174 seol:
3175 if ((nextchr || locinput < PL_regeol) && nextchr != '\n')
b8c5462f 3176 sayNO;
d6a28714 3177 if (PL_regeol - locinput > 1)
b8c5462f 3178 sayNO;
b8c5462f 3179 break;
d6a28714
JH
3180 case EOS:
3181 if (PL_regeol != locinput)
b8c5462f 3182 sayNO;
d6a28714 3183 break;
ffc61ed2 3184 case SANY:
d6a28714 3185 if (!nextchr && locinput >= PL_regeol)
4633a7c4 3186 sayNO;
f2ed9b32 3187 if (utf8_target) {
f33976b4
DB
3188 locinput += PL_utf8skip[nextchr];
3189 if (locinput > PL_regeol)
3190 sayNO;
3191 nextchr = UCHARAT(locinput);
3192 }
3193 else
3194 nextchr = UCHARAT(++locinput);
3195 break;
3196 case CANY:
3197 if (!nextchr && locinput >= PL_regeol)
3198 sayNO;
b8c5462f 3199 nextchr = UCHARAT(++locinput);
a0d0e21e 3200 break;
ffc61ed2 3201 case REG_ANY:
1aa99e6b
IH
3202 if ((!nextchr && locinput >= PL_regeol) || nextchr == '\n')
3203 sayNO;
f2ed9b32 3204 if (utf8_target) {
b8c5462f 3205 locinput += PL_utf8skip[nextchr];
d6a28714
JH
3206 if (locinput > PL_regeol)
3207 sayNO;
a0ed51b3 3208 nextchr = UCHARAT(locinput);
a0ed51b3 3209 }
1aa99e6b
IH
3210 else
3211 nextchr = UCHARAT(++locinput);
a0ed51b3 3212 break;
166ba7cd
DM
3213
3214#undef ST
3215#define ST st->u.trie
786e8c11
YO
3216 case TRIEC:
3217 /* In this case the charclass data is available inline so
3218 we can fail fast without a lot of extra overhead.
3219 */
f2ed9b32 3220 if (scan->flags == EXACT || !utf8_target) {
786e8c11
YO
3221 if(!ANYOF_BITMAP_TEST(scan, *locinput)) {
3222 DEBUG_EXECUTE_r(
3223 PerlIO_printf(Perl_debug_log,
3224 "%*s %sfailed to match trie start class...%s\n",
5bc10b2c 3225 REPORT_CODE_OFF+depth*2, "", PL_colors[4], PL_colors[5])
786e8c11
YO
3226 );
3227 sayNO_SILENT;
3228 /* NOTREACHED */
3229 }
3230 }
3231 /* FALL THROUGH */
5b47454d 3232 case TRIE:
2e64971a
DM
3233 /* the basic plan of execution of the trie is:
3234 * At the beginning, run though all the states, and
3235 * find the longest-matching word. Also remember the position
3236 * of the shortest matching word. For example, this pattern:
3237 * 1 2 3 4 5
3238 * ab|a|x|abcd|abc
3239 * when matched against the string "abcde", will generate
3240 * accept states for all words except 3, with the longest
3241 * matching word being 4, and the shortest being 1 (with
3242 * the position being after char 1 of the string).
3243 *
3244 * Then for each matching word, in word order (i.e. 1,2,4,5),
3245 * we run the remainder of the pattern; on each try setting
3246 * the current position to the character following the word,
3247 * returning to try the next word on failure.
3248 *
3249 * We avoid having to build a list of words at runtime by
3250 * using a compile-time structure, wordinfo[].prev, which
3251 * gives, for each word, the previous accepting word (if any).
3252 * In the case above it would contain the mappings 1->2, 2->0,
3253 * 3->0, 4->5, 5->1. We can use this table to generate, from
3254 * the longest word (4 above), a list of all words, by
3255 * following the list of prev pointers; this gives us the
3256 * unordered list 4,5,1,2. Then given the current word we have
3257 * just tried, we can go through the list and find the
3258 * next-biggest word to try (so if we just failed on word 2,
3259 * the next in the list is 4).
3260 *
3261 * Since at runtime we don't record the matching position in
3262 * the string for each word, we have to work that out for
3263 * each word we're about to process. The wordinfo table holds
3264 * the character length of each word; given that we recorded
3265 * at the start: the position of the shortest word and its
3266 * length in chars, we just need to move the pointer the
3267 * difference between the two char lengths. Depending on
3268 * Unicode status and folding, that's cheap or expensive.
3269 *
3270 * This algorithm is optimised for the case where are only a
3271 * small number of accept states, i.e. 0,1, or maybe 2.
3272 * With lots of accepts states, and having to try all of them,
3273 * it becomes quadratic on number of accept states to find all
3274 * the next words.
3275 */
3276
3dab1dad 3277 {
07be1b83 3278 /* what type of TRIE am I? (utf8 makes this contextual) */
a0a388a1 3279 DECL_TRIE_TYPE(scan);
3dab1dad
YO
3280
3281 /* what trie are we using right now */
be8e71aa 3282 reg_trie_data * const trie
f8fc2ecf 3283 = (reg_trie_data*)rexi->data->data[ ARG( scan ) ];
85fbaab2 3284 HV * widecharmap = MUTABLE_HV(rexi->data->data[ ARG( scan ) + 1 ]);
3dab1dad 3285 U32 state = trie->startstate;
166ba7cd 3286
3dab1dad
YO
3287 if (trie->bitmap && trie_type != trie_utf8_fold &&
3288 !TRIE_BITMAP_TEST(trie,*locinput)
3289 ) {
3290 if (trie->states[ state ].wordnum) {
3291 DEBUG_EXECUTE_r(
3292 PerlIO_printf(Perl_debug_log,
3293 "%*s %smatched empty string...%s\n",
5bc10b2c 3294 REPORT_CODE_OFF+depth*2, "", PL_colors[4], PL_colors[5])
3dab1dad 3295 );
20dbff7c
YO
3296 if (!trie->jump)
3297 break;
3dab1dad
YO
3298 } else {
3299 DEBUG_EXECUTE_r(
3300 PerlIO_printf(Perl_debug_log,
786e8c11 3301 "%*s %sfailed to match trie start class...%s\n",
5bc10b2c 3302 REPORT_CODE_OFF+depth*2, "", PL_colors[4], PL_colors[5])
3dab1dad
YO
3303 );
3304 sayNO_SILENT;
3305 }
3306 }
166ba7cd 3307
786e8c11
YO
3308 {
3309 U8 *uc = ( U8* )locinput;
3310
3311 STRLEN len = 0;
3312 STRLEN foldlen = 0;
3313 U8 *uscan = (U8*)NULL;
786e8c11 3314 U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
2e64971a
DM
3315 U32 charcount = 0; /* how many input chars we have matched */
3316 U32 accepted = 0; /* have we seen any accepting states? */
786e8c11 3317
786e8c11
YO
3318 ST.B = next;
3319 ST.jump = trie->jump;
786e8c11 3320 ST.me = scan;
2e64971a
DM
3321 ST.firstpos = NULL;
3322 ST.longfold = FALSE; /* char longer if folded => it's harder */
3323 ST.nextword = 0;
3324
3325 /* fully traverse the TRIE; note the position of the
3326 shortest accept state and the wordnum of the longest
3327 accept state */
07be1b83 3328
a3621e74 3329 while ( state && uc <= (U8*)PL_regeol ) {
786e8c11 3330 U32 base = trie->states[ state ].trans.base;
f9f4320a 3331 UV uvc = 0;
acb909b4 3332 U16 charid = 0;
2e64971a
DM
3333 U16 wordnum;
3334 wordnum = trie->states[ state ].wordnum;
3335
3336 if (wordnum) { /* it's an accept state */
3337 if (!accepted) {
3338 accepted = 1;
3339 /* record first match position */
3340 if (ST.longfold) {
3341 ST.firstpos = (U8*)locinput;
3342 ST.firstchars = 0;
5b47454d 3343 }
2e64971a
DM
3344 else {
3345 ST.firstpos = uc;
3346 ST.firstchars = charcount;
3347 }
3348 }
3349 if (!ST.nextword || wordnum < ST.nextword)
3350 ST.nextword = wordnum;
3351 ST.topword = wordnum;
786e8c11 3352 }
a3621e74 3353
07be1b83 3354 DEBUG_TRIE_EXECUTE_r({
f2ed9b32 3355 DUMP_EXEC_POS( (char *)uc, scan, utf8_target );
a3621e74 3356 PerlIO_printf( Perl_debug_log,
2e64971a 3357 "%*s %sState: %4"UVxf" Accepted: %c ",
5bc10b2c 3358 2+depth * 2, "", PL_colors[4],
2e64971a 3359 (UV)state, (accepted ? 'Y' : 'N'));
07be1b83 3360 });
a3621e74 3361
2e64971a 3362 /* read a char and goto next state */
a3621e74 3363 if ( base ) {
6dd2be57 3364 I32 offset;
55eed653
NC
3365 REXEC_TRIE_READ_CHAR(trie_type, trie, widecharmap, uc,
3366 uscan, len, uvc, charid, foldlen,
3367 foldbuf, uniflags);
2e64971a
DM
3368 charcount++;
3369 if (foldlen>0)
3370 ST.longfold = TRUE;
5b47454d 3371 if (charid &&
6dd2be57
DM
3372 ( ((offset =
3373 base + charid - 1 - trie->uniquecharcount)) >= 0)
3374
3375 && ((U32)offset < trie->lasttrans)
3376 && trie->trans[offset].check == state)
5b47454d 3377 {
6dd2be57 3378 state = trie->trans[offset].next;
5b47454d
DM
3379 }
3380 else {
3381 state = 0;
3382 }
3383 uc += len;
3384
3385 }
3386 else {
a3621e74
YO
3387 state = 0;
3388 }
3389 DEBUG_TRIE_EXECUTE_r(
e4584336 3390 PerlIO_printf( Perl_debug_log,
786e8c11 3391 "Charid:%3x CP:%4"UVxf" After State: %4"UVxf"%s\n",
e4584336 3392 charid, uvc, (UV)state, PL_colors[5] );
a3621e74
YO
3393 );
3394 }
2e64971a 3395 if (!accepted)
a3621e74 3396 sayNO;
a3621e74 3397
2e64971a
DM
3398 /* calculate total number of accept states */
3399 {
3400 U16 w = ST.topword;
3401 accepted = 0;
3402 while (w) {
3403 w = trie->wordinfo[w].prev;
3404 accepted++;
3405 }
3406 ST.accepted = accepted;
3407 }
3408
166ba7cd
DM
3409 DEBUG_EXECUTE_r(
3410 PerlIO_printf( Perl_debug_log,
3411 "%*s %sgot %"IVdf" possible matches%s\n",
5bc10b2c 3412 REPORT_CODE_OFF + depth * 2, "",
166ba7cd
DM
3413 PL_colors[4], (IV)ST.accepted, PL_colors[5] );
3414 );
2e64971a 3415 goto trie_first_try; /* jump into the fail handler */
786e8c11 3416 }}
fae667d5 3417 /* NOTREACHED */
2e64971a
DM
3418
3419 case TRIE_next_fail: /* we failed - try next alternative */
fae667d5
YO
3420 if ( ST.jump) {
3421 REGCP_UNWIND(ST.cp);
3422 for (n = *PL_reglastparen; n > ST.lastparen; n--)
f0ab9afb 3423 PL_regoffs[n].end = -1;
fae667d5
YO
3424 *PL_reglastparen = n;
3425 }
2e64971a
DM
3426 if (!--ST.accepted) {
3427 DEBUG_EXECUTE_r({
3428 PerlIO_printf( Perl_debug_log,
3429 "%*s %sTRIE failed...%s\n",
3430 REPORT_CODE_OFF+depth*2, "",
3431 PL_colors[4],
3432 PL_colors[5] );
3433 });
3434 sayNO_SILENT;
3435 }
3436 {
3437 /* Find next-highest word to process. Note that this code
3438 * is O(N^2) per trie run (O(N) per branch), so keep tight */
d9a396a3
DM
3439 register U16 min = 0;
3440 register U16 word;
2e64971a
DM
3441 register U16 const nextword = ST.nextword;
3442 register reg_trie_wordinfo * const wordinfo
3443 = ((reg_trie_data*)rexi->data->data[ARG(ST.me)])->wordinfo;
3444 for (word=ST.topword; word; word=wordinfo[word].prev) {
3445 if (word > nextword && (!min || word < min))
3446 min = word;
3447 }
3448 ST.nextword = min;
3449 }
3450
fae667d5 3451 trie_first_try:
5d458dd8
YO
3452 if (do_cutgroup) {
3453 do_cutgroup = 0;
3454 no_final = 0;
3455 }
fae667d5
YO
3456
3457 if ( ST.jump) {
3458 ST.lastparen = *PL_reglastparen;
3459 REGCP_SET(ST.cp);
2e64971a 3460 }
a3621e74 3461
2e64971a 3462 /* find start char of end of current word */
166ba7cd 3463 {
2e64971a
DM
3464 U32 chars; /* how many chars to skip */
3465 U8 *uc = ST.firstpos;
3466 reg_trie_data * const trie
3467 = (reg_trie_data*)rexi->data->data[ARG(ST.me)];
3468
3469 assert((trie->wordinfo[ST.nextword].len - trie->prefixlen)
3470 >= ST.firstchars);
3471 chars = (trie->wordinfo[ST.nextword].len - trie->prefixlen)
3472 - ST.firstchars;
3473
3474 if (ST.longfold) {
3475 /* the hard option - fold each char in turn and find
3476 * its folded length (which may be different */
3477 U8 foldbuf[UTF8_MAXBYTES_CASE + 1];
3478 STRLEN foldlen;
3479 STRLEN len;
d9a396a3 3480 UV uvc;
2e64971a
DM
3481 U8 *uscan;
3482
3483 while (chars) {
f2ed9b32 3484 if (utf8_target) {
2e64971a
DM
3485 uvc = utf8n_to_uvuni((U8*)uc, UTF8_MAXLEN, &len,
3486 uniflags);
3487 uc += len;
3488 }
3489 else {
3490 uvc = *uc;
3491 uc++;
3492 }
3493 uvc = to_uni_fold(uvc, foldbuf, &foldlen);
3494 uscan = foldbuf;
3495 while (foldlen) {
3496 if (!--chars)
3497 break;
3498 uvc = utf8n_to_uvuni(uscan, UTF8_MAXLEN, &len,
3499 uniflags);
3500 uscan += len;
3501 foldlen -= len;
3502 }
3503 }
a3621e74 3504 }
2e64971a 3505 else {
f2ed9b32 3506 if (utf8_target)
2e64971a
DM
3507 while (chars--)
3508 uc += UTF8SKIP(uc);
3509 else
3510 uc += chars;
3511 }
3512 PL_reginput = (char *)uc;
3513 }
166ba7cd 3514
2e64971a
DM
3515 scan = (ST.jump && ST.jump[ST.nextword])
3516 ? ST.me + ST.jump[ST.nextword]
3517 : ST.B;
166ba7cd 3518
2e64971a
DM
3519 DEBUG_EXECUTE_r({
3520 PerlIO_printf( Perl_debug_log,
3521 "%*s %sTRIE matched word #%d, continuing%s\n",
3522 REPORT_CODE_OFF+depth*2, "",
3523 PL_colors[4],
3524 ST.nextword,
3525 PL_colors[5]
3526 );
3527 });
3528
3529 if (ST.accepted > 1 || has_cutgroup) {
3530 PUSH_STATE_GOTO(TRIE_next, scan);
3531 /* NOTREACHED */
166ba7cd 3532 }
2e64971a
DM
3533 /* only one choice left - just continue */
3534 DEBUG_EXECUTE_r({
3535 AV *const trie_words
3536 = MUTABLE_AV(rexi->data->data[ARG(ST.me)+TRIE_WORDS_OFFSET]);
3537 SV ** const tmp = av_fetch( trie_words,
3538 ST.nextword-1, 0 );
3539 SV *sv= tmp ? sv_newmortal() : NULL;
3540
3541 PerlIO_printf( Perl_debug_log,
3542 "%*s %sonly one match left, short-circuiting: #%d <%s>%s\n",
3543 REPORT_CODE_OFF+depth*2, "", PL_colors[4],
3544 ST.nextword,
3545 tmp ? pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), 0,
3546 PL_colors[0], PL_colors[1],
c89df6cf 3547 (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0)|PERL_PV_ESCAPE_NONASCII
2e64971a
DM
3548 )
3549 : "not compiled under -Dr",
3550 PL_colors[5] );
3551 });
3552
3553 locinput = PL_reginput;
3554 nextchr = UCHARAT(locinput);
3555 continue; /* execute rest of RE */
166ba7cd 3556 /* NOTREACHED */
166ba7cd
DM
3557#undef ST
3558
95b24440
DM
3559 case EXACT: {
3560 char *s = STRING(scan);
24d3c4a9 3561 ln = STR_LEN(scan);
f2ed9b32 3562 if (utf8_target != UTF_PATTERN) {
bc517b45 3563 /* The target and the pattern have differing utf8ness. */
1aa99e6b 3564 char *l = locinput;
24d3c4a9 3565 const char * const e = s + ln;
a72c7584 3566
f2ed9b32 3567 if (utf8_target) {
5ff6fc6d 3568 /* The target is utf8, the pattern is not utf8. */
1aa99e6b 3569 while (s < e) {
a3b680e6 3570 STRLEN ulen;
1aa99e6b 3571 if (l >= PL_regeol)
5ff6fc6d
JH
3572 sayNO;
3573 if (NATIVE_TO_UNI(*(U8*)s) !=
89ebb4a3 3574 utf8n_to_uvuni((U8*)l, UTF8_MAXBYTES, &ulen,
041457d9 3575 uniflags))
5ff6fc6d 3576 sayNO;
bc517b45 3577 l += ulen;
5ff6fc6d 3578 s ++;
1aa99e6b 3579 }
5ff6fc6d
JH
3580 }
3581 else {
3582 /* The target is not utf8, the pattern is utf8. */
1aa99e6b 3583 while (s < e) {
a3b680e6 3584 STRLEN ulen;
1aa99e6b
IH
3585 if (l >= PL_regeol)
3586 sayNO;
5ff6fc6d 3587 if (NATIVE_TO_UNI(*((U8*)l)) !=
89ebb4a3 3588 utf8n_to_uvuni((U8*)s, UTF8_MAXBYTES, &ulen,
041457d9 3589 uniflags))
1aa99e6b 3590 sayNO;
bc517b45 3591 s += ulen;
a72c7584 3592 l ++;
1aa99e6b 3593 }
5ff6fc6d 3594 }
1aa99e6b
IH
3595 locinput = l;
3596 nextchr = UCHARAT(locinput);
3597 break;
3598 }
bc517b45 3599 /* The target and the pattern have the same utf8ness. */
d6a28714
JH
3600 /* Inline the first character, for speed. */
3601 if (UCHARAT(s) != nextchr)
3602 sayNO;
24d3c4a9 3603 if (PL_regeol - locinput < ln)
d6a28714 3604 sayNO;
24d3c4a9 3605 if (ln > 1 && memNE(s, locinput, ln))
d6a28714 3606 sayNO;
24d3c4a9 3607 locinput += ln;
d6a28714
JH
3608 nextchr = UCHARAT(locinput);
3609 break;
95b24440 3610 }
9a5a5549 3611 case EXACTFL: {
a932d541 3612 re_fold_t folder;
9a5a5549
KW
3613 const U8 * fold_array;
3614 const char * s;
d513472c 3615 U32 fold_utf8_flags;
9a5a5549 3616
b8c5462f 3617 PL_reg_flags |= RF_tainted;
9a5a5549
KW
3618 folder = foldEQ_locale;
3619 fold_array = PL_fold_locale;
17580e7a 3620 fold_utf8_flags = FOLDEQ_UTF8_LOCALE;
9a5a5549
KW
3621 goto do_exactf;
3622
3623 case EXACTFU:
3624 folder = foldEQ_latin1;
3625 fold_array = PL_fold_latin1;
d513472c 3626 fold_utf8_flags = 0;
9a5a5549
KW
3627 goto do_exactf;
3628
2f7f8cb1
KW
3629 case EXACTFA:
3630 folder = foldEQ_latin1;
3631 fold_array = PL_fold_latin1;
57014d77 3632 fold_utf8_flags = FOLDEQ_UTF8_NOMIX_ASCII;
2f7f8cb1
KW
3633 goto do_exactf;
3634
9a5a5549
KW
3635 case EXACTF:
3636 folder = foldEQ;
3637 fold_array = PL_fold;
d513472c 3638 fold_utf8_flags = 0;
9a5a5549
KW
3639
3640 do_exactf:
3641 s = STRING(scan);
24d3c4a9 3642 ln = STR_LEN(scan);
d6a28714 3643
f2ed9b32 3644 if (utf8_target || UTF_PATTERN) {
d07ddd77 3645 /* Either target or the pattern are utf8. */
be8e71aa 3646 const char * const l = locinput;
d07ddd77 3647 char *e = PL_regeol;
bc517b45 3648
d513472c 3649 if (! foldEQ_utf8_flags(s, 0, ln, cBOOL(UTF_PATTERN),
c3e1d013
KW
3650 l, &e, 0, utf8_target, fold_utf8_flags))
3651 {
3652 sayNO;
5486206c 3653 }
d07ddd77
JH
3654 locinput = e;
3655 nextchr = UCHARAT(locinput);
3656 break;
a0ed51b3 3657 }
d6a28714 3658
0a138b74 3659 /* Neither the target nor the pattern are utf8 */
d6a28714 3660 if (UCHARAT(s) != nextchr &&
9a5a5549
KW
3661 UCHARAT(s) != fold_array[nextchr])
3662 {
a0ed51b3 3663 sayNO;
9a5a5549 3664 }
24d3c4a9 3665 if (PL_regeol - locinput < ln)
b8c5462f 3666 sayNO;
9a5a5549 3667 if (ln > 1 && ! folder(s, locinput, ln))
4633a7c4 3668 sayNO;
24d3c4a9 3669 locinput += ln;
d6a28714 3670 nextchr = UCHARAT(locinput);
a0d0e21e 3671 break;
9a5a5549 3672 }
63ac0dad
KW
3673
3674 /* XXX Could improve efficiency by separating these all out using a
3675 * macro or in-line function. At that point regcomp.c would no longer
3676 * have to set the FLAGS fields of these */
b2680017
YO
3677 case BOUNDL:
3678 case NBOUNDL:
3679 PL_reg_flags |= RF_tainted;
3680 /* FALL THROUGH */
3681 case BOUND:
63ac0dad 3682 case BOUNDU:
cfaf538b 3683 case BOUNDA:
b2680017 3684 case NBOUND:
63ac0dad 3685 case NBOUNDU:
cfaf538b 3686 case NBOUNDA:
b2680017 3687 /* was last char in word? */
cfaf538b 3688 if (utf8_target && FLAGS(scan) != REGEX_ASCII_RESTRICTED_CHARSET) {
b2680017
YO
3689 if (locinput == PL_bostr)
3690 ln = '\n';
3691 else {
3692 const U8 * const r = reghop3((U8*)locinput, -1, (U8*)PL_bostr);
3693
3694 ln = utf8n_to_uvchr(r, UTF8SKIP(r), 0, uniflags);
3695 }
63ac0dad 3696 if (FLAGS(scan) != REGEX_LOCALE_CHARSET) {
b2680017
YO
3697 ln = isALNUM_uni(ln);
3698 LOAD_UTF8_CHARCLASS_ALNUM();
f2ed9b32 3699 n = swash_fetch(PL_utf8_alnum, (U8*)locinput, utf8_target);
b2680017
YO
3700 }
3701 else {
3702 ln = isALNUM_LC_uvchr(UNI_TO_NATIVE(ln));
3703 n = isALNUM_LC_utf8((U8*)locinput);
3704 }
3705 }
3706 else {
cfaf538b
KW
3707
3708 /* Here the string isn't utf8, or is utf8 and only ascii
3709 * characters are to match \w. In the latter case looking at
3710 * the byte just prior to the current one may be just the final
3711 * byte of a multi-byte character. This is ok. There are two
3712 * cases:
3713 * 1) it is a single byte character, and then the test is doing
3714 * just what it's supposed to.
3715 * 2) it is a multi-byte character, in which case the final
3716 * byte is never mistakable for ASCII, and so the test
3717 * will say it is not a word character, which is the
3718 * correct answer. */
b2680017
YO
3719 ln = (locinput != PL_bostr) ?
3720 UCHARAT(locinput - 1) : '\n';
63ac0dad
KW
3721 switch (FLAGS(scan)) {
3722 case REGEX_UNICODE_CHARSET:
3723 ln = isWORDCHAR_L1(ln);
3724 n = isWORDCHAR_L1(nextchr);
3725 break;
3726 case REGEX_LOCALE_CHARSET:
3727 ln = isALNUM_LC(ln);
3728 n = isALNUM_LC(nextchr);
3729 break;
3730 case REGEX_DEPENDS_CHARSET:
3731 ln = isALNUM(ln);
3732 n = isALNUM(nextchr);
3733 break;
cfaf538b
KW
3734 case REGEX_ASCII_RESTRICTED_CHARSET:
3735 ln = isWORDCHAR_A(ln);
3736 n = isWORDCHAR_A(nextchr);
3737 break;
63ac0dad
KW
3738 default:
3739 Perl_croak(aTHX_ "panic: Unexpected FLAGS %u in op %u", FLAGS(scan), OP(scan));
3740 break;
b2680017
YO
3741 }
3742 }
63ac0dad
KW
3743 /* Note requires that all BOUNDs be lower than all NBOUNDs in
3744 * regcomp.sym */
3745 if (((!ln) == (!n)) == (OP(scan) < NBOUND))
b2680017
YO
3746 sayNO;
3747 break;
f56b6394 3748 case ANYOFV:
d6a28714 3749 case ANYOF:
f56b6394 3750 if (utf8_target || state_num == ANYOFV) {
9e55ce06 3751 STRLEN inclasslen = PL_regeol - locinput;
20ed0b26
KW
3752 if (locinput >= PL_regeol)
3753 sayNO;
9e55ce06 3754
f2ed9b32 3755 if (!reginclass(rex, scan, (U8*)locinput, &inclasslen, utf8_target))
09b08e9b 3756 sayNO;
b32d7d3e 3757 locinput += inclasslen;
b8c5462f 3758 nextchr = UCHARAT(locinput);
e0f9d4a8 3759 break;
ffc61ed2
JH
3760 }
3761 else {
3762 if (nextchr < 0)
3763 nextchr = UCHARAT(locinput);
ffc61ed2
JH
3764 if (!nextchr && locinput >= PL_regeol)
3765 sayNO;
20ed0b26 3766 if (!REGINCLASS(rex, scan, (U8*)locinput))
09b08e9b 3767 sayNO;
ffc61ed2 3768 nextchr = UCHARAT(++locinput);
e0f9d4a8
JH
3769 break;
3770 }
b8c5462f 3771 break;
20d0b1e9 3772 /* Special char classes - The defines start on line 129 or so */
ee9a90b8
KW
3773 CCC_TRY_U(ALNUM, NALNUM, isWORDCHAR,
3774 ALNUML, NALNUML, isALNUM_LC, isALNUM_LC_utf8,
3775 ALNUMU, NALNUMU, isWORDCHAR_L1,
cfaf538b 3776 ALNUMA, NALNUMA, isWORDCHAR_A,
779d7b58 3777 alnum, "a");
ee9a90b8
KW
3778
3779 CCC_TRY_U(SPACE, NSPACE, isSPACE,
3780 SPACEL, NSPACEL, isSPACE_LC, isSPACE_LC_utf8,
3781 SPACEU, NSPACEU, isSPACE_L1,
cfaf538b 3782 SPACEA, NSPACEA, isSPACE_A,
779d7b58 3783 space, " ");
ee9a90b8
KW
3784
3785 CCC_TRY(DIGIT, NDIGIT, isDIGIT,
3786 DIGITL, NDIGITL, isDIGIT_LC, isDIGIT_LC_utf8,
cfaf538b 3787 DIGITA, NDIGITA, isDIGIT_A,
779d7b58 3788 digit, "0");
20d0b1e9 3789
37e2e78e
KW
3790 case CLUMP: /* Match \X: logical Unicode character. This is defined as
3791 a Unicode extended Grapheme Cluster */
3792 /* From http://www.unicode.org/reports/tr29 (5.2 version). An
3793 extended Grapheme Cluster is:
3794
3795 CR LF
3796 | Prepend* Begin Extend*
3797 | .
3798
3799 Begin is (Hangul-syllable | ! Control)
3800 Extend is (Grapheme_Extend | Spacing_Mark)
3801 Control is [ GCB_Control CR LF ]
3802
3803 The discussion below shows how the code for CLUMP is derived
3804 from this regex. Note that most of these concepts are from
3805 property values of the Grapheme Cluster Boundary (GCB) property.
3806 No code point can have multiple property values for a given
3807 property. Thus a code point in Prepend can't be in Control, but
3808 it must be in !Control. This is why Control above includes
3809 GCB_Control plus CR plus LF. The latter two are used in the GCB
3810 property separately, and so can't be in GCB_Control, even though
3811 they logically are controls. Control is not the same as gc=cc,
3812 but includes format and other characters as well.
3813
3814 The Unicode definition of Hangul-syllable is:
3815 L+
3816 | (L* ( ( V | LV ) V* | LVT ) T*)
3817 | T+
3818 )
3819 Each of these is a value for the GCB property, and hence must be
3820 disjoint, so the order they are tested is immaterial, so the
3821 above can safely be changed to
3822 T+
3823 | L+
3824 | (L* ( LVT | ( V | LV ) V*) T*)
3825
3826 The last two terms can be combined like this:
3827 L* ( L
3828 | (( LVT | ( V | LV ) V*) T*))
3829
3830 And refactored into this:
3831 L* (L | LVT T* | V V* T* | LV V* T*)
3832
3833 That means that if we have seen any L's at all we can quit
3834 there, but if the next character is a LVT, a V or and LV we
3835 should keep going.
3836
3837 There is a subtlety with Prepend* which showed up in testing.
3838 Note that the Begin, and only the Begin is required in:
3839 | Prepend* Begin Extend*
3840 Also, Begin contains '! Control'. A Prepend must be a '!
3841 Control', which means it must be a Begin. What it comes down to
3842 is that if we match Prepend* and then find no suitable Begin
3843 afterwards, that if we backtrack the last Prepend, that one will
3844 be a suitable Begin.
3845 */
3846
b7c83a7e 3847 if (locinput >= PL_regeol)
a0ed51b3 3848 sayNO;
f2ed9b32 3849 if (! utf8_target) {
37e2e78e
KW
3850
3851 /* Match either CR LF or '.', as all the other possibilities
3852 * require utf8 */
3853 locinput++; /* Match the . or CR */
3854 if (nextchr == '\r'
3855 && locinput < PL_regeol
3856 && UCHARAT(locinput) == '\n') locinput++;
3857 }
3858 else {
3859
3860 /* Utf8: See if is ( CR LF ); already know that locinput <
3861 * PL_regeol, so locinput+1 is in bounds */
3862 if (nextchr == '\r' && UCHARAT(locinput + 1) == '\n') {
3863 locinput += 2;
3864 }
3865 else {
3866 /* In case have to backtrack to beginning, then match '.' */
3867 char *starting = locinput;
3868
3869 /* In case have to backtrack the last prepend */
3870 char *previous_prepend = 0;
3871
3872 LOAD_UTF8_CHARCLASS_GCB();
3873
3874 /* Match (prepend)* */
3875 while (locinput < PL_regeol
3876 && swash_fetch(PL_utf8_X_prepend,
f2ed9b32 3877 (U8*)locinput, utf8_target))
37e2e78e
KW
3878 {
3879 previous_prepend = locinput;
3880 locinput += UTF8SKIP(locinput);
3881 }
3882
3883 /* As noted above, if we matched a prepend character, but
3884 * the next thing won't match, back off the last prepend we
3885 * matched, as it is guaranteed to match the begin */
3886 if (previous_prepend
3887 && (locinput >= PL_regeol
3888 || ! swash_fetch(PL_utf8_X_begin,
f2ed9b32 3889 (U8*)locinput, utf8_target)))
37e2e78e
KW
3890 {
3891 locinput = previous_prepend;
3892 }
3893
3894 /* Note that here we know PL_regeol > locinput, as we
3895 * tested that upon input to this switch case, and if we
3896 * moved locinput forward, we tested the result just above
3897 * and it either passed, or we backed off so that it will
3898 * now pass */
f2ed9b32 3899 if (! swash_fetch(PL_utf8_X_begin, (U8*)locinput, utf8_target)) {
37e2e78e
KW
3900
3901 /* Here did not match the required 'Begin' in the
3902 * second term. So just match the very first
3903 * character, the '.' of the final term of the regex */
3904 locinput = starting + UTF8SKIP(starting);
3905 } else {
3906
3907 /* Here is the beginning of a character that can have
3908 * an extender. It is either a hangul syllable, or a
3909 * non-control */
3910 if (swash_fetch(PL_utf8_X_non_hangul,
f2ed9b32 3911 (U8*)locinput, utf8_target))
37e2e78e
KW
3912 {
3913
3914 /* Here not a Hangul syllable, must be a
3915 * ('! * Control') */
3916 locinput += UTF8SKIP(locinput);
3917 } else {
3918
3919 /* Here is a Hangul syllable. It can be composed
3920 * of several individual characters. One
3921 * possibility is T+ */
3922 if (swash_fetch(PL_utf8_X_T,
f2ed9b32 3923 (U8*)locinput, utf8_target))
37e2e78e
KW
3924 {
3925 while (locinput < PL_regeol
3926 && swash_fetch(PL_utf8_X_T,
f2ed9b32 3927 (U8*)locinput, utf8_target))
37e2e78e
KW
3928 {
3929 locinput += UTF8SKIP(locinput);
3930 }
3931 } else {
3932
3933 /* Here, not T+, but is a Hangul. That means
3934 * it is one of the others: L, LV, LVT or V,
3935 * and matches:
3936 * L* (L | LVT T* | V V* T* | LV V* T*) */
3937
3938 /* Match L* */
3939 while (locinput < PL_regeol
3940 && swash_fetch(PL_utf8_X_L,
f2ed9b32 3941 (U8*)locinput, utf8_target))
37e2e78e
KW
3942 {
3943 locinput += UTF8SKIP(locinput);
3944 }
3945
3946 /* Here, have exhausted L*. If the next
3947 * character is not an LV, LVT nor V, it means
3948 * we had to have at least one L, so matches L+
3949 * in the original equation, we have a complete
3950 * hangul syllable. Are done. */
3951
3952 if (locinput < PL_regeol
3953 && swash_fetch(PL_utf8_X_LV_LVT_V,
f2ed9b32 3954 (U8*)locinput, utf8_target))
37e2e78e
KW
3955 {
3956
3957 /* Otherwise keep going. Must be LV, LVT
3958 * or V. See if LVT */
3959 if (swash_fetch(PL_utf8_X_LVT,
f2ed9b32 3960 (U8*)locinput, utf8_target))
37e2e78e
KW
3961 {
3962 locinput += UTF8SKIP(locinput);
3963 } else {
3964
3965 /* Must be V or LV. Take it, then
3966 * match V* */
3967 locinput += UTF8SKIP(locinput);
3968 while (locinput < PL_regeol
3969 && swash_fetch(PL_utf8_X_V,
f2ed9b32 3970 (U8*)locinput, utf8_target))
37e2e78e
KW
3971 {
3972 locinput += UTF8SKIP(locinput);
3973 }
3974 }
3975
3976 /* And any of LV, LVT, or V can be followed
3977 * by T* */
3978 while (locinput < PL_regeol
3979 && swash_fetch(PL_utf8_X_T,
3980 (U8*)locinput,
f2ed9b32 3981 utf8_target))
37e2e78e
KW
3982 {
3983 locinput += UTF8SKIP(locinput);
3984 }
3985 }
3986 }
3987 }
3988
3989 /* Match any extender */
3990 while (locinput < PL_regeol
3991 && swash_fetch(PL_utf8_X_extend,
f2ed9b32 3992 (U8*)locinput, utf8_target))
37e2e78e
KW
3993 {
3994 locinput += UTF8SKIP(locinput);
3995 }
3996 }
3997 }
3998 if (locinput > PL_regeol) sayNO;
3999 }
a0ed51b3
LW
4000 nextchr = UCHARAT(locinput);
4001 break;
81714fb9
YO
4002
4003 case NREFFL:
d7ef4b73
KW
4004 { /* The capture buffer cases. The ones beginning with N for the
4005 named buffers just convert to the equivalent numbered and
4006 pretend they were called as the corresponding numbered buffer
4007 op. */
26ecd678
TC
4008 /* don't initialize these in the declaration, it makes C++
4009 unhappy */
81714fb9 4010 char *s;
ff1157ca 4011 char type;
8368298a
TC
4012 re_fold_t folder;
4013 const U8 *fold_array;
26ecd678 4014 UV utf8_fold_flags;
8368298a 4015
81714fb9 4016 PL_reg_flags |= RF_tainted;
d7ef4b73
KW
4017 folder = foldEQ_locale;
4018 fold_array = PL_fold_locale;
4019 type = REFFL;
17580e7a 4020 utf8_fold_flags = FOLDEQ_UTF8_LOCALE;
d7ef4b73
KW
4021 goto do_nref;
4022
2f7f8cb1
KW
4023 case NREFFA:
4024 folder = foldEQ_latin1;
4025 fold_array = PL_fold_latin1;
4026 type = REFFA;
4027 utf8_fold_flags = FOLDEQ_UTF8_NOMIX_ASCII;
4028 goto do_nref;
4029
d7ef4b73
KW
4030 case NREFFU:
4031 folder = foldEQ_latin1;
4032 fold_array = PL_fold_latin1;
4033 type = REFFU;
d513472c 4034 utf8_fold_flags = 0;
d7ef4b73
KW
4035 goto do_nref;
4036
81714fb9 4037 case NREFF:
d7ef4b73
KW
4038 folder = foldEQ;
4039 fold_array = PL_fold;
4040 type = REFF;
d513472c 4041 utf8_fold_flags = 0;
d7ef4b73
KW
4042 goto do_nref;
4043
4044 case NREF:
4045 type = REF;
83d7b90b
KW
4046 folder = NULL;
4047 fold_array = NULL;
d513472c 4048 utf8_fold_flags = 0;
d7ef4b73
KW
4049 do_nref:
4050
4051 /* For the named back references, find the corresponding buffer
4052 * number */
0a4db386
YO
4053 n = reg_check_named_buff_matched(rex,scan);
4054
d7ef4b73 4055 if ( ! n ) {
81714fb9 4056 sayNO;
d7ef4b73
KW
4057 }
4058 goto do_nref_ref_common;
4059
c8756f30 4060 case REFFL:
3280af22 4061 PL_reg_flags |= RF_tainted;
d7ef4b73
KW
4062 folder = foldEQ_locale;
4063 fold_array = PL_fold_locale;
17580e7a 4064 utf8_fold_flags = FOLDEQ_UTF8_LOCALE;
d7ef4b73
KW
4065 goto do_ref;
4066
2f7f8cb1
KW
4067 case REFFA:
4068 folder = foldEQ_latin1;
4069 fold_array = PL_fold_latin1;
4070 utf8_fold_flags = FOLDEQ_UTF8_NOMIX_ASCII;
4071 goto do_ref;
4072
d7ef4b73
KW
4073 case REFFU:
4074 folder = foldEQ_latin1;
4075 fold_array = PL_fold_latin1;
d513472c 4076 utf8_fold_flags = 0;
d7ef4b73
KW
4077 goto do_ref;
4078
4079 case REFF:
4080 folder = foldEQ;
4081 fold_array = PL_fold;
d513472c 4082 utf8_fold_flags = 0;
83d7b90b 4083 goto do_ref;
d7ef4b73 4084
c277df42 4085 case REF:
83d7b90b
KW
4086 folder = NULL;
4087 fold_array = NULL;
d513472c 4088 utf8_fold_flags = 0;
83d7b90b 4089
d7ef4b73 4090 do_ref:
81714fb9 4091 type = OP(scan);
d7ef4b73
KW
4092 n = ARG(scan); /* which paren pair */
4093
4094 do_nref_ref_common:
f0ab9afb 4095 ln = PL_regoffs[n].start;
2c2d71f5 4096 PL_reg_leftiter = PL_reg_maxiter; /* Void cache */
3b6647e0 4097 if (*PL_reglastparen < n || ln == -1)
af3f8c16 4098 sayNO; /* Do not match unless seen CLOSEn. */
f0ab9afb 4099 if (ln == PL_regoffs[n].end)
a0d0e21e 4100 break;
a0ed51b3 4101
24d3c4a9 4102 s = PL_bostr + ln;
d7ef4b73 4103 if (type != REF /* REF can do byte comparison */
2f65c56d 4104 && (utf8_target || type == REFFU))
d7ef4b73
KW
4105 { /* XXX handle REFFL better */
4106 char * limit = PL_regeol;
4107
4108 /* This call case insensitively compares the entire buffer
4109 * at s, with the current input starting at locinput, but
4110 * not going off the end given by PL_regeol, and returns in
4111 * limit upon success, how much of the current input was
4112 * matched */
d513472c
KW
4113 if (! foldEQ_utf8_flags(s, NULL, PL_regoffs[n].end - ln, utf8_target,
4114 locinput, &limit, 0, utf8_target, utf8_fold_flags))
d7ef4b73
KW
4115 {
4116 sayNO;
a0ed51b3 4117 }
d7ef4b73 4118 locinput = limit;
a0ed51b3
LW
4119 nextchr = UCHARAT(locinput);
4120 break;
4121 }
4122
d7ef4b73 4123 /* Not utf8: Inline the first character, for speed. */
76e3520e 4124 if (UCHARAT(s) != nextchr &&
81714fb9 4125 (type == REF ||
d7ef4b73 4126 UCHARAT(s) != fold_array[nextchr]))
4633a7c4 4127 sayNO;
f0ab9afb 4128 ln = PL_regoffs[n].end - ln;
24d3c4a9 4129 if (locinput + ln > PL_regeol)
4633a7c4 4130 sayNO;
81714fb9 4131 if (ln > 1 && (type == REF
24d3c4a9 4132 ? memNE(s, locinput, ln)
d7ef4b73 4133 : ! folder(s, locinput, ln)))
4633a7c4 4134 sayNO;
24d3c4a9 4135 locinput += ln;
76e3520e 4136 nextchr = UCHARAT(locinput);
a0d0e21e 4137 break;
81714fb9 4138 }
a0d0e21e 4139 case NOTHING:
c277df42 4140 case TAIL:
a0d0e21e
LW
4141 break;
4142 case BACK:
4143 break;
40a82448
DM
4144
4145#undef ST
4146#define ST st->u.eval
c277df42 4147 {
c277df42 4148 SV *ret;
d2f13c59 4149 REGEXP *re_sv;
6bda09f9 4150 regexp *re;
f8fc2ecf 4151 regexp_internal *rei;
1a147d38
YO
4152 regnode *startpoint;
4153
4154 case GOSTART:
e7707071
YO
4155 case GOSUB: /* /(...(?1))/ /(...(?&foo))/ */
4156 if (cur_eval && cur_eval->locinput==locinput) {
24b23f37 4157 if (cur_eval->u.eval.close_paren == (U32)ARG(scan))
1a147d38 4158 Perl_croak(aTHX_ "Infinite recursion in regex");
4b196cd4 4159 if ( ++nochange_depth > max_nochange_depth )
1a147d38
YO
4160 Perl_croak(aTHX_
4161 "Pattern subroutine nesting without pos change"
4162 " exceeded limit in regex");
6bda09f9
YO
4163 } else {
4164 nochange_depth = 0;
1a147d38 4165 }
288b8c02 4166 re_sv = rex_sv;
6bda09f9 4167 re = rex;
f8fc2ecf 4168 rei = rexi;
288b8c02 4169 (void)ReREFCNT_inc(rex_sv);
1a147d38 4170 if (OP(scan)==GOSUB) {
6bda09f9
YO
4171 startpoint = scan + ARG2L(scan);
4172 ST.close_paren = ARG(scan);
4173 } else {
f8fc2ecf 4174 startpoint = rei->program+1;
6bda09f9
YO
4175 ST.close_paren = 0;
4176 }
4177 goto eval_recurse_doit;
4178 /* NOTREACHED */
4179 case EVAL: /* /(?{A})B/ /(??{A})B/ and /(?(?{A})X|Y)B/ */
4180 if (cur_eval && cur_eval->locinput==locinput) {
4b196cd4 4181 if ( ++nochange_depth > max_nochange_depth )
1a147d38 4182 Perl_croak(aTHX_ "EVAL without pos change exceeded limit in regex");
6bda09f9
YO
4183 } else {
4184 nochange_depth = 0;
4185 }
8e5e9ebe 4186 {
4aabdb9b
DM
4187 /* execute the code in the {...} */
4188 dSP;
6136c704 4189 SV ** const before = SP;
4aabdb9b
DM
4190 OP_4tree * const oop = PL_op;
4191 COP * const ocurcop = PL_curcop;
4192 PAD *old_comppad;
d80618d2 4193 char *saved_regeol = PL_regeol;
91332126
FR
4194 struct re_save_state saved_state;
4195
6562f1c4 4196 /* To not corrupt the existing regex state while executing the
b7f4cd04
FR
4197 * eval we would normally put it on the save stack, like with
4198 * save_re_context. However, re-evals have a weird scoping so we
4199 * can't just add ENTER/LEAVE here. With that, things like
4200 *
4201 * (?{$a=2})(a(?{local$a=$a+1}))*aak*c(?{$b=$a})
4202 *
4203 * would break, as they expect the localisation to be unwound
4204 * only when the re-engine backtracks through the bit that
4205 * localised it.
4206 *
4207 * What we do instead is just saving the state in a local c
4208 * variable.
4209 */
91332126
FR
4210 Copy(&PL_reg_state, &saved_state, 1, struct re_save_state);
4211
4aabdb9b 4212 n = ARG(scan);
f8fc2ecf 4213 PL_op = (OP_4tree*)rexi->data->data[n];
24b23f37
YO
4214 DEBUG_STATE_r( PerlIO_printf(Perl_debug_log,
4215 " re_eval 0x%"UVxf"\n", PTR2UV(PL_op)) );
f8fc2ecf 4216 PAD_SAVE_LOCAL(old_comppad, (PAD*)rexi->data->data[n + 2]);
f0ab9afb 4217 PL_regoffs[0].end = PL_reg_magic->mg_len = locinput - PL_bostr;
4aabdb9b 4218
2bf803e2
YO
4219 if (sv_yes_mark) {
4220 SV *sv_mrk = get_sv("REGMARK", 1);
4221 sv_setsv(sv_mrk, sv_yes_mark);
4222 }
4223
8e5e9ebe
RGS
4224 CALLRUNOPS(aTHX); /* Scalar context. */
4225 SPAGAIN;
4226 if (SP == before)
075aa684 4227 ret = &PL_sv_undef; /* protect against empty (?{}) blocks. */
8e5e9ebe
RGS
4228 else {
4229 ret = POPs;
4230 PUTBACK;
4231 }
4aabdb9b 4232
91332126
FR
4233 Copy(&saved_state, &PL_reg_state, 1, struct re_save_state);
4234
4aabdb9b
DM
4235 PL_op = oop;
4236 PAD_RESTORE_LOCAL(old_comppad);
4237 PL_curcop = ocurcop;
d80618d2 4238 PL_regeol = saved_regeol;
24d3c4a9 4239 if (!logical) {
4aabdb9b
DM
4240 /* /(?{...})/ */
4241 sv_setsv(save_scalar(PL_replgv), ret);
4aabdb9b
DM
4242 break;
4243 }
8e5e9ebe 4244 }
24d3c4a9
DM
4245 if (logical == 2) { /* Postponed subexpression: /(??{...})/ */
4246 logical = 0;
4aabdb9b 4247 {
4f639d21
DM
4248 /* extract RE object from returned value; compiling if
4249 * necessary */
6136c704 4250 MAGIC *mg = NULL;
288b8c02 4251 REGEXP *rx = NULL;
5c35adbb
NC
4252
4253 if (SvROK(ret)) {
288b8c02 4254 SV *const sv = SvRV(ret);
5c35adbb
NC
4255
4256 if (SvTYPE(sv) == SVt_REGEXP) {
d2f13c59 4257 rx = (REGEXP*) sv;
5c35adbb
NC
4258 } else if (SvSMAGICAL(sv)) {
4259 mg = mg_find(sv, PERL_MAGIC_qr);
4260 assert(mg);
4261 }
4262 } else if (SvTYPE(ret) == SVt_REGEXP) {
d2f13c59 4263 rx = (REGEXP*) ret;
5c35adbb 4264 } else if (SvSMAGICAL(ret)) {
124ee91a
NC
4265 if (SvGMAGICAL(ret)) {
4266 /* I don't believe that there is ever qr magic
4267 here. */
4268 assert(!mg_find(ret, PERL_MAGIC_qr));
faf82a0b 4269 sv_unmagic(ret, PERL_MAGIC_qr);
124ee91a
NC
4270 }
4271 else {
faf82a0b 4272 mg = mg_find(ret, PERL_MAGIC_qr);
124ee91a
NC
4273 /* testing suggests mg only ends up non-NULL for
4274 scalars who were upgraded and compiled in the
4275 else block below. In turn, this is only
4276 triggered in the "postponed utf8 string" tests
4277 in t/op/pat.t */
4278 }
0f5d15d6 4279 }
faf82a0b 4280
0f5d15d6 4281 if (mg) {
d2f13c59 4282 rx = (REGEXP *) mg->mg_obj; /*XXX:dmq*/
e2560c33 4283 assert(rx);
0f5d15d6 4284 }
288b8c02 4285 if (rx) {
f0826785 4286 rx = reg_temp_copy(NULL, rx);
288b8c02 4287 }
0f5d15d6 4288 else {
c737faaf 4289 U32 pm_flags = 0;
a3b680e6 4290 const I32 osize = PL_regsize;
0f5d15d6 4291
b9ad30b4
NC
4292 if (DO_UTF8(ret)) {
4293 assert (SvUTF8(ret));
4294 } else if (SvUTF8(ret)) {
4295 /* Not doing UTF-8, despite what the SV says. Is
4296 this only if we're trapped in use 'bytes'? */
4297 /* Make a copy of the octet sequence, but without
4298 the flag on, as the compiler now honours the
4299 SvUTF8 flag on ret. */
4300 STRLEN len;
4301 const char *const p = SvPV(ret, len);
4302 ret = newSVpvn_flags(p, len, SVs_TEMP);
4303 }
288b8c02 4304 rx = CALLREGCOMP(ret, pm_flags);
9041c2e3 4305 if (!(SvFLAGS(ret)
faf82a0b 4306 & (SVs_TEMP | SVs_PADTMP | SVf_READONLY
3ce3ed55 4307 | SVs_GMG))) {
a2794585
NC
4308 /* This isn't a first class regexp. Instead, it's
4309 caching a regexp onto an existing, Perl visible
4310 scalar. */
ad64d0ec 4311 sv_magic(ret, MUTABLE_SV(rx), PERL_MAGIC_qr, 0, 0);
3ce3ed55 4312 }
0f5d15d6 4313 PL_regsize = osize;
0f5d15d6 4314 }
288b8c02
NC
4315 re_sv = rx;
4316 re = (struct regexp *)SvANY(rx);
4aabdb9b 4317 }
07bc277f 4318 RXp_MATCH_COPIED_off(re);
28d8d7f4
YO
4319 re->subbeg = rex->subbeg;
4320 re->sublen = rex->sublen;
f8fc2ecf 4321 rei = RXi_GET(re);
6bda09f9 4322 DEBUG_EXECUTE_r(
f2ed9b32 4323 debug_start_match(re_sv, utf8_target, locinput, PL_regeol,
6bda09f9
YO
4324 "Matching embedded");
4325 );
f8fc2ecf 4326 startpoint = rei->program + 1;
1a147d38 4327 ST.close_paren = 0; /* only used for GOSUB */
6bda09f9
YO
4328 /* borrowed from regtry */
4329 if (PL_reg_start_tmpl <= re->nparens) {
4330 PL_reg_start_tmpl = re->nparens*3/2 + 3;
4331 if(PL_reg_start_tmp)
4332 Renew(PL_reg_start_tmp, PL_reg_start_tmpl, char*);
4333 else
4334 Newx(PL_reg_start_tmp, PL_reg_start_tmpl, char*);
dd5def09 4335 }
aa283a38 4336
1a147d38 4337 eval_recurse_doit: /* Share code with GOSUB below this line */
aa283a38 4338 /* run the pattern returned from (??{...}) */
40a82448
DM
4339 ST.cp = regcppush(0); /* Save *all* the positions. */
4340 REGCP_SET(ST.lastcp);
6bda09f9 4341
f0ab9afb 4342 PL_regoffs = re->offs; /* essentially NOOP on GOSUB */
6bda09f9 4343
0357f1fd
ML
4344 /* see regtry, specifically PL_reglast(?:close)?paren is a pointer! (i dont know why) :dmq */
4345 PL_reglastparen = &re->lastparen;
4346 PL_reglastcloseparen = &re->lastcloseparen;
4347 re->lastparen = 0;
4348 re->lastcloseparen = 0;
4349
4aabdb9b 4350 PL_reginput = locinput;
ae0beba1 4351 PL_regsize = 0;
4aabdb9b
DM
4352
4353 /* XXXX This is too dramatic a measure... */
4354 PL_reg_maxiter = 0;
4355
faec1544 4356 ST.toggle_reg_flags = PL_reg_flags;
3c8556c3 4357 if (RX_UTF8(re_sv))
faec1544
DM
4358 PL_reg_flags |= RF_utf8;
4359 else
4360 PL_reg_flags &= ~RF_utf8;
4361 ST.toggle_reg_flags ^= PL_reg_flags; /* diff of old and new */
4362
288b8c02 4363 ST.prev_rex = rex_sv;
faec1544 4364 ST.prev_curlyx = cur_curlyx;
288b8c02
NC
4365 SETREX(rex_sv,re_sv);
4366 rex = re;
f8fc2ecf 4367 rexi = rei;
faec1544 4368 cur_curlyx = NULL;
40a82448 4369 ST.B = next;
faec1544
DM
4370 ST.prev_eval = cur_eval;
4371 cur_eval = st;
faec1544 4372 /* now continue from first node in postoned RE */
6bda09f9 4373 PUSH_YES_STATE_GOTO(EVAL_AB, startpoint);
4aabdb9b 4374 /* NOTREACHED */
a0ed51b3 4375 }
24d3c4a9 4376 /* logical is 1, /(?(?{...})X|Y)/ */
f2338a2e 4377 sw = cBOOL(SvTRUE(ret));
24d3c4a9 4378 logical = 0;
c277df42
IZ
4379 break;
4380 }
40a82448 4381
faec1544
DM
4382 case EVAL_AB: /* cleanup after a successful (??{A})B */
4383 /* note: this is called twice; first after popping B, then A */
4384 PL_reg_flags ^= ST.toggle_reg_flags;
288b8c02
NC
4385 ReREFCNT_dec(rex_sv);
4386 SETREX(rex_sv,ST.prev_rex);
4387 rex = (struct regexp *)SvANY(rex_sv);
f8fc2ecf 4388 rexi = RXi_GET(rex);
faec1544
DM
4389 regcpblow(ST.cp);
4390 cur_eval = ST.prev_eval;
4391 cur_curlyx = ST.prev_curlyx;
34a81e2b
B
4392
4393 /* rex was changed so update the pointer in PL_reglastparen and PL_reglastcloseparen */
0357f1fd
ML
4394 PL_reglastparen = &rex->lastparen;
4395 PL_reglastcloseparen = &rex->lastcloseparen;
34a81e2b
B
4396 /* also update PL_regoffs */
4397 PL_regoffs = rex->offs;
0357f1fd 4398
40a82448
DM
4399 /* XXXX This is too dramatic a measure... */
4400 PL_reg_maxiter = 0;
e7707071 4401 if ( nochange_depth )
4b196cd4 4402 nochange_depth--;
262b90c4 4403 sayYES;
40a82448 4404
40a82448 4405
faec1544
DM
4406 case EVAL_AB_fail: /* unsuccessfully ran A or B in (??{A})B */
4407 /* note: this is called twice; first after popping B, then A */
4408 PL_reg_flags ^= ST.toggle_reg_flags;
288b8c02
NC
4409 ReREFCNT_dec(rex_sv);
4410 SETREX(rex_sv,ST.prev_rex);
4411 rex = (struct regexp *)SvANY(rex_sv);
f8fc2ecf 4412 rexi = RXi_GET(rex);
34a81e2b 4413 /* rex was changed so update the pointer in PL_reglastparen and PL_reglastcloseparen */
0357f1fd
ML
4414 PL_reglastparen = &rex->lastparen;
4415 PL_reglastcloseparen = &rex->lastcloseparen;
4416
40a82448
DM
4417 PL_reginput = locinput;
4418 REGCP_UNWIND(ST.lastcp);
4419 regcppop(rex);
faec1544
DM
4420 cur_eval = ST.prev_eval;
4421 cur_curlyx = ST.prev_curlyx;
4422 /* XXXX This is too dramatic a measure... */
4423 PL_reg_maxiter = 0;
e7707071 4424 if ( nochange_depth )
4b196cd4 4425 nochange_depth--;
40a82448 4426 sayNO_SILENT;
40a82448
DM
4427#undef ST
4428
a0d0e21e 4429 case OPEN:
c277df42 4430 n = ARG(scan); /* which paren pair */
3280af22
NIS
4431 PL_reg_start_tmp[n] = locinput;
4432 if (n > PL_regsize)
4433 PL_regsize = n;
e2e6a0f1 4434 lastopen = n;
a0d0e21e
LW
4435 break;
4436 case CLOSE:
c277df42 4437 n = ARG(scan); /* which paren pair */
f0ab9afb
NC
4438 PL_regoffs[n].start = PL_reg_start_tmp[n] - PL_bostr;
4439 PL_regoffs[n].end = locinput - PL_bostr;
7f69552c
YO
4440 /*if (n > PL_regsize)
4441 PL_regsize = n;*/
3b6647e0 4442 if (n > *PL_reglastparen)
3280af22 4443 *PL_reglastparen = n;
a01268b5 4444 *PL_reglastcloseparen = n;
3b6647e0 4445 if (cur_eval && cur_eval->u.eval.close_paren == n) {
6bda09f9
YO
4446 goto fake_end;
4447 }
a0d0e21e 4448 break;
e2e6a0f1
YO
4449 case ACCEPT:
4450 if (ARG(scan)){
4451 regnode *cursor;
4452 for (cursor=scan;
4453 cursor && OP(cursor)!=END;
4454 cursor=regnext(cursor))
4455 {
4456 if ( OP(cursor)==CLOSE ){
4457 n = ARG(cursor);
4458 if ( n <= lastopen ) {
f0ab9afb
NC
4459 PL_regoffs[n].start
4460 = PL_reg_start_tmp[n] - PL_bostr;
4461 PL_regoffs[n].end = locinput - PL_bostr;
e2e6a0f1
YO
4462 /*if (n > PL_regsize)
4463 PL_regsize = n;*/
3b6647e0 4464 if (n > *PL_reglastparen)
e2e6a0f1
YO
4465 *PL_reglastparen = n;
4466 *PL_reglastcloseparen = n;
3b6647e0
RB
4467 if ( n == ARG(scan) || (cur_eval &&
4468 cur_eval->u.eval.close_paren == n))
e2e6a0f1
YO
4469 break;
4470 }
4471 }
4472 }
4473 }
4474 goto fake_end;
4475 /*NOTREACHED*/
c277df42
IZ
4476 case GROUPP:
4477 n = ARG(scan); /* which paren pair */
f2338a2e 4478 sw = cBOOL(*PL_reglastparen >= n && PL_regoffs[n].end != -1);
c277df42 4479 break;
0a4db386
YO
4480 case NGROUPP:
4481 /* reg_check_named_buff_matched returns 0 for no match */
f2338a2e 4482 sw = cBOOL(0 < reg_check_named_buff_matched(rex,scan));
0a4db386 4483 break;
1a147d38 4484 case INSUBP:
0a4db386 4485 n = ARG(scan);
3b6647e0 4486 sw = (cur_eval && (!n || cur_eval->u.eval.close_paren == n));
0a4db386
YO
4487 break;
4488 case DEFINEP:
4489 sw = 0;
4490 break;
c277df42 4491 case IFTHEN:
2c2d71f5 4492 PL_reg_leftiter = PL_reg_maxiter; /* Void cache */
24d3c4a9 4493 if (sw)
c277df42
IZ
4494 next = NEXTOPER(NEXTOPER(scan));
4495 else {
4496 next = scan + ARG(scan);
4497 if (OP(next) == IFTHEN) /* Fake one. */
4498 next = NEXTOPER(NEXTOPER(next));
4499 }
4500 break;
4501 case LOGICAL:
24d3c4a9 4502 logical = scan->flags;
c277df42 4503 break;
c476f425 4504
2ab05381 4505/*******************************************************************
2ab05381 4506
c476f425
DM
4507The CURLYX/WHILEM pair of ops handle the most generic case of the /A*B/
4508pattern, where A and B are subpatterns. (For simple A, CURLYM or
4509STAR/PLUS/CURLY/CURLYN are used instead.)
2ab05381 4510
c476f425 4511A*B is compiled as <CURLYX><A><WHILEM><B>
2ab05381 4512
c476f425
DM
4513On entry to the subpattern, CURLYX is called. This pushes a CURLYX
4514state, which contains the current count, initialised to -1. It also sets
4515cur_curlyx to point to this state, with any previous value saved in the
4516state block.
2ab05381 4517
c476f425
DM
4518CURLYX then jumps straight to the WHILEM op, rather than executing A,
4519since the pattern may possibly match zero times (i.e. it's a while {} loop
4520rather than a do {} while loop).
2ab05381 4521
c476f425
DM
4522Each entry to WHILEM represents a successful match of A. The count in the
4523CURLYX block is incremented, another WHILEM state is pushed, and execution
4524passes to A or B depending on greediness and the current count.
2ab05381 4525
c476f425
DM
4526For example, if matching against the string a1a2a3b (where the aN are
4527substrings that match /A/), then the match progresses as follows: (the
4528pushed states are interspersed with the bits of strings matched so far):
2ab05381 4529
c476f425
DM
4530 <CURLYX cnt=-1>
4531 <CURLYX cnt=0><WHILEM>
4532 <CURLYX cnt=1><WHILEM> a1 <WHILEM>
4533 <CURLYX cnt=2><WHILEM> a1 <WHILEM> a2 <WHILEM>
4534 <CURLYX cnt=3><WHILEM> a1 <WHILEM> a2 <WHILEM> a3 <WHILEM>
4535 <CURLYX cnt=3><WHILEM> a1 <WHILEM> a2 <WHILEM> a3 <WHILEM> b
2ab05381 4536
c476f425
DM
4537(Contrast this with something like CURLYM, which maintains only a single
4538backtrack state:
2ab05381 4539
c476f425
DM
4540 <CURLYM cnt=0> a1
4541 a1 <CURLYM cnt=1> a2
4542 a1 a2 <CURLYM cnt=2> a3
4543 a1 a2 a3 <CURLYM cnt=3> b
4544)
2ab05381 4545
c476f425
DM
4546Each WHILEM state block marks a point to backtrack to upon partial failure
4547of A or B, and also contains some minor state data related to that
4548iteration. The CURLYX block, pointed to by cur_curlyx, contains the
4549overall state, such as the count, and pointers to the A and B ops.
2ab05381 4550
c476f425
DM
4551This is complicated slightly by nested CURLYX/WHILEM's. Since cur_curlyx
4552must always point to the *current* CURLYX block, the rules are:
2ab05381 4553
c476f425
DM
4554When executing CURLYX, save the old cur_curlyx in the CURLYX state block,
4555and set cur_curlyx to point the new block.
2ab05381 4556
c476f425
DM
4557When popping the CURLYX block after a successful or unsuccessful match,
4558restore the previous cur_curlyx.
2ab05381 4559
c476f425
DM
4560When WHILEM is about to execute B, save the current cur_curlyx, and set it
4561to the outer one saved in the CURLYX block.
2ab05381 4562
c476f425
DM
4563When popping the WHILEM block after a successful or unsuccessful B match,
4564restore the previous cur_curlyx.
2ab05381 4565
c476f425
DM
4566Here's an example for the pattern (AI* BI)*BO
4567I and O refer to inner and outer, C and W refer to CURLYX and WHILEM:
2ab05381 4568
c476f425
DM
4569cur_
4570curlyx backtrack stack
4571------ ---------------
4572NULL
4573CO <CO prev=NULL> <WO>
4574CI <CO prev=NULL> <WO> <CI prev=CO> <WI> ai
4575CO <CO prev=NULL> <WO> <CI prev=CO> <WI> ai <WI prev=CI> bi
4576NULL <CO prev=NULL> <WO> <CI prev=CO> <WI> ai <WI prev=CI> bi <WO prev=CO> bo
2ab05381 4577
c476f425
DM
4578At this point the pattern succeeds, and we work back down the stack to
4579clean up, restoring as we go:
95b24440 4580
c476f425
DM
4581CO <CO prev=NULL> <WO> <CI prev=CO> <WI> ai <WI prev=CI> bi
4582CI <CO prev=NULL> <WO> <CI prev=CO> <WI> ai
4583CO <CO prev=NULL> <WO>
4584NULL
a0374537 4585
c476f425
DM
4586*******************************************************************/
4587
4588#define ST st->u.curlyx
4589
4590 case CURLYX: /* start of /A*B/ (for complex A) */
4591 {
4592 /* No need to save/restore up to this paren */
4593 I32 parenfloor = scan->flags;
4594
4595 assert(next); /* keep Coverity happy */
4596 if (OP(PREVOPER(next)) == NOTHING) /* LONGJMP */
4597 next += ARG(next);
4598
4599 /* XXXX Probably it is better to teach regpush to support
4600 parenfloor > PL_regsize... */
4601 if (parenfloor > (I32)*PL_reglastparen)
4602 parenfloor = *PL_reglastparen; /* Pessimization... */
4603
4604 ST.prev_curlyx= cur_curlyx;
4605 cur_curlyx = st;
4606 ST.cp = PL_savestack_ix;
4607
4608 /* these fields contain the state of the current curly.
4609 * they are accessed by subsequent WHILEMs */
4610 ST.parenfloor = parenfloor;
d02d6d97 4611 ST.me = scan;
c476f425 4612 ST.B = next;
24d3c4a9
DM
4613 ST.minmod = minmod;
4614 minmod = 0;
c476f425
DM
4615 ST.count = -1; /* this will be updated by WHILEM */
4616 ST.lastloc = NULL; /* this will be updated by WHILEM */
4617
4618 PL_reginput = locinput;
4619 PUSH_YES_STATE_GOTO(CURLYX_end, PREVOPER(next));
5f66b61c 4620 /* NOTREACHED */
c476f425 4621 }
a0d0e21e 4622
c476f425 4623 case CURLYX_end: /* just finished matching all of A*B */
c476f425
DM
4624 cur_curlyx = ST.prev_curlyx;
4625 sayYES;
4626 /* NOTREACHED */
a0d0e21e 4627
c476f425
DM
4628 case CURLYX_end_fail: /* just failed to match all of A*B */
4629 regcpblow(ST.cp);
4630 cur_curlyx = ST.prev_curlyx;
4631 sayNO;
4632 /* NOTREACHED */
4633a7c4 4633
a0d0e21e 4634
c476f425
DM
4635#undef ST
4636#define ST st->u.whilem
4637
4638 case WHILEM: /* just matched an A in /A*B/ (for complex A) */
4639 {
4640 /* see the discussion above about CURLYX/WHILEM */
c476f425 4641 I32 n;
d02d6d97
DM
4642 int min = ARG1(cur_curlyx->u.curlyx.me);
4643 int max = ARG2(cur_curlyx->u.curlyx.me);
4644 regnode *A = NEXTOPER(cur_curlyx->u.curlyx.me) + EXTRA_STEP_2ARGS;
4645
c476f425
DM
4646 assert(cur_curlyx); /* keep Coverity happy */
4647 n = ++cur_curlyx->u.curlyx.count; /* how many A's matched */
4648 ST.save_lastloc = cur_curlyx->u.curlyx.lastloc;
4649 ST.cache_offset = 0;
4650 ST.cache_mask = 0;
4651
4652 PL_reginput = locinput;
4653
4654 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
d02d6d97
DM
4655 "%*s whilem: matched %ld out of %d..%d\n",
4656 REPORT_CODE_OFF+depth*2, "", (long)n, min, max)
c476f425 4657 );
a0d0e21e 4658
c476f425 4659 /* First just match a string of min A's. */
a0d0e21e 4660
d02d6d97 4661 if (n < min) {
92e82afa 4662 ST.cp = regcppush(cur_curlyx->u.curlyx.parenfloor);
c476f425 4663 cur_curlyx->u.curlyx.lastloc = locinput;
92e82afa
YO
4664 REGCP_SET(ST.lastcp);
4665
d02d6d97 4666 PUSH_STATE_GOTO(WHILEM_A_pre, A);
c476f425
DM
4667 /* NOTREACHED */
4668 }
4669
4670 /* If degenerate A matches "", assume A done. */
4671
4672 if (locinput == cur_curlyx->u.curlyx.lastloc) {
4673 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
4674 "%*s whilem: empty match detected, trying continuation...\n",
4675 REPORT_CODE_OFF+depth*2, "")
4676 );
4677 goto do_whilem_B_max;
4678 }
4679
4680 /* super-linear cache processing */
4681
4682 if (scan->flags) {
a0d0e21e 4683
2c2d71f5 4684 if (!PL_reg_maxiter) {
c476f425
DM
4685 /* start the countdown: Postpone detection until we
4686 * know the match is not *that* much linear. */
2c2d71f5 4687 PL_reg_maxiter = (PL_regeol - PL_bostr + 1) * (scan->flags>>4);
66bf836d
DM
4688 /* possible overflow for long strings and many CURLYX's */
4689 if (PL_reg_maxiter < 0)
4690 PL_reg_maxiter = I32_MAX;
2c2d71f5
JH
4691 PL_reg_leftiter = PL_reg_maxiter;
4692 }
c476f425 4693
2c2d71f5 4694 if (PL_reg_leftiter-- == 0) {
c476f425 4695 /* initialise cache */
3298f257 4696 const I32 size = (PL_reg_maxiter + 7)/8;
2c2d71f5 4697 if (PL_reg_poscache) {
eb160463 4698 if ((I32)PL_reg_poscache_size < size) {
2c2d71f5
JH
4699 Renew(PL_reg_poscache, size, char);
4700 PL_reg_poscache_size = size;
4701 }
4702 Zero(PL_reg_poscache, size, char);
4703 }
4704 else {
4705 PL_reg_poscache_size = size;
a02a5408 4706 Newxz(PL_reg_poscache, size, char);
2c2d71f5 4707 }
c476f425
DM
4708 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
4709 "%swhilem: Detected a super-linear match, switching on caching%s...\n",
4710 PL_colors[4], PL_colors[5])
4711 );
2c2d71f5 4712 }
c476f425 4713
2c2d71f5 4714 if (PL_reg_leftiter < 0) {
c476f425
DM
4715 /* have we already failed at this position? */
4716 I32 offset, mask;
4717 offset = (scan->flags & 0xf) - 1
4718 + (locinput - PL_bostr) * (scan->flags>>4);
4719 mask = 1 << (offset % 8);
4720 offset /= 8;
4721 if (PL_reg_poscache[offset] & mask) {
4722 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
4723 "%*s whilem: (cache) already tried at this position...\n",
4724 REPORT_CODE_OFF+depth*2, "")
2c2d71f5 4725 );
3298f257 4726 sayNO; /* cache records failure */
2c2d71f5 4727 }
c476f425
DM
4728 ST.cache_offset = offset;
4729 ST.cache_mask = mask;
2c2d71f5 4730 }
c476f425 4731 }
2c2d71f5 4732
c476f425 4733 /* Prefer B over A for minimal matching. */
a687059c 4734
c476f425
DM
4735 if (cur_curlyx->u.curlyx.minmod) {
4736 ST.save_curlyx = cur_curlyx;
4737 cur_curlyx = cur_curlyx->u.curlyx.prev_curlyx;
4738 ST.cp = regcppush(ST.save_curlyx->u.curlyx.parenfloor);
4739 REGCP_SET(ST.lastcp);
4740 PUSH_YES_STATE_GOTO(WHILEM_B_min, ST.save_curlyx->u.curlyx.B);
4741 /* NOTREACHED */
4742 }
a0d0e21e 4743
c476f425
DM
4744 /* Prefer A over B for maximal matching. */
4745
d02d6d97 4746 if (n < max) { /* More greed allowed? */
c476f425
DM
4747 ST.cp = regcppush(cur_curlyx->u.curlyx.parenfloor);
4748 cur_curlyx->u.curlyx.lastloc = locinput;
4749 REGCP_SET(ST.lastcp);
d02d6d97 4750 PUSH_STATE_GOTO(WHILEM_A_max, A);
c476f425
DM
4751 /* NOTREACHED */
4752 }
4753 goto do_whilem_B_max;
4754 }
4755 /* NOTREACHED */
4756
4757 case WHILEM_B_min: /* just matched B in a minimal match */
4758 case WHILEM_B_max: /* just matched B in a maximal match */
4759 cur_curlyx = ST.save_curlyx;
4760 sayYES;
4761 /* NOTREACHED */
4762
4763 case WHILEM_B_max_fail: /* just failed to match B in a maximal match */
4764 cur_curlyx = ST.save_curlyx;
4765 cur_curlyx->u.curlyx.lastloc = ST.save_lastloc;
4766 cur_curlyx->u.curlyx.count--;
4767 CACHEsayNO;
4768 /* NOTREACHED */
4769
4770 case WHILEM_A_min_fail: /* just failed to match A in a minimal match */
c476f425
DM
4771 /* FALL THROUGH */
4772 case WHILEM_A_pre_fail: /* just failed to match even minimal A */
92e82afa
YO
4773 REGCP_UNWIND(ST.lastcp);
4774 regcppop(rex);
c476f425
DM
4775 cur_curlyx->u.curlyx.lastloc = ST.save_lastloc;
4776 cur_curlyx->u.curlyx.count--;
4777 CACHEsayNO;
4778 /* NOTREACHED */
4779
4780 case WHILEM_A_max_fail: /* just failed to match A in a maximal match */
4781 REGCP_UNWIND(ST.lastcp);
4782 regcppop(rex); /* Restore some previous $<digit>s? */
4783 PL_reginput = locinput;
4784 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
4785 "%*s whilem: failed, trying continuation...\n",
4786 REPORT_CODE_OFF+depth*2, "")
4787 );
4788 do_whilem_B_max:
4789 if (cur_curlyx->u.curlyx.count >= REG_INFTY
4790 && ckWARN(WARN_REGEXP)
4791 && !(PL_reg_flags & RF_warned))
4792 {
4793 PL_reg_flags |= RF_warned;
4794 Perl_warner(aTHX_ packWARN(WARN_REGEXP), "%s limit (%d) exceeded",
4795 "Complex regular subexpression recursion",
4796 REG_INFTY - 1);
4797 }
4798
4799 /* now try B */
4800 ST.save_curlyx = cur_curlyx;
4801 cur_curlyx = cur_curlyx->u.curlyx.prev_curlyx;
4802 PUSH_YES_STATE_GOTO(WHILEM_B_max, ST.save_curlyx->u.curlyx.B);
4803 /* NOTREACHED */
4804
4805 case WHILEM_B_min_fail: /* just failed to match B in a minimal match */
4806 cur_curlyx = ST.save_curlyx;
4807 REGCP_UNWIND(ST.lastcp);
4808 regcppop(rex);
4809
d02d6d97 4810 if (cur_curlyx->u.curlyx.count >= /*max*/ARG2(cur_curlyx->u.curlyx.me)) {
c476f425
DM
4811 /* Maximum greed exceeded */
4812 if (cur_curlyx->u.curlyx.count >= REG_INFTY
4813 && ckWARN(WARN_REGEXP)
4814 && !(PL_reg_flags & RF_warned))
4815 {
3280af22 4816 PL_reg_flags |= RF_warned;
c476f425
DM
4817 Perl_warner(aTHX_ packWARN(WARN_REGEXP),
4818 "%s limit (%d) exceeded",
4819 "Complex regular subexpression recursion",
4820 REG_INFTY - 1);
a0d0e21e 4821 }
c476f425 4822 cur_curlyx->u.curlyx.count--;
3ab3c9b4 4823 CACHEsayNO;
a0d0e21e 4824 }
c476f425
DM
4825
4826 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
4827 "%*s trying longer...\n", REPORT_CODE_OFF+depth*2, "")
4828 );
4829 /* Try grabbing another A and see if it helps. */
4830 PL_reginput = locinput;
4831 cur_curlyx->u.curlyx.lastloc = locinput;
4832 ST.cp = regcppush(cur_curlyx->u.curlyx.parenfloor);
4833 REGCP_SET(ST.lastcp);
d02d6d97
DM
4834 PUSH_STATE_GOTO(WHILEM_A_min,
4835 /*A*/ NEXTOPER(ST.save_curlyx->u.curlyx.me) + EXTRA_STEP_2ARGS);
5f66b61c 4836 /* NOTREACHED */
40a82448
DM
4837
4838#undef ST
4839#define ST st->u.branch
4840
4841 case BRANCHJ: /* /(...|A|...)/ with long next pointer */
c277df42
IZ
4842 next = scan + ARG(scan);
4843 if (next == scan)
4844 next = NULL;
40a82448
DM
4845 scan = NEXTOPER(scan);
4846 /* FALL THROUGH */
c277df42 4847
40a82448
DM
4848 case BRANCH: /* /(...|A|...)/ */
4849 scan = NEXTOPER(scan); /* scan now points to inner node */
40a82448
DM
4850 ST.lastparen = *PL_reglastparen;
4851 ST.next_branch = next;
4852 REGCP_SET(ST.cp);
4853 PL_reginput = locinput;
02db2b7b 4854
40a82448 4855 /* Now go into the branch */
5d458dd8
YO
4856 if (has_cutgroup) {
4857 PUSH_YES_STATE_GOTO(BRANCH_next, scan);
4858 } else {
4859 PUSH_STATE_GOTO(BRANCH_next, scan);
4860 }
40a82448 4861 /* NOTREACHED */
5d458dd8
YO
4862 case CUTGROUP:
4863 PL_reginput = locinput;
4864 sv_yes_mark = st->u.mark.mark_name = scan->flags ? NULL :
ad64d0ec 4865 MUTABLE_SV(rexi->data->data[ ARG( scan ) ]);
5d458dd8
YO
4866 PUSH_STATE_GOTO(CUTGROUP_next,next);
4867 /* NOTREACHED */
4868 case CUTGROUP_next_fail:
4869 do_cutgroup = 1;
4870 no_final = 1;
4871 if (st->u.mark.mark_name)
4872 sv_commit = st->u.mark.mark_name;
4873 sayNO;
4874 /* NOTREACHED */
4875 case BRANCH_next:
4876 sayYES;
4877 /* NOTREACHED */
40a82448 4878 case BRANCH_next_fail: /* that branch failed; try the next, if any */
5d458dd8
YO
4879 if (do_cutgroup) {
4880 do_cutgroup = 0;
4881 no_final = 0;
4882 }
40a82448
DM
4883 REGCP_UNWIND(ST.cp);
4884 for (n = *PL_reglastparen; n > ST.lastparen; n--)
f0ab9afb 4885 PL_regoffs[n].end = -1;
40a82448 4886 *PL_reglastparen = n;
0a4db386 4887 /*dmq: *PL_reglastcloseparen = n; */
40a82448
DM
4888 scan = ST.next_branch;
4889 /* no more branches? */
5d458dd8
YO
4890 if (!scan || (OP(scan) != BRANCH && OP(scan) != BRANCHJ)) {
4891 DEBUG_EXECUTE_r({
4892 PerlIO_printf( Perl_debug_log,
4893 "%*s %sBRANCH failed...%s\n",
4894 REPORT_CODE_OFF+depth*2, "",
4895 PL_colors[4],
4896 PL_colors[5] );
4897 });
4898 sayNO_SILENT;
4899 }
40a82448
DM
4900 continue; /* execute next BRANCH[J] op */
4901 /* NOTREACHED */
4902
a0d0e21e 4903 case MINMOD:
24d3c4a9 4904 minmod = 1;
a0d0e21e 4905 break;
40a82448
DM
4906
4907#undef ST
4908#define ST st->u.curlym
4909
4910 case CURLYM: /* /A{m,n}B/ where A is fixed-length */
4911
4912 /* This is an optimisation of CURLYX that enables us to push
84d2fa14 4913 * only a single backtracking state, no matter how many matches
40a82448
DM
4914 * there are in {m,n}. It relies on the pattern being constant
4915 * length, with no parens to influence future backrefs
4916 */
4917
4918 ST.me = scan;
dc45a647 4919 scan = NEXTOPER(scan) + NODE_STEP_REGNODE;
40a82448
DM
4920
4921 /* if paren positive, emulate an OPEN/CLOSE around A */
4922 if (ST.me->flags) {
3b6647e0 4923 U32 paren = ST.me->flags;
40a82448
DM
4924 if (paren > PL_regsize)
4925 PL_regsize = paren;
3b6647e0 4926 if (paren > *PL_reglastparen)
40a82448 4927 *PL_reglastparen = paren;
c277df42 4928 scan += NEXT_OFF(scan); /* Skip former OPEN. */
6407bf3b 4929 }
40a82448
DM
4930 ST.A = scan;
4931 ST.B = next;
4932 ST.alen = 0;
4933 ST.count = 0;
24d3c4a9
DM
4934 ST.minmod = minmod;
4935 minmod = 0;
40a82448
DM
4936 ST.c1 = CHRTEST_UNINIT;
4937 REGCP_SET(ST.cp);
6407bf3b 4938
40a82448
DM
4939 if (!(ST.minmod ? ARG1(ST.me) : ARG2(ST.me))) /* min/max */
4940 goto curlym_do_B;
4941
4942 curlym_do_A: /* execute the A in /A{m,n}B/ */
6407bf3b 4943 PL_reginput = locinput;
40a82448
DM
4944 PUSH_YES_STATE_GOTO(CURLYM_A, ST.A); /* match A */
4945 /* NOTREACHED */
5f80c4cf 4946
40a82448
DM
4947 case CURLYM_A: /* we've just matched an A */
4948 locinput = st->locinput;
4949 nextchr = UCHARAT(locinput);
4950
4951 ST.count++;
4952 /* after first match, determine A's length: u.curlym.alen */
4953 if (ST.count == 1) {
4954 if (PL_reg_match_utf8) {
4955 char *s = locinput;
4956 while (s < PL_reginput) {
4957 ST.alen++;
4958 s += UTF8SKIP(s);
4959 }
4960 }
4961 else {
4962 ST.alen = PL_reginput - locinput;
4963 }
4964 if (ST.alen == 0)
4965 ST.count = ST.minmod ? ARG1(ST.me) : ARG2(ST.me);
4966 }
0cadcf80
DM
4967 DEBUG_EXECUTE_r(
4968 PerlIO_printf(Perl_debug_log,
40a82448 4969 "%*s CURLYM now matched %"IVdf" times, len=%"IVdf"...\n",
5bc10b2c 4970 (int)(REPORT_CODE_OFF+(depth*2)), "",
40a82448 4971 (IV) ST.count, (IV)ST.alen)
0cadcf80
DM
4972 );
4973
40a82448 4974 locinput = PL_reginput;
0a4db386
YO
4975
4976 if (cur_eval && cur_eval->u.eval.close_paren &&
24b23f37 4977 cur_eval->u.eval.close_paren == (U32)ST.me->flags)
0a4db386
YO
4978 goto fake_end;
4979
c966426a
DM
4980 {
4981 I32 max = (ST.minmod ? ARG1(ST.me) : ARG2(ST.me));
4982 if ( max == REG_INFTY || ST.count < max )
4983 goto curlym_do_A; /* try to match another A */
4984 }
40a82448 4985 goto curlym_do_B; /* try to match B */
5f80c4cf 4986
40a82448
DM
4987 case CURLYM_A_fail: /* just failed to match an A */
4988 REGCP_UNWIND(ST.cp);
0a4db386
YO
4989
4990 if (ST.minmod || ST.count < ARG1(ST.me) /* min*/
4991 || (cur_eval && cur_eval->u.eval.close_paren &&
24b23f37 4992 cur_eval->u.eval.close_paren == (U32)ST.me->flags))
40a82448 4993 sayNO;
0cadcf80 4994
40a82448
DM
4995 curlym_do_B: /* execute the B in /A{m,n}B/ */
4996 PL_reginput = locinput;
4997 if (ST.c1 == CHRTEST_UNINIT) {
4998 /* calculate c1 and c2 for possible match of 1st char
4999 * following curly */
5000 ST.c1 = ST.c2 = CHRTEST_VOID;
5001 if (HAS_TEXT(ST.B) || JUMPABLE(ST.B)) {
5002 regnode *text_node = ST.B;
5003 if (! HAS_TEXT(text_node))
5004 FIND_NEXT_IMPT(text_node);
ee9b8eae
YO
5005 /* this used to be
5006
5007 (HAS_TEXT(text_node) && PL_regkind[OP(text_node)] == EXACT)
5008
5009 But the former is redundant in light of the latter.
5010
5011 if this changes back then the macro for
5012 IS_TEXT and friends need to change.
5013 */
5014 if (PL_regkind[OP(text_node)] == EXACT)
40a82448 5015 {
ee9b8eae 5016
40a82448 5017 ST.c1 = (U8)*STRING(text_node);
9a5a5549
KW
5018 switch (OP(text_node)) {
5019 case EXACTF: ST.c2 = PL_fold[ST.c1]; break;
2f7f8cb1 5020 case EXACTFA:
9a5a5549
KW
5021 case EXACTFU: ST.c2 = PL_fold_latin1[ST.c1]; break;
5022 case EXACTFL: ST.c2 = PL_fold_locale[ST.c1]; break;
5023 default: ST.c2 = ST.c1;
5024 }
c277df42 5025 }
c277df42 5026 }
40a82448
DM
5027 }
5028
5029 DEBUG_EXECUTE_r(
5030 PerlIO_printf(Perl_debug_log,
5031 "%*s CURLYM trying tail with matches=%"IVdf"...\n",
5bc10b2c 5032 (int)(REPORT_CODE_OFF+(depth*2)),
40a82448
DM
5033 "", (IV)ST.count)
5034 );
5035 if (ST.c1 != CHRTEST_VOID
5036 && UCHARAT(PL_reginput) != ST.c1
5037 && UCHARAT(PL_reginput) != ST.c2)
5038 {
5039 /* simulate B failing */
3e901dc0
YO
5040 DEBUG_OPTIMISE_r(
5041 PerlIO_printf(Perl_debug_log,
5042 "%*s CURLYM Fast bail c1=%"IVdf" c2=%"IVdf"\n",
5043 (int)(REPORT_CODE_OFF+(depth*2)),"",
5044 (IV)ST.c1,(IV)ST.c2
5045 ));
40a82448
DM
5046 state_num = CURLYM_B_fail;
5047 goto reenter_switch;
5048 }
5049
5050 if (ST.me->flags) {
5051 /* mark current A as captured */
5052 I32 paren = ST.me->flags;
5053 if (ST.count) {
f0ab9afb 5054 PL_regoffs[paren].start
40a82448 5055 = HOPc(PL_reginput, -ST.alen) - PL_bostr;
f0ab9afb 5056 PL_regoffs[paren].end = PL_reginput - PL_bostr;
0a4db386 5057 /*dmq: *PL_reglastcloseparen = paren; */
c277df42 5058 }
40a82448 5059 else
f0ab9afb 5060 PL_regoffs[paren].end = -1;
0a4db386 5061 if (cur_eval && cur_eval->u.eval.close_paren &&
24b23f37 5062 cur_eval->u.eval.close_paren == (U32)ST.me->flags)
0a4db386
YO
5063 {
5064 if (ST.count)
5065 goto fake_end;
5066 else
5067 sayNO;
5068 }
c277df42 5069 }
0a4db386 5070
40a82448 5071 PUSH_STATE_GOTO(CURLYM_B, ST.B); /* match B */
5f66b61c 5072 /* NOTREACHED */
40a82448
DM
5073
5074 case CURLYM_B_fail: /* just failed to match a B */
5075 REGCP_UNWIND(ST.cp);
5076 if (ST.minmod) {
84d2fa14
HS
5077 I32 max = ARG2(ST.me);
5078 if (max != REG_INFTY && ST.count == max)
40a82448
DM
5079 sayNO;
5080 goto curlym_do_A; /* try to match a further A */
5081 }
5082 /* backtrack one A */
5083 if (ST.count == ARG1(ST.me) /* min */)
5084 sayNO;
5085 ST.count--;
5086 locinput = HOPc(locinput, -ST.alen);
5087 goto curlym_do_B; /* try to match B */
5088
c255a977
DM
5089#undef ST
5090#define ST st->u.curly
40a82448 5091
c255a977
DM
5092#define CURLY_SETPAREN(paren, success) \
5093 if (paren) { \
5094 if (success) { \
f0ab9afb
NC
5095 PL_regoffs[paren].start = HOPc(locinput, -1) - PL_bostr; \
5096 PL_regoffs[paren].end = locinput - PL_bostr; \
0a4db386 5097 *PL_reglastcloseparen = paren; \
c255a977
DM
5098 } \
5099 else \
f0ab9afb 5100 PL_regoffs[paren].end = -1; \
c255a977
DM
5101 }
5102
5103 case STAR: /* /A*B/ where A is width 1 */
5104 ST.paren = 0;
5105 ST.min = 0;
5106 ST.max = REG_INFTY;
a0d0e21e
LW
5107 scan = NEXTOPER(scan);
5108 goto repeat;
c255a977
DM
5109 case PLUS: /* /A+B/ where A is width 1 */
5110 ST.paren = 0;
5111 ST.min = 1;
5112 ST.max = REG_INFTY;
c277df42 5113 scan = NEXTOPER(scan);
c255a977
DM
5114 goto repeat;
5115 case CURLYN: /* /(A){m,n}B/ where A is width 1 */
5116 ST.paren = scan->flags; /* Which paren to set */
5117 if (ST.paren > PL_regsize)
5118 PL_regsize = ST.paren;
3b6647e0 5119 if (ST.paren > *PL_reglastparen)
c255a977
DM
5120 *PL_reglastparen = ST.paren;
5121 ST.min = ARG1(scan); /* min to match */
5122 ST.max = ARG2(scan); /* max to match */
0a4db386 5123 if (cur_eval && cur_eval->u.eval.close_paren &&
86413ec0 5124 cur_eval->u.eval.close_paren == (U32)ST.paren) {
0a4db386
YO
5125 ST.min=1;
5126 ST.max=1;
5127 }
c255a977
DM
5128 scan = regnext(NEXTOPER(scan) + NODE_STEP_REGNODE);
5129 goto repeat;
5130 case CURLY: /* /A{m,n}B/ where A is width 1 */
5131 ST.paren = 0;
5132 ST.min = ARG1(scan); /* min to match */
5133 ST.max = ARG2(scan); /* max to match */
5134 scan = NEXTOPER(scan) + NODE_STEP_REGNODE;
c277df42 5135 repeat:
a0d0e21e
LW
5136 /*
5137 * Lookahead to avoid useless match attempts
5138 * when we know what character comes next.
c255a977 5139 *
5f80c4cf
JP
5140 * Used to only do .*x and .*?x, but now it allows
5141 * for )'s, ('s and (?{ ... })'s to be in the way
5142 * of the quantifier and the EXACT-like node. -- japhy
5143 */
5144
c255a977
DM
5145 if (ST.min > ST.max) /* XXX make this a compile-time check? */
5146 sayNO;
cca55fe3 5147 if (HAS_TEXT(next) || JUMPABLE(next)) {
5f80c4cf
JP
5148 U8 *s;
5149 regnode *text_node = next;
5150
3dab1dad
YO
5151 if (! HAS_TEXT(text_node))
5152 FIND_NEXT_IMPT(text_node);
5f80c4cf 5153
9e137952 5154 if (! HAS_TEXT(text_node))
c255a977 5155 ST.c1 = ST.c2 = CHRTEST_VOID;
5f80c4cf 5156 else {
ee9b8eae 5157 if ( PL_regkind[OP(text_node)] != EXACT ) {
c255a977 5158 ST.c1 = ST.c2 = CHRTEST_VOID;
44a68960 5159 goto assume_ok_easy;
cca55fe3 5160 }
be8e71aa
YO
5161 else
5162 s = (U8*)STRING(text_node);
ee9b8eae
YO
5163
5164 /* Currently we only get here when
5165
5166 PL_rekind[OP(text_node)] == EXACT
5167
5168 if this changes back then the macro for IS_TEXT and
5169 friends need to change. */
f2ed9b32 5170 if (!UTF_PATTERN) {
9a5a5549
KW
5171 ST.c1 = *s;
5172 switch (OP(text_node)) {
5173 case EXACTF: ST.c2 = PL_fold[ST.c1]; break;
2f7f8cb1 5174 case EXACTFA:
9a5a5549
KW
5175 case EXACTFU: ST.c2 = PL_fold_latin1[ST.c1]; break;
5176 case EXACTFL: ST.c2 = PL_fold_locale[ST.c1]; break;
5177 default: ST.c2 = ST.c1; break;
5178 }
1aa99e6b 5179 }
f2ed9b32 5180 else { /* UTF_PATTERN */
9a5a5549 5181 if (IS_TEXTFU(text_node) || IS_TEXTF(text_node)) {
a2a2844f 5182 STRLEN ulen1, ulen2;
89ebb4a3
JH
5183 U8 tmpbuf1[UTF8_MAXBYTES_CASE+1];
5184 U8 tmpbuf2[UTF8_MAXBYTES_CASE+1];
a2a2844f
JH
5185
5186 to_utf8_lower((U8*)s, tmpbuf1, &ulen1);
5187 to_utf8_upper((U8*)s, tmpbuf2, &ulen2);
e294cc5d
JH
5188#ifdef EBCDIC
5189 ST.c1 = utf8n_to_uvchr(tmpbuf1, UTF8_MAXLEN, 0,
5190 ckWARN(WARN_UTF8) ?
5191 0 : UTF8_ALLOW_ANY);
5192 ST.c2 = utf8n_to_uvchr(tmpbuf2, UTF8_MAXLEN, 0,
5193 ckWARN(WARN_UTF8) ?
5194 0 : UTF8_ALLOW_ANY);
5195#else
c255a977 5196 ST.c1 = utf8n_to_uvuni(tmpbuf1, UTF8_MAXBYTES, 0,
e294cc5d 5197 uniflags);
c255a977 5198 ST.c2 = utf8n_to_uvuni(tmpbuf2, UTF8_MAXBYTES, 0,
e294cc5d
JH
5199 uniflags);
5200#endif
5f80c4cf
JP
5201 }
5202 else {
c255a977 5203 ST.c2 = ST.c1 = utf8n_to_uvchr(s, UTF8_MAXBYTES, 0,
041457d9 5204 uniflags);
5f80c4cf 5205 }
1aa99e6b
IH
5206 }
5207 }
bbce6d69 5208 }
a0d0e21e 5209 else
c255a977 5210 ST.c1 = ST.c2 = CHRTEST_VOID;
cca55fe3 5211 assume_ok_easy:
c255a977
DM
5212
5213 ST.A = scan;
5214 ST.B = next;
3280af22 5215 PL_reginput = locinput;
24d3c4a9
DM
5216 if (minmod) {
5217 minmod = 0;
e2e6a0f1 5218 if (ST.min && regrepeat(rex, ST.A, ST.min, depth) < ST.min)
4633a7c4 5219 sayNO;
c255a977 5220 ST.count = ST.min;
a0ed51b3 5221 locinput = PL_reginput;
c255a977
DM
5222 REGCP_SET(ST.cp);
5223 if (ST.c1 == CHRTEST_VOID)
5224 goto curly_try_B_min;
5225
5226 ST.oldloc = locinput;
5227
5228 /* set ST.maxpos to the furthest point along the
5229 * string that could possibly match */
5230 if (ST.max == REG_INFTY) {
5231 ST.maxpos = PL_regeol - 1;
f2ed9b32 5232 if (utf8_target)
c255a977
DM
5233 while (UTF8_IS_CONTINUATION(*(U8*)ST.maxpos))
5234 ST.maxpos--;
5235 }
f2ed9b32 5236 else if (utf8_target) {
c255a977
DM
5237 int m = ST.max - ST.min;
5238 for (ST.maxpos = locinput;
5239 m >0 && ST.maxpos + UTF8SKIP(ST.maxpos) <= PL_regeol; m--)
5240 ST.maxpos += UTF8SKIP(ST.maxpos);
5241 }
5242 else {
5243 ST.maxpos = locinput + ST.max - ST.min;
5244 if (ST.maxpos >= PL_regeol)
5245 ST.maxpos = PL_regeol - 1;
5246 }
5247 goto curly_try_B_min_known;
5248
5249 }
5250 else {
e2e6a0f1 5251 ST.count = regrepeat(rex, ST.A, ST.max, depth);
c255a977
DM
5252 locinput = PL_reginput;
5253 if (ST.count < ST.min)
5254 sayNO;
5255 if ((ST.count > ST.min)
5256 && (PL_regkind[OP(ST.B)] == EOL) && (OP(ST.B) != MEOL))
5257 {
5258 /* A{m,n} must come at the end of the string, there's
5259 * no point in backing off ... */
5260 ST.min = ST.count;
5261 /* ...except that $ and \Z can match before *and* after
5262 newline at the end. Consider "\n\n" =~ /\n+\Z\n/.
5263 We may back off by one in this case. */
5264 if (UCHARAT(PL_reginput - 1) == '\n' && OP(ST.B) != EOS)
5265 ST.min--;
5266 }
5267 REGCP_SET(ST.cp);
5268 goto curly_try_B_max;
5269 }
5270 /* NOTREACHED */
5271
5272
5273 case CURLY_B_min_known_fail:
5274 /* failed to find B in a non-greedy match where c1,c2 valid */
5275 if (ST.paren && ST.count)
f0ab9afb 5276 PL_regoffs[ST.paren].end = -1;
c255a977
DM
5277
5278 PL_reginput = locinput; /* Could be reset... */
5279 REGCP_UNWIND(ST.cp);
5280 /* Couldn't or didn't -- move forward. */
5281 ST.oldloc = locinput;
f2ed9b32 5282 if (utf8_target)
c255a977
DM
5283 locinput += UTF8SKIP(locinput);
5284 else
5285 locinput++;
5286 ST.count++;
5287 curly_try_B_min_known:
5288 /* find the next place where 'B' could work, then call B */
5289 {
5290 int n;
f2ed9b32 5291 if (utf8_target) {
c255a977
DM
5292 n = (ST.oldloc == locinput) ? 0 : 1;
5293 if (ST.c1 == ST.c2) {
5294 STRLEN len;
5295 /* set n to utf8_distance(oldloc, locinput) */
5296 while (locinput <= ST.maxpos &&
5297 utf8n_to_uvchr((U8*)locinput,
5298 UTF8_MAXBYTES, &len,
5299 uniflags) != (UV)ST.c1) {
5300 locinput += len;
5301 n++;
5302 }
1aa99e6b
IH
5303 }
5304 else {
c255a977
DM
5305 /* set n to utf8_distance(oldloc, locinput) */
5306 while (locinput <= ST.maxpos) {
5307 STRLEN len;
5308 const UV c = utf8n_to_uvchr((U8*)locinput,
5309 UTF8_MAXBYTES, &len,
5310 uniflags);
5311 if (c == (UV)ST.c1 || c == (UV)ST.c2)
5312 break;
5313 locinput += len;
5314 n++;
1aa99e6b 5315 }
0fe9bf95
IZ
5316 }
5317 }
c255a977
DM
5318 else {
5319 if (ST.c1 == ST.c2) {
5320 while (locinput <= ST.maxpos &&
5321 UCHARAT(locinput) != ST.c1)
5322 locinput++;
bbce6d69 5323 }
c255a977
DM
5324 else {
5325 while (locinput <= ST.maxpos
5326 && UCHARAT(locinput) != ST.c1
5327 && UCHARAT(locinput) != ST.c2)
5328 locinput++;
a0ed51b3 5329 }
c255a977
DM
5330 n = locinput - ST.oldloc;
5331 }
5332 if (locinput > ST.maxpos)
5333 sayNO;
5334 /* PL_reginput == oldloc now */
5335 if (n) {
5336 ST.count += n;
e2e6a0f1 5337 if (regrepeat(rex, ST.A, n, depth) < n)
4633a7c4 5338 sayNO;
a0d0e21e 5339 }
c255a977
DM
5340 PL_reginput = locinput;
5341 CURLY_SETPAREN(ST.paren, ST.count);
0a4db386 5342 if (cur_eval && cur_eval->u.eval.close_paren &&
86413ec0 5343 cur_eval->u.eval.close_paren == (U32)ST.paren) {
0a4db386
YO
5344 goto fake_end;
5345 }
c255a977 5346 PUSH_STATE_GOTO(CURLY_B_min_known, ST.B);
a0d0e21e 5347 }
c255a977
DM
5348 /* NOTREACHED */
5349
5350
5351 case CURLY_B_min_fail:
5352 /* failed to find B in a non-greedy match where c1,c2 invalid */
5353 if (ST.paren && ST.count)
f0ab9afb 5354 PL_regoffs[ST.paren].end = -1;
c255a977
DM
5355
5356 REGCP_UNWIND(ST.cp);
5357 /* failed -- move forward one */
5358 PL_reginput = locinput;
e2e6a0f1 5359 if (regrepeat(rex, ST.A, 1, depth)) {
c255a977 5360 ST.count++;
a0ed51b3 5361 locinput = PL_reginput;
c255a977
DM
5362 if (ST.count <= ST.max || (ST.max == REG_INFTY &&
5363 ST.count > 0)) /* count overflow ? */
15272685 5364 {
c255a977
DM
5365 curly_try_B_min:
5366 CURLY_SETPAREN(ST.paren, ST.count);
0a4db386 5367 if (cur_eval && cur_eval->u.eval.close_paren &&
86413ec0 5368 cur_eval->u.eval.close_paren == (U32)ST.paren) {
0a4db386
YO
5369 goto fake_end;
5370 }
c255a977 5371 PUSH_STATE_GOTO(CURLY_B_min, ST.B);
a0d0e21e
LW
5372 }
5373 }
4633a7c4 5374 sayNO;
c255a977
DM
5375 /* NOTREACHED */
5376
5377
5378 curly_try_B_max:
5379 /* a successful greedy match: now try to match B */
40d049e4 5380 if (cur_eval && cur_eval->u.eval.close_paren &&
86413ec0 5381 cur_eval->u.eval.close_paren == (U32)ST.paren) {
40d049e4
YO
5382 goto fake_end;
5383 }
c255a977
DM
5384 {
5385 UV c = 0;
5386 if (ST.c1 != CHRTEST_VOID)
f2ed9b32 5387 c = utf8_target ? utf8n_to_uvchr((U8*)PL_reginput,
c255a977 5388 UTF8_MAXBYTES, 0, uniflags)
466787eb 5389 : (UV) UCHARAT(PL_reginput);
c255a977
DM
5390 /* If it could work, try it. */
5391 if (ST.c1 == CHRTEST_VOID || c == (UV)ST.c1 || c == (UV)ST.c2) {
5392 CURLY_SETPAREN(ST.paren, ST.count);
5393 PUSH_STATE_GOTO(CURLY_B_max, ST.B);
5394 /* NOTREACHED */
5395 }
5396 }
5397 /* FALL THROUGH */
5398 case CURLY_B_max_fail:
5399 /* failed to find B in a greedy match */
5400 if (ST.paren && ST.count)
f0ab9afb 5401 PL_regoffs[ST.paren].end = -1;
c255a977
DM
5402
5403 REGCP_UNWIND(ST.cp);
5404 /* back up. */
5405 if (--ST.count < ST.min)
5406 sayNO;
5407 PL_reginput = locinput = HOPc(locinput, -1);
5408 goto curly_try_B_max;
5409
5410#undef ST
5411
a0d0e21e 5412 case END:
6bda09f9 5413 fake_end:
faec1544
DM
5414 if (cur_eval) {
5415 /* we've just finished A in /(??{A})B/; now continue with B */
5416 I32 tmpix;
faec1544
DM
5417 st->u.eval.toggle_reg_flags
5418 = cur_eval->u.eval.toggle_reg_flags;
5419 PL_reg_flags ^= st->u.eval.toggle_reg_flags;
5420
288b8c02
NC
5421 st->u.eval.prev_rex = rex_sv; /* inner */
5422 SETREX(rex_sv,cur_eval->u.eval.prev_rex);
5423 rex = (struct regexp *)SvANY(rex_sv);
f8fc2ecf 5424 rexi = RXi_GET(rex);
faec1544 5425 cur_curlyx = cur_eval->u.eval.prev_curlyx;
cd733337 5426 (void)ReREFCNT_inc(rex_sv);
faec1544 5427 st->u.eval.cp = regcppush(0); /* Save *all* the positions. */
34a81e2b
B
5428
5429 /* rex was changed so update the pointer in PL_reglastparen and PL_reglastcloseparen */
5430 PL_reglastparen = &rex->lastparen;
5431 PL_reglastcloseparen = &rex->lastcloseparen;
5432
faec1544
DM
5433 REGCP_SET(st->u.eval.lastcp);
5434 PL_reginput = locinput;
5435
5436 /* Restore parens of the outer rex without popping the
5437 * savestack */
5438 tmpix = PL_savestack_ix;
5439 PL_savestack_ix = cur_eval->u.eval.lastcp;
5440 regcppop(rex);
5441 PL_savestack_ix = tmpix;
5442
5443 st->u.eval.prev_eval = cur_eval;
5444 cur_eval = cur_eval->u.eval.prev_eval;
5445 DEBUG_EXECUTE_r(
2a49f0f5
JH
5446 PerlIO_printf(Perl_debug_log, "%*s EVAL trying tail ... %"UVxf"\n",
5447 REPORT_CODE_OFF+depth*2, "",PTR2UV(cur_eval)););
e7707071
YO
5448 if ( nochange_depth )
5449 nochange_depth--;
5450
5451 PUSH_YES_STATE_GOTO(EVAL_AB,
faec1544
DM
5452 st->u.eval.prev_eval->u.eval.B); /* match B */
5453 }
5454
3b0527fe 5455 if (locinput < reginfo->till) {
a3621e74 5456 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
7821416a
IZ
5457 "%sMatch possible, but length=%ld is smaller than requested=%ld, failing!%s\n",
5458 PL_colors[4],
5459 (long)(locinput - PL_reg_starttry),
3b0527fe 5460 (long)(reginfo->till - PL_reg_starttry),
7821416a 5461 PL_colors[5]));
58e23c8d 5462
262b90c4 5463 sayNO_SILENT; /* Cannot match: too short. */
7821416a
IZ
5464 }
5465 PL_reginput = locinput; /* put where regtry can find it */
262b90c4 5466 sayYES; /* Success! */
dad79028
DM
5467
5468 case SUCCEED: /* successful SUSPEND/UNLESSM/IFMATCH/CURLYM */
5469 DEBUG_EXECUTE_r(
5470 PerlIO_printf(Perl_debug_log,
5471 "%*s %ssubpattern success...%s\n",
5bc10b2c 5472 REPORT_CODE_OFF+depth*2, "", PL_colors[4], PL_colors[5]));
3280af22 5473 PL_reginput = locinput; /* put where regtry can find it */
262b90c4 5474 sayYES; /* Success! */
dad79028 5475
40a82448
DM
5476#undef ST
5477#define ST st->u.ifmatch
5478
5479 case SUSPEND: /* (?>A) */
5480 ST.wanted = 1;
9fe1d20c 5481 PL_reginput = locinput;
9041c2e3 5482 goto do_ifmatch;
dad79028 5483
40a82448
DM
5484 case UNLESSM: /* -ve lookaround: (?!A), or with flags, (?<!A) */
5485 ST.wanted = 0;
dad79028
DM
5486 goto ifmatch_trivial_fail_test;
5487
40a82448
DM
5488 case IFMATCH: /* +ve lookaround: (?=A), or with flags, (?<=A) */
5489 ST.wanted = 1;
dad79028 5490 ifmatch_trivial_fail_test:
a0ed51b3 5491 if (scan->flags) {
52657f30 5492 char * const s = HOPBACKc(locinput, scan->flags);
dad79028
DM
5493 if (!s) {
5494 /* trivial fail */
24d3c4a9
DM
5495 if (logical) {
5496 logical = 0;
f2338a2e 5497 sw = 1 - cBOOL(ST.wanted);
dad79028 5498 }
40a82448 5499 else if (ST.wanted)
dad79028
DM
5500 sayNO;
5501 next = scan + ARG(scan);
5502 if (next == scan)
5503 next = NULL;
5504 break;
5505 }
efb30f32 5506 PL_reginput = s;
a0ed51b3
LW
5507 }
5508 else
5509 PL_reginput = locinput;
5510
c277df42 5511 do_ifmatch:
40a82448 5512 ST.me = scan;
24d3c4a9 5513 ST.logical = logical;
24d786f4
YO
5514 logical = 0; /* XXX: reset state of logical once it has been saved into ST */
5515
40a82448
DM
5516 /* execute body of (?...A) */
5517 PUSH_YES_STATE_GOTO(IFMATCH_A, NEXTOPER(NEXTOPER(scan)));
5518 /* NOTREACHED */
5519
5520 case IFMATCH_A_fail: /* body of (?...A) failed */
5521 ST.wanted = !ST.wanted;
5522 /* FALL THROUGH */
5523
5524 case IFMATCH_A: /* body of (?...A) succeeded */
24d3c4a9 5525 if (ST.logical) {
f2338a2e 5526 sw = cBOOL(ST.wanted);
40a82448
DM
5527 }
5528 else if (!ST.wanted)
5529 sayNO;
5530
5531 if (OP(ST.me) == SUSPEND)
5532 locinput = PL_reginput;
5533 else {
5534 locinput = PL_reginput = st->locinput;
5535 nextchr = UCHARAT(locinput);
5536 }
5537 scan = ST.me + ARG(ST.me);
5538 if (scan == ST.me)
5539 scan = NULL;
5540 continue; /* execute B */
5541
5542#undef ST
dad79028 5543
c277df42 5544 case LONGJMP:
c277df42
IZ
5545 next = scan + ARG(scan);
5546 if (next == scan)
5547 next = NULL;
a0d0e21e 5548 break;
54612592 5549 case COMMIT:
e2e6a0f1
YO
5550 reginfo->cutpoint = PL_regeol;
5551 /* FALLTHROUGH */
5d458dd8 5552 case PRUNE:
24b23f37 5553 PL_reginput = locinput;
e2e6a0f1 5554 if (!scan->flags)
ad64d0ec 5555 sv_yes_mark = sv_commit = MUTABLE_SV(rexi->data->data[ ARG( scan ) ]);
54612592
YO
5556 PUSH_STATE_GOTO(COMMIT_next,next);
5557 /* NOTREACHED */
5558 case COMMIT_next_fail:
5559 no_final = 1;
5560 /* FALLTHROUGH */
7f69552c
YO
5561 case OPFAIL:
5562 sayNO;
e2e6a0f1
YO
5563 /* NOTREACHED */
5564
5565#define ST st->u.mark
5566 case MARKPOINT:
5567 ST.prev_mark = mark_state;
5d458dd8 5568 ST.mark_name = sv_commit = sv_yes_mark
ad64d0ec 5569 = MUTABLE_SV(rexi->data->data[ ARG( scan ) ]);
e2e6a0f1
YO
5570 mark_state = st;
5571 ST.mark_loc = PL_reginput = locinput;
5572 PUSH_YES_STATE_GOTO(MARKPOINT_next,next);
5573 /* NOTREACHED */
5574 case MARKPOINT_next:
5575 mark_state = ST.prev_mark;
5576 sayYES;
5577 /* NOTREACHED */
5578 case MARKPOINT_next_fail:
5d458dd8 5579 if (popmark && sv_eq(ST.mark_name,popmark))
e2e6a0f1
YO
5580 {
5581 if (ST.mark_loc > startpoint)
5582 reginfo->cutpoint = HOPBACKc(ST.mark_loc, 1);
5583 popmark = NULL; /* we found our mark */
5584 sv_commit = ST.mark_name;
5585
5586 DEBUG_EXECUTE_r({
5d458dd8 5587 PerlIO_printf(Perl_debug_log,
e2e6a0f1
YO
5588 "%*s %ssetting cutpoint to mark:%"SVf"...%s\n",
5589 REPORT_CODE_OFF+depth*2, "",
be2597df 5590 PL_colors[4], SVfARG(sv_commit), PL_colors[5]);
e2e6a0f1
YO
5591 });
5592 }
5593 mark_state = ST.prev_mark;
5d458dd8
YO
5594 sv_yes_mark = mark_state ?
5595 mark_state->u.mark.mark_name : NULL;
e2e6a0f1
YO
5596 sayNO;
5597 /* NOTREACHED */
5d458dd8
YO
5598 case SKIP:
5599 PL_reginput = locinput;
5600 if (scan->flags) {
2bf803e2 5601 /* (*SKIP) : if we fail we cut here*/
5d458dd8 5602 ST.mark_name = NULL;
e2e6a0f1 5603 ST.mark_loc = locinput;
5d458dd8
YO
5604 PUSH_STATE_GOTO(SKIP_next,next);
5605 } else {
2bf803e2 5606 /* (*SKIP:NAME) : if there is a (*MARK:NAME) fail where it was,
5d458dd8
YO
5607 otherwise do nothing. Meaning we need to scan
5608 */
5609 regmatch_state *cur = mark_state;
ad64d0ec 5610 SV *find = MUTABLE_SV(rexi->data->data[ ARG( scan ) ]);
5d458dd8
YO
5611
5612 while (cur) {
5613 if ( sv_eq( cur->u.mark.mark_name,
5614 find ) )
5615 {
5616 ST.mark_name = find;
5617 PUSH_STATE_GOTO( SKIP_next, next );
5618 }
5619 cur = cur->u.mark.prev_mark;
5620 }
e2e6a0f1 5621 }
2bf803e2 5622 /* Didn't find our (*MARK:NAME) so ignore this (*SKIP:NAME) */
5d458dd8
YO
5623 break;
5624 case SKIP_next_fail:
5625 if (ST.mark_name) {
5626 /* (*CUT:NAME) - Set up to search for the name as we
5627 collapse the stack*/
5628 popmark = ST.mark_name;
5629 } else {
5630 /* (*CUT) - No name, we cut here.*/
e2e6a0f1
YO
5631 if (ST.mark_loc > startpoint)
5632 reginfo->cutpoint = HOPBACKc(ST.mark_loc, 1);
5d458dd8
YO
5633 /* but we set sv_commit to latest mark_name if there
5634 is one so they can test to see how things lead to this
5635 cut */
5636 if (mark_state)
5637 sv_commit=mark_state->u.mark.mark_name;
5638 }
e2e6a0f1
YO
5639 no_final = 1;
5640 sayNO;
5641 /* NOTREACHED */
5642#undef ST
32e6a07c
YO
5643 case FOLDCHAR:
5644 n = ARG(scan);
f2ed9b32 5645 if ( n == (U32)what_len_TRICKYFOLD(locinput,utf8_target,ln) ) {
e64b1bd1 5646 locinput += ln;
ced7f090 5647 } else if ( LATIN_SMALL_LETTER_SHARP_S == n && !utf8_target && !UTF_PATTERN ) {
e64b1bd1
YO
5648 sayNO;
5649 } else {
5650 U8 folded[UTF8_MAXBYTES_CASE+1];
5651 STRLEN foldlen;
5652 const char * const l = locinput;
5653 char *e = PL_regeol;
5654 to_uni_fold(n, folded, &foldlen);
5655
4c1b470c 5656 if (! foldEQ_utf8((const char*) folded, 0, foldlen, 1,
f2ed9b32 5657 l, &e, 0, utf8_target)) {
32e6a07c 5658 sayNO;
e64b1bd1
YO
5659 }
5660 locinput = e;
32e6a07c
YO
5661 }
5662 nextchr = UCHARAT(locinput);
5663 break;
e1d1eefb 5664 case LNBREAK:
f2ed9b32 5665 if ((n=is_LNBREAK(locinput,utf8_target))) {
e1d1eefb
YO
5666 locinput += n;
5667 nextchr = UCHARAT(locinput);
5668 } else
5669 sayNO;
5670 break;
5671
5672#define CASE_CLASS(nAmE) \
5673 case nAmE: \
f2ed9b32 5674 if ((n=is_##nAmE(locinput,utf8_target))) { \
e1d1eefb
YO
5675 locinput += n; \
5676 nextchr = UCHARAT(locinput); \
5677 } else \
5678 sayNO; \
5679 break; \
5680 case N##nAmE: \
f2ed9b32 5681 if ((n=is_##nAmE(locinput,utf8_target))) { \
e1d1eefb
YO
5682 sayNO; \
5683 } else { \
5684 locinput += UTF8SKIP(locinput); \
5685 nextchr = UCHARAT(locinput); \
5686 } \
5687 break
5688
5689 CASE_CLASS(VERTWS);
5690 CASE_CLASS(HORIZWS);
5691#undef CASE_CLASS
5692
a0d0e21e 5693 default:
b900a521 5694 PerlIO_printf(Perl_error_log, "%"UVxf" %d\n",
d7d93a81 5695 PTR2UV(scan), OP(scan));
cea2e8a9 5696 Perl_croak(aTHX_ "regexp memory corruption");
5d458dd8
YO
5697
5698 } /* end switch */
95b24440 5699
5d458dd8
YO
5700 /* switch break jumps here */
5701 scan = next; /* prepare to execute the next op and ... */
5702 continue; /* ... jump back to the top, reusing st */
95b24440
DM
5703 /* NOTREACHED */
5704
40a82448
DM
5705 push_yes_state:
5706 /* push a state that backtracks on success */
5707 st->u.yes.prev_yes_state = yes_state;
5708 yes_state = st;
5709 /* FALL THROUGH */
5710 push_state:
5711 /* push a new regex state, then continue at scan */
5712 {
5713 regmatch_state *newst;
5714
24b23f37
YO
5715 DEBUG_STACK_r({
5716 regmatch_state *cur = st;
5717 regmatch_state *curyes = yes_state;
5718 int curd = depth;
5719 regmatch_slab *slab = PL_regmatch_slab;
5720 for (;curd > -1;cur--,curd--) {
5721 if (cur < SLAB_FIRST(slab)) {
5722 slab = slab->prev;
5723 cur = SLAB_LAST(slab);
5724 }
5725 PerlIO_printf(Perl_error_log, "%*s#%-3d %-10s %s\n",
5726 REPORT_CODE_OFF + 2 + depth * 2,"",
13d6edb4 5727 curd, PL_reg_name[cur->resume_state],
24b23f37
YO
5728 (curyes == cur) ? "yes" : ""
5729 );
5730 if (curyes == cur)
5731 curyes = cur->u.yes.prev_yes_state;
5732 }
5733 } else
5734 DEBUG_STATE_pp("push")
5735 );
40a82448 5736 depth++;
40a82448
DM
5737 st->locinput = locinput;
5738 newst = st+1;
5739 if (newst > SLAB_LAST(PL_regmatch_slab))
5740 newst = S_push_slab(aTHX);
5741 PL_regmatch_state = newst;
786e8c11 5742
40a82448
DM
5743 locinput = PL_reginput;
5744 nextchr = UCHARAT(locinput);
5745 st = newst;
5746 continue;
5747 /* NOTREACHED */
5748 }
a0d0e21e 5749 }
a687059c 5750
a0d0e21e
LW
5751 /*
5752 * We get here only if there's trouble -- normally "case END" is
5753 * the terminating point.
5754 */
cea2e8a9 5755 Perl_croak(aTHX_ "corrupted regexp pointers");
a0d0e21e 5756 /*NOTREACHED*/
4633a7c4
LW
5757 sayNO;
5758
262b90c4 5759yes:
77cb431f
DM
5760 if (yes_state) {
5761 /* we have successfully completed a subexpression, but we must now
5762 * pop to the state marked by yes_state and continue from there */
77cb431f 5763 assert(st != yes_state);
5bc10b2c
DM
5764#ifdef DEBUGGING
5765 while (st != yes_state) {
5766 st--;
5767 if (st < SLAB_FIRST(PL_regmatch_slab)) {
5768 PL_regmatch_slab = PL_regmatch_slab->prev;
5769 st = SLAB_LAST(PL_regmatch_slab);
5770 }
e2e6a0f1 5771 DEBUG_STATE_r({
54612592
YO
5772 if (no_final) {
5773 DEBUG_STATE_pp("pop (no final)");
5774 } else {
5775 DEBUG_STATE_pp("pop (yes)");
5776 }
e2e6a0f1 5777 });
5bc10b2c
DM
5778 depth--;
5779 }
5780#else
77cb431f
DM
5781 while (yes_state < SLAB_FIRST(PL_regmatch_slab)
5782 || yes_state > SLAB_LAST(PL_regmatch_slab))
5783 {
5784 /* not in this slab, pop slab */
5785 depth -= (st - SLAB_FIRST(PL_regmatch_slab) + 1);
5786 PL_regmatch_slab = PL_regmatch_slab->prev;
5787 st = SLAB_LAST(PL_regmatch_slab);
5788 }
5789 depth -= (st - yes_state);
5bc10b2c 5790#endif
77cb431f
DM
5791 st = yes_state;
5792 yes_state = st->u.yes.prev_yes_state;
5793 PL_regmatch_state = st;
24b23f37 5794
5d458dd8
YO
5795 if (no_final) {
5796 locinput= st->locinput;
5797 nextchr = UCHARAT(locinput);
5798 }
54612592 5799 state_num = st->resume_state + no_final;
24d3c4a9 5800 goto reenter_switch;
77cb431f
DM
5801 }
5802
a3621e74 5803 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%sMatch successful!%s\n",
e4584336 5804 PL_colors[4], PL_colors[5]));
02db2b7b 5805
19b95bf0
DM
5806 if (PL_reg_eval_set) {
5807 /* each successfully executed (?{...}) block does the equivalent of
5808 * local $^R = do {...}
5809 * When popping the save stack, all these locals would be undone;
5810 * bypass this by setting the outermost saved $^R to the latest
5811 * value */
5812 if (oreplsv != GvSV(PL_replgv))
5813 sv_setsv(oreplsv, GvSV(PL_replgv));
5814 }
95b24440 5815 result = 1;
aa283a38 5816 goto final_exit;
4633a7c4
LW
5817
5818no:
a3621e74 5819 DEBUG_EXECUTE_r(
7821416a 5820 PerlIO_printf(Perl_debug_log,
786e8c11 5821 "%*s %sfailed...%s\n",
5bc10b2c 5822 REPORT_CODE_OFF+depth*2, "",
786e8c11 5823 PL_colors[4], PL_colors[5])
7821416a 5824 );
aa283a38 5825
262b90c4 5826no_silent:
54612592
YO
5827 if (no_final) {
5828 if (yes_state) {
5829 goto yes;
5830 } else {
5831 goto final_exit;
5832 }
5833 }
aa283a38
DM
5834 if (depth) {
5835 /* there's a previous state to backtrack to */
40a82448
DM
5836 st--;
5837 if (st < SLAB_FIRST(PL_regmatch_slab)) {
5838 PL_regmatch_slab = PL_regmatch_slab->prev;
5839 st = SLAB_LAST(PL_regmatch_slab);
5840 }
5841 PL_regmatch_state = st;
40a82448
DM
5842 locinput= st->locinput;
5843 nextchr = UCHARAT(locinput);
5844
5bc10b2c
DM
5845 DEBUG_STATE_pp("pop");
5846 depth--;
262b90c4
DM
5847 if (yes_state == st)
5848 yes_state = st->u.yes.prev_yes_state;
5bc10b2c 5849
24d3c4a9
DM
5850 state_num = st->resume_state + 1; /* failure = success + 1 */
5851 goto reenter_switch;
95b24440 5852 }
24d3c4a9 5853 result = 0;
aa283a38 5854
262b90c4 5855 final_exit:
bbe252da 5856 if (rex->intflags & PREGf_VERBARG_SEEN) {
5d458dd8
YO
5857 SV *sv_err = get_sv("REGERROR", 1);
5858 SV *sv_mrk = get_sv("REGMARK", 1);
5859 if (result) {
e2e6a0f1 5860 sv_commit = &PL_sv_no;
5d458dd8
YO
5861 if (!sv_yes_mark)
5862 sv_yes_mark = &PL_sv_yes;
5863 } else {
5864 if (!sv_commit)
5865 sv_commit = &PL_sv_yes;
5866 sv_yes_mark = &PL_sv_no;
5867 }
5868 sv_setsv(sv_err, sv_commit);
5869 sv_setsv(sv_mrk, sv_yes_mark);
e2e6a0f1 5870 }
19b95bf0 5871
2f554ef7
DM
5872 /* clean up; in particular, free all slabs above current one */
5873 LEAVE_SCOPE(oldsave);
5d9a96ca 5874
95b24440 5875 return result;
a687059c
LW
5876}
5877
5878/*
5879 - regrepeat - repeatedly match something simple, report how many
5880 */
5881/*
5882 * [This routine now assumes that it will only match on things of length 1.
5883 * That was true before, but now we assume scan - reginput is the count,
a0ed51b3 5884 * rather than incrementing count on every character. [Er, except utf8.]]
a687059c 5885 */
76e3520e 5886STATIC I32
e2e6a0f1 5887S_regrepeat(pTHX_ const regexp *prog, const regnode *p, I32 max, int depth)
a687059c 5888{
27da23d5 5889 dVAR;
a0d0e21e 5890 register char *scan;
a0d0e21e 5891 register I32 c;
3280af22 5892 register char *loceol = PL_regeol;
a0ed51b3 5893 register I32 hardcount = 0;
f2ed9b32 5894 register bool utf8_target = PL_reg_match_utf8;
d513472c 5895 UV utf8_flags;
4f55667c
SP
5896#ifndef DEBUGGING
5897 PERL_UNUSED_ARG(depth);
5898#endif
a0d0e21e 5899
7918f24d
NC
5900 PERL_ARGS_ASSERT_REGREPEAT;
5901
3280af22 5902 scan = PL_reginput;
faf11cac
HS
5903 if (max == REG_INFTY)
5904 max = I32_MAX;
5905 else if (max < loceol - scan)
7f596f4c 5906 loceol = scan + max;
a0d0e21e 5907 switch (OP(p)) {
22c35a8c 5908 case REG_ANY:
f2ed9b32 5909 if (utf8_target) {
ffc61ed2 5910 loceol = PL_regeol;
1aa99e6b 5911 while (scan < loceol && hardcount < max && *scan != '\n') {
ffc61ed2
JH
5912 scan += UTF8SKIP(scan);
5913 hardcount++;
5914 }
5915 } else {
5916 while (scan < loceol && *scan != '\n')
5917 scan++;
a0ed51b3
LW
5918 }
5919 break;
ffc61ed2 5920 case SANY:
f2ed9b32 5921 if (utf8_target) {
def8e4ea 5922 loceol = PL_regeol;
a0804c9e 5923 while (scan < loceol && hardcount < max) {
def8e4ea
JH
5924 scan += UTF8SKIP(scan);
5925 hardcount++;
5926 }
5927 }
5928 else
5929 scan = loceol;
a0ed51b3 5930 break;
f33976b4
DB
5931 case CANY:
5932 scan = loceol;
5933 break;
59d32103
KW
5934 case EXACT:
5935 /* To get here, EXACTish nodes must have *byte* length == 1. That
5936 * means they match only characters in the string that can be expressed
5937 * as a single byte. For non-utf8 strings, that means a simple match.
5938 * For utf8 strings, the character matched must be an invariant, or
5939 * downgradable to a single byte. The pattern's utf8ness is
5940 * irrelevant, as since it's a single byte, it either isn't utf8, or if
5941 * it is, it's an invariant */
5942
5943 c = (U8)*STRING(p);
5944 assert(! UTF_PATTERN || UNI_IS_INVARIANT(c));
5945
5946 if (! utf8_target || UNI_IS_INVARIANT(c)) {
5947 while (scan < loceol && UCHARAT(scan) == c) {
5948 scan++;
5949 }
5950 }
5951 else {
5952
5953 /* Here, the string is utf8, and the pattern char is different
5954 * in utf8 than not, so can't compare them directly. Outside the
5955 * loop, find find the two utf8 bytes that represent c, and then
5956 * look for those in sequence in the utf8 string */
5957 U8 high = UTF8_TWO_BYTE_HI(c);
5958 U8 low = UTF8_TWO_BYTE_LO(c);
5959 loceol = PL_regeol;
5960
5961 while (hardcount < max
5962 && scan + 1 < loceol
5963 && UCHARAT(scan) == high
5964 && UCHARAT(scan + 1) == low)
5965 {
5966 scan += 2;
5967 hardcount++;
5968 }
5969 }
5970 break;
2f7f8cb1
KW
5971 case EXACTFA:
5972 utf8_flags = FOLDEQ_UTF8_NOMIX_ASCII;
5973 goto do_exactf;
5974
d4e0b827
KW
5975 case EXACTFL:
5976 PL_reg_flags |= RF_tainted;
17580e7a
KW
5977 utf8_flags = FOLDEQ_UTF8_LOCALE;
5978 goto do_exactf;
5979
d4e0b827 5980 case EXACTF:
9a5a5549 5981 case EXACTFU:
d513472c 5982 utf8_flags = 0;
59d32103 5983
2be3e190
KW
5984 /* The comments for the EXACT case above apply as well to these fold
5985 * ones */
634c83a2 5986
2f7f8cb1 5987 do_exactf:
090f7165 5988 c = (U8)*STRING(p);
634c83a2 5989 assert(! UTF_PATTERN || UNI_IS_INVARIANT(c));
d4e0b827 5990
59d32103 5991 if (utf8_target) { /* Use full Unicode fold matching */
59d32103
KW
5992 char *tmpeol = loceol;
5993 while (hardcount < max
d513472c
KW
5994 && foldEQ_utf8_flags(scan, &tmpeol, 0, utf8_target,
5995 STRING(p), NULL, 1, cBOOL(UTF_PATTERN), utf8_flags))
59d32103
KW
5996 {
5997 scan = tmpeol;
5998 tmpeol = loceol;
5999 hardcount++;
6000 }
634c83a2 6001
59d32103
KW
6002 /* XXX Note that the above handles properly the German sharp s in
6003 * the pattern matching ss in the string. But it doesn't handle
6004 * properly cases where the string contains say 'LIGATURE ff' and
6005 * the pattern is 'f+'. This would require, say, a new function or
6006 * revised interface to foldEQ_utf8(), in which the maximum number
6007 * of characters to match could be passed and it would return how
6008 * many actually did. This is just one of many cases where
6009 * multi-char folds don't work properly, and so the fix is being
6010 * deferred */
6011 }
6012 else {
87381386 6013 U8 folded;
59d32103 6014
2be3e190
KW
6015 /* Here, the string isn't utf8 and c is a single byte; and either
6016 * the pattern isn't utf8 or c is an invariant, so its utf8ness
6017 * doesn't affect c. Can just do simple comparisons for exact or
6018 * fold matching. */
d4e0b827 6019 switch (OP(p)) {
87381386 6020 case EXACTF: folded = PL_fold[c]; break;
2f7f8cb1 6021 case EXACTFA:
9a5a5549 6022 case EXACTFU: folded = PL_fold_latin1[c]; break;
87381386
KW
6023 case EXACTFL: folded = PL_fold_locale[c]; break;
6024 default: Perl_croak(aTHX_ "panic: Unexpected op %u", OP(p));
6025 }
6026 while (scan < loceol &&
6027 (UCHARAT(scan) == c || UCHARAT(scan) == folded))
6028 {
6029 scan++;
634c83a2
KW
6030 }
6031 }
bbce6d69 6032 break;
f56b6394 6033 case ANYOFV:
a0d0e21e 6034 case ANYOF:
4e8910e0
KW
6035 if (utf8_target || OP(p) == ANYOFV) {
6036 STRLEN inclasslen;
ffc61ed2 6037 loceol = PL_regeol;
4e8910e0
KW
6038 inclasslen = loceol - scan;
6039 while (hardcount < max
6040 && ((inclasslen = loceol - scan) > 0)
6041 && reginclass(prog, p, (U8*)scan, &inclasslen, utf8_target))
6042 {
6043 scan += inclasslen;
ffc61ed2
JH
6044 hardcount++;
6045 }
6046 } else {
32fc9b6a 6047 while (scan < loceol && REGINCLASS(prog, p, (U8*)scan))
ffc61ed2
JH
6048 scan++;
6049 }
a0d0e21e 6050 break;
980866de 6051 case ALNUMU:
f2ed9b32 6052 if (utf8_target) {
980866de 6053 utf8_wordchar:
ffc61ed2 6054 loceol = PL_regeol;
1a4fad37 6055 LOAD_UTF8_CHARCLASS_ALNUM();
1aa99e6b 6056 while (hardcount < max && scan < loceol &&
a12cf05f
KW
6057 swash_fetch(PL_utf8_alnum, (U8*)scan, utf8_target))
6058 {
ffc61ed2
JH
6059 scan += UTF8SKIP(scan);
6060 hardcount++;
6061 }
980866de 6062 } else {
a12cf05f
KW
6063 while (scan < loceol && isWORDCHAR_L1((U8) *scan)) {
6064 scan++;
6065 }
980866de
KW
6066 }
6067 break;
6068 case ALNUM:
6069 if (utf8_target)
6070 goto utf8_wordchar;
6071 while (scan < loceol && isALNUM((U8) *scan)) {
6072 scan++;
a0ed51b3
LW
6073 }
6074 break;
cfaf538b
KW
6075 case ALNUMA:
6076 while (scan < loceol && isWORDCHAR_A((U8) *scan)) {
6077 scan++;
6078 }
6079 break;
bbce6d69 6080 case ALNUML:
3280af22 6081 PL_reg_flags |= RF_tainted;
f2ed9b32 6082 if (utf8_target) {
ffc61ed2 6083 loceol = PL_regeol;
1aa99e6b
IH
6084 while (hardcount < max && scan < loceol &&
6085 isALNUM_LC_utf8((U8*)scan)) {
ffc61ed2
JH
6086 scan += UTF8SKIP(scan);
6087 hardcount++;
6088 }
6089 } else {
6090 while (scan < loceol && isALNUM_LC(*scan))
6091 scan++;
a0ed51b3
LW
6092 }
6093 break;
980866de 6094 case NALNUMU:
f2ed9b32 6095 if (utf8_target) {
980866de
KW
6096
6097 utf8_Nwordchar:
6098
ffc61ed2 6099 loceol = PL_regeol;
1a4fad37 6100 LOAD_UTF8_CHARCLASS_ALNUM();
1aa99e6b 6101 while (hardcount < max && scan < loceol &&
980866de 6102 ! swash_fetch(PL_utf8_alnum, (U8*)scan, utf8_target))
a12cf05f 6103 {
ffc61ed2
JH
6104 scan += UTF8SKIP(scan);
6105 hardcount++;
6106 }
980866de 6107 } else {
a12cf05f
KW
6108 while (scan < loceol && ! isWORDCHAR_L1((U8) *scan)) {
6109 scan++;
6110 }
980866de
KW
6111 }
6112 break;
6113 case NALNUM:
6114 if (utf8_target)
6115 goto utf8_Nwordchar;
6116 while (scan < loceol && ! isALNUM((U8) *scan)) {
6117 scan++;
a0ed51b3
LW
6118 }
6119 break;
cfaf538b
KW
6120 case NALNUMA:
6121 if (utf8_target) {
6122 while (scan < loceol && ! isWORDCHAR_A((U8) *scan)) {
6123 scan += UTF8SKIP(scan);
6124 }
6125 }
6126 else {
6127 while (scan < loceol && ! isWORDCHAR_A((U8) *scan)) {
6128 scan++;
6129 }
6130 }
6131 break;
bbce6d69 6132 case NALNUML:
3280af22 6133 PL_reg_flags |= RF_tainted;
f2ed9b32 6134 if (utf8_target) {
ffc61ed2 6135 loceol = PL_regeol;
1aa99e6b
IH
6136 while (hardcount < max && scan < loceol &&
6137 !isALNUM_LC_utf8((U8*)scan)) {
ffc61ed2
JH
6138 scan += UTF8SKIP(scan);
6139 hardcount++;
6140 }
6141 } else {
6142 while (scan < loceol && !isALNUM_LC(*scan))
6143 scan++;
a0ed51b3
LW
6144 }
6145 break;
980866de 6146 case SPACEU:
f2ed9b32 6147 if (utf8_target) {
980866de
KW
6148
6149 utf8_space:
6150
ffc61ed2 6151 loceol = PL_regeol;
1a4fad37 6152 LOAD_UTF8_CHARCLASS_SPACE();
1aa99e6b 6153 while (hardcount < max && scan < loceol &&
3568d838 6154 (*scan == ' ' ||
a12cf05f
KW
6155 swash_fetch(PL_utf8_space,(U8*)scan, utf8_target)))
6156 {
ffc61ed2
JH
6157 scan += UTF8SKIP(scan);
6158 hardcount++;
6159 }
980866de
KW
6160 break;
6161 }
6162 else {
a12cf05f
KW
6163 while (scan < loceol && isSPACE_L1((U8) *scan)) {
6164 scan++;
6165 }
980866de
KW
6166 break;
6167 }
6168 case SPACE:
6169 if (utf8_target)
6170 goto utf8_space;
6171
6172 while (scan < loceol && isSPACE((U8) *scan)) {
6173 scan++;
a0ed51b3
LW
6174 }
6175 break;
cfaf538b
KW
6176 case SPACEA:
6177 while (scan < loceol && isSPACE_A((U8) *scan)) {
6178 scan++;
6179 }
6180 break;
bbce6d69 6181 case SPACEL:
3280af22 6182 PL_reg_flags |= RF_tainted;
f2ed9b32 6183 if (utf8_target) {
ffc61ed2 6184 loceol = PL_regeol;
1aa99e6b 6185 while (hardcount < max && scan < loceol &&
6bbba904 6186 isSPACE_LC_utf8((U8*)scan)) {
ffc61ed2
JH
6187 scan += UTF8SKIP(scan);
6188 hardcount++;
6189 }
6190 } else {
6191 while (scan < loceol && isSPACE_LC(*scan))
6192 scan++;
a0ed51b3
LW
6193 }
6194 break;
980866de 6195 case NSPACEU:
f2ed9b32 6196 if (utf8_target) {
980866de
KW
6197
6198 utf8_Nspace:
6199
ffc61ed2 6200 loceol = PL_regeol;
1a4fad37 6201 LOAD_UTF8_CHARCLASS_SPACE();
1aa99e6b 6202 while (hardcount < max && scan < loceol &&
980866de
KW
6203 ! (*scan == ' ' ||
6204 swash_fetch(PL_utf8_space,(U8*)scan, utf8_target)))
a12cf05f 6205 {
ffc61ed2
JH
6206 scan += UTF8SKIP(scan);
6207 hardcount++;
6208 }
980866de
KW
6209 break;
6210 }
6211 else {
a12cf05f
KW
6212 while (scan < loceol && ! isSPACE_L1((U8) *scan)) {
6213 scan++;
6214 }
980866de
KW
6215 }
6216 break;
6217 case NSPACE:
6218 if (utf8_target)
6219 goto utf8_Nspace;
6220
6221 while (scan < loceol && ! isSPACE((U8) *scan)) {
6222 scan++;
a0ed51b3 6223 }
0008a298 6224 break;
cfaf538b
KW
6225 case NSPACEA:
6226 if (utf8_target) {
6227 while (scan < loceol && ! isSPACE_A((U8) *scan)) {
6228 scan += UTF8SKIP(scan);
6229 }
6230 }
6231 else {
6232 while (scan < loceol && ! isSPACE_A((U8) *scan)) {
6233 scan++;
6234 }
6235 }
6236 break;
bbce6d69 6237 case NSPACEL:
3280af22 6238 PL_reg_flags |= RF_tainted;
f2ed9b32 6239 if (utf8_target) {
ffc61ed2 6240 loceol = PL_regeol;
1aa99e6b 6241 while (hardcount < max && scan < loceol &&
6bbba904 6242 !isSPACE_LC_utf8((U8*)scan)) {
ffc61ed2
JH
6243 scan += UTF8SKIP(scan);
6244 hardcount++;
6245 }
6246 } else {
6247 while (scan < loceol && !isSPACE_LC(*scan))
6248 scan++;
a0ed51b3
LW
6249 }
6250 break;
a0d0e21e 6251 case DIGIT:
f2ed9b32 6252 if (utf8_target) {
ffc61ed2 6253 loceol = PL_regeol;
1a4fad37 6254 LOAD_UTF8_CHARCLASS_DIGIT();
1aa99e6b 6255 while (hardcount < max && scan < loceol &&
f2ed9b32 6256 swash_fetch(PL_utf8_digit, (U8*)scan, utf8_target)) {
ffc61ed2
JH
6257 scan += UTF8SKIP(scan);
6258 hardcount++;
6259 }
6260 } else {
6261 while (scan < loceol && isDIGIT(*scan))
6262 scan++;
a0ed51b3
LW
6263 }
6264 break;
cfaf538b
KW
6265 case DIGITA:
6266 while (scan < loceol && isDIGIT_A((U8) *scan)) {
6267 scan++;
6268 }
6269 break;
b77393f6
KW
6270 case DIGITL:
6271 PL_reg_flags |= RF_tainted;
6272 if (utf8_target) {
6273 loceol = PL_regeol;
6274 while (hardcount < max && scan < loceol &&
6275 isDIGIT_LC_utf8((U8*)scan)) {
6276 scan += UTF8SKIP(scan);
6277 hardcount++;
6278 }
6279 } else {
6280 while (scan < loceol && isDIGIT_LC(*scan))
6281 scan++;
6282 }
6283 break;
a0d0e21e 6284 case NDIGIT:
f2ed9b32 6285 if (utf8_target) {
ffc61ed2 6286 loceol = PL_regeol;
1a4fad37 6287 LOAD_UTF8_CHARCLASS_DIGIT();
1aa99e6b 6288 while (hardcount < max && scan < loceol &&
f2ed9b32 6289 !swash_fetch(PL_utf8_digit, (U8*)scan, utf8_target)) {
ffc61ed2
JH
6290 scan += UTF8SKIP(scan);
6291 hardcount++;
6292 }
6293 } else {
6294 while (scan < loceol && !isDIGIT(*scan))
6295 scan++;
a0ed51b3 6296 }
cfaf538b
KW
6297 break;
6298 case NDIGITA:
6299 if (utf8_target) {
6300 while (scan < loceol && ! isDIGIT_A((U8) *scan)) {
6301 scan += UTF8SKIP(scan);
6302 }
6303 }
6304 else {
6305 while (scan < loceol && ! isDIGIT_A((U8) *scan)) {
6306 scan++;
6307 }
6308 }
6309 break;
b77393f6
KW
6310 case NDIGITL:
6311 PL_reg_flags |= RF_tainted;
6312 if (utf8_target) {
6313 loceol = PL_regeol;
6314 while (hardcount < max && scan < loceol &&
6315 !isDIGIT_LC_utf8((U8*)scan)) {
6316 scan += UTF8SKIP(scan);
6317 hardcount++;
6318 }
6319 } else {
6320 while (scan < loceol && !isDIGIT_LC(*scan))
6321 scan++;
6322 }
6323 break;
e1d1eefb 6324 case LNBREAK:
f2ed9b32 6325 if (utf8_target) {
e1d1eefb
YO
6326 loceol = PL_regeol;
6327 while (hardcount < max && scan < loceol && (c=is_LNBREAK_utf8(scan))) {
6328 scan += c;
6329 hardcount++;
6330 }
6331 } else {
6332 /*
6333 LNBREAK can match two latin chars, which is ok,
6334 because we have a null terminated string, but we
6335 have to use hardcount in this situation
6336 */
6337 while (scan < loceol && (c=is_LNBREAK_latin1(scan))) {
6338 scan+=c;
6339 hardcount++;
6340 }
6341 }
6342 break;
6343 case HORIZWS:
f2ed9b32 6344 if (utf8_target) {
e1d1eefb
YO
6345 loceol = PL_regeol;
6346 while (hardcount < max && scan < loceol && (c=is_HORIZWS_utf8(scan))) {
6347 scan += c;
6348 hardcount++;
6349 }
6350 } else {
6351 while (scan < loceol && is_HORIZWS_latin1(scan))
6352 scan++;
6353 }
a0ed51b3 6354 break;
e1d1eefb 6355 case NHORIZWS:
f2ed9b32 6356 if (utf8_target) {
e1d1eefb
YO
6357 loceol = PL_regeol;
6358 while (hardcount < max && scan < loceol && !is_HORIZWS_utf8(scan)) {
6359 scan += UTF8SKIP(scan);
6360 hardcount++;
6361 }
6362 } else {
6363 while (scan < loceol && !is_HORIZWS_latin1(scan))
6364 scan++;
6365
6366 }
6367 break;
6368 case VERTWS:
f2ed9b32 6369 if (utf8_target) {
e1d1eefb
YO
6370 loceol = PL_regeol;
6371 while (hardcount < max && scan < loceol && (c=is_VERTWS_utf8(scan))) {
6372 scan += c;
6373 hardcount++;
6374 }
6375 } else {
6376 while (scan < loceol && is_VERTWS_latin1(scan))
6377 scan++;
6378
6379 }
6380 break;
6381 case NVERTWS:
f2ed9b32 6382 if (utf8_target) {
e1d1eefb
YO
6383 loceol = PL_regeol;
6384 while (hardcount < max && scan < loceol && !is_VERTWS_utf8(scan)) {
6385 scan += UTF8SKIP(scan);
6386 hardcount++;
6387 }
6388 } else {
6389 while (scan < loceol && !is_VERTWS_latin1(scan))
6390 scan++;
6391
6392 }
6393 break;
6394
a0d0e21e
LW
6395 default: /* Called on something of 0 width. */
6396 break; /* So match right here or not at all. */
6397 }
a687059c 6398
a0ed51b3
LW
6399 if (hardcount)
6400 c = hardcount;
6401 else
6402 c = scan - PL_reginput;
3280af22 6403 PL_reginput = scan;
a687059c 6404
a3621e74 6405 DEBUG_r({
e68ec53f 6406 GET_RE_DEBUG_FLAGS_DECL;
be8e71aa 6407 DEBUG_EXECUTE_r({
e68ec53f
YO
6408 SV * const prop = sv_newmortal();
6409 regprop(prog, prop, p);
6410 PerlIO_printf(Perl_debug_log,
be8e71aa 6411 "%*s %s can match %"IVdf" times out of %"IVdf"...\n",
e2e6a0f1 6412 REPORT_CODE_OFF + depth*2, "", SvPVX_const(prop),(IV)c,(IV)max);
a3621e74 6413 });
be8e71aa 6414 });
9041c2e3 6415
a0d0e21e 6416 return(c);
a687059c
LW
6417}
6418
c277df42 6419
be8e71aa 6420#if !defined(PERL_IN_XSUB_RE) || defined(PLUGGABLE_RE_EXTENSION)
c277df42 6421/*
ffc61ed2
JH
6422- regclass_swash - prepare the utf8 swash
6423*/
6424
6425SV *
32fc9b6a 6426Perl_regclass_swash(pTHX_ const regexp *prog, register const regnode* node, bool doinit, SV** listsvp, SV **altsvp)
ffc61ed2 6427{
97aff369 6428 dVAR;
9e55ce06
JH
6429 SV *sw = NULL;
6430 SV *si = NULL;
6431 SV *alt = NULL;
f8fc2ecf
YO
6432 RXi_GET_DECL(prog,progi);
6433 const struct reg_data * const data = prog ? progi->data : NULL;
ffc61ed2 6434
7918f24d
NC
6435 PERL_ARGS_ASSERT_REGCLASS_SWASH;
6436
ccb2541c
KW
6437 assert(ANYOF_NONBITMAP(node));
6438
4f639d21 6439 if (data && data->count) {
a3b680e6 6440 const U32 n = ARG(node);
ffc61ed2 6441
4f639d21 6442 if (data->what[n] == 's') {
ad64d0ec
NC
6443 SV * const rv = MUTABLE_SV(data->data[n]);
6444 AV * const av = MUTABLE_AV(SvRV(rv));
2d03de9c 6445 SV **const ary = AvARRAY(av);
9e55ce06 6446 SV **a, **b;
9041c2e3 6447
711a919c 6448 /* See the end of regcomp.c:S_regclass() for
9e55ce06
JH
6449 * documentation of these array elements. */
6450
b11f357e 6451 si = *ary;
fe5bfecd
JH
6452 a = SvROK(ary[1]) ? &ary[1] : NULL;
6453 b = SvTYPE(ary[2]) == SVt_PVAV ? &ary[2] : NULL;
b11f357e 6454
ffc61ed2
JH
6455 if (a)
6456 sw = *a;
6457 else if (si && doinit) {
6458 sw = swash_init("utf8", "", si, 1, 0);
6459 (void)av_store(av, 1, sw);
6460 }
9e55ce06
JH
6461 if (b)
6462 alt = *b;
ffc61ed2
JH
6463 }
6464 }
6465
9e55ce06
JH
6466 if (listsvp)
6467 *listsvp = si;
6468 if (altsvp)
6469 *altsvp = alt;
ffc61ed2
JH
6470
6471 return sw;
6472}
76234dfb 6473#endif
ffc61ed2
JH
6474
6475/*
ba7b4546 6476 - reginclass - determine if a character falls into a character class
832705d4 6477
6698fab5
KW
6478 n is the ANYOF regnode
6479 p is the target string
6480 lenp is pointer to the maximum number of bytes of how far to go in p
6481 (This is assumed wthout checking to always be at least the current
6482 character's size)
6483 utf8_target tells whether p is in UTF-8.
832705d4 6484
4b3cda86
KW
6485 Returns true if matched; false otherwise. If lenp is not NULL, on return
6486 from a successful match, the value it points to will be updated to how many
6487 bytes in p were matched. If there was no match, the value is undefined,
6488 possibly changed from the input.
eba1359e 6489
d5788240
KW
6490 Note that this can be a synthetic start class, a combination of various
6491 nodes, so things you think might be mutually exclusive, such as locale,
6492 aren't. It can match both locale and non-locale
6493
bbce6d69 6494 */
6495
76e3520e 6496STATIC bool
f6ad78d8 6497S_reginclass(pTHX_ const regexp * const prog, register const regnode * const n, register const U8* const p, STRLEN* lenp, register const bool utf8_target)
bbce6d69 6498{
27da23d5 6499 dVAR;
a3b680e6 6500 const char flags = ANYOF_FLAGS(n);
bbce6d69 6501 bool match = FALSE;
cc07378b 6502 UV c = *p;
f7ab54c6 6503 STRLEN c_len = 0;
6698fab5 6504 STRLEN maxlen;
1aa99e6b 6505
7918f24d
NC
6506 PERL_ARGS_ASSERT_REGINCLASS;
6507
4b3cda86 6508 /* If c is not already the code point, get it */
f2ed9b32 6509 if (utf8_target && !UTF8_IS_INVARIANT(c)) {
f7ab54c6 6510 c = utf8n_to_uvchr(p, UTF8_MAXBYTES, &c_len,
6182169b
KW
6511 (UTF8_ALLOW_DEFAULT & UTF8_ALLOW_ANYUV)
6512 | UTF8_ALLOW_FFFF | UTF8_CHECK_ONLY);
6513 /* see [perl #37836] for UTF8_ALLOW_ANYUV; [perl #38293] for
6514 * UTF8_ALLOW_FFFF */
f7ab54c6 6515 if (c_len == (STRLEN)-1)
e8a70c6f 6516 Perl_croak(aTHX_ "Malformed UTF-8 character (fatal)");
19f67299 6517 }
a5a291f5
KW
6518 else {
6519 c_len = 1;
6520 }
bbce6d69 6521
a5a291f5
KW
6522 /* Use passed in max length, or one character if none passed in or less
6523 * than one character. And assume will match just one character. This is
6524 * overwritten later if matched more. */
4b3cda86 6525 if (lenp) {
a5a291f5
KW
6526 maxlen = (*lenp > c_len) ? *lenp : c_len;
6527 *lenp = c_len;
4b3cda86
KW
6528
6529 }
6530 else {
a5a291f5 6531 maxlen = c_len;
4b3cda86
KW
6532 }
6533
7cdde544
KW
6534 /* If this character is potentially in the bitmap, check it */
6535 if (c < 256) {
ffc61ed2
JH
6536 if (ANYOF_BITMAP_TEST(n, c))
6537 match = TRUE;
11454c59
KW
6538 else if (flags & ANYOF_NON_UTF8_LATIN1_ALL
6539 && ! utf8_target
6540 && ! isASCII(c))
6541 {
6542 match = TRUE;
6543 }
a0ed51b3 6544
78969a98
KW
6545 else if (flags & ANYOF_LOCALE) {
6546 PL_reg_flags |= RF_tainted;
6547
6548 if ((flags & ANYOF_LOC_NONBITMAP_FOLD)
6549 && ANYOF_BITMAP_TEST(n, PL_fold_locale[c]))
6550 {
ffc61ed2 6551 match = TRUE;
78969a98 6552 }
040aea3a
KW
6553 else if (ANYOF_CLASS_TEST_ANY_SET(n) &&
6554 ((ANYOF_CLASS_TEST(n, ANYOF_ALNUM) && isALNUM_LC(c)) ||
6555 (ANYOF_CLASS_TEST(n, ANYOF_NALNUM) && !isALNUM_LC(c)) ||
6556 (ANYOF_CLASS_TEST(n, ANYOF_SPACE) && isSPACE_LC(c)) ||
6557 (ANYOF_CLASS_TEST(n, ANYOF_NSPACE) && !isSPACE_LC(c)) ||
6558 (ANYOF_CLASS_TEST(n, ANYOF_DIGIT) && isDIGIT_LC(c)) ||
6559 (ANYOF_CLASS_TEST(n, ANYOF_NDIGIT) && !isDIGIT_LC(c)) ||
6560 (ANYOF_CLASS_TEST(n, ANYOF_ALNUMC) && isALNUMC_LC(c)) ||
6561 (ANYOF_CLASS_TEST(n, ANYOF_NALNUMC) && !isALNUMC_LC(c)) ||
6562 (ANYOF_CLASS_TEST(n, ANYOF_ALPHA) && isALPHA_LC(c)) ||
6563 (ANYOF_CLASS_TEST(n, ANYOF_NALPHA) && !isALPHA_LC(c)) ||
6564 (ANYOF_CLASS_TEST(n, ANYOF_ASCII) && isASCII(c)) ||
6565 (ANYOF_CLASS_TEST(n, ANYOF_NASCII) && !isASCII(c)) ||
6566 (ANYOF_CLASS_TEST(n, ANYOF_CNTRL) && isCNTRL_LC(c)) ||
6567 (ANYOF_CLASS_TEST(n, ANYOF_NCNTRL) && !isCNTRL_LC(c)) ||
6568 (ANYOF_CLASS_TEST(n, ANYOF_GRAPH) && isGRAPH_LC(c)) ||
6569 (ANYOF_CLASS_TEST(n, ANYOF_NGRAPH) && !isGRAPH_LC(c)) ||
6570 (ANYOF_CLASS_TEST(n, ANYOF_LOWER) && isLOWER_LC(c)) ||
6571 (ANYOF_CLASS_TEST(n, ANYOF_NLOWER) && !isLOWER_LC(c)) ||
6572 (ANYOF_CLASS_TEST(n, ANYOF_PRINT) && isPRINT_LC(c)) ||
6573 (ANYOF_CLASS_TEST(n, ANYOF_NPRINT) && !isPRINT_LC(c)) ||
6574 (ANYOF_CLASS_TEST(n, ANYOF_PUNCT) && isPUNCT_LC(c)) ||
6575 (ANYOF_CLASS_TEST(n, ANYOF_NPUNCT) && !isPUNCT_LC(c)) ||
6576 (ANYOF_CLASS_TEST(n, ANYOF_UPPER) && isUPPER_LC(c)) ||
6577 (ANYOF_CLASS_TEST(n, ANYOF_NUPPER) && !isUPPER_LC(c)) ||
6578 (ANYOF_CLASS_TEST(n, ANYOF_XDIGIT) && isXDIGIT(c)) ||
6579 (ANYOF_CLASS_TEST(n, ANYOF_NXDIGIT) && !isXDIGIT(c)) ||
6580 (ANYOF_CLASS_TEST(n, ANYOF_PSXSPC) && isPSXSPC(c)) ||
6581 (ANYOF_CLASS_TEST(n, ANYOF_NPSXSPC) && !isPSXSPC(c)) ||
6582 (ANYOF_CLASS_TEST(n, ANYOF_BLANK) && isBLANK(c)) ||
6583 (ANYOF_CLASS_TEST(n, ANYOF_NBLANK) && !isBLANK(c))
6584 ) /* How's that for a conditional? */
78969a98 6585 ) {
ffc61ed2
JH
6586 match = TRUE;
6587 }
a0ed51b3 6588 }
a0ed51b3
LW
6589 }
6590
7cdde544 6591 /* If the bitmap didn't (or couldn't) match, and something outside the
de87c4fe
KW
6592 * bitmap could match, try that. Locale nodes specifiy completely the
6593 * behavior of code points in the bit map (otherwise, a utf8 target would
c613755a 6594 * cause them to be treated as Unicode and not locale), except in
de87c4fe 6595 * the very unlikely event when this node is a synthetic start class, which
c613755a
KW
6596 * could be a combination of locale and non-locale nodes. So allow locale
6597 * to match for the synthetic start class, which will give a false
6598 * positive that will be resolved when the match is done again as not part
6599 * of the synthetic start class */
ef87b810 6600 if (!match) {
10ee90d2
KW
6601 if (utf8_target && (flags & ANYOF_UNICODE_ALL) && c >= 256) {
6602 match = TRUE; /* Everything above 255 matches */
e051a21d 6603 }
6f8d7d0d
KW
6604 else if (ANYOF_NONBITMAP(n)
6605 && ((flags & ANYOF_NONBITMAP_NON_UTF8)
6606 || (utf8_target
6607 && (c >=256
6608 || (! (flags & ANYOF_LOCALE))
6609 || (flags & ANYOF_IS_SYNTHETIC)))))
ef87b810 6610 {
7cdde544
KW
6611 AV *av;
6612 SV * const sw = regclass_swash(prog, n, TRUE, 0, (SV**)&av);
6613
6614 if (sw) {
6615 U8 * utf8_p;
6616 if (utf8_target) {
6617 utf8_p = (U8 *) p;
6618 } else {
f56b6394
KW
6619
6620 /* Not utf8. Convert as much of the string as available up
6621 * to the limit of how far the (single) character in the
6622 * pattern can possibly match (no need to go further). If
6623 * the node is a straight ANYOF or not folding, it can't
6624 * match more than one. Otherwise, It can match up to how
6625 * far a single char can fold to. Since not utf8, each
6626 * character is a single byte, so the max it can be in
6627 * bytes is the same as the max it can be in characters */
6628 STRLEN len = (OP(n) == ANYOF
6629 || ! (flags & ANYOF_LOC_NONBITMAP_FOLD))
6630 ? 1
6631 : (maxlen < UTF8_MAX_FOLD_CHAR_EXPAND)
6632 ? maxlen
6633 : UTF8_MAX_FOLD_CHAR_EXPAND;
7cdde544
KW
6634 utf8_p = bytes_to_utf8(p, &len);
6635 }
f56b6394 6636
f7eb7452 6637 if (swash_fetch(sw, utf8_p, TRUE))
7cdde544 6638 match = TRUE;
39065660 6639 else if (flags & ANYOF_LOC_NONBITMAP_FOLD) {
f56b6394
KW
6640
6641 /* Here, we need to test if the fold of the target string
8d5d17fa
KW
6642 * matches. The non-multi char folds have all been moved to
6643 * the compilation phase, and the multi-char folds have
6644 * been stored by regcomp into 'av'; we linearly check to
6645 * see if any match the target string (folded). We know
6646 * that the originals were each one character, but we don't
6647 * currently know how many characters/bytes each folded to,
6648 * except we do know that there are small limits imposed by
6649 * Unicode. XXX A performance enhancement would be to have
6650 * regcomp.c store the max number of chars/bytes that are
6651 * in an av entry, as, say the 0th element. Even better
6652 * would be to have a hash of the few characters that can
6653 * start a multi-char fold to the max number of chars of
6654 * those folds.
f56b6394
KW
6655 *
6656 * If there is a match, we will need to advance (if lenp is
6657 * specified) the match pointer in the target string. But
6658 * what we are comparing here isn't that string directly,
6659 * but its fold, whose length may differ from the original.
6660 * As we go along in constructing the fold, therefore, we
6661 * create a map so that we know how many bytes in the
6662 * source to advance given that we have matched a certain
6663 * number of bytes in the fold. This map is stored in
6438af90
KW
6664 * 'map_fold_len_back'. Let n mean the number of bytes in
6665 * the fold of the first character that we are folding.
6666 * Then map_fold_len_back[n] is set to the number of bytes
6667 * in that first character. Similarly let m be the
6668 * corresponding number for the second character to be
6669 * folded. Then map_fold_len_back[n+m] is set to the
6670 * number of bytes occupied by the first two source
6671 * characters. ... */
6672 U8 map_fold_len_back[UTF8_MAXBYTES_CASE+1] = { 0 };
f56b6394
KW
6673 U8 folded[UTF8_MAXBYTES_CASE+1];
6674 STRLEN foldlen = 0; /* num bytes in fold of 1st char */
deba3d96 6675 STRLEN total_foldlen = 0; /* num bytes in fold of all
6438af90 6676 chars */
f56b6394
KW
6677
6678 if (OP(n) == ANYOF || maxlen == 1 || ! lenp || ! av) {
6679
6680 /* Here, only need to fold the first char of the target
6438af90 6681 * string. It the source wasn't utf8, is 1 byte long */
f56b6394 6682 to_utf8_fold(utf8_p, folded, &foldlen);
deba3d96 6683 total_foldlen = foldlen;
6438af90
KW
6684 map_fold_len_back[foldlen] = (utf8_target)
6685 ? UTF8SKIP(utf8_p)
6686 : 1;
f56b6394
KW
6687 }
6688 else {
6689
6690 /* Here, need to fold more than the first char. Do so
6691 * up to the limits */
f56b6394
KW
6692 U8* source_ptr = utf8_p; /* The source for the fold
6693 is the regex target
6694 string */
6695 U8* folded_ptr = folded;
6696 U8* e = utf8_p + maxlen; /* Can't go beyond last
6697 available byte in the
6698 target string */
6438af90
KW
6699 U8 i;
6700 for (i = 0;
6701 i < UTF8_MAX_FOLD_CHAR_EXPAND && source_ptr < e;
6702 i++)
f56b6394
KW
6703 {
6704
6705 /* Fold the next character */
6706 U8 this_char_folded[UTF8_MAXBYTES_CASE+1];
6707 STRLEN this_char_foldlen;
6708 to_utf8_fold(source_ptr,
6709 this_char_folded,
6710 &this_char_foldlen);
6711
6712 /* Bail if it would exceed the byte limit for
6713 * folding a single char. */
6714 if (this_char_foldlen + folded_ptr - folded >
6715 UTF8_MAXBYTES_CASE)
6716 {
6717 break;
6718 }
6719
6438af90 6720 /* Add the fold of this character */
f56b6394
KW
6721 Copy(this_char_folded,
6722 folded_ptr,
6723 this_char_foldlen,
6724 U8);
f56b6394 6725 source_ptr += UTF8SKIP(source_ptr);
6438af90 6726 folded_ptr += this_char_foldlen;
deba3d96 6727 total_foldlen = folded_ptr - folded;
6438af90
KW
6728
6729 /* Create map from the number of bytes in the fold
6730 * back to the number of bytes in the source. If
6731 * the source isn't utf8, the byte count is just
6732 * the number of characters so far */
deba3d96 6733 map_fold_len_back[total_foldlen]
6438af90
KW
6734 = (utf8_target)
6735 ? source_ptr - utf8_p
6736 : i + 1;
f56b6394
KW
6737 }
6738 *folded_ptr = '\0';
f56b6394
KW
6739 }
6740
6741
6742 /* Do the linear search to see if the fold is in the list
8f2655f7
KW
6743 * of multi-char folds. */
6744 if (av) {
7cdde544
KW
6745 I32 i;
6746 for (i = 0; i <= av_len(av); i++) {
6747 SV* const sv = *av_fetch(av, i, FALSE);
6748 STRLEN len;
6749 const char * const s = SvPV_const(sv, len);
6438af90 6750
f9126265
KW
6751 if (len <= total_foldlen
6752 && memEQ(s, (char*)folded, len)
6753
6754 /* If 0, means matched a partial char. See
6755 * [perl #90536] */
6756 && map_fold_len_back[len])
f56b6394
KW
6757 {
6758
6759 /* Advance the target string ptr to account for
6760 * this fold, but have to translate from the
6761 * folded length to the corresponding source
6438af90 6762 * length. */
8f2655f7
KW
6763 if (lenp) {
6764 *lenp = map_fold_len_back[len];
8f2655f7 6765 }
7cdde544
KW
6766 match = TRUE;
6767 break;
6768 }
6769 }
6770 }
7cdde544
KW
6771 }
6772
6773 /* If we allocated a string above, free it */
6774 if (! utf8_target) Safefree(utf8_p);
6775 }
6776 }
6777 }
6778
a0ed51b3
LW
6779 return (flags & ANYOF_INVERT) ? !match : match;
6780}
161b471a 6781
dfe13c55 6782STATIC U8 *
0ce71af7 6783S_reghop3(U8 *s, I32 off, const U8* lim)
9041c2e3 6784{
97aff369 6785 dVAR;
7918f24d
NC
6786
6787 PERL_ARGS_ASSERT_REGHOP3;
6788
a0ed51b3 6789 if (off >= 0) {
1aa99e6b 6790 while (off-- && s < lim) {
ffc61ed2 6791 /* XXX could check well-formedness here */
a0ed51b3 6792 s += UTF8SKIP(s);
ffc61ed2 6793 }
a0ed51b3
LW
6794 }
6795 else {
1de06328
YO
6796 while (off++ && s > lim) {
6797 s--;
6798 if (UTF8_IS_CONTINUED(*s)) {
6799 while (s > lim && UTF8_IS_CONTINUATION(*s))
6800 s--;
a0ed51b3 6801 }
1de06328 6802 /* XXX could check well-formedness here */
a0ed51b3
LW
6803 }
6804 }
6805 return s;
6806}
161b471a 6807
f9f4320a
YO
6808#ifdef XXX_dmq
6809/* there are a bunch of places where we use two reghop3's that should
6810 be replaced with this routine. but since thats not done yet
6811 we ifdef it out - dmq
6812*/
dfe13c55 6813STATIC U8 *
1de06328
YO
6814S_reghop4(U8 *s, I32 off, const U8* llim, const U8* rlim)
6815{
6816 dVAR;
7918f24d
NC
6817
6818 PERL_ARGS_ASSERT_REGHOP4;
6819
1de06328
YO
6820 if (off >= 0) {
6821 while (off-- && s < rlim) {
6822 /* XXX could check well-formedness here */
6823 s += UTF8SKIP(s);
6824 }
6825 }
6826 else {
6827 while (off++ && s > llim) {
6828 s--;
6829 if (UTF8_IS_CONTINUED(*s)) {
6830 while (s > llim && UTF8_IS_CONTINUATION(*s))
6831 s--;
6832 }
6833 /* XXX could check well-formedness here */
6834 }
6835 }
6836 return s;
6837}
f9f4320a 6838#endif
1de06328
YO
6839
6840STATIC U8 *
0ce71af7 6841S_reghopmaybe3(U8* s, I32 off, const U8* lim)
a0ed51b3 6842{
97aff369 6843 dVAR;
7918f24d
NC
6844
6845 PERL_ARGS_ASSERT_REGHOPMAYBE3;
6846
a0ed51b3 6847 if (off >= 0) {
1aa99e6b 6848 while (off-- && s < lim) {
ffc61ed2 6849 /* XXX could check well-formedness here */
a0ed51b3 6850 s += UTF8SKIP(s);
ffc61ed2 6851 }
a0ed51b3 6852 if (off >= 0)
3dab1dad 6853 return NULL;
a0ed51b3
LW
6854 }
6855 else {
1de06328
YO
6856 while (off++ && s > lim) {
6857 s--;
6858 if (UTF8_IS_CONTINUED(*s)) {
6859 while (s > lim && UTF8_IS_CONTINUATION(*s))
6860 s--;
a0ed51b3 6861 }
1de06328 6862 /* XXX could check well-formedness here */
a0ed51b3
LW
6863 }
6864 if (off <= 0)
3dab1dad 6865 return NULL;
a0ed51b3
LW
6866 }
6867 return s;
6868}
51371543 6869
51371543 6870static void
acfe0abc 6871restore_pos(pTHX_ void *arg)
51371543 6872{
97aff369 6873 dVAR;
097eb12c 6874 regexp * const rex = (regexp *)arg;
51371543
GS
6875 if (PL_reg_eval_set) {
6876 if (PL_reg_oldsaved) {
4f639d21
DM
6877 rex->subbeg = PL_reg_oldsaved;
6878 rex->sublen = PL_reg_oldsavedlen;
f8c7b90f 6879#ifdef PERL_OLD_COPY_ON_WRITE
4f639d21 6880 rex->saved_copy = PL_nrs;
ed252734 6881#endif
07bc277f 6882 RXp_MATCH_COPIED_on(rex);
51371543
GS
6883 }
6884 PL_reg_magic->mg_len = PL_reg_oldpos;
6885 PL_reg_eval_set = 0;
6886 PL_curpm = PL_reg_oldcurpm;
6887 }
6888}
33b8afdf
JH
6889
6890STATIC void
6891S_to_utf8_substr(pTHX_ register regexp *prog)
6892{
a1cac82e 6893 int i = 1;
7918f24d
NC
6894
6895 PERL_ARGS_ASSERT_TO_UTF8_SUBSTR;
6896
a1cac82e
NC
6897 do {
6898 if (prog->substrs->data[i].substr
6899 && !prog->substrs->data[i].utf8_substr) {
6900 SV* const sv = newSVsv(prog->substrs->data[i].substr);
6901 prog->substrs->data[i].utf8_substr = sv;
6902 sv_utf8_upgrade(sv);
610460f9 6903 if (SvVALID(prog->substrs->data[i].substr)) {
cffe132d 6904 if (SvTAIL(prog->substrs->data[i].substr)) {
610460f9
NC
6905 /* Trim the trailing \n that fbm_compile added last
6906 time. */
6907 SvCUR_set(sv, SvCUR(sv) - 1);
6908 /* Whilst this makes the SV technically "invalid" (as its
6909 buffer is no longer followed by "\0") when fbm_compile()
6910 adds the "\n" back, a "\0" is restored. */
cffe132d
NC
6911 fbm_compile(sv, FBMcf_TAIL);
6912 } else
6913 fbm_compile(sv, 0);
610460f9 6914 }
a1cac82e
NC
6915 if (prog->substrs->data[i].substr == prog->check_substr)
6916 prog->check_utf8 = sv;
6917 }
6918 } while (i--);
33b8afdf
JH
6919}
6920
6921STATIC void
6922S_to_byte_substr(pTHX_ register regexp *prog)
6923{
97aff369 6924 dVAR;
a1cac82e 6925 int i = 1;
7918f24d
NC
6926
6927 PERL_ARGS_ASSERT_TO_BYTE_SUBSTR;
6928
a1cac82e
NC
6929 do {
6930 if (prog->substrs->data[i].utf8_substr
6931 && !prog->substrs->data[i].substr) {
6932 SV* sv = newSVsv(prog->substrs->data[i].utf8_substr);
6933 if (sv_utf8_downgrade(sv, TRUE)) {
610460f9 6934 if (SvVALID(prog->substrs->data[i].utf8_substr)) {
cffe132d 6935 if (SvTAIL(prog->substrs->data[i].utf8_substr)) {
610460f9
NC
6936 /* Trim the trailing \n that fbm_compile added last
6937 time. */
6938 SvCUR_set(sv, SvCUR(sv) - 1);
cffe132d
NC
6939 fbm_compile(sv, FBMcf_TAIL);
6940 } else
6941 fbm_compile(sv, 0);
6942 }
a1cac82e
NC
6943 } else {
6944 SvREFCNT_dec(sv);
6945 sv = &PL_sv_undef;
6946 }
6947 prog->substrs->data[i].substr = sv;
6948 if (prog->substrs->data[i].utf8_substr == prog->check_utf8)
6949 prog->check_substr = sv;
33b8afdf 6950 }
a1cac82e 6951 } while (i--);
33b8afdf 6952}
66610fdd
RGS
6953
6954/*
6955 * Local variables:
6956 * c-indentation-style: bsd
6957 * c-basic-offset: 4
6958 * indent-tabs-mode: t
6959 * End:
6960 *
37442d52
RGS
6961 * ex: set ts=8 sts=4 sw=4 noet:
6962 */