[libc++] Remove a few unnecessary branches from basic_string::find #137266
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.
I've recently looked at the assembly for
basic_string::find()
and realized that there were a few branches I didn't expect. It turns out that we check for null before calling__constexpr_memchr
in some cases, which the compiler doesn't optimize away. This is a really uncommon case though, so I'm not convinced it makes a ton of sense to optimize for that.The second case is where
__pos >= __sz
. There, we can instead check__pos > __sz
, which the optimizer is able to remove if__pos == 0
, which is also a quite common case (basic_string::find(CharT), without an explicit size parameter).