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