<regex>: Implement small vector optimization for state frames#6147
Merged
StephanTLavavej merged 11 commits intoMar 10, 2026
Merged
Conversation
muellerj2
commented
Mar 6, 2026
muellerj2
commented
Mar 6, 2026
… the end for consistency with _Rx_fixed_size_buffer
StephanTLavavej
approved these changes
Mar 9, 2026
Member
|
I'm mirroring this to the MSVC-internal repo. Please notify me if any further changes are pushed, otherwise no action is required. |
Member
|
Thanks for this incredible series of PRs for 14.51! 😻 📈 🎉 |
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.
Resolves #5969.
This adds a minimal implementation of a vector variant that supports small vector optimization. As its initial storage area, it uses what is left of the stack-allocated buffer after all the other buffers used by the matcher have been initialized. If more memory is necessary, it reallocates like
std::vectorat the same rate of growth (factor 1.5).Drive-by change:
vector,_Rx_fixed_size_bufferand_Rx_small_vector.Benchmarks
regex_search
regex_match