5 * "One Ring to rule them all, One Ring to find them..."
8 /* This file contains functions for executing a regular expression. See
9 * also regcomp.c which funnily enough, contains functions for compiling
10 * a regular expression.
12 * This file is also copied at build time to ext/re/re_exec.c, where
13 * it's built with -DPERL_EXT_RE_BUILD -DPERL_EXT_RE_DEBUG -DPERL_EXT.
14 * This causes the main functions to be compiled under new names and with
15 * debugging support added, which makes "use re 'debug'" work.
19 /* NOTE: this is derived from Henry Spencer's regexp code, and should not
20 * confused with the original package (see point 3 below). Thanks, Henry!
23 /* Additional note: this code is very heavily munged from Henry's version
24 * in places. In some spots I've traded clarity for efficiency, so don't
25 * blame Henry for some of the lack of readability.
28 /* The names of the functions have been changed from regcomp and
29 * regexec to pregcomp and pregexec in order to avoid conflicts
30 * with the POSIX routines of the same names.
33 #ifdef PERL_EXT_RE_BUILD
34 /* need to replace pregcomp et al, so enable that */
35 # ifndef PERL_IN_XSUB_RE
36 # define PERL_IN_XSUB_RE
38 /* need access to debugger hooks */
39 # if defined(PERL_EXT_RE_DEBUG) && !defined(DEBUGGING)
44 #ifdef PERL_IN_XSUB_RE
45 /* We *really* need to overwrite these symbols: */
46 # define Perl_regexec_flags my_regexec
47 # define Perl_regdump my_regdump
48 # define Perl_regprop my_regprop
49 # define Perl_re_intuit_start my_re_intuit_start
50 /* *These* symbols are masked to allow static link. */
51 # define Perl_pregexec my_pregexec
52 # define Perl_reginitcolors my_reginitcolors
53 # define Perl_regclass_swash my_regclass_swash
55 # define PERL_NO_GET_CONTEXT
59 * pregcomp and pregexec -- regsub and regerror are not used in perl
61 * Copyright (c) 1986 by University of Toronto.
62 * Written by Henry Spencer. Not derived from licensed software.
64 * Permission is granted to anyone to use this software for any
65 * purpose on any computer system, and to redistribute it freely,
66 * subject to the following restrictions:
68 * 1. The author is not responsible for the consequences of use of
69 * this software, no matter how awful, even if they arise
72 * 2. The origin of this software must not be misrepresented, either
73 * by explicit claim or by omission.
75 * 3. Altered versions must be plainly marked as such, and must not
76 * be misrepresented as being the original software.
78 **** Alterations to Henry's code are...
80 **** Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
81 **** 2000, 2001, 2002, 2003, 2004, 2005, 2006, by Larry Wall and others
83 **** You may distribute under the terms of either the GNU General Public
84 **** License or the Artistic License, as specified in the README file.
86 * Beware that some of this code is subtly aware of the way operator
87 * precedence is structured in regular expressions. Serious changes in
88 * regular-expression syntax might require a total rethink.
91 #define PERL_IN_REGEXEC_C
96 #define RF_tainted 1 /* tainted information used? */
97 #define RF_warned 2 /* warned about big count? */
98 #define RF_evaled 4 /* Did an EVAL with setting? */
99 #define RF_utf8 8 /* String contains multibyte chars? */
101 #define UTF ((PL_reg_flags & RF_utf8) != 0)
103 #define RS_init 1 /* eval environment created */
104 #define RS_set 2 /* replsv value is set */
107 #define STATIC static
110 #define REGINCLASS(p,c) (ANYOF_FLAGS(p) ? reginclass(p,c,0,0) : ANYOF_BITMAP_TEST(p,*(c)))
116 #define CHR_SVLEN(sv) (do_utf8 ? sv_len_utf8(sv) : SvCUR(sv))
117 #define CHR_DIST(a,b) (PL_reg_match_utf8 ? utf8_distance(a,b) : a - b)
119 #define reghop_c(pos,off) ((char*)reghop((U8*)pos, off))
120 #define reghopmaybe_c(pos,off) ((char*)reghopmaybe((U8*)pos, off))
121 #define HOP(pos,off) (PL_reg_match_utf8 ? reghop((U8*)pos, off) : (U8*)(pos + off))
122 #define HOPMAYBE(pos,off) (PL_reg_match_utf8 ? reghopmaybe((U8*)pos, off) : (U8*)(pos + off))
123 #define HOPc(pos,off) ((char*)HOP(pos,off))
124 #define HOPMAYBEc(pos,off) ((char*)HOPMAYBE(pos,off))
126 #define HOPBACK(pos, off) ( \
127 (PL_reg_match_utf8) \
128 ? reghopmaybe((U8*)pos, -off) \
129 : (pos - off >= PL_bostr) \
133 #define HOPBACKc(pos, off) (char*)HOPBACK(pos, off)
135 #define reghop3_c(pos,off,lim) ((char*)reghop3((U8*)pos, off, (U8*)lim))
136 #define reghopmaybe3_c(pos,off,lim) ((char*)reghopmaybe3((U8*)pos, off, (U8*)lim))
137 #define HOP3(pos,off,lim) (PL_reg_match_utf8 ? reghop3((U8*)pos, off, (U8*)lim) : (U8*)(pos + off))
138 #define HOPMAYBE3(pos,off,lim) (PL_reg_match_utf8 ? reghopmaybe3((U8*)pos, off, (U8*)lim) : (U8*)(pos + off))
139 #define HOP3c(pos,off,lim) ((char*)HOP3(pos,off,lim))
140 #define HOPMAYBE3c(pos,off,lim) ((char*)HOPMAYBE3(pos,off,lim))
142 #define LOAD_UTF8_CHARCLASS(class,str) STMT_START { \
143 if (!CAT2(PL_utf8_,class)) { bool ok; ENTER; save_re_context(); ok=CAT2(is_utf8_,class)((const U8*)str); assert(ok); LEAVE; } } STMT_END
144 #define LOAD_UTF8_CHARCLASS_ALNUM() LOAD_UTF8_CHARCLASS(alnum,"a")
145 #define LOAD_UTF8_CHARCLASS_DIGIT() LOAD_UTF8_CHARCLASS(digit,"0")
146 #define LOAD_UTF8_CHARCLASS_SPACE() LOAD_UTF8_CHARCLASS(space," ")
147 #define LOAD_UTF8_CHARCLASS_MARK() LOAD_UTF8_CHARCLASS(mark, "\xcd\x86")
149 /* for use after a quantifier and before an EXACT-like node -- japhy */
150 #define JUMPABLE(rn) ( \
151 OP(rn) == OPEN || OP(rn) == CLOSE || OP(rn) == EVAL || \
152 OP(rn) == SUSPEND || OP(rn) == IFMATCH || \
153 OP(rn) == PLUS || OP(rn) == MINMOD || \
154 (PL_regkind[(U8)OP(rn)] == CURLY && ARG1(rn) > 0) \
157 #define HAS_TEXT(rn) ( \
158 PL_regkind[(U8)OP(rn)] == EXACT || PL_regkind[(U8)OP(rn)] == REF \
162 Search for mandatory following text node; for lookahead, the text must
163 follow but for lookbehind (rn->flags != 0) we skip to the next step.
165 #define FIND_NEXT_IMPT(rn) STMT_START { \
166 while (JUMPABLE(rn)) \
167 if (OP(rn) == SUSPEND || PL_regkind[(U8)OP(rn)] == CURLY) \
168 rn = NEXTOPER(NEXTOPER(rn)); \
169 else if (OP(rn) == PLUS) \
171 else if (OP(rn) == IFMATCH) \
172 rn = (rn->flags == 0) ? NEXTOPER(NEXTOPER(rn)) : rn + ARG(rn); \
173 else rn += NEXT_OFF(rn); \
176 static void restore_pos(pTHX_ void *arg);
179 S_regcppush(pTHX_ I32 parenfloor)
182 const int retval = PL_savestack_ix;
183 #define REGCP_PAREN_ELEMS 4
184 const int paren_elems_to_push = (PL_regsize - parenfloor) * REGCP_PAREN_ELEMS;
187 if (paren_elems_to_push < 0)
188 Perl_croak(aTHX_ "panic: paren_elems_to_push < 0");
190 #define REGCP_OTHER_ELEMS 6
191 SSGROW(paren_elems_to_push + REGCP_OTHER_ELEMS);
192 for (p = PL_regsize; p > parenfloor; p--) {
193 /* REGCP_PARENS_ELEMS are pushed per pairs of parentheses. */
194 SSPUSHINT(PL_regendp[p]);
195 SSPUSHINT(PL_regstartp[p]);
196 SSPUSHPTR(PL_reg_start_tmp[p]);
199 /* REGCP_OTHER_ELEMS are pushed in any case, parentheses or no. */
200 SSPUSHINT(PL_regsize);
201 SSPUSHINT(*PL_reglastparen);
202 SSPUSHINT(*PL_reglastcloseparen);
203 SSPUSHPTR(PL_reginput);
204 #define REGCP_FRAME_ELEMS 2
205 /* REGCP_FRAME_ELEMS are part of the REGCP_OTHER_ELEMS and
206 * are needed for the regexp context stack bookkeeping. */
207 SSPUSHINT(paren_elems_to_push + REGCP_OTHER_ELEMS - REGCP_FRAME_ELEMS);
208 SSPUSHINT(SAVEt_REGCONTEXT); /* Magic cookie. */
213 /* These are needed since we do not localize EVAL nodes: */
214 # define REGCP_SET(cp) DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, \
215 " Setting an EVAL scope, savestack=%"IVdf"\n", \
216 (IV)PL_savestack_ix)); cp = PL_savestack_ix
218 # define REGCP_UNWIND(cp) DEBUG_EXECUTE_r(cp != PL_savestack_ix ? \
219 PerlIO_printf(Perl_debug_log, \
220 " Clearing an EVAL scope, savestack=%"IVdf"..%"IVdf"\n", \
221 (IV)(cp), (IV)PL_savestack_ix) : 0); regcpblow(cp)
231 GET_RE_DEBUG_FLAGS_DECL;
233 /* Pop REGCP_OTHER_ELEMS before the parentheses loop starts. */
235 assert(i == SAVEt_REGCONTEXT); /* Check that the magic cookie is there. */
236 i = SSPOPINT; /* Parentheses elements to pop. */
237 input = (char *) SSPOPPTR;
238 *PL_reglastcloseparen = SSPOPINT;
239 *PL_reglastparen = SSPOPINT;
240 PL_regsize = SSPOPINT;
242 /* Now restore the parentheses context. */
243 for (i -= (REGCP_OTHER_ELEMS - REGCP_FRAME_ELEMS);
244 i > 0; i -= REGCP_PAREN_ELEMS) {
246 paren = (U32)SSPOPINT;
247 PL_reg_start_tmp[paren] = (char *) SSPOPPTR;
248 PL_regstartp[paren] = SSPOPINT;
250 if (paren <= *PL_reglastparen)
251 PL_regendp[paren] = tmps;
253 PerlIO_printf(Perl_debug_log,
254 " restoring \\%"UVuf" to %"IVdf"(%"IVdf")..%"IVdf"%s\n",
255 (UV)paren, (IV)PL_regstartp[paren],
256 (IV)(PL_reg_start_tmp[paren] - PL_bostr),
257 (IV)PL_regendp[paren],
258 (paren > *PL_reglastparen ? "(no)" : ""));
262 if ((I32)(*PL_reglastparen + 1) <= PL_regnpar) {
263 PerlIO_printf(Perl_debug_log,
264 " restoring \\%"IVdf"..\\%"IVdf" to undef\n",
265 (IV)(*PL_reglastparen + 1), (IV)PL_regnpar);
269 /* It would seem that the similar code in regtry()
270 * already takes care of this, and in fact it is in
271 * a better location to since this code can #if 0-ed out
272 * but the code in regtry() is needed or otherwise tests
273 * requiring null fields (pat.t#187 and split.t#{13,14}
274 * (as of patchlevel 7877) will fail. Then again,
275 * this code seems to be necessary or otherwise
276 * building DynaLoader will fail:
277 * "Error: '*' not in typemap in DynaLoader.xs, line 164"
279 for (paren = *PL_reglastparen + 1; (I32)paren <= PL_regnpar; paren++) {
280 if ((I32)paren > PL_regsize)
281 PL_regstartp[paren] = -1;
282 PL_regendp[paren] = -1;
288 typedef struct re_cc_state
292 struct re_cc_state *prev;
297 #define regcpblow(cp) LEAVE_SCOPE(cp) /* Ignores regcppush()ed data. */
299 #define TRYPAREN(paren, n, input, where) { \
302 PL_regstartp[paren] = HOPc(input, -1) - PL_bostr; \
303 PL_regendp[paren] = input - PL_bostr; \
306 PL_regendp[paren] = -1; \
308 REGMATCH(next, where); \
312 PL_regendp[paren] = -1; \
317 * pregexec and friends
321 - pregexec - match a regexp against a string
324 Perl_pregexec(pTHX_ register regexp *prog, char *stringarg, register char *strend,
325 char *strbeg, I32 minend, SV *screamer, U32 nosave)
326 /* strend: pointer to null at end of string */
327 /* strbeg: real beginning of string */
328 /* minend: end of match must be >=minend after stringarg. */
329 /* nosave: For optimizations. */
332 regexec_flags(prog, stringarg, strend, strbeg, minend, screamer, NULL,
333 nosave ? 0 : REXEC_COPY_STR);
337 S_cache_re(pTHX_ regexp *prog)
340 PL_regprecomp = prog->precomp; /* Needed for FAIL. */
342 PL_regprogram = prog->program;
344 PL_regnpar = prog->nparens;
345 PL_regdata = prog->data;
350 * Need to implement the following flags for reg_anch:
352 * USE_INTUIT_NOML - Useful to call re_intuit_start() first
354 * INTUIT_AUTORITATIVE_NOML - Can trust a positive answer
355 * INTUIT_AUTORITATIVE_ML
356 * INTUIT_ONCE_NOML - Intuit can match in one location only.
359 * Another flag for this function: SECOND_TIME (so that float substrs
360 * with giant delta may be not rechecked).
363 /* Assumptions: if ANCH_GPOS, then strpos is anchored. XXXX Check GPOS logic */
365 /* If SCREAM, then SvPVX_const(sv) should be compatible with strpos and strend.
366 Otherwise, only SvCUR(sv) is used to get strbeg. */
368 /* XXXX We assume that strpos is strbeg unless sv. */
370 /* XXXX Some places assume that there is a fixed substring.
371 An update may be needed if optimizer marks as "INTUITable"
372 RExen without fixed substrings. Similarly, it is assumed that
373 lengths of all the strings are no more than minlen, thus they
374 cannot come from lookahead.
375 (Or minlen should take into account lookahead.) */
377 /* A failure to find a constant substring means that there is no need to make
378 an expensive call to REx engine, thus we celebrate a failure. Similarly,
379 finding a substring too deep into the string means that less calls to
380 regtry() should be needed.
382 REx compiler's optimizer found 4 possible hints:
383 a) Anchored substring;
385 c) Whether we are anchored (beginning-of-line or \G);
386 d) First node (of those at offset 0) which may distingush positions;
387 We use a)b)d) and multiline-part of c), and try to find a position in the
388 string which does not contradict any of them.
391 /* Most of decisions we do here should have been done at compile time.
392 The nodes of the REx which we used for the search should have been
393 deleted from the finite automaton. */
396 Perl_re_intuit_start(pTHX_ regexp *prog, SV *sv, char *strpos,
397 char *strend, U32 flags, re_scream_pos_data *data)
400 register I32 start_shift = 0;
401 /* Should be nonnegative! */
402 register I32 end_shift = 0;
407 const int do_utf8 = sv ? SvUTF8(sv) : 0; /* if no sv we have to assume bytes */
409 register char *other_last = NULL; /* other substr checked before this */
410 char *check_at = NULL; /* check substr found at this pos */
411 const I32 multiline = prog->reganch & PMf_MULTILINE;
413 const char * const i_strpos = strpos;
414 SV * const dsv = PERL_DEBUG_PAD_ZERO(0);
417 GET_RE_DEBUG_FLAGS_DECL;
419 RX_MATCH_UTF8_set(prog,do_utf8);
421 if (prog->reganch & ROPT_UTF8) {
422 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
423 "UTF-8 regex...\n"));
424 PL_reg_flags |= RF_utf8;
428 const char *s = PL_reg_match_utf8 ?
429 sv_uni_display(dsv, sv, 60, UNI_DISPLAY_REGEX) :
431 const int len = PL_reg_match_utf8 ?
432 strlen(s) : strend - strpos;
435 if (PL_reg_match_utf8)
436 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
437 "UTF-8 target...\n"));
438 PerlIO_printf(Perl_debug_log,
439 "%sGuessing start of match, REx%s \"%s%.60s%s%s\" against \"%s%.*s%s%s\"...\n",
440 PL_colors[4], PL_colors[5], PL_colors[0],
443 (strlen(prog->precomp) > 60 ? "..." : ""),
445 (int)(len > 60 ? 60 : len),
447 (len > 60 ? "..." : "")
451 /* CHR_DIST() would be more correct here but it makes things slow. */
452 if (prog->minlen > strend - strpos) {
453 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
454 "String too short... [re_intuit_start]\n"));
457 strbeg = (sv && SvPOK(sv)) ? strend - SvCUR(sv) : strpos;
460 if (!prog->check_utf8 && prog->check_substr)
461 to_utf8_substr(prog);
462 check = prog->check_utf8;
464 if (!prog->check_substr && prog->check_utf8)
465 to_byte_substr(prog);
466 check = prog->check_substr;
468 if (check == &PL_sv_undef) {
469 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
470 "Non-utf string cannot match utf check string\n"));
473 if (prog->reganch & ROPT_ANCH) { /* Match at beg-of-str or after \n */
474 ml_anch = !( (prog->reganch & ROPT_ANCH_SINGLE)
475 || ( (prog->reganch & ROPT_ANCH_BOL)
476 && !multiline ) ); /* Check after \n? */
479 if ( !(prog->reganch & (ROPT_ANCH_GPOS /* Checked by the caller */
480 | ROPT_IMPLICIT)) /* not a real BOL */
481 /* SvCUR is not set on references: SvRV and SvPVX_const overlap */
483 && (strpos != strbeg)) {
484 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Not at start...\n"));
487 if (prog->check_offset_min == prog->check_offset_max &&
488 !(prog->reganch & ROPT_CANY_SEEN)) {
489 /* Substring at constant offset from beg-of-str... */
492 s = HOP3c(strpos, prog->check_offset_min, strend);
494 slen = SvCUR(check); /* >= 1 */
496 if ( strend - s > slen || strend - s < slen - 1
497 || (strend - s == slen && strend[-1] != '\n')) {
498 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "String too long...\n"));
501 /* Now should match s[0..slen-2] */
503 if (slen && (*SvPVX_const(check) != *s
505 && memNE(SvPVX_const(check), s, slen)))) {
507 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "String not equal...\n"));
511 else if (*SvPVX_const(check) != *s
512 || ((slen = SvCUR(check)) > 1
513 && memNE(SvPVX_const(check), s, slen)))
516 goto success_at_start;
519 /* Match is anchored, but substr is not anchored wrt beg-of-str. */
521 start_shift = prog->check_offset_min; /* okay to underestimate on CC */
522 end_shift = prog->minlen - start_shift -
523 CHR_SVLEN(check) + (SvTAIL(check) != 0);
525 const I32 end = prog->check_offset_max + CHR_SVLEN(check)
526 - (SvTAIL(check) != 0);
527 const I32 eshift = CHR_DIST((U8*)strend, (U8*)s) - end;
529 if (end_shift < eshift)
533 else { /* Can match at random position */
536 start_shift = prog->check_offset_min; /* okay to underestimate on CC */
537 /* Should be nonnegative! */
538 end_shift = prog->minlen - start_shift -
539 CHR_SVLEN(check) + (SvTAIL(check) != 0);
542 #ifdef DEBUGGING /* 7/99: reports of failure (with the older version) */
544 Perl_croak(aTHX_ "panic: end_shift");
548 /* Find a possible match in the region s..strend by looking for
549 the "check" substring in the region corrected by start/end_shift. */
550 if (flags & REXEC_SCREAM) {
551 I32 p = -1; /* Internal iterator of scream. */
552 I32 * const pp = data ? data->scream_pos : &p;
554 if (PL_screamfirst[BmRARE(check)] >= 0
555 || ( BmRARE(check) == '\n'
556 && (BmPREVIOUS(check) == SvCUR(check) - 1)
558 s = screaminstr(sv, check,
559 start_shift + (s - strbeg), end_shift, pp, 0);
562 /* we may be pointing at the wrong string */
563 if (s && RX_MATCH_COPIED(prog))
564 s = strbeg + (s - SvPVX_const(sv));
566 *data->scream_olds = s;
568 else if (prog->reganch & ROPT_CANY_SEEN)
569 s = fbm_instr((U8*)(s + start_shift),
570 (U8*)(strend - end_shift),
571 check, multiline ? FBMrf_MULTILINE : 0);
573 s = fbm_instr(HOP3(s, start_shift, strend),
574 HOP3(strend, -end_shift, strbeg),
575 check, multiline ? FBMrf_MULTILINE : 0);
577 /* Update the count-of-usability, remove useless subpatterns,
580 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%s %s substr \"%s%.*s%s\"%s%s",
581 (s ? "Found" : "Did not find"),
582 (check == (do_utf8 ? prog->anchored_utf8 : prog->anchored_substr) ? "anchored" : "floating"),
584 (int)(SvCUR(check) - (SvTAIL(check)!=0)),
586 PL_colors[1], (SvTAIL(check) ? "$" : ""),
587 (s ? " at offset " : "...\n") ) );
594 /* Finish the diagnostic message */
595 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%ld...\n", (long)(s - i_strpos)) );
597 /* Got a candidate. Check MBOL anchoring, and the *other* substr.
598 Start with the other substr.
599 XXXX no SCREAM optimization yet - and a very coarse implementation
600 XXXX /ttx+/ results in anchored="ttx", floating="x". floating will
601 *always* match. Probably should be marked during compile...
602 Probably it is right to do no SCREAM here...
605 if (do_utf8 ? (prog->float_utf8 && prog->anchored_utf8) : (prog->float_substr && prog->anchored_substr)) {
606 /* Take into account the "other" substring. */
607 /* XXXX May be hopelessly wrong for UTF... */
610 if (check == (do_utf8 ? prog->float_utf8 : prog->float_substr)) {
613 char * const last = HOP3c(s, -start_shift, strbeg);
618 t = s - prog->check_offset_max;
619 if (s - strpos > prog->check_offset_max /* signed-corrected t > strpos */
621 || ((t = reghopmaybe3_c(s, -(prog->check_offset_max), strpos))
626 t = HOP3c(t, prog->anchored_offset, strend);
627 if (t < other_last) /* These positions already checked */
629 last2 = last1 = HOP3c(strend, -prog->minlen, strbeg);
632 /* XXXX It is not documented what units *_offsets are in. Assume bytes. */
633 /* On end-of-str: see comment below. */
634 must = do_utf8 ? prog->anchored_utf8 : prog->anchored_substr;
635 if (must == &PL_sv_undef) {
637 DEBUG_EXECUTE_r(must = prog->anchored_utf8); /* for debug */
642 HOP3(HOP3(last1, prog->anchored_offset, strend)
643 + SvCUR(must), -(SvTAIL(must)!=0), strbeg),
645 multiline ? FBMrf_MULTILINE : 0
647 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
648 "%s anchored substr \"%s%.*s%s\"%s",
649 (s ? "Found" : "Contradicts"),
652 - (SvTAIL(must)!=0)),
654 PL_colors[1], (SvTAIL(must) ? "$" : "")));
656 if (last1 >= last2) {
657 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
658 ", giving up...\n"));
661 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
662 ", trying floating at offset %ld...\n",
663 (long)(HOP3c(s1, 1, strend) - i_strpos)));
664 other_last = HOP3c(last1, prog->anchored_offset+1, strend);
665 s = HOP3c(last, 1, strend);
669 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, " at offset %ld...\n",
670 (long)(s - i_strpos)));
671 t = HOP3c(s, -prog->anchored_offset, strbeg);
672 other_last = HOP3c(s, 1, strend);
680 else { /* Take into account the floating substring. */
685 t = HOP3c(s, -start_shift, strbeg);
687 HOP3c(strend, -prog->minlen + prog->float_min_offset, strbeg);
688 if (CHR_DIST((U8*)last, (U8*)t) > prog->float_max_offset)
689 last = HOP3c(t, prog->float_max_offset, strend);
690 s = HOP3c(t, prog->float_min_offset, strend);
693 /* XXXX It is not documented what units *_offsets are in. Assume bytes. */
694 must = do_utf8 ? prog->float_utf8 : prog->float_substr;
695 /* fbm_instr() takes into account exact value of end-of-str
696 if the check is SvTAIL(ed). Since false positives are OK,
697 and end-of-str is not later than strend we are OK. */
698 if (must == &PL_sv_undef) {
700 DEBUG_EXECUTE_r(must = prog->float_utf8); /* for debug message */
703 s = fbm_instr((unsigned char*)s,
704 (unsigned char*)last + SvCUR(must)
706 must, multiline ? FBMrf_MULTILINE : 0);
707 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%s floating substr \"%s%.*s%s\"%s",
708 (s ? "Found" : "Contradicts"),
710 (int)(SvCUR(must) - (SvTAIL(must)!=0)),
712 PL_colors[1], (SvTAIL(must) ? "$" : "")));
715 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
716 ", giving up...\n"));
719 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
720 ", trying anchored starting at offset %ld...\n",
721 (long)(s1 + 1 - i_strpos)));
723 s = HOP3c(t, 1, strend);
727 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, " at offset %ld...\n",
728 (long)(s - i_strpos)));
729 other_last = s; /* Fix this later. --Hugo */
738 t = s - prog->check_offset_max;
739 if (s - strpos > prog->check_offset_max /* signed-corrected t > strpos */
741 || ((t = reghopmaybe3_c(s, -prog->check_offset_max, strpos))
743 /* Fixed substring is found far enough so that the match
744 cannot start at strpos. */
746 if (ml_anch && t[-1] != '\n') {
747 /* Eventually fbm_*() should handle this, but often
748 anchored_offset is not 0, so this check will not be wasted. */
749 /* XXXX In the code below we prefer to look for "^" even in
750 presence of anchored substrings. And we search even
751 beyond the found float position. These pessimizations
752 are historical artefacts only. */
754 while (t < strend - prog->minlen) {
756 if (t < check_at - prog->check_offset_min) {
757 if (do_utf8 ? prog->anchored_utf8 : prog->anchored_substr) {
758 /* Since we moved from the found position,
759 we definitely contradict the found anchored
760 substr. Due to the above check we do not
761 contradict "check" substr.
762 Thus we can arrive here only if check substr
763 is float. Redo checking for "other"=="fixed".
766 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Found /%s^%s/m at offset %ld, rescanning for anchored from offset %ld...\n",
767 PL_colors[0], PL_colors[1], (long)(strpos - i_strpos), (long)(strpos - i_strpos + prog->anchored_offset)));
768 goto do_other_anchored;
770 /* We don't contradict the found floating substring. */
771 /* XXXX Why not check for STCLASS? */
773 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Found /%s^%s/m at offset %ld...\n",
774 PL_colors[0], PL_colors[1], (long)(s - i_strpos)));
777 /* Position contradicts check-string */
778 /* XXXX probably better to look for check-string
779 than for "\n", so one should lower the limit for t? */
780 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Found /%s^%s/m, restarting lookup for check-string at offset %ld...\n",
781 PL_colors[0], PL_colors[1], (long)(t + 1 - i_strpos)));
782 other_last = strpos = s = t + 1;
787 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Did not find /%s^%s/m...\n",
788 PL_colors[0], PL_colors[1]));
792 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Starting position does not contradict /%s^%s/m...\n",
793 PL_colors[0], PL_colors[1]));
797 ++BmUSEFUL(do_utf8 ? prog->check_utf8 : prog->check_substr); /* hooray/5 */
800 /* The found string does not prohibit matching at strpos,
801 - no optimization of calling REx engine can be performed,
802 unless it was an MBOL and we are not after MBOL,
803 or a future STCLASS check will fail this. */
805 /* Even in this situation we may use MBOL flag if strpos is offset
806 wrt the start of the string. */
807 if (ml_anch && sv && !SvROK(sv) /* See prev comment on SvROK */
808 && (strpos != strbeg) && strpos[-1] != '\n'
809 /* May be due to an implicit anchor of m{.*foo} */
810 && !(prog->reganch & ROPT_IMPLICIT))
815 DEBUG_EXECUTE_r( if (ml_anch)
816 PerlIO_printf(Perl_debug_log, "Position at offset %ld does not contradict /%s^%s/m...\n",
817 (long)(strpos - i_strpos), PL_colors[0], PL_colors[1]);
820 if (!(prog->reganch & ROPT_NAUGHTY) /* XXXX If strpos moved? */
822 prog->check_utf8 /* Could be deleted already */
823 && --BmUSEFUL(prog->check_utf8) < 0
824 && (prog->check_utf8 == prog->float_utf8)
826 prog->check_substr /* Could be deleted already */
827 && --BmUSEFUL(prog->check_substr) < 0
828 && (prog->check_substr == prog->float_substr)
831 /* If flags & SOMETHING - do not do it many times on the same match */
832 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "... Disabling check substring...\n"));
833 SvREFCNT_dec(do_utf8 ? prog->check_utf8 : prog->check_substr);
834 if (do_utf8 ? prog->check_substr : prog->check_utf8)
835 SvREFCNT_dec(do_utf8 ? prog->check_substr : prog->check_utf8);
836 prog->check_substr = prog->check_utf8 = NULL; /* disable */
837 prog->float_substr = prog->float_utf8 = NULL; /* clear */
838 check = NULL; /* abort */
840 /* XXXX This is a remnant of the old implementation. It
841 looks wasteful, since now INTUIT can use many
843 prog->reganch &= ~RE_USE_INTUIT;
850 /* XXXX BmUSEFUL already changed, maybe multiple change is meaningful... */
851 if (prog->regstclass) {
852 /* minlen == 0 is possible if regstclass is \b or \B,
853 and the fixed substr is ''$.
854 Since minlen is already taken into account, s+1 is before strend;
855 accidentally, minlen >= 1 guaranties no false positives at s + 1
856 even for \b or \B. But (minlen? 1 : 0) below assumes that
857 regstclass does not come from lookahead... */
858 /* If regstclass takes bytelength more than 1: If charlength==1, OK.
859 This leaves EXACTF only, which is dealt with in find_byclass(). */
860 const U8* const str = (U8*)STRING(prog->regstclass);
861 const int cl_l = (PL_regkind[(U8)OP(prog->regstclass)] == EXACT
862 ? CHR_DIST(str+STR_LEN(prog->regstclass), str)
864 const char * const endpos = (prog->anchored_substr || prog->anchored_utf8 || ml_anch)
865 ? HOP3c(s, (prog->minlen ? cl_l : 0), strend)
866 : (prog->float_substr || prog->float_utf8
867 ? HOP3c(HOP3c(check_at, -start_shift, strbeg),
873 s = find_byclass(prog, prog->regstclass, s, endpos, 1);
876 const char *what = NULL;
878 if (endpos == strend) {
879 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
880 "Could not match STCLASS...\n") );
883 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
884 "This position contradicts STCLASS...\n") );
885 if ((prog->reganch & ROPT_ANCH) && !ml_anch)
887 /* Contradict one of substrings */
888 if (prog->anchored_substr || prog->anchored_utf8) {
889 if ((do_utf8 ? prog->anchored_utf8 : prog->anchored_substr) == check) {
890 DEBUG_EXECUTE_r( what = "anchored" );
892 s = HOP3c(t, 1, strend);
893 if (s + start_shift + end_shift > strend) {
894 /* XXXX Should be taken into account earlier? */
895 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
896 "Could not match STCLASS...\n") );
901 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
902 "Looking for %s substr starting at offset %ld...\n",
903 what, (long)(s + start_shift - i_strpos)) );
906 /* Have both, check_string is floating */
907 if (t + start_shift >= check_at) /* Contradicts floating=check */
908 goto retry_floating_check;
909 /* Recheck anchored substring, but not floating... */
913 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
914 "Looking for anchored substr starting at offset %ld...\n",
915 (long)(other_last - i_strpos)) );
916 goto do_other_anchored;
918 /* Another way we could have checked stclass at the
919 current position only: */
924 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
925 "Looking for /%s^%s/m starting at offset %ld...\n",
926 PL_colors[0], PL_colors[1], (long)(t - i_strpos)) );
929 if (!(do_utf8 ? prog->float_utf8 : prog->float_substr)) /* Could have been deleted */
931 /* Check is floating subtring. */
932 retry_floating_check:
933 t = check_at - start_shift;
934 DEBUG_EXECUTE_r( what = "floating" );
935 goto hop_and_restart;
938 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
939 "By STCLASS: moving %ld --> %ld\n",
940 (long)(t - i_strpos), (long)(s - i_strpos))
944 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
945 "Does not contradict STCLASS...\n");
950 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%s%s:%s match at offset %ld\n",
951 PL_colors[4], (check ? "Guessed" : "Giving up"),
952 PL_colors[5], (long)(s - i_strpos)) );
955 fail_finish: /* Substring not found */
956 if (prog->check_substr || prog->check_utf8) /* could be removed already */
957 BmUSEFUL(do_utf8 ? prog->check_utf8 : prog->check_substr) += 5; /* hooray */
959 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%sMatch rejected by optimizer%s\n",
960 PL_colors[4], PL_colors[5]));
964 /* We know what class REx starts with. Try to find this position... */
966 S_find_byclass(pTHX_ regexp * prog, regnode *c, char *s, const char *strend, I32 norun)
969 const I32 doevery = (prog->reganch & ROPT_SKIP) == 0;
973 register STRLEN uskip;
977 register I32 tmp = 1; /* Scratch variable? */
978 register const bool do_utf8 = PL_reg_match_utf8;
980 /* We know what class it must start with. */
984 while (s + (uskip = UTF8SKIP(s)) <= strend) {
985 if ((ANYOF_FLAGS(c) & ANYOF_UNICODE) ||
986 !UTF8_IS_INVARIANT((U8)s[0]) ?
987 reginclass(c, (U8*)s, 0, do_utf8) :
988 REGINCLASS(c, (U8*)s)) {
989 if (tmp && (norun || regtry(prog, s)))
1000 while (s < strend) {
1003 if (REGINCLASS(c, (U8*)s) ||
1004 (ANYOF_FOLD_SHARP_S(c, s, strend) &&
1005 /* The assignment of 2 is intentional:
1006 * for the folded sharp s, the skip is 2. */
1007 (skip = SHARP_S_SKIP))) {
1008 if (tmp && (norun || regtry(prog, s)))
1020 while (s < strend) {
1021 if (tmp && (norun || regtry(prog, s)))
1030 ln = STR_LEN(c); /* length to match in octets/bytes */
1031 lnc = (I32) ln; /* length to match in characters */
1033 STRLEN ulen1, ulen2;
1035 U8 tmpbuf1[UTF8_MAXBYTES_CASE+1];
1036 U8 tmpbuf2[UTF8_MAXBYTES_CASE+1];
1037 const U32 uniflags = ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY;
1039 to_utf8_lower((U8*)m, tmpbuf1, &ulen1);
1040 to_utf8_upper((U8*)m, tmpbuf2, &ulen2);
1042 c1 = utf8n_to_uvchr(tmpbuf1, UTF8_MAXBYTES_CASE,
1044 c2 = utf8n_to_uvchr(tmpbuf2, UTF8_MAXBYTES_CASE,
1047 while (sm < ((U8 *) m + ln)) {
1062 c2 = PL_fold_locale[c1];
1064 e = HOP3c(strend, -((I32)lnc), s);
1067 e = s; /* Due to minlen logic of intuit() */
1069 /* The idea in the EXACTF* cases is to first find the
1070 * first character of the EXACTF* node and then, if
1071 * necessary, case-insensitively compare the full
1072 * text of the node. The c1 and c2 are the first
1073 * characters (though in Unicode it gets a bit
1074 * more complicated because there are more cases
1075 * than just upper and lower: one needs to use
1076 * the so-called folding case for case-insensitive
1077 * matching (called "loose matching" in Unicode).
1078 * ibcmp_utf8() will do just that. */
1082 U8 tmpbuf [UTF8_MAXBYTES+1];
1083 STRLEN len, foldlen;
1084 const U32 uniflags = ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY;
1086 /* Upper and lower of 1st char are equal -
1087 * probably not a "letter". */
1089 c = utf8n_to_uvchr((U8*)s, UTF8_MAXBYTES, &len,
1093 ibcmp_utf8(s, (char **)0, 0, do_utf8,
1094 m, (char **)0, ln, (bool)UTF))
1095 && (norun || regtry(prog, s)) )
1098 U8 foldbuf[UTF8_MAXBYTES_CASE+1];
1099 uvchr_to_utf8(tmpbuf, c);
1100 f = to_utf8_fold(tmpbuf, foldbuf, &foldlen);
1102 && (f == c1 || f == c2)
1103 && (ln == foldlen ||
1104 !ibcmp_utf8((char *) foldbuf,
1105 (char **)0, foldlen, do_utf8,
1107 (char **)0, ln, (bool)UTF))
1108 && (norun || regtry(prog, s)) )
1116 c = utf8n_to_uvchr((U8*)s, UTF8_MAXBYTES, &len,
1119 /* Handle some of the three Greek sigmas cases.
1120 * Note that not all the possible combinations
1121 * are handled here: some of them are handled
1122 * by the standard folding rules, and some of
1123 * them (the character class or ANYOF cases)
1124 * are handled during compiletime in
1125 * regexec.c:S_regclass(). */
1126 if (c == (UV)UNICODE_GREEK_CAPITAL_LETTER_SIGMA ||
1127 c == (UV)UNICODE_GREEK_SMALL_LETTER_FINAL_SIGMA)
1128 c = (UV)UNICODE_GREEK_SMALL_LETTER_SIGMA;
1130 if ( (c == c1 || c == c2)
1132 ibcmp_utf8(s, (char **)0, 0, do_utf8,
1133 m, (char **)0, ln, (bool)UTF))
1134 && (norun || regtry(prog, s)) )
1137 U8 foldbuf[UTF8_MAXBYTES_CASE+1];
1138 uvchr_to_utf8(tmpbuf, c);
1139 f = to_utf8_fold(tmpbuf, foldbuf, &foldlen);
1141 && (f == c1 || f == c2)
1142 && (ln == foldlen ||
1143 !ibcmp_utf8((char *) foldbuf,
1144 (char **)0, foldlen, do_utf8,
1146 (char **)0, ln, (bool)UTF))
1147 && (norun || regtry(prog, s)) )
1158 && (ln == 1 || !(OP(c) == EXACTF
1160 : ibcmp_locale(s, m, ln)))
1161 && (norun || regtry(prog, s)) )
1167 if ( (*(U8*)s == c1 || *(U8*)s == c2)
1168 && (ln == 1 || !(OP(c) == EXACTF
1170 : ibcmp_locale(s, m, ln)))
1171 && (norun || regtry(prog, s)) )
1178 PL_reg_flags |= RF_tainted;
1185 U8 * const r = reghop3((U8*)s, -1, (U8*)PL_bostr);
1186 tmp = utf8n_to_uvchr(r, UTF8SKIP(r), 0, 0);
1188 tmp = ((OP(c) == BOUND ?
1189 isALNUM_uni(tmp) : isALNUM_LC_uvchr(UNI_TO_NATIVE(tmp))) != 0);
1190 LOAD_UTF8_CHARCLASS_ALNUM();
1191 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1192 if (tmp == !(OP(c) == BOUND ?
1193 swash_fetch(PL_utf8_alnum, (U8*)s, do_utf8) :
1194 isALNUM_LC_utf8((U8*)s)))
1197 if ((norun || regtry(prog, s)))
1204 tmp = (s != PL_bostr) ? UCHARAT(s - 1) : '\n';
1205 tmp = ((OP(c) == BOUND ? isALNUM(tmp) : isALNUM_LC(tmp)) != 0);
1206 while (s < strend) {
1208 !(OP(c) == BOUND ? isALNUM(*s) : isALNUM_LC(*s))) {
1210 if ((norun || regtry(prog, s)))
1216 if ((!prog->minlen && tmp) && (norun || regtry(prog, s)))
1220 PL_reg_flags |= RF_tainted;
1227 U8 * const r = reghop3((U8*)s, -1, (U8*)PL_bostr);
1228 tmp = utf8n_to_uvchr(r, UTF8SKIP(r), 0, 0);
1230 tmp = ((OP(c) == NBOUND ?
1231 isALNUM_uni(tmp) : isALNUM_LC_uvchr(UNI_TO_NATIVE(tmp))) != 0);
1232 LOAD_UTF8_CHARCLASS_ALNUM();
1233 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1234 if (tmp == !(OP(c) == NBOUND ?
1235 swash_fetch(PL_utf8_alnum, (U8*)s, do_utf8) :
1236 isALNUM_LC_utf8((U8*)s)))
1238 else if ((norun || regtry(prog, s)))
1244 tmp = (s != PL_bostr) ? UCHARAT(s - 1) : '\n';
1245 tmp = ((OP(c) == NBOUND ?
1246 isALNUM(tmp) : isALNUM_LC(tmp)) != 0);
1247 while (s < strend) {
1249 !(OP(c) == NBOUND ? isALNUM(*s) : isALNUM_LC(*s)))
1251 else if ((norun || regtry(prog, s)))
1256 if ((!prog->minlen && !tmp) && (norun || regtry(prog, s)))
1261 LOAD_UTF8_CHARCLASS_ALNUM();
1262 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1263 if (swash_fetch(PL_utf8_alnum, (U8*)s, do_utf8)) {
1264 if (tmp && (norun || regtry(prog, s)))
1275 while (s < strend) {
1277 if (tmp && (norun || regtry(prog, s)))
1289 PL_reg_flags |= RF_tainted;
1291 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1292 if (isALNUM_LC_utf8((U8*)s)) {
1293 if (tmp && (norun || regtry(prog, s)))
1304 while (s < strend) {
1305 if (isALNUM_LC(*s)) {
1306 if (tmp && (norun || regtry(prog, s)))
1319 LOAD_UTF8_CHARCLASS_ALNUM();
1320 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1321 if (!swash_fetch(PL_utf8_alnum, (U8*)s, do_utf8)) {
1322 if (tmp && (norun || regtry(prog, s)))
1333 while (s < strend) {
1335 if (tmp && (norun || regtry(prog, s)))
1347 PL_reg_flags |= RF_tainted;
1349 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1350 if (!isALNUM_LC_utf8((U8*)s)) {
1351 if (tmp && (norun || regtry(prog, s)))
1362 while (s < strend) {
1363 if (!isALNUM_LC(*s)) {
1364 if (tmp && (norun || regtry(prog, s)))
1377 LOAD_UTF8_CHARCLASS_SPACE();
1378 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1379 if (*s == ' ' || swash_fetch(PL_utf8_space,(U8*)s, do_utf8)) {
1380 if (tmp && (norun || regtry(prog, s)))
1391 while (s < strend) {
1393 if (tmp && (norun || regtry(prog, s)))
1405 PL_reg_flags |= RF_tainted;
1407 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1408 if (*s == ' ' || isSPACE_LC_utf8((U8*)s)) {
1409 if (tmp && (norun || regtry(prog, s)))
1420 while (s < strend) {
1421 if (isSPACE_LC(*s)) {
1422 if (tmp && (norun || regtry(prog, s)))
1435 LOAD_UTF8_CHARCLASS_SPACE();
1436 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1437 if (!(*s == ' ' || swash_fetch(PL_utf8_space,(U8*)s, do_utf8))) {
1438 if (tmp && (norun || regtry(prog, s)))
1449 while (s < strend) {
1451 if (tmp && (norun || regtry(prog, s)))
1463 PL_reg_flags |= RF_tainted;
1465 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1466 if (!(*s == ' ' || isSPACE_LC_utf8((U8*)s))) {
1467 if (tmp && (norun || regtry(prog, s)))
1478 while (s < strend) {
1479 if (!isSPACE_LC(*s)) {
1480 if (tmp && (norun || regtry(prog, s)))
1493 LOAD_UTF8_CHARCLASS_DIGIT();
1494 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1495 if (swash_fetch(PL_utf8_digit,(U8*)s, do_utf8)) {
1496 if (tmp && (norun || regtry(prog, s)))
1507 while (s < strend) {
1509 if (tmp && (norun || regtry(prog, s)))
1521 PL_reg_flags |= RF_tainted;
1523 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1524 if (isDIGIT_LC_utf8((U8*)s)) {
1525 if (tmp && (norun || regtry(prog, s)))
1536 while (s < strend) {
1537 if (isDIGIT_LC(*s)) {
1538 if (tmp && (norun || regtry(prog, s)))
1551 LOAD_UTF8_CHARCLASS_DIGIT();
1552 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1553 if (!swash_fetch(PL_utf8_digit,(U8*)s, do_utf8)) {
1554 if (tmp && (norun || regtry(prog, s)))
1565 while (s < strend) {
1567 if (tmp && (norun || regtry(prog, s)))
1579 PL_reg_flags |= RF_tainted;
1581 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1582 if (!isDIGIT_LC_utf8((U8*)s)) {
1583 if (tmp && (norun || regtry(prog, s)))
1594 while (s < strend) {
1595 if (!isDIGIT_LC(*s)) {
1596 if (tmp && (norun || regtry(prog, s)))
1608 Perl_croak(aTHX_ "panic: unknown regstclass %d", (int)OP(c));
1617 - regexec_flags - match a regexp against a string
1620 Perl_regexec_flags(pTHX_ register regexp *prog, char *stringarg, register char *strend,
1621 char *strbeg, I32 minend, SV *sv, void *data, U32 flags)
1622 /* strend: pointer to null at end of string */
1623 /* strbeg: real beginning of string */
1624 /* minend: end of match must be >=minend after stringarg. */
1625 /* data: May be used for some additional optimizations. */
1626 /* nosave: For optimizations. */
1630 register regnode *c;
1631 register char *startpos = stringarg;
1632 I32 minlen; /* must match at least this many chars */
1633 I32 dontbother = 0; /* how many characters not to try at end */
1634 I32 end_shift = 0; /* Same for the end. */ /* CC */
1635 I32 scream_pos = -1; /* Internal iterator of scream. */
1636 char *scream_olds = NULL;
1637 SV* oreplsv = GvSV(PL_replgv);
1638 const bool do_utf8 = DO_UTF8(sv);
1639 const I32 multiline = prog->reganch & PMf_MULTILINE;
1641 SV * const dsv0 = PERL_DEBUG_PAD_ZERO(0);
1642 SV * const dsv1 = PERL_DEBUG_PAD_ZERO(1);
1645 GET_RE_DEBUG_FLAGS_DECL;
1647 PERL_UNUSED_ARG(data);
1648 RX_MATCH_UTF8_set(prog,do_utf8);
1652 PL_regnarrate = DEBUG_r_TEST;
1655 /* Be paranoid... */
1656 if (prog == NULL || startpos == NULL) {
1657 Perl_croak(aTHX_ "NULL regexp parameter");
1661 minlen = prog->minlen;
1662 if (strend - startpos < minlen) {
1663 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
1664 "String too short [regexec_flags]...\n"));
1668 /* Check validity of program. */
1669 if (UCHARAT(prog->program) != REG_MAGIC) {
1670 Perl_croak(aTHX_ "corrupted regexp program");
1674 PL_reg_eval_set = 0;
1677 if (prog->reganch & ROPT_UTF8)
1678 PL_reg_flags |= RF_utf8;
1680 /* Mark beginning of line for ^ and lookbehind. */
1681 PL_regbol = startpos;
1685 /* Mark end of line for $ (and such) */
1688 /* see how far we have to get to not match where we matched before */
1689 PL_regtill = startpos+minend;
1691 /* We start without call_cc context. */
1694 /* If there is a "must appear" string, look for it. */
1697 if (prog->reganch & ROPT_GPOS_SEEN) { /* Need to have PL_reg_ganch */
1700 if (flags & REXEC_IGNOREPOS) /* Means: check only at start */
1701 PL_reg_ganch = startpos;
1702 else if (sv && SvTYPE(sv) >= SVt_PVMG
1704 && (mg = mg_find(sv, PERL_MAGIC_regex_global))
1705 && mg->mg_len >= 0) {
1706 PL_reg_ganch = strbeg + mg->mg_len; /* Defined pos() */
1707 if (prog->reganch & ROPT_ANCH_GPOS) {
1708 if (s > PL_reg_ganch)
1713 else /* pos() not defined */
1714 PL_reg_ganch = strbeg;
1717 if (!(flags & REXEC_CHECKED) && (prog->check_substr != NULL || prog->check_utf8 != NULL)) {
1718 re_scream_pos_data d;
1720 d.scream_olds = &scream_olds;
1721 d.scream_pos = &scream_pos;
1722 s = re_intuit_start(prog, sv, s, strend, flags, &d);
1724 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Not present...\n"));
1725 goto phooey; /* not present */
1730 const char * const s0 = UTF
1731 ? pv_uni_display(dsv0, (U8*)prog->precomp, prog->prelen, 60,
1734 const int len0 = UTF ? SvCUR(dsv0) : prog->prelen;
1735 const char * const s1 = do_utf8 ? sv_uni_display(dsv1, sv, 60,
1736 UNI_DISPLAY_REGEX) : startpos;
1737 const int len1 = do_utf8 ? SvCUR(dsv1) : strend - startpos;
1740 PerlIO_printf(Perl_debug_log,
1741 "%sMatching REx%s \"%s%*.*s%s%s\" against \"%s%.*s%s%s\"\n",
1742 PL_colors[4], PL_colors[5], PL_colors[0],
1745 len0 > 60 ? "..." : "",
1747 (int)(len1 > 60 ? 60 : len1),
1749 (len1 > 60 ? "..." : "")
1753 /* Simplest case: anchored match need be tried only once. */
1754 /* [unless only anchor is BOL and multiline is set] */
1755 if (prog->reganch & (ROPT_ANCH & ~ROPT_ANCH_GPOS)) {
1756 if (s == startpos && regtry(prog, startpos))
1758 else if (multiline || (prog->reganch & ROPT_IMPLICIT)
1759 || (prog->reganch & ROPT_ANCH_MBOL)) /* XXXX SBOL? */
1764 dontbother = minlen - 1;
1765 end = HOP3c(strend, -dontbother, strbeg) - 1;
1766 /* for multiline we only have to try after newlines */
1767 if (prog->check_substr || prog->check_utf8) {
1771 if (regtry(prog, s))
1776 if (prog->reganch & RE_USE_INTUIT) {
1777 s = re_intuit_start(prog, sv, s + 1, strend, flags, NULL);
1788 if (*s++ == '\n') { /* don't need PL_utf8skip here */
1789 if (regtry(prog, s))
1796 } else if (prog->reganch & ROPT_ANCH_GPOS) {
1797 if (regtry(prog, PL_reg_ganch))
1802 /* Messy cases: unanchored match. */
1803 if ((prog->anchored_substr || prog->anchored_utf8) && prog->reganch & ROPT_SKIP) {
1804 /* we have /x+whatever/ */
1805 /* it must be a one character string (XXXX Except UTF?) */
1810 if (!(do_utf8 ? prog->anchored_utf8 : prog->anchored_substr))
1811 do_utf8 ? to_utf8_substr(prog) : to_byte_substr(prog);
1812 ch = SvPVX_const(do_utf8 ? prog->anchored_utf8 : prog->anchored_substr)[0];
1815 while (s < strend) {
1817 DEBUG_EXECUTE_r( did_match = 1 );
1818 if (regtry(prog, s)) goto got_it;
1820 while (s < strend && *s == ch)
1827 while (s < strend) {
1829 DEBUG_EXECUTE_r( did_match = 1 );
1830 if (regtry(prog, s)) goto got_it;
1832 while (s < strend && *s == ch)
1838 DEBUG_EXECUTE_r(if (!did_match)
1839 PerlIO_printf(Perl_debug_log,
1840 "Did not find anchored character...\n")
1843 else if (prog->anchored_substr != NULL
1844 || prog->anchored_utf8 != NULL
1845 || ((prog->float_substr != NULL || prog->float_utf8 != NULL)
1846 && prog->float_max_offset < strend - s)) {
1851 char *last1; /* Last position checked before */
1855 if (prog->anchored_substr || prog->anchored_utf8) {
1856 if (!(do_utf8 ? prog->anchored_utf8 : prog->anchored_substr))
1857 do_utf8 ? to_utf8_substr(prog) : to_byte_substr(prog);
1858 must = do_utf8 ? prog->anchored_utf8 : prog->anchored_substr;
1859 back_max = back_min = prog->anchored_offset;
1861 if (!(do_utf8 ? prog->float_utf8 : prog->float_substr))
1862 do_utf8 ? to_utf8_substr(prog) : to_byte_substr(prog);
1863 must = do_utf8 ? prog->float_utf8 : prog->float_substr;
1864 back_max = prog->float_max_offset;
1865 back_min = prog->float_min_offset;
1867 if (must == &PL_sv_undef)
1868 /* could not downgrade utf8 check substring, so must fail */
1871 last = HOP3c(strend, /* Cannot start after this */
1872 -(I32)(CHR_SVLEN(must)
1873 - (SvTAIL(must) != 0) + back_min), strbeg);
1876 last1 = HOPc(s, -1);
1878 last1 = s - 1; /* bogus */
1880 /* XXXX check_substr already used to find "s", can optimize if
1881 check_substr==must. */
1883 dontbother = end_shift;
1884 strend = HOPc(strend, -dontbother);
1885 while ( (s <= last) &&
1886 ((flags & REXEC_SCREAM)
1887 ? (s = screaminstr(sv, must, HOP3c(s, back_min, strend) - strbeg,
1888 end_shift, &scream_pos, 0))
1889 : (s = fbm_instr((unsigned char*)HOP3(s, back_min, strend),
1890 (unsigned char*)strend, must,
1891 multiline ? FBMrf_MULTILINE : 0))) ) {
1892 /* we may be pointing at the wrong string */
1893 if ((flags & REXEC_SCREAM) && RX_MATCH_COPIED(prog))
1894 s = strbeg + (s - SvPVX_const(sv));
1895 DEBUG_EXECUTE_r( did_match = 1 );
1896 if (HOPc(s, -back_max) > last1) {
1897 last1 = HOPc(s, -back_min);
1898 s = HOPc(s, -back_max);
1901 char *t = (last1 >= PL_bostr) ? HOPc(last1, 1) : last1 + 1;
1903 last1 = HOPc(s, -back_min);
1907 while (s <= last1) {
1908 if (regtry(prog, s))
1914 while (s <= last1) {
1915 if (regtry(prog, s))
1921 DEBUG_EXECUTE_r(if (!did_match)
1922 PerlIO_printf(Perl_debug_log,
1923 "Did not find %s substr \"%s%.*s%s\"%s...\n",
1924 ((must == prog->anchored_substr || must == prog->anchored_utf8)
1925 ? "anchored" : "floating"),
1927 (int)(SvCUR(must) - (SvTAIL(must)!=0)),
1929 PL_colors[1], (SvTAIL(must) ? "$" : ""))
1933 else if ((c = prog->regstclass)) {
1935 I32 op = (U8)OP(prog->regstclass);
1936 /* don't bother with what can't match */
1937 if (PL_regkind[op] != EXACT && op != CANY)
1938 strend = HOPc(strend, -(minlen - 1));
1941 SV *prop = sv_newmortal();
1949 pv_uni_display(dsv0, (U8*)SvPVX_const(prop), SvCUR(prop), 60,
1950 UNI_DISPLAY_REGEX) :
1952 len0 = UTF ? SvCUR(dsv0) : SvCUR(prop);
1954 sv_uni_display(dsv1, sv, 60, UNI_DISPLAY_REGEX) : s;
1955 len1 = UTF ? SvCUR(dsv1) : strend - s;
1956 PerlIO_printf(Perl_debug_log,
1957 "Matching stclass \"%*.*s\" against \"%*.*s\"\n",
1961 if (find_byclass(prog, c, s, strend, 0))
1963 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Contradicts stclass...\n"));
1967 if (prog->float_substr != NULL || prog->float_utf8 != NULL) {
1972 if (!(do_utf8 ? prog->float_utf8 : prog->float_substr))
1973 do_utf8 ? to_utf8_substr(prog) : to_byte_substr(prog);
1974 float_real = do_utf8 ? prog->float_utf8 : prog->float_substr;
1976 if (flags & REXEC_SCREAM) {
1977 last = screaminstr(sv, float_real, s - strbeg,
1978 end_shift, &scream_pos, 1); /* last one */
1980 last = scream_olds; /* Only one occurrence. */
1981 /* we may be pointing at the wrong string */
1982 else if (RX_MATCH_COPIED(prog))
1983 s = strbeg + (s - SvPVX_const(sv));
1987 const char * const little = SvPV_const(float_real, len);
1989 if (SvTAIL(float_real)) {
1990 if (memEQ(strend - len + 1, little, len - 1))
1991 last = strend - len + 1;
1992 else if (!multiline)
1993 last = memEQ(strend - len, little, len)
1994 ? strend - len : NULL;
2000 last = rninstr(s, strend, little, little + len);
2002 last = strend; /* matching "$" */
2006 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
2007 "%sCan't trim the tail, match fails (should not happen)%s\n",
2008 PL_colors[4], PL_colors[5]));
2009 goto phooey; /* Should not happen! */
2011 dontbother = strend - last + prog->float_min_offset;
2013 if (minlen && (dontbother < minlen))
2014 dontbother = minlen - 1;
2015 strend -= dontbother; /* this one's always in bytes! */
2016 /* We don't know much -- general case. */
2019 if (regtry(prog, s))
2028 if (regtry(prog, s))
2030 } while (s++ < strend);
2038 RX_MATCH_TAINTED_set(prog, PL_reg_flags & RF_tainted);
2040 if (PL_reg_eval_set) {
2041 /* Preserve the current value of $^R */
2042 if (oreplsv != GvSV(PL_replgv))
2043 sv_setsv(oreplsv, GvSV(PL_replgv));/* So that when GvSV(replgv) is
2044 restored, the value remains
2046 restore_pos(aTHX_ 0);
2049 /* make sure $`, $&, $', and $digit will work later */
2050 if ( !(flags & REXEC_NOT_FIRST) ) {
2051 RX_MATCH_COPY_FREE(prog);
2052 if (flags & REXEC_COPY_STR) {
2053 I32 i = PL_regeol - startpos + (stringarg - strbeg);
2054 #ifdef PERL_OLD_COPY_ON_WRITE
2056 || (SvFLAGS(sv) & CAN_COW_MASK) == CAN_COW_FLAGS)) {
2058 PerlIO_printf(Perl_debug_log,
2059 "Copy on write: regexp capture, type %d\n",
2062 prog->saved_copy = sv_setsv_cow(prog->saved_copy, sv);
2063 prog->subbeg = (char *)SvPVX_const(prog->saved_copy);
2064 assert (SvPOKp(prog->saved_copy));
2068 RX_MATCH_COPIED_on(prog);
2069 s = savepvn(strbeg, i);
2075 prog->subbeg = strbeg;
2076 prog->sublen = PL_regeol - strbeg; /* strend may have been modified */
2083 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%sMatch failed%s\n",
2084 PL_colors[4], PL_colors[5]));
2085 if (PL_reg_eval_set)
2086 restore_pos(aTHX_ 0);
2091 - regtry - try match at specific point
2093 STATIC I32 /* 0 failure, 1 success */
2094 S_regtry(pTHX_ regexp *prog, char *startpos)
2101 GET_RE_DEBUG_FLAGS_DECL;
2104 PL_regindent = 0; /* XXXX Not good when matches are reenterable... */
2106 if ((prog->reganch & ROPT_EVAL_SEEN) && !PL_reg_eval_set) {
2109 PL_reg_eval_set = RS_init;
2110 DEBUG_EXECUTE_r(DEBUG_s(
2111 PerlIO_printf(Perl_debug_log, " setting stack tmpbase at %"IVdf"\n",
2112 (IV)(PL_stack_sp - PL_stack_base));
2114 SAVEI32(cxstack[cxstack_ix].blk_oldsp);
2115 cxstack[cxstack_ix].blk_oldsp = PL_stack_sp - PL_stack_base;
2116 /* Otherwise OP_NEXTSTATE will free whatever on stack now. */
2118 /* Apparently this is not needed, judging by wantarray. */
2119 /* SAVEI8(cxstack[cxstack_ix].blk_gimme);
2120 cxstack[cxstack_ix].blk_gimme = G_SCALAR; */
2123 /* Make $_ available to executed code. */
2124 if (PL_reg_sv != DEFSV) {
2129 if (!(SvTYPE(PL_reg_sv) >= SVt_PVMG && SvMAGIC(PL_reg_sv)
2130 && (mg = mg_find(PL_reg_sv, PERL_MAGIC_regex_global)))) {
2131 /* prepare for quick setting of pos */
2132 #ifdef PERL_OLD_COPY_ON_WRITE
2134 sv_force_normal_flags(sv, 0);
2136 mg = sv_magicext(PL_reg_sv, (SV*)0, PERL_MAGIC_regex_global,
2137 &PL_vtbl_mglob, NULL, 0);
2141 PL_reg_oldpos = mg->mg_len;
2142 SAVEDESTRUCTOR_X(restore_pos, 0);
2144 if (!PL_reg_curpm) {
2145 Newxz(PL_reg_curpm, 1, PMOP);
2148 SV* repointer = newSViv(0);
2149 /* so we know which PL_regex_padav element is PL_reg_curpm */
2150 SvFLAGS(repointer) |= SVf_BREAK;
2151 av_push(PL_regex_padav,repointer);
2152 PL_reg_curpm->op_pmoffset = av_len(PL_regex_padav);
2153 PL_regex_pad = AvARRAY(PL_regex_padav);
2157 PM_SETRE(PL_reg_curpm, prog);
2158 PL_reg_oldcurpm = PL_curpm;
2159 PL_curpm = PL_reg_curpm;
2160 if (RX_MATCH_COPIED(prog)) {
2161 /* Here is a serious problem: we cannot rewrite subbeg,
2162 since it may be needed if this match fails. Thus
2163 $` inside (?{}) could fail... */
2164 PL_reg_oldsaved = prog->subbeg;
2165 PL_reg_oldsavedlen = prog->sublen;
2166 #ifdef PERL_OLD_COPY_ON_WRITE
2167 PL_nrs = prog->saved_copy;
2169 RX_MATCH_COPIED_off(prog);
2172 PL_reg_oldsaved = NULL;
2173 prog->subbeg = PL_bostr;
2174 prog->sublen = PL_regeol - PL_bostr; /* strend may have been modified */
2176 prog->startp[0] = startpos - PL_bostr;
2177 PL_reginput = startpos;
2178 PL_regstartp = prog->startp;
2179 PL_regendp = prog->endp;
2180 PL_reglastparen = &prog->lastparen;
2181 PL_reglastcloseparen = &prog->lastcloseparen;
2182 prog->lastparen = 0;
2183 prog->lastcloseparen = 0;
2185 DEBUG_EXECUTE_r(PL_reg_starttry = startpos);
2186 if (PL_reg_start_tmpl <= prog->nparens) {
2187 PL_reg_start_tmpl = prog->nparens*3/2 + 3;
2188 if(PL_reg_start_tmp)
2189 Renew(PL_reg_start_tmp, PL_reg_start_tmpl, char*);
2191 Newx(PL_reg_start_tmp, PL_reg_start_tmpl, char*);
2194 /* XXXX What this code is doing here?!!! There should be no need
2195 to do this again and again, PL_reglastparen should take care of
2198 /* Tests pat.t#187 and split.t#{13,14} seem to depend on this code.
2199 * Actually, the code in regcppop() (which Ilya may be meaning by
2200 * PL_reglastparen), is not needed at all by the test suite
2201 * (op/regexp, op/pat, op/split), but that code is needed, oddly
2202 * enough, for building DynaLoader, or otherwise this
2203 * "Error: '*' not in typemap in DynaLoader.xs, line 164"
2204 * will happen. Meanwhile, this code *is* needed for the
2205 * above-mentioned test suite tests to succeed. The common theme
2206 * on those tests seems to be returning null fields from matches.
2211 if (prog->nparens) {
2212 for (i = prog->nparens; i > (I32)*PL_reglastparen; i--) {
2219 if (regmatch(prog->program + 1)) {
2220 prog->endp[0] = PL_reginput - PL_bostr;
2223 REGCP_UNWIND(lastcp);
2227 #define RE_UNWIND_BRANCH 1
2228 #define RE_UNWIND_BRANCHJ 2
2232 typedef struct { /* XX: makes sense to enlarge it... */
2236 } re_unwind_generic_t;
2249 } re_unwind_branch_t;
2251 typedef union re_unwind_t {
2253 re_unwind_generic_t generic;
2254 re_unwind_branch_t branch;
2257 #define sayYES goto yes
2258 #define sayNO goto no
2259 #define sayNO_ANYOF goto no_anyof
2260 #define sayYES_FINAL goto yes_final
2261 #define sayYES_LOUD goto yes_loud
2262 #define sayNO_FINAL goto no_final
2263 #define sayNO_SILENT goto do_no
2264 #define saySAME(x) if (x) goto yes; else goto no
2266 #define POSCACHE_SUCCESS 0 /* caching success rather than failure */
2267 #define POSCACHE_SEEN 1 /* we know what we're caching */
2268 #define POSCACHE_START 2 /* the real cache: this bit maps to pos 0 */
2269 #define CACHEsayYES STMT_START { \
2270 if (cache_offset | cache_bit) { \
2271 if (!(PL_reg_poscache[0] & (1<<POSCACHE_SEEN))) \
2272 PL_reg_poscache[0] |= (1<<POSCACHE_SUCCESS) || (1<<POSCACHE_SEEN); \
2273 else if (!(PL_reg_poscache[0] & (1<<POSCACHE_SUCCESS))) { \
2274 /* cache records failure, but this is success */ \
2276 PerlIO_printf(Perl_debug_log, \
2277 "%*s (remove success from failure cache)\n", \
2278 REPORT_CODE_OFF+PL_regindent*2, "") \
2280 PL_reg_poscache[cache_offset] &= ~(1<<cache_bit); \
2285 #define CACHEsayNO STMT_START { \
2286 if (cache_offset | cache_bit) { \
2287 if (!(PL_reg_poscache[0] & (1<<POSCACHE_SEEN))) \
2288 PL_reg_poscache[0] |= (1<<POSCACHE_SEEN); \
2289 else if ((PL_reg_poscache[0] & (1<<POSCACHE_SUCCESS))) { \
2290 /* cache records success, but this is failure */ \
2292 PerlIO_printf(Perl_debug_log, \
2293 "%*s (remove failure from success cache)\n", \
2294 REPORT_CODE_OFF+PL_regindent*2, "") \
2296 PL_reg_poscache[cache_offset] &= ~(1<<cache_bit); \
2302 /* this is used to determine how far from the left messages like
2303 'failed...' are printed. Currently 29 makes these messages line
2304 up with the opcode they refer to. Earlier perls used 25 which
2305 left these messages outdented making reviewing a debug output
2308 #define REPORT_CODE_OFF 29
2311 /* Make sure there is a test for this +1 options in re_tests */
2312 #define TRIE_INITAL_ACCEPT_BUFFLEN 4;
2315 /* simulate a recursive call to regmatch */
2317 #define REGMATCH(ns, where) \
2319 resume_state = resume_##where; \
2320 goto start_recurse; \
2321 resume_point_##where:
2346 struct regmatch_state {
2347 struct regmatch_state *prev_state;
2348 resume_states resume_state;
2361 CHECKPOINT cp, lastcp;
2364 I32 cache_offset, cache_bit;
2371 re_cc_state *cur_call_cc;
2373 reg_trie_accepted *accept_buff;
2376 re_cc_state *reg_call_cc; /* saved value of PL_reg_call_cc */
2380 - regmatch - main matching routine
2382 * Conceptually the strategy is simple: check to see whether the current
2383 * node matches, call self recursively to see whether the rest matches,
2384 * and then act accordingly. In practice we make some effort to avoid
2385 * recursion, in particular by going through "ordinary" nodes (that don't
2386 * need to know whether the rest of the match failed) by a loop instead of
2389 /* [lwall] I've hoisted the register declarations to the outer block in order to
2390 * maybe save a little bit of pushing and popping on the stack. It also takes
2391 * advantage of machines that use a register save mask on subroutine entry.
2393 * This function used to be heavily recursive, but since this had the
2394 * effect of blowing the CPU stack on complex regexes, it has been
2395 * restructured to be iterative, and to save state onto the heap rather
2396 * than the stack. Essentially whereever regmatch() used to be called, it
2397 * pushes the current state, notes where to return, then jumps back into
2400 * Originally the structure of this function used to look something like
2405 while (scan != NULL) {
2411 if (regmatch(...)) // recurse
2421 * Now it looks something like this:
2423 struct regmatch_state {
2432 while (scan != NULL) {
2438 resume_state = resume_FOO;
2443 if (result) // recurse
2449 ...push a, b, local onto the heap
2455 if (states pushed on heap) {
2456 ... restore a, b, local from heap
2457 switch (resume_state) {
2459 goto resume_point_FOO;
2466 * WARNING: this means that any line in this function that contains a
2467 * REGMATCH() or TRYPAREN() is actually simulating a recursive call to
2468 * regmatch() using gotos instead. Thus the values of any local variables
2469 * not saved in the regmatch_state structure will have been lost when
2470 * execution resumes on the next line .
2474 STATIC I32 /* 0 failure, 1 success */
2475 S_regmatch(pTHX_ regnode *prog)
2478 register const bool do_utf8 = PL_reg_match_utf8;
2479 const U32 uniflags = ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY;
2481 /************************************************************
2482 * the following variabes are saved and restored on each fake
2483 * recursive call to regmatch:
2485 * The first ones contain state that needs to be maintained
2486 * across the main while loop: */
2488 struct regmatch_state *prev_state = NULL; /* stack of pushed states */
2489 resume_states resume_state; /* where to jump to on return */
2490 register regnode *scan; /* Current node. */
2491 regnode *next; /* Next node. */
2492 bool minmod = 0; /* the next {n.m} is a {n,m}? */
2493 bool sw = 0; /* the condition value in (?(cond)a|b) */
2495 I32 unwind = 0; /* savestack index of current unwind block */
2496 CURCUR *cc = NULL; /* current innermost curly struct */
2497 register char *locinput = PL_reginput;
2499 /* while the rest of these are local to an individual branch, and
2500 * have only been hoisted into this outer scope to allow for saving and
2501 * restoration - thus they can be safely reused in other branches.
2502 * Note that they are only initialized here to silence compiler
2505 register I32 n = 0; /* no or next */
2506 register I32 ln = 0; /* len or last */
2507 register I32 c1 = 0, c2 = 0, paren = 0; /* case fold search, parenth */
2508 CHECKPOINT cp = 0; /* remember current savestack indexes */
2509 CHECKPOINT lastcp = 0;
2510 CURCUR *oldcc = NULL; /* tmp copy of cc */
2511 char *lastloc = NULL; /* Detection of 0-len. */
2512 I32 cache_offset = 0;
2520 re_cc_state *cur_call_cc = NULL;
2521 regexp *end_re = NULL;
2522 reg_trie_accepted *accept_buff = NULL;
2523 U32 accepted = 0; /* how many accepting states we have seen */
2525 /************************************************************
2526 * these variables are NOT saved: */
2528 register I32 nextchr; /* is always set to UCHARAT(locinput) */
2529 regnode *new_scan; /* node to begin exedcution at when recursing */
2530 bool result; /* return value of S_regmatch */
2532 regnode *inner; /* Next node in internal branch. */
2535 SV *re_debug_flags = NULL;
2540 /* Note that nextchr is a byte even in UTF */
2541 nextchr = UCHARAT(locinput);
2543 while (scan != NULL) {
2546 SV * const prop = sv_newmortal();
2547 const int docolor = *PL_colors[0];
2548 const int taill = (docolor ? 10 : 7); /* 3 chars for "> <" */
2549 int l = (PL_regeol - locinput) > taill ? taill : (PL_regeol - locinput);
2550 /* The part of the string before starttry has one color
2551 (pref0_len chars), between starttry and current
2552 position another one (pref_len - pref0_len chars),
2553 after the current position the third one.
2554 We assume that pref0_len <= pref_len, otherwise we
2555 decrease pref0_len. */
2556 int pref_len = (locinput - PL_bostr) > (5 + taill) - l
2557 ? (5 + taill) - l : locinput - PL_bostr;
2560 while (do_utf8 && UTF8_IS_CONTINUATION(*(U8*)(locinput - pref_len)))
2562 pref0_len = pref_len - (locinput - PL_reg_starttry);
2563 if (l + pref_len < (5 + taill) && l < PL_regeol - locinput)
2564 l = ( PL_regeol - locinput > (5 + taill) - pref_len
2565 ? (5 + taill) - pref_len : PL_regeol - locinput);
2566 while (do_utf8 && UTF8_IS_CONTINUATION(*(U8*)(locinput + l)))
2570 if (pref0_len > pref_len)
2571 pref0_len = pref_len;
2572 regprop(prop, scan);
2574 const char * const s0 =
2575 do_utf8 && OP(scan) != CANY ?
2576 pv_uni_display(PERL_DEBUG_PAD(0), (U8*)(locinput - pref_len),
2577 pref0_len, 60, UNI_DISPLAY_REGEX) :
2578 locinput - pref_len;
2579 const int len0 = do_utf8 ? strlen(s0) : pref0_len;
2580 const char * const s1 = do_utf8 && OP(scan) != CANY ?
2581 pv_uni_display(PERL_DEBUG_PAD(1),
2582 (U8*)(locinput - pref_len + pref0_len),
2583 pref_len - pref0_len, 60, UNI_DISPLAY_REGEX) :
2584 locinput - pref_len + pref0_len;
2585 const int len1 = do_utf8 ? strlen(s1) : pref_len - pref0_len;
2586 const char * const s2 = do_utf8 && OP(scan) != CANY ?
2587 pv_uni_display(PERL_DEBUG_PAD(2), (U8*)locinput,
2588 PL_regeol - locinput, 60, UNI_DISPLAY_REGEX) :
2590 const int len2 = do_utf8 ? strlen(s2) : l;
2591 PerlIO_printf(Perl_debug_log,
2592 "%4"IVdf" <%s%.*s%s%s%.*s%s%s%s%.*s%s>%*s|%3"IVdf":%*s%s\n",
2593 (IV)(locinput - PL_bostr),
2600 (docolor ? "" : "> <"),
2604 15 - l - pref_len + 1,
2606 (IV)(scan - PL_regprogram), PL_regindent*2, "",
2611 next = scan + NEXT_OFF(scan);
2617 if (locinput == PL_bostr)
2619 /* regtill = regbol; */
2624 if (locinput == PL_bostr ||
2625 ((nextchr || locinput < PL_regeol) && locinput[-1] == '\n'))
2631 if (locinput == PL_bostr)
2635 if (locinput == PL_reg_ganch)
2641 if ((nextchr || locinput < PL_regeol) && nextchr != '\n')
2646 if ((nextchr || locinput < PL_regeol) && nextchr != '\n')
2648 if (PL_regeol - locinput > 1)
2652 if (PL_regeol != locinput)
2656 if (!nextchr && locinput >= PL_regeol)
2659 locinput += PL_utf8skip[nextchr];
2660 if (locinput > PL_regeol)
2662 nextchr = UCHARAT(locinput);
2665 nextchr = UCHARAT(++locinput);
2668 if (!nextchr && locinput >= PL_regeol)
2670 nextchr = UCHARAT(++locinput);
2673 if ((!nextchr && locinput >= PL_regeol) || nextchr == '\n')
2676 locinput += PL_utf8skip[nextchr];
2677 if (locinput > PL_regeol)
2679 nextchr = UCHARAT(locinput);
2682 nextchr = UCHARAT(++locinput);
2688 traverse the TRIE keeping track of all accepting states
2689 we transition through until we get to a failing node.
2697 U8 *uc = ( U8* )locinput;
2704 U8 *uscan = (U8*)NULL;
2706 SV *sv_accept_buff = NULL;
2707 const enum { trie_plain, trie_utf8, trie_uft8_fold }
2708 trie_type = do_utf8 ?
2709 (OP(scan) == TRIE ? trie_utf8 : trie_uft8_fold)
2712 reg_trie_data *trie; /* what trie are we using right now */
2714 accepted = 0; /* how many accepting states we have seen */
2716 trie = (reg_trie_data*)PL_regdata->data[ ARG( scan ) ];
2718 while ( state && uc <= (U8*)PL_regeol ) {
2720 if (trie->states[ state ].wordnum) {
2724 bufflen = TRIE_INITAL_ACCEPT_BUFFLEN;
2725 sv_accept_buff=newSV(bufflen *
2726 sizeof(reg_trie_accepted) - 1);
2727 SvCUR_set(sv_accept_buff,
2728 sizeof(reg_trie_accepted));
2729 SvPOK_on(sv_accept_buff);
2730 sv_2mortal(sv_accept_buff);
2732 (reg_trie_accepted*)SvPV_nolen(sv_accept_buff );
2735 if (accepted >= bufflen) {
2737 accept_buff =(reg_trie_accepted*)
2738 SvGROW(sv_accept_buff,
2739 bufflen * sizeof(reg_trie_accepted));
2741 SvCUR_set(sv_accept_buff,SvCUR(sv_accept_buff)
2742 + sizeof(reg_trie_accepted));
2744 accept_buff[accepted].wordnum = trie->states[state].wordnum;
2745 accept_buff[accepted].endpos = uc;
2749 base = trie->states[ state ].trans.base;
2751 DEBUG_TRIE_EXECUTE_r(
2752 PerlIO_printf( Perl_debug_log,
2753 "%*s %sState: %4"UVxf", Base: %4"UVxf", Accepted: %4"UVxf" ",
2754 REPORT_CODE_OFF + PL_regindent * 2, "", PL_colors[4],
2755 (UV)state, (UV)base, (UV)accepted );
2759 switch (trie_type) {
2760 case trie_uft8_fold:
2762 uvc = utf8n_to_uvuni( uscan, UTF8_MAXLEN, &len, uniflags );
2767 U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
2768 uvc = utf8n_to_uvuni( (U8*)uc, UTF8_MAXLEN, &len, uniflags );
2769 uvc = to_uni_fold( uvc, foldbuf, &foldlen );
2770 foldlen -= UNISKIP( uvc );
2771 uscan = foldbuf + UNISKIP( uvc );
2775 uvc = utf8n_to_uvuni( (U8*)uc, UTF8_MAXLEN,
2784 charid = trie->charmap[ uvc ];
2788 if (trie->widecharmap) {
2789 SV** svpp = (SV**)NULL;
2790 svpp = hv_fetch(trie->widecharmap,
2791 (char*)&uvc, sizeof(UV), 0);
2793 charid = (U16)SvIV(*svpp);
2798 (base + charid > trie->uniquecharcount )
2799 && (base + charid - 1 - trie->uniquecharcount
2801 && trie->trans[base + charid - 1 -
2802 trie->uniquecharcount].check == state)
2804 state = trie->trans[base + charid - 1 -
2805 trie->uniquecharcount ].next;
2816 DEBUG_TRIE_EXECUTE_r(
2817 PerlIO_printf( Perl_debug_log,
2818 "Charid:%3x CV:%4"UVxf" After State: %4"UVxf"%s\n",
2819 charid, uvc, (UV)state, PL_colors[5] );
2826 There was at least one accepting state that we
2827 transitioned through. Presumably the number of accepting
2828 states is going to be low, typically one or two. So we
2829 simply scan through to find the one with lowest wordnum.
2830 Once we find it, we swap the last state into its place
2831 and decrement the size. We then try to match the rest of
2832 the pattern at the point where the word ends, if we
2833 succeed then we end the loop, otherwise the loop
2834 eventually terminates once all of the accepting states
2838 if ( accepted == 1 ) {
2840 SV **tmp = av_fetch( trie->words, accept_buff[ 0 ].wordnum-1, 0 );
2841 PerlIO_printf( Perl_debug_log,
2842 "%*s %sonly one match : #%d <%s>%s\n",
2843 REPORT_CODE_OFF+PL_regindent*2, "", PL_colors[4],
2844 accept_buff[ 0 ].wordnum,
2845 tmp ? SvPV_nolen_const( *tmp ) : "not compiled under -Dr",
2848 PL_reginput = (char *)accept_buff[ 0 ].endpos;
2849 /* in this case we free tmps/leave before we call regmatch
2850 as we wont be using accept_buff again. */
2853 REGMATCH(scan + NEXT_OFF(scan), TRIE1);
2854 /*** all unsaved local vars undefined at this point */
2857 PerlIO_printf( Perl_debug_log,"%*s %sgot %"IVdf" possible matches%s\n",
2858 REPORT_CODE_OFF + PL_regindent * 2, "", PL_colors[4], (IV)accepted,
2861 while ( !result && accepted-- ) {
2864 for( cur = 1 ; cur <= accepted ; cur++ ) {
2865 DEBUG_TRIE_EXECUTE_r(
2866 PerlIO_printf( Perl_debug_log,
2867 "%*s %sgot %"IVdf" (%d) as best, looking at %"IVdf" (%d)%s\n",
2868 REPORT_CODE_OFF + PL_regindent * 2, "", PL_colors[4],
2869 (IV)best, accept_buff[ best ].wordnum, (IV)cur,
2870 accept_buff[ cur ].wordnum, PL_colors[5] );
2873 if ( accept_buff[ cur ].wordnum < accept_buff[ best ].wordnum )
2877 SV ** const tmp = av_fetch( trie->words, accept_buff[ best ].wordnum - 1, 0 );
2878 PerlIO_printf( Perl_debug_log, "%*s %strying alternation #%d <%s> at 0x%p%s\n",
2879 REPORT_CODE_OFF+PL_regindent*2, "", PL_colors[4],
2880 accept_buff[best].wordnum,
2881 tmp ? SvPV_nolen_const( *tmp ) : "not compiled under -Dr",scan,
2884 if ( best<accepted ) {
2885 reg_trie_accepted tmp = accept_buff[ best ];
2886 accept_buff[ best ] = accept_buff[ accepted ];
2887 accept_buff[ accepted ] = tmp;
2890 PL_reginput = (char *)accept_buff[ best ].endpos;
2893 as far as I can tell we only need the SAVETMPS/FREETMPS
2894 for re's with EVAL in them but I'm leaving them in for
2895 all until I can be sure.
2898 REGMATCH(scan + NEXT_OFF(scan), TRIE2);
2899 /*** all unsaved local vars undefined at this point */
2912 /* unreached codepoint */
2914 char *s = STRING(scan);
2916 if (do_utf8 != UTF) {
2917 /* The target and the pattern have differing utf8ness. */
2919 const char *e = s + ln;
2922 /* The target is utf8, the pattern is not utf8. */
2927 if (NATIVE_TO_UNI(*(U8*)s) !=
2928 utf8n_to_uvuni((U8*)l, UTF8_MAXBYTES, &ulen,
2936 /* The target is not utf8, the pattern is utf8. */
2941 if (NATIVE_TO_UNI(*((U8*)l)) !=
2942 utf8n_to_uvuni((U8*)s, UTF8_MAXBYTES, &ulen,
2950 nextchr = UCHARAT(locinput);
2953 /* The target and the pattern have the same utf8ness. */
2954 /* Inline the first character, for speed. */
2955 if (UCHARAT(s) != nextchr)
2957 if (PL_regeol - locinput < ln)
2959 if (ln > 1 && memNE(s, locinput, ln))
2962 nextchr = UCHARAT(locinput);
2966 PL_reg_flags |= RF_tainted;
2969 char *s = STRING(scan);
2972 if (do_utf8 || UTF) {
2973 /* Either target or the pattern are utf8. */
2975 char *e = PL_regeol;
2977 if (ibcmp_utf8(s, 0, ln, (bool)UTF,
2978 l, &e, 0, do_utf8)) {
2979 /* One more case for the sharp s:
2980 * pack("U0U*", 0xDF) =~ /ss/i,
2981 * the 0xC3 0x9F are the UTF-8
2982 * byte sequence for the U+00DF. */
2984 toLOWER(s[0]) == 's' &&
2986 toLOWER(s[1]) == 's' &&
2993 nextchr = UCHARAT(locinput);
2997 /* Neither the target and the pattern are utf8. */
2999 /* Inline the first character, for speed. */
3000 if (UCHARAT(s) != nextchr &&
3001 UCHARAT(s) != ((OP(scan) == EXACTF)
3002 ? PL_fold : PL_fold_locale)[nextchr])
3004 if (PL_regeol - locinput < ln)
3006 if (ln > 1 && (OP(scan) == EXACTF
3007 ? ibcmp(s, locinput, ln)
3008 : ibcmp_locale(s, locinput, ln)))
3011 nextchr = UCHARAT(locinput);
3016 STRLEN inclasslen = PL_regeol - locinput;
3018 if (!reginclass(scan, (U8*)locinput, &inclasslen, do_utf8))
3020 if (locinput >= PL_regeol)
3022 locinput += inclasslen ? inclasslen : UTF8SKIP(locinput);
3023 nextchr = UCHARAT(locinput);
3028 nextchr = UCHARAT(locinput);
3029 if (!REGINCLASS(scan, (U8*)locinput))
3031 if (!nextchr && locinput >= PL_regeol)
3033 nextchr = UCHARAT(++locinput);
3037 /* If we might have the case of the German sharp s
3038 * in a casefolding Unicode character class. */
3040 if (ANYOF_FOLD_SHARP_S(scan, locinput, PL_regeol)) {
3041 locinput += SHARP_S_SKIP;
3042 nextchr = UCHARAT(locinput);
3048 PL_reg_flags |= RF_tainted;
3054 LOAD_UTF8_CHARCLASS_ALNUM();
3055 if (!(OP(scan) == ALNUM
3056 ? swash_fetch(PL_utf8_alnum, (U8*)locinput, do_utf8)
3057 : isALNUM_LC_utf8((U8*)locinput)))
3061 locinput += PL_utf8skip[nextchr];
3062 nextchr = UCHARAT(locinput);
3065 if (!(OP(scan) == ALNUM
3066 ? isALNUM(nextchr) : isALNUM_LC(nextchr)))
3068 nextchr = UCHARAT(++locinput);
3071 PL_reg_flags |= RF_tainted;
3074 if (!nextchr && locinput >= PL_regeol)
3077 LOAD_UTF8_CHARCLASS_ALNUM();
3078 if (OP(scan) == NALNUM
3079 ? swash_fetch(PL_utf8_alnum, (U8*)locinput, do_utf8)
3080 : isALNUM_LC_utf8((U8*)locinput))
3084 locinput += PL_utf8skip[nextchr];
3085 nextchr = UCHARAT(locinput);
3088 if (OP(scan) == NALNUM
3089 ? isALNUM(nextchr) : isALNUM_LC(nextchr))
3091 nextchr = UCHARAT(++locinput);
3095 PL_reg_flags |= RF_tainted;
3099 /* was last char in word? */
3101 if (locinput == PL_bostr)
3104 const U8 * const r = reghop3((U8*)locinput, -1, (U8*)PL_bostr);
3106 ln = utf8n_to_uvchr(r, UTF8SKIP(r), 0, 0);
3108 if (OP(scan) == BOUND || OP(scan) == NBOUND) {
3109 ln = isALNUM_uni(ln);
3110 LOAD_UTF8_CHARCLASS_ALNUM();
3111 n = swash_fetch(PL_utf8_alnum, (U8*)locinput, do_utf8);
3114 ln = isALNUM_LC_uvchr(UNI_TO_NATIVE(ln));
3115 n = isALNUM_LC_utf8((U8*)locinput);
3119 ln = (locinput != PL_bostr) ?
3120 UCHARAT(locinput - 1) : '\n';
3121 if (OP(scan) == BOUND || OP(scan) == NBOUND) {
3123 n = isALNUM(nextchr);
3126 ln = isALNUM_LC(ln);
3127 n = isALNUM_LC(nextchr);
3130 if (((!ln) == (!n)) == (OP(scan) == BOUND ||
3131 OP(scan) == BOUNDL))
3135 PL_reg_flags |= RF_tainted;
3141 if (UTF8_IS_CONTINUED(nextchr)) {
3142 LOAD_UTF8_CHARCLASS_SPACE();
3143 if (!(OP(scan) == SPACE
3144 ? swash_fetch(PL_utf8_space, (U8*)locinput, do_utf8)
3145 : isSPACE_LC_utf8((U8*)locinput)))
3149 locinput += PL_utf8skip[nextchr];
3150 nextchr = UCHARAT(locinput);
3153 if (!(OP(scan) == SPACE
3154 ? isSPACE(nextchr) : isSPACE_LC(nextchr)))
3156 nextchr = UCHARAT(++locinput);
3159 if (!(OP(scan) == SPACE
3160 ? isSPACE(nextchr) : isSPACE_LC(nextchr)))
3162 nextchr = UCHARAT(++locinput);
3166 PL_reg_flags |= RF_tainted;
3169 if (!nextchr && locinput >= PL_regeol)
3172 LOAD_UTF8_CHARCLASS_SPACE();
3173 if (OP(scan) == NSPACE
3174 ? swash_fetch(PL_utf8_space, (U8*)locinput, do_utf8)
3175 : isSPACE_LC_utf8((U8*)locinput))
3179 locinput += PL_utf8skip[nextchr];
3180 nextchr = UCHARAT(locinput);
3183 if (OP(scan) == NSPACE
3184 ? isSPACE(nextchr) : isSPACE_LC(nextchr))
3186 nextchr = UCHARAT(++locinput);
3189 PL_reg_flags |= RF_tainted;
3195 LOAD_UTF8_CHARCLASS_DIGIT();
3196 if (!(OP(scan) == DIGIT
3197 ? swash_fetch(PL_utf8_digit, (U8*)locinput, do_utf8)
3198 : isDIGIT_LC_utf8((U8*)locinput)))
3202 locinput += PL_utf8skip[nextchr];
3203 nextchr = UCHARAT(locinput);
3206 if (!(OP(scan) == DIGIT
3207 ? isDIGIT(nextchr) : isDIGIT_LC(nextchr)))
3209 nextchr = UCHARAT(++locinput);
3212 PL_reg_flags |= RF_tainted;
3215 if (!nextchr && locinput >= PL_regeol)
3218 LOAD_UTF8_CHARCLASS_DIGIT();
3219 if (OP(scan) == NDIGIT
3220 ? swash_fetch(PL_utf8_digit, (U8*)locinput, do_utf8)
3221 : isDIGIT_LC_utf8((U8*)locinput))
3225 locinput += PL_utf8skip[nextchr];
3226 nextchr = UCHARAT(locinput);
3229 if (OP(scan) == NDIGIT
3230 ? isDIGIT(nextchr) : isDIGIT_LC(nextchr))
3232 nextchr = UCHARAT(++locinput);
3235 if (locinput >= PL_regeol)
3238 LOAD_UTF8_CHARCLASS_MARK();
3239 if (swash_fetch(PL_utf8_mark,(U8*)locinput, do_utf8))
3241 locinput += PL_utf8skip[nextchr];
3242 while (locinput < PL_regeol &&
3243 swash_fetch(PL_utf8_mark,(U8*)locinput, do_utf8))
3244 locinput += UTF8SKIP(locinput);
3245 if (locinput > PL_regeol)
3250 nextchr = UCHARAT(locinput);
3253 PL_reg_flags |= RF_tainted;
3258 n = ARG(scan); /* which paren pair */
3259 ln = PL_regstartp[n];
3260 PL_reg_leftiter = PL_reg_maxiter; /* Void cache */
3261 if ((I32)*PL_reglastparen < n || ln == -1)
3262 sayNO; /* Do not match unless seen CLOSEn. */
3263 if (ln == PL_regendp[n])
3267 if (do_utf8 && OP(scan) != REF) { /* REF can do byte comparison */
3269 const char *e = PL_bostr + PL_regendp[n];
3271 * Note that we can't do the "other character" lookup trick as
3272 * in the 8-bit case (no pun intended) because in Unicode we
3273 * have to map both upper and title case to lower case.
3275 if (OP(scan) == REFF) {
3277 STRLEN ulen1, ulen2;
3278 U8 tmpbuf1[UTF8_MAXBYTES_CASE+1];
3279 U8 tmpbuf2[UTF8_MAXBYTES_CASE+1];
3283 toLOWER_utf8((U8*)s, tmpbuf1, &ulen1);
3284 toLOWER_utf8((U8*)l, tmpbuf2, &ulen2);
3285 if (ulen1 != ulen2 || memNE((char *)tmpbuf1, (char *)tmpbuf2, ulen1))
3292 nextchr = UCHARAT(locinput);
3296 /* Inline the first character, for speed. */
3297 if (UCHARAT(s) != nextchr &&
3299 (UCHARAT(s) != ((OP(scan) == REFF
3300 ? PL_fold : PL_fold_locale)[nextchr]))))
3302 ln = PL_regendp[n] - ln;
3303 if (locinput + ln > PL_regeol)
3305 if (ln > 1 && (OP(scan) == REF
3306 ? memNE(s, locinput, ln)
3308 ? ibcmp(s, locinput, ln)
3309 : ibcmp_locale(s, locinput, ln))))
3312 nextchr = UCHARAT(locinput);
3324 OP_4tree * const oop = PL_op;
3325 COP * const ocurcop = PL_curcop;
3328 struct regexp * const oreg = PL_reg_re;
3331 PL_op = (OP_4tree*)PL_regdata->data[n];
3332 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log, " re_eval 0x%"UVxf"\n", PTR2UV(PL_op)) );
3333 PAD_SAVE_LOCAL(old_comppad, (PAD*)PL_regdata->data[n + 2]);
3334 PL_regendp[0] = PL_reg_magic->mg_len = locinput - PL_bostr;
3337 SV ** const before = SP;
3338 CALLRUNOPS(aTHX); /* Scalar context. */
3341 ret = &PL_sv_undef; /* protect against empty (?{}) blocks. */
3349 PAD_RESTORE_LOCAL(old_comppad);
3350 PL_curcop = ocurcop;
3352 if (logical == 2) { /* Postponed subexpression. */
3359 if(SvROK(ret) && SvSMAGICAL(sv = SvRV(ret)))
3360 mg = mg_find(sv, PERL_MAGIC_qr);
3361 else if (SvSMAGICAL(ret)) {
3362 if (SvGMAGICAL(ret))
3363 sv_unmagic(ret, PERL_MAGIC_qr);
3365 mg = mg_find(ret, PERL_MAGIC_qr);
3369 re = (regexp *)mg->mg_obj;
3370 (void)ReREFCNT_inc(re);
3374 const char * const t = SvPV_const(ret, len);
3376 char * const oprecomp = PL_regprecomp;
3377 const I32 osize = PL_regsize;
3378 const I32 onpar = PL_regnpar;
3381 if (DO_UTF8(ret)) pm.op_pmdynflags |= PMdf_DYN_UTF8;
3382 re = CALLREGCOMP(aTHX_ (char*)t, (char*)t + len, &pm);
3384 & (SVs_TEMP | SVs_PADTMP | SVf_READONLY
3386 sv_magic(ret,(SV*)ReREFCNT_inc(re),
3388 PL_regprecomp = oprecomp;
3393 PerlIO_printf(Perl_debug_log,
3394 "Entering embedded \"%s%.60s%s%s\"\n",
3398 (strlen(re->precomp) > 60 ? "..." : ""))
3401 state.prev = PL_reg_call_cc;
3403 state.re = PL_reg_re;
3407 cp = regcppush(0); /* Save *all* the positions. */
3410 state.ss = PL_savestack_ix;
3411 *PL_reglastparen = 0;
3412 *PL_reglastcloseparen = 0;
3413 PL_reg_call_cc = &state;
3414 PL_reginput = locinput;
3415 toggleutf = ((PL_reg_flags & RF_utf8) != 0) ^
3416 ((re->reganch & ROPT_UTF8) != 0);
3417 if (toggleutf) PL_reg_flags ^= RF_utf8;
3419 /* XXXX This is too dramatic a measure... */
3422 /* XXX the only recursion left in regmatch() */
3423 if (regmatch(re->program + 1)) {
3424 /* Even though we succeeded, we need to restore
3425 global variables, since we may be wrapped inside
3426 SUSPEND, thus the match may be not finished yet. */
3428 /* XXXX Do this only if SUSPENDed? */
3429 PL_reg_call_cc = state.prev;
3431 PL_reg_re = state.re;
3432 cache_re(PL_reg_re);
3433 if (toggleutf) PL_reg_flags ^= RF_utf8;
3435 /* XXXX This is too dramatic a measure... */
3438 /* These are needed even if not SUSPEND. */
3444 REGCP_UNWIND(lastcp);
3446 PL_reg_call_cc = state.prev;
3448 PL_reg_re = state.re;
3449 cache_re(PL_reg_re);
3450 if (toggleutf) PL_reg_flags ^= RF_utf8;
3452 /* XXXX This is too dramatic a measure... */
3462 sv_setsv(save_scalar(PL_replgv), ret);
3468 n = ARG(scan); /* which paren pair */
3469 PL_reg_start_tmp[n] = locinput;
3474 n = ARG(scan); /* which paren pair */
3475 PL_regstartp[n] = PL_reg_start_tmp[n] - PL_bostr;
3476 PL_regendp[n] = locinput - PL_bostr;
3477 if (n > (I32)*PL_reglastparen)
3478 *PL_reglastparen = n;
3479 *PL_reglastcloseparen = n;
3482 n = ARG(scan); /* which paren pair */
3483 sw = ((I32)*PL_reglastparen >= n && PL_regendp[n] != -1);
3486 PL_reg_leftiter = PL_reg_maxiter; /* Void cache */
3488 next = NEXTOPER(NEXTOPER(scan));
3490 next = scan + ARG(scan);
3491 if (OP(next) == IFTHEN) /* Fake one. */
3492 next = NEXTOPER(NEXTOPER(next));
3496 logical = scan->flags;
3498 /*******************************************************************
3499 cc contains infoblock about the innermost (...)* loop, and
3500 a pointer to the next outer infoblock.
3502 Here is how Y(A)*Z is processed (if it is compiled into CURLYX/WHILEM):
3504 1) After matching Y, regnode for CURLYX is processed;
3506 2) This regnode mallocs an infoblock, and calls regmatch() recursively
3507 with the starting point at WHILEM node;
3509 3) Each hit of WHILEM node tries to match A and Z (in the order
3510 depending on the current iteration, min/max of {min,max} and
3511 greediness). The information about where are nodes for "A"
3512 and "Z" is read from the infoblock, as is info on how many times "A"
3513 was already matched, and greediness.
3515 4) After A matches, the same WHILEM node is hit again.
3517 5) Each time WHILEM is hit, cc is the infoblock created by CURLYX
3518 of the same pair. Thus when WHILEM tries to match Z, it temporarily
3519 resets cc, since this Y(A)*Z can be a part of some other loop:
3520 as in (Y(A)*Z)*. If Z matches, the automaton will hit the WHILEM node
3521 of the external loop.
3523 Currently present infoblocks form a tree with a stem formed by PL_curcc
3524 and whatever it mentions via ->next, and additional attached trees
3525 corresponding to temporarily unset infoblocks as in "5" above.
3527 In the following picture, infoblocks for outer loop of
3528 (Y(A)*?Z)*?T are denoted O, for inner I. NULL starting block
3529 is denoted by x. The matched string is YAAZYAZT. Temporarily postponed
3530 infoblocks are drawn below the "reset" infoblock.
3532 In fact in the picture below we do not show failed matches for Z and T
3533 by WHILEM blocks. [We illustrate minimal matches, since for them it is
3534 more obvious *why* one needs to *temporary* unset infoblocks.]
3536 Matched REx position InfoBlocks Comment
3540 Y A)*?Z)*?T x <- O <- I
3541 YA )*?Z)*?T x <- O <- I
3542 YA A)*?Z)*?T x <- O <- I
3543 YAA )*?Z)*?T x <- O <- I
3544 YAA Z)*?T x <- O # Temporary unset I
3547 YAAZ Y(A)*?Z)*?T x <- O
3550 YAAZY (A)*?Z)*?T x <- O
3553 YAAZY A)*?Z)*?T x <- O <- I
3556 YAAZYA )*?Z)*?T x <- O <- I
3559 YAAZYA Z)*?T x <- O # Temporary unset I
3565 YAAZYAZ T x # Temporary unset O
3572 *******************************************************************/
3575 /* No need to save/restore up to this paren */
3576 I32 parenfloor = scan->flags;
3580 Newx(newcc, 1, CURCUR);
3585 cp = PL_savestack_ix;
3586 if (OP(PREVOPER(next)) == NOTHING) /* LONGJMP */
3588 /* XXXX Probably it is better to teach regpush to support
3589 parenfloor > PL_regsize... */
3590 if (parenfloor > (I32)*PL_reglastparen)
3591 parenfloor = *PL_reglastparen; /* Pessimization... */
3592 cc->parenfloor = parenfloor;
3594 cc->min = ARG1(scan);
3595 cc->max = ARG2(scan);
3596 cc->scan = NEXTOPER(scan) + EXTRA_STEP_2ARGS;
3598 cc->minmod = minmod;
3600 PL_reginput = locinput;
3601 REGMATCH(PREVOPER(next), CURLYX); /* start on the WHILEM */
3602 /*** all unsaved local vars undefined at this point */
3611 * This is really hard to understand, because after we match
3612 * what we're trying to match, we must make sure the rest of
3613 * the REx is going to match for sure, and to do that we have
3614 * to go back UP the parse tree by recursing ever deeper. And
3615 * if it fails, we have to reset our parent's current state
3616 * that we can try again after backing off.
3619 lastloc = cc->lastloc; /* Detection of 0-len. */
3623 n = cc->cur + 1; /* how many we know we matched */
3624 PL_reginput = locinput;
3627 PerlIO_printf(Perl_debug_log,
3628 "%*s %ld out of %ld..%ld cc=%"UVxf"\n",
3629 REPORT_CODE_OFF+PL_regindent*2, "",
3630 (long)n, (long)cc->min,
3631 (long)cc->max, PTR2UV(cc))
3634 /* If degenerate scan matches "", assume scan done. */
3636 if (locinput == cc->lastloc && n >= cc->min) {
3642 PerlIO_printf(Perl_debug_log,
3643 "%*s empty match detected, try continuation...\n",
3644 REPORT_CODE_OFF+PL_regindent*2, "")
3646 REGMATCH(oldcc->next, WHILEM1);
3647 /*** all unsaved local vars undefined at this point */
3652 cc->oldcc->cur = ln;
3656 /* First just match a string of min scans. */
3660 cc->lastloc = locinput;
3661 REGMATCH(cc->scan, WHILEM2);
3662 /*** all unsaved local vars undefined at this point */
3666 cc->lastloc = lastloc;
3671 /* Check whether we already were at this position.
3672 Postpone detection until we know the match is not
3673 *that* much linear. */
3674 if (!PL_reg_maxiter) {
3675 PL_reg_maxiter = (PL_regeol - PL_bostr + 1) * (scan->flags>>4);
3676 PL_reg_leftiter = PL_reg_maxiter;
3678 if (PL_reg_leftiter-- == 0) {
3679 const I32 size = (PL_reg_maxiter + 7 + POSCACHE_START)/8;
3680 if (PL_reg_poscache) {
3681 if ((I32)PL_reg_poscache_size < size) {
3682 Renew(PL_reg_poscache, size, char);
3683 PL_reg_poscache_size = size;
3685 Zero(PL_reg_poscache, size, char);
3688 PL_reg_poscache_size = size;
3689 Newxz(PL_reg_poscache, size, char);
3692 PerlIO_printf(Perl_debug_log,
3693 "%sDetected a super-linear match, switching on caching%s...\n",
3694 PL_colors[4], PL_colors[5])
3697 if (PL_reg_leftiter < 0) {
3698 cache_offset = locinput - PL_bostr;
3700 cache_offset = (scan->flags & 0xf) - 1 + POSCACHE_START
3701 + cache_offset * (scan->flags>>4);
3702 cache_bit = cache_offset % 8;
3704 if (PL_reg_poscache[cache_offset] & (1<<cache_bit)) {
3706 PerlIO_printf(Perl_debug_log,
3707 "%*s already tried at this position...\n",
3708 REPORT_CODE_OFF+PL_regindent*2, "")
3710 if (PL_reg_poscache[0] & (1<<POSCACHE_SUCCESS))
3711 /* cache records success */
3714 /* cache records failure */
3717 PL_reg_poscache[cache_offset] |= (1<<cache_bit);
3721 /* Prefer next over scan for minimal matching. */
3728 cp = regcppush(oldcc->parenfloor);
3730 REGMATCH(oldcc->next, WHILEM3);
3731 /*** all unsaved local vars undefined at this point */
3735 CACHEsayYES; /* All done. */
3737 REGCP_UNWIND(lastcp);
3740 cc->oldcc->cur = ln;
3742 if (n >= cc->max) { /* Maximum greed exceeded? */
3743 if (ckWARN(WARN_REGEXP) && n >= REG_INFTY
3744 && !(PL_reg_flags & RF_warned)) {
3745 PL_reg_flags |= RF_warned;
3746 Perl_warner(aTHX_ packWARN(WARN_REGEXP), "%s limit (%d) exceeded",
3747 "Complex regular subexpression recursion",
3754 PerlIO_printf(Perl_debug_log,
3755 "%*s trying longer...\n",
3756 REPORT_CODE_OFF+PL_regindent*2, "")
3758 /* Try scanning more and see if it helps. */
3759 PL_reginput = locinput;
3761 cc->lastloc = locinput;
3762 cp = regcppush(cc->parenfloor);
3764 REGMATCH(cc->scan, WHILEM4);
3765 /*** all unsaved local vars undefined at this point */
3770 REGCP_UNWIND(lastcp);
3773 cc->lastloc = lastloc;
3777 /* Prefer scan over next for maximal matching. */
3779 if (n < cc->max) { /* More greed allowed? */
3780 cp = regcppush(cc->parenfloor);
3782 cc->lastloc = locinput;
3784 REGMATCH(cc->scan, WHILEM5);
3785 /*** all unsaved local vars undefined at this point */
3790 REGCP_UNWIND(lastcp);
3791 regcppop(); /* Restore some previous $<digit>s? */
3792 PL_reginput = locinput;
3794 PerlIO_printf(Perl_debug_log,
3795 "%*s failed, try continuation...\n",
3796 REPORT_CODE_OFF+PL_regindent*2, "")
3799 if (ckWARN(WARN_REGEXP) && n >= REG_INFTY
3800 && !(PL_reg_flags & RF_warned)) {
3801 PL_reg_flags |= RF_warned;
3802 Perl_warner(aTHX_ packWARN(WARN_REGEXP), "%s limit (%d) exceeded",
3803 "Complex regular subexpression recursion",
3807 /* Failed deeper matches of scan, so see if this one works. */
3812 REGMATCH(oldcc->next, WHILEM6);
3813 /*** all unsaved local vars undefined at this point */
3818 cc->oldcc->cur = ln;
3820 cc->lastloc = lastloc;
3825 next = scan + ARG(scan);
3828 inner = NEXTOPER(NEXTOPER(scan));
3831 inner = NEXTOPER(scan);
3835 if (OP(next) != c1) /* No choice. */
3836 next = inner; /* Avoid recursion. */
3838 const I32 lastparen = *PL_reglastparen;
3839 /* Put unwinding data on stack */
3840 const I32 unwind1 = SSNEWt(1,re_unwind_branch_t);
3841 re_unwind_branch_t * const uw = SSPTRt(unwind1,re_unwind_branch_t);
3845 uw->type = ((c1 == BRANCH)
3847 : RE_UNWIND_BRANCHJ);
3848 uw->lastparen = lastparen;
3850 uw->locinput = locinput;
3851 uw->nextchr = nextchr;
3853 uw->regindent = ++PL_regindent;
3856 REGCP_SET(uw->lastcp);
3858 /* Now go into the first branch */
3868 curlym_l = matches = 0;
3870 /* We suppose that the next guy does not need
3871 backtracking: in particular, it is of constant non-zero length,
3872 and has no parenths to influence future backrefs. */
3873 ln = ARG1(scan); /* min to match */
3874 n = ARG2(scan); /* max to match */
3875 paren = scan->flags;
3877 if (paren > PL_regsize)
3879 if (paren > (I32)*PL_reglastparen)
3880 *PL_reglastparen = paren;
3882 scan = NEXTOPER(scan) + NODE_STEP_REGNODE;
3884 scan += NEXT_OFF(scan); /* Skip former OPEN. */
3885 PL_reginput = locinput;
3886 maxwanted = minmod ? ln : n;
3888 while (PL_reginput < PL_regeol && matches < maxwanted) {
3889 REGMATCH(scan, CURLYM1);
3890 /*** all unsaved local vars undefined at this point */
3893 /* on first match, determine length, curlym_l */
3895 if (PL_reg_match_utf8) {
3897 while (s < PL_reginput) {
3903 curlym_l = PL_reginput - locinput;
3905 if (curlym_l == 0) {
3906 matches = maxwanted;
3910 locinput = PL_reginput;
3914 PL_reginput = locinput;
3918 if (ln && matches < ln)
3920 if (HAS_TEXT(next) || JUMPABLE(next)) {
3921 regnode *text_node = next;