Skip to content

Commit 5800dc1

Browse files
committed
New slice indexing pre-codegen MIR test
1 parent aa31bad commit 5800dc1

3 files changed

+47
-0
lines changed

tests/mir-opt/pre-codegen/slice_index.rs

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
44

55
#![crate_type = "lib"]
6+
#![feature(slice_ptr_get)]
67

78
use std::ops::Range;
89

@@ -25,3 +26,11 @@ pub fn slice_index_range(slice: &[u32], index: Range<usize>) -> &[u32] {
2526
pub unsafe fn slice_get_unchecked_mut_range(slice: &mut [u32], index: Range<usize>) -> &mut [u32] {
2627
slice.get_unchecked_mut(index)
2728
}
29+
30+
// EMIT_MIR slice_index.slice_ptr_get_unchecked_range.PreCodegen.after.mir
31+
pub unsafe fn slice_ptr_get_unchecked_range(
32+
slice: *const [u32],
33+
index: Range<usize>,
34+
) -> *const [u32] {
35+
slice.get_unchecked(index)
36+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// MIR for `slice_ptr_get_unchecked_range` after PreCodegen
2+
3+
fn slice_ptr_get_unchecked_range(_1: *const [u32], _2: std::ops::Range<usize>) -> *const [u32] {
4+
debug slice => _1;
5+
debug index => _2;
6+
let mut _0: *const [u32];
7+
scope 1 (inlined std::ptr::const_ptr::<impl *const [u32]>::get_unchecked::<std::ops::Range<usize>>) {
8+
debug self => _1;
9+
debug index => _2;
10+
}
11+
12+
bb0: {
13+
_0 = <std::ops::Range<usize> as SliceIndex<[u32]>>::get_unchecked(move _2, move _1) -> [return: bb1, unwind unreachable];
14+
}
15+
16+
bb1: {
17+
return;
18+
}
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// MIR for `slice_ptr_get_unchecked_range` after PreCodegen
2+
3+
fn slice_ptr_get_unchecked_range(_1: *const [u32], _2: std::ops::Range<usize>) -> *const [u32] {
4+
debug slice => _1;
5+
debug index => _2;
6+
let mut _0: *const [u32];
7+
scope 1 (inlined std::ptr::const_ptr::<impl *const [u32]>::get_unchecked::<std::ops::Range<usize>>) {
8+
debug self => _1;
9+
debug index => _2;
10+
}
11+
12+
bb0: {
13+
_0 = <std::ops::Range<usize> as SliceIndex<[u32]>>::get_unchecked(move _2, move _1) -> [return: bb1, unwind continue];
14+
}
15+
16+
bb1: {
17+
return;
18+
}
19+
}

0 commit comments

Comments
 (0)