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
38 * pregcomp and pregexec -- regsub and regerror are not used in perl
40 * Copyright (c) 1986 by University of Toronto.
41 * Written by Henry Spencer. Not derived from licensed software.
43 * Permission is granted to anyone to use this software for any
44 * purpose on any computer system, and to redistribute it freely,
45 * subject to the following restrictions:
47 * 1. The author is not responsible for the consequences of use of
48 * this software, no matter how awful, even if they arise
51 * 2. The origin of this software must not be misrepresented, either
52 * by explicit claim or by omission.
54 * 3. Altered versions must be plainly marked as such, and must not
55 * be misrepresented as being the original software.
57 **** Alterations to Henry's code are...
59 **** Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
60 **** 2000, 2001, 2002, 2003, 2004, 2005, 2006, by Larry Wall and others
62 **** You may distribute under the terms of either the GNU General Public
63 **** License or the Artistic License, as specified in the README file.
65 * Beware that some of this code is subtly aware of the way operator
66 * precedence is structured in regular expressions. Serious changes in
67 * regular-expression syntax might require a total rethink.
70 #define PERL_IN_REGEXEC_C
73 #ifdef PERL_IN_XSUB_RE
79 #define RF_tainted 1 /* tainted information used? */
80 #define RF_warned 2 /* warned about big count? */
81 #define RF_evaled 4 /* Did an EVAL with setting? */
82 #define RF_utf8 8 /* String contains multibyte chars? */
84 #define UTF ((PL_reg_flags & RF_utf8) != 0)
86 #define RS_init 1 /* eval environment created */
87 #define RS_set 2 /* replsv value is set */
93 #define REGINCLASS(prog,p,c) (ANYOF_FLAGS(p) ? reginclass(prog,p,c,0,0) : ANYOF_BITMAP_TEST(p,*(c)))
99 #define CHR_SVLEN(sv) (do_utf8 ? sv_len_utf8(sv) : SvCUR(sv))
100 #define CHR_DIST(a,b) (PL_reg_match_utf8 ? utf8_distance(a,b) : a - b)
102 #define HOPc(pos,off) \
103 (char *)(PL_reg_match_utf8 \
104 ? reghop3((U8*)pos, off, (U8*)(off >= 0 ? PL_regeol : PL_bostr)) \
106 #define HOPBACKc(pos, off) \
107 (char*)(PL_reg_match_utf8\
108 ? reghopmaybe3((U8*)pos, -off, (U8*)PL_bostr) \
109 : (pos - off >= PL_bostr) \
113 #define HOP3(pos,off,lim) (PL_reg_match_utf8 ? reghop3((U8*)pos, off, (U8*)lim) : (U8*)(pos + off))
114 #define HOP3c(pos,off,lim) ((char*)HOP3(pos,off,lim))
116 #define LOAD_UTF8_CHARCLASS(class,str) STMT_START { \
117 if (!CAT2(PL_utf8_,class)) { bool ok; ENTER; save_re_context(); ok=CAT2(is_utf8_,class)((const U8*)str); assert(ok); LEAVE; } } STMT_END
118 #define LOAD_UTF8_CHARCLASS_ALNUM() LOAD_UTF8_CHARCLASS(alnum,"a")
119 #define LOAD_UTF8_CHARCLASS_DIGIT() LOAD_UTF8_CHARCLASS(digit,"0")
120 #define LOAD_UTF8_CHARCLASS_SPACE() LOAD_UTF8_CHARCLASS(space," ")
121 #define LOAD_UTF8_CHARCLASS_MARK() LOAD_UTF8_CHARCLASS(mark, "\xcd\x86")
123 /* TODO: Combine JUMPABLE and HAS_TEXT to cache OP(rn) */
125 /* for use after a quantifier and before an EXACT-like node -- japhy */
126 #define JUMPABLE(rn) ( \
127 OP(rn) == OPEN || OP(rn) == CLOSE || OP(rn) == EVAL || \
128 OP(rn) == SUSPEND || OP(rn) == IFMATCH || \
129 OP(rn) == PLUS || OP(rn) == MINMOD || \
130 (PL_regkind[OP(rn)] == CURLY && ARG1(rn) > 0) \
133 #define HAS_TEXT(rn) ( \
134 PL_regkind[OP(rn)] == EXACT || PL_regkind[OP(rn)] == REF \
138 Search for mandatory following text node; for lookahead, the text must
139 follow but for lookbehind (rn->flags != 0) we skip to the next step.
141 #define FIND_NEXT_IMPT(rn) STMT_START { \
142 while (JUMPABLE(rn)) { \
143 const OPCODE type = OP(rn); \
144 if (type == SUSPEND || PL_regkind[type] == CURLY) \
145 rn = NEXTOPER(NEXTOPER(rn)); \
146 else if (type == PLUS) \
148 else if (type == IFMATCH) \
149 rn = (rn->flags == 0) ? NEXTOPER(NEXTOPER(rn)) : rn + ARG(rn); \
150 else rn += NEXT_OFF(rn); \
154 static void restore_pos(pTHX_ void *arg);
157 S_regcppush(pTHX_ I32 parenfloor)
160 const int retval = PL_savestack_ix;
161 #define REGCP_PAREN_ELEMS 4
162 const int paren_elems_to_push = (PL_regsize - parenfloor) * REGCP_PAREN_ELEMS;
165 if (paren_elems_to_push < 0)
166 Perl_croak(aTHX_ "panic: paren_elems_to_push < 0");
168 #define REGCP_OTHER_ELEMS 6
169 SSGROW(paren_elems_to_push + REGCP_OTHER_ELEMS);
170 for (p = PL_regsize; p > parenfloor; p--) {
171 /* REGCP_PARENS_ELEMS are pushed per pairs of parentheses. */
172 SSPUSHINT(PL_regendp[p]);
173 SSPUSHINT(PL_regstartp[p]);
174 SSPUSHPTR(PL_reg_start_tmp[p]);
177 /* REGCP_OTHER_ELEMS are pushed in any case, parentheses or no. */
178 SSPUSHINT(PL_regsize);
179 SSPUSHINT(*PL_reglastparen);
180 SSPUSHINT(*PL_reglastcloseparen);
181 SSPUSHPTR(PL_reginput);
182 #define REGCP_FRAME_ELEMS 2
183 /* REGCP_FRAME_ELEMS are part of the REGCP_OTHER_ELEMS and
184 * are needed for the regexp context stack bookkeeping. */
185 SSPUSHINT(paren_elems_to_push + REGCP_OTHER_ELEMS - REGCP_FRAME_ELEMS);
186 SSPUSHINT(SAVEt_REGCONTEXT); /* Magic cookie. */
191 /* These are needed since we do not localize EVAL nodes: */
192 # define REGCP_SET(cp) DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, \
193 " Setting an EVAL scope, savestack=%"IVdf"\n", \
194 (IV)PL_savestack_ix)); cp = PL_savestack_ix
196 # define REGCP_UNWIND(cp) DEBUG_EXECUTE_r(cp != PL_savestack_ix ? \
197 PerlIO_printf(Perl_debug_log, \
198 " Clearing an EVAL scope, savestack=%"IVdf"..%"IVdf"\n", \
199 (IV)(cp), (IV)PL_savestack_ix) : 0); regcpblow(cp)
202 S_regcppop(pTHX_ const regexp *rex)
208 GET_RE_DEBUG_FLAGS_DECL;
210 /* Pop REGCP_OTHER_ELEMS before the parentheses loop starts. */
212 assert(i == SAVEt_REGCONTEXT); /* Check that the magic cookie is there. */
213 i = SSPOPINT; /* Parentheses elements to pop. */
214 input = (char *) SSPOPPTR;
215 *PL_reglastcloseparen = SSPOPINT;
216 *PL_reglastparen = SSPOPINT;
217 PL_regsize = SSPOPINT;
219 /* Now restore the parentheses context. */
220 for (i -= (REGCP_OTHER_ELEMS - REGCP_FRAME_ELEMS);
221 i > 0; i -= REGCP_PAREN_ELEMS) {
223 U32 paren = (U32)SSPOPINT;
224 PL_reg_start_tmp[paren] = (char *) SSPOPPTR;
225 PL_regstartp[paren] = SSPOPINT;
227 if (paren <= *PL_reglastparen)
228 PL_regendp[paren] = tmps;
230 PerlIO_printf(Perl_debug_log,
231 " restoring \\%"UVuf" to %"IVdf"(%"IVdf")..%"IVdf"%s\n",
232 (UV)paren, (IV)PL_regstartp[paren],
233 (IV)(PL_reg_start_tmp[paren] - PL_bostr),
234 (IV)PL_regendp[paren],
235 (paren > *PL_reglastparen ? "(no)" : ""));
239 if (*PL_reglastparen + 1 <= rex->nparens) {
240 PerlIO_printf(Perl_debug_log,
241 " restoring \\%"IVdf"..\\%"IVdf" to undef\n",
242 (IV)(*PL_reglastparen + 1), (IV)rex->nparens);
246 /* It would seem that the similar code in regtry()
247 * already takes care of this, and in fact it is in
248 * a better location to since this code can #if 0-ed out
249 * but the code in regtry() is needed or otherwise tests
250 * requiring null fields (pat.t#187 and split.t#{13,14}
251 * (as of patchlevel 7877) will fail. Then again,
252 * this code seems to be necessary or otherwise
253 * building DynaLoader will fail:
254 * "Error: '*' not in typemap in DynaLoader.xs, line 164"
256 for (i = *PL_reglastparen + 1; (U32)i <= rex->nparens; i++) {
258 PL_regstartp[i] = -1;
265 #define regcpblow(cp) LEAVE_SCOPE(cp) /* Ignores regcppush()ed data. */
267 #define TRYPAREN(paren, n, input, where) { \
270 PL_regstartp[paren] = HOPc(input, -1) - PL_bostr; \
271 PL_regendp[paren] = input - PL_bostr; \
274 PL_regendp[paren] = -1; \
276 REGMATCH(next, where); \
280 PL_regendp[paren] = -1; \
285 * pregexec and friends
288 #ifndef PERL_IN_XSUB_RE
290 - pregexec - match a regexp against a string
293 Perl_pregexec(pTHX_ register regexp *prog, char *stringarg, register char *strend,
294 char *strbeg, I32 minend, SV *screamer, U32 nosave)
295 /* strend: pointer to null at end of string */
296 /* strbeg: real beginning of string */
297 /* minend: end of match must be >=minend after stringarg. */
298 /* nosave: For optimizations. */
301 regexec_flags(prog, stringarg, strend, strbeg, minend, screamer, NULL,
302 nosave ? 0 : REXEC_COPY_STR);
307 * Need to implement the following flags for reg_anch:
309 * USE_INTUIT_NOML - Useful to call re_intuit_start() first
311 * INTUIT_AUTORITATIVE_NOML - Can trust a positive answer
312 * INTUIT_AUTORITATIVE_ML
313 * INTUIT_ONCE_NOML - Intuit can match in one location only.
316 * Another flag for this function: SECOND_TIME (so that float substrs
317 * with giant delta may be not rechecked).
320 /* Assumptions: if ANCH_GPOS, then strpos is anchored. XXXX Check GPOS logic */
322 /* If SCREAM, then SvPVX_const(sv) should be compatible with strpos and strend.
323 Otherwise, only SvCUR(sv) is used to get strbeg. */
325 /* XXXX We assume that strpos is strbeg unless sv. */
327 /* XXXX Some places assume that there is a fixed substring.
328 An update may be needed if optimizer marks as "INTUITable"
329 RExen without fixed substrings. Similarly, it is assumed that
330 lengths of all the strings are no more than minlen, thus they
331 cannot come from lookahead.
332 (Or minlen should take into account lookahead.) */
334 /* A failure to find a constant substring means that there is no need to make
335 an expensive call to REx engine, thus we celebrate a failure. Similarly,
336 finding a substring too deep into the string means that less calls to
337 regtry() should be needed.
339 REx compiler's optimizer found 4 possible hints:
340 a) Anchored substring;
342 c) Whether we are anchored (beginning-of-line or \G);
343 d) First node (of those at offset 0) which may distingush positions;
344 We use a)b)d) and multiline-part of c), and try to find a position in the
345 string which does not contradict any of them.
348 /* Most of decisions we do here should have been done at compile time.
349 The nodes of the REx which we used for the search should have been
350 deleted from the finite automaton. */
353 Perl_re_intuit_start(pTHX_ regexp *prog, SV *sv, char *strpos,
354 char *strend, U32 flags, re_scream_pos_data *data)
357 register I32 start_shift = 0;
358 /* Should be nonnegative! */
359 register I32 end_shift = 0;
364 const int do_utf8 = sv ? SvUTF8(sv) : 0; /* if no sv we have to assume bytes */
366 register char *other_last = NULL; /* other substr checked before this */
367 char *check_at = NULL; /* check substr found at this pos */
368 const I32 multiline = prog->reganch & PMf_MULTILINE;
370 const char * const i_strpos = strpos;
371 SV * const dsv = PERL_DEBUG_PAD_ZERO(0);
374 GET_RE_DEBUG_FLAGS_DECL;
376 RX_MATCH_UTF8_set(prog,do_utf8);
378 if (prog->reganch & ROPT_UTF8) {
379 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
380 "UTF-8 regex...\n"));
381 PL_reg_flags |= RF_utf8;
385 const char *s = PL_reg_match_utf8 ?
386 sv_uni_display(dsv, sv, 60, UNI_DISPLAY_REGEX) :
388 const int len = PL_reg_match_utf8 ?
389 (int)strlen(s) : strend - strpos;
392 if (PL_reg_match_utf8)
393 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
394 "UTF-8 target...\n"));
395 PerlIO_printf(Perl_debug_log,
396 "%sGuessing start of match, REx%s \"%s%.60s%s%s\" against \"%s%.*s%s%s\"...\n",
397 PL_colors[4], PL_colors[5], PL_colors[0],
400 (strlen(prog->precomp) > 60 ? "..." : ""),
402 (int)(len > 60 ? 60 : len),
404 (len > 60 ? "..." : "")
408 /* CHR_DIST() would be more correct here but it makes things slow. */
409 if (prog->minlen > strend - strpos) {
410 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
411 "String too short... [re_intuit_start]\n"));
414 strbeg = (sv && SvPOK(sv)) ? strend - SvCUR(sv) : strpos;
417 if (!prog->check_utf8 && prog->check_substr)
418 to_utf8_substr(prog);
419 check = prog->check_utf8;
421 if (!prog->check_substr && prog->check_utf8)
422 to_byte_substr(prog);
423 check = prog->check_substr;
425 if (check == &PL_sv_undef) {
426 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
427 "Non-utf string cannot match utf check string\n"));
430 if (prog->reganch & ROPT_ANCH) { /* Match at beg-of-str or after \n */
431 ml_anch = !( (prog->reganch & ROPT_ANCH_SINGLE)
432 || ( (prog->reganch & ROPT_ANCH_BOL)
433 && !multiline ) ); /* Check after \n? */
436 if ( !(prog->reganch & (ROPT_ANCH_GPOS /* Checked by the caller */
437 | ROPT_IMPLICIT)) /* not a real BOL */
438 /* SvCUR is not set on references: SvRV and SvPVX_const overlap */
440 && (strpos != strbeg)) {
441 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Not at start...\n"));
444 if (prog->check_offset_min == prog->check_offset_max &&
445 !(prog->reganch & ROPT_CANY_SEEN)) {
446 /* Substring at constant offset from beg-of-str... */
449 s = HOP3c(strpos, prog->check_offset_min, strend);
451 slen = SvCUR(check); /* >= 1 */
453 if ( strend - s > slen || strend - s < slen - 1
454 || (strend - s == slen && strend[-1] != '\n')) {
455 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "String too long...\n"));
458 /* Now should match s[0..slen-2] */
460 if (slen && (*SvPVX_const(check) != *s
462 && memNE(SvPVX_const(check), s, slen)))) {
464 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "String not equal...\n"));
468 else if (*SvPVX_const(check) != *s
469 || ((slen = SvCUR(check)) > 1
470 && memNE(SvPVX_const(check), s, slen)))
473 goto success_at_start;
476 /* Match is anchored, but substr is not anchored wrt beg-of-str. */
478 start_shift = prog->check_offset_min; /* okay to underestimate on CC */
479 end_shift = prog->minlen - start_shift -
480 CHR_SVLEN(check) + (SvTAIL(check) != 0);
482 const I32 end = prog->check_offset_max + CHR_SVLEN(check)
483 - (SvTAIL(check) != 0);
484 const I32 eshift = CHR_DIST((U8*)strend, (U8*)s) - end;
486 if (end_shift < eshift)
490 else { /* Can match at random position */
493 start_shift = prog->check_offset_min; /* okay to underestimate on CC */
494 /* Should be nonnegative! */
495 end_shift = prog->minlen - start_shift -
496 CHR_SVLEN(check) + (SvTAIL(check) != 0);
499 #ifdef DEBUGGING /* 7/99: reports of failure (with the older version) */
501 Perl_croak(aTHX_ "panic: end_shift");
505 /* Find a possible match in the region s..strend by looking for
506 the "check" substring in the region corrected by start/end_shift. */
507 if (flags & REXEC_SCREAM) {
508 I32 p = -1; /* Internal iterator of scream. */
509 I32 * const pp = data ? data->scream_pos : &p;
511 if (PL_screamfirst[BmRARE(check)] >= 0
512 || ( BmRARE(check) == '\n'
513 && (BmPREVIOUS(check) == SvCUR(check) - 1)
515 s = screaminstr(sv, check,
516 start_shift + (s - strbeg), end_shift, pp, 0);
519 /* we may be pointing at the wrong string */
520 if (s && RX_MATCH_COPIED(prog))
521 s = strbeg + (s - SvPVX_const(sv));
523 *data->scream_olds = s;
525 else if (prog->reganch & ROPT_CANY_SEEN)
526 s = fbm_instr((U8*)(s + start_shift),
527 (U8*)(strend - end_shift),
528 check, multiline ? FBMrf_MULTILINE : 0);
530 s = fbm_instr(HOP3(s, start_shift, strend),
531 HOP3(strend, -end_shift, strbeg),
532 check, multiline ? FBMrf_MULTILINE : 0);
534 /* Update the count-of-usability, remove useless subpatterns,
537 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%s %s substr \"%s%.*s%s\"%s%s",
538 (s ? "Found" : "Did not find"),
539 (check == (do_utf8 ? prog->anchored_utf8 : prog->anchored_substr) ? "anchored" : "floating"),
541 (int)(SvCUR(check) - (SvTAIL(check)!=0)),
543 PL_colors[1], (SvTAIL(check) ? "$" : ""),
544 (s ? " at offset " : "...\n") ) );
551 /* Finish the diagnostic message */
552 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%ld...\n", (long)(s - i_strpos)) );
554 /* Got a candidate. Check MBOL anchoring, and the *other* substr.
555 Start with the other substr.
556 XXXX no SCREAM optimization yet - and a very coarse implementation
557 XXXX /ttx+/ results in anchored="ttx", floating="x". floating will
558 *always* match. Probably should be marked during compile...
559 Probably it is right to do no SCREAM here...
562 if (do_utf8 ? (prog->float_utf8 && prog->anchored_utf8) : (prog->float_substr && prog->anchored_substr)) {
563 /* Take into account the "other" substring. */
564 /* XXXX May be hopelessly wrong for UTF... */
567 if (check == (do_utf8 ? prog->float_utf8 : prog->float_substr)) {
570 char * const last = HOP3c(s, -start_shift, strbeg);
575 t = s - prog->check_offset_max;
576 if (s - strpos > prog->check_offset_max /* signed-corrected t > strpos */
578 || ((t = (char*)reghopmaybe3((U8*)s, -(prog->check_offset_max), (U8*)strpos))
583 t = HOP3c(t, prog->anchored_offset, strend);
584 if (t < other_last) /* These positions already checked */
586 last2 = last1 = HOP3c(strend, -prog->minlen, strbeg);
589 /* XXXX It is not documented what units *_offsets are in. Assume bytes. */
590 /* On end-of-str: see comment below. */
591 must = do_utf8 ? prog->anchored_utf8 : prog->anchored_substr;
592 if (must == &PL_sv_undef) {
594 DEBUG_EXECUTE_r(must = prog->anchored_utf8); /* for debug */
599 HOP3(HOP3(last1, prog->anchored_offset, strend)
600 + SvCUR(must), -(SvTAIL(must)!=0), strbeg),
602 multiline ? FBMrf_MULTILINE : 0
604 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
605 "%s anchored substr \"%s%.*s%s\"%s",
606 (s ? "Found" : "Contradicts"),
609 - (SvTAIL(must)!=0)),
611 PL_colors[1], (SvTAIL(must) ? "$" : "")));
613 if (last1 >= last2) {
614 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
615 ", giving up...\n"));
618 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
619 ", trying floating at offset %ld...\n",
620 (long)(HOP3c(s1, 1, strend) - i_strpos)));
621 other_last = HOP3c(last1, prog->anchored_offset+1, strend);
622 s = HOP3c(last, 1, strend);
626 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, " at offset %ld...\n",
627 (long)(s - i_strpos)));
628 t = HOP3c(s, -prog->anchored_offset, strbeg);
629 other_last = HOP3c(s, 1, strend);
637 else { /* Take into account the floating substring. */
642 t = HOP3c(s, -start_shift, strbeg);
644 HOP3c(strend, -prog->minlen + prog->float_min_offset, strbeg);
645 if (CHR_DIST((U8*)last, (U8*)t) > prog->float_max_offset)
646 last = HOP3c(t, prog->float_max_offset, strend);
647 s = HOP3c(t, prog->float_min_offset, strend);
650 /* XXXX It is not documented what units *_offsets are in. Assume bytes. */
651 must = do_utf8 ? prog->float_utf8 : prog->float_substr;
652 /* fbm_instr() takes into account exact value of end-of-str
653 if the check is SvTAIL(ed). Since false positives are OK,
654 and end-of-str is not later than strend we are OK. */
655 if (must == &PL_sv_undef) {
657 DEBUG_EXECUTE_r(must = prog->float_utf8); /* for debug message */
660 s = fbm_instr((unsigned char*)s,
661 (unsigned char*)last + SvCUR(must)
663 must, multiline ? FBMrf_MULTILINE : 0);
664 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%s floating substr \"%s%.*s%s\"%s",
665 (s ? "Found" : "Contradicts"),
667 (int)(SvCUR(must) - (SvTAIL(must)!=0)),
669 PL_colors[1], (SvTAIL(must) ? "$" : "")));
672 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
673 ", giving up...\n"));
676 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
677 ", trying anchored starting at offset %ld...\n",
678 (long)(s1 + 1 - i_strpos)));
680 s = HOP3c(t, 1, strend);
684 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, " at offset %ld...\n",
685 (long)(s - i_strpos)));
686 other_last = s; /* Fix this later. --Hugo */
695 t = s - prog->check_offset_max;
696 if (s - strpos > prog->check_offset_max /* signed-corrected t > strpos */
698 || ((t = (char*)reghopmaybe3((U8*)s, -prog->check_offset_max, (U8*)strpos))
700 /* Fixed substring is found far enough so that the match
701 cannot start at strpos. */
703 if (ml_anch && t[-1] != '\n') {
704 /* Eventually fbm_*() should handle this, but often
705 anchored_offset is not 0, so this check will not be wasted. */
706 /* XXXX In the code below we prefer to look for "^" even in
707 presence of anchored substrings. And we search even
708 beyond the found float position. These pessimizations
709 are historical artefacts only. */
711 while (t < strend - prog->minlen) {
713 if (t < check_at - prog->check_offset_min) {
714 if (do_utf8 ? prog->anchored_utf8 : prog->anchored_substr) {
715 /* Since we moved from the found position,
716 we definitely contradict the found anchored
717 substr. Due to the above check we do not
718 contradict "check" substr.
719 Thus we can arrive here only if check substr
720 is float. Redo checking for "other"=="fixed".
723 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Found /%s^%s/m at offset %ld, rescanning for anchored from offset %ld...\n",
724 PL_colors[0], PL_colors[1], (long)(strpos - i_strpos), (long)(strpos - i_strpos + prog->anchored_offset)));
725 goto do_other_anchored;
727 /* We don't contradict the found floating substring. */
728 /* XXXX Why not check for STCLASS? */
730 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Found /%s^%s/m at offset %ld...\n",
731 PL_colors[0], PL_colors[1], (long)(s - i_strpos)));
734 /* Position contradicts check-string */
735 /* XXXX probably better to look for check-string
736 than for "\n", so one should lower the limit for t? */
737 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Found /%s^%s/m, restarting lookup for check-string at offset %ld...\n",
738 PL_colors[0], PL_colors[1], (long)(t + 1 - i_strpos)));
739 other_last = strpos = s = t + 1;
744 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Did not find /%s^%s/m...\n",
745 PL_colors[0], PL_colors[1]));
749 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Starting position does not contradict /%s^%s/m...\n",
750 PL_colors[0], PL_colors[1]));
754 ++BmUSEFUL(do_utf8 ? prog->check_utf8 : prog->check_substr); /* hooray/5 */
757 /* The found string does not prohibit matching at strpos,
758 - no optimization of calling REx engine can be performed,
759 unless it was an MBOL and we are not after MBOL,
760 or a future STCLASS check will fail this. */
762 /* Even in this situation we may use MBOL flag if strpos is offset
763 wrt the start of the string. */
764 if (ml_anch && sv && !SvROK(sv) /* See prev comment on SvROK */
765 && (strpos != strbeg) && strpos[-1] != '\n'
766 /* May be due to an implicit anchor of m{.*foo} */
767 && !(prog->reganch & ROPT_IMPLICIT))
772 DEBUG_EXECUTE_r( if (ml_anch)
773 PerlIO_printf(Perl_debug_log, "Position at offset %ld does not contradict /%s^%s/m...\n",
774 (long)(strpos - i_strpos), PL_colors[0], PL_colors[1]);
777 if (!(prog->reganch & ROPT_NAUGHTY) /* XXXX If strpos moved? */
779 prog->check_utf8 /* Could be deleted already */
780 && --BmUSEFUL(prog->check_utf8) < 0
781 && (prog->check_utf8 == prog->float_utf8)
783 prog->check_substr /* Could be deleted already */
784 && --BmUSEFUL(prog->check_substr) < 0
785 && (prog->check_substr == prog->float_substr)
788 /* If flags & SOMETHING - do not do it many times on the same match */
789 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "... Disabling check substring...\n"));
790 SvREFCNT_dec(do_utf8 ? prog->check_utf8 : prog->check_substr);
791 if (do_utf8 ? prog->check_substr : prog->check_utf8)
792 SvREFCNT_dec(do_utf8 ? prog->check_substr : prog->check_utf8);
793 prog->check_substr = prog->check_utf8 = NULL; /* disable */
794 prog->float_substr = prog->float_utf8 = NULL; /* clear */
795 check = NULL; /* abort */
797 /* XXXX This is a remnant of the old implementation. It
798 looks wasteful, since now INTUIT can use many
800 prog->reganch &= ~RE_USE_INTUIT;
807 /* XXXX BmUSEFUL already changed, maybe multiple change is meaningful... */
808 if (prog->regstclass && OP(prog->regstclass)!=TRIE) {
809 /* minlen == 0 is possible if regstclass is \b or \B,
810 and the fixed substr is ''$.
811 Since minlen is already taken into account, s+1 is before strend;
812 accidentally, minlen >= 1 guaranties no false positives at s + 1
813 even for \b or \B. But (minlen? 1 : 0) below assumes that
814 regstclass does not come from lookahead... */
815 /* If regstclass takes bytelength more than 1: If charlength==1, OK.
816 This leaves EXACTF only, which is dealt with in find_byclass(). */
817 const U8* const str = (U8*)STRING(prog->regstclass);
818 const int cl_l = (PL_regkind[OP(prog->regstclass)] == EXACT
819 ? CHR_DIST(str+STR_LEN(prog->regstclass), str)
821 const char * endpos = (prog->anchored_substr || prog->anchored_utf8 || ml_anch)
822 ? HOP3c(s, (prog->minlen ? cl_l : 0), strend)
823 : (prog->float_substr || prog->float_utf8
824 ? HOP3c(HOP3c(check_at, -start_shift, strbeg),
827 /*if (OP(prog->regstclass) == TRIE)
830 s = find_byclass(prog, prog->regstclass, s, endpos, NULL);
833 const char *what = NULL;
835 if (endpos == strend) {
836 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
837 "Could not match STCLASS...\n") );
840 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
841 "This position contradicts STCLASS...\n") );
842 if ((prog->reganch & ROPT_ANCH) && !ml_anch)
844 /* Contradict one of substrings */
845 if (prog->anchored_substr || prog->anchored_utf8) {
846 if ((do_utf8 ? prog->anchored_utf8 : prog->anchored_substr) == check) {
847 DEBUG_EXECUTE_r( what = "anchored" );
849 s = HOP3c(t, 1, strend);
850 if (s + start_shift + end_shift > strend) {
851 /* XXXX Should be taken into account earlier? */
852 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
853 "Could not match STCLASS...\n") );
858 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
859 "Looking for %s substr starting at offset %ld...\n",
860 what, (long)(s + start_shift - i_strpos)) );
863 /* Have both, check_string is floating */
864 if (t + start_shift >= check_at) /* Contradicts floating=check */
865 goto retry_floating_check;
866 /* Recheck anchored substring, but not floating... */
870 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
871 "Looking for anchored substr starting at offset %ld...\n",
872 (long)(other_last - i_strpos)) );
873 goto do_other_anchored;
875 /* Another way we could have checked stclass at the
876 current position only: */
881 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
882 "Looking for /%s^%s/m starting at offset %ld...\n",
883 PL_colors[0], PL_colors[1], (long)(t - i_strpos)) );
886 if (!(do_utf8 ? prog->float_utf8 : prog->float_substr)) /* Could have been deleted */
888 /* Check is floating subtring. */
889 retry_floating_check:
890 t = check_at - start_shift;
891 DEBUG_EXECUTE_r( what = "floating" );
892 goto hop_and_restart;
895 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
896 "By STCLASS: moving %ld --> %ld\n",
897 (long)(t - i_strpos), (long)(s - i_strpos))
901 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
902 "Does not contradict STCLASS...\n");
907 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%s%s:%s match at offset %ld\n",
908 PL_colors[4], (check ? "Guessed" : "Giving up"),
909 PL_colors[5], (long)(s - i_strpos)) );
912 fail_finish: /* Substring not found */
913 if (prog->check_substr || prog->check_utf8) /* could be removed already */
914 BmUSEFUL(do_utf8 ? prog->check_utf8 : prog->check_substr) += 5; /* hooray */
916 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%sMatch rejected by optimizer%s\n",
917 PL_colors[4], PL_colors[5]));
921 /* We know what class REx starts with. Try to find this position... */
922 /* if reginfo is NULL, its a dryrun */
923 /* annoyingly all the vars in this routine have different names from their counterparts
924 in regmatch. /grrr */
927 S_find_byclass(pTHX_ regexp * prog, const regnode *c, char *s,
928 const char *strend, const regmatch_info *reginfo)
931 const I32 doevery = (prog->reganch & ROPT_SKIP) == 0;
935 register STRLEN uskip;
939 register I32 tmp = 1; /* Scratch variable? */
940 register const bool do_utf8 = PL_reg_match_utf8;
942 /* We know what class it must start with. */
946 while (s + (uskip = UTF8SKIP(s)) <= strend) {
947 if ((ANYOF_FLAGS(c) & ANYOF_UNICODE) ||
948 !UTF8_IS_INVARIANT((U8)s[0]) ?
949 reginclass(prog, c, (U8*)s, 0, do_utf8) :
950 REGINCLASS(prog, c, (U8*)s)) {
951 if (tmp && (!reginfo || regtry(reginfo, s)))
965 if (REGINCLASS(prog, c, (U8*)s) ||
966 (ANYOF_FOLD_SHARP_S(c, s, strend) &&
967 /* The assignment of 2 is intentional:
968 * for the folded sharp s, the skip is 2. */
969 (skip = SHARP_S_SKIP))) {
970 if (tmp && (!reginfo || regtry(reginfo, s)))
983 if (tmp && (!reginfo || regtry(reginfo, s)))
992 ln = STR_LEN(c); /* length to match in octets/bytes */
993 lnc = (I32) ln; /* length to match in characters */
997 U8 tmpbuf1[UTF8_MAXBYTES_CASE+1];
998 U8 tmpbuf2[UTF8_MAXBYTES_CASE+1];
999 const U32 uniflags = UTF8_ALLOW_DEFAULT;
1001 to_utf8_lower((U8*)m, tmpbuf1, &ulen1);
1002 to_utf8_upper((U8*)m, tmpbuf2, &ulen2);
1004 c1 = utf8n_to_uvchr(tmpbuf1, UTF8_MAXBYTES_CASE,
1006 c2 = utf8n_to_uvchr(tmpbuf2, UTF8_MAXBYTES_CASE,
1009 while (sm < ((U8 *) m + ln)) {
1024 c2 = PL_fold_locale[c1];
1026 e = HOP3c(strend, -((I32)lnc), s);
1028 if (!reginfo && e < s)
1029 e = s; /* Due to minlen logic of intuit() */
1031 /* The idea in the EXACTF* cases is to first find the
1032 * first character of the EXACTF* node and then, if
1033 * necessary, case-insensitively compare the full
1034 * text of the node. The c1 and c2 are the first
1035 * characters (though in Unicode it gets a bit
1036 * more complicated because there are more cases
1037 * than just upper and lower: one needs to use
1038 * the so-called folding case for case-insensitive
1039 * matching (called "loose matching" in Unicode).
1040 * ibcmp_utf8() will do just that. */
1044 U8 tmpbuf [UTF8_MAXBYTES+1];
1045 STRLEN len, foldlen;
1046 const U32 uniflags = UTF8_ALLOW_DEFAULT;
1048 /* Upper and lower of 1st char are equal -
1049 * probably not a "letter". */
1051 c = utf8n_to_uvchr((U8*)s, UTF8_MAXBYTES, &len,
1055 ibcmp_utf8(s, NULL, 0, do_utf8,
1056 m, NULL, ln, (bool)UTF))
1057 && (!reginfo || regtry(reginfo, s)) )
1060 U8 foldbuf[UTF8_MAXBYTES_CASE+1];
1061 uvchr_to_utf8(tmpbuf, c);
1062 f = to_utf8_fold(tmpbuf, foldbuf, &foldlen);
1064 && (f == c1 || f == c2)
1065 && (ln == foldlen ||
1066 !ibcmp_utf8((char *) foldbuf,
1067 NULL, foldlen, do_utf8,
1069 NULL, ln, (bool)UTF))
1070 && (!reginfo || regtry(reginfo, s)) )
1078 c = utf8n_to_uvchr((U8*)s, UTF8_MAXBYTES, &len,
1081 /* Handle some of the three Greek sigmas cases.
1082 * Note that not all the possible combinations
1083 * are handled here: some of them are handled
1084 * by the standard folding rules, and some of
1085 * them (the character class or ANYOF cases)
1086 * are handled during compiletime in
1087 * regexec.c:S_regclass(). */
1088 if (c == (UV)UNICODE_GREEK_CAPITAL_LETTER_SIGMA ||
1089 c == (UV)UNICODE_GREEK_SMALL_LETTER_FINAL_SIGMA)
1090 c = (UV)UNICODE_GREEK_SMALL_LETTER_SIGMA;
1092 if ( (c == c1 || c == c2)
1094 ibcmp_utf8(s, NULL, 0, do_utf8,
1095 m, NULL, ln, (bool)UTF))
1096 && (!reginfo || regtry(reginfo, s)) )
1099 U8 foldbuf[UTF8_MAXBYTES_CASE+1];
1100 uvchr_to_utf8(tmpbuf, c);
1101 f = to_utf8_fold(tmpbuf, foldbuf, &foldlen);
1103 && (f == c1 || f == c2)
1104 && (ln == foldlen ||
1105 !ibcmp_utf8((char *) foldbuf,
1106 NULL, foldlen, do_utf8,
1108 NULL, ln, (bool)UTF))
1109 && (!reginfo || regtry(reginfo, s)) )
1120 && (ln == 1 || !(OP(c) == EXACTF
1122 : ibcmp_locale(s, m, ln)))
1123 && (!reginfo || regtry(reginfo, s)) )
1129 if ( (*(U8*)s == c1 || *(U8*)s == c2)
1130 && (ln == 1 || !(OP(c) == EXACTF
1132 : ibcmp_locale(s, m, ln)))
1133 && (!reginfo || regtry(reginfo, s)) )
1140 PL_reg_flags |= RF_tainted;
1147 U8 * const r = reghop3((U8*)s, -1, (U8*)PL_bostr);
1148 tmp = utf8n_to_uvchr(r, UTF8SKIP(r), 0, UTF8_ALLOW_DEFAULT);
1150 tmp = ((OP(c) == BOUND ?
1151 isALNUM_uni(tmp) : isALNUM_LC_uvchr(UNI_TO_NATIVE(tmp))) != 0);
1152 LOAD_UTF8_CHARCLASS_ALNUM();
1153 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1154 if (tmp == !(OP(c) == BOUND ?
1155 (bool)swash_fetch(PL_utf8_alnum, (U8*)s, do_utf8) :
1156 isALNUM_LC_utf8((U8*)s)))
1159 if ((!reginfo || regtry(reginfo, s)))
1166 tmp = (s != PL_bostr) ? UCHARAT(s - 1) : '\n';
1167 tmp = ((OP(c) == BOUND ? isALNUM(tmp) : isALNUM_LC(tmp)) != 0);
1168 while (s < strend) {
1170 !(OP(c) == BOUND ? isALNUM(*s) : isALNUM_LC(*s))) {
1172 if ((!reginfo || regtry(reginfo, s)))
1178 if ((!prog->minlen && tmp) && (!reginfo || regtry(reginfo, s)))
1182 PL_reg_flags |= RF_tainted;
1189 U8 * const r = reghop3((U8*)s, -1, (U8*)PL_bostr);
1190 tmp = utf8n_to_uvchr(r, UTF8SKIP(r), 0, UTF8_ALLOW_DEFAULT);
1192 tmp = ((OP(c) == NBOUND ?
1193 isALNUM_uni(tmp) : isALNUM_LC_uvchr(UNI_TO_NATIVE(tmp))) != 0);
1194 LOAD_UTF8_CHARCLASS_ALNUM();
1195 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1196 if (tmp == !(OP(c) == NBOUND ?
1197 (bool)swash_fetch(PL_utf8_alnum, (U8*)s, do_utf8) :
1198 isALNUM_LC_utf8((U8*)s)))
1200 else if ((!reginfo || regtry(reginfo, s)))
1206 tmp = (s != PL_bostr) ? UCHARAT(s - 1) : '\n';
1207 tmp = ((OP(c) == NBOUND ?
1208 isALNUM(tmp) : isALNUM_LC(tmp)) != 0);
1209 while (s < strend) {
1211 !(OP(c) == NBOUND ? isALNUM(*s) : isALNUM_LC(*s)))
1213 else if ((!reginfo || regtry(reginfo, s)))
1218 if ((!prog->minlen && !tmp) && (!reginfo || regtry(reginfo, s)))
1223 LOAD_UTF8_CHARCLASS_ALNUM();
1224 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1225 if (swash_fetch(PL_utf8_alnum, (U8*)s, do_utf8)) {
1226 if (tmp && (!reginfo || regtry(reginfo, s)))
1237 while (s < strend) {
1239 if (tmp && (!reginfo || regtry(reginfo, s)))
1251 PL_reg_flags |= RF_tainted;
1253 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1254 if (isALNUM_LC_utf8((U8*)s)) {
1255 if (tmp && (!reginfo || regtry(reginfo, s)))
1266 while (s < strend) {
1267 if (isALNUM_LC(*s)) {
1268 if (tmp && (!reginfo || regtry(reginfo, s)))
1281 LOAD_UTF8_CHARCLASS_ALNUM();
1282 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1283 if (!swash_fetch(PL_utf8_alnum, (U8*)s, do_utf8)) {
1284 if (tmp && (!reginfo || regtry(reginfo, s)))
1295 while (s < strend) {
1297 if (tmp && (!reginfo || regtry(reginfo, s)))
1309 PL_reg_flags |= RF_tainted;
1311 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1312 if (!isALNUM_LC_utf8((U8*)s)) {
1313 if (tmp && (!reginfo || regtry(reginfo, s)))
1324 while (s < strend) {
1325 if (!isALNUM_LC(*s)) {
1326 if (tmp && (!reginfo || regtry(reginfo, s)))
1339 LOAD_UTF8_CHARCLASS_SPACE();
1340 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1341 if (*s == ' ' || swash_fetch(PL_utf8_space,(U8*)s, do_utf8)) {
1342 if (tmp && (!reginfo || regtry(reginfo, s)))
1353 while (s < strend) {
1355 if (tmp && (!reginfo || regtry(reginfo, s)))
1367 PL_reg_flags |= RF_tainted;
1369 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1370 if (*s == ' ' || isSPACE_LC_utf8((U8*)s)) {
1371 if (tmp && (!reginfo || regtry(reginfo, s)))
1382 while (s < strend) {
1383 if (isSPACE_LC(*s)) {
1384 if (tmp && (!reginfo || regtry(reginfo, s)))
1397 LOAD_UTF8_CHARCLASS_SPACE();
1398 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1399 if (!(*s == ' ' || swash_fetch(PL_utf8_space,(U8*)s, do_utf8))) {
1400 if (tmp && (!reginfo || regtry(reginfo, s)))
1411 while (s < strend) {
1413 if (tmp && (!reginfo || regtry(reginfo, s)))
1425 PL_reg_flags |= RF_tainted;
1427 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1428 if (!(*s == ' ' || isSPACE_LC_utf8((U8*)s))) {
1429 if (tmp && (!reginfo || regtry(reginfo, s)))
1440 while (s < strend) {
1441 if (!isSPACE_LC(*s)) {
1442 if (tmp && (!reginfo || regtry(reginfo, s)))
1455 LOAD_UTF8_CHARCLASS_DIGIT();
1456 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1457 if (swash_fetch(PL_utf8_digit,(U8*)s, do_utf8)) {
1458 if (tmp && (!reginfo || regtry(reginfo, s)))
1469 while (s < strend) {
1471 if (tmp && (!reginfo || regtry(reginfo, s)))
1483 PL_reg_flags |= RF_tainted;
1485 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1486 if (isDIGIT_LC_utf8((U8*)s)) {
1487 if (tmp && (!reginfo || regtry(reginfo, s)))
1498 while (s < strend) {
1499 if (isDIGIT_LC(*s)) {
1500 if (tmp && (!reginfo || regtry(reginfo, s)))
1513 LOAD_UTF8_CHARCLASS_DIGIT();
1514 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1515 if (!swash_fetch(PL_utf8_digit,(U8*)s, do_utf8)) {
1516 if (tmp && (!reginfo || regtry(reginfo, s)))
1527 while (s < strend) {
1529 if (tmp && (!reginfo || regtry(reginfo, s)))
1541 PL_reg_flags |= RF_tainted;
1543 while (s + (uskip = UTF8SKIP(s)) <= strend) {
1544 if (!isDIGIT_LC_utf8((U8*)s)) {
1545 if (tmp && (!reginfo || regtry(reginfo, s)))
1556 while (s < strend) {
1557 if (!isDIGIT_LC(*s)) {
1558 if (tmp && (!reginfo || regtry(reginfo, s)))
1570 /*Perl_croak(aTHX_ "panic: unknown regstclass TRIE");*/
1572 const enum { trie_plain, trie_utf8, trie_utf8_fold }
1573 trie_type = do_utf8 ?
1574 (c->flags == EXACT ? trie_utf8 : trie_utf8_fold)
1576 /* what trie are we using right now */
1578 = (reg_ac_data*)prog->data->data[ ARG( c ) ];
1579 reg_trie_data *trie=aho->trie;
1581 const char *last_start = strend - trie->minlen;
1582 const char *real_start = s;
1583 STRLEN maxlen = trie->maxlen;
1586 GET_RE_DEBUG_FLAGS_DECL;
1588 Newxz(points,maxlen,U8 *);
1590 if (trie->bitmap && trie_type != trie_utf8_fold) {
1591 while (!TRIE_BITMAP_TEST(trie,*s) && s <= last_start ) {
1596 while (s <= last_start) {
1597 const U32 uniflags = UTF8_ALLOW_DEFAULT;
1605 U8 *uscan = (U8*)NULL;
1606 U8 *leftmost = NULL;
1610 while ( state && uc <= (U8*)strend ) {
1612 if (aho->states[ state ].wordnum) {
1613 U8 *lpos= points[ (pointpos - trie->wordlen[aho->states[ state ].wordnum-1] ) % maxlen ];
1614 if (!leftmost || lpos < leftmost)
1618 points[pointpos++ % maxlen]= uc;
1619 switch (trie_type) {
1620 case trie_utf8_fold:
1622 uvc = utf8n_to_uvuni( uscan, UTF8_MAXLEN, &len, uniflags );
1627 U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
1628 uvc = utf8n_to_uvuni( (U8*)uc, UTF8_MAXLEN, &len, uniflags );
1629 uvc = to_uni_fold( uvc, foldbuf, &foldlen );
1630 foldlen -= UNISKIP( uvc );
1631 uscan = foldbuf + UNISKIP( uvc );
1635 uvc = utf8n_to_uvuni( (U8*)uc, UTF8_MAXLEN,
1644 charid = trie->charmap[ uvc ];
1648 if (trie->widecharmap) {
1649 SV** const svpp = hv_fetch(trie->widecharmap,
1650 (char*)&uvc, sizeof(UV), 0);
1652 charid = (U16)SvIV(*svpp);
1655 DEBUG_TRIE_EXECUTE_r(
1656 PerlIO_printf(Perl_debug_log,
1657 "Pos: %d Charid:%3x CV:%4"UVxf" ",
1658 (int)((const char*)uc - real_start), charid, uvc)
1663 U32 word = aho->states[ state ].wordnum;
1664 base = aho->states[ state ].trans.base;
1666 DEBUG_TRIE_EXECUTE_r(
1667 PerlIO_printf( Perl_debug_log,
1668 "%sState: %4"UVxf", Base: 0x%-4"UVxf" uvc=%"UVxf" word=%"UVxf"\n",
1669 failed ? "Fail transition to " : "",
1670 state, base, uvc, word)
1675 (base + charid > trie->uniquecharcount )
1676 && (base + charid - 1 - trie->uniquecharcount
1678 && trie->trans[base + charid - 1 -
1679 trie->uniquecharcount].check == state
1680 && (tmp=trie->trans[base + charid - 1 -
1681 trie->uniquecharcount ].next))
1691 state = aho->fail[state];
1695 /* we must be accepting here */
1703 else if (!charid && trie->bitmap && trie_type != trie_utf8_fold) {
1704 while (!TRIE_BITMAP_TEST(trie,*uc) && uc <= (U8*)last_start ) {
1710 if ( aho->states[ state ].wordnum ) {
1711 U8 *lpos = points[ (pointpos - trie->wordlen[aho->states[ state ].wordnum-1]) % maxlen ];
1712 if (!leftmost || lpos < leftmost)
1715 DEBUG_TRIE_EXECUTE_r(
1716 PerlIO_printf( Perl_debug_log,
1717 "%sState: %4"UVxf", Base: 0x%-4"UVxf" uvc=%"UVxf"\n",
1722 s = (char*)leftmost;
1723 if (!reginfo || regtry(reginfo, s))
1733 Perl_croak(aTHX_ "panic: unknown regstclass %d", (int)OP(c));
1742 - regexec_flags - match a regexp against a string
1745 Perl_regexec_flags(pTHX_ register regexp *prog, char *stringarg, register char *strend,
1746 char *strbeg, I32 minend, SV *sv, void *data, U32 flags)
1747 /* strend: pointer to null at end of string */
1748 /* strbeg: real beginning of string */
1749 /* minend: end of match must be >=minend after stringarg. */
1750 /* data: May be used for some additional optimizations. */
1751 /* nosave: For optimizations. */
1755 register regnode *c;
1756 register char *startpos = stringarg;
1757 I32 minlen; /* must match at least this many chars */
1758 I32 dontbother = 0; /* how many characters not to try at end */
1759 I32 end_shift = 0; /* Same for the end. */ /* CC */
1760 I32 scream_pos = -1; /* Internal iterator of scream. */
1761 char *scream_olds = NULL;
1762 SV* const oreplsv = GvSV(PL_replgv);
1763 const bool do_utf8 = DO_UTF8(sv);
1769 regmatch_info reginfo; /* create some info to pass to regtry etc */
1771 GET_RE_DEBUG_FLAGS_DECL;
1773 PERL_UNUSED_ARG(data);
1775 /* Be paranoid... */
1776 if (prog == NULL || startpos == NULL) {
1777 Perl_croak(aTHX_ "NULL regexp parameter");
1781 multiline = prog->reganch & PMf_MULTILINE;
1782 reginfo.prog = prog;
1785 dsv0 = PERL_DEBUG_PAD_ZERO(0);
1786 dsv1 = PERL_DEBUG_PAD_ZERO(1);
1789 RX_MATCH_UTF8_set(prog, do_utf8);
1791 minlen = prog->minlen;
1792 if (strend - startpos < minlen) {
1793 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
1794 "String too short [regexec_flags]...\n"));
1798 /* Check validity of program. */
1799 if (UCHARAT(prog->program) != REG_MAGIC) {
1800 Perl_croak(aTHX_ "corrupted regexp program");
1804 PL_reg_eval_set = 0;
1807 if (prog->reganch & ROPT_UTF8)
1808 PL_reg_flags |= RF_utf8;
1810 /* Mark beginning of line for ^ and lookbehind. */
1811 reginfo.bol = startpos; /* XXX not used ??? */
1815 /* Mark end of line for $ (and such) */
1818 /* see how far we have to get to not match where we matched before */
1819 reginfo.till = startpos+minend;
1821 /* If there is a "must appear" string, look for it. */
1824 if (prog->reganch & ROPT_GPOS_SEEN) { /* Need to set reginfo->ganch */
1827 if (flags & REXEC_IGNOREPOS) /* Means: check only at start */
1828 reginfo.ganch = startpos;
1829 else if (sv && SvTYPE(sv) >= SVt_PVMG
1831 && (mg = mg_find(sv, PERL_MAGIC_regex_global))
1832 && mg->mg_len >= 0) {
1833 reginfo.ganch = strbeg + mg->mg_len; /* Defined pos() */
1834 if (prog->reganch & ROPT_ANCH_GPOS) {
1835 if (s > reginfo.ganch)
1840 else /* pos() not defined */
1841 reginfo.ganch = strbeg;
1844 if (!(flags & REXEC_CHECKED) && (prog->check_substr != NULL || prog->check_utf8 != NULL)) {
1845 re_scream_pos_data d;
1847 d.scream_olds = &scream_olds;
1848 d.scream_pos = &scream_pos;
1849 s = re_intuit_start(prog, sv, s, strend, flags, &d);
1851 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Not present...\n"));
1852 goto phooey; /* not present */
1857 const char * const s0 = UTF
1858 ? pv_uni_display(dsv0, (U8*)prog->precomp, prog->prelen, 60,
1861 const int len0 = UTF ? (int)SvCUR(dsv0) : prog->prelen;
1862 const char * const s1 = do_utf8 ? sv_uni_display(dsv1, sv, 60,
1863 UNI_DISPLAY_REGEX) : startpos;
1864 const int len1 = do_utf8 ? (int)SvCUR(dsv1) : strend - startpos;
1867 PerlIO_printf(Perl_debug_log,
1868 "%sMatching REx%s \"%s%*.*s%s%s\" against \"%s%.*s%s%s\"\n",
1869 PL_colors[4], PL_colors[5], PL_colors[0],
1872 len0 > 60 ? "..." : "",
1874 (int)(len1 > 60 ? 60 : len1),
1876 (len1 > 60 ? "..." : "")
1880 /* Simplest case: anchored match need be tried only once. */
1881 /* [unless only anchor is BOL and multiline is set] */
1882 if (prog->reganch & (ROPT_ANCH & ~ROPT_ANCH_GPOS)) {
1883 if (s == startpos && regtry(®info, startpos))
1885 else if (multiline || (prog->reganch & ROPT_IMPLICIT)
1886 || (prog->reganch & ROPT_ANCH_MBOL)) /* XXXX SBOL? */
1891 dontbother = minlen - 1;
1892 end = HOP3c(strend, -dontbother, strbeg) - 1;
1893 /* for multiline we only have to try after newlines */
1894 if (prog->check_substr || prog->check_utf8) {
1898 if (regtry(®info, s))
1903 if (prog->reganch & RE_USE_INTUIT) {
1904 s = re_intuit_start(prog, sv, s + 1, strend, flags, NULL);
1915 if (*s++ == '\n') { /* don't need PL_utf8skip here */
1916 if (regtry(®info, s))
1923 } else if (prog->reganch & ROPT_ANCH_GPOS) {
1924 if (regtry(®info, reginfo.ganch))
1929 /* Messy cases: unanchored match. */
1930 if ((prog->anchored_substr || prog->anchored_utf8) && prog->reganch & ROPT_SKIP) {
1931 /* we have /x+whatever/ */
1932 /* it must be a one character string (XXXX Except UTF?) */
1937 if (!(do_utf8 ? prog->anchored_utf8 : prog->anchored_substr))
1938 do_utf8 ? to_utf8_substr(prog) : to_byte_substr(prog);
1939 ch = SvPVX_const(do_utf8 ? prog->anchored_utf8 : prog->anchored_substr)[0];
1942 while (s < strend) {
1944 DEBUG_EXECUTE_r( did_match = 1 );
1945 if (regtry(®info, s)) goto got_it;
1947 while (s < strend && *s == ch)
1954 while (s < strend) {
1956 DEBUG_EXECUTE_r( did_match = 1 );
1957 if (regtry(®info, s)) goto got_it;
1959 while (s < strend && *s == ch)
1965 DEBUG_EXECUTE_r(if (!did_match)
1966 PerlIO_printf(Perl_debug_log,
1967 "Did not find anchored character...\n")
1970 else if (prog->anchored_substr != NULL
1971 || prog->anchored_utf8 != NULL
1972 || ((prog->float_substr != NULL || prog->float_utf8 != NULL)
1973 && prog->float_max_offset < strend - s)) {
1978 char *last1; /* Last position checked before */
1982 if (prog->anchored_substr || prog->anchored_utf8) {
1983 if (!(do_utf8 ? prog->anchored_utf8 : prog->anchored_substr))
1984 do_utf8 ? to_utf8_substr(prog) : to_byte_substr(prog);
1985 must = do_utf8 ? prog->anchored_utf8 : prog->anchored_substr;
1986 back_max = back_min = prog->anchored_offset;
1988 if (!(do_utf8 ? prog->float_utf8 : prog->float_substr))
1989 do_utf8 ? to_utf8_substr(prog) : to_byte_substr(prog);
1990 must = do_utf8 ? prog->float_utf8 : prog->float_substr;
1991 back_max = prog->float_max_offset;
1992 back_min = prog->float_min_offset;
1994 if (must == &PL_sv_undef)
1995 /* could not downgrade utf8 check substring, so must fail */
1998 last = HOP3c(strend, /* Cannot start after this */
1999 -(I32)(CHR_SVLEN(must)
2000 - (SvTAIL(must) != 0) + back_min), strbeg);
2003 last1 = HOPc(s, -1);
2005 last1 = s - 1; /* bogus */
2007 /* XXXX check_substr already used to find "s", can optimize if
2008 check_substr==must. */
2010 dontbother = end_shift;
2011 strend = HOPc(strend, -dontbother);
2012 while ( (s <= last) &&
2013 ((flags & REXEC_SCREAM)
2014 ? (s = screaminstr(sv, must, HOP3c(s, back_min, strend) - strbeg,
2015 end_shift, &scream_pos, 0))
2016 : (s = fbm_instr((unsigned char*)HOP3(s, back_min, strend),
2017 (unsigned char*)strend, must,
2018 multiline ? FBMrf_MULTILINE : 0))) ) {
2019 /* we may be pointing at the wrong string */
2020 if ((flags & REXEC_SCREAM) && RX_MATCH_COPIED(prog))
2021 s = strbeg + (s - SvPVX_const(sv));
2022 DEBUG_EXECUTE_r( did_match = 1 );
2023 if (HOPc(s, -back_max) > last1) {
2024 last1 = HOPc(s, -back_min);
2025 s = HOPc(s, -back_max);
2028 char * const t = (last1 >= PL_bostr) ? HOPc(last1, 1) : last1 + 1;
2030 last1 = HOPc(s, -back_min);
2034 while (s <= last1) {
2035 if (regtry(®info, s))
2041 while (s <= last1) {
2042 if (regtry(®info, s))
2048 DEBUG_EXECUTE_r(if (!did_match)
2049 PerlIO_printf(Perl_debug_log,
2050 "Did not find %s substr \"%s%.*s%s\"%s...\n",
2051 ((must == prog->anchored_substr || must == prog->anchored_utf8)
2052 ? "anchored" : "floating"),
2054 (int)(SvCUR(must) - (SvTAIL(must)!=0)),
2056 PL_colors[1], (SvTAIL(must) ? "$" : ""))
2060 else if ((c = prog->regstclass)) {
2062 U8 op = OP(prog->regstclass);
2063 /* don't bother with what can't match */
2064 if (PL_regkind[op] != EXACT && op != CANY && op != TRIE)
2065 strend = HOPc(strend, -(minlen - 1));
2068 SV *prop = sv_newmortal();
2074 regprop(prog, prop, c);
2076 pv_uni_display(dsv0, (U8*)SvPVX_const(prop), SvCUR(prop), 60,
2077 UNI_DISPLAY_REGEX) :
2079 len0 = UTF ? SvCUR(dsv0) : SvCUR(prop);
2081 sv_uni_display(dsv1, sv, 60, UNI_DISPLAY_REGEX) : s;
2082 len1 = UTF ? (int)SvCUR(dsv1) : strend - s;
2083 PerlIO_printf(Perl_debug_log,
2084 "Matching stclass \"%*.*s\" against \"%*.*s\" (%d chars)\n",
2086 len1, len1, s1, (int)(strend - s));
2088 if (find_byclass(prog, c, s, strend, ®info))
2090 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Contradicts stclass... [regexec_flags]\n"));
2094 if (prog->float_substr != NULL || prog->float_utf8 != NULL) {
2099 if (!(do_utf8 ? prog->float_utf8 : prog->float_substr))
2100 do_utf8 ? to_utf8_substr(prog) : to_byte_substr(prog);
2101 float_real = do_utf8 ? prog->float_utf8 : prog->float_substr;
2103 if (flags & REXEC_SCREAM) {
2104 last = screaminstr(sv, float_real, s - strbeg,
2105 end_shift, &scream_pos, 1); /* last one */
2107 last = scream_olds; /* Only one occurrence. */
2108 /* we may be pointing at the wrong string */
2109 else if (RX_MATCH_COPIED(prog))
2110 s = strbeg + (s - SvPVX_const(sv));
2114 const char * const little = SvPV_const(float_real, len);
2116 if (SvTAIL(float_real)) {
2117 if (memEQ(strend - len + 1, little, len - 1))
2118 last = strend - len + 1;
2119 else if (!multiline)
2120 last = memEQ(strend - len, little, len)
2121 ? strend - len : NULL;
2127 last = rninstr(s, strend, little, little + len);
2129 last = strend; /* matching "$" */
2133 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
2134 "%sCan't trim the tail, match fails (should not happen)%s\n",
2135 PL_colors[4], PL_colors[5]));
2136 goto phooey; /* Should not happen! */
2138 dontbother = strend - last + prog->float_min_offset;
2140 if (minlen && (dontbother < minlen))
2141 dontbother = minlen - 1;
2142 strend -= dontbother; /* this one's always in bytes! */
2143 /* We don't know much -- general case. */
2146 if (regtry(®info, s))
2155 if (regtry(®info, s))
2157 } while (s++ < strend);
2165 RX_MATCH_TAINTED_set(prog, PL_reg_flags & RF_tainted);
2167 if (PL_reg_eval_set) {
2168 /* Preserve the current value of $^R */
2169 if (oreplsv != GvSV(PL_replgv))
2170 sv_setsv(oreplsv, GvSV(PL_replgv));/* So that when GvSV(replgv) is
2171 restored, the value remains
2173 restore_pos(aTHX_ prog);
2176 /* make sure $`, $&, $', and $digit will work later */
2177 if ( !(flags & REXEC_NOT_FIRST) ) {
2178 RX_MATCH_COPY_FREE(prog);
2179 if (flags & REXEC_COPY_STR) {
2180 I32 i = PL_regeol - startpos + (stringarg - strbeg);
2181 #ifdef PERL_OLD_COPY_ON_WRITE
2183 || (SvFLAGS(sv) & CAN_COW_MASK) == CAN_COW_FLAGS)) {
2185 PerlIO_printf(Perl_debug_log,
2186 "Copy on write: regexp capture, type %d\n",
2189 prog->saved_copy = sv_setsv_cow(prog->saved_copy, sv);
2190 prog->subbeg = (char *)SvPVX_const(prog->saved_copy);
2191 assert (SvPOKp(prog->saved_copy));
2195 RX_MATCH_COPIED_on(prog);
2196 s = savepvn(strbeg, i);
2202 prog->subbeg = strbeg;
2203 prog->sublen = PL_regeol - strbeg; /* strend may have been modified */
2210 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%sMatch failed%s\n",
2211 PL_colors[4], PL_colors[5]));
2212 if (PL_reg_eval_set)
2213 restore_pos(aTHX_ prog);
2218 - regtry - try match at specific point
2220 STATIC I32 /* 0 failure, 1 success */
2221 S_regtry(pTHX_ const regmatch_info *reginfo, char *startpos)
2227 regexp *prog = reginfo->prog;
2228 GET_RE_DEBUG_FLAGS_DECL;
2231 PL_regindent = 0; /* XXXX Not good when matches are reenterable... */
2233 if ((prog->reganch & ROPT_EVAL_SEEN) && !PL_reg_eval_set) {
2236 PL_reg_eval_set = RS_init;
2237 DEBUG_EXECUTE_r(DEBUG_s(
2238 PerlIO_printf(Perl_debug_log, " setting stack tmpbase at %"IVdf"\n",
2239 (IV)(PL_stack_sp - PL_stack_base));
2241 SAVEI32(cxstack[cxstack_ix].blk_oldsp);
2242 cxstack[cxstack_ix].blk_oldsp = PL_stack_sp - PL_stack_base;
2243 /* Otherwise OP_NEXTSTATE will free whatever on stack now. */
2245 /* Apparently this is not needed, judging by wantarray. */
2246 /* SAVEI8(cxstack[cxstack_ix].blk_gimme);
2247 cxstack[cxstack_ix].blk_gimme = G_SCALAR; */
2250 /* Make $_ available to executed code. */
2251 if (reginfo->sv != DEFSV) {
2253 DEFSV = reginfo->sv;
2256 if (!(SvTYPE(reginfo->sv) >= SVt_PVMG && SvMAGIC(reginfo->sv)
2257 && (mg = mg_find(reginfo->sv, PERL_MAGIC_regex_global)))) {
2258 /* prepare for quick setting of pos */
2259 #ifdef PERL_OLD_COPY_ON_WRITE
2261 sv_force_normal_flags(sv, 0);
2263 mg = sv_magicext(reginfo->sv, NULL, PERL_MAGIC_regex_global,
2264 &PL_vtbl_mglob, NULL, 0);
2268 PL_reg_oldpos = mg->mg_len;
2269 SAVEDESTRUCTOR_X(restore_pos, prog);
2271 if (!PL_reg_curpm) {
2272 Newxz(PL_reg_curpm, 1, PMOP);
2275 SV* repointer = newSViv(0);
2276 /* so we know which PL_regex_padav element is PL_reg_curpm */
2277 SvFLAGS(repointer) |= SVf_BREAK;
2278 av_push(PL_regex_padav,repointer);
2279 PL_reg_curpm->op_pmoffset = av_len(PL_regex_padav);
2280 PL_regex_pad = AvARRAY(PL_regex_padav);
2284 PM_SETRE(PL_reg_curpm, prog);
2285 PL_reg_oldcurpm = PL_curpm;
2286 PL_curpm = PL_reg_curpm;
2287 if (RX_MATCH_COPIED(prog)) {
2288 /* Here is a serious problem: we cannot rewrite subbeg,
2289 since it may be needed if this match fails. Thus
2290 $` inside (?{}) could fail... */
2291 PL_reg_oldsaved = prog->subbeg;
2292 PL_reg_oldsavedlen = prog->sublen;
2293 #ifdef PERL_OLD_COPY_ON_WRITE
2294 PL_nrs = prog->saved_copy;
2296 RX_MATCH_COPIED_off(prog);
2299 PL_reg_oldsaved = NULL;
2300 prog->subbeg = PL_bostr;
2301 prog->sublen = PL_regeol - PL_bostr; /* strend may have been modified */
2303 prog->startp[0] = startpos - PL_bostr;
2304 PL_reginput = startpos;
2305 PL_regstartp = prog->startp;
2306 PL_regendp = prog->endp;
2307 PL_reglastparen = &prog->lastparen;
2308 PL_reglastcloseparen = &prog->lastcloseparen;
2309 prog->lastparen = 0;
2310 prog->lastcloseparen = 0;
2312 DEBUG_EXECUTE_r(PL_reg_starttry = startpos);
2313 if (PL_reg_start_tmpl <= prog->nparens) {
2314 PL_reg_start_tmpl = prog->nparens*3/2 + 3;
2315 if(PL_reg_start_tmp)
2316 Renew(PL_reg_start_tmp, PL_reg_start_tmpl, char*);
2318 Newx(PL_reg_start_tmp, PL_reg_start_tmpl, char*);
2321 /* XXXX What this code is doing here?!!! There should be no need
2322 to do this again and again, PL_reglastparen should take care of
2325 /* Tests pat.t#187 and split.t#{13,14} seem to depend on this code.
2326 * Actually, the code in regcppop() (which Ilya may be meaning by
2327 * PL_reglastparen), is not needed at all by the test suite
2328 * (op/regexp, op/pat, op/split), but that code is needed, oddly
2329 * enough, for building DynaLoader, or otherwise this
2330 * "Error: '*' not in typemap in DynaLoader.xs, line 164"
2331 * will happen. Meanwhile, this code *is* needed for the
2332 * above-mentioned test suite tests to succeed. The common theme
2333 * on those tests seems to be returning null fields from matches.
2338 if (prog->nparens) {
2340 for (i = prog->nparens; i > (I32)*PL_reglastparen; i--) {
2347 if (regmatch(reginfo, prog->program + 1)) {
2348 prog->endp[0] = PL_reginput - PL_bostr;
2351 REGCP_UNWIND(lastcp);
2355 #define RE_UNWIND_BRANCH 1
2356 #define RE_UNWIND_BRANCHJ 2
2360 typedef struct { /* XX: makes sense to enlarge it... */
2364 } re_unwind_generic_t;
2378 } re_unwind_branch_t;
2380 typedef union re_unwind_t {
2382 re_unwind_generic_t generic;
2383 re_unwind_branch_t branch;
2386 #define sayYES goto yes
2387 #define sayNO goto no
2388 #define sayNO_ANYOF goto no_anyof
2389 #define sayYES_FINAL goto yes_final
2390 #define sayNO_FINAL goto no_final
2391 #define sayNO_SILENT goto do_no
2392 #define saySAME(x) if (x) goto yes; else goto no
2394 #define POSCACHE_SUCCESS 0 /* caching success rather than failure */
2395 #define POSCACHE_SEEN 1 /* we know what we're caching */
2396 #define POSCACHE_START 2 /* the real cache: this bit maps to pos 0 */
2398 #define CACHEsayYES STMT_START { \
2399 if (st->u.whilem.cache_offset | st->u.whilem.cache_bit) { \
2400 if (!(PL_reg_poscache[0] & (1<<POSCACHE_SEEN))) { \
2401 PL_reg_poscache[0] |= (1<<POSCACHE_SUCCESS) | (1<<POSCACHE_SEEN); \
2402 PL_reg_poscache[st->u.whilem.cache_offset] |= (1<<st->u.whilem.cache_bit); \
2404 else if (PL_reg_poscache[0] & (1<<POSCACHE_SUCCESS)) { \
2405 PL_reg_poscache[st->u.whilem.cache_offset] |= (1<<st->u.whilem.cache_bit); \
2408 /* cache records failure, but this is success */ \
2410 PerlIO_printf(Perl_debug_log, \
2411 "%*s (remove success from failure cache)\n", \
2412 REPORT_CODE_OFF+PL_regindent*2, "") \
2414 PL_reg_poscache[st->u.whilem.cache_offset] &= ~(1<<st->u.whilem.cache_bit); \
2420 #define CACHEsayNO STMT_START { \
2421 if (st->u.whilem.cache_offset | st->u.whilem.cache_bit) { \
2422 if (!(PL_reg_poscache[0] & (1<<POSCACHE_SEEN))) { \
2423 PL_reg_poscache[0] |= (1<<POSCACHE_SEEN); \
2424 PL_reg_poscache[st->u.whilem.cache_offset] |= (1<<st->u.whilem.cache_bit); \
2426 else if (!(PL_reg_poscache[0] & (1<<POSCACHE_SUCCESS))) { \
2427 PL_reg_poscache[st->u.whilem.cache_offset] |= (1<<st->u.whilem.cache_bit); \
2430 /* cache records success, but this is failure */ \
2432 PerlIO_printf(Perl_debug_log, \
2433 "%*s (remove failure from success cache)\n", \
2434 REPORT_CODE_OFF+PL_regindent*2, "") \
2436 PL_reg_poscache[st->u.whilem.cache_offset] &= ~(1<<st->u.whilem.cache_bit); \
2442 /* this is used to determine how far from the left messages like
2443 'failed...' are printed. Currently 29 makes these messages line
2444 up with the opcode they refer to. Earlier perls used 25 which
2445 left these messages outdented making reviewing a debug output
2448 #define REPORT_CODE_OFF 29
2451 /* Make sure there is a test for this +1 options in re_tests */
2452 #define TRIE_INITAL_ACCEPT_BUFFLEN 4;
2454 /* this value indiciates that the c1/c2 "next char" test should be skipped */
2455 #define CHRTEST_VOID -1000
2457 #define SLAB_FIRST(s) (&(s)->states[0])
2458 #define SLAB_LAST(s) (&(s)->states[PERL_REGMATCH_SLAB_SLOTS-1])
2460 /* grab a new slab and return the first slot in it */
2462 STATIC regmatch_state *
2465 #if PERL_VERSION < 9
2468 regmatch_slab *s = PL_regmatch_slab->next;
2470 Newx(s, 1, regmatch_slab);
2471 s->prev = PL_regmatch_slab;
2473 PL_regmatch_slab->next = s;
2475 PL_regmatch_slab = s;
2476 return SLAB_FIRST(s);
2479 /* simulate a recursive call to regmatch */
2481 #define REGMATCH(ns, where) \
2484 st->resume_state = resume_##where; \
2485 goto start_recurse; \
2486 resume_point_##where:
2489 /* push a new regex state. Set newst to point to it */
2491 #define PUSH_STATE(newst, resume) \
2493 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "PUSH STATE(%d)\n", depth)); \
2497 st->locinput = locinput; \
2498 st->resume_state = resume; \
2500 if (newst > SLAB_LAST(PL_regmatch_slab)) \
2501 newst = S_push_slab(aTHX); \
2502 PL_regmatch_state = newst; \
2504 newst->minmod = 0; \
2506 newst->logical = 0; \
2507 newst->unwind = 0; \
2508 locinput = PL_reginput; \
2509 nextchr = UCHARAT(locinput);
2512 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "POP STATE(%d)\n", depth)); \
2515 if (st < SLAB_FIRST(PL_regmatch_slab)) { \
2516 PL_regmatch_slab = PL_regmatch_slab->prev; \
2517 st = SLAB_LAST(PL_regmatch_slab); \
2519 PL_regmatch_state = st; \
2523 locinput = st->locinput; \
2524 nextchr = UCHARAT(locinput);
2527 - regmatch - main matching routine
2529 * Conceptually the strategy is simple: check to see whether the current
2530 * node matches, call self recursively to see whether the rest matches,
2531 * and then act accordingly. In practice we make some effort to avoid
2532 * recursion, in particular by going through "ordinary" nodes (that don't
2533 * need to know whether the rest of the match failed) by a loop instead of
2536 /* [lwall] I've hoisted the register declarations to the outer block in order to
2537 * maybe save a little bit of pushing and popping on the stack. It also takes
2538 * advantage of machines that use a register save mask on subroutine entry.
2540 * This function used to be heavily recursive, but since this had the
2541 * effect of blowing the CPU stack on complex regexes, it has been
2542 * restructured to be iterative, and to save state onto the heap rather
2543 * than the stack. Essentially whereever regmatch() used to be called, it
2544 * pushes the current state, notes where to return, then jumps back into
2547 * Originally the structure of this function used to look something like
2552 while (scan != NULL) {
2553 a++; // do stuff with a and b
2559 if (regmatch(...)) // recurse
2569 * Now it looks something like this:
2577 regmatch_state *st = new();
2579 st->a++; // do stuff with a and b
2581 while (scan != NULL) {
2589 st->resume_state = resume_FOO;
2590 goto start_recurse; // recurse
2599 st = new(); push a new state
2600 st->a = 1; st->b = 2;
2607 switch (resume_state) {
2609 goto resume_point_FOO;
2616 * WARNING: this means that any line in this function that contains a
2617 * REGMATCH() or TRYPAREN() is actually simulating a recursive call to
2618 * regmatch() using gotos instead. Thus the values of any local variables
2619 * not saved in the regmatch_state structure will have been lost when
2620 * execution resumes on the next line .
2622 * States (ie the st pointer) are allocated in slabs of about 4K in size.
2623 * PL_regmatch_state always points to the currently active state, and
2624 * PL_regmatch_slab points to the slab currently containing PL_regmatch_state.
2625 * The first time regmatch is called, the first slab is allocated, and is
2626 * never freed until interpreter desctruction. When the slab is full,
2627 * a new one is allocated chained to the end. At exit from regmatch, slabs
2628 * allocated since entry are freed.
2631 #define REG_NODE_NUM(x) ((x) ? (int)((x)-prog) : -1)
2635 S_dump_exec_pos(pTHX_ const char *locinput, const regnode *scan, const bool do_utf8)
2637 const int docolor = *PL_colors[0];
2638 const int taill = (docolor ? 10 : 7); /* 3 chars for "> <" */
2639 int l = (PL_regeol - locinput) > taill ? taill : (PL_regeol - locinput);
2640 /* The part of the string before starttry has one color
2641 (pref0_len chars), between starttry and current
2642 position another one (pref_len - pref0_len chars),
2643 after the current position the third one.
2644 We assume that pref0_len <= pref_len, otherwise we
2645 decrease pref0_len. */
2646 int pref_len = (locinput - PL_bostr) > (5 + taill) - l
2647 ? (5 + taill) - l : locinput - PL_bostr;
2650 while (do_utf8 && UTF8_IS_CONTINUATION(*(U8*)(locinput - pref_len)))
2652 pref0_len = pref_len - (locinput - PL_reg_starttry);
2653 if (l + pref_len < (5 + taill) && l < PL_regeol - locinput)
2654 l = ( PL_regeol - locinput > (5 + taill) - pref_len
2655 ? (5 + taill) - pref_len : PL_regeol - locinput);
2656 while (do_utf8 && UTF8_IS_CONTINUATION(*(U8*)(locinput + l)))
2660 if (pref0_len > pref_len)
2661 pref0_len = pref_len;
2663 const char * const s0 =
2664 do_utf8 && OP(scan) != CANY ?
2665 pv_uni_display(PERL_DEBUG_PAD(0), (U8*)(locinput - pref_len),
2666 pref0_len, 60, UNI_DISPLAY_REGEX) :
2667 locinput - pref_len;
2668 const int len0 = do_utf8 ? (int)strlen(s0) : pref0_len;
2669 const char * const s1 = do_utf8 && OP(scan) != CANY ?
2670 pv_uni_display(PERL_DEBUG_PAD(1),
2671 (U8*)(locinput - pref_len + pref0_len),
2672 pref_len - pref0_len, 60, UNI_DISPLAY_REGEX) :
2673 locinput - pref_len + pref0_len;
2674 const int len1 = do_utf8 ? (int)strlen(s1) : pref_len - pref0_len;
2675 const char * const s2 = do_utf8 && OP(scan) != CANY ?
2676 pv_uni_display(PERL_DEBUG_PAD(2), (U8*)locinput,
2677 PL_regeol - locinput, 60, UNI_DISPLAY_REGEX) :
2679 const int len2 = do_utf8 ? (int)strlen(s2) : l;
2680 PerlIO_printf(Perl_debug_log,
2681 "%4"IVdf" <%s%.*s%s%s%.*s%s%s%s%.*s%s>%*s|",
2682 (IV)(locinput - PL_bostr),
2689 (docolor ? "" : "> <"),
2693 15 - l - pref_len + 1,
2699 STATIC I32 /* 0 failure, 1 success */
2700 S_regmatch(pTHX_ const regmatch_info *reginfo, regnode *prog)
2702 #if PERL_VERSION < 9
2706 register const bool do_utf8 = PL_reg_match_utf8;
2707 const U32 uniflags = UTF8_ALLOW_DEFAULT;
2709 regexp *rex = reginfo->prog;
2711 regmatch_slab *orig_slab;
2712 regmatch_state *orig_state;
2714 /* the current state. This is a cached copy of PL_regmatch_state */
2715 register regmatch_state *st;
2717 /* cache heavy used fields of st in registers */
2718 register regnode *scan;
2719 register regnode *next;
2720 register I32 n = 0; /* initialize to shut up compiler warning */
2721 register char *locinput = PL_reginput;
2723 /* these variables are NOT saved during a recusive RFEGMATCH: */
2724 register I32 nextchr; /* is always set to UCHARAT(locinput) */
2725 bool result; /* return value of S_regmatch */
2726 regnode *inner; /* Next node in internal branch. */
2727 int depth = 0; /* depth of recursion */
2728 regmatch_state *newst; /* when pushing a state, this is the new one */
2729 regmatch_state *yes_state = NULL; /* state to pop to on success of
2733 SV *re_debug_flags = NULL;
2738 /* on first ever call to regmatch, allocate first slab */
2739 if (!PL_regmatch_slab) {
2740 Newx(PL_regmatch_slab, 1, regmatch_slab);
2741 PL_regmatch_slab->prev = NULL;
2742 PL_regmatch_slab->next = NULL;
2743 PL_regmatch_state = SLAB_FIRST(PL_regmatch_slab);
2746 /* remember current high-water mark for exit */
2747 /* XXX this should be done with SAVE* instead */
2748 orig_slab = PL_regmatch_slab;
2749 orig_state = PL_regmatch_state;
2751 /* grab next free state slot */
2752 st = ++PL_regmatch_state;
2753 if (st > SLAB_LAST(PL_regmatch_slab))
2754 st = PL_regmatch_state = S_push_slab(aTHX);
2761 /* Note that nextchr is a byte even in UTF */
2762 nextchr = UCHARAT(locinput);
2764 while (scan != NULL) {
2767 SV * const prop = sv_newmortal();
2768 dump_exec_pos( locinput, scan, do_utf8 );
2769 regprop(rex, prop, scan);
2771 PerlIO_printf(Perl_debug_log,
2772 "%3"IVdf":%*s%s(%"IVdf")\n",
2773 (IV)(scan - rex->program), PL_regindent*2, "",
2775 PL_regkind[OP(scan)] == END ? 0 : (IV)(regnext(scan) - rex->program));
2778 next = scan + NEXT_OFF(scan);
2784 if (locinput == PL_bostr)
2786 /* reginfo->till = reginfo->bol; */
2791 if (locinput == PL_bostr ||
2792 ((nextchr || locinput < PL_regeol) && locinput[-1] == '\n'))
2798 if (locinput == PL_bostr)
2802 if (locinput == reginfo->ganch)
2808 if ((nextchr || locinput < PL_regeol) && nextchr != '\n')
2813 if ((nextchr || locinput < PL_regeol) && nextchr != '\n')
2815 if (PL_regeol - locinput > 1)
2819 if (PL_regeol != locinput)
2823 if (!nextchr && locinput >= PL_regeol)
2826 locinput += PL_utf8skip[nextchr];
2827 if (locinput > PL_regeol)
2829 nextchr = UCHARAT(locinput);
2832 nextchr = UCHARAT(++locinput);
2835 if (!nextchr && locinput >= PL_regeol)
2837 nextchr = UCHARAT(++locinput);
2840 if ((!nextchr && locinput >= PL_regeol) || nextchr == '\n')
2843 locinput += PL_utf8skip[nextchr];
2844 if (locinput > PL_regeol)
2846 nextchr = UCHARAT(locinput);
2849 nextchr = UCHARAT(++locinput);
2853 /* what type of TRIE am I? (utf8 makes this contextual) */
2854 const enum { trie_plain, trie_utf8, trie_utf8_fold }
2855 trie_type = do_utf8 ?
2856 (scan->flags == EXACT ? trie_utf8 : trie_utf8_fold)
2859 /* what trie are we using right now */
2861 = (reg_trie_data*)rex->data->data[ ARG( scan ) ];
2862 U32 state = trie->startstate;
2864 if (trie->bitmap && trie_type != trie_utf8_fold &&
2865 !TRIE_BITMAP_TEST(trie,*locinput)
2867 if (trie->states[ state ].wordnum) {
2869 PerlIO_printf(Perl_debug_log,
2870 "%*s %smatched empty string...%s\n",
2871 REPORT_CODE_OFF+PL_regindent*2, "", PL_colors[4], PL_colors[5])
2876 PerlIO_printf(Perl_debug_log,
2877 "%*s %sfailed to match start class...%s\n",
2878 REPORT_CODE_OFF+PL_regindent*2, "", PL_colors[4], PL_colors[5])
2885 traverse the TRIE keeping track of all accepting states
2886 we transition through until we get to a failing node.
2889 U8 *uc = ( U8* )locinput;
2895 U8 *uscan = (U8*)NULL;
2897 SV *sv_accept_buff = NULL;
2899 st->u.trie.accepted = 0; /* how many accepting states we have seen */
2902 while ( state && uc <= (U8*)PL_regeol ) {
2904 if (trie->states[ state ].wordnum) {
2905 if (!st->u.trie.accepted ) {
2908 bufflen = TRIE_INITAL_ACCEPT_BUFFLEN;
2909 sv_accept_buff=newSV(bufflen *
2910 sizeof(reg_trie_accepted) - 1);
2911 SvCUR_set(sv_accept_buff,
2912 sizeof(reg_trie_accepted));
2913 SvPOK_on(sv_accept_buff);
2914 sv_2mortal(sv_accept_buff);
2915 st->u.trie.accept_buff =
2916 (reg_trie_accepted*)SvPV_nolen(sv_accept_buff );
2919 if (st->u.trie.accepted >= bufflen) {
2921 st->u.trie.accept_buff =(reg_trie_accepted*)
2922 SvGROW(sv_accept_buff,
2923 bufflen * sizeof(reg_trie_accepted));
2925 SvCUR_set(sv_accept_buff,SvCUR(sv_accept_buff)
2926 + sizeof(reg_trie_accepted));
2928 st->u.trie.accept_buff[st->u.trie.accepted].wordnum = trie->states[state].wordnum;
2929 st->u.trie.accept_buff[st->u.trie.accepted].endpos = uc;
2930 ++st->u.trie.accepted;
2933 base = trie->states[ state ].trans.base;
2935 DEBUG_TRIE_EXECUTE_r({
2936 dump_exec_pos( (char *)uc, scan, do_utf8 );
2937 PerlIO_printf( Perl_debug_log,
2938 "%*s %sState: %4"UVxf", Base: %4"UVxf", Accepted: %4"UVxf" ",
2939 2+PL_regindent * 2, "", PL_colors[4],
2940 (UV)state, (UV)base, (UV)st->u.trie.accepted );
2944 switch (trie_type) {
2945 case trie_utf8_fold:
2947 uvc = utf8n_to_uvuni( uscan, UTF8_MAXLEN, &len, uniflags );
2952 U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
2953 uvc = utf8n_to_uvuni( (U8*)uc, UTF8_MAXLEN, &len, uniflags );
2954 uvc = to_uni_fold( uvc, foldbuf, &foldlen );
2955 foldlen -= UNISKIP( uvc );
2956 uscan = foldbuf + UNISKIP( uvc );
2960 uvc = utf8n_to_uvuni( (U8*)uc, UTF8_MAXLEN,
2969 charid = trie->charmap[ uvc ];
2973 if (trie->widecharmap) {
2974 SV** const svpp = hv_fetch(trie->widecharmap,
2975 (char*)&uvc, sizeof(UV), 0);
2977 charid = (U16)SvIV(*svpp);
2982 (base + charid > trie->uniquecharcount )
2983 && (base + charid - 1 - trie->uniquecharcount
2985 && trie->trans[base + charid - 1 -
2986 trie->uniquecharcount].check == state)
2988 state = trie->trans[base + charid - 1 -
2989 trie->uniquecharcount ].next;
3000 DEBUG_TRIE_EXECUTE_r(
3001 PerlIO_printf( Perl_debug_log,
3002 "Charid:%3x CV:%4"UVxf" After State: %4"UVxf"%s\n",
3003 charid, uvc, (UV)state, PL_colors[5] );
3006 if (!st->u.trie.accepted )
3010 There was at least one accepting state that we
3011 transitioned through. Presumably the number of accepting
3012 states is going to be low, typically one or two. So we
3013 simply scan through to find the one with lowest wordnum.
3014 Once we find it, we swap the last state into its place
3015 and decrement the size. We then try to match the rest of
3016 the pattern at the point where the word ends, if we
3017 succeed then we end the loop, otherwise the loop
3018 eventually terminates once all of the accepting states
3022 if ( st->u.trie.accepted == 1 ) {
3024 SV ** const tmp = RX_DEBUG(reginfo->prog)
3025 ? av_fetch( trie->words, st->u.trie.accept_buff[ 0 ].wordnum-1, 0 )
3027 PerlIO_printf( Perl_debug_log,
3028 "%*s %sonly one match : #%d <%s>%s\n",
3029 REPORT_CODE_OFF+PL_regindent*2, "", PL_colors[4],
3030 st->u.trie.accept_buff[ 0 ].wordnum,
3031 tmp ? SvPV_nolen_const( *tmp ) : "not compiled under -Dr",
3034 PL_reginput = (char *)st->u.trie.accept_buff[ 0 ].endpos;
3035 /* in this case we free tmps/leave before we call regmatch
3036 as we wont be using accept_buff again. */
3039 /* do we need this? why dont we just do a break? */
3040 REGMATCH(scan + NEXT_OFF(scan), TRIE1);
3041 /*** all unsaved local vars undefined at this point */
3044 PerlIO_printf( Perl_debug_log,"%*s %sgot %"IVdf" possible matches%s\n",
3045 REPORT_CODE_OFF + PL_regindent * 2, "", PL_colors[4], (IV)st->u.trie.accepted,
3048 while ( !result && st->u.trie.accepted-- ) {
3051 for( cur = 1 ; cur <= st->u.trie.accepted ; cur++ ) {
3052 DEBUG_TRIE_EXECUTE_r(
3053 PerlIO_printf( Perl_debug_log,
3054 "%*s %sgot %"IVdf" (%d) as best, looking at %"IVdf" (%d)%s\n",
3055 REPORT_CODE_OFF + PL_regindent * 2, "", PL_colors[4],
3056 (IV)best, st->u.trie.accept_buff[ best ].wordnum, (IV)cur,
3057 st->u.trie.accept_buff[ cur ].wordnum, PL_colors[5] );
3060 if (st->u.trie.accept_buff[cur].wordnum <
3061 st->u.trie.accept_buff[best].wordnum)
3065 reg_trie_data * const trie = (reg_trie_data*)
3066 rex->data->data[ARG(scan)];
3067 SV ** const tmp = RX_DEBUG(reginfo->prog)
3068 ? av_fetch( trie->words, st->u.trie.accept_buff[ best ].wordnum - 1, 0 )
3070 PerlIO_printf( Perl_debug_log, "%*s %strying alternation #%d <%s> at node #%d %s\n",
3071 REPORT_CODE_OFF+PL_regindent*2, "", PL_colors[4],
3072 st->u.trie.accept_buff[best].wordnum,
3073 tmp ? SvPV_nolen_const( *tmp ) : "not compiled under -Dr", REG_NODE_NUM(scan),
3076 if ( best<st->u.trie.accepted ) {
3077 reg_trie_accepted tmp = st->u.trie.accept_buff[ best ];
3078 st->u.trie.accept_buff[ best ] = st->u.trie.accept_buff[ st->u.trie.accepted ];
3079 st->u.trie.accept_buff[ st->u.trie.accepted ] = tmp;
3080 best = st->u.trie.accepted;
3082 PL_reginput = (char *)st->u.trie.accept_buff[ best ].endpos;
3085 as far as I can tell we only need the SAVETMPS/FREETMPS
3086 for re's with EVAL in them but I'm leaving them in for
3087 all until I can be sure.
3090 REGMATCH(scan + NEXT_OFF(scan), TRIE2);
3091 /*** all unsaved local vars undefined at this point */
3104 /* unreached codepoint */
3106 char *s = STRING(scan);
3107 st->ln = STR_LEN(scan);
3108 if (do_utf8 != UTF) {
3109 /* The target and the pattern have differing utf8ness. */
3111 const char *e = s + st->ln;
3114 /* The target is utf8, the pattern is not utf8. */
3119 if (NATIVE_TO_UNI(*(U8*)s) !=
3120 utf8n_to_uvuni((U8*)l, UTF8_MAXBYTES, &ulen,
3128 /* The target is not utf8, the pattern is utf8. */
3133 if (NATIVE_TO_UNI(*((U8*)l)) !=
3134 utf8n_to_uvuni((U8*)s, UTF8_MAXBYTES, &ulen,
3142 nextchr = UCHARAT(locinput);
3145 /* The target and the pattern have the same utf8ness. */
3146 /* Inline the first character, for speed. */
3147 if (UCHARAT(s) != nextchr)
3149 if (PL_regeol - locinput < st->ln)
3151 if (st->ln > 1 && memNE(s, locinput, st->ln))
3154 nextchr = UCHARAT(locinput);
3158 PL_reg_flags |= RF_tainted;
3161 char *s = STRING(scan);
3162 st->ln = STR_LEN(scan);
3164 if (do_utf8 || UTF) {
3165 /* Either target or the pattern are utf8. */
3167 char *e = PL_regeol;
3169 if (ibcmp_utf8(s, 0, st->ln, (bool)UTF,
3170 l, &e, 0, do_utf8)) {
3171 /* One more case for the sharp s:
3172 * pack("U0U*", 0xDF) =~ /ss/i,
3173 * the 0xC3 0x9F are the UTF-8
3174 * byte sequence for the U+00DF. */
3176 toLOWER(s[0]) == 's' &&
3178 toLOWER(s[1]) == 's' &&
3185 nextchr = UCHARAT(locinput);
3189 /* Neither the target and the pattern are utf8. */
3191 /* Inline the first character, for speed. */
3192 if (UCHARAT(s) != nextchr &&
3193 UCHARAT(s) != ((OP(scan) == EXACTF)
3194 ? PL_fold : PL_fold_locale)[nextchr])
3196 if (PL_regeol - locinput < st->ln)
3198 if (st->ln > 1 && (OP(scan) == EXACTF
3199 ? ibcmp(s, locinput, st->ln)
3200 : ibcmp_locale(s, locinput, st->ln)))
3203 nextchr = UCHARAT(locinput);
3208 STRLEN inclasslen = PL_regeol - locinput;
3210 if (!reginclass(rex, scan, (U8*)locinput, &inclasslen, do_utf8))
3212 if (locinput >= PL_regeol)
3214 locinput += inclasslen ? inclasslen : UTF8SKIP(locinput);
3215 nextchr = UCHARAT(locinput);
3220 nextchr = UCHARAT(locinput);
3221 if (!REGINCLASS(rex, scan, (U8*)locinput))
3223 if (!nextchr && locinput >= PL_regeol)
3225 nextchr = UCHARAT(++locinput);
3229 /* If we might have the case of the German sharp s
3230 * in a casefolding Unicode character class. */
3232 if (ANYOF_FOLD_SHARP_S(scan, locinput, PL_regeol)) {
3233 locinput += SHARP_S_SKIP;
3234 nextchr = UCHARAT(locinput);
3240 PL_reg_flags |= RF_tainted;
3246 LOAD_UTF8_CHARCLASS_ALNUM();
3247 if (!(OP(scan) == ALNUM
3248 ? (bool)swash_fetch(PL_utf8_alnum, (U8*)locinput, do_utf8)
3249 : isALNUM_LC_utf8((U8*)locinput)))
3253 locinput += PL_utf8skip[nextchr];
3254 nextchr = UCHARAT(locinput);
3257 if (!(OP(scan) == ALNUM
3258 ? isALNUM(nextchr) : isALNUM_LC(nextchr)))
3260 nextchr = UCHARAT(++locinput);
3263 PL_reg_flags |= RF_tainted;
3266 if (!nextchr && locinput >= PL_regeol)
3269 LOAD_UTF8_CHARCLASS_ALNUM();
3270 if (OP(scan) == NALNUM
3271 ? (bool)swash_fetch(PL_utf8_alnum, (U8*)locinput, do_utf8)
3272 : isALNUM_LC_utf8((U8*)locinput))
3276 locinput += PL_utf8skip[nextchr];
3277 nextchr = UCHARAT(locinput);
3280 if (OP(scan) == NALNUM
3281 ? isALNUM(nextchr) : isALNUM_LC(nextchr))
3283 nextchr = UCHARAT(++locinput);
3287 PL_reg_flags |= RF_tainted;
3291 /* was last char in word? */
3293 if (locinput == PL_bostr)
3296 const U8 * const r = reghop3((U8*)locinput, -1, (U8*)PL_bostr);
3298 st->ln = utf8n_to_uvchr(r, UTF8SKIP(r), 0, uniflags);
3300 if (OP(scan) == BOUND || OP(scan) == NBOUND) {
3301 st->ln = isALNUM_uni(st->ln);
3302 LOAD_UTF8_CHARCLASS_ALNUM();
3303 n = swash_fetch(PL_utf8_alnum, (U8*)locinput, do_utf8);
3306 st->ln = isALNUM_LC_uvchr(UNI_TO_NATIVE(st->ln));
3307 n = isALNUM_LC_utf8((U8*)locinput);
3311 st->ln = (locinput != PL_bostr) ?
3312 UCHARAT(locinput - 1) : '\n';
3313 if (OP(scan) == BOUND || OP(scan) == NBOUND) {
3314 st->ln = isALNUM(st->ln);
3315 n = isALNUM(nextchr);
3318 st->ln = isALNUM_LC(st->ln);
3319 n = isALNUM_LC(nextchr);
3322 if (((!st->ln) == (!n)) == (OP(scan) == BOUND ||
3323 OP(scan) == BOUNDL))
3327 PL_reg_flags |= RF_tainted;
3333 if (UTF8_IS_CONTINUED(nextchr)) {
3334 LOAD_UTF8_CHARCLASS_SPACE();
3335 if (!(OP(scan) == SPACE
3336 ? (bool)swash_fetch(PL_utf8_space, (U8*)locinput, do_utf8)
3337 : isSPACE_LC_utf8((U8*)locinput)))
3341 locinput += PL_utf8skip[nextchr];
3342 nextchr = UCHARAT(locinput);
3345 if (!(OP(scan) == SPACE
3346 ? isSPACE(nextchr) : isSPACE_LC(nextchr)))
3348 nextchr = UCHARAT(++locinput);
3351 if (!(OP(scan) == SPACE
3352 ? isSPACE(nextchr) : isSPACE_LC(nextchr)))
3354 nextchr = UCHARAT(++locinput);
3358 PL_reg_flags |= RF_tainted;
3361 if (!nextchr && locinput >= PL_regeol)
3364 LOAD_UTF8_CHARCLASS_SPACE();
3365 if (OP(scan) == NSPACE
3366 ? (bool)swash_fetch(PL_utf8_space, (U8*)locinput, do_utf8)
3367 : isSPACE_LC_utf8((U8*)locinput))
3371 locinput += PL_utf8skip[nextchr];
3372 nextchr = UCHARAT(locinput);
3375 if (OP(scan) == NSPACE
3376 ? isSPACE(nextchr) : isSPACE_LC(nextchr))
3378 nextchr = UCHARAT(++locinput);
3381 PL_reg_flags |= RF_tainted;
3387 LOAD_UTF8_CHARCLASS_DIGIT();
3388 if (!(OP(scan) == DIGIT
3389 ? (bool)swash_fetch(PL_utf8_digit, (U8*)locinput, do_utf8)
3390 : isDIGIT_LC_utf8((U8*)locinput)))
3394 locinput += PL_utf8skip[nextchr];
3395 nextchr = UCHARAT(locinput);
3398 if (!(OP(scan) == DIGIT
3399 ? isDIGIT(nextchr) : isDIGIT_LC(nextchr)))
3401 nextchr = UCHARAT(++locinput);
3404 PL_reg_flags |= RF_tainted;
3407 if (!nextchr && locinput >= PL_regeol)
3410 LOAD_UTF8_CHARCLASS_DIGIT();
3411 if (OP(scan) == NDIGIT
3412 ? (bool)swash_fetch(PL_utf8_digit, (U8*)locinput, do_utf8)
3413 : isDIGIT_LC_utf8((U8*)locinput))
3417 locinput += PL_utf8skip[nextchr];
3418 nextchr = UCHARAT(locinput);
3421 if (OP(scan) == NDIGIT
3422 ? isDIGIT(nextchr) : isDIGIT_LC(nextchr))
3424 nextchr = UCHARAT(++locinput);
3427 if (locinput >= PL_regeol)
3430 LOAD_UTF8_CHARCLASS_MARK();
3431 if (swash_fetch(PL_utf8_mark,(U8*)locinput, do_utf8))
3433 locinput += PL_utf8skip[nextchr];
3434 while (locinput < PL_regeol &&
3435 swash_fetch(PL_utf8_mark,(U8*)locinput, do_utf8))
3436 locinput += UTF8SKIP(locinput);
3437 if (locinput > PL_regeol)
3442 nextchr = UCHARAT(locinput);
3445 PL_reg_flags |= RF_tainted;
3450 n = ARG(scan); /* which paren pair */
3451 st->ln = PL_regstartp[n];
3452 PL_reg_leftiter = PL_reg_maxiter; /* Void cache */
3453 if ((I32)*PL_reglastparen < n || st->ln == -1)
3454 sayNO; /* Do not match unless seen CLOSEn. */
3455 if (st->ln == PL_regendp[n])
3458 s = PL_bostr + st->ln;
3459 if (do_utf8 && OP(scan) != REF) { /* REF can do byte comparison */
3461 const char *e = PL_bostr + PL_regendp[n];
3463 * Note that we can't do the "other character" lookup trick as
3464 * in the 8-bit case (no pun intended) because in Unicode we
3465 * have to map both upper and title case to lower case.
3467 if (OP(scan) == REFF) {
3469 STRLEN ulen1, ulen2;
3470 U8 tmpbuf1[UTF8_MAXBYTES_CASE+1];
3471 U8 tmpbuf2[UTF8_MAXBYTES_CASE+1];
3475 toLOWER_utf8((U8*)s, tmpbuf1, &ulen1);
3476 toLOWER_utf8((U8*)l, tmpbuf2, &ulen2);
3477 if (ulen1 != ulen2 || memNE((char *)tmpbuf1, (char *)tmpbuf2, ulen1))
3484 nextchr = UCHARAT(locinput);
3488 /* Inline the first character, for speed. */
3489 if (UCHARAT(s) != nextchr &&
3491 (UCHARAT(s) != ((OP(scan) == REFF
3492 ? PL_fold : PL_fold_locale)[nextchr]))))
3494 st->ln = PL_regendp[n] - st->ln;
3495 if (locinput + st->ln > PL_regeol)
3497 if (st->ln > 1 && (OP(scan) == REF
3498 ? memNE(s, locinput, st->ln)
3500 ? ibcmp(s, locinput, st->ln)
3501 : ibcmp_locale(s, locinput, st->ln))))
3504 nextchr = UCHARAT(locinput);
3517 /* execute the code in the {...} */
3519 SV ** const before = SP;
3520 OP_4tree * const oop = PL_op;
3521 COP * const ocurcop = PL_curcop;
3525 PL_op = (OP_4tree*)rex->data->data[n];
3526 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log, " re_eval 0x%"UVxf"\n", PTR2UV(PL_op)) );
3527 PAD_SAVE_LOCAL(old_comppad, (PAD*)rex->data->data[n + 2]);
3528 PL_regendp[0] = PL_reg_magic->mg_len = locinput - PL_bostr;
3530 CALLRUNOPS(aTHX); /* Scalar context. */
3533 ret = &PL_sv_undef; /* protect against empty (?{}) blocks. */
3540 PAD_RESTORE_LOCAL(old_comppad);
3541 PL_curcop = ocurcop;
3544 sv_setsv(save_scalar(PL_replgv), ret);
3548 if (st->logical == 2) { /* Postponed subexpression: /(??{...})/ */
3551 /* extract RE object from returned value; compiling if
3556 if(SvROK(ret) && SvSMAGICAL(sv = SvRV(ret)))
3557 mg = mg_find(sv, PERL_MAGIC_qr);
3558 else if (SvSMAGICAL(ret)) {
3559 if (SvGMAGICAL(ret))
3560 sv_unmagic(ret, PERL_MAGIC_qr);
3562 mg = mg_find(ret, PERL_MAGIC_qr);
3566 re = (regexp *)mg->mg_obj;
3567 (void)ReREFCNT_inc(re);
3571 const char * const t = SvPV_const(ret, len);
3573 const I32 osize = PL_regsize;
3576 if (DO_UTF8(ret)) pm.op_pmdynflags |= PMdf_DYN_UTF8;
3577 re = CALLREGCOMP(aTHX_ (char*)t, (char*)t + len, &pm);
3579 & (SVs_TEMP | SVs_PADTMP | SVf_READONLY
3581 sv_magic(ret,(SV*)ReREFCNT_inc(re),
3587 /* run the pattern returned from (??{...}) */
3590 PerlIO_printf(Perl_debug_log,
3591 "Entering embedded \"%s%.60s%s%s\"\n",
3595 (strlen(re->precomp) > 60 ? "..." : ""))
3598 st->u.eval.cp = regcppush(0); /* Save *all* the positions. */
3599 REGCP_SET(st->u.eval.lastcp);
3600 *PL_reglastparen = 0;
3601 *PL_reglastcloseparen = 0;
3602 PL_reginput = locinput;
3604 /* XXXX This is too dramatic a measure... */
3608 st->u.eval.toggleutf = ((PL_reg_flags & RF_utf8) != 0) ^
3609 ((re->reganch & ROPT_UTF8) != 0);
3610 if (st->u.eval.toggleutf) PL_reg_flags ^= RF_utf8;
3611 st->u.eval.prev_rex = rex;
3614 /* resume to current state on success */
3615 st->u.yes.prev_yes_state = yes_state;
3617 PUSH_STATE(newst, resume_EVAL);
3620 /* now continue from first node in postoned RE */
3621 next = re->program + 1;
3625 /* /(?(?{...})X|Y)/ */
3626 st->sw = SvTRUE(ret);
3631 n = ARG(scan); /* which paren pair */
3632 PL_reg_start_tmp[n] = locinput;
3637 n = ARG(scan); /* which paren pair */
3638 PL_regstartp[n] = PL_reg_start_tmp[n] - PL_bostr;
3639 PL_regendp[n] = locinput - PL_bostr;
3640 if (n > (I32)*PL_reglastparen)
3641 *PL_reglastparen = n;
3642 *PL_reglastcloseparen = n;
3645 n = ARG(scan); /* which paren pair */
3646 st->sw = ((I32)*PL_reglastparen >= n && PL_regendp[n] != -1);
3649 PL_reg_leftiter = PL_reg_maxiter; /* Void cache */
3651 next = NEXTOPER(NEXTOPER(scan));
3653 next = scan + ARG(scan);
3654 if (OP(next) == IFTHEN) /* Fake one. */
3655 next = NEXTOPER(NEXTOPER(next));
3659 st->logical = scan->flags;
3661 /*******************************************************************
3662 cc points to the regmatch_state associated with the most recent CURLYX.
3663 This struct contains info about the innermost (...)* loop (an
3664 "infoblock"), and a pointer to the next outer cc.
3666 Here is how Y(A)*Z is processed (if it is compiled into CURLYX/WHILEM):
3668 1) After matching Y, regnode for CURLYX is processed;
3670 2) This regnode populates cc, and calls regmatch() recursively
3671 with the starting point at WHILEM node;
3673 3) Each hit of WHILEM node tries to match A and Z (in the order
3674 depending on the current iteration, min/max of {min,max} and
3675 greediness). The information about where are nodes for "A"
3676 and "Z" is read from cc, as is info on how many times "A"
3677 was already matched, and greediness.
3679 4) After A matches, the same WHILEM node is hit again.
3681 5) Each time WHILEM is hit, cc is the infoblock created by CURLYX
3682 of the same pair. Thus when WHILEM tries to match Z, it temporarily
3683 resets cc, since this Y(A)*Z can be a part of some other loop:
3684 as in (Y(A)*Z)*. If Z matches, the automaton will hit the WHILEM node
3685 of the external loop.
3687 Currently present infoblocks form a tree with a stem formed by st->cc
3688 and whatever it mentions via ->next, and additional attached trees
3689 corresponding to temporarily unset infoblocks as in "5" above.
3691 In the following picture, infoblocks for outer loop of
3692 (Y(A)*?Z)*?T are denoted O, for inner I. NULL starting block
3693 is denoted by x. The matched string is YAAZYAZT. Temporarily postponed
3694 infoblocks are drawn below the "reset" infoblock.
3696 In fact in the picture below we do not show failed matches for Z and T
3697 by WHILEM blocks. [We illustrate minimal matches, since for them it is
3698 more obvious *why* one needs to *temporary* unset infoblocks.]
3700 Matched REx position InfoBlocks Comment
3704 Y A)*?Z)*?T x <- O <- I
3705 YA )*?Z)*?T x <- O <- I
3706 YA A)*?Z)*?T x <- O <- I
3707 YAA )*?Z)*?T x <- O <- I
3708 YAA Z)*?T x <- O # Temporary unset I
3711 YAAZ Y(A)*?Z)*?T x <- O
3714 YAAZY (A)*?Z)*?T x <- O
3717 YAAZY A)*?Z)*?T x <- O <- I
3720 YAAZYA )*?Z)*?T x <- O <- I
3723 YAAZYA Z)*?T x <- O # Temporary unset I
3729 YAAZYAZ T x # Temporary unset O
3736 *******************************************************************/
3739 /* No need to save/restore up to this paren */
3740 I32 parenfloor = scan->flags;
3744 CURLYX and WHILEM are always paired: they're the moral
3745 equivalent of pp_enteriter anbd pp_iter.
3747 The only time next could be null is if the node tree is
3748 corrupt. This was mentioned on p5p a few days ago.
3750 See http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-04/msg00556.html
3751 So we'll assert that this is true:
3754 if (OP(PREVOPER(next)) == NOTHING) /* LONGJMP */
3756 /* XXXX Probably it is better to teach regpush to support
3757 parenfloor > PL_regsize... */
3758 if (parenfloor > (I32)*PL_reglastparen)
3759 parenfloor = *PL_reglastparen; /* Pessimization... */
3761 st->u.curlyx.cp = PL_savestack_ix;
3762 st->u.curlyx.outercc = st->cc;
3764 /* these fields contain the state of the current curly.
3765 * they are accessed by subsequent WHILEMs;
3766 * cur and lastloc are also updated by WHILEM */
3767 st->u.curlyx.parenfloor = parenfloor;
3768 st->u.curlyx.cur = -1; /* this will be updated by WHILEM */
3769 st->u.curlyx.min = ARG1(scan);
3770 st->u.curlyx.max = ARG2(scan);
3771 st->u.curlyx.scan = NEXTOPER(scan) + EXTRA_STEP_2ARGS;
3772 st->u.curlyx.lastloc = 0;
3773 /* st->next and st->minmod are also read by WHILEM */
3775 PL_reginput = locinput;
3776 REGMATCH(PREVOPER(next), CURLYX); /* start on the WHILEM */
3777 /*** all unsaved local vars undefined at this point */
3778 regcpblow(st->u.curlyx.cp);
3779 st->cc = st->u.curlyx.outercc;
3785 * This is really hard to understand, because after we match
3786 * what we're trying to match, we must make sure the rest of
3787 * the REx is going to match for sure, and to do that we have
3788 * to go back UP the parse tree by recursing ever deeper. And
3789 * if it fails, we have to reset our parent's current state
3790 * that we can try again after backing off.
3795 st->cc gets initialised by CURLYX ready for use by WHILEM.
3796 So again, unless somethings been corrupted, st->cc cannot
3797 be null at that point in WHILEM.
3799 See http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-04/msg00556.html
3800 So we'll assert that this is true:
3803 st->u.whilem.lastloc = st->cc->u.curlyx.lastloc; /* Detection of 0-len. */
3804 st->u.whilem.cache_offset = 0;
3805 st->u.whilem.cache_bit = 0;
3807 n = st->cc->u.curlyx.cur + 1; /* how many we know we matched */
3808 PL_reginput = locinput;
3811 PerlIO_printf(Perl_debug_log,
3812 "%*s %ld out of %ld..%ld cc=%"UVxf"\n",
3813 REPORT_CODE_OFF+PL_regindent*2, "",
3814 (long)n, (long)st->cc->u.curlyx.min,
3815 (long)st->cc->u.curlyx.max, PTR2UV(st->cc))
3818 /* If degenerate scan matches "", assume scan done. */
3820 if (locinput == st->cc->u.curlyx.lastloc && n >= st->cc->u.curlyx.min) {
3821 st->u.whilem.savecc = st->cc;
3822 st->cc = st->cc->u.curlyx.outercc;
3824 st->ln = st->cc->u.curlyx.cur;
3826 PerlIO_printf(Perl_debug_log,
3827 "%*s empty match detected, try continuation...\n",
3828 REPORT_CODE_OFF+PL_regindent*2, "")
3830 REGMATCH(st->u.whilem.savecc->next, WHILEM1);
3831 /*** all unsaved local vars undefined at this point */
3832 st->cc = st->u.whilem.savecc;
3835 if (st->cc->u.curlyx.outercc)
3836 st->cc->u.curlyx.outercc->u.curlyx.cur = st->ln;
3840 /* First just match a string of min scans. */
3842 if (n < st->cc->u.curlyx.min) {
3843 st->cc->u.curlyx.cur = n;
3844 st->cc->u.curlyx.lastloc = locinput;
3845 REGMATCH(st->cc->u.curlyx.scan, WHILEM2);
3846 /*** all unsaved local vars undefined at this point */
3849 st->cc->u.curlyx.cur = n - 1;
3850 st->cc->u.curlyx.lastloc = st->u.whilem.lastloc;
3855 /* Check whether we already were at this position.
3856 Postpone detection until we know the match is not
3857 *that* much linear. */
3858 if (!PL_reg_maxiter) {
3859 PL_reg_maxiter = (PL_regeol - PL_bostr + 1) * (scan->flags>>4);
3860 /* possible overflow for long strings and many CURLYX's */
3861 if (PL_reg_maxiter < 0)
3862 PL_reg_maxiter = I32_MAX;
3863 PL_reg_leftiter = PL_reg_maxiter;
3865 if (PL_reg_leftiter-- == 0) {
3866 const I32 size = (PL_reg_maxiter + 7 + POSCACHE_START)/8;
3867 if (PL_reg_poscache) {
3868 if ((I32)PL_reg_poscache_size < size) {
3869 Renew(PL_reg_poscache, size, char);
3870 PL_reg_poscache_size = size;
3872 Zero(PL_reg_poscache, size, char);
3875 PL_reg_poscache_size = size;
3876 Newxz(PL_reg_poscache, size, char);
3879 PerlIO_printf(Perl_debug_log,
3880 "%sDetected a super-linear match, switching on caching%s...\n",
3881 PL_colors[4], PL_colors[5])
3884 if (PL_reg_leftiter < 0) {
3885 st->u.whilem.cache_offset = locinput - PL_bostr;
3887 st->u.whilem.cache_offset = (scan->flags & 0xf) - 1 + POSCACHE_START
3888 + st->u.whilem.cache_offset * (scan->flags>>4);
3889 st->u.whilem.cache_bit = st->u.whilem.cache_offset % 8;
3890 st->u.whilem.cache_offset /= 8;
3891 if (PL_reg_poscache[st->u.whilem.cache_offset] & (1<<st->u.whilem.cache_bit)) {