Skip to content

Commit a61b14d

Browse files
committed
Auto merge of rust-lang#124156 - DianQK:disable-match_branches, r=RalfJung
Disable SimplifyToExp in MatchBranchSimplification Due to the miscompilation mentioned in rust-lang#124150, We need to disable MatchBranchSimplification temporarily. To fully resolve this issue, my plan is: 1. Disable SimplifyToExp in MatchBranchSimplification (this PR). 2. Remove all potentially unclear transforms in rust-lang#124122. 3. Gradually add back the removed transforms (possibly multiple PRs). r? `@Nilstrieb` or `@oli-obk`
2 parents f1bff1f + b52be28 commit a61b14d

9 files changed

+160
-202
lines changed

compiler/rustc_mir_transform/src/match_branches.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ impl<'tcx> MirPass<'tcx> for MatchBranchSimplification {
4141
should_cleanup = true;
4242
continue;
4343
}
44-
if SimplifyToExp::default().simplify(tcx, body, bb_idx, param_env).is_some() {
44+
// unsound: https://github.com/rust-lang/rust/issues/124150
45+
if tcx.sess.opts.unstable_opts.unsound_mir_opts
46+
&& SimplifyToExp::default().simplify(tcx, body, bb_idx, param_env).is_some()
47+
{
4548
should_cleanup = true;
4649
continue;
4750
}

tests/mir-opt/matches_reduce_branches.match_i128_u128.MatchBranchSimplification.diff

+28-33
Original file line numberDiff line numberDiff line change
@@ -5,42 +5,37 @@
55
debug i => _1;
66
let mut _0: u128;
77
let mut _2: i128;
8-
+ let mut _3: i128;
98

109
bb0: {
1110
_2 = discriminant(_1);
12-
- switchInt(move _2) -> [1: bb3, 2: bb4, 3: bb5, 340282366920938463463374607431768211455: bb2, otherwise: bb1];
13-
- }
14-
-
15-
- bb1: {
16-
- unreachable;
17-
- }
18-
-
19-
- bb2: {
20-
- _0 = const core::num::<impl u128>::MAX;
21-
- goto -> bb6;
22-
- }
23-
-
24-
- bb3: {
25-
- _0 = const 1_u128;
26-
- goto -> bb6;
27-
- }
28-
-
29-
- bb4: {
30-
- _0 = const 2_u128;
31-
- goto -> bb6;
32-
- }
33-
-
34-
- bb5: {
35-
- _0 = const 3_u128;
36-
- goto -> bb6;
37-
- }
38-
-
39-
- bb6: {
40-
+ StorageLive(_3);
41-
+ _3 = move _2;
42-
+ _0 = _3 as u128 (IntToInt);
43-
+ StorageDead(_3);
11+
switchInt(move _2) -> [1: bb3, 2: bb4, 3: bb5, 340282366920938463463374607431768211455: bb2, otherwise: bb1];
12+
}
13+
14+
bb1: {
15+
unreachable;
16+
}
17+
18+
bb2: {
19+
_0 = const core::num::<impl u128>::MAX;
20+
goto -> bb6;
21+
}
22+
23+
bb3: {
24+
_0 = const 1_u128;
25+
goto -> bb6;
26+
}
27+
28+
bb4: {
29+
_0 = const 2_u128;
30+
goto -> bb6;
31+
}
32+
33+
bb5: {
34+
_0 = const 3_u128;
35+
goto -> bb6;
36+
}
37+
38+
bb6: {
4439
return;
4540
}
4641
}

tests/mir-opt/matches_reduce_branches.match_i16_i8.MatchBranchSimplification.diff

+23-28
Original file line numberDiff line numberDiff line change
@@ -5,37 +5,32 @@
55
debug i => _1;
66
let mut _0: i8;
77
let mut _2: i16;
8-
+ let mut _3: i16;
98

109
bb0: {
1110
_2 = discriminant(_1);
12-
- switchInt(move _2) -> [65535: bb3, 2: bb4, 65533: bb2, otherwise: bb1];
13-
- }
14-
-
15-
- bb1: {
16-
- unreachable;
17-
- }
18-
-
19-
- bb2: {
20-
- _0 = const -3_i8;
21-
- goto -> bb5;
22-
- }
23-
-
24-
- bb3: {
25-
- _0 = const -1_i8;
26-
- goto -> bb5;
27-
- }
28-
-
29-
- bb4: {
30-
- _0 = const 2_i8;
31-
- goto -> bb5;
32-
- }
33-
-
34-
- bb5: {
35-
+ StorageLive(_3);
36-
+ _3 = move _2;
37-
+ _0 = _3 as i8 (IntToInt);
38-
+ StorageDead(_3);
11+
switchInt(move _2) -> [65535: bb3, 2: bb4, 65533: bb2, otherwise: bb1];
12+
}
13+
14+
bb1: {
15+
unreachable;
16+
}
17+
18+
bb2: {
19+
_0 = const -3_i8;
20+
goto -> bb5;
21+
}
22+
23+
bb3: {
24+
_0 = const -1_i8;
25+
goto -> bb5;
26+
}
27+
28+
bb4: {
29+
_0 = const 2_i8;
30+
goto -> bb5;
31+
}
32+
33+
bb5: {
3934
return;
4035
}
4136
}

tests/mir-opt/matches_reduce_branches.match_i8_i16.MatchBranchSimplification.diff

+23-28
Original file line numberDiff line numberDiff line change
@@ -5,37 +5,32 @@
55
debug i => _1;
66
let mut _0: i16;
77
let mut _2: i8;
8-
+ let mut _3: i8;
98

109
bb0: {
1110
_2 = discriminant(_1);
12-
- switchInt(move _2) -> [255: bb3, 2: bb4, 253: bb2, otherwise: bb1];
13-
- }
14-
-
15-
- bb1: {
16-
- unreachable;
17-
- }
18-
-
19-
- bb2: {
20-
- _0 = const -3_i16;
21-
- goto -> bb5;
22-
- }
23-
-
24-
- bb3: {
25-
- _0 = const -1_i16;
26-
- goto -> bb5;
27-
- }
28-
-
29-
- bb4: {
30-
- _0 = const 2_i16;
31-
- goto -> bb5;
32-
- }
33-
-
34-
- bb5: {
35-
+ StorageLive(_3);
36-
+ _3 = move _2;
37-
+ _0 = _3 as i16 (IntToInt);
38-
+ StorageDead(_3);
11+
switchInt(move _2) -> [255: bb3, 2: bb4, 253: bb2, otherwise: bb1];
12+
}
13+
14+
bb1: {
15+
unreachable;
16+
}
17+
18+
bb2: {
19+
_0 = const -3_i16;
20+
goto -> bb5;
21+
}
22+
23+
bb3: {
24+
_0 = const -1_i16;
25+
goto -> bb5;
26+
}
27+
28+
bb4: {
29+
_0 = const 2_i16;
30+
goto -> bb5;
31+
}
32+
33+
bb5: {
3934
return;
4035
}
4136
}

tests/mir-opt/matches_reduce_branches.match_u8_i16.MatchBranchSimplification.diff

+18-23
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,27 @@
55
debug i => _1;
66
let mut _0: i16;
77
let mut _2: u8;
8-
+ let mut _3: u8;
98

109
bb0: {
1110
_2 = discriminant(_1);
12-
- switchInt(move _2) -> [1: bb3, 2: bb2, otherwise: bb1];
13-
- }
14-
-
15-
- bb1: {
16-
- unreachable;
17-
- }
18-
-
19-
- bb2: {
20-
- _0 = const 2_i16;
21-
- goto -> bb4;
22-
- }
23-
-
24-
- bb3: {
25-
- _0 = const 1_i16;
26-
- goto -> bb4;
27-
- }
28-
-
29-
- bb4: {
30-
+ StorageLive(_3);
31-
+ _3 = move _2;
32-
+ _0 = _3 as i16 (IntToInt);
33-
+ StorageDead(_3);
11+
switchInt(move _2) -> [1: bb3, 2: bb2, otherwise: bb1];
12+
}
13+
14+
bb1: {
15+
unreachable;
16+
}
17+
18+
bb2: {
19+
_0 = const 2_i16;
20+
goto -> bb4;
21+
}
22+
23+
bb3: {
24+
_0 = const 1_i16;
25+
goto -> bb4;
26+
}
27+
28+
bb4: {
3429
return;
3530
}
3631
}

tests/mir-opt/matches_reduce_branches.match_u8_u16.MatchBranchSimplification.diff

+23-28
Original file line numberDiff line numberDiff line change
@@ -5,37 +5,32 @@
55
debug i => _1;
66
let mut _0: u16;
77
let mut _2: u8;
8-
+ let mut _3: u8;
98

109
bb0: {
1110
_2 = discriminant(_1);
12-
- switchInt(move _2) -> [1: bb3, 2: bb4, 5: bb2, otherwise: bb1];
13-
- }
14-
-
15-
- bb1: {
16-
- unreachable;
17-
- }
18-
-
19-
- bb2: {
20-
- _0 = const 5_u16;
21-
- goto -> bb5;
22-
- }
23-
-
24-
- bb3: {
25-
- _0 = const 1_u16;
26-
- goto -> bb5;
27-
- }
28-
-
29-
- bb4: {
30-
- _0 = const 2_u16;
31-
- goto -> bb5;
32-
- }
33-
-
34-
- bb5: {
35-
+ StorageLive(_3);
36-
+ _3 = move _2;
37-
+ _0 = _3 as u16 (IntToInt);
38-
+ StorageDead(_3);
11+
switchInt(move _2) -> [1: bb3, 2: bb4, 5: bb2, otherwise: bb1];
12+
}
13+
14+
bb1: {
15+
unreachable;
16+
}
17+
18+
bb2: {
19+
_0 = const 5_u16;
20+
goto -> bb5;
21+
}
22+
23+
bb3: {
24+
_0 = const 1_u16;
25+
goto -> bb5;
26+
}
27+
28+
bb4: {
29+
_0 = const 2_u16;
30+
goto -> bb5;
31+
}
32+
33+
bb5: {
3934
return;
4035
}
4136
}

tests/mir-opt/matches_reduce_branches.rs

+5-15
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,7 @@ enum EnumAu8 {
7575
// EMIT_MIR matches_reduce_branches.match_u8_i16.MatchBranchSimplification.diff
7676
fn match_u8_i16(i: EnumAu8) -> i16 {
7777
// CHECK-LABEL: fn match_u8_i16(
78-
// CHECK-NOT: switchInt
79-
// CHECK: _0 = _3 as i16 (IntToInt);
80-
// CHECH: return
78+
// CHECK: switchInt
8179
match i {
8280
EnumAu8::A => 1,
8381
EnumAu8::B => 2,
@@ -146,9 +144,7 @@ enum EnumBu8 {
146144
// EMIT_MIR matches_reduce_branches.match_u8_u16.MatchBranchSimplification.diff
147145
fn match_u8_u16(i: EnumBu8) -> u16 {
148146
// CHECK-LABEL: fn match_u8_u16(
149-
// CHECK-NOT: switchInt
150-
// CHECK: _0 = _3 as u16 (IntToInt);
151-
// CHECH: return
147+
// CHECK: switchInt
152148
match i {
153149
EnumBu8::A => 1,
154150
EnumBu8::B => 2,
@@ -204,9 +200,7 @@ enum EnumAi8 {
204200
// EMIT_MIR matches_reduce_branches.match_i8_i16.MatchBranchSimplification.diff
205201
fn match_i8_i16(i: EnumAi8) -> i16 {
206202
// CHECK-LABEL: fn match_i8_i16(
207-
// CHECK-NOT: switchInt
208-
// CHECK: _0 = _3 as i16 (IntToInt);
209-
// CHECH: return
203+
// CHECK: switchInt
210204
match i {
211205
EnumAi8::A => -1,
212206
EnumAi8::B => 2,
@@ -235,9 +229,7 @@ enum EnumAi16 {
235229
// EMIT_MIR matches_reduce_branches.match_i16_i8.MatchBranchSimplification.diff
236230
fn match_i16_i8(i: EnumAi16) -> i8 {
237231
// CHECK-LABEL: fn match_i16_i8(
238-
// CHECK-NOT: switchInt
239-
// CHECK: _0 = _3 as i8 (IntToInt);
240-
// CHECH: return
232+
// CHECK: switchInt
241233
match i {
242234
EnumAi16::A => -1,
243235
EnumAi16::B => 2,
@@ -256,9 +248,7 @@ enum EnumAi128 {
256248
// EMIT_MIR matches_reduce_branches.match_i128_u128.MatchBranchSimplification.diff
257249
fn match_i128_u128(i: EnumAi128) -> u128 {
258250
// CHECK-LABEL: fn match_i128_u128(
259-
// CHECK-NOT: switchInt
260-
// CHECK: _0 = _3 as u128 (IntToInt);
261-
// CHECH: return
251+
// CHECK: switchInt
262252
match i {
263253
EnumAi128::A => 1,
264254
EnumAi128::B => 2,

0 commit comments

Comments
 (0)