Skip to content

Compute jump threading opportunities in a single pass #142821

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 57 additions & 21 deletions compiler/rustc_mir_dataflow/src/value_analysis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ rustc_index::newtype_index!(
/// This index uniquely identifies a tracked place and therefore a slot in [`State`].
///
/// It is an implementation detail of this module.
struct ValueIndex {}
pub struct ValueIndex {}
);

/// See [`State`].
Expand Down Expand Up @@ -211,22 +211,9 @@ impl<V: Clone + HasBottom> State<V> {
/// The target place must have been flooded before calling this method.
pub fn insert_place_idx(&mut self, target: PlaceIndex, source: PlaceIndex, map: &Map<'_>) {
let State::Reachable(values) = self else { return };

// If both places are tracked, we copy the value to the target.
// If the target is tracked, but the source is not, we do nothing, as invalidation has
// already been performed.
if let Some(target_value) = map.places[target].value_index {
if let Some(source_value) = map.places[source].value_index {
values.insert(target_value, values.get(source_value).clone());
}
}
for target_child in map.children(target) {
// Try to find corresponding child and recurse. Reasoning is similar as above.
let projection = map.places[target_child].proj_elem.unwrap();
if let Some(source_child) = map.projections.get(&(source, projection)) {
self.insert_place_idx(target_child, *source_child, map);
}
}
map.for_each_value_pair(target, source, &mut |target, source| {
values.insert(target, values.get(source).clone());
});
}

/// Helper method to interpret `target = result`.
Expand Down Expand Up @@ -677,6 +664,26 @@ impl<'tcx> Map<'tcx> {
self.find_extra(place, [TrackElem::DerefLen])
}

/// Locates the value corresponding to the given place.
pub fn value(&self, place: PlaceIndex) -> Option<ValueIndex> {
self.places[place].value_index
}

/// Locates the value corresponding to the given place.
pub fn find_value(&self, place: PlaceRef<'_>) -> Option<ValueIndex> {
self.value(self.find(place)?)
}

/// Locates the value corresponding to the given discriminant.
pub fn find_discr_value(&self, place: PlaceRef<'_>) -> Option<ValueIndex> {
self.value(self.find_discr(place)?)
}

/// Locates the value corresponding to the given length.
pub fn find_len_value(&self, place: PlaceRef<'_>) -> Option<ValueIndex> {
self.value(self.find_len(place)?)
}

/// Iterate over all direct children.
fn children(&self, parent: PlaceIndex) -> impl Iterator<Item = PlaceIndex> {
Children::new(self, parent)
Expand All @@ -689,7 +696,7 @@ impl<'tcx> Map<'tcx> {
///
/// `tail_elem` allows to support discriminants that are not a place in MIR, but that we track
/// as such.
fn for_each_aliasing_place(
pub fn for_each_aliasing_place(
&self,
place: PlaceRef<'_>,
tail_elem: Option<TrackElem>,
Expand Down Expand Up @@ -745,11 +752,15 @@ impl<'tcx> Map<'tcx> {
}
}

/// Return the range of value indices inside this place.
pub fn values_inside(&self, root: PlaceIndex) -> &[ValueIndex] {
let range = self.inner_values[root].clone();
&self.inner_values_buffer[range]
}

/// Invoke a function on each value in the given place and all descendants.
fn for_each_value_inside(&self, root: PlaceIndex, f: &mut impl FnMut(ValueIndex)) {
let range = self.inner_values[root].clone();
let values = &self.inner_values_buffer[range];
for &v in values {
for &v in self.values_inside(root) {
f(v)
}
}
Expand Down Expand Up @@ -778,6 +789,31 @@ impl<'tcx> Map<'tcx> {
}
}
}

/// Recursively iterates on each value contained in `target`, paired with matching projection
/// inside `source`.
pub fn for_each_value_pair(
&self,
target: PlaceIndex,
source: PlaceIndex,
f: &mut impl FnMut(ValueIndex, ValueIndex),
) {
// If both places are tracked, we copy the value to the target.
// If the target is tracked, but the source is not, we do nothing, as invalidation has
// already been performed.
if let Some(target_value) = self.places[target].value_index {
if let Some(source_value) = self.places[source].value_index {
f(target_value, source_value)
}
}
for target_child in self.children(target) {
// Try to find corresponding child and recurse. Reasoning is similar as above.
let projection = self.places[target_child].proj_elem.unwrap();
if let Some(source_child) = self.projections.get(&(source, projection)) {
self.for_each_value_pair(target_child, *source_child, f);
}
}
}
}

/// This is the information tracked for every [`PlaceIndex`] and is stored by [`Map`].
Expand Down
Loading
Loading