Apply Regex starting loop optimization to non-atomic loops as well#35936
Merged
stephentoub merged 2 commits intodotnet:masterfrom May 9, 2020
Merged
Apply Regex starting loop optimization to non-atomic loops as well#35936stephentoub merged 2 commits intodotnet:masterfrom
stephentoub merged 2 commits intodotnet:masterfrom
Conversation
|
Tagging subscribers to this area: @eerhardt |
|
I missed this PR somehow. I'll go over the logic and comment/approve tomorrow |
The node.N > 0 restriction isn't necessary, and prevents this optimization from being used with * loops. Worst case, the loop doesn't match anything, and we pay to overwrite the starting position with itself. Best case, we eliminate a ton of cost.
This was referenced May 8, 2020
Closed
eerhardt
approved these changes
May 8, 2020
Member
eerhardt
left a comment
There was a problem hiding this comment.
I can't think of a reason why this would break. If you are convinced it is correct, I think that's good enough for me. 😉
src/libraries/System.Text.RegularExpressions/src/System/Text/RegularExpressions/RegexNode.cs
Show resolved
Hide resolved
pgovind
approved these changes
May 8, 2020
pgovind
left a comment
There was a problem hiding this comment.
Alright, this looks good to me. I spent some time going over the parsing logic , ran some patterns locally and am reasonably convinced that this is a safe change.
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
@danmosemsft, @eerhardt, @pgovind, this appears sound, but it'd be great if you could double-check me on it.