Skip to content

Commit 74dc146

Browse files
committed
Explain explicit slicing in slice cmp and partial_cmp methods
The explicit slicing is needed in order to enable additional range check optimizations in the compiler.
1 parent 08b9edf commit 74dc146

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/libcore/slice.rs

+6
Original file line numberDiff line numberDiff line change
@@ -1560,6 +1560,9 @@ impl<T: Eq> Eq for [T] {}
15601560
impl<T: Ord> Ord for [T] {
15611561
fn cmp(&self, other: &[T]) -> Ordering {
15621562
let l = cmp::min(self.len(), other.len());
1563+
1564+
// Slice to the loop iteration range to enable bound check
1565+
// elimination in the compiler
15631566
let lhs = &self[..l];
15641567
let rhs = &other[..l];
15651568

@@ -1578,6 +1581,9 @@ impl<T: Ord> Ord for [T] {
15781581
impl<T: PartialOrd> PartialOrd for [T] {
15791582
fn partial_cmp(&self, other: &[T]) -> Option<Ordering> {
15801583
let l = cmp::min(self.len(), other.len());
1584+
1585+
// Slice to the loop iteration range to enable bound check
1586+
// elimination in the compiler
15811587
let lhs = &self[..l];
15821588
let rhs = &other[..l];
15831589

0 commit comments

Comments
 (0)