re2: fast path for trailing match-all in Match#607
Open
alkis wants to merge 1 commit intogoogle:mainfrom
Open
Conversation
0d1eab6 to
3193e98
Compare
bc7239d to
51d4819
Compare
When a pattern ends with greedy `.*` DotNL in one line mode, compile a second RE2 with the `.*` stripped. `Match` delegates to the stripped RE2 and extends the results to cover all remaining text, avoiding O(n) scanning of the trailing input. The prefix RE2 is a completely independent object with its own Prog, forward DFA, and reverse DFA. This avoids changing the engines as it keeps the optimization at high level. Fixes google#605.
51d4819 to
e10d5f3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When a pattern ends with greedy
.*DotNL in one line mode, compilea second RE2 with the
.*stripped.Matchdelegates to the strippedRE2 and extends the results to cover all remaining text, avoiding O(n)
scanning of the trailing input.
The prefix RE2 is a completely independent object with its own Prog,
forward DFA, and reverse DFA. This avoids changing the engines as
it keeps the optimization at high level.
Fixes #605.