Skip to content

Commit 0b25619

Browse files
authored
Unrolled build for #125796
Rollup merge of #125796 - scottmcm:more-inst-simplify, r=oli-obk Also InstSimplify `&raw*` We do this for `&*` and `&mut*` already; might as well do it for raw pointers too. r? mir-opt
2 parents 2a2c29a + 4b96e44 commit 0b25619

File tree

4 files changed

+157
-1
lines changed

4 files changed

+157
-1
lines changed

compiler/rustc_mir_transform/src/instsimplify.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ impl<'tcx> InstSimplifyContext<'tcx, '_> {
123123

124124
/// Transform `&(*a)` ==> `a`.
125125
fn simplify_ref_deref(&self, source_info: &SourceInfo, rvalue: &mut Rvalue<'tcx>) {
126-
if let Rvalue::Ref(_, _, place) = rvalue {
126+
if let Rvalue::Ref(_, _, place) | Rvalue::AddressOf(_, place) = rvalue {
127127
if let Some((base, ProjectionElem::Deref)) = place.as_ref().last_projection() {
128128
if rvalue.ty(self.local_decls, self.tcx) != base.ty(self.local_decls, self.tcx).ty {
129129
return;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
- // MIR for `pointers` before InstSimplify
2+
+ // MIR for `pointers` after InstSimplify
3+
4+
fn pointers(_1: *const [i32], _2: *mut i32) -> () {
5+
debug const_ptr => _1;
6+
debug mut_ptr => _2;
7+
let mut _0: ();
8+
let _3: &[i32];
9+
scope 1 {
10+
debug _a => _3;
11+
let _4: &i32;
12+
scope 2 {
13+
debug _b => _4;
14+
let _5: &mut i32;
15+
scope 3 {
16+
debug _c => _5;
17+
let _6: *const [i32];
18+
scope 4 {
19+
debug _d => _6;
20+
let _7: *const i32;
21+
scope 5 {
22+
debug _e => _7;
23+
let _8: *mut i32;
24+
scope 6 {
25+
debug _f => _8;
26+
}
27+
}
28+
}
29+
}
30+
}
31+
}
32+
33+
bb0: {
34+
StorageLive(_3);
35+
_3 = &(*_1);
36+
StorageLive(_4);
37+
_4 = &(*_2);
38+
StorageLive(_5);
39+
_5 = &mut (*_2);
40+
StorageLive(_6);
41+
- _6 = &raw const (*_1);
42+
+ _6 = _1;
43+
StorageLive(_7);
44+
_7 = &raw const (*_2);
45+
StorageLive(_8);
46+
- _8 = &raw mut (*_2);
47+
+ _8 = _2;
48+
_0 = const ();
49+
StorageDead(_8);
50+
StorageDead(_7);
51+
StorageDead(_6);
52+
StorageDead(_5);
53+
StorageDead(_4);
54+
StorageDead(_3);
55+
return;
56+
}
57+
}
58+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
- // MIR for `references` before InstSimplify
2+
+ // MIR for `references` after InstSimplify
3+
4+
fn references(_1: &i32, _2: &mut [i32]) -> () {
5+
debug const_ref => _1;
6+
debug mut_ref => _2;
7+
let mut _0: ();
8+
let _3: &i32;
9+
scope 1 {
10+
debug _a => _3;
11+
let _4: &[i32];
12+
scope 2 {
13+
debug _b => _4;
14+
let _5: &mut [i32];
15+
scope 3 {
16+
debug _c => _5;
17+
let _6: *const i32;
18+
scope 4 {
19+
debug _d => _6;
20+
let _7: *const [i32];
21+
scope 5 {
22+
debug _e => _7;
23+
let _8: *mut [i32];
24+
scope 6 {
25+
debug _f => _8;
26+
}
27+
}
28+
}
29+
}
30+
}
31+
}
32+
33+
bb0: {
34+
StorageLive(_3);
35+
- _3 = &(*_1);
36+
+ _3 = _1;
37+
StorageLive(_4);
38+
_4 = &(*_2);
39+
StorageLive(_5);
40+
- _5 = &mut (*_2);
41+
+ _5 = _2;
42+
StorageLive(_6);
43+
_6 = &raw const (*_1);
44+
StorageLive(_7);
45+
_7 = &raw const (*_2);
46+
StorageLive(_8);
47+
_8 = &raw mut (*_2);
48+
_0 = const ();
49+
StorageDead(_8);
50+
StorageDead(_7);
51+
StorageDead(_6);
52+
StorageDead(_5);
53+
StorageDead(_4);
54+
StorageDead(_3);
55+
return;
56+
}
57+
}
58+
+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
//@ test-mir-pass: InstSimplify
2+
#![crate_type = "lib"]
3+
#![feature(raw_ref_op)]
4+
5+
// For each of these, only 2 of the 6 should simplify,
6+
// as the others have the wrong types.
7+
8+
// EMIT_MIR ref_of_deref.references.InstSimplify.diff
9+
// CHECK-LABEL: references
10+
pub fn references(const_ref: &i32, mut_ref: &mut [i32]) {
11+
// CHECK: _3 = _1;
12+
let _a = &*const_ref;
13+
// CHECK: _4 = &(*_2);
14+
let _b = &*mut_ref;
15+
// CHECK: _5 = _2;
16+
let _c = &mut *mut_ref;
17+
// CHECK: _6 = &raw const (*_1);
18+
let _d = &raw const *const_ref;
19+
// CHECK: _7 = &raw const (*_2);
20+
let _e = &raw const *mut_ref;
21+
// CHECK: _8 = &raw mut (*_2);
22+
let _f = &raw mut *mut_ref;
23+
}
24+
25+
// EMIT_MIR ref_of_deref.pointers.InstSimplify.diff
26+
// CHECK-LABEL: pointers
27+
pub unsafe fn pointers(const_ptr: *const [i32], mut_ptr: *mut i32) {
28+
// CHECK: _3 = &(*_1);
29+
let _a = &*const_ptr;
30+
// CHECK: _4 = &(*_2);
31+
let _b = &*mut_ptr;
32+
// CHECK: _5 = &mut (*_2);
33+
let _c = &mut *mut_ptr;
34+
// CHECK: _6 = _1;
35+
let _d = &raw const *const_ptr;
36+
// CHECK: _7 = &raw const (*_2);
37+
let _e = &raw const *mut_ptr;
38+
// CHECK: _8 = _2;
39+
let _f = &raw mut *mut_ptr;
40+
}

0 commit comments

Comments
 (0)