@@ -1741,6 +1741,7 @@ fn simd_contains(needle: &str, haystack: &str) -> Option<bool> {
1741
1741
use crate :: simd:: { SimdPartialEq , ToBitMask } ;
1742
1742
1743
1743
let first_probe = needle[ 0 ] ;
1744
+ let last_byte_offset = needle. len ( ) - 1 ;
1744
1745
1745
1746
// the offset used for the 2nd vector
1746
1747
let second_probe_offset = if needle. len ( ) == 2 {
@@ -1758,7 +1759,7 @@ fn simd_contains(needle: &str, haystack: &str) -> Option<bool> {
1758
1759
} ;
1759
1760
1760
1761
// do a naive search if the haystack is too small to fit
1761
- if haystack. len ( ) < Block :: LANES + second_probe_offset {
1762
+ if haystack. len ( ) < Block :: LANES + last_byte_offset {
1762
1763
return Some ( haystack. windows ( needle. len ( ) ) . any ( |c| c == needle) ) ;
1763
1764
}
1764
1765
@@ -1815,7 +1816,7 @@ fn simd_contains(needle: &str, haystack: &str) -> Option<bool> {
1815
1816
// The loop condition must ensure that there's enough headroom to read LANE bytes,
1816
1817
// and not only at the current index but also at the index shifted by block_offset
1817
1818
const UNROLL : usize = 4 ;
1818
- while i + second_probe_offset + UNROLL * Block :: LANES < haystack. len ( ) && !result {
1819
+ while i + last_byte_offset + UNROLL * Block :: LANES < haystack. len ( ) && !result {
1819
1820
let mut masks = [ 0u16 ; UNROLL ] ;
1820
1821
for j in 0 ..UNROLL {
1821
1822
masks[ j] = test_chunk ( i + j * Block :: LANES ) ;
@@ -1828,7 +1829,7 @@ fn simd_contains(needle: &str, haystack: &str) -> Option<bool> {
1828
1829
}
1829
1830
i += UNROLL * Block :: LANES ;
1830
1831
}
1831
- while i + second_probe_offset + Block :: LANES < haystack. len ( ) && !result {
1832
+ while i + last_byte_offset + Block :: LANES < haystack. len ( ) && !result {
1832
1833
let mask = test_chunk ( i) ;
1833
1834
if mask != 0 {
1834
1835
result |= check_mask ( i, mask, result) ;
@@ -1840,7 +1841,7 @@ fn simd_contains(needle: &str, haystack: &str) -> Option<bool> {
1840
1841
// This simply repeats the same procedure but as right-aligned chunk instead
1841
1842
// of a left-aligned one. The last byte must be exactly flush with the string end so
1842
1843
// we don't miss a single byte or read out of bounds.
1843
- let i = haystack. len ( ) - second_probe_offset - Block :: LANES ;
1844
+ let i = haystack. len ( ) - last_byte_offset - Block :: LANES ;
1844
1845
let mask = test_chunk ( i) ;
1845
1846
if mask != 0 {
1846
1847
result |= check_mask ( i, mask, result) ;
@@ -1860,6 +1861,7 @@ fn simd_contains(needle: &str, haystack: &str) -> Option<bool> {
1860
1861
#[ cfg( all( target_arch = "x86_64" , target_feature = "sse2" ) ) ] // only called on x86
1861
1862
#[ inline]
1862
1863
unsafe fn small_slice_eq ( x : & [ u8 ] , y : & [ u8 ] ) -> bool {
1864
+ debug_assert_eq ! ( x. len( ) , y. len( ) ) ;
1863
1865
// This function is adapted from
1864
1866
// https://github.com/BurntSushi/memchr/blob/8037d11b4357b0f07be2bb66dc2659d9cf28ad32/src/memmem/util.rs#L32
1865
1867
0 commit comments