Skip to content

Commit 274bb24

Browse files
author
Ulrik Sverdrup
committed
StrSearcher: Explicitly separate the long and short cases
This is needed to not drop performance, after the trait-based changes. Force separate versions of the next method to be generated for the short and long period cases.
1 parent 71006bd commit 274bb24

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

src/libcore/str/pattern.rs

+11-5
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ unsafe impl<'a, 'b> Searcher<'a> for StrSearcher<'a, 'b> {
628628
}
629629
}
630630

631-
#[inline]
631+
#[inline(always)]
632632
fn next_match(&mut self) -> Option<(usize, usize)> {
633633
match self.searcher {
634634
StrSearcherImpl::Empty(..) => {
@@ -642,9 +642,15 @@ unsafe impl<'a, 'b> Searcher<'a> for StrSearcher<'a, 'b> {
642642
}
643643
StrSearcherImpl::TwoWay(ref mut searcher) => {
644644
let is_long = searcher.memory == usize::MAX;
645-
searcher.next::<MatchOnly>(self.haystack.as_bytes(),
646-
self.needle.as_bytes(),
647-
is_long)
645+
if is_long {
646+
searcher.next::<MatchOnly>(self.haystack.as_bytes(),
647+
self.needle.as_bytes(),
648+
true)
649+
} else {
650+
searcher.next::<MatchOnly>(self.haystack.as_bytes(),
651+
self.needle.as_bytes(),
652+
false)
653+
}
648654
}
649655
}
650656
}
@@ -854,7 +860,7 @@ impl TwoWaySearcher {
854860
// left to right. If v matches, we try to match u by scanning right to left.
855861
// How far we can jump when we encounter a mismatch is all based on the fact
856862
// that (u, v) is a critical factorization for the needle.
857-
#[inline]
863+
#[inline(always)]
858864
fn next<S>(&mut self, haystack: &[u8], needle: &[u8], long_period: bool)
859865
-> S::Output
860866
where S: TwoWayStrategy

0 commit comments

Comments
 (0)