Skip to content

Commit 2b90614

Browse files
committed
Auto merge of #127036 - cjgillot:sparse-state, r=oli-obk
Make jump threading state sparse Continuation of #127024 Both dataflow const-prop and jump threading involve cloning the state vector a lot. This PR replaces the data structure by a sparse vector, considering: - that jump threading state is typically very sparse (at most 1 or 2 set entries); - that dataflow const-prop is disabled by default; - that place/value map is very eager, and prone to creating an overly large state. The first commit is shared with the previous PR to avoid needless conflicts. r? `@oli-obk`
2 parents 1cfd47f + 76244d4 commit 2b90614

File tree

3 files changed

+141
-80
lines changed

3 files changed

+141
-80
lines changed

compiler/rustc_mir_dataflow/src/framework/lattice.rs

+14
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ pub trait MeetSemiLattice: Eq {
7676
/// A set that has a "bottom" element, which is less than or equal to any other element.
7777
pub trait HasBottom {
7878
const BOTTOM: Self;
79+
80+
fn is_bottom(&self) -> bool;
7981
}
8082

8183
/// A set that has a "top" element, which is greater than or equal to any other element.
@@ -114,6 +116,10 @@ impl MeetSemiLattice for bool {
114116

115117
impl HasBottom for bool {
116118
const BOTTOM: Self = false;
119+
120+
fn is_bottom(&self) -> bool {
121+
!self
122+
}
117123
}
118124

119125
impl HasTop for bool {
@@ -267,6 +273,10 @@ impl<T: Clone + Eq> MeetSemiLattice for FlatSet<T> {
267273

268274
impl<T> HasBottom for FlatSet<T> {
269275
const BOTTOM: Self = Self::Bottom;
276+
277+
fn is_bottom(&self) -> bool {
278+
matches!(self, Self::Bottom)
279+
}
270280
}
271281

272282
impl<T> HasTop for FlatSet<T> {
@@ -291,6 +301,10 @@ impl<T> MaybeReachable<T> {
291301

292302
impl<T> HasBottom for MaybeReachable<T> {
293303
const BOTTOM: Self = MaybeReachable::Unreachable;
304+
305+
fn is_bottom(&self) -> bool {
306+
matches!(self, Self::Unreachable)
307+
}
294308
}
295309

296310
impl<T: HasTop> HasTop for MaybeReachable<T> {

0 commit comments

Comments
 (0)