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