Skip to content

Commit

Permalink
simpify and speed up /.*.../ handling
Browse files Browse the repository at this point in the history
See RT ##123743.

A pattern that starts /.*/ has a fake MBOL or SBOL flag added, along
with PREGf_IMPLICIT.

The idea is that, with /.*.../s, if the NFA don't match when started at
pos 0, then it's not going to match if started at any other position
either; while /.*.../ won't match at any other start position up until
the next \n.

However, the branch in regexec() that implemented this was a bit a mess
(like much in the perl core, it had gradually accreted), and caused
intuit-enabled /.*.../ and /.*...patterns to go quadratic.

The branch looked roughly like:

    if (anchored) {
        if (regtry(s)) goto success;
        if (can_intuit) {
            while (s < end) {
                s = intuit(s+1);
                if (!s) goto fail;
                if (regtry(s)) goto success;
            }
        }
        else {
            while (s < end) {
                s = skip_to_next_newline(s);
                if (regtry(s)) goto success;
            }
        }
    }

The problem is that in the presence of a .* at the start of the pattern,
intuit() will always return either NULL on failure, or the start position,
rather than any later position. So the can_intuit branch above calls
regtry() on every character position.

This commit fixes this by changing the structure of the code to be like
this, where it only tries things on newline boundaries:

    if (anchored) {
        if (regtry(s)) goto success;
        while (1) {
            s = skip_to_next_newline(s);
            if (can_intuit) {
                s = intuit(s+1);
                if (!s) goto fail;
            }
            if (regtry(s)) goto success;
        }
    }

This makes the code a lot simpler, and mostly avoids quadratic behaviour
(you can still get it with a string consisting mainly of newlines).
  • Loading branch information
iabyn committed Feb 10, 2015
1 parent 5904c5c commit 0fa70a0
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 80 deletions.
124 changes: 45 additions & 79 deletions regexec.c
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ Perl_re_intuit_start(pTHX_

/* ml_anch: check after \n?
*
* A note about IMPLICIT: on an un-anchored pattern beginning
* A note about PREGf_IMPLICIT: on an un-anchored pattern beginning
* with /.*.../, these flags will have been added by the
* compiler:
* /.*abc/, /.*abc/m: PREGf_IMPLICIT | PREGf_ANCH_MBOL
Expand Down Expand Up @@ -2755,86 +2755,52 @@ Perl_regexec_flags(pTHX_ REGEXP * const rx, char *stringarg, char *strend,
));
}

/* Simplest case: anchored match need be tried only once. */
/* [unless only anchor is MBOL - implying multiline is set] */
/* Simplest case: anchored match need be tried only once, or with
* MBOL, only at the beginning of each line.
*
* Note that /.*.../ sets PREGf_IMPLICIT|MBOL, while /.*.../s sets
* PREGf_IMPLICIT|SBOL. The idea is that with /.*.../s, if it doesn't
* match at the start of the string then it won't match anywhere else
* either; while with /.*.../, if it doesn't match at the beginning,
* the earliest it could match is at the start of the next line */

if (prog->intflags & (PREGf_ANCH & ~PREGf_ANCH_GPOS)) {
if (s == startpos && regtry(reginfo, &s))
char *end;

if (regtry(reginfo, &s))
goto got_it;
else if (multiline || (prog->intflags & (PREGf_IMPLICIT | PREGf_ANCH_MBOL))) /* XXXX SBOL? */
{
char *end;

if (minlen)
dontbother = minlen - 1;
end = HOP3c(strend, -dontbother, strbeg) - 1;
/* for multiline we only have to try after newlines */
if (prog->check_substr || prog->check_utf8) {
/* because of the goto we can not easily reuse the macros for bifurcating the
unicode/non-unicode match modes here like we do elsewhere - demerphq */
if (utf8_target) {
if (s == startpos)
goto after_try_utf8;
while (1) {
if (regtry(reginfo, &s)) {
goto got_it;
}
after_try_utf8:
if (s > end) {
goto phooey;
}
if (prog->extflags & RXf_USE_INTUIT) {
s = re_intuit_start(rx, sv, strbeg,
s + UTF8SKIP(s), strend, flags, NULL);
if (!s) {
goto phooey;
}
}
else {
s += UTF8SKIP(s);
}
}
} /* end search for check string in unicode */
else {
if (s == startpos) {
goto after_try_latin;
}
while (1) {
if (regtry(reginfo, &s)) {
goto got_it;
}
after_try_latin:
if (s > end) {
goto phooey;
}
if (prog->extflags & RXf_USE_INTUIT) {
s = re_intuit_start(rx, sv, strbeg,
s + 1, strend, flags, NULL);
if (!s) {
goto phooey;
}
}
else {
s++;
}
}
} /* end search for check string in latin*/
} /* end search for check string */
else { /* search for newline */
if (s > startpos) {
/*XXX: The s-- is almost definitely wrong here under unicode - demeprhq*/
s--;
}
/* We can use a more efficient search as newlines are the same in unicode as they are in latin */
while (s <= end) { /* note it could be possible to match at the end of the string */
if (*s++ == '\n') { /* don't need PL_utf8skip here */
if (regtry(reginfo, &s))
goto got_it;
}
}
} /* end search for newline */
} /* end anchored/multiline check string search */
goto phooey;
} else if (prog->intflags & PREGf_ANCH_GPOS)

if (!(prog->intflags & PREGf_ANCH_MBOL))
goto phooey;

/* didn't match at start, try at other newline positions */

if (minlen)
dontbother = minlen - 1;
end = HOP3c(strend, -dontbother, strbeg) - 1;

/* skip to next newline */

while (s <= end) { /* note it could be possible to match at the end of the string */
/* NB: newlines are the same in unicode as they are in latin */
if (*s++ != '\n')
continue;
if (prog->check_substr || prog->check_utf8) {
/* note that with PREGf_IMPLICIT, intuit can only fail
* or return the start position, so it's of limited utility.
* Nevertheless, I made the decision that the potential for
* quick fail was still worth it - DAPM */
s = re_intuit_start(rx, sv, strbeg, s, strend, flags, NULL);
if (!s)
goto phooey;
}
if (regtry(reginfo, &s))
goto got_it;
}
goto phooey;
} /* end anchored search */

if (prog->intflags & PREGf_ANCH_GPOS)
{
/* PREGf_ANCH_GPOS should never be true if PREGf_GPOS_SEEN is not true */
assert(prog->intflags & PREGf_GPOS_SEEN);
Expand Down
14 changes: 13 additions & 1 deletion t/re/speed.t
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ BEGIN {
skip_all_without_unicode_tables();
}

plan tests => 9; # Update this when adding/deleting tests.
plan tests => 17; # Update this when adding/deleting tests.

use strict;
use warnings;
Expand Down Expand Up @@ -98,6 +98,18 @@ sub run_tests {
$s =~ /^XX\d{1,10}cde/ for 1..100;
pass("abs anchored float string should fail quickly");

# if /.*.../ fails to be optimised well (PREGf_IMPLICIT),
# things tend to go quadratic (RT #123743)

$s = ('0' x 200_000) . '::: 0c';
ok ($s !~ /.*:::\s*ab/, 'PREGf_IMPLICIT');
ok ($s !~ /.*:::\s*ab/i, 'PREGf_IMPLICIT/i');
ok ($s !~ /.*:::\s*ab/m, 'PREGf_IMPLICIT/m');
ok ($s !~ /.*:::\s*ab/mi, 'PREGf_IMPLICIT/mi');
ok ($s !~ /.*:::\s*ab/s, 'PREGf_IMPLICIT/s');
ok ($s !~ /.*:::\s*ab/si, 'PREGf_IMPLICIT/si');
ok ($s !~ /.*:::\s*ab/ms, 'PREGf_IMPLICIT/ms');
ok ($s !~ /.*:::\s*ab/msi,'PREGf_IMPLICIT/msi');
}

} # End of sub run_tests
Expand Down

0 comments on commit 0fa70a0

Please sign in to comment.