
Found with https://github.com/est31/warnalyzer. Dubious changes: - Is anyone else using rustc_apfloat? I feel weird completely deleting x87 support. - Maybe some of the dead code in rustc_data_structures, in case someone wants to use it in the future? - Don't change rustc_serialize I plan to scrap most of the json module in the near future (see https://github.com/rust-lang/compiler-team/issues/418) and fixing the tests needed more work than I expected. TODO: check if any of the comments on the deleted code should be kept.
56 lines
1.7 KiB
Rust
56 lines
1.7 KiB
Rust
use super::serialized::{SerializedDepGraph, SerializedDepNodeIndex};
|
|
use super::{DepKind, DepNode};
|
|
use rustc_data_structures::fingerprint::Fingerprint;
|
|
use rustc_data_structures::fx::FxHashMap;
|
|
|
|
#[derive(Debug)]
|
|
pub struct PreviousDepGraph<K: DepKind> {
|
|
data: SerializedDepGraph<K>,
|
|
index: FxHashMap<DepNode<K>, SerializedDepNodeIndex>,
|
|
}
|
|
|
|
impl<K: DepKind> Default for PreviousDepGraph<K> {
|
|
fn default() -> Self {
|
|
PreviousDepGraph { data: Default::default(), index: Default::default() }
|
|
}
|
|
}
|
|
|
|
impl<K: DepKind> PreviousDepGraph<K> {
|
|
pub fn new(data: SerializedDepGraph<K>) -> PreviousDepGraph<K> {
|
|
let index: FxHashMap<_, _> =
|
|
data.nodes.iter_enumerated().map(|(idx, &dep_node)| (dep_node, idx)).collect();
|
|
PreviousDepGraph { data, index }
|
|
}
|
|
|
|
#[inline]
|
|
pub fn edge_targets_from(
|
|
&self,
|
|
dep_node_index: SerializedDepNodeIndex,
|
|
) -> &[SerializedDepNodeIndex] {
|
|
self.data.edge_targets_from(dep_node_index)
|
|
}
|
|
|
|
#[inline]
|
|
pub fn index_to_node(&self, dep_node_index: SerializedDepNodeIndex) -> DepNode<K> {
|
|
self.data.nodes[dep_node_index]
|
|
}
|
|
|
|
#[inline]
|
|
pub fn node_to_index_opt(&self, dep_node: &DepNode<K>) -> Option<SerializedDepNodeIndex> {
|
|
self.index.get(dep_node).cloned()
|
|
}
|
|
|
|
#[inline]
|
|
pub fn fingerprint_of(&self, dep_node: &DepNode<K>) -> Option<Fingerprint> {
|
|
self.index.get(dep_node).map(|&node_index| self.data.fingerprints[node_index])
|
|
}
|
|
|
|
#[inline]
|
|
pub fn fingerprint_by_index(&self, dep_node_index: SerializedDepNodeIndex) -> Fingerprint {
|
|
self.data.fingerprints[dep_node_index]
|
|
}
|
|
|
|
pub fn node_count(&self) -> usize {
|
|
self.index.len()
|
|
}
|
|
}
|