mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
Auto merge of #74510 - LukasKalbertodt:fix-range-from-index-panic, r=hanna-kruppe
Fix panic message when `RangeFrom` index is out of bounds Before, the `Range` method was called with `end = slice.len()`. Unfortunately, because `Range::index` first checks the order of the indices (start has to be smaller than end), an out of bounds index leads to `core::slice::slice_index_order_fail` being called. This prints the message 'slice index starts at 27 but ends at 10', which is worse than 'index 27 out of range for slice of length 10'. This is not only useful to normal users reading panic messages, but also for people inspecting assembly and being confused by `slice_index_order_fail` calls. You can see the produced assembly [here](https://rust.godbolt.org/z/GzMGWf) and try on Playground [here](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=aada5996b2f3848075a6d02cf4055743). (By the way. this is only about which panic function is called; I'm pretty sure it does not improve anything about performance).
This commit is contained in:
commit
fe08fb7b1e
@ -2974,8 +2974,15 @@ where
|
||||
#[inline(never)]
|
||||
#[cold]
|
||||
#[track_caller]
|
||||
fn slice_index_len_fail(index: usize, len: usize) -> ! {
|
||||
panic!("index {} out of range for slice of length {}", index, len);
|
||||
fn slice_start_index_len_fail(index: usize, len: usize) -> ! {
|
||||
panic!("range start index {} out of range for slice of length {}", index, len);
|
||||
}
|
||||
|
||||
#[inline(never)]
|
||||
#[cold]
|
||||
#[track_caller]
|
||||
fn slice_end_index_len_fail(index: usize, len: usize) -> ! {
|
||||
panic!("range end index {} out of range for slice of length {}", index, len);
|
||||
}
|
||||
|
||||
#[inline(never)]
|
||||
@ -3160,7 +3167,7 @@ unsafe impl<T> SliceIndex<[T]> for ops::Range<usize> {
|
||||
if self.start > self.end {
|
||||
slice_index_order_fail(self.start, self.end);
|
||||
} else if self.end > slice.len() {
|
||||
slice_index_len_fail(self.end, slice.len());
|
||||
slice_end_index_len_fail(self.end, slice.len());
|
||||
}
|
||||
unsafe { &*self.get_unchecked(slice) }
|
||||
}
|
||||
@ -3170,7 +3177,7 @@ unsafe impl<T> SliceIndex<[T]> for ops::Range<usize> {
|
||||
if self.start > self.end {
|
||||
slice_index_order_fail(self.start, self.end);
|
||||
} else if self.end > slice.len() {
|
||||
slice_index_len_fail(self.end, slice.len());
|
||||
slice_end_index_len_fail(self.end, slice.len());
|
||||
}
|
||||
unsafe { &mut *self.get_unchecked_mut(slice) }
|
||||
}
|
||||
@ -3241,12 +3248,18 @@ unsafe impl<T> SliceIndex<[T]> for ops::RangeFrom<usize> {
|
||||
|
||||
#[inline]
|
||||
fn index(self, slice: &[T]) -> &[T] {
|
||||
(self.start..slice.len()).index(slice)
|
||||
if self.start > slice.len() {
|
||||
slice_start_index_len_fail(self.start, slice.len());
|
||||
}
|
||||
unsafe { &*self.get_unchecked(slice) }
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn index_mut(self, slice: &mut [T]) -> &mut [T] {
|
||||
(self.start..slice.len()).index_mut(slice)
|
||||
if self.start > slice.len() {
|
||||
slice_start_index_len_fail(self.start, slice.len());
|
||||
}
|
||||
unsafe { &mut *self.get_unchecked_mut(slice) }
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1088,7 +1088,7 @@ mod slice_index {
|
||||
|
||||
good: data[6..] == [];
|
||||
bad: data[7..];
|
||||
message: "but ends at"; // perhaps not ideal
|
||||
message: "out of range";
|
||||
}
|
||||
|
||||
in mod rangeto_len {
|
||||
|
@ -12,7 +12,7 @@
|
||||
// CHECK-LABEL: @already_sliced_no_bounds_check
|
||||
#[no_mangle]
|
||||
pub fn already_sliced_no_bounds_check(a: &[u8], b: &[u8], c: &mut [u8]) {
|
||||
// CHECK: slice_index_len_fail
|
||||
// CHECK: slice_end_index_len_fail
|
||||
// CHECK-NOT: panic_bounds_check
|
||||
let _ = (&a[..2048], &b[..2048], &mut c[..2048]);
|
||||
for i in 0..1024 {
|
||||
@ -23,7 +23,7 @@ pub fn already_sliced_no_bounds_check(a: &[u8], b: &[u8], c: &mut [u8]) {
|
||||
// CHECK-LABEL: @already_sliced_no_bounds_check_exact
|
||||
#[no_mangle]
|
||||
pub fn already_sliced_no_bounds_check_exact(a: &[u8], b: &[u8], c: &mut [u8]) {
|
||||
// CHECK: slice_index_len_fail
|
||||
// CHECK: slice_end_index_len_fail
|
||||
// CHECK-NOT: panic_bounds_check
|
||||
let _ = (&a[..1024], &b[..1024], &mut c[..1024]);
|
||||
for i in 0..1024 {
|
||||
@ -35,7 +35,7 @@ pub fn already_sliced_no_bounds_check_exact(a: &[u8], b: &[u8], c: &mut [u8]) {
|
||||
// CHECK-LABEL: @already_sliced_bounds_check
|
||||
#[no_mangle]
|
||||
pub fn already_sliced_bounds_check(a: &[u8], b: &[u8], c: &mut [u8]) {
|
||||
// CHECK: slice_index_len_fail
|
||||
// CHECK: slice_end_index_len_fail
|
||||
// CHECK: panic_bounds_check
|
||||
let _ = (&a[..1023], &b[..2048], &mut c[..2048]);
|
||||
for i in 0..1024 {
|
||||
|
Loading…
Reference in New Issue
Block a user