Skip to content

Commit c1c0824

Browse files
committed
Auto merge of rust-lang#120268 - DianQK:otherwise_is_last_variant_switchs, r=<try>
Replace the default branch with an unreachable branch If it is the last variant Fixes rust-lang#119520. Fixes rust-lang#110097. LLVM currently has limited ability to eliminate dead branches in switches, even with the patch of llvm/llvm-project#73446. The main reasons are as follows: - Additional costs are required to calculate the range of values, and there exist many scenarios that cannot be analyzed accurately. - Matching values by bitwise calculation cannot handle odd branches, nor can it handle values like `-1, 0, 1`. See [SimplifyCFG.cpp#L5424](https://github.com/llvm/llvm-project/blob/llvmorg-17.0.6/llvm/lib/Transforms/Utils/SimplifyCFG.cpp#L5424) and https://llvm.godbolt.org/z/qYMqhvMa8 - The current range information is continuous, even if the metadata for the range is submitted. See [ConstantRange.cpp#L1869-L1870](https://github.com/llvm/llvm-project/blob/llvmorg-17.0.6/llvm/lib/IR/ConstantRange.cpp#L1869-L1870). - The metadata of the range may be lost in passes such as SROA. See https://rust.godbolt.org/z/e7f87vKMK. Although we can make improvements, I think it would be more appropriate to put this issue to rustc first. After all, we can easily know the possible values. Note that we've currently found a slow compilation problem in the presence of unreachable branches. See llvm/llvm-project#78578. r? compiler
2 parents d3d145e + 1d9d381 commit c1c0824

File tree

38 files changed

+1386
-156
lines changed

38 files changed

+1386
-156
lines changed

compiler/rustc_middle/src/mir/patch.rs

+25-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ pub struct MirPatch<'tcx> {
1111
resume_block: Option<BasicBlock>,
1212
// Only for unreachable in cleanup path.
1313
unreachable_cleanup_block: Option<BasicBlock>,
14+
// Only for unreachable not in cleanup path.
15+
unreachable_no_cleanup_block: Option<BasicBlock>,
1416
// Cached block for UnwindTerminate (with reason)
1517
terminate_block: Option<(BasicBlock, UnwindTerminateReason)>,
1618
body_span: Span,
@@ -27,6 +29,7 @@ impl<'tcx> MirPatch<'tcx> {
2729
next_local: body.local_decls.len(),
2830
resume_block: None,
2931
unreachable_cleanup_block: None,
32+
unreachable_no_cleanup_block: None,
3033
terminate_block: None,
3134
body_span: body.span,
3235
};
@@ -43,9 +46,12 @@ impl<'tcx> MirPatch<'tcx> {
4346
// Check if we already have an unreachable block
4447
if matches!(block.terminator().kind, TerminatorKind::Unreachable)
4548
&& block.statements.is_empty()
46-
&& block.is_cleanup
4749
{
48-
result.unreachable_cleanup_block = Some(bb);
50+
if block.is_cleanup {
51+
result.unreachable_cleanup_block = Some(bb);
52+
} else {
53+
result.unreachable_no_cleanup_block = Some(bb);
54+
}
4955
continue;
5056
}
5157

@@ -95,6 +101,23 @@ impl<'tcx> MirPatch<'tcx> {
95101
bb
96102
}
97103

104+
pub fn unreachable_no_cleanup_block(&mut self) -> BasicBlock {
105+
if let Some(bb) = self.unreachable_no_cleanup_block {
106+
return bb;
107+
}
108+
109+
let bb = self.new_block(BasicBlockData {
110+
statements: vec![],
111+
terminator: Some(Terminator {
112+
source_info: SourceInfo::outermost(self.body_span),
113+
kind: TerminatorKind::Unreachable,
114+
}),
115+
is_cleanup: false,
116+
});
117+
self.unreachable_no_cleanup_block = Some(bb);
118+
bb
119+
}
120+
98121
pub fn terminate_block(&mut self, reason: UnwindTerminateReason) -> BasicBlock {
99122
if let Some((cached_bb, cached_reason)) = self.terminate_block
100123
&& reason == cached_reason

compiler/rustc_middle/src/mir/terminator.rs

+11
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,17 @@ impl SwitchTargets {
7474
pub fn target_for_value(&self, value: u128) -> BasicBlock {
7575
self.iter().find_map(|(v, t)| (v == value).then_some(t)).unwrap_or_else(|| self.otherwise())
7676
}
77+
78+
/// Adds a new target to the switch. But You cannot add an already present value.
79+
#[inline]
80+
pub fn add_target(&mut self, value: u128, bb: BasicBlock) {
81+
let value = Pu128(value);
82+
if self.values.contains(&value) {
83+
bug!("target value {:?} already present", value);
84+
}
85+
self.values.push(value);
86+
self.targets.insert(self.targets.len() - 1, bb);
87+
}
7788
}
7889

7990
pub struct SwitchTargetsIter<'a> {

compiler/rustc_mir_transform/src/uninhabited_enum_branching.rs

+47-28
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
33
use crate::MirPass;
44
use rustc_data_structures::fx::FxHashSet;
5+
use rustc_middle::mir::patch::MirPatch;
56
use rustc_middle::mir::{
6-
BasicBlockData, Body, Local, Operand, Rvalue, StatementKind, Terminator, TerminatorKind,
7+
BasicBlockData, Body, Local, Operand, Rvalue, StatementKind, TerminatorKind,
78
};
89
use rustc_middle::ty::layout::TyAndLayout;
910
use rustc_middle::ty::{Ty, TyCtxt};
@@ -77,7 +78,8 @@ impl<'tcx> MirPass<'tcx> for UninhabitedEnumBranching {
7778
fn run_pass(&self, tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
7879
trace!("UninhabitedEnumBranching starting for {:?}", body.source);
7980

80-
let mut removable_switchs = Vec::new();
81+
let mut unreachable_targets = Vec::new();
82+
let mut patch = MirPatch::new(body);
8183

8284
for (bb, bb_data) in body.basic_blocks.iter_enumerated() {
8385
trace!("processing block {:?}", bb);
@@ -92,46 +94,63 @@ impl<'tcx> MirPass<'tcx> for UninhabitedEnumBranching {
9294
tcx.param_env_reveal_all_normalized(body.source.def_id()).and(discriminant_ty),
9395
);
9496

95-
let allowed_variants = if let Ok(layout) = layout {
97+
let mut allowed_variants = if let Ok(layout) = layout {
9698
variant_discriminants(&layout, discriminant_ty, tcx)
99+
} else if let Some(variant_range) = discriminant_ty.variant_range(tcx) {
100+
variant_range
101+
.map(|variant| {
102+
discriminant_ty.discriminant_for_variant(tcx, variant).unwrap().val
103+
})
104+
.collect()
97105
} else {
98106
continue;
99107
};
100108

101109
trace!("allowed_variants = {:?}", allowed_variants);
102110

103-
let terminator = bb_data.terminator();
104-
let TerminatorKind::SwitchInt { targets, .. } = &terminator.kind else { bug!() };
111+
unreachable_targets.clear();
112+
let TerminatorKind::SwitchInt { targets, discr } = &bb_data.terminator().kind else {
113+
bug!()
114+
};
105115

106-
let mut reachable_count = 0;
107116
for (index, (val, _)) in targets.iter().enumerate() {
108-
if allowed_variants.contains(&val) {
109-
reachable_count += 1;
110-
} else {
111-
removable_switchs.push((bb, index));
117+
if !allowed_variants.remove(&val) {
118+
unreachable_targets.push(index);
112119
}
113120
}
114-
115-
if reachable_count == allowed_variants.len() {
116-
removable_switchs.push((bb, targets.iter().count()));
121+
let otherwise_is_empty_unreachable =
122+
body.basic_blocks[targets.otherwise()].is_empty_unreachable();
123+
// After resolving https://github.com/llvm/llvm-project/issues/78578,
124+
// we can remove the limit on the number of successors.
125+
let otherwise_is_last_variant = !otherwise_is_empty_unreachable
126+
&& allowed_variants.len() == 1
127+
&& !body.basic_blocks[targets.otherwise()]
128+
.terminator()
129+
.successors()
130+
.any(|bb| body.basic_blocks[bb].terminator().successors().count() >= 8);
131+
let replace_otherwise_to_unreachable = otherwise_is_last_variant
132+
|| !otherwise_is_empty_unreachable && allowed_variants.is_empty();
133+
134+
if unreachable_targets.is_empty() && !replace_otherwise_to_unreachable {
135+
continue;
117136
}
118-
}
119137

120-
if removable_switchs.is_empty() {
121-
return;
138+
let unreachable_block = patch.unreachable_no_cleanup_block();
139+
let mut targets = targets.clone();
140+
if replace_otherwise_to_unreachable {
141+
if otherwise_is_last_variant {
142+
#[allow(rustc::potential_query_instability)]
143+
let last_variant = *allowed_variants.iter().next().unwrap();
144+
targets.add_target(last_variant, targets.otherwise());
145+
}
146+
unreachable_targets.push(targets.iter().count());
147+
}
148+
for index in unreachable_targets.iter() {
149+
targets.all_targets_mut()[*index] = unreachable_block;
150+
}
151+
patch.patch_terminator(bb, TerminatorKind::SwitchInt { targets, discr: discr.clone() });
122152
}
123153

124-
let new_block = BasicBlockData::new(Some(Terminator {
125-
source_info: body.basic_blocks[removable_switchs[0].0].terminator().source_info,
126-
kind: TerminatorKind::Unreachable,
127-
}));
128-
let unreachable_block = body.basic_blocks.as_mut().push(new_block);
129-
130-
for (bb, index) in removable_switchs {
131-
let bb = &mut body.basic_blocks.as_mut()[bb];
132-
let terminator = bb.terminator_mut();
133-
let TerminatorKind::SwitchInt { targets, .. } = &mut terminator.kind else { bug!() };
134-
targets.all_targets_mut()[index] = unreachable_block;
135-
}
154+
patch.apply(body);
136155
}
137156
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
//@ compile-flags: -O
2+
3+
#![crate_type = "lib"]
4+
5+
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
6+
pub struct Int(u32);
7+
8+
const A: Int = Int(201);
9+
const B: Int = Int(270);
10+
const C: Int = Int(153);
11+
12+
// CHECK-LABEL: @foo(
13+
// CHECK-SAME: [[TMP0:%.*]])
14+
// CHECK-NEXT: start:
15+
// CHECK-NEXT: [[TMP1:%.*]] = add i32 [[TMP0]], -201
16+
// CHECK-NEXT: icmp ult i32 [[TMP1]], 70
17+
// CHECK-NEXT: icmp eq i32 [[TMP0]], 153
18+
// CHECK-NEXT: [[SPEC_SELECT:%.*]] = or i1
19+
// CHECK-NEXT: ret i1 [[SPEC_SELECT]]
20+
#[no_mangle]
21+
pub fn foo(x: Int) -> bool {
22+
(x >= A && x <= B)
23+
|| x == C
24+
}

tests/mir-opt/funky_arms.float_to_exponential_common.GVN.panic-abort.diff

+5-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
StorageLive(_6);
7070
_6 = ((*_1).4: std::option::Option<usize>);
7171
_7 = discriminant(_6);
72-
switchInt(move _7) -> [1: bb4, otherwise: bb6];
72+
switchInt(move _7) -> [1: bb4, 0: bb6, otherwise: bb9];
7373
}
7474

7575
bb4: {
@@ -135,5 +135,9 @@
135135
StorageDead(_6);
136136
return;
137137
}
138+
139+
bb9: {
140+
unreachable;
141+
}
138142
}
139143

tests/mir-opt/funky_arms.float_to_exponential_common.GVN.panic-unwind.diff

+5-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
StorageLive(_6);
7070
_6 = ((*_1).4: std::option::Option<usize>);
7171
_7 = discriminant(_6);
72-
switchInt(move _7) -> [1: bb4, otherwise: bb6];
72+
switchInt(move _7) -> [1: bb4, 0: bb6, otherwise: bb9];
7373
}
7474

7575
bb4: {
@@ -135,5 +135,9 @@
135135
StorageDead(_6);
136136
return;
137137
}
138+
139+
bb9: {
140+
unreachable;
141+
}
138142
}
139143

tests/mir-opt/issues/issue_59352.num_to_digit.PreCodegen.after.panic-abort.mir

+12-10
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,21 @@ fn num_to_digit(_1: char) -> u32 {
3333
_3 = &_2;
3434
StorageLive(_4);
3535
_4 = discriminant(_2);
36-
StorageDead(_3);
37-
StorageDead(_2);
38-
switchInt(move _4) -> [1: bb2, otherwise: bb7];
36+
switchInt(move _4) -> [1: bb2, 0: bb6, otherwise: bb8];
3937
}
4038

4139
bb2: {
4240
StorageDead(_4);
41+
StorageDead(_3);
42+
StorageDead(_2);
4343
StorageLive(_5);
4444
_5 = char::methods::<impl char>::to_digit(move _1, const 8_u32) -> [return: bb3, unwind unreachable];
4545
}
4646

4747
bb3: {
4848
StorageLive(_6);
4949
_6 = discriminant(_5);
50-
switchInt(move _6) -> [0: bb4, 1: bb5, otherwise: bb6];
50+
switchInt(move _6) -> [0: bb4, 1: bb5, otherwise: bb8];
5151
}
5252

5353
bb4: {
@@ -58,20 +58,22 @@ fn num_to_digit(_1: char) -> u32 {
5858
_0 = move ((_5 as Some).0: u32);
5959
StorageDead(_6);
6060
StorageDead(_5);
61-
goto -> bb8;
61+
goto -> bb7;
6262
}
6363

6464
bb6: {
65-
unreachable;
65+
StorageDead(_4);
66+
StorageDead(_3);
67+
StorageDead(_2);
68+
_0 = const 0_u32;
69+
goto -> bb7;
6670
}
6771

6872
bb7: {
69-
StorageDead(_4);
70-
_0 = const 0_u32;
71-
goto -> bb8;
73+
return;
7274
}
7375

7476
bb8: {
75-
return;
77+
unreachable;
7678
}
7779
}

tests/mir-opt/issues/issue_59352.num_to_digit.PreCodegen.after.panic-unwind.mir

+12-10
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,21 @@ fn num_to_digit(_1: char) -> u32 {
3333
_3 = &_2;
3434
StorageLive(_4);
3535
_4 = discriminant(_2);
36-
StorageDead(_3);
37-
StorageDead(_2);
38-
switchInt(move _4) -> [1: bb2, otherwise: bb7];
36+
switchInt(move _4) -> [1: bb2, 0: bb6, otherwise: bb8];
3937
}
4038

4139
bb2: {
4240
StorageDead(_4);
41+
StorageDead(_3);
42+
StorageDead(_2);
4343
StorageLive(_5);
4444
_5 = char::methods::<impl char>::to_digit(move _1, const 8_u32) -> [return: bb3, unwind continue];
4545
}
4646

4747
bb3: {
4848
StorageLive(_6);
4949
_6 = discriminant(_5);
50-
switchInt(move _6) -> [0: bb4, 1: bb5, otherwise: bb6];
50+
switchInt(move _6) -> [0: bb4, 1: bb5, otherwise: bb8];
5151
}
5252

5353
bb4: {
@@ -58,20 +58,22 @@ fn num_to_digit(_1: char) -> u32 {
5858
_0 = move ((_5 as Some).0: u32);
5959
StorageDead(_6);
6060
StorageDead(_5);
61-
goto -> bb8;
61+
goto -> bb7;
6262
}
6363

6464
bb6: {
65-
unreachable;
65+
StorageDead(_4);
66+
StorageDead(_3);
67+
StorageDead(_2);
68+
_0 = const 0_u32;
69+
goto -> bb7;
6670
}
6771

6872
bb7: {
69-
StorageDead(_4);
70-
_0 = const 0_u32;
71-
goto -> bb8;
73+
return;
7274
}
7375

7476
bb8: {
75-
return;
77+
unreachable;
7678
}
7779
}

0 commit comments

Comments
 (0)