5 * One Ring to rule them all, One Ring to find them
7 * [p.v of _The Lord of the Rings_, opening poem]
8 * [p.50 of _The Lord of the Rings_, I/iii: "The Shadow of the Past"]
9 * [p.254 of _The Lord of the Rings_, II/ii: "The Council of Elrond"]
12 /* This file contains functions for executing a regular expression. See
13 * also regcomp.c which funnily enough, contains functions for compiling
14 * a regular expression.
16 * This file is also copied at build time to ext/re/re_exec.c, where
17 * it's built with -DPERL_EXT_RE_BUILD -DPERL_EXT_RE_DEBUG -DPERL_EXT.
18 * This causes the main functions to be compiled under new names and with
19 * debugging support added, which makes "use re 'debug'" work.
22 /* NOTE: this is derived from Henry Spencer's regexp code, and should not
23 * confused with the original package (see point 3 below). Thanks, Henry!
26 /* Additional note: this code is very heavily munged from Henry's version
27 * in places. In some spots I've traded clarity for efficiency, so don't
28 * blame Henry for some of the lack of readability.
31 /* The names of the functions have been changed from regcomp and
32 * regexec to pregcomp and pregexec in order to avoid conflicts
33 * with the POSIX routines of the same names.
36 #ifdef PERL_EXT_RE_BUILD
41 * pregcomp and pregexec -- regsub and regerror are not used in perl
43 * Copyright (c) 1986 by University of Toronto.
44 * Written by Henry Spencer. Not derived from licensed software.
46 * Permission is granted to anyone to use this software for any
47 * purpose on any computer system, and to redistribute it freely,
48 * subject to the following restrictions:
50 * 1. The author is not responsible for the consequences of use of
51 * this software, no matter how awful, even if they arise
54 * 2. The origin of this software must not be misrepresented, either
55 * by explicit claim or by omission.
57 * 3. Altered versions must be plainly marked as such, and must not
58 * be misrepresented as being the original software.
60 **** Alterations to Henry's code are...
62 **** Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
63 **** 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
64 **** by Larry Wall and others
66 **** You may distribute under the terms of either the GNU General Public
67 **** License or the Artistic License, as specified in the README file.
69 * Beware that some of this code is subtly aware of the way operator
70 * precedence is structured in regular expressions. Serious changes in
71 * regular-expression syntax might require a total rethink.
74 #define PERL_IN_REGEXEC_C
77 #ifdef PERL_IN_XSUB_RE
83 #include "invlist_inline.h"
84 #include "unicode_constants.h"
86 #define B_ON_NON_UTF8_LOCALE_IS_WRONG \
87 "Use of \\b{} or \\B{} for non-UTF-8 locale is wrong. Assuming a UTF-8 locale"
89 static const char utf8_locale_required[] =
90 "Use of (?[ ]) for non-UTF-8 locale is wrong. Assuming a UTF-8 locale";
93 /* At least one required character in the target string is expressible only in
95 static const char non_utf8_target_but_utf8_required[]
96 = "Can't match, because target string needs to be in UTF-8\n";
99 #define NON_UTF8_TARGET_BUT_UTF8_REQUIRED(target) STMT_START { \
100 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_ "%s", non_utf8_target_but_utf8_required));\
104 #define HAS_NONLATIN1_FOLD_CLOSURE(i) _HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(i)
107 #define STATIC static
114 #define CHR_SVLEN(sv) (utf8_target ? sv_len_utf8(sv) : SvCUR(sv))
116 #define HOPc(pos,off) \
117 (char *)(reginfo->is_utf8_target \
118 ? reghop3((U8*)pos, off, \
119 (U8*)(off >= 0 ? reginfo->strend : reginfo->strbeg)) \
122 /* like HOPMAYBE3 but backwards. lim must be +ve. Returns NULL on overshoot */
123 #define HOPBACK3(pos, off, lim) \
124 (reginfo->is_utf8_target \
125 ? reghopmaybe3((U8*)pos, (SSize_t)0-off, (U8*)(lim)) \
126 : (pos - off >= lim) \
130 #define HOPBACKc(pos, off) ((char*)HOPBACK3(pos, off, reginfo->strbeg))
132 #define HOP3(pos,off,lim) (reginfo->is_utf8_target ? reghop3((U8*)(pos), off, (U8*)(lim)) : (U8*)(pos + off))
133 #define HOP3c(pos,off,lim) ((char*)HOP3(pos,off,lim))
135 /* lim must be +ve. Returns NULL on overshoot */
136 #define HOPMAYBE3(pos,off,lim) \
137 (reginfo->is_utf8_target \
138 ? reghopmaybe3((U8*)pos, off, (U8*)(lim)) \
139 : ((U8*)pos + off <= lim) \
143 /* like HOP3, but limits the result to <= lim even for the non-utf8 case.
144 * off must be >=0; args should be vars rather than expressions */
145 #define HOP3lim(pos,off,lim) (reginfo->is_utf8_target \
146 ? reghop3((U8*)(pos), off, (U8*)(lim)) \
147 : (U8*)((pos + off) > lim ? lim : (pos + off)))
148 #define HOP3clim(pos,off,lim) ((char*)HOP3lim(pos,off,lim))
150 #define HOP4(pos,off,llim, rlim) (reginfo->is_utf8_target \
151 ? reghop4((U8*)(pos), off, (U8*)(llim), (U8*)(rlim)) \
153 #define HOP4c(pos,off,llim, rlim) ((char*)HOP4(pos,off,llim, rlim))
155 #define PLACEHOLDER /* Something for the preprocessor to grab onto */
156 /* TODO: Combine JUMPABLE and HAS_TEXT to cache OP(rn) */
158 /* for use after a quantifier and before an EXACT-like node -- japhy */
159 /* it would be nice to rework regcomp.sym to generate this stuff. sigh
161 * NOTE that *nothing* that affects backtracking should be in here, specifically
162 * VERBS must NOT be included. JUMPABLE is used to determine if we can ignore a
163 * node that is in between two EXACT like nodes when ascertaining what the required
164 * "follow" character is. This should probably be moved to regex compile time
165 * although it may be done at run time beause of the REF possibility - more
166 * investigation required. -- demerphq
168 #define JUMPABLE(rn) ( \
170 (OP(rn) == CLOSE && \
171 !EVAL_CLOSE_PAREN_IS(cur_eval,ARG(rn)) ) || \
173 OP(rn) == SUSPEND || OP(rn) == IFMATCH || \
174 OP(rn) == PLUS || OP(rn) == MINMOD || \
176 (PL_regkind[OP(rn)] == CURLY && ARG1(rn) > 0) \
178 #define IS_EXACT(rn) (PL_regkind[OP(rn)] == EXACT)
180 #define HAS_TEXT(rn) ( IS_EXACT(rn) || PL_regkind[OP(rn)] == REF )
183 Search for mandatory following text node; for lookahead, the text must
184 follow but for lookbehind (rn->flags != 0) we skip to the next step.
186 #define FIND_NEXT_IMPT(rn) STMT_START { \
187 while (JUMPABLE(rn)) { \
188 const OPCODE type = OP(rn); \
189 if (type == SUSPEND || PL_regkind[type] == CURLY) \
190 rn = NEXTOPER(NEXTOPER(rn)); \
191 else if (type == PLUS) \
193 else if (type == IFMATCH) \
194 rn = (rn->flags == 0) ? NEXTOPER(NEXTOPER(rn)) : rn + ARG(rn); \
195 else rn += NEXT_OFF(rn); \
199 #define SLAB_FIRST(s) (&(s)->states[0])
200 #define SLAB_LAST(s) (&(s)->states[PERL_REGMATCH_SLAB_SLOTS-1])
202 static void S_setup_eval_state(pTHX_ regmatch_info *const reginfo);
203 static void S_cleanup_regmatch_info_aux(pTHX_ void *arg);
204 static regmatch_state * S_push_slab(pTHX);
206 #define REGCP_PAREN_ELEMS 3
207 #define REGCP_OTHER_ELEMS 3
208 #define REGCP_FRAME_ELEMS 1
209 /* REGCP_FRAME_ELEMS are not part of the REGCP_OTHER_ELEMS and
210 * are needed for the regexp context stack bookkeeping. */
213 S_regcppush(pTHX_ const regexp *rex, I32 parenfloor, U32 maxopenparen _pDEPTH)
215 const int retval = PL_savestack_ix;
216 const int paren_elems_to_push =
217 (maxopenparen - parenfloor) * REGCP_PAREN_ELEMS;
218 const UV total_elems = paren_elems_to_push + REGCP_OTHER_ELEMS;
219 const UV elems_shifted = total_elems << SAVE_TIGHT_SHIFT;
221 GET_RE_DEBUG_FLAGS_DECL;
223 PERL_ARGS_ASSERT_REGCPPUSH;
225 if (paren_elems_to_push < 0)
226 Perl_croak(aTHX_ "panic: paren_elems_to_push, %i < 0, maxopenparen: %i parenfloor: %i REGCP_PAREN_ELEMS: %u",
227 (int)paren_elems_to_push, (int)maxopenparen,
228 (int)parenfloor, (unsigned)REGCP_PAREN_ELEMS);
230 if ((elems_shifted >> SAVE_TIGHT_SHIFT) != total_elems)
231 Perl_croak(aTHX_ "panic: paren_elems_to_push offset %" UVuf
232 " out of range (%lu-%ld)",
234 (unsigned long)maxopenparen,
237 SSGROW(total_elems + REGCP_FRAME_ELEMS);
240 if ((int)maxopenparen > (int)parenfloor)
241 Perl_re_exec_indentf( aTHX_
242 "rex=0x%" UVxf " offs=0x%" UVxf ": saving capture indices:\n",
248 for (p = parenfloor+1; p <= (I32)maxopenparen; p++) {
249 /* REGCP_PARENS_ELEMS are pushed per pairs of parentheses. */
250 SSPUSHIV(rex->offs[p].end);
251 SSPUSHIV(rex->offs[p].start);
252 SSPUSHINT(rex->offs[p].start_tmp);
253 DEBUG_BUFFERS_r(Perl_re_exec_indentf( aTHX_
254 " \\%" UVuf ": %" IVdf "(%" IVdf ")..%" IVdf "\n",
257 (IV)rex->offs[p].start,
258 (IV)rex->offs[p].start_tmp,
262 /* REGCP_OTHER_ELEMS are pushed in any case, parentheses or no. */
263 SSPUSHINT(maxopenparen);
264 SSPUSHINT(rex->lastparen);
265 SSPUSHINT(rex->lastcloseparen);
266 SSPUSHUV(SAVEt_REGCONTEXT | elems_shifted); /* Magic cookie. */
271 /* These are needed since we do not localize EVAL nodes: */
272 #define REGCP_SET(cp) \
274 Perl_re_exec_indentf( aTHX_ \
275 "Setting an EVAL scope, savestack=%" IVdf ",\n", \
276 depth, (IV)PL_savestack_ix \
281 #define REGCP_UNWIND(cp) \
283 if (cp != PL_savestack_ix) \
284 Perl_re_exec_indentf( aTHX_ \
285 "Clearing an EVAL scope, savestack=%" \
286 IVdf "..%" IVdf "\n", \
287 depth, (IV)(cp), (IV)PL_savestack_ix \
292 /* set the start and end positions of capture ix */
293 #define CLOSE_CAPTURE(ix, s, e) \
294 rex->offs[ix].start = s; \
295 rex->offs[ix].end = e; \
296 if (ix > rex->lastparen) \
297 rex->lastparen = ix; \
298 rex->lastcloseparen = ix; \
299 DEBUG_BUFFERS_r(Perl_re_exec_indentf( aTHX_ \
300 "CLOSE: rex=0x%" UVxf " offs=0x%" UVxf ": \\%" UVuf ": set %" IVdf "..%" IVdf " max: %" UVuf "\n", \
305 (IV)rex->offs[ix].start, \
306 (IV)rex->offs[ix].end, \
310 #define UNWIND_PAREN(lp, lcp) \
311 DEBUG_BUFFERS_r(Perl_re_exec_indentf( aTHX_ \
312 "UNWIND_PAREN: rex=0x%" UVxf " offs=0x%" UVxf ": invalidate (%" UVuf "..%" UVuf "] set lcp: %" UVuf "\n", \
317 (UV)(rex->lastparen), \
320 for (n = rex->lastparen; n > lp; n--) \
321 rex->offs[n].end = -1; \
322 rex->lastparen = n; \
323 rex->lastcloseparen = lcp;
327 S_regcppop(pTHX_ regexp *rex, U32 *maxopenparen_p _pDEPTH)
331 GET_RE_DEBUG_FLAGS_DECL;
333 PERL_ARGS_ASSERT_REGCPPOP;
335 /* Pop REGCP_OTHER_ELEMS before the parentheses loop starts. */
337 assert((i & SAVE_MASK) == SAVEt_REGCONTEXT); /* Check that the magic cookie is there. */
338 i >>= SAVE_TIGHT_SHIFT; /* Parentheses elements to pop. */
339 rex->lastcloseparen = SSPOPINT;
340 rex->lastparen = SSPOPINT;
341 *maxopenparen_p = SSPOPINT;
343 i -= REGCP_OTHER_ELEMS;
344 /* Now restore the parentheses context. */
346 if (i || rex->lastparen + 1 <= rex->nparens)
347 Perl_re_exec_indentf( aTHX_
348 "rex=0x%" UVxf " offs=0x%" UVxf ": restoring capture indices to:\n",
354 paren = *maxopenparen_p;
355 for ( ; i > 0; i -= REGCP_PAREN_ELEMS) {
357 rex->offs[paren].start_tmp = SSPOPINT;
358 rex->offs[paren].start = SSPOPIV;
360 if (paren <= rex->lastparen)
361 rex->offs[paren].end = tmps;
362 DEBUG_BUFFERS_r( Perl_re_exec_indentf( aTHX_
363 " \\%" UVuf ": %" IVdf "(%" IVdf ")..%" IVdf "%s\n",
366 (IV)rex->offs[paren].start,
367 (IV)rex->offs[paren].start_tmp,
368 (IV)rex->offs[paren].end,
369 (paren > rex->lastparen ? "(skipped)" : ""));
374 /* It would seem that the similar code in regtry()
375 * already takes care of this, and in fact it is in
376 * a better location to since this code can #if 0-ed out
377 * but the code in regtry() is needed or otherwise tests
378 * requiring null fields (pat.t#187 and split.t#{13,14}
379 * (as of patchlevel 7877) will fail. Then again,
380 * this code seems to be necessary or otherwise
381 * this erroneously leaves $1 defined: "1" =~ /^(?:(\d)x)?\d$/
382 * --jhi updated by dapm */
383 for (i = rex->lastparen + 1; i <= rex->nparens; i++) {
384 if (i > *maxopenparen_p)
385 rex->offs[i].start = -1;
386 rex->offs[i].end = -1;
387 DEBUG_BUFFERS_r( Perl_re_exec_indentf( aTHX_
388 " \\%" UVuf ": %s ..-1 undeffing\n",
391 (i > *maxopenparen_p) ? "-1" : " "
397 /* restore the parens and associated vars at savestack position ix,
398 * but without popping the stack */
401 S_regcp_restore(pTHX_ regexp *rex, I32 ix, U32 *maxopenparen_p _pDEPTH)
403 I32 tmpix = PL_savestack_ix;
404 PERL_ARGS_ASSERT_REGCP_RESTORE;
406 PL_savestack_ix = ix;
407 regcppop(rex, maxopenparen_p);
408 PL_savestack_ix = tmpix;
411 #define regcpblow(cp) LEAVE_SCOPE(cp) /* Ignores regcppush()ed data. */
413 #ifndef PERL_IN_XSUB_RE
416 Perl_isFOO_lc(pTHX_ const U8 classnum, const U8 character)
418 /* Returns a boolean as to whether or not 'character' is a member of the
419 * Posix character class given by 'classnum' that should be equivalent to a
420 * value in the typedef '_char_class_number'.
422 * Ideally this could be replaced by a just an array of function pointers
423 * to the C library functions that implement the macros this calls.
424 * However, to compile, the precise function signatures are required, and
425 * these may vary from platform to to platform. To avoid having to figure
426 * out what those all are on each platform, I (khw) am using this method,
427 * which adds an extra layer of function call overhead (unless the C
428 * optimizer strips it away). But we don't particularly care about
429 * performance with locales anyway. */
431 switch ((_char_class_number) classnum) {
432 case _CC_ENUM_ALPHANUMERIC: return isALPHANUMERIC_LC(character);
433 case _CC_ENUM_ALPHA: return isALPHA_LC(character);
434 case _CC_ENUM_ASCII: return isASCII_LC(character);
435 case _CC_ENUM_BLANK: return isBLANK_LC(character);
436 case _CC_ENUM_CASED: return isLOWER_LC(character)
437 || isUPPER_LC(character);
438 case _CC_ENUM_CNTRL: return isCNTRL_LC(character);
439 case _CC_ENUM_DIGIT: return isDIGIT_LC(character);
440 case _CC_ENUM_GRAPH: return isGRAPH_LC(character);
441 case _CC_ENUM_LOWER: return isLOWER_LC(character);
442 case _CC_ENUM_PRINT: return isPRINT_LC(character);
443 case _CC_ENUM_PUNCT: return isPUNCT_LC(character);
444 case _CC_ENUM_SPACE: return isSPACE_LC(character);
445 case _CC_ENUM_UPPER: return isUPPER_LC(character);
446 case _CC_ENUM_WORDCHAR: return isWORDCHAR_LC(character);
447 case _CC_ENUM_XDIGIT: return isXDIGIT_LC(character);
448 default: /* VERTSPACE should never occur in locales */
449 Perl_croak(aTHX_ "panic: isFOO_lc() has an unexpected character class '%d'", classnum);
452 NOT_REACHED; /* NOTREACHED */
458 PERL_STATIC_INLINE I32
459 S_foldEQ_latin1_s2_folded(const char *s1, const char *s2, I32 len)
461 /* Compare non-UTF-8 using Unicode (Latin1) semantics. s2 must already be
462 * folded. Works on all folds representable without UTF-8, except for
463 * LATIN_SMALL_LETTER_SHARP_S, and does not check for this. Nor does it
464 * check that the strings each have at least 'len' characters.
466 * There is almost an identical API function where s2 need not be folded:
467 * Perl_foldEQ_latin1() */
469 const U8 *a = (const U8 *)s1;
470 const U8 *b = (const U8 *)s2;
472 PERL_ARGS_ASSERT_FOLDEQ_LATIN1_S2_FOLDED;
477 assert(! isUPPER_L1(*b));
478 if (toLOWER_L1(*a) != *b) {
487 S_isFOO_utf8_lc(pTHX_ const U8 classnum, const U8* character, const U8* e)
489 /* Returns a boolean as to whether or not the (well-formed) UTF-8-encoded
490 * 'character' is a member of the Posix character class given by 'classnum'
491 * that should be equivalent to a value in the typedef
492 * '_char_class_number'.
494 * This just calls isFOO_lc on the code point for the character if it is in
495 * the range 0-255. Outside that range, all characters use Unicode
496 * rules, ignoring any locale. So use the Unicode function if this class
497 * requires an inversion list, and use the Unicode macro otherwise. */
501 PERL_ARGS_ASSERT_ISFOO_UTF8_LC;
503 if (UTF8_IS_INVARIANT(*character)) {
504 return isFOO_lc(classnum, *character);
506 else if (UTF8_IS_DOWNGRADEABLE_START(*character)) {
507 return isFOO_lc(classnum,
508 EIGHT_BIT_UTF8_TO_NATIVE(*character, *(character + 1)));
511 _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG(character, e);
513 switch ((_char_class_number) classnum) {
514 case _CC_ENUM_SPACE: return is_XPERLSPACE_high(character);
515 case _CC_ENUM_BLANK: return is_HORIZWS_high(character);
516 case _CC_ENUM_XDIGIT: return is_XDIGIT_high(character);
517 case _CC_ENUM_VERTSPACE: return is_VERTWS_high(character);
519 return _invlist_contains_cp(PL_XPosix_ptrs[classnum],
520 utf8_to_uvchr_buf(character, e, NULL));
523 return FALSE; /* Things like CNTRL are always below 256 */
527 S_find_span_end(U8 * s, const U8 * send, const U8 span_byte)
529 /* Returns the position of the first byte in the sequence between 's' and
530 * 'send-1' inclusive that isn't 'span_byte'; returns 'send' if none found.
533 PERL_ARGS_ASSERT_FIND_SPAN_END;
537 if ((STRLEN) (send - s) >= PERL_WORDSIZE
538 + PERL_WORDSIZE * PERL_IS_SUBWORD_ADDR(s)
539 - (PTR2nat(s) & PERL_WORD_BOUNDARY_MASK))
541 PERL_UINTMAX_T span_word;
543 /* Process per-byte until reach word boundary. XXX This loop could be
544 * eliminated if we knew that this platform had fast unaligned reads */
545 while (PTR2nat(s) & PERL_WORD_BOUNDARY_MASK) {
546 if (*s != span_byte) {
552 /* Create a word filled with the bytes we are spanning */
553 span_word = PERL_COUNT_MULTIPLIER * span_byte;
555 /* Process per-word as long as we have at least a full word left */
558 /* Keep going if the whole word is composed of 'span_byte's */
559 if ((* (PERL_UINTMAX_T *) s) == span_word) {
564 /* Here, at least one byte in the word isn't 'span_byte'. */
572 /* This xor leaves 1 bits only in those non-matching bytes */
573 span_word ^= * (PERL_UINTMAX_T *) s;
575 /* Make sure the upper bit of each non-matching byte is set. This
576 * makes each such byte look like an ASCII platform variant byte */
577 span_word |= span_word << 1;
578 span_word |= span_word << 2;
579 span_word |= span_word << 4;
581 /* That reduces the problem to what this function solves */
582 return s + _variant_byte_number(span_word);
586 } while (s + PERL_WORDSIZE <= send);
589 /* Process the straggler bytes beyond the final word boundary */
591 if (*s != span_byte) {
601 S_find_next_masked(U8 * s, const U8 * send, const U8 byte, const U8 mask)
603 /* Returns the position of the first byte in the sequence between 's'
604 * and 'send-1' inclusive that when ANDed with 'mask' yields 'byte';
605 * returns 'send' if none found. It uses word-level operations instead of
606 * byte to speed up the process */
608 PERL_ARGS_ASSERT_FIND_NEXT_MASKED;
611 assert((byte & mask) == byte);
615 if ((STRLEN) (send - s) >= PERL_WORDSIZE
616 + PERL_WORDSIZE * PERL_IS_SUBWORD_ADDR(s)
617 - (PTR2nat(s) & PERL_WORD_BOUNDARY_MASK))
619 PERL_UINTMAX_T word, mask_word;
621 while (PTR2nat(s) & PERL_WORD_BOUNDARY_MASK) {
622 if (((*s) & mask) == byte) {
628 word = PERL_COUNT_MULTIPLIER * byte;
629 mask_word = PERL_COUNT_MULTIPLIER * mask;
632 PERL_UINTMAX_T masked = (* (PERL_UINTMAX_T *) s) & mask_word;
634 /* If 'masked' contains bytes with the bit pattern of 'byte' within
635 * it, xoring with 'word' will leave each of the 8 bits in such
636 * bytes be 0, and no byte containing any other bit pattern will be
640 /* This causes the most significant bit to be set to 1 for any
641 * bytes in the word that aren't completely 0 */
642 masked |= masked << 1;
643 masked |= masked << 2;
644 masked |= masked << 4;
646 /* The msbits are the same as what marks a byte as variant, so we
647 * can use this mask. If all msbits are 1, the word doesn't
649 if ((masked & PERL_VARIANTS_WORD_MASK) == PERL_VARIANTS_WORD_MASK) {
654 /* Here, the msbit of bytes in the word that aren't 'byte' are 1,
655 * and any that are, are 0. Complement and re-AND to swap that */
657 masked &= PERL_VARIANTS_WORD_MASK;
659 /* This reduces the problem to that solved by this function */
660 s += _variant_byte_number(masked);
663 } while (s + PERL_WORDSIZE <= send);
669 if (((*s) & mask) == byte) {
679 S_find_span_end_mask(U8 * s, const U8 * send, const U8 span_byte, const U8 mask)
681 /* Returns the position of the first byte in the sequence between 's' and
682 * 'send-1' inclusive that when ANDed with 'mask' isn't 'span_byte'.
683 * 'span_byte' should have been ANDed with 'mask' in the call of this
684 * function. Returns 'send' if none found. Works like find_span_end(),
685 * except for the AND */
687 PERL_ARGS_ASSERT_FIND_SPAN_END_MASK;
690 assert((span_byte & mask) == span_byte);
692 if ((STRLEN) (send - s) >= PERL_WORDSIZE
693 + PERL_WORDSIZE * PERL_IS_SUBWORD_ADDR(s)
694 - (PTR2nat(s) & PERL_WORD_BOUNDARY_MASK))
696 PERL_UINTMAX_T span_word, mask_word;
698 while (PTR2nat(s) & PERL_WORD_BOUNDARY_MASK) {
699 if (((*s) & mask) != span_byte) {
705 span_word = PERL_COUNT_MULTIPLIER * span_byte;
706 mask_word = PERL_COUNT_MULTIPLIER * mask;
709 PERL_UINTMAX_T masked = (* (PERL_UINTMAX_T *) s) & mask_word;
711 if (masked == span_word) {
723 masked |= masked << 1;
724 masked |= masked << 2;
725 masked |= masked << 4;
726 return s + _variant_byte_number(masked);
730 } while (s + PERL_WORDSIZE <= send);
734 if (((*s) & mask) != span_byte) {
744 * pregexec and friends
747 #ifndef PERL_IN_XSUB_RE
749 - pregexec - match a regexp against a string
752 Perl_pregexec(pTHX_ REGEXP * const prog, char* stringarg, char *strend,
753 char *strbeg, SSize_t minend, SV *screamer, U32 nosave)
754 /* stringarg: the point in the string at which to begin matching */
755 /* strend: pointer to null at end of string */
756 /* strbeg: real beginning of string */
757 /* minend: end of match must be >= minend bytes after stringarg. */
758 /* screamer: SV being matched: only used for utf8 flag, pos() etc; string
759 * itself is accessed via the pointers above */
760 /* nosave: For optimizations. */
762 PERL_ARGS_ASSERT_PREGEXEC;
765 regexec_flags(prog, stringarg, strend, strbeg, minend, screamer, NULL,
766 nosave ? 0 : REXEC_COPY_STR);
772 /* re_intuit_start():
774 * Based on some optimiser hints, try to find the earliest position in the
775 * string where the regex could match.
777 * rx: the regex to match against
778 * sv: the SV being matched: only used for utf8 flag; the string
779 * itself is accessed via the pointers below. Note that on
780 * something like an overloaded SV, SvPOK(sv) may be false
781 * and the string pointers may point to something unrelated to
783 * strbeg: real beginning of string
784 * strpos: the point in the string at which to begin matching
785 * strend: pointer to the byte following the last char of the string
786 * flags currently unused; set to 0
787 * data: currently unused; set to NULL
789 * The basic idea of re_intuit_start() is to use some known information
790 * about the pattern, namely:
792 * a) the longest known anchored substring (i.e. one that's at a
793 * constant offset from the beginning of the pattern; but not
794 * necessarily at a fixed offset from the beginning of the
796 * b) the longest floating substring (i.e. one that's not at a constant
797 * offset from the beginning of the pattern);
798 * c) Whether the pattern is anchored to the string; either
799 * an absolute anchor: /^../, or anchored to \n: /^.../m,
800 * or anchored to pos(): /\G/;
801 * d) A start class: a real or synthetic character class which
802 * represents which characters are legal at the start of the pattern;
804 * to either quickly reject the match, or to find the earliest position
805 * within the string at which the pattern might match, thus avoiding
806 * running the full NFA engine at those earlier locations, only to
807 * eventually fail and retry further along.
809 * Returns NULL if the pattern can't match, or returns the address within
810 * the string which is the earliest place the match could occur.
812 * The longest of the anchored and floating substrings is called 'check'
813 * and is checked first. The other is called 'other' and is checked
814 * second. The 'other' substring may not be present. For example,
816 * /(abc|xyz)ABC\d{0,3}DEFG/
820 * check substr (float) = "DEFG", offset 6..9 chars
821 * other substr (anchored) = "ABC", offset 3..3 chars
824 * Be aware that during the course of this function, sometimes 'anchored'
825 * refers to a substring being anchored relative to the start of the
826 * pattern, and sometimes to the pattern itself being anchored relative to
827 * the string. For example:
829 * /\dabc/: "abc" is anchored to the pattern;
830 * /^\dabc/: "abc" is anchored to the pattern and the string;
831 * /\d+abc/: "abc" is anchored to neither the pattern nor the string;
832 * /^\d+abc/: "abc" is anchored to neither the pattern nor the string,
833 * but the pattern is anchored to the string.
837 Perl_re_intuit_start(pTHX_
840 const char * const strbeg,
844 re_scream_pos_data *data)
846 struct regexp *const prog = ReANY(rx);
847 SSize_t start_shift = prog->check_offset_min;
848 /* Should be nonnegative! */
849 SSize_t end_shift = 0;
850 /* current lowest pos in string where the regex can start matching */
851 char *rx_origin = strpos;
853 const bool utf8_target = (sv && SvUTF8(sv)) ? 1 : 0; /* if no sv we have to assume bytes */
854 U8 other_ix = 1 - prog->substrs->check_ix;
856 char *other_last = strpos;/* latest pos 'other' substr already checked to */
857 char *check_at = NULL; /* check substr found at this pos */
858 const I32 multiline = prog->extflags & RXf_PMf_MULTILINE;
859 RXi_GET_DECL(prog,progi);
860 regmatch_info reginfo_buf; /* create some info to pass to find_byclass */
861 regmatch_info *const reginfo = ®info_buf;
862 GET_RE_DEBUG_FLAGS_DECL;
864 PERL_ARGS_ASSERT_RE_INTUIT_START;
865 PERL_UNUSED_ARG(flags);
866 PERL_UNUSED_ARG(data);
868 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
869 "Intuit: trying to determine minimum start position...\n"));
871 /* for now, assume that all substr offsets are positive. If at some point
872 * in the future someone wants to do clever things with lookbehind and
873 * -ve offsets, they'll need to fix up any code in this function
874 * which uses these offsets. See the thread beginning
875 * <20140113145929.GF27210@iabyn.com>
877 assert(prog->substrs->data[0].min_offset >= 0);
878 assert(prog->substrs->data[0].max_offset >= 0);
879 assert(prog->substrs->data[1].min_offset >= 0);
880 assert(prog->substrs->data[1].max_offset >= 0);
881 assert(prog->substrs->data[2].min_offset >= 0);
882 assert(prog->substrs->data[2].max_offset >= 0);
884 /* for now, assume that if both present, that the floating substring
885 * doesn't start before the anchored substring.
886 * If you break this assumption (e.g. doing better optimisations
887 * with lookahead/behind), then you'll need to audit the code in this
888 * function carefully first
891 ! ( (prog->anchored_utf8 || prog->anchored_substr)
892 && (prog->float_utf8 || prog->float_substr))
893 || (prog->float_min_offset >= prog->anchored_offset));
895 /* byte rather than char calculation for efficiency. It fails
896 * to quickly reject some cases that can't match, but will reject
897 * them later after doing full char arithmetic */
898 if (prog->minlen > strend - strpos) {
899 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
900 " String too short...\n"));
904 RXp_MATCH_UTF8_set(prog, utf8_target);
905 reginfo->is_utf8_target = cBOOL(utf8_target);
906 reginfo->info_aux = NULL;
907 reginfo->strbeg = strbeg;
908 reginfo->strend = strend;
909 reginfo->is_utf8_pat = cBOOL(RX_UTF8(rx));
911 /* not actually used within intuit, but zero for safety anyway */
912 reginfo->poscache_maxiter = 0;
915 if ((!prog->anchored_utf8 && prog->anchored_substr)
916 || (!prog->float_utf8 && prog->float_substr))
917 to_utf8_substr(prog);
918 check = prog->check_utf8;
920 if (!prog->check_substr && prog->check_utf8) {
921 if (! to_byte_substr(prog)) {
922 NON_UTF8_TARGET_BUT_UTF8_REQUIRED(fail);
925 check = prog->check_substr;
928 /* dump the various substring data */
929 DEBUG_OPTIMISE_MORE_r({
931 for (i=0; i<=2; i++) {
932 SV *sv = (utf8_target ? prog->substrs->data[i].utf8_substr
933 : prog->substrs->data[i].substr);
937 Perl_re_printf( aTHX_
938 " substrs[%d]: min=%" IVdf " max=%" IVdf " end shift=%" IVdf
939 " useful=%" IVdf " utf8=%d [%s]\n",
941 (IV)prog->substrs->data[i].min_offset,
942 (IV)prog->substrs->data[i].max_offset,
943 (IV)prog->substrs->data[i].end_shift,
950 if (prog->intflags & PREGf_ANCH) { /* Match at \G, beg-of-str or after \n */
952 /* ml_anch: check after \n?
954 * A note about PREGf_IMPLICIT: on an un-anchored pattern beginning
955 * with /.*.../, these flags will have been added by the
957 * /.*abc/, /.*abc/m: PREGf_IMPLICIT | PREGf_ANCH_MBOL
958 * /.*abc/s: PREGf_IMPLICIT | PREGf_ANCH_SBOL
960 ml_anch = (prog->intflags & PREGf_ANCH_MBOL)
961 && !(prog->intflags & PREGf_IMPLICIT);
963 if (!ml_anch && !(prog->intflags & PREGf_IMPLICIT)) {
964 /* we are only allowed to match at BOS or \G */
966 /* trivially reject if there's a BOS anchor and we're not at BOS.
968 * Note that we don't try to do a similar quick reject for
969 * \G, since generally the caller will have calculated strpos
970 * based on pos() and gofs, so the string is already correctly
971 * anchored by definition; and handling the exceptions would
972 * be too fiddly (e.g. REXEC_IGNOREPOS).
974 if ( strpos != strbeg
975 && (prog->intflags & PREGf_ANCH_SBOL))
977 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
978 " Not at start...\n"));
982 /* in the presence of an anchor, the anchored (relative to the
983 * start of the regex) substr must also be anchored relative
984 * to strpos. So quickly reject if substr isn't found there.
985 * This works for \G too, because the caller will already have
986 * subtracted gofs from pos, and gofs is the offset from the
987 * \G to the start of the regex. For example, in /.abc\Gdef/,
988 * where substr="abcdef", pos()=3, gofs=4, offset_min=1:
989 * caller will have set strpos=pos()-4; we look for the substr
990 * at position pos()-4+1, which lines up with the "a" */
992 if (prog->check_offset_min == prog->check_offset_max) {
993 /* Substring at constant offset from beg-of-str... */
994 SSize_t slen = SvCUR(check);
995 char *s = HOP3c(strpos, prog->check_offset_min, strend);
997 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
998 " Looking for check substr at fixed offset %" IVdf "...\n",
999 (IV)prog->check_offset_min));
1001 if (SvTAIL(check)) {
1002 /* In this case, the regex is anchored at the end too.
1003 * Unless it's a multiline match, the lengths must match
1004 * exactly, give or take a \n. NB: slen >= 1 since
1005 * the last char of check is \n */
1007 && ( strend - s > slen
1008 || strend - s < slen - 1
1009 || (strend - s == slen && strend[-1] != '\n')))
1011 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1012 " String too long...\n"));
1015 /* Now should match s[0..slen-2] */
1018 if (slen && (strend - s < slen
1019 || *SvPVX_const(check) != *s
1020 || (slen > 1 && (memNE(SvPVX_const(check), s, slen)))))
1022 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1023 " String not equal...\n"));
1028 goto success_at_start;
1033 end_shift = prog->check_end_shift;
1035 #ifdef DEBUGGING /* 7/99: reports of failure (with the older version) */
1037 Perl_croak(aTHX_ "panic: end_shift: %" IVdf " pattern:\n%s\n ",
1038 (IV)end_shift, RX_PRECOMP(rx));
1043 /* This is the (re)entry point of the main loop in this function.
1044 * The goal of this loop is to:
1045 * 1) find the "check" substring in the region rx_origin..strend
1046 * (adjusted by start_shift / end_shift). If not found, reject
1048 * 2) If it exists, look for the "other" substr too if defined; for
1049 * example, if the check substr maps to the anchored substr, then
1050 * check the floating substr, and vice-versa. If not found, go
1051 * back to (1) with rx_origin suitably incremented.
1052 * 3) If we find an rx_origin position that doesn't contradict
1053 * either of the substrings, then check the possible additional
1054 * constraints on rx_origin of /^.../m or a known start class.
1055 * If these fail, then depending on which constraints fail, jump
1056 * back to here, or to various other re-entry points further along
1057 * that skip some of the first steps.
1058 * 4) If we pass all those tests, update the BmUSEFUL() count on the
1059 * substring. If the start position was determined to be at the
1060 * beginning of the string - so, not rejected, but not optimised,
1061 * since we have to run regmatch from position 0 - decrement the
1062 * BmUSEFUL() count. Otherwise increment it.
1066 /* first, look for the 'check' substring */
1072 DEBUG_OPTIMISE_MORE_r({
1073 Perl_re_printf( aTHX_
1074 " At restart: rx_origin=%" IVdf " Check offset min: %" IVdf
1075 " Start shift: %" IVdf " End shift %" IVdf
1076 " Real end Shift: %" IVdf "\n",
1077 (IV)(rx_origin - strbeg),
1078 (IV)prog->check_offset_min,
1081 (IV)prog->check_end_shift);
1084 end_point = HOPBACK3(strend, end_shift, rx_origin);
1087 start_point = HOPMAYBE3(rx_origin, start_shift, end_point);
1092 /* If the regex is absolutely anchored to either the start of the
1093 * string (SBOL) or to pos() (ANCH_GPOS), then
1094 * check_offset_max represents an upper bound on the string where
1095 * the substr could start. For the ANCH_GPOS case, we assume that
1096 * the caller of intuit will have already set strpos to
1097 * pos()-gofs, so in this case strpos + offset_max will still be
1098 * an upper bound on the substr.
1101 && prog->intflags & PREGf_ANCH
1102 && prog->check_offset_max != SSize_t_MAX)
1104 SSize_t check_len = SvCUR(check) - !!SvTAIL(check);
1105 const char * const anchor =
1106 (prog->intflags & PREGf_ANCH_GPOS ? strpos : strbeg);
1107 SSize_t targ_len = (char*)end_point - anchor;
1109 if (check_len > targ_len) {
1110 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1111 "Target string too short to match required substring...\n"));
1115 /* do a bytes rather than chars comparison. It's conservative;
1116 * so it skips doing the HOP if the result can't possibly end
1117 * up earlier than the old value of end_point.
1119 assert(anchor + check_len <= (char *)end_point);
1120 if (prog->check_offset_max + check_len < targ_len) {
1121 end_point = HOP3lim((U8*)anchor,
1122 prog->check_offset_max,
1123 end_point - check_len
1126 if (end_point < start_point)
1131 check_at = fbm_instr( start_point, end_point,
1132 check, multiline ? FBMrf_MULTILINE : 0);
1134 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1135 " doing 'check' fbm scan, [%" IVdf "..%" IVdf "] gave %" IVdf "\n",
1136 (IV)((char*)start_point - strbeg),
1137 (IV)((char*)end_point - strbeg),
1138 (IV)(check_at ? check_at - strbeg : -1)
1141 /* Update the count-of-usability, remove useless subpatterns,
1145 RE_PV_QUOTED_DECL(quoted, utf8_target, PERL_DEBUG_PAD_ZERO(0),
1146 SvPVX_const(check), RE_SV_DUMPLEN(check), 30);
1147 Perl_re_printf( aTHX_ " %s %s substr %s%s%s",
1148 (check_at ? "Found" : "Did not find"),
1149 (check == (utf8_target ? prog->anchored_utf8 : prog->anchored_substr)
1150 ? "anchored" : "floating"),
1153 (check_at ? " at offset " : "...\n") );
1158 /* set rx_origin to the minimum position where the regex could start
1159 * matching, given the constraint of the just-matched check substring.
1160 * But don't set it lower than previously.
1163 if (check_at - rx_origin > prog->check_offset_max)
1164 rx_origin = HOP3c(check_at, -prog->check_offset_max, rx_origin);
1165 /* Finish the diagnostic message */
1166 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1167 "%ld (rx_origin now %" IVdf ")...\n",
1168 (long)(check_at - strbeg),
1169 (IV)(rx_origin - strbeg)
1174 /* now look for the 'other' substring if defined */
1176 if (prog->substrs->data[other_ix].utf8_substr
1177 || prog->substrs->data[other_ix].substr)
1179 /* Take into account the "other" substring. */
1183 struct reg_substr_datum *other;
1186 other = &prog->substrs->data[other_ix];
1187 if (!utf8_target && !other->substr) {
1188 if (!to_byte_substr(prog)) {
1189 NON_UTF8_TARGET_BUT_UTF8_REQUIRED(fail);
1193 /* if "other" is anchored:
1194 * we've previously found a floating substr starting at check_at.
1195 * This means that the regex origin must lie somewhere
1196 * between min (rx_origin): HOP3(check_at, -check_offset_max)
1197 * and max: HOP3(check_at, -check_offset_min)
1198 * (except that min will be >= strpos)
1199 * So the fixed substr must lie somewhere between
1200 * HOP3(min, anchored_offset)
1201 * HOP3(max, anchored_offset) + SvCUR(substr)
1204 /* if "other" is floating
1205 * Calculate last1, the absolute latest point where the
1206 * floating substr could start in the string, ignoring any
1207 * constraints from the earlier fixed match. It is calculated
1210 * strend - prog->minlen (in chars) is the absolute latest
1211 * position within the string where the origin of the regex
1212 * could appear. The latest start point for the floating
1213 * substr is float_min_offset(*) on from the start of the
1214 * regex. last1 simply combines thee two offsets.
1216 * (*) You might think the latest start point should be
1217 * float_max_offset from the regex origin, and technically
1218 * you'd be correct. However, consider
1220 * Here, float min, max are 3,5 and minlen is 7.
1221 * This can match either
1225 * In the first case, the regex matches minlen chars; in the
1226 * second, minlen+1, in the third, minlen+2.
1227 * In the first case, the floating offset is 3 (which equals
1228 * float_min), in the second, 4, and in the third, 5 (which
1229 * equals float_max). In all cases, the floating string bcd
1230 * can never start more than 4 chars from the end of the
1231 * string, which equals minlen - float_min. As the substring
1232 * starts to match more than float_min from the start of the
1233 * regex, it makes the regex match more than minlen chars,
1234 * and the two cancel each other out. So we can always use
1235 * float_min - minlen, rather than float_max - minlen for the
1236 * latest position in the string.
1238 * Note that -minlen + float_min_offset is equivalent (AFAIKT)
1239 * to CHR_SVLEN(must) - !!SvTAIL(must) + prog->float_end_shift
1242 assert(prog->minlen >= other->min_offset);
1243 last1 = HOP3c(strend,
1244 other->min_offset - prog->minlen, strbeg);
1246 if (other_ix) {/* i.e. if (other-is-float) */
1247 /* last is the latest point where the floating substr could
1248 * start, *given* any constraints from the earlier fixed
1249 * match. This constraint is that the floating string starts
1250 * <= float_max_offset chars from the regex origin (rx_origin).
1251 * If this value is less than last1, use it instead.
1253 assert(rx_origin <= last1);
1255 /* this condition handles the offset==infinity case, and
1256 * is a short-cut otherwise. Although it's comparing a
1257 * byte offset to a char length, it does so in a safe way,
1258 * since 1 char always occupies 1 or more bytes,
1259 * so if a string range is (last1 - rx_origin) bytes,
1260 * it will be less than or equal to (last1 - rx_origin)
1261 * chars; meaning it errs towards doing the accurate HOP3
1262 * rather than just using last1 as a short-cut */
1263 (last1 - rx_origin) < other->max_offset
1265 : (char*)HOP3lim(rx_origin, other->max_offset, last1);
1268 assert(strpos + start_shift <= check_at);
1269 last = HOP4c(check_at, other->min_offset - start_shift,
1273 s = HOP3c(rx_origin, other->min_offset, strend);
1274 if (s < other_last) /* These positions already checked */
1277 must = utf8_target ? other->utf8_substr : other->substr;
1278 assert(SvPOK(must));
1281 char *to = last + SvCUR(must) - (SvTAIL(must)!=0);
1287 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1288 " skipping 'other' fbm scan: %" IVdf " > %" IVdf "\n",
1289 (IV)(from - strbeg),
1295 (unsigned char*)from,
1298 multiline ? FBMrf_MULTILINE : 0
1300 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1301 " doing 'other' fbm scan, [%" IVdf "..%" IVdf "] gave %" IVdf "\n",
1302 (IV)(from - strbeg),
1304 (IV)(s ? s - strbeg : -1)
1310 RE_PV_QUOTED_DECL(quoted, utf8_target, PERL_DEBUG_PAD_ZERO(0),
1311 SvPVX_const(must), RE_SV_DUMPLEN(must), 30);
1312 Perl_re_printf( aTHX_ " %s %s substr %s%s",
1313 s ? "Found" : "Contradicts",
1314 other_ix ? "floating" : "anchored",
1315 quoted, RE_SV_TAIL(must));
1320 /* last1 is latest possible substr location. If we didn't
1321 * find it before there, we never will */
1322 if (last >= last1) {
1323 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1324 "; giving up...\n"));
1328 /* try to find the check substr again at a later
1329 * position. Maybe next time we'll find the "other" substr
1331 other_last = HOP3c(last, 1, strend) /* highest failure */;
1333 other_ix /* i.e. if other-is-float */
1334 ? HOP3c(rx_origin, 1, strend)
1335 : HOP4c(last, 1 - other->min_offset, strbeg, strend);
1336 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1337 "; about to retry %s at offset %ld (rx_origin now %" IVdf ")...\n",
1338 (other_ix ? "floating" : "anchored"),
1339 (long)(HOP3c(check_at, 1, strend) - strbeg),
1340 (IV)(rx_origin - strbeg)
1345 if (other_ix) { /* if (other-is-float) */
1346 /* other_last is set to s, not s+1, since its possible for
1347 * a floating substr to fail first time, then succeed
1348 * second time at the same floating position; e.g.:
1349 * "-AB--AABZ" =~ /\wAB\d*Z/
1350 * The first time round, anchored and float match at
1351 * "-(AB)--AAB(Z)" then fail on the initial \w character
1352 * class. Second time round, they match at "-AB--A(AB)(Z)".
1357 rx_origin = HOP3c(s, -other->min_offset, strbeg);
1358 other_last = HOP3c(s, 1, strend);
1360 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1361 " at offset %ld (rx_origin now %" IVdf ")...\n",
1363 (IV)(rx_origin - strbeg)
1369 DEBUG_OPTIMISE_MORE_r(
1370 Perl_re_printf( aTHX_
1371 " Check-only match: offset min:%" IVdf " max:%" IVdf
1372 " check_at:%" IVdf " rx_origin:%" IVdf " rx_origin-check_at:%" IVdf
1373 " strend:%" IVdf "\n",
1374 (IV)prog->check_offset_min,
1375 (IV)prog->check_offset_max,
1376 (IV)(check_at-strbeg),
1377 (IV)(rx_origin-strbeg),
1378 (IV)(rx_origin-check_at),
1384 postprocess_substr_matches:
1386 /* handle the extra constraint of /^.../m if present */
1388 if (ml_anch && rx_origin != strbeg && rx_origin[-1] != '\n') {
1391 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1392 " looking for /^/m anchor"));
1394 /* we have failed the constraint of a \n before rx_origin.
1395 * Find the next \n, if any, even if it's beyond the current
1396 * anchored and/or floating substrings. Whether we should be
1397 * scanning ahead for the next \n or the next substr is debatable.
1398 * On the one hand you'd expect rare substrings to appear less
1399 * often than \n's. On the other hand, searching for \n means
1400 * we're effectively flipping between check_substr and "\n" on each
1401 * iteration as the current "rarest" string candidate, which
1402 * means for example that we'll quickly reject the whole string if
1403 * hasn't got a \n, rather than trying every substr position
1407 s = HOP3c(strend, - prog->minlen, strpos);
1408 if (s <= rx_origin ||
1409 ! ( rx_origin = (char *)memchr(rx_origin, '\n', s - rx_origin)))
1411 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1412 " Did not find /%s^%s/m...\n",
1413 PL_colors[0], PL_colors[1]));
1417 /* earliest possible origin is 1 char after the \n.
1418 * (since *rx_origin == '\n', it's safe to ++ here rather than
1419 * HOP(rx_origin, 1)) */
1422 if (prog->substrs->check_ix == 0 /* check is anchored */
1423 || rx_origin >= HOP3c(check_at, - prog->check_offset_min, strpos))
1425 /* Position contradicts check-string; either because
1426 * check was anchored (and thus has no wiggle room),
1427 * or check was float and rx_origin is above the float range */
1428 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1429 " Found /%s^%s/m, about to restart lookup for check-string with rx_origin %ld...\n",
1430 PL_colors[0], PL_colors[1], (long)(rx_origin - strbeg)));
1434 /* if we get here, the check substr must have been float,
1435 * is in range, and we may or may not have had an anchored
1436 * "other" substr which still contradicts */
1437 assert(prog->substrs->check_ix); /* check is float */
1439 if (utf8_target ? prog->anchored_utf8 : prog->anchored_substr) {
1440 /* whoops, the anchored "other" substr exists, so we still
1441 * contradict. On the other hand, the float "check" substr
1442 * didn't contradict, so just retry the anchored "other"
1444 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1445 " Found /%s^%s/m, rescanning for anchored from offset %" IVdf " (rx_origin now %" IVdf ")...\n",
1446 PL_colors[0], PL_colors[1],
1447 (IV)(rx_origin - strbeg + prog->anchored_offset),
1448 (IV)(rx_origin - strbeg)
1450 goto do_other_substr;
1453 /* success: we don't contradict the found floating substring
1454 * (and there's no anchored substr). */
1455 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1456 " Found /%s^%s/m with rx_origin %ld...\n",
1457 PL_colors[0], PL_colors[1], (long)(rx_origin - strbeg)));
1460 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1461 " (multiline anchor test skipped)\n"));
1467 /* if we have a starting character class, then test that extra constraint.
1468 * (trie stclasses are too expensive to use here, we are better off to
1469 * leave it to regmatch itself) */
1471 if (progi->regstclass && PL_regkind[OP(progi->regstclass)]!=TRIE) {
1472 const U8* const str = (U8*)STRING(progi->regstclass);
1474 /* XXX this value could be pre-computed */
1475 const int cl_l = (PL_regkind[OP(progi->regstclass)] == EXACT
1476 ? (reginfo->is_utf8_pat
1477 ? utf8_distance(str + STR_LEN(progi->regstclass), str)
1478 : STR_LEN(progi->regstclass))
1482 /* latest pos that a matching float substr constrains rx start to */
1483 char *rx_max_float = NULL;
1485 /* if the current rx_origin is anchored, either by satisfying an
1486 * anchored substring constraint, or a /^.../m constraint, then we
1487 * can reject the current origin if the start class isn't found
1488 * at the current position. If we have a float-only match, then
1489 * rx_origin is constrained to a range; so look for the start class
1490 * in that range. if neither, then look for the start class in the
1491 * whole rest of the string */
1493 /* XXX DAPM it's not clear what the minlen test is for, and why
1494 * it's not used in the floating case. Nothing in the test suite
1495 * causes minlen == 0 here. See <20140313134639.GS12844@iabyn.com>.
1496 * Here are some old comments, which may or may not be correct:
1498 * minlen == 0 is possible if regstclass is \b or \B,
1499 * and the fixed substr is ''$.
1500 * Since minlen is already taken into account, rx_origin+1 is
1501 * before strend; accidentally, minlen >= 1 guaranties no false
1502 * positives at rx_origin + 1 even for \b or \B. But (minlen? 1 :
1503 * 0) below assumes that regstclass does not come from lookahead...
1504 * If regstclass takes bytelength more than 1: If charlength==1, OK.
1505 * This leaves EXACTF-ish only, which are dealt with in
1509 if (prog->anchored_substr || prog->anchored_utf8 || ml_anch)
1510 endpos = HOP3clim(rx_origin, (prog->minlen ? cl_l : 0), strend);
1511 else if (prog->float_substr || prog->float_utf8) {
1512 rx_max_float = HOP3c(check_at, -start_shift, strbeg);
1513 endpos = HOP3clim(rx_max_float, cl_l, strend);
1518 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1519 " looking for class: start_shift: %" IVdf " check_at: %" IVdf
1520 " rx_origin: %" IVdf " endpos: %" IVdf "\n",
1521 (IV)start_shift, (IV)(check_at - strbeg),
1522 (IV)(rx_origin - strbeg), (IV)(endpos - strbeg)));
1524 s = find_byclass(prog, progi->regstclass, rx_origin, endpos,
1527 if (endpos == strend) {
1528 DEBUG_EXECUTE_r( Perl_re_printf( aTHX_
1529 " Could not match STCLASS...\n") );
1532 DEBUG_EXECUTE_r( Perl_re_printf( aTHX_
1533 " This position contradicts STCLASS...\n") );
1534 if ((prog->intflags & PREGf_ANCH) && !ml_anch
1535 && !(prog->intflags & PREGf_IMPLICIT))
1538 /* Contradict one of substrings */
1539 if (prog->anchored_substr || prog->anchored_utf8) {
1540 if (prog->substrs->check_ix == 1) { /* check is float */
1541 /* Have both, check_string is floating */
1542 assert(rx_origin + start_shift <= check_at);
1543 if (rx_origin + start_shift != check_at) {
1544 /* not at latest position float substr could match:
1545 * Recheck anchored substring, but not floating.
1546 * The condition above is in bytes rather than
1547 * chars for efficiency. It's conservative, in
1548 * that it errs on the side of doing 'goto
1549 * do_other_substr'. In this case, at worst,
1550 * an extra anchored search may get done, but in
1551 * practice the extra fbm_instr() is likely to
1552 * get skipped anyway. */
1553 DEBUG_EXECUTE_r( Perl_re_printf( aTHX_
1554 " about to retry anchored at offset %ld (rx_origin now %" IVdf ")...\n",
1555 (long)(other_last - strbeg),
1556 (IV)(rx_origin - strbeg)
1558 goto do_other_substr;
1566 /* In the presence of ml_anch, we might be able to
1567 * find another \n without breaking the current float
1570 /* strictly speaking this should be HOP3c(..., 1, ...),
1571 * but since we goto a block of code that's going to
1572 * search for the next \n if any, its safe here */
1574 DEBUG_EXECUTE_r( Perl_re_printf( aTHX_
1575 " about to look for /%s^%s/m starting at rx_origin %ld...\n",
1576 PL_colors[0], PL_colors[1],
1577 (long)(rx_origin - strbeg)) );
1578 goto postprocess_substr_matches;
1581 /* strictly speaking this can never be true; but might
1582 * be if we ever allow intuit without substrings */
1583 if (!(utf8_target ? prog->float_utf8 : prog->float_substr))
1586 rx_origin = rx_max_float;
1589 /* at this point, any matching substrings have been
1590 * contradicted. Start again... */
1592 rx_origin = HOP3c(rx_origin, 1, strend);
1594 /* uses bytes rather than char calculations for efficiency.
1595 * It's conservative: it errs on the side of doing 'goto restart',
1596 * where there is code that does a proper char-based test */
1597 if (rx_origin + start_shift + end_shift > strend) {
1598 DEBUG_EXECUTE_r( Perl_re_printf( aTHX_
1599 " Could not match STCLASS...\n") );
1602 DEBUG_EXECUTE_r( Perl_re_printf( aTHX_
1603 " about to look for %s substr starting at offset %ld (rx_origin now %" IVdf ")...\n",
1604 (prog->substrs->check_ix ? "floating" : "anchored"),
1605 (long)(rx_origin + start_shift - strbeg),
1606 (IV)(rx_origin - strbeg)
1613 if (rx_origin != s) {
1614 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1615 " By STCLASS: moving %ld --> %ld\n",
1616 (long)(rx_origin - strbeg), (long)(s - strbeg))
1620 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1621 " Does not contradict STCLASS...\n");
1626 /* Decide whether using the substrings helped */
1628 if (rx_origin != strpos) {
1629 /* Fixed substring is found far enough so that the match
1630 cannot start at strpos. */
1632 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_ " try at offset...\n"));
1633 ++BmUSEFUL(utf8_target ? prog->check_utf8 : prog->check_substr); /* hooray/5 */
1636 /* The found rx_origin position does not prohibit matching at
1637 * strpos, so calling intuit didn't gain us anything. Decrement
1638 * the BmUSEFUL() count on the check substring, and if we reach
1640 if (!(prog->intflags & PREGf_NAUGHTY)
1642 prog->check_utf8 /* Could be deleted already */
1643 && --BmUSEFUL(prog->check_utf8) < 0
1644 && (prog->check_utf8 == prog->float_utf8)
1646 prog->check_substr /* Could be deleted already */
1647 && --BmUSEFUL(prog->check_substr) < 0
1648 && (prog->check_substr == prog->float_substr)
1651 /* If flags & SOMETHING - do not do it many times on the same match */
1652 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_ " ... Disabling check substring...\n"));
1653 /* XXX Does the destruction order has to change with utf8_target? */
1654 SvREFCNT_dec(utf8_target ? prog->check_utf8 : prog->check_substr);
1655 SvREFCNT_dec(utf8_target ? prog->check_substr : prog->check_utf8);
1656 prog->check_substr = prog->check_utf8 = NULL; /* disable */
1657 prog->float_substr = prog->float_utf8 = NULL; /* clear */
1658 check = NULL; /* abort */
1659 /* XXXX This is a remnant of the old implementation. It
1660 looks wasteful, since now INTUIT can use many
1661 other heuristics. */
1662 prog->extflags &= ~RXf_USE_INTUIT;
1666 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
1667 "Intuit: %sSuccessfully guessed:%s match at offset %ld\n",
1668 PL_colors[4], PL_colors[5], (long)(rx_origin - strbeg)) );
1672 fail_finish: /* Substring not found */
1673 if (prog->check_substr || prog->check_utf8) /* could be removed already */
1674 BmUSEFUL(utf8_target ? prog->check_utf8 : prog->check_substr) += 5; /* hooray */
1676 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_ "%sMatch rejected by optimizer%s\n",
1677 PL_colors[4], PL_colors[5]));
1682 #define DECL_TRIE_TYPE(scan) \
1683 const enum { trie_plain, trie_utf8, trie_utf8_fold, trie_latin_utf8_fold, \
1684 trie_utf8_exactfa_fold, trie_latin_utf8_exactfa_fold, \
1685 trie_utf8l, trie_flu8, trie_flu8_latin } \
1686 trie_type = ((scan->flags == EXACT) \
1687 ? (utf8_target ? trie_utf8 : trie_plain) \
1688 : (scan->flags == EXACTL) \
1689 ? (utf8_target ? trie_utf8l : trie_plain) \
1690 : (scan->flags == EXACTFAA) \
1692 ? trie_utf8_exactfa_fold \
1693 : trie_latin_utf8_exactfa_fold) \
1694 : (scan->flags == EXACTFLU8 \
1697 : trie_flu8_latin) \
1700 : trie_latin_utf8_fold)))
1702 /* 'uscan' is set to foldbuf, and incremented, so below the end of uscan is
1703 * 'foldbuf+sizeof(foldbuf)' */
1704 #define REXEC_TRIE_READ_CHAR(trie_type, trie, widecharmap, uc, uc_end, uscan, len, uvc, charid, foldlen, foldbuf, uniflags) \
1707 U8 flags = FOLD_FLAGS_FULL; \
1708 switch (trie_type) { \
1710 _CHECK_AND_WARN_PROBLEMATIC_LOCALE; \
1711 if (UTF8_IS_ABOVE_LATIN1(*uc)) { \
1712 _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG(uc, uc_end); \
1714 goto do_trie_utf8_fold; \
1715 case trie_utf8_exactfa_fold: \
1716 flags |= FOLD_FLAGS_NOMIX_ASCII; \
1718 case trie_utf8_fold: \
1719 do_trie_utf8_fold: \
1720 if ( foldlen>0 ) { \
1721 uvc = utf8n_to_uvchr( (const U8*) uscan, foldlen, &len, uniflags ); \
1726 uvc = _toFOLD_utf8_flags( (const U8*) uc, uc_end, foldbuf, &foldlen, \
1728 len = UTF8_SAFE_SKIP(uc, uc_end); \
1729 skiplen = UVCHR_SKIP( uvc ); \
1730 foldlen -= skiplen; \
1731 uscan = foldbuf + skiplen; \
1734 case trie_flu8_latin: \
1735 _CHECK_AND_WARN_PROBLEMATIC_LOCALE; \
1736 goto do_trie_latin_utf8_fold; \
1737 case trie_latin_utf8_exactfa_fold: \
1738 flags |= FOLD_FLAGS_NOMIX_ASCII; \
1740 case trie_latin_utf8_fold: \
1741 do_trie_latin_utf8_fold: \
1742 if ( foldlen>0 ) { \
1743 uvc = utf8n_to_uvchr( (const U8*) uscan, foldlen, &len, uniflags ); \
1749 uvc = _to_fold_latin1( (U8) *uc, foldbuf, &foldlen, flags); \
1750 skiplen = UVCHR_SKIP( uvc ); \
1751 foldlen -= skiplen; \
1752 uscan = foldbuf + skiplen; \
1756 _CHECK_AND_WARN_PROBLEMATIC_LOCALE; \
1757 if (utf8_target && UTF8_IS_ABOVE_LATIN1(*uc)) { \
1758 _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG(uc, uc_end); \
1762 uvc = utf8n_to_uvchr( (const U8*) uc, uc_end - uc, &len, uniflags ); \
1769 charid = trie->charmap[ uvc ]; \
1773 if (widecharmap) { \
1774 SV** const svpp = hv_fetch(widecharmap, \
1775 (char*)&uvc, sizeof(UV), 0); \
1777 charid = (U16)SvIV(*svpp); \
1782 #define DUMP_EXEC_POS(li,s,doutf8,depth) \
1783 dump_exec_pos(li,s,(reginfo->strend),(reginfo->strbeg), \
1784 startpos, doutf8, depth)
1786 #define REXEC_FBC_SCAN(UTF8, CODE) \
1788 while (s < strend) { \
1790 s += ((UTF8) ? UTF8SKIP(s) : 1); \
1794 #define REXEC_FBC_CLASS_SCAN(UTF8, COND) \
1796 while (s < strend) { \
1797 REXEC_FBC_CLASS_SCAN_GUTS(UTF8, COND) \
1801 #define REXEC_FBC_CLASS_SCAN_GUTS(UTF8, COND) \
1804 s += ((UTF8) ? UTF8SKIP(s) : 1); \
1805 previous_occurrence_end = s; \
1808 s += ((UTF8) ? UTF8SKIP(s) : 1); \
1811 #define REXEC_FBC_CSCAN(CONDUTF8,COND) \
1812 if (utf8_target) { \
1813 REXEC_FBC_CLASS_SCAN(1, CONDUTF8); \
1816 REXEC_FBC_CLASS_SCAN(0, COND); \
1819 /* We keep track of where the next character should start after an occurrence
1820 * of the one we're looking for. Knowing that, we can see right away if the
1821 * next occurrence is adjacent to the previous. When 'doevery' is FALSE, we
1822 * don't accept the 2nd and succeeding adjacent occurrences */
1823 #define FBC_CHECK_AND_TRY \
1825 || s != previous_occurrence_end) \
1826 && (reginfo->intuit || regtry(reginfo, &s))) \
1832 /* This differs from the above macros in that it calls a function which returns
1833 * the next occurrence of the thing being looked for in 's'; and 'strend' if
1834 * there is no such occurrence. */
1835 #define REXEC_FBC_FIND_NEXT_SCAN(UTF8, f) \
1836 while (s < strend) { \
1838 if (s >= strend) { \
1843 s += (UTF8) ? UTF8SKIP(s) : 1; \
1844 previous_occurrence_end = s; \
1847 /* This differs from the above macros in that it is passed a single byte that
1848 * is known to begin the next occurrence of the thing being looked for in 's'.
1849 * It does a memchr to find the next occurrence of 'byte', before trying 'COND'
1850 * at that position. */
1851 #define REXEC_FBC_FIND_NEXT_UTF8_BYTE_SCAN(byte, COND) \
1852 while (s < strend) { \
1853 s = (char *) memchr(s, byte, strend -s); \
1855 s = (char *) strend; \
1862 previous_occurrence_end = s; \
1869 /* The three macros below are slightly different versions of the same logic.
1871 * The first is for /a and /aa when the target string is UTF-8. This can only
1872 * match ascii, but it must advance based on UTF-8. The other two handle the
1873 * non-UTF-8 and the more generic UTF-8 cases. In all three, we are looking
1874 * for the boundary (or non-boundary) between a word and non-word character.
1875 * The utf8 and non-utf8 cases have the same logic, but the details must be
1876 * different. Find the "wordness" of the character just prior to this one, and
1877 * compare it with the wordness of this one. If they differ, we have a
1878 * boundary. At the beginning of the string, pretend that the previous
1879 * character was a new-line.
1881 * All these macros uncleanly have side-effects with each other and outside
1882 * variables. So far it's been too much trouble to clean-up
1884 * TEST_NON_UTF8 is the macro or function to call to test if its byte input is
1885 * a word character or not.
1886 * IF_SUCCESS is code to do if it finds that we are at a boundary between
1888 * IF_FAIL is code to do if we aren't at a boundary between word/non-word
1890 * Exactly one of the two IF_FOO parameters is a no-op, depending on whether we
1891 * are looking for a boundary or for a non-boundary. If we are looking for a
1892 * boundary, we want IF_FAIL to be the no-op, and for IF_SUCCESS to go out and
1893 * see if this tentative match actually works, and if so, to quit the loop
1894 * here. And vice-versa if we are looking for a non-boundary.
1896 * 'tmp' below in the next three macros in the REXEC_FBC_SCAN and
1897 * REXEC_FBC_SCAN loops is a loop invariant, a bool giving the return of
1898 * TEST_NON_UTF8(s-1). To see this, note that that's what it is defined to be
1899 * at entry to the loop, and to get to the IF_FAIL branch, tmp must equal
1900 * TEST_NON_UTF8(s), and in the opposite branch, IF_SUCCESS, tmp is that
1901 * complement. But in that branch we complement tmp, meaning that at the
1902 * bottom of the loop tmp is always going to be equal to TEST_NON_UTF8(s),
1903 * which means at the top of the loop in the next iteration, it is
1904 * TEST_NON_UTF8(s-1) */
1905 #define FBC_UTF8_A(TEST_NON_UTF8, IF_SUCCESS, IF_FAIL) \
1906 tmp = (s != reginfo->strbeg) ? UCHARAT(s - 1) : '\n'; \
1907 tmp = TEST_NON_UTF8(tmp); \
1908 REXEC_FBC_SCAN(1, /* 1=>is-utf8; advances s while s < strend */ \
1909 if (tmp == ! TEST_NON_UTF8((U8) *s)) { \
1911 IF_SUCCESS; /* Is a boundary if values for s-1 and s differ */ \
1918 /* Like FBC_UTF8_A, but TEST_UV is a macro which takes a UV as its input, and
1919 * TEST_UTF8 is a macro that for the same input code points returns identically
1920 * to TEST_UV, but takes a pointer to a UTF-8 encoded string instead */
1921 #define FBC_UTF8(TEST_UV, TEST_UTF8, IF_SUCCESS, IF_FAIL) \
1922 if (s == reginfo->strbeg) { \
1925 else { /* Back-up to the start of the previous character */ \
1926 U8 * const r = reghop3((U8*)s, -1, (U8*)reginfo->strbeg); \
1927 tmp = utf8n_to_uvchr(r, (U8*) reginfo->strend - r, \
1928 0, UTF8_ALLOW_DEFAULT); \
1930 tmp = TEST_UV(tmp); \
1931 REXEC_FBC_SCAN(1, /* 1=>is-utf8; advances s while s < strend */ \
1932 if (tmp == ! (TEST_UTF8((U8 *) s, (U8 *) reginfo->strend))) { \
1941 /* Like the above two macros. UTF8_CODE is the complete code for handling
1942 * UTF-8. Common to the BOUND and NBOUND cases, set-up by the FBC_BOUND, etc
1944 #define FBC_BOUND_COMMON(UTF8_CODE, TEST_NON_UTF8, IF_SUCCESS, IF_FAIL) \
1945 if (utf8_target) { \
1948 else { /* Not utf8 */ \
1949 tmp = (s != reginfo->strbeg) ? UCHARAT(s - 1) : '\n'; \
1950 tmp = TEST_NON_UTF8(tmp); \
1951 REXEC_FBC_SCAN(0, /* 0=>not-utf8; advances s while s < strend */ \
1952 if (tmp == ! TEST_NON_UTF8((U8) *s)) { \
1961 /* Here, things have been set up by the previous code so that tmp is the \
1962 * return of TEST_NON_UTF(s-1) or TEST_UTF8(s-1) (depending on the \
1963 * utf8ness of the target). We also have to check if this matches against \
1964 * the EOS, which we treat as a \n (which is the same value in both UTF-8 \
1965 * or non-UTF8, so can use the non-utf8 test condition even for a UTF-8 \
1967 if (tmp == ! TEST_NON_UTF8('\n')) { \
1974 /* This is the macro to use when we want to see if something that looks like it
1975 * could match, actually does, and if so exits the loop. It needs to be used
1976 * only for bounds checking macros, as it allows for matching beyond the end of
1977 * string (which should be zero length without having to look at the string
1979 #define REXEC_FBC_TRYIT \
1980 if ((reginfo->intuit || (s <= reginfo->strend && regtry(reginfo, &s)))) \
1983 /* The only difference between the BOUND and NBOUND cases is that
1984 * REXEC_FBC_TRYIT is called when matched in BOUND, and when non-matched in
1985 * NBOUND. This is accomplished by passing it as either the if or else clause,
1986 * with the other one being empty (PLACEHOLDER is defined as empty).
1988 * The TEST_FOO parameters are for operating on different forms of input, but
1989 * all should be ones that return identically for the same underlying code
1991 #define FBC_BOUND(TEST_NON_UTF8, TEST_UV, TEST_UTF8) \
1993 FBC_UTF8(TEST_UV, TEST_UTF8, REXEC_FBC_TRYIT, PLACEHOLDER), \
1994 TEST_NON_UTF8, REXEC_FBC_TRYIT, PLACEHOLDER)
1996 #define FBC_BOUND_A(TEST_NON_UTF8) \
1998 FBC_UTF8_A(TEST_NON_UTF8, REXEC_FBC_TRYIT, PLACEHOLDER), \
1999 TEST_NON_UTF8, REXEC_FBC_TRYIT, PLACEHOLDER)
2001 #define FBC_NBOUND(TEST_NON_UTF8, TEST_UV, TEST_UTF8) \
2003 FBC_UTF8(TEST_UV, TEST_UTF8, PLACEHOLDER, REXEC_FBC_TRYIT), \
2004 TEST_NON_UTF8, PLACEHOLDER, REXEC_FBC_TRYIT)
2006 #define FBC_NBOUND_A(TEST_NON_UTF8) \
2008 FBC_UTF8_A(TEST_NON_UTF8, PLACEHOLDER, REXEC_FBC_TRYIT), \
2009 TEST_NON_UTF8, PLACEHOLDER, REXEC_FBC_TRYIT)
2013 S_get_break_val_cp_checked(SV* const invlist, const UV cp_in) {
2014 IV cp_out = _invlist_search(invlist, cp_in);
2015 assert(cp_out >= 0);
2018 # define _generic_GET_BREAK_VAL_CP_CHECKED(invlist, invmap, cp) \
2019 invmap[S_get_break_val_cp_checked(invlist, cp)]
2021 # define _generic_GET_BREAK_VAL_CP_CHECKED(invlist, invmap, cp) \
2022 invmap[_invlist_search(invlist, cp)]
2025 /* Takes a pointer to an inversion list, a pointer to its corresponding
2026 * inversion map, and a code point, and returns the code point's value
2027 * according to the two arrays. It assumes that all code points have a value.
2028 * This is used as the base macro for macros for particular properties */
2029 #define _generic_GET_BREAK_VAL_CP(invlist, invmap, cp) \
2030 _generic_GET_BREAK_VAL_CP_CHECKED(invlist, invmap, cp)
2032 /* Same as above, but takes begin, end ptrs to a UTF-8 encoded string instead
2033 * of a code point, returning the value for the first code point in the string.
2034 * And it takes the particular macro name that finds the desired value given a
2035 * code point. Merely convert the UTF-8 to code point and call the cp macro */
2036 #define _generic_GET_BREAK_VAL_UTF8(cp_macro, pos, strend) \
2037 (__ASSERT_(pos < strend) \
2038 /* Note assumes is valid UTF-8 */ \
2039 (cp_macro(utf8_to_uvchr_buf((pos), (strend), NULL))))
2041 /* Returns the GCB value for the input code point */
2042 #define getGCB_VAL_CP(cp) \
2043 _generic_GET_BREAK_VAL_CP( \
2048 /* Returns the GCB value for the first code point in the UTF-8 encoded string
2049 * bounded by pos and strend */
2050 #define getGCB_VAL_UTF8(pos, strend) \
2051 _generic_GET_BREAK_VAL_UTF8(getGCB_VAL_CP, pos, strend)
2053 /* Returns the LB value for the input code point */
2054 #define getLB_VAL_CP(cp) \
2055 _generic_GET_BREAK_VAL_CP( \
2060 /* Returns the LB value for the first code point in the UTF-8 encoded string
2061 * bounded by pos and strend */
2062 #define getLB_VAL_UTF8(pos, strend) \
2063 _generic_GET_BREAK_VAL_UTF8(getLB_VAL_CP, pos, strend)
2066 /* Returns the SB value for the input code point */
2067 #define getSB_VAL_CP(cp) \
2068 _generic_GET_BREAK_VAL_CP( \
2073 /* Returns the SB value for the first code point in the UTF-8 encoded string
2074 * bounded by pos and strend */
2075 #define getSB_VAL_UTF8(pos, strend) \
2076 _generic_GET_BREAK_VAL_UTF8(getSB_VAL_CP, pos, strend)
2078 /* Returns the WB value for the input code point */
2079 #define getWB_VAL_CP(cp) \
2080 _generic_GET_BREAK_VAL_CP( \
2085 /* Returns the WB value for the first code point in the UTF-8 encoded string
2086 * bounded by pos and strend */
2087 #define getWB_VAL_UTF8(pos, strend) \
2088 _generic_GET_BREAK_VAL_UTF8(getWB_VAL_CP, pos, strend)
2090 /* We know what class REx starts with. Try to find this position... */
2091 /* if reginfo->intuit, its a dryrun */
2092 /* annoyingly all the vars in this routine have different names from their counterparts
2093 in regmatch. /grrr */
2095 S_find_byclass(pTHX_ regexp * prog, const regnode *c, char *s,
2096 const char *strend, regmatch_info *reginfo)
2100 /* TRUE if x+ need not match at just the 1st pos of run of x's */
2101 const I32 doevery = (prog->intflags & PREGf_SKIP) == 0;
2103 char *pat_string; /* The pattern's exactish string */
2104 char *pat_end; /* ptr to end char of pat_string */
2105 re_fold_t folder; /* Function for computing non-utf8 folds */
2106 const U8 *fold_array; /* array for folding ords < 256 */
2113 /* In some cases we accept only the first occurence of 'x' in a sequence of
2114 * them. This variable points to just beyond the end of the previous
2115 * occurrence of 'x', hence we can tell if we are in a sequence. (Having
2116 * it point to beyond the 'x' allows us to work for UTF-8 without having to
2118 char * previous_occurrence_end = 0;
2120 I32 tmp; /* Scratch variable */
2121 const bool utf8_target = reginfo->is_utf8_target;
2122 UV utf8_fold_flags = 0;
2123 const bool is_utf8_pat = reginfo->is_utf8_pat;
2124 bool to_complement = FALSE; /* Invert the result? Taking the xor of this
2125 with a result inverts that result, as 0^1 =
2127 _char_class_number classnum;
2129 RXi_GET_DECL(prog,progi);
2131 PERL_ARGS_ASSERT_FIND_BYCLASS;
2133 /* We know what class it must start with. */
2137 _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
2139 if (ANYOFL_UTF8_LOCALE_REQD(FLAGS(c)) && ! IN_UTF8_CTYPE_LOCALE) {
2140 Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE), utf8_locale_required);
2147 REXEC_FBC_CLASS_SCAN(1, /* 1=>is-utf8 */
2148 reginclass(prog, c, (U8*)s, (U8*) strend, utf8_target));
2150 else if (ANYOF_FLAGS(c) & ~ ANYOF_MATCHES_ALL_ABOVE_BITMAP) {
2151 /* We know that s is in the bitmap range since the target isn't
2152 * UTF-8, so what happens for out-of-range values is not relevant,
2153 * so exclude that from the flags */
2154 REXEC_FBC_CLASS_SCAN(0, reginclass(prog,c, (U8*)s, (U8*)s+1, 0));
2157 REXEC_FBC_CLASS_SCAN(0, ANYOF_BITMAP_TEST(c, *((U8*)s)));
2161 case ANYOFM: /* ARG() is the base byte; FLAGS() the mask byte */
2162 /* UTF-8ness doesn't matter because only matches UTF-8 invariants, so
2164 REXEC_FBC_FIND_NEXT_SCAN(0,
2165 (char *) find_next_masked((U8 *) s, (U8 *) strend,
2166 (U8) ARG(c), FLAGS(c)));
2169 case NANYOFM: /* UTF-8ness does matter because can match UTF-8 variants.
2171 REXEC_FBC_FIND_NEXT_SCAN(utf8_target,
2172 (char *) find_span_end_mask((U8 *) s, (U8 *) strend,
2173 (U8) ARG(c), FLAGS(c)));
2177 if (utf8_target) { /* Can't possibly match a non-UTF-8 target */
2178 U8 first_byte = FLAGS(c);
2180 if (first_byte) { /* We know what the first byte of any matched
2182 REXEC_FBC_FIND_NEXT_UTF8_BYTE_SCAN(first_byte,
2183 reginclass(prog, c, (U8*)s, (U8*) strend, utf8_target));
2186 REXEC_FBC_CLASS_SCAN(TRUE,
2187 reginclass(prog, c, (U8*)s, (U8*) strend, utf8_target));
2192 case EXACTFAA_NO_TRIE: /* This node only generated for non-utf8 patterns */
2193 assert(! is_utf8_pat);
2197 utf8_fold_flags = FOLDEQ_UTF8_NOMIX_ASCII
2198 |FOLDEQ_S2_ALREADY_FOLDED|FOLDEQ_S2_FOLDS_SANE;
2199 goto do_exactf_utf8;
2201 else if (utf8_target) {
2203 /* Here, and elsewhere in this file, the reason we can't consider a
2204 * non-UTF-8 pattern already folded in the presence of a UTF-8
2205 * target is because any MICRO SIGN in the pattern won't be folded.
2206 * Since the fold of the MICRO SIGN requires UTF-8 to represent, we
2207 * can consider a non-UTF-8 pattern folded when matching a
2208 * non-UTF-8 target */
2209 utf8_fold_flags = FOLDEQ_UTF8_NOMIX_ASCII;
2210 goto do_exactf_utf8;
2213 /* Latin1 folds are not affected by /a, except it excludes the sharp s,
2214 * which these functions don't handle anyway */
2215 fold_array = PL_fold_latin1;
2216 folder = foldEQ_latin1_s2_folded;
2217 goto do_exactf_non_utf8;
2219 case EXACTF: /* This node only generated for non-utf8 patterns */
2220 assert(! is_utf8_pat);
2222 goto do_exactf_utf8;
2224 fold_array = PL_fold;
2226 goto do_exactf_non_utf8;
2229 _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
2230 if (is_utf8_pat || utf8_target || IN_UTF8_CTYPE_LOCALE) {
2231 utf8_fold_flags = FOLDEQ_LOCALE;
2232 goto do_exactf_utf8;
2234 fold_array = PL_fold_locale;
2235 folder = foldEQ_locale;
2236 goto do_exactf_non_utf8;
2238 case EXACTFUP: /* Problematic even though pattern isn't UTF-8. Use
2239 full functionality normally not done except for
2241 assert(! is_utf8_pat);
2242 goto do_exactf_utf8;
2245 if (! utf8_target) { /* All code points in this node require
2246 UTF-8 to express. */
2249 utf8_fold_flags = FOLDEQ_LOCALE | FOLDEQ_S2_ALREADY_FOLDED
2250 | FOLDEQ_S2_FOLDS_SANE;
2251 goto do_exactf_utf8;
2254 if (! utf8_target) {
2257 assert(is_utf8_pat);
2258 utf8_fold_flags = FOLDEQ_S2_ALREADY_FOLDED;
2259 goto do_exactf_utf8;
2262 if (is_utf8_pat || utf8_target) {
2263 utf8_fold_flags = FOLDEQ_S2_ALREADY_FOLDED;
2264 goto do_exactf_utf8;
2267 /* Any 'ss' in the pattern should have been replaced by regcomp,
2268 * so we don't have to worry here about this single special case
2269 * in the Latin1 range */
2270 fold_array = PL_fold_latin1;
2271 folder = foldEQ_latin1_s2_folded;
2275 do_exactf_non_utf8: /* Neither pattern nor string are UTF8, and there
2276 are no glitches with fold-length differences
2277 between the target string and pattern */
2279 /* The idea in the non-utf8 EXACTF* cases is to first find the
2280 * first character of the EXACTF* node and then, if necessary,
2281 * case-insensitively compare the full text of the node. c1 is the
2282 * first character. c2 is its fold. This logic will not work for
2283 * Unicode semantics and the german sharp ss, which hence should
2284 * not be compiled into a node that gets here. */
2285 pat_string = STRING(c);
2286 ln = STR_LEN(c); /* length to match in octets/bytes */
2288 /* We know that we have to match at least 'ln' bytes (which is the
2289 * same as characters, since not utf8). If we have to match 3
2290 * characters, and there are only 2 availabe, we know without
2291 * trying that it will fail; so don't start a match past the
2292 * required minimum number from the far end */
2293 e = HOP3c(strend, -((SSize_t)ln), s);
2298 c2 = fold_array[c1];
2299 if (c1 == c2) { /* If char and fold are the same */
2301 s = (char *) memchr(s, c1, e + 1 - s);
2306 /* Check that the rest of the node matches */
2307 if ( (ln == 1 || folder(s + 1, pat_string + 1, ln - 1))
2308 && (reginfo->intuit || regtry(reginfo, &s)) )
2316 U8 bits_differing = c1 ^ c2;
2318 /* If the folds differ in one bit position only, we can mask to
2319 * match either of them, and can use this faster find method. Both
2320 * ASCII and EBCDIC tend to have their case folds differ in only
2321 * one position, so this is very likely */
2322 if (LIKELY(PL_bitcount[bits_differing] == 1)) {
2323 bits_differing = ~ bits_differing;
2325 s = (char *) find_next_masked((U8 *) s, (U8 *) e + 1,
2326 (c1 & bits_differing), bits_differing);
2331 if ( (ln == 1 || folder(s + 1, pat_string + 1, ln - 1))
2332 && (reginfo->intuit || regtry(reginfo, &s)) )
2339 else { /* Otherwise, stuck with looking byte-at-a-time. This
2340 should actually happen only in EXACTFL nodes */
2342 if ( (*(U8*)s == c1 || *(U8*)s == c2)
2343 && (ln == 1 || folder(s + 1, pat_string + 1, ln - 1))
2344 && (reginfo->intuit || regtry(reginfo, &s)) )
2358 /* If one of the operands is in utf8, we can't use the simpler folding
2359 * above, due to the fact that many different characters can have the
2360 * same fold, or portion of a fold, or different- length fold */
2361 pat_string = STRING(c);
2362 ln = STR_LEN(c); /* length to match in octets/bytes */
2363 pat_end = pat_string + ln;
2364 lnc = is_utf8_pat /* length to match in characters */
2365 ? utf8_length((U8 *) pat_string, (U8 *) pat_end)
2368 /* We have 'lnc' characters to match in the pattern, but because of
2369 * multi-character folding, each character in the target can match
2370 * up to 3 characters (Unicode guarantees it will never exceed
2371 * this) if it is utf8-encoded; and up to 2 if not (based on the
2372 * fact that the Latin 1 folds are already determined, and the
2373 * only multi-char fold in that range is the sharp-s folding to
2374 * 'ss'. Thus, a pattern character can match as little as 1/3 of a
2375 * string character. Adjust lnc accordingly, rounding up, so that
2376 * if we need to match at least 4+1/3 chars, that really is 5. */
2377 expansion = (utf8_target) ? UTF8_MAX_FOLD_CHAR_EXPAND : 2;
2378 lnc = (lnc + expansion - 1) / expansion;
2380 /* As in the non-UTF8 case, if we have to match 3 characters, and
2381 * only 2 are left, it's guaranteed to fail, so don't start a
2382 * match that would require us to go beyond the end of the string
2384 e = HOP3c(strend, -((SSize_t)lnc), s);
2386 /* XXX Note that we could recalculate e to stop the loop earlier,
2387 * as the worst case expansion above will rarely be met, and as we
2388 * go along we would usually find that e moves further to the left.
2389 * This would happen only after we reached the point in the loop
2390 * where if there were no expansion we should fail. Unclear if
2391 * worth the expense */
2394 char *my_strend= (char *)strend;
2395 if (foldEQ_utf8_flags(s, &my_strend, 0, utf8_target,
2396 pat_string, NULL, ln, is_utf8_pat, utf8_fold_flags)
2397 && (reginfo->intuit || regtry(reginfo, &s)) )
2401 s += (utf8_target) ? UTF8SKIP(s) : 1;
2407 _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
2408 if (FLAGS(c) != TRADITIONAL_BOUND) {
2409 if (! IN_UTF8_CTYPE_LOCALE) {
2410 Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
2411 B_ON_NON_UTF8_LOCALE_IS_WRONG);
2416 FBC_BOUND(isWORDCHAR_LC, isWORDCHAR_LC_uvchr, isWORDCHAR_LC_utf8_safe);
2420 _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
2421 if (FLAGS(c) != TRADITIONAL_BOUND) {
2422 if (! IN_UTF8_CTYPE_LOCALE) {
2423 Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
2424 B_ON_NON_UTF8_LOCALE_IS_WRONG);
2429 FBC_NBOUND(isWORDCHAR_LC, isWORDCHAR_LC_uvchr, isWORDCHAR_LC_utf8_safe);
2432 case BOUND: /* regcomp.c makes sure that this only has the traditional \b
2434 assert(FLAGS(c) == TRADITIONAL_BOUND);
2436 FBC_BOUND(isWORDCHAR, isWORDCHAR_uni, isWORDCHAR_utf8_safe);
2439 case BOUNDA: /* regcomp.c makes sure that this only has the traditional \b
2441 assert(FLAGS(c) == TRADITIONAL_BOUND);
2443 FBC_BOUND_A(isWORDCHAR_A);
2446 case NBOUND: /* regcomp.c makes sure that this only has the traditional \b
2448 assert(FLAGS(c) == TRADITIONAL_BOUND);
2450 FBC_NBOUND(isWORDCHAR, isWORDCHAR_uni, isWORDCHAR_utf8_safe);
2453 case NBOUNDA: /* regcomp.c makes sure that this only has the traditional \b
2455 assert(FLAGS(c) == TRADITIONAL_BOUND);
2457 FBC_NBOUND_A(isWORDCHAR_A);
2461 if ((bound_type) FLAGS(c) == TRADITIONAL_BOUND) {
2462 FBC_NBOUND(isWORDCHAR_L1, isWORDCHAR_uni, isWORDCHAR_utf8_safe);
2473 switch((bound_type) FLAGS(c)) {
2474 case TRADITIONAL_BOUND:
2475 FBC_BOUND(isWORDCHAR_L1, isWORDCHAR_uni, isWORDCHAR_utf8_safe);
2478 if (s == reginfo->strbeg) {
2479 if (reginfo->intuit || regtry(reginfo, &s))
2484 /* Didn't match. Try at the next position (if there is one) */
2485 s += (utf8_target) ? UTF8SKIP(s) : 1;
2486 if (UNLIKELY(s >= reginfo->strend)) {
2492 GCB_enum before = getGCB_VAL_UTF8(
2494 (U8*)(reginfo->strbeg)),
2495 (U8*) reginfo->strend);
2496 while (s < strend) {
2497 GCB_enum after = getGCB_VAL_UTF8((U8*) s,
2498 (U8*) reginfo->strend);
2499 if ( (to_complement ^ isGCB(before,
2501 (U8*) reginfo->strbeg,
2504 && (reginfo->intuit || regtry(reginfo, &s)))
2512 else { /* Not utf8. Everything is a GCB except between CR and
2514 while (s < strend) {
2515 if ((to_complement ^ ( UCHARAT(s - 1) != '\r'
2516 || UCHARAT(s) != '\n'))
2517 && (reginfo->intuit || regtry(reginfo, &s)))
2525 /* And, since this is a bound, it can match after the final
2526 * character in the string */
2527 if ((reginfo->intuit || regtry(reginfo, &s))) {
2533 if (s == reginfo->strbeg) {
2534 if (reginfo->intuit || regtry(reginfo, &s)) {
2537 s += (utf8_target) ? UTF8SKIP(s) : 1;
2538 if (UNLIKELY(s >= reginfo->strend)) {
2544 LB_enum before = getLB_VAL_UTF8(reghop3((U8*)s,
2546 (U8*)(reginfo->strbeg)),
2547 (U8*) reginfo->strend);
2548 while (s < strend) {
2549 LB_enum after = getLB_VAL_UTF8((U8*) s, (U8*) reginfo->strend);
2550 if (to_complement ^ isLB(before,
2552 (U8*) reginfo->strbeg,
2554 (U8*) reginfo->strend,
2556 && (reginfo->intuit || regtry(reginfo, &s)))
2564 else { /* Not utf8. */
2565 LB_enum before = getLB_VAL_CP((U8) *(s -1));
2566 while (s < strend) {
2567 LB_enum after = getLB_VAL_CP((U8) *s);
2568 if (to_complement ^ isLB(before,
2570 (U8*) reginfo->strbeg,
2572 (U8*) reginfo->strend,
2574 && (reginfo->intuit || regtry(reginfo, &s)))
2583 if (reginfo->intuit || regtry(reginfo, &s)) {
2590 if (s == reginfo->strbeg) {
2591 if (reginfo->intuit || regtry(reginfo, &s)) {
2594 s += (utf8_target) ? UTF8SKIP(s) : 1;
2595 if (UNLIKELY(s >= reginfo->strend)) {
2601 SB_enum before = getSB_VAL_UTF8(reghop3((U8*)s,
2603 (U8*)(reginfo->strbeg)),
2604 (U8*) reginfo->strend);
2605 while (s < strend) {
2606 SB_enum after = getSB_VAL_UTF8((U8*) s,
2607 (U8*) reginfo->strend);
2608 if ((to_complement ^ isSB(before,
2610 (U8*) reginfo->strbeg,
2612 (U8*) reginfo->strend,
2614 && (reginfo->intuit || regtry(reginfo, &s)))
2622 else { /* Not utf8. */
2623 SB_enum before = getSB_VAL_CP((U8) *(s -1));
2624 while (s < strend) {
2625 SB_enum after = getSB_VAL_CP((U8) *s);
2626 if ((to_complement ^ isSB(before,
2628 (U8*) reginfo->strbeg,
2630 (U8*) reginfo->strend,
2632 && (reginfo->intuit || regtry(reginfo, &s)))
2641 /* Here are at the final position in the target string. The SB
2642 * value is always true here, so matches, depending on other
2644 if (reginfo->intuit || regtry(reginfo, &s)) {
2651 if (s == reginfo->strbeg) {
2652 if (reginfo->intuit || regtry(reginfo, &s)) {
2655 s += (utf8_target) ? UTF8SKIP(s) : 1;
2656 if (UNLIKELY(s >= reginfo->strend)) {
2662 /* We are at a boundary between char_sub_0 and char_sub_1.
2663 * We also keep track of the value for char_sub_-1 as we
2664 * loop through the line. Context may be needed to make a
2665 * determination, and if so, this can save having to
2667 WB_enum previous = WB_UNKNOWN;
2668 WB_enum before = getWB_VAL_UTF8(
2671 (U8*)(reginfo->strbeg)),
2672 (U8*) reginfo->strend);
2673 while (s < strend) {
2674 WB_enum after = getWB_VAL_UTF8((U8*) s,
2675 (U8*) reginfo->strend);
2676 if ((to_complement ^ isWB(previous,
2679 (U8*) reginfo->strbeg,
2681 (U8*) reginfo->strend,
2683 && (reginfo->intuit || regtry(reginfo, &s)))
2692 else { /* Not utf8. */
2693 WB_enum previous = WB_UNKNOWN;
2694 WB_enum before = getWB_VAL_CP((U8) *(s -1));
2695 while (s < strend) {
2696 WB_enum after = getWB_VAL_CP((U8) *s);
2697 if ((to_complement ^ isWB(previous,
2700 (U8*) reginfo->strbeg,
2702 (U8*) reginfo->strend,
2704 && (reginfo->intuit || regtry(reginfo, &s)))
2714 if (reginfo->intuit || regtry(reginfo, &s)) {
2721 REXEC_FBC_CSCAN(is_LNBREAK_utf8_safe(s, strend),
2722 is_LNBREAK_latin1_safe(s, strend)
2726 /* The argument to all the POSIX node types is the class number to pass to
2727 * _generic_isCC() to build a mask for searching in PL_charclass[] */
2734 _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
2735 REXEC_FBC_CSCAN(to_complement ^ cBOOL(isFOO_utf8_lc(FLAGS(c), (U8 *) s, (U8 *) strend)),
2736 to_complement ^ cBOOL(isFOO_lc(FLAGS(c), *s)));
2751 /* The complement of something that matches only ASCII matches all
2752 * non-ASCII, plus everything in ASCII that isn't in the class. */
2753 REXEC_FBC_CLASS_SCAN(1, ! isASCII_utf8_safe(s, strend)
2754 || ! _generic_isCC_A(*s, FLAGS(c)));
2762 /* Don't need to worry about utf8, as it can match only a single
2763 * byte invariant character. But we do anyway for performance reasons,
2764 * as otherwise we would have to examine all the continuation
2767 REXEC_FBC_CLASS_SCAN(1, _generic_isCC_A(*s, FLAGS(c)));
2772 REXEC_FBC_CLASS_SCAN(0, /* 0=>not-utf8 */
2773 to_complement ^ cBOOL(_generic_isCC_A(*s, FLAGS(c))));
2781 if (! utf8_target) {
2782 REXEC_FBC_CLASS_SCAN(0, /* 0=>not-utf8 */
2783 to_complement ^ cBOOL(_generic_isCC(*s,
2789 classnum = (_char_class_number) FLAGS(c);
2792 REXEC_FBC_CLASS_SCAN(1, /* 1=>is-utf8 */
2793 to_complement ^ cBOOL(_invlist_contains_cp(
2794 PL_XPosix_ptrs[classnum],
2795 utf8_to_uvchr_buf((U8 *) s,
2799 case _CC_ENUM_SPACE:
2800 REXEC_FBC_CLASS_SCAN(1, /* 1=>is-utf8 */
2801 to_complement ^ cBOOL(isSPACE_utf8_safe(s, strend)));
2804 case _CC_ENUM_BLANK:
2805 REXEC_FBC_CLASS_SCAN(1,
2806 to_complement ^ cBOOL(isBLANK_utf8_safe(s, strend)));
2809 case _CC_ENUM_XDIGIT:
2810 REXEC_FBC_CLASS_SCAN(1,
2811 to_complement ^ cBOOL(isXDIGIT_utf8_safe(s, strend)));
2814 case _CC_ENUM_VERTSPACE:
2815 REXEC_FBC_CLASS_SCAN(1,
2816 to_complement ^ cBOOL(isVERTWS_utf8_safe(s, strend)));
2819 case _CC_ENUM_CNTRL:
2820 REXEC_FBC_CLASS_SCAN(1,
2821 to_complement ^ cBOOL(isCNTRL_utf8_safe(s, strend)));
2831 /* what trie are we using right now */
2832 reg_ac_data *aho = (reg_ac_data*)progi->data->data[ ARG( c ) ];
2833 reg_trie_data *trie = (reg_trie_data*)progi->data->data[ aho->trie ];
2834 HV *widecharmap = MUTABLE_HV(progi->data->data[ aho->trie + 1 ]);
2836 const char *last_start = strend - trie->minlen;
2838 const char *real_start = s;
2840 STRLEN maxlen = trie->maxlen;
2842 U8 **points; /* map of where we were in the input string
2843 when reading a given char. For ASCII this
2844 is unnecessary overhead as the relationship
2845 is always 1:1, but for Unicode, especially
2846 case folded Unicode this is not true. */
2847 U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
2851 GET_RE_DEBUG_FLAGS_DECL;
2853 /* We can't just allocate points here. We need to wrap it in
2854 * an SV so it gets freed properly if there is a croak while
2855 * running the match */
2858 sv_points=newSV(maxlen * sizeof(U8 *));
2859 SvCUR_set(sv_points,
2860 maxlen * sizeof(U8 *));
2861 SvPOK_on(sv_points);
2862 sv_2mortal(sv_points);
2863 points=(U8**)SvPV_nolen(sv_points );
2864 if ( trie_type != trie_utf8_fold
2865 && (trie->bitmap || OP(c)==AHOCORASICKC) )
2868 bitmap=(U8*)trie->bitmap;
2870 bitmap=(U8*)ANYOF_BITMAP(c);
2872 /* this is the Aho-Corasick algorithm modified a touch
2873 to include special handling for long "unknown char" sequences.
2874 The basic idea being that we use AC as long as we are dealing
2875 with a possible matching char, when we encounter an unknown char
2876 (and we have not encountered an accepting state) we scan forward
2877 until we find a legal starting char.
2878 AC matching is basically that of trie matching, except that when
2879 we encounter a failing transition, we fall back to the current
2880 states "fail state", and try the current char again, a process
2881 we repeat until we reach the root state, state 1, or a legal
2882 transition. If we fail on the root state then we can either
2883 terminate if we have reached an accepting state previously, or
2884 restart the entire process from the beginning if we have not.
2887 while (s <= last_start) {
2888 const U32 uniflags = UTF8_ALLOW_DEFAULT;
2896 U8 *uscan = (U8*)NULL;
2897 U8 *leftmost = NULL;
2899 U32 accepted_word= 0;
2903 while ( state && uc <= (U8*)strend ) {
2905 U32 word = aho->states[ state ].wordnum;
2909 DEBUG_TRIE_EXECUTE_r(
2910 if ( uc <= (U8*)last_start && !BITMAP_TEST(bitmap,*uc) ) {
2911 dump_exec_pos( (char *)uc, c, strend, real_start,
2912 (char *)uc, utf8_target, 0 );
2913 Perl_re_printf( aTHX_
2914 " Scanning for legal start char...\n");
2918 while ( uc <= (U8*)last_start && !BITMAP_TEST(bitmap,*uc) ) {
2922 while ( uc <= (U8*)last_start && !BITMAP_TEST(bitmap,*uc) ) {
2928 if (uc >(U8*)last_start) break;
2932 U8 *lpos= points[ (pointpos - trie->wordinfo[word].len) % maxlen ];
2933 if (!leftmost || lpos < leftmost) {
2934 DEBUG_r(accepted_word=word);
2940 points[pointpos++ % maxlen]= uc;
2941 if (foldlen || uc < (U8*)strend) {
2942 REXEC_TRIE_READ_CHAR(trie_type, trie, widecharmap, uc,
2943 (U8 *) strend, uscan, len, uvc,
2944 charid, foldlen, foldbuf,
2946 DEBUG_TRIE_EXECUTE_r({
2947 dump_exec_pos( (char *)uc, c, strend,
2948 real_start, s, utf8_target, 0);
2949 Perl_re_printf( aTHX_
2950 " Charid:%3u CP:%4" UVxf " ",
2962 word = aho->states[ state ].wordnum;
2964 base = aho->states[ state ].trans.base;
2966 DEBUG_TRIE_EXECUTE_r({
2968 dump_exec_pos( (char *)uc, c, strend, real_start,
2969 s, utf8_target, 0 );
2970 Perl_re_printf( aTHX_
2971 "%sState: %4" UVxf ", word=%" UVxf,
2972 failed ? " Fail transition to " : "",
2973 (UV)state, (UV)word);
2979 ( ((offset = base + charid
2980 - 1 - trie->uniquecharcount)) >= 0)
2981 && ((U32)offset < trie->lasttrans)
2982 && trie->trans[offset].check == state
2983 && (tmp=trie->trans[offset].next))
2985 DEBUG_TRIE_EXECUTE_r(
2986 Perl_re_printf( aTHX_ " - legal\n"));
2991 DEBUG_TRIE_EXECUTE_r(
2992 Perl_re_printf( aTHX_ " - fail\n"));
2994 state = aho->fail[state];
2998 /* we must be accepting here */
2999 DEBUG_TRIE_EXECUTE_r(
3000 Perl_re_printf( aTHX_ " - accepting\n"));
3009 if (!state) state = 1;
3012 if ( aho->states[ state ].wordnum ) {
3013 U8 *lpos = points[ (pointpos - trie->wordinfo[aho->states[ state ].wordnum].len) % maxlen ];
3014 if (!leftmost || lpos < leftmost) {
3015 DEBUG_r(accepted_word=aho->states[ state ].wordnum);
3020 s = (char*)leftmost;
3021 DEBUG_TRIE_EXECUTE_r({
3022 Perl_re_printf( aTHX_ "Matches word #%" UVxf " at position %" IVdf ". Trying full pattern...\n",
3023 (UV)accepted_word, (IV)(s - real_start)
3026 if (reginfo->intuit || regtry(reginfo, &s)) {
3032 DEBUG_TRIE_EXECUTE_r({
3033 Perl_re_printf( aTHX_ "Pattern failed. Looking for new start point...\n");
3036 DEBUG_TRIE_EXECUTE_r(
3037 Perl_re_printf( aTHX_ "No match.\n"));
3046 Perl_croak(aTHX_ "panic: unknown regstclass %d", (int)OP(c));
3053 /* set RX_SAVED_COPY, RX_SUBBEG etc.
3054 * flags have same meanings as with regexec_flags() */
3057 S_reg_set_capture_string(pTHX_ REGEXP * const rx,
3064 struct regexp *const prog = ReANY(rx);
3066 if (flags & REXEC_COPY_STR) {
3069 DEBUG_C(Perl_re_printf( aTHX_
3070 "Copy on write: regexp capture, type %d\n",
3072 /* Create a new COW SV to share the match string and store
3073 * in saved_copy, unless the current COW SV in saved_copy
3074 * is valid and suitable for our purpose */
3075 if (( prog->saved_copy
3076 && SvIsCOW(prog->saved_copy)
3077 && SvPOKp(prog->saved_copy)
3080 && SvPVX(sv) == SvPVX(prog->saved_copy)))
3082 /* just reuse saved_copy SV */
3083 if (RXp_MATCH_COPIED(prog)) {
3084 Safefree(prog->subbeg);
3085 RXp_MATCH_COPIED_off(prog);
3089 /* create new COW SV to share string */
3090 RXp_MATCH_COPY_FREE(prog);
3091 prog->saved_copy = sv_setsv_cow(prog->saved_copy, sv);
3093 prog->subbeg = (char *)SvPVX_const(prog->saved_copy);
3094 assert (SvPOKp(prog->saved_copy));
3095 prog->sublen = strend - strbeg;
3096 prog->suboffset = 0;
3097 prog->subcoffset = 0;
3102 SSize_t max = strend - strbeg;
3105 if ( (flags & REXEC_COPY_SKIP_POST)
3106 && !(prog->extflags & RXf_PMf_KEEPCOPY) /* //p */
3107 && !(PL_sawampersand & SAWAMPERSAND_RIGHT)
3108 ) { /* don't copy $' part of string */
3111 /* calculate the right-most part of the string covered
3112 * by a capture. Due to lookahead, this may be to
3113 * the right of $&, so we have to scan all captures */
3114 while (n <= prog->lastparen) {
3115 if (prog->offs[n].end > max)
3116 max = prog->offs[n].end;
3120 max = (PL_sawampersand & SAWAMPERSAND_LEFT)
3121 ? prog->offs[0].start
3123 assert(max >= 0 && max <= strend - strbeg);
3126 if ( (flags & REXEC_COPY_SKIP_PRE)
3127 && !(prog->extflags & RXf_PMf_KEEPCOPY) /* //p */
3128 && !(PL_sawampersand & SAWAMPERSAND_LEFT)
3129 ) { /* don't copy $` part of string */
3132 /* calculate the left-most part of the string covered
3133 * by a capture. Due to lookbehind, this may be to
3134 * the left of $&, so we have to scan all captures */
3135 while (min && n <= prog->lastparen) {
3136 if ( prog->offs[n].start != -1
3137 && prog->offs[n].start < min)
3139 min = prog->offs[n].start;
3143 if ((PL_sawampersand & SAWAMPERSAND_RIGHT)
3144 && min > prog->offs[0].end
3146 min = prog->offs[0].end;
3150 assert(min >= 0 && min <= max && min <= strend - strbeg);
3153 if (RXp_MATCH_COPIED(prog)) {
3154 if (sublen > prog->sublen)
3156 (char*)saferealloc(prog->subbeg, sublen+1);
3159 prog->subbeg = (char*)safemalloc(sublen+1);
3160 Copy(strbeg + min, prog->subbeg, sublen, char);
3161 prog->subbeg[sublen] = '\0';
3162 prog->suboffset = min;
3163 prog->sublen = sublen;
3164 RXp_MATCH_COPIED_on(prog);
3166 prog->subcoffset = prog->suboffset;
3167 if (prog->suboffset && utf8_target) {
3168 /* Convert byte offset to chars.
3169 * XXX ideally should only compute this if @-/@+
3170 * has been seen, a la PL_sawampersand ??? */
3172 /* If there's a direct correspondence between the
3173 * string which we're matching and the original SV,
3174 * then we can use the utf8 len cache associated with
3175 * the SV. In particular, it means that under //g,
3176 * sv_pos_b2u() will use the previously cached
3177 * position to speed up working out the new length of
3178 * subcoffset, rather than counting from the start of
3179 * the string each time. This stops
3180 * $x = "\x{100}" x 1E6; 1 while $x =~ /(.)/g;
3181 * from going quadratic */
3182 if (SvPOKp(sv) && SvPVX(sv) == strbeg)
3183 prog->subcoffset = sv_pos_b2u_flags(sv, prog->subcoffset,
3184 SV_GMAGIC|SV_CONST_RETURN);
3186 prog->subcoffset = utf8_length((U8*)strbeg,
3187 (U8*)(strbeg+prog->suboffset));
3191 RXp_MATCH_COPY_FREE(prog);
3192 prog->subbeg = strbeg;
3193 prog->suboffset = 0;
3194 prog->subcoffset = 0;
3195 prog->sublen = strend - strbeg;
3203 - regexec_flags - match a regexp against a string
3206 Perl_regexec_flags(pTHX_ REGEXP * const rx, char *stringarg, char *strend,
3207 char *strbeg, SSize_t minend, SV *sv, void *data, U32 flags)
3208 /* stringarg: the point in the string at which to begin matching */
3209 /* strend: pointer to null at end of string */
3210 /* strbeg: real beginning of string */
3211 /* minend: end of match must be >= minend bytes after stringarg. */
3212 /* sv: SV being matched: only used for utf8 flag, pos() etc; string
3213 * itself is accessed via the pointers above */
3214 /* data: May be used for some additional optimizations.
3215 Currently unused. */
3216 /* flags: For optimizations. See REXEC_* in regexp.h */
3219 struct regexp *const prog = ReANY(rx);
3223 SSize_t minlen; /* must match at least this many chars */
3224 SSize_t dontbother = 0; /* how many characters not to try at end */
3225 const bool utf8_target = cBOOL(DO_UTF8(sv));
3227 RXi_GET_DECL(prog,progi);
3228 regmatch_info reginfo_buf; /* create some info to pass to regtry etc */
3229 regmatch_info *const reginfo = ®info_buf;
3230 regexp_paren_pair *swap = NULL;
3232 GET_RE_DEBUG_FLAGS_DECL;
3234 PERL_ARGS_ASSERT_REGEXEC_FLAGS;
3235 PERL_UNUSED_ARG(data);
3237 /* Be paranoid... */
3239 Perl_croak(aTHX_ "NULL regexp parameter");
3243 debug_start_match(rx, utf8_target, stringarg, strend,
3247 startpos = stringarg;
3249 /* set these early as they may be used by the HOP macros below */
3250 reginfo->strbeg = strbeg;
3251 reginfo->strend = strend;
3252 reginfo->is_utf8_target = cBOOL(utf8_target);
3254 if (prog->intflags & PREGf_GPOS_SEEN) {
3257 /* set reginfo->ganch, the position where \G can match */
3260 (flags & REXEC_IGNOREPOS)
3261 ? stringarg /* use start pos rather than pos() */
3262 : ((mg = mg_find_mglob(sv)) && mg->mg_len >= 0)
3263 /* Defined pos(): */
3264 ? strbeg + MgBYTEPOS(mg, sv, strbeg, strend-strbeg)
3265 : strbeg; /* pos() not defined; use start of string */
3267 DEBUG_GPOS_r(Perl_re_printf( aTHX_
3268 "GPOS ganch set to strbeg[%" IVdf "]\n", (IV)(reginfo->ganch - strbeg)));
3270 /* in the presence of \G, we may need to start looking earlier in
3271 * the string than the suggested start point of stringarg:
3272 * if prog->gofs is set, then that's a known, fixed minimum
3275 * /ab|c\G/: gofs = 1
3276 * or if the minimum offset isn't known, then we have to go back
3277 * to the start of the string, e.g. /w+\G/
3280 if (prog->intflags & PREGf_ANCH_GPOS) {
3282 startpos = HOPBACKc(reginfo->ganch, prog->gofs);
3284 ((flags & REXEC_FAIL_ON_UNDERFLOW) && startpos < stringarg))
3286 DEBUG_r(Perl_re_printf( aTHX_
3287 "fail: ganch-gofs before earliest possible start\n"));
3292 startpos = reginfo->ganch;
3294 else if (prog->gofs) {
3295 startpos = HOPBACKc(startpos, prog->gofs);
3299 else if (prog->intflags & PREGf_GPOS_FLOAT)
3303 minlen = prog->minlen;
3304 if ((startpos + minlen) > strend || startpos < strbeg) {
3305 DEBUG_r(Perl_re_printf( aTHX_
3306 "Regex match can't succeed, so not even tried\n"));
3310 /* at the end of this function, we'll do a LEAVE_SCOPE(oldsave),
3311 * which will call destuctors to reset PL_regmatch_state, free higher
3312 * PL_regmatch_slabs, and clean up regmatch_info_aux and
3313 * regmatch_info_aux_eval */
3315 oldsave = PL_savestack_ix;
3319 if ((prog->extflags & RXf_USE_INTUIT)
3320 && !(flags & REXEC_CHECKED))
3322 s = re_intuit_start(rx, sv, strbeg, startpos, strend,
3327 if (prog->extflags & RXf_CHECK_ALL) {
3328 /* we can match based purely on the result of INTUIT.
3329 * Set up captures etc just for $& and $-[0]
3330 * (an intuit-only match wont have $1,$2,..) */
3331 assert(!prog->nparens);
3333 /* s/// doesn't like it if $& is earlier than where we asked it to
3334 * start searching (which can happen on something like /.\G/) */
3335 if ( (flags & REXEC_FAIL_ON_UNDERFLOW)
3338 /* this should only be possible under \G */
3339 assert(prog->intflags & PREGf_GPOS_SEEN);
3340 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
3341 "matched, but failing for REXEC_FAIL_ON_UNDERFLOW\n"));
3345 /* match via INTUIT shouldn't have any captures.
3346 * Let @-, @+, $^N know */
3347 prog->lastparen = prog->lastcloseparen = 0;
3348 RXp_MATCH_UTF8_set(prog, utf8_target);
3349 prog->offs[0].start = s - strbeg;
3350 prog->offs[0].end = utf8_target
3351 ? (char*)utf8_hop_forward((U8*)s, prog->minlenret, (U8 *) strend) - strbeg
3352 : s - strbeg + prog->minlenret;
3353 if ( !(flags & REXEC_NOT_FIRST) )
3354 S_reg_set_capture_string(aTHX_ rx,
3356 sv, flags, utf8_target);
3362 multiline = prog->extflags & RXf_PMf_MULTILINE;
3364 if (strend - s < (minlen+(prog->check_offset_min<0?prog->check_offset_min:0))) {
3365 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_
3366 "String too short [regexec_flags]...\n"));
3370 /* Check validity of program. */
3371 if (UCHARAT(progi->program) != REG_MAGIC) {
3372 Perl_croak(aTHX_ "corrupted regexp program");
3375 RXp_MATCH_TAINTED_off(prog);
3376 RXp_MATCH_UTF8_set(prog, utf8_target);
3378 reginfo->prog = rx; /* Yes, sorry that this is confusing. */
3379 reginfo->intuit = 0;
3380 reginfo->is_utf8_pat = cBOOL(RX_UTF8(rx));
3381 reginfo->warned = FALSE;
3383 reginfo->poscache_maxiter = 0; /* not yet started a countdown */
3384 /* see how far we have to get to not match where we matched before */
3385 reginfo->till = stringarg + minend;
3387 if (prog->extflags & RXf_EVAL_SEEN && SvPADTMP(sv)) {
3388 /* SAVEFREESV, not sv_mortalcopy, as this SV must last until after
3389 S_cleanup_regmatch_info_aux has executed (registered by
3390 SAVEDESTRUCTOR_X below). S_cleanup_regmatch_info_aux modifies
3391 magic belonging to this SV.
3392 Not newSVsv, either, as it does not COW.
3394 reginfo->sv = newSV(0);
3395 SvSetSV_nosteal(reginfo->sv, sv);
3396 SAVEFREESV(reginfo->sv);
3399 /* reserve next 2 or 3 slots in PL_regmatch_state:
3400 * slot N+0: may currently be in use: skip it
3401 * slot N+1: use for regmatch_info_aux struct
3402 * slot N+2: use for regmatch_info_aux_eval struct if we have (?{})'s
3403 * slot N+3: ready for use by regmatch()
3407 regmatch_state *old_regmatch_state;
3408 regmatch_slab *old_regmatch_slab;
3409 int i, max = (prog->extflags & RXf_EVAL_SEEN) ? 2 : 1;
3411 /* on first ever match, allocate first slab */
3412 if (!PL_regmatch_slab) {
3413 Newx(PL_regmatch_slab, 1, regmatch_slab);
3414 PL_regmatch_slab->prev = NULL;
3415 PL_regmatch_slab->next = NULL;
3416 PL_regmatch_state = SLAB_FIRST(PL_regmatch_slab);
3419 old_regmatch_state = PL_regmatch_state;
3420 old_regmatch_slab = PL_regmatch_slab;
3422 for (i=0; i <= max; i++) {
3424 reginfo->info_aux = &(PL_regmatch_state->u.info_aux);
3426 reginfo->info_aux_eval =
3427 reginfo->info_aux->info_aux_eval =
3428 &(PL_regmatch_state->u.info_aux_eval);
3430 if (++PL_regmatch_state > SLAB_LAST(PL_regmatch_slab))
3431 PL_regmatch_state = S_push_slab(aTHX);
3434 /* note initial PL_regmatch_state position; at end of match we'll
3435 * pop back to there and free any higher slabs */
3437 reginfo->info_aux->old_regmatch_state = old_regmatch_state;
3438 reginfo->info_aux->old_regmatch_slab = old_regmatch_slab;
3439 reginfo->info_aux->poscache = NULL;
3441 SAVEDESTRUCTOR_X(S_cleanup_regmatch_info_aux, reginfo->info_aux);
3443 if ((prog->extflags & RXf_EVAL_SEEN))
3444 S_setup_eval_state(aTHX_ reginfo);
3446 reginfo->info_aux_eval = reginfo->info_aux->info_aux_eval = NULL;
3449 /* If there is a "must appear" string, look for it. */
3451 if (PL_curpm && (PM_GETRE(PL_curpm) == rx)) {
3452 /* We have to be careful. If the previous successful match
3453 was from this regex we don't want a subsequent partially
3454 successful match to clobber the old results.
3455 So when we detect this possibility we add a swap buffer
3456 to the re, and switch the buffer each match. If we fail,
3457 we switch it back; otherwise we leave it swapped.
3460 /* avoid leak if we die, or clean up anyway if match completes */
3462 Newxz(prog->offs, (prog->nparens + 1), regexp_paren_pair);
3463 DEBUG_BUFFERS_r(Perl_re_exec_indentf( aTHX_
3464 "rex=0x%" UVxf " saving offs: orig=0x%" UVxf " new=0x%" UVxf "\n",
3472 if (prog->recurse_locinput)
3473 Zero(prog->recurse_locinput,prog->nparens + 1, char *);
3475 /* Simplest case: anchored match need be tried only once, or with
3476 * MBOL, only at the beginning of each line.
3478 * Note that /.*.../ sets PREGf_IMPLICIT|MBOL, while /.*.../s sets
3479 * PREGf_IMPLICIT|SBOL. The idea is that with /.*.../s, if it doesn't
3480 * match at the start of the string then it won't match anywhere else
3481 * either; while with /.*.../, if it doesn't match at the beginning,
3482 * the earliest it could match is at the start of the next line */
3484 if (prog->intflags & (PREGf_ANCH & ~PREGf_ANCH_GPOS)) {
3487 if (regtry(reginfo, &s))
3490 if (!(prog->intflags & PREGf_ANCH_MBOL))
3493 /* didn't match at start, try at other newline positions */
3496 dontbother = minlen - 1;
3497 end = HOP3c(strend, -dontbother, strbeg) - 1;
3499 /* skip to next newline */
3501 while (s <= end) { /* note it could be possible to match at the end of the string */
3502 /* NB: newlines are the same in unicode as they are in latin */
3505 if (prog->check_substr || prog->check_utf8) {
3506 /* note that with PREGf_IMPLICIT, intuit can only fail
3507 * or return the start position, so it's of limited utility.
3508 * Nevertheless, I made the decision that the potential for
3509 * quick fail was still worth it - DAPM */
3510 s = re_intuit_start(rx, sv, strbeg, s, strend, flags, NULL);
3514 if (regtry(reginfo, &s))
3518 } /* end anchored search */
3520 if (prog->intflags & PREGf_ANCH_GPOS)
3522 /* PREGf_ANCH_GPOS should never be true if PREGf_GPOS_SEEN is not true */
3523 assert(prog->intflags & PREGf_GPOS_SEEN);
3524 /* For anchored \G, the only position it can match from is
3525 * (ganch-gofs); we already set startpos to this above; if intuit
3526 * moved us on from there, we can't possibly succeed */
3527 assert(startpos == HOPBACKc(reginfo->ganch, prog->gofs));
3528 if (s == startpos && regtry(reginfo, &s))
3533 /* Messy cases: unanchored match. */
3534 if ((prog->anchored_substr || prog->anchored_utf8) && prog->intflags & PREGf_SKIP) {
3535 /* we have /x+whatever/ */
3536 /* it must be a one character string (XXXX Except is_utf8_pat?) */
3542 if (! prog->anchored_utf8) {
3543 to_utf8_substr(prog);
3545 ch = SvPVX_const(prog->anchored_utf8)[0];
3546 REXEC_FBC_SCAN(0, /* 0=>not-utf8 */
3548 DEBUG_EXECUTE_r( did_match = 1 );
3549 if (regtry(reginfo, &s)) goto got_it;
3551 while (s < strend && *s == ch)
3558 if (! prog->anchored_substr) {
3559 if (! to_byte_substr(prog)) {
3560 NON_UTF8_TARGET_BUT_UTF8_REQUIRED(phooey);
3563 ch = SvPVX_const(prog->anchored_substr)[0];
3564 REXEC_FBC_SCAN(0, /* 0=>not-utf8 */
3566 DEBUG_EXECUTE_r( did_match = 1 );
3567 if (regtry(reginfo, &s)) goto got_it;
3569 while (s < strend && *s == ch)
3574 DEBUG_EXECUTE_r(if (!did_match)
3575 Perl_re_printf( aTHX_
3576 "Did not find anchored character...\n")
3579 else if (prog->anchored_substr != NULL
3580 || prog->anchored_utf8 != NULL
3581 || ((prog->float_substr != NULL || prog->float_utf8 != NULL)
3582 && prog->float_max_offset < strend - s)) {
3587 char *last1; /* Last position checked before */
3591 if (prog->anchored_substr || prog->anchored_utf8) {
3593 if (! prog->anchored_utf8) {
3594 to_utf8_substr(prog);
3596 must = prog->anchored_utf8;
3599 if (! prog->anchored_substr) {
3600 if (! to_byte_substr(prog)) {
3601 NON_UTF8_TARGET_BUT_UTF8_REQUIRED(phooey);
3604 must = prog->anchored_substr;
3606 back_max = back_min = prog->anchored_offset;
3609 if (! prog->float_utf8) {
3610 to_utf8_substr(prog);
3612 must = prog->float_utf8;
3615 if (! prog->float_substr) {
3616 if (! to_byte_substr(prog)) {
3617 NON_UTF8_TARGET_BUT_UTF8_REQUIRED(phooey);
3620 must = prog->float_substr;
3622 back_max = prog->float_max_offset;
3623 back_min = prog->float_min_offset;
3629 last = HOP3c(strend, /* Cannot start after this */
3630 -(SSize_t)(CHR_SVLEN(must)
3631 - (SvTAIL(must) != 0) + back_min), strbeg);
3633 if (s > reginfo->strbeg)
3634 last1 = HOPc(s, -1);
3636 last1 = s - 1; /* bogus */
3638 /* XXXX check_substr already used to find "s", can optimize if
3639 check_substr==must. */
3641 strend = HOPc(strend, -dontbother);
3642 while ( (s <= last) &&
3643 (s = fbm_instr((unsigned char*)HOP4c(s, back_min, strbeg, strend),
3644 (unsigned char*)strend, must,
3645 multiline ? FBMrf_MULTILINE : 0)) ) {
3646 DEBUG_EXECUTE_r( did_match = 1 );
3647 if (HOPc(s, -back_max) > last1) {
3648 last1 = HOPc(s, -back_min);
3649 s = HOPc(s, -back_max);
3652 char * const t = (last1 >= reginfo->strbeg)
3653 ? HOPc(last1, 1) : last1 + 1;
3655 last1 = HOPc(s, -back_min);
3659 while (s <= last1) {
3660 if (regtry(reginfo, &s))
3663 s++; /* to break out of outer loop */
3670 while (s <= last1) {
3671 if (regtry(reginfo, &s))
3677 DEBUG_EXECUTE_r(if (!did_match) {
3678 RE_PV_QUOTED_DECL(quoted, utf8_target, PERL_DEBUG_PAD_ZERO(0),
3679 SvPVX_const(must), RE_SV_DUMPLEN(must), 30);
3680 Perl_re_printf( aTHX_ "Did not find %s substr %s%s...\n",
3681 ((must == prog->anchored_substr || must == prog->anchored_utf8)
3682 ? "anchored" : "floating"),
3683 quoted, RE_SV_TAIL(must));
3687 else if ( (c = progi->regstclass) ) {
3689 const OPCODE op = OP(progi->regstclass);
3690 /* don't bother with what can't match */
3691 if (PL_regkind[op] != EXACT && PL_regkind[op] != TRIE)
3692 strend = HOPc(strend, -(minlen - 1));
3695 SV * const prop = sv_newmortal();
3696 regprop(prog, prop, c, reginfo, NULL);
3698 RE_PV_QUOTED_DECL(quoted,utf8_target,PERL_DEBUG_PAD_ZERO(1),
3699 s,strend-s,PL_dump_re_max_len);
3700 Perl_re_printf( aTHX_
3701 "Matching stclass %.*s against %s (%d bytes)\n",
3702 (int)SvCUR(prop), SvPVX_const(prop),
3703 quoted, (int)(strend - s));
3706 if (find_byclass(prog, c, s, strend, reginfo))
3708 DEBUG_EXECUTE_r(Perl_re_printf( aTHX_ "Contradicts stclass... [regexec_flags]\n"));
3712 if (prog->float_substr != NULL || prog->float_utf8 != NULL) {
3720 if (! prog->float_utf8) {
3721 to_utf8_substr(prog);
3723 float_real = prog->float_utf8;
3726 if (! prog->float_substr) {
3727 if (! to_byte_substr(prog)) {
3728 NON_UTF8_TARGET_BUT_UTF8_REQUIRED(phooey);
3731 float_real = prog->float_substr;
3734 little = SvPV_const(float_real, len);
3735 if (SvTAIL(float_real)) {
3736 /* This means that float_real contains an artificial \n on
3737 * the end due to the presence of something like this:
3738 * /foo$/ where we can match both "foo" and "foo\n" at the
3739 * end of the string. So we have to compare the end of the
3740 * string first against the float_real without the \n and
3741 * then against the full float_real with the string. We
3742 * have to watch out for cases where the string might be
3743 * smaller than the float_real or the float_real without
3745 char *checkpos= strend - len;
3747 Perl_re_printf( aTHX_
3748 "%sChecking for float_real.%s\n",
3749 PL_colors[4], PL_colors[5]));
3750 if (checkpos + 1 < strbeg) {
3751 /* can't match, even if we remove the trailing \n
3752 * string is too short to match */
3754 Perl_re_printf( aTHX_
3755 "%sString shorter than required trailing substring, cannot match.%s\n",
3756 PL_colors[4], PL_colors[5]));
3758 } else if (memEQ(checkpos + 1, little, len - 1)) {
3759 /* can match, the end of the string matches without the
3761 last = checkpos + 1;
3762 } else if (checkpos < strbeg) {
3763 /* cant match, string is too short when the "\n" is
3766 Perl_re_printf( aTHX_
3767 "%sString does not contain required trailing substring, cannot match.%s\n",
3768 PL_colors[4], PL_colors[5]));
3770 } else if (!multiline) {
3771 /* non multiline match, so compare with the "\n" at the
3772 * end of the string */
3773 if (memEQ(checkpos, little, len)) {
3777 Perl_re_printf( aTHX_
3778 "%sString does not contain required trailing substring, cannot match.%s\n",
3779 PL_colors[4], PL_colors[5]));
3783 /* multiline match, so we have to search for a place
3784 * where the full string is located */
3790 last = rninstr(s, strend, little, little + len);
3792 last = strend; /* matching "$" */
3795 /* at one point this block contained a comment which was
3796 * probably incorrect, which said that this was a "should not
3797 * happen" case. Even if it was true when it was written I am
3798 * pretty sure it is not anymore, so I have removed the comment
3799 * and replaced it with this one. Yves */
3801 Perl_re_printf( aTHX_
3802 "%sString does not contain required substring, cannot match.%s\n",
3803 PL_colors[4], PL_colors[5]
3807 dontbother = strend - last + prog->float_min_offset;
3809 if (minlen && (dontbother < minlen))
3810 dontbother = minlen - 1;
3811 strend -= dontbother; /* this one's always in bytes! */
3812 /* We don't know much -- general case. */