2020-11-18 15:10:43 -08:00
|
|
|
use rustc_data_structures::fingerprint::Fingerprint;
|
2017-08-21 16:44:05 +02:00
|
|
|
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
|
2020-01-03 11:49:14 +01:00
|
|
|
use rustc_data_structures::profiling::QueryInvocationId;
|
2019-12-22 17:42:04 -05:00
|
|
|
use rustc_data_structures::sharded::{self, Sharded};
|
|
|
|
use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
|
|
|
|
use rustc_data_structures::sync::{AtomicU32, AtomicU64, Lock, Lrc, Ordering};
|
2020-03-18 10:25:22 +01:00
|
|
|
use rustc_data_structures::unlikely;
|
2020-01-09 11:18:47 +01:00
|
|
|
use rustc_errors::Diagnostic;
|
2019-09-26 05:38:33 +00:00
|
|
|
use rustc_index::vec::{Idx, IndexVec};
|
2020-03-18 10:25:22 +01:00
|
|
|
|
|
|
|
use parking_lot::{Condvar, Mutex};
|
|
|
|
use smallvec::{smallvec, SmallVec};
|
2019-12-22 17:42:04 -05:00
|
|
|
use std::collections::hash_map::Entry;
|
2017-09-28 16:19:10 +02:00
|
|
|
use std::env;
|
2017-08-21 16:44:05 +02:00
|
|
|
use std::hash::Hash;
|
2020-03-22 20:47:30 +01:00
|
|
|
use std::marker::PhantomData;
|
2019-04-19 18:49:15 +02:00
|
|
|
use std::mem;
|
2020-11-30 21:07:08 -08:00
|
|
|
use std::ops::Range;
|
2020-01-03 11:49:14 +01:00
|
|
|
use std::sync::atomic::Ordering::Relaxed;
|
2016-03-28 17:37:34 -04:00
|
|
|
|
2017-09-28 16:19:10 +02:00
|
|
|
use super::debug::EdgeFilter;
|
2019-12-22 17:42:04 -05:00
|
|
|
use super::prev::PreviousDepGraph;
|
2016-03-28 17:37:34 -04:00
|
|
|
use super::query::DepGraphQuery;
|
2017-09-22 13:00:42 +02:00
|
|
|
use super::serialized::{SerializedDepGraph, SerializedDepNodeIndex};
|
2020-03-18 10:25:22 +01:00
|
|
|
use super::{DepContext, DepKind, DepNode, WorkProductId};
|
2016-03-28 17:37:34 -04:00
|
|
|
|
|
|
|
#[derive(Clone)]
|
2020-03-18 10:25:22 +01:00
|
|
|
pub struct DepGraph<K: DepKind> {
|
|
|
|
data: Option<Lrc<DepGraphData<K>>>,
|
2019-12-13 14:44:08 +01:00
|
|
|
|
|
|
|
/// This field is used for assigning DepNodeIndices when running in
|
|
|
|
/// non-incremental mode. Even in non-incremental mode we make sure that
|
2019-12-17 14:44:07 +01:00
|
|
|
/// each task has a `DepNodeIndex` that uniquely identifies it. This unique
|
2019-12-13 14:44:08 +01:00
|
|
|
/// ID is used for self-profiling.
|
|
|
|
virtual_dep_node_index: Lrc<AtomicU32>,
|
2016-07-21 12:33:23 -04:00
|
|
|
}
|
|
|
|
|
2019-09-26 05:38:33 +00:00
|
|
|
rustc_index::newtype_index! {
|
2018-07-25 13:41:32 +03:00
|
|
|
pub struct DepNodeIndex { .. }
|
|
|
|
}
|
2017-08-21 16:44:05 +02:00
|
|
|
|
|
|
|
impl DepNodeIndex {
|
2019-10-09 16:41:24 +02:00
|
|
|
pub const INVALID: DepNodeIndex = DepNodeIndex::MAX;
|
2017-08-21 16:44:05 +02:00
|
|
|
}
|
|
|
|
|
2019-12-13 14:44:08 +01:00
|
|
|
impl std::convert::From<DepNodeIndex> for QueryInvocationId {
|
|
|
|
#[inline]
|
|
|
|
fn from(dep_node_index: DepNodeIndex) -> Self {
|
2020-01-03 11:49:14 +01:00
|
|
|
QueryInvocationId(dep_node_index.as_u32())
|
2019-12-13 14:44:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-20 15:54:53 +11:00
|
|
|
#[derive(PartialEq)]
|
2017-09-25 12:25:41 +02:00
|
|
|
pub enum DepNodeColor {
|
|
|
|
Red,
|
2019-12-22 17:42:04 -05:00
|
|
|
Green(DepNodeIndex),
|
2017-09-25 12:25:41 +02:00
|
|
|
}
|
|
|
|
|
2017-09-28 11:58:45 +02:00
|
|
|
impl DepNodeColor {
|
|
|
|
pub fn is_green(self) -> bool {
|
|
|
|
match self {
|
|
|
|
DepNodeColor::Red => false,
|
|
|
|
DepNodeColor::Green(_) => true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-18 10:25:22 +01:00
|
|
|
struct DepGraphData<K: DepKind> {
|
2017-08-21 16:44:05 +02:00
|
|
|
/// The new encoding of the dependency graph, optimized for red/green
|
|
|
|
/// tracking. The `current` field is the dependency graph of only the
|
|
|
|
/// current compilation session: We don't merge the previous dep-graph into
|
2020-11-26 01:10:43 -08:00
|
|
|
/// current one anymore, but we do reference shared data to save space.
|
2020-03-18 10:25:22 +01:00
|
|
|
current: CurrentDepGraph<K>,
|
2017-08-21 16:44:05 +02:00
|
|
|
|
2017-09-22 13:00:42 +02:00
|
|
|
/// The dep-graph from the previous compilation session. It contains all
|
|
|
|
/// nodes and edges as well as all fingerprints of nodes that have them.
|
2020-03-18 10:25:22 +01:00
|
|
|
previous: PreviousDepGraph<K>,
|
2017-09-22 13:00:42 +02:00
|
|
|
|
2018-12-22 18:03:40 +01:00
|
|
|
colors: DepNodeColorMap,
|
2017-09-25 12:25:41 +02:00
|
|
|
|
2019-04-19 18:49:15 +02:00
|
|
|
/// A set of loaded diagnostics that is in the progress of being emitted.
|
|
|
|
emitting_diagnostics: Mutex<FxHashSet<DepNodeIndex>>,
|
2018-12-22 18:59:03 +01:00
|
|
|
|
|
|
|
/// Used to wait for diagnostics to be emitted.
|
2019-04-19 18:49:15 +02:00
|
|
|
emitting_diagnostics_cond_var: Condvar,
|
2018-12-22 18:59:03 +01:00
|
|
|
|
2019-02-08 14:53:55 +01:00
|
|
|
/// When we load, there may be `.o` files, cached MIR, or other such
|
2016-07-21 12:33:23 -04:00
|
|
|
/// things available to us. If we find that they are not dirty, we
|
|
|
|
/// load the path to the file storing those work-products here into
|
|
|
|
/// this map. We can later look for and extract that data.
|
2018-05-07 22:30:44 -04:00
|
|
|
previous_work_products: FxHashMap<WorkProductId, WorkProduct>,
|
2016-07-21 12:33:23 -04:00
|
|
|
|
2020-03-18 10:25:22 +01:00
|
|
|
dep_node_debug: Lock<FxHashMap<DepNode<K>, String>>,
|
2016-03-28 17:37:34 -04:00
|
|
|
}
|
|
|
|
|
2020-03-18 10:25:22 +01:00
|
|
|
pub fn hash_result<HashCtxt, R>(hcx: &mut HashCtxt, result: &R) -> Option<Fingerprint>
|
2019-01-20 05:44:02 +01:00
|
|
|
where
|
2020-03-18 10:25:22 +01:00
|
|
|
R: HashStable<HashCtxt>,
|
2019-01-20 05:44:02 +01:00
|
|
|
{
|
|
|
|
let mut stable_hasher = StableHasher::new();
|
|
|
|
result.hash_stable(hcx, &mut stable_hasher);
|
|
|
|
|
|
|
|
Some(stable_hasher.finish())
|
|
|
|
}
|
|
|
|
|
2020-03-18 10:25:22 +01:00
|
|
|
impl<K: DepKind> DepGraph<K> {
|
2019-12-22 17:42:04 -05:00
|
|
|
pub fn new(
|
2020-03-18 10:25:22 +01:00
|
|
|
prev_graph: PreviousDepGraph<K>,
|
2019-12-22 17:42:04 -05:00
|
|
|
prev_work_products: FxHashMap<WorkProductId, WorkProduct>,
|
2020-03-18 10:25:22 +01:00
|
|
|
) -> DepGraph<K> {
|
2018-02-13 17:40:46 +01:00
|
|
|
let prev_graph_node_count = prev_graph.node_count();
|
|
|
|
|
2016-03-28 17:37:34 -04:00
|
|
|
DepGraph {
|
2018-02-27 17:11:14 +01:00
|
|
|
data: Some(Lrc::new(DepGraphData {
|
2018-05-07 22:30:44 -04:00
|
|
|
previous_work_products: prev_work_products,
|
2018-07-25 15:44:06 +03:00
|
|
|
dep_node_debug: Default::default(),
|
2019-06-13 22:42:24 +02:00
|
|
|
current: CurrentDepGraph::new(prev_graph_node_count),
|
2019-04-19 18:49:15 +02:00
|
|
|
emitting_diagnostics: Default::default(),
|
|
|
|
emitting_diagnostics_cond_var: Condvar::new(),
|
2017-09-22 13:00:42 +02:00
|
|
|
previous: prev_graph,
|
2018-12-22 18:03:40 +01:00
|
|
|
colors: DepNodeColorMap::new(prev_graph_node_count),
|
2017-09-22 13:00:42 +02:00
|
|
|
})),
|
2019-12-13 14:44:08 +01:00
|
|
|
virtual_dep_node_index: Lrc::new(AtomicU32::new(0)),
|
2017-09-22 13:00:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-18 10:25:22 +01:00
|
|
|
pub fn new_disabled() -> DepGraph<K> {
|
2020-01-03 11:49:14 +01:00
|
|
|
DepGraph { data: None, virtual_dep_node_index: Lrc::new(AtomicU32::new(0)) }
|
2016-03-28 17:37:34 -04:00
|
|
|
}
|
|
|
|
|
2019-02-08 14:53:55 +01:00
|
|
|
/// Returns `true` if we are actually building the full dep-graph, and `false` otherwise.
|
2016-12-20 22:46:11 +02:00
|
|
|
#[inline]
|
|
|
|
pub fn is_fully_enabled(&self) -> bool {
|
2017-07-04 15:06:57 +02:00
|
|
|
self.data.is_some()
|
2016-12-20 22:46:11 +02:00
|
|
|
}
|
|
|
|
|
2020-03-18 10:25:22 +01:00
|
|
|
pub fn query(&self) -> DepGraphQuery<K> {
|
2020-11-28 17:42:41 -08:00
|
|
|
// We call this before acquiring locks, since it also acquires them.
|
|
|
|
let edge_count = self.edge_count();
|
2020-11-26 01:10:43 -08:00
|
|
|
let data = self.data.as_ref().unwrap();
|
|
|
|
let previous = &data.previous;
|
2020-11-28 17:42:41 -08:00
|
|
|
let prev_index_to_index = data.current.prev_index_to_index.lock();
|
2020-11-26 01:10:43 -08:00
|
|
|
let data = data.current.data.lock();
|
|
|
|
let node_count = data.hybrid_indices.len();
|
|
|
|
|
|
|
|
let mut nodes = Vec::with_capacity(node_count);
|
2020-11-30 21:07:08 -08:00
|
|
|
let mut edge_list_indices = Vec::with_capacity(node_count);
|
|
|
|
let mut edge_list_data = Vec::with_capacity(edge_count);
|
|
|
|
edge_list_data.extend(data.unshared_edges.iter().map(|i| i.index()));
|
2020-11-26 01:10:43 -08:00
|
|
|
|
2020-11-30 21:07:08 -08:00
|
|
|
for &hybrid_index in data.hybrid_indices.iter() {
|
2020-11-26 01:10:43 -08:00
|
|
|
match hybrid_index.into() {
|
|
|
|
HybridIndex::New(new_index) => {
|
2020-11-30 21:07:08 -08:00
|
|
|
nodes.push(data.new.nodes[new_index]);
|
|
|
|
let edges = &data.new.edges[new_index];
|
|
|
|
edge_list_indices.push((edges.start.index(), edges.end.index()));
|
2020-11-26 01:10:43 -08:00
|
|
|
}
|
|
|
|
HybridIndex::Red(red_index) => {
|
2020-11-30 21:07:08 -08:00
|
|
|
nodes.push(previous.index_to_node(data.red.node_indices[red_index]));
|
|
|
|
let edges = &data.red.edges[red_index];
|
|
|
|
edge_list_indices.push((edges.start.index(), edges.end.index()));
|
2020-11-26 01:10:43 -08:00
|
|
|
}
|
2020-11-28 17:42:41 -08:00
|
|
|
HybridIndex::LightGreen(lg_index) => {
|
2020-11-30 21:07:08 -08:00
|
|
|
nodes.push(previous.index_to_node(data.light_green.node_indices[lg_index]));
|
|
|
|
let edges = &data.light_green.edges[lg_index];
|
|
|
|
edge_list_indices.push((edges.start.index(), edges.end.index()));
|
2020-11-28 17:42:41 -08:00
|
|
|
}
|
|
|
|
HybridIndex::DarkGreen(prev_index) => {
|
|
|
|
nodes.push(previous.index_to_node(prev_index));
|
2020-11-30 21:07:08 -08:00
|
|
|
|
2020-11-28 17:42:41 -08:00
|
|
|
let edges_iter = previous
|
|
|
|
.edge_targets_from(prev_index)
|
|
|
|
.iter()
|
2020-11-30 21:07:08 -08:00
|
|
|
.map(|&dst| prev_index_to_index[dst].unwrap().index());
|
|
|
|
|
|
|
|
let start = edge_list_data.len();
|
|
|
|
edge_list_data.extend(edges_iter);
|
|
|
|
let end = edge_list_data.len();
|
|
|
|
edge_list_indices.push((start, end));
|
2020-11-26 01:10:43 -08:00
|
|
|
}
|
2017-09-28 13:26:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-26 01:10:43 -08:00
|
|
|
debug_assert_eq!(nodes.len(), node_count);
|
2020-11-30 21:07:08 -08:00
|
|
|
debug_assert_eq!(edge_list_indices.len(), node_count);
|
|
|
|
debug_assert_eq!(edge_list_data.len(), edge_count);
|
2020-11-26 01:10:43 -08:00
|
|
|
|
2020-11-30 21:07:08 -08:00
|
|
|
DepGraphQuery::new(&nodes[..], &edge_list_indices[..], &edge_list_data[..])
|
2016-03-28 17:37:34 -04:00
|
|
|
}
|
|
|
|
|
2019-12-22 17:42:04 -05:00
|
|
|
pub fn assert_ignored(&self) {
|
2018-04-06 14:52:36 +02:00
|
|
|
if let Some(..) = self.data {
|
2020-03-21 00:27:09 +01:00
|
|
|
K::read_deps(|task_deps| {
|
|
|
|
assert!(task_deps.is_none(), "expected no task dependency tracking");
|
|
|
|
})
|
2017-12-28 06:05:45 +01:00
|
|
|
}
|
2016-03-28 17:37:34 -04:00
|
|
|
}
|
|
|
|
|
2019-12-22 17:42:04 -05:00
|
|
|
pub fn with_ignore<OP, R>(&self, op: OP) -> R
|
|
|
|
where
|
|
|
|
OP: FnOnce() -> R,
|
2016-03-28 17:37:34 -04:00
|
|
|
{
|
2020-03-21 00:27:09 +01:00
|
|
|
K::with_deps(None, op)
|
2016-03-28 17:37:34 -04:00
|
|
|
}
|
|
|
|
|
2017-03-08 09:14:27 -05:00
|
|
|
/// Starts a new dep-graph task. Dep-graph tasks are specified
|
|
|
|
/// using a free function (`task`) and **not** a closure -- this
|
|
|
|
/// is intentional because we want to exercise tight control over
|
|
|
|
/// what state they have access to. In particular, we want to
|
|
|
|
/// prevent implicit 'leaks' of tracked state into the task (which
|
|
|
|
/// could then be read without generating correct edges in the
|
2020-03-05 18:07:42 -03:00
|
|
|
/// dep-graph -- see the [rustc dev guide] for more details on
|
2017-12-31 17:08:04 +01:00
|
|
|
/// the dep-graph). To this end, the task function gets exactly two
|
2017-03-08 09:14:27 -05:00
|
|
|
/// pieces of state: the context `cx` and an argument `arg`. Both
|
|
|
|
/// of these bits of state must be of some type that implements
|
|
|
|
/// `DepGraphSafe` and hence does not leak.
|
|
|
|
///
|
|
|
|
/// The choice of two arguments is not fundamental. One argument
|
|
|
|
/// would work just as well, since multiple values can be
|
|
|
|
/// collected using tuples. However, using two arguments works out
|
|
|
|
/// to be quite convenient, since it is common to need a context
|
|
|
|
/// (`cx`) and some argument (e.g., a `DefId` identifying what
|
|
|
|
/// item to process).
|
|
|
|
///
|
|
|
|
/// For cases where you need some other number of arguments:
|
|
|
|
///
|
|
|
|
/// - If you only need one argument, just use `()` for the `arg`
|
|
|
|
/// parameter.
|
|
|
|
/// - If you need 3+ arguments, use a tuple for the
|
|
|
|
/// `arg` parameter.
|
|
|
|
///
|
2020-03-09 18:33:04 -03:00
|
|
|
/// [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/incremental-compilation.html
|
2020-03-24 20:09:06 +01:00
|
|
|
pub fn with_task<Ctxt: DepContext<DepKind = K>, A, R>(
|
2019-01-20 05:44:02 +01:00
|
|
|
&self,
|
2020-03-18 10:25:22 +01:00
|
|
|
key: DepNode<K>,
|
2020-03-24 20:09:06 +01:00
|
|
|
cx: Ctxt,
|
2019-01-20 05:44:02 +01:00
|
|
|
arg: A,
|
2020-03-24 20:09:06 +01:00
|
|
|
task: fn(Ctxt, A) -> R,
|
|
|
|
hash_result: impl FnOnce(&mut Ctxt::StableHashingContext, &R) -> Option<Fingerprint>,
|
|
|
|
) -> (R, DepNodeIndex) {
|
2019-12-22 17:42:04 -05:00
|
|
|
self.with_task_impl(
|
|
|
|
key,
|
|
|
|
cx,
|
|
|
|
arg,
|
|
|
|
false,
|
|
|
|
task,
|
|
|
|
|_key| {
|
|
|
|
Some(TaskDeps {
|
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
node: Some(_key),
|
|
|
|
reads: SmallVec::new(),
|
|
|
|
read_set: Default::default(),
|
2020-03-22 20:47:30 +01:00
|
|
|
phantom_data: PhantomData,
|
2019-12-22 17:42:04 -05:00
|
|
|
})
|
2019-01-20 05:44:02 +01:00
|
|
|
},
|
2019-12-22 17:42:04 -05:00
|
|
|
hash_result,
|
|
|
|
)
|
2018-04-06 14:52:36 +02:00
|
|
|
}
|
|
|
|
|
2020-03-24 20:09:06 +01:00
|
|
|
fn with_task_impl<Ctxt: DepContext<DepKind = K>, A, R>(
|
2018-04-25 02:30:18 +02:00
|
|
|
&self,
|
2020-03-18 10:25:22 +01:00
|
|
|
key: DepNode<K>,
|
2020-03-24 20:09:06 +01:00
|
|
|
cx: Ctxt,
|
2018-04-25 02:30:18 +02:00
|
|
|
arg: A,
|
|
|
|
no_tcx: bool,
|
2020-03-24 20:09:06 +01:00
|
|
|
task: fn(Ctxt, A) -> R,
|
2020-03-18 10:25:22 +01:00
|
|
|
create_task: fn(DepNode<K>) -> Option<TaskDeps<K>>,
|
2020-03-24 20:09:06 +01:00
|
|
|
hash_result: impl FnOnce(&mut Ctxt::StableHashingContext, &R) -> Option<Fingerprint>,
|
|
|
|
) -> (R, DepNodeIndex) {
|
2017-07-04 17:33:43 +02:00
|
|
|
if let Some(ref data) = self.data {
|
2020-03-22 12:43:19 +01:00
|
|
|
let task_deps = create_task(key).map(Lock::new);
|
2017-09-07 16:11:58 +02:00
|
|
|
|
|
|
|
// In incremental mode, hash the result of the task. We don't
|
|
|
|
// do anything with the hash yet, but we are computing it
|
|
|
|
// anyway so that
|
|
|
|
// - we make sure that the infrastructure works and
|
|
|
|
// - we can get an idea of the runtime cost.
|
2020-03-24 20:09:06 +01:00
|
|
|
let mut hcx = cx.create_stable_hashing_context();
|
2017-12-03 14:21:23 +01:00
|
|
|
|
2018-04-25 11:55:12 +02:00
|
|
|
let result = if no_tcx {
|
|
|
|
task(cx, arg)
|
2018-04-06 14:52:36 +02:00
|
|
|
} else {
|
2020-03-18 10:25:22 +01:00
|
|
|
K::with_deps(task_deps.as_ref(), || task(cx, arg))
|
2018-04-06 14:52:36 +02:00
|
|
|
};
|
2017-12-03 14:21:23 +01:00
|
|
|
|
2020-11-26 01:10:43 -08:00
|
|
|
let edges = task_deps.map_or_else(|| smallvec![], |lock| lock.into_inner().reads);
|
2017-09-25 12:25:41 +02:00
|
|
|
|
2020-11-26 01:10:43 -08:00
|
|
|
let current_fingerprint = hash_result(&mut hcx, &result);
|
2017-09-07 16:11:58 +02:00
|
|
|
|
2020-03-27 07:50:28 +01:00
|
|
|
let print_status = cfg!(debug_assertions) && cx.debug_dep_tasks();
|
2019-02-11 00:03:51 +01:00
|
|
|
|
2020-11-26 01:10:43 -08:00
|
|
|
// Intern the new `DepNode`.
|
|
|
|
let dep_node_index = if let Some(prev_index) = data.previous.node_to_index_opt(&key) {
|
|
|
|
// Determine the color and index of the new `DepNode`.
|
|
|
|
let (color, dep_node_index) = if let Some(current_fingerprint) = current_fingerprint
|
|
|
|
{
|
|
|
|
if current_fingerprint == data.previous.fingerprint_by_index(prev_index) {
|
2019-02-11 00:03:51 +01:00
|
|
|
if print_status {
|
|
|
|
eprintln!("[task::green] {:?}", key);
|
|
|
|
}
|
2020-11-26 01:10:43 -08:00
|
|
|
|
|
|
|
let dep_node_index =
|
2020-11-28 17:42:41 -08:00
|
|
|
data.current.intern_light_green_node(&data.previous, prev_index, edges);
|
2020-11-26 01:10:43 -08:00
|
|
|
|
|
|
|
(DepNodeColor::Green(dep_node_index), dep_node_index)
|
2019-01-20 05:44:02 +01:00
|
|
|
} else {
|
2019-02-11 00:03:51 +01:00
|
|
|
if print_status {
|
|
|
|
eprintln!("[task::red] {:?}", key);
|
|
|
|
}
|
2020-11-26 01:10:43 -08:00
|
|
|
|
|
|
|
let dep_node_index = data.current.intern_red_node(
|
|
|
|
&data.previous,
|
|
|
|
prev_index,
|
|
|
|
edges,
|
|
|
|
current_fingerprint,
|
|
|
|
);
|
|
|
|
|
|
|
|
(DepNodeColor::Red, dep_node_index)
|
2019-01-20 05:44:02 +01:00
|
|
|
}
|
2017-10-04 12:35:56 +02:00
|
|
|
} else {
|
2019-02-11 00:03:51 +01:00
|
|
|
if print_status {
|
|
|
|
eprintln!("[task::unknown] {:?}", key);
|
|
|
|
}
|
2020-11-26 01:10:43 -08:00
|
|
|
|
|
|
|
let dep_node_index = data.current.intern_red_node(
|
|
|
|
&data.previous,
|
|
|
|
prev_index,
|
|
|
|
edges,
|
|
|
|
Fingerprint::ZERO,
|
|
|
|
);
|
|
|
|
|
2019-01-20 05:44:02 +01:00
|
|
|
// Mark the node as Red if we can't hash the result
|
2020-11-26 01:10:43 -08:00
|
|
|
(DepNodeColor::Red, dep_node_index)
|
2017-10-04 12:35:56 +02:00
|
|
|
};
|
2017-09-25 12:25:41 +02:00
|
|
|
|
2019-12-22 17:42:04 -05:00
|
|
|
debug_assert!(
|
|
|
|
data.colors.get(prev_index).is_none(),
|
|
|
|
"DepGraph::with_task() - Duplicate DepNodeColor \
|
|
|
|
insertion for {:?}",
|
|
|
|
key
|
|
|
|
);
|
2018-02-13 17:40:46 +01:00
|
|
|
|
2018-12-22 18:03:40 +01:00
|
|
|
data.colors.insert(prev_index, color);
|
2020-11-26 01:10:43 -08:00
|
|
|
dep_node_index
|
|
|
|
} else {
|
|
|
|
if print_status {
|
|
|
|
eprintln!("[task::new] {:?}", key);
|
|
|
|
}
|
|
|
|
|
|
|
|
data.current.intern_node(
|
|
|
|
&data.previous,
|
|
|
|
key,
|
|
|
|
edges,
|
|
|
|
current_fingerprint.unwrap_or(Fingerprint::ZERO),
|
|
|
|
)
|
|
|
|
};
|
2017-09-25 12:25:41 +02:00
|
|
|
|
2017-09-28 16:19:10 +02:00
|
|
|
(result, dep_node_index)
|
2017-07-04 17:33:43 +02:00
|
|
|
} else {
|
2019-12-13 14:44:08 +01:00
|
|
|
(task(cx, arg), self.next_virtual_depnode_index())
|
2017-07-04 17:33:43 +02:00
|
|
|
}
|
2016-03-28 17:37:34 -04:00
|
|
|
}
|
|
|
|
|
2019-02-08 14:53:55 +01:00
|
|
|
/// Executes something within an "anonymous" task, that is, a task the
|
|
|
|
/// `DepNode` of which is determined by the list of inputs it read from.
|
2020-03-18 10:25:22 +01:00
|
|
|
pub fn with_anon_task<OP, R>(&self, dep_kind: K, op: OP) -> (R, DepNodeIndex)
|
2019-12-22 17:42:04 -05:00
|
|
|
where
|
|
|
|
OP: FnOnce() -> R,
|
2017-06-23 16:37:12 +02:00
|
|
|
{
|
2020-11-26 01:10:43 -08:00
|
|
|
debug_assert!(!dep_kind.is_eval_always());
|
|
|
|
|
2017-06-23 16:37:12 +02:00
|
|
|
if let Some(ref data) = self.data {
|
2020-03-18 10:25:22 +01:00
|
|
|
let task_deps = Lock::new(TaskDeps::default());
|
|
|
|
let result = K::with_deps(Some(&task_deps), op);
|
|
|
|
let task_deps = task_deps.into_inner();
|
2018-04-06 14:52:36 +02:00
|
|
|
|
2020-11-26 01:10:43 -08:00
|
|
|
// The dep node indices are hashed here instead of hashing the dep nodes of the
|
|
|
|
// dependencies. These indices may refer to different nodes per session, but this isn't
|
|
|
|
// a problem here because we that ensure the final dep node hash is per session only by
|
|
|
|
// combining it with the per session random number `anon_id_seed`. This hash only need
|
|
|
|
// to map the dependencies to a single value on a per session basis.
|
|
|
|
let mut hasher = StableHasher::new();
|
|
|
|
task_deps.reads.hash(&mut hasher);
|
|
|
|
|
|
|
|
let target_dep_node = DepNode {
|
|
|
|
kind: dep_kind,
|
|
|
|
// Fingerprint::combine() is faster than sending Fingerprint
|
|
|
|
// through the StableHasher (at least as long as StableHasher
|
|
|
|
// is so slow).
|
|
|
|
hash: data.current.anon_id_seed.combine(hasher.finish()).into(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let dep_node_index = data.current.intern_node(
|
|
|
|
&data.previous,
|
|
|
|
target_dep_node,
|
|
|
|
task_deps.reads,
|
|
|
|
Fingerprint::ZERO,
|
|
|
|
);
|
|
|
|
|
2017-09-28 16:19:10 +02:00
|
|
|
(result, dep_node_index)
|
2017-06-23 16:37:12 +02:00
|
|
|
} else {
|
2019-12-13 14:44:08 +01:00
|
|
|
(op(), self.next_virtual_depnode_index())
|
2017-06-23 16:37:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-08 14:53:55 +01:00
|
|
|
/// Executes something within an "eval-always" task which is a task
|
|
|
|
/// that runs whenever anything changes.
|
2020-03-24 20:09:06 +01:00
|
|
|
pub fn with_eval_always_task<Ctxt: DepContext<DepKind = K>, A, R>(
|
2019-01-20 05:44:02 +01:00
|
|
|
&self,
|
2020-03-18 10:25:22 +01:00
|
|
|
key: DepNode<K>,
|
2020-03-24 20:09:06 +01:00
|
|
|
cx: Ctxt,
|
2019-01-20 05:44:02 +01:00
|
|
|
arg: A,
|
2020-03-24 20:09:06 +01:00
|
|
|
task: fn(Ctxt, A) -> R,
|
|
|
|
hash_result: impl FnOnce(&mut Ctxt::StableHashingContext, &R) -> Option<Fingerprint>,
|
|
|
|
) -> (R, DepNodeIndex) {
|
2020-11-26 01:10:43 -08:00
|
|
|
self.with_task_impl(key, cx, arg, false, task, |_| None, hash_result)
|
2017-10-17 22:50:33 -04:00
|
|
|
}
|
|
|
|
|
2017-07-04 15:06:57 +02:00
|
|
|
#[inline]
|
2020-11-26 01:10:43 -08:00
|
|
|
pub fn read_index(&self, dep_node_index: DepNodeIndex) {
|
2017-07-04 15:06:57 +02:00
|
|
|
if let Some(ref data) = self.data {
|
2020-11-26 01:10:43 -08:00
|
|
|
K::read_deps(|task_deps| {
|
|
|
|
if let Some(task_deps) = task_deps {
|
|
|
|
let mut task_deps = task_deps.lock();
|
|
|
|
let task_deps = &mut *task_deps;
|
|
|
|
if cfg!(debug_assertions) {
|
|
|
|
data.current.total_read_count.fetch_add(1, Relaxed);
|
|
|
|
}
|
|
|
|
|
|
|
|
// As long as we only have a low number of reads we can avoid doing a hash
|
|
|
|
// insert and potentially allocating/reallocating the hashmap
|
|
|
|
let new_read = if task_deps.reads.len() < TASK_DEPS_READS_CAP {
|
|
|
|
task_deps.reads.iter().all(|other| *other != dep_node_index)
|
|
|
|
} else {
|
|
|
|
task_deps.read_set.insert(dep_node_index)
|
|
|
|
};
|
|
|
|
if new_read {
|
|
|
|
task_deps.reads.push(dep_node_index);
|
|
|
|
if task_deps.reads.len() == TASK_DEPS_READS_CAP {
|
|
|
|
// Fill `read_set` with what we have so far so we can use the hashset
|
|
|
|
// next time
|
|
|
|
task_deps.read_set.extend(task_deps.reads.iter().copied());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
{
|
|
|
|
if let Some(target) = task_deps.node {
|
|
|
|
if let Some(ref forbidden_edge) = data.current.forbidden_edge {
|
|
|
|
let src = self.dep_node_of(dep_node_index);
|
|
|
|
if forbidden_edge.test(&src, &target) {
|
|
|
|
panic!("forbidden edge {:?} -> {:?} created", src, target)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if cfg!(debug_assertions) {
|
|
|
|
data.current.total_duplicate_read_count.fetch_add(1, Relaxed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2016-10-18 14:46:41 +11:00
|
|
|
}
|
2016-03-28 17:37:34 -04:00
|
|
|
}
|
|
|
|
|
2017-07-04 17:33:43 +02:00
|
|
|
#[inline]
|
2020-11-26 01:10:43 -08:00
|
|
|
pub fn dep_node_index_of(&self, dep_node: &DepNode<K>) -> DepNodeIndex {
|
|
|
|
self.dep_node_index_of_opt(dep_node).unwrap()
|
2017-07-04 17:33:43 +02:00
|
|
|
}
|
|
|
|
|
2017-11-14 19:52:49 +01:00
|
|
|
#[inline]
|
2020-11-26 01:10:43 -08:00
|
|
|
pub fn dep_node_index_of_opt(&self, dep_node: &DepNode<K>) -> Option<DepNodeIndex> {
|
|
|
|
let data = self.data.as_ref().unwrap();
|
|
|
|
let current = &data.current;
|
|
|
|
|
|
|
|
if let Some(prev_index) = data.previous.node_to_index_opt(dep_node) {
|
|
|
|
current.prev_index_to_index.lock()[prev_index]
|
|
|
|
} else {
|
|
|
|
current.new_node_to_index.get_shard_by_value(dep_node).lock().get(dep_node).copied()
|
|
|
|
}
|
2017-12-19 18:01:19 +01:00
|
|
|
}
|
|
|
|
|
2018-02-13 17:40:46 +01:00
|
|
|
#[inline]
|
2020-03-18 10:25:22 +01:00
|
|
|
pub fn dep_node_exists(&self, dep_node: &DepNode<K>) -> bool {
|
2020-11-26 01:10:43 -08:00
|
|
|
self.data.is_some() && self.dep_node_index_of_opt(dep_node).is_some()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn dep_node_of(&self, dep_node_index: DepNodeIndex) -> DepNode<K> {
|
|
|
|
let data = self.data.as_ref().unwrap();
|
|
|
|
let previous = &data.previous;
|
|
|
|
let data = data.current.data.lock();
|
|
|
|
|
|
|
|
match data.hybrid_indices[dep_node_index].into() {
|
|
|
|
HybridIndex::New(new_index) => data.new.nodes[new_index],
|
|
|
|
HybridIndex::Red(red_index) => previous.index_to_node(data.red.node_indices[red_index]),
|
2020-11-28 17:42:41 -08:00
|
|
|
HybridIndex::LightGreen(light_green_index) => {
|
|
|
|
previous.index_to_node(data.light_green.node_indices[light_green_index])
|
2020-11-26 01:10:43 -08:00
|
|
|
}
|
2020-11-28 17:42:41 -08:00
|
|
|
HybridIndex::DarkGreen(prev_index) => previous.index_to_node(prev_index),
|
2018-02-13 17:40:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-19 18:01:19 +01:00
|
|
|
#[inline]
|
|
|
|
pub fn fingerprint_of(&self, dep_node_index: DepNodeIndex) -> Fingerprint {
|
2020-11-26 01:10:43 -08:00
|
|
|
let data = self.data.as_ref().unwrap();
|
|
|
|
let previous = &data.previous;
|
|
|
|
let data = data.current.data.lock();
|
|
|
|
|
|
|
|
match data.hybrid_indices[dep_node_index].into() {
|
|
|
|
HybridIndex::New(new_index) => data.new.fingerprints[new_index],
|
|
|
|
HybridIndex::Red(red_index) => data.red.fingerprints[red_index],
|
2020-11-28 17:42:41 -08:00
|
|
|
HybridIndex::LightGreen(light_green_index) => {
|
|
|
|
previous.fingerprint_by_index(data.light_green.node_indices[light_green_index])
|
2020-11-26 01:10:43 -08:00
|
|
|
}
|
2020-11-28 17:42:41 -08:00
|
|
|
HybridIndex::DarkGreen(prev_index) => previous.fingerprint_by_index(prev_index),
|
2020-11-26 01:10:43 -08:00
|
|
|
}
|
2017-08-18 20:24:19 +02:00
|
|
|
}
|
|
|
|
|
2020-03-18 10:25:22 +01:00
|
|
|
pub fn prev_fingerprint_of(&self, dep_node: &DepNode<K>) -> Option<Fingerprint> {
|
2017-09-22 13:00:42 +02:00
|
|
|
self.data.as_ref().unwrap().previous.fingerprint_of(dep_node)
|
2017-09-14 17:43:03 +02:00
|
|
|
}
|
|
|
|
|
2019-02-08 14:53:55 +01:00
|
|
|
/// Checks whether a previous work product exists for `v` and, if
|
2016-07-21 12:33:23 -04:00
|
|
|
/// so, return the path that leads to it. Used to skip doing work.
|
2017-06-06 15:09:21 +02:00
|
|
|
pub fn previous_work_product(&self, v: &WorkProductId) -> Option<WorkProduct> {
|
2019-12-22 17:42:04 -05:00
|
|
|
self.data.as_ref().and_then(|data| data.previous_work_products.get(v).cloned())
|
2016-07-21 12:33:23 -04:00
|
|
|
}
|
|
|
|
|
2017-01-16 17:54:20 -05:00
|
|
|
/// Access the map of work-products created during the cached run. Only
|
|
|
|
/// used during saving of the dep-graph.
|
2018-05-07 22:30:44 -04:00
|
|
|
pub fn previous_work_products(&self) -> &FxHashMap<WorkProductId, WorkProduct> {
|
|
|
|
&self.data.as_ref().unwrap().previous_work_products
|
2017-01-16 17:54:20 -05:00
|
|
|
}
|
2017-06-12 17:00:55 +02:00
|
|
|
|
|
|
|
#[inline(always)]
|
2020-03-18 10:25:22 +01:00
|
|
|
pub fn register_dep_node_debug_str<F>(&self, dep_node: DepNode<K>, debug_str_gen: F)
|
2019-12-22 17:42:04 -05:00
|
|
|
where
|
|
|
|
F: FnOnce() -> String,
|
2017-06-12 17:00:55 +02:00
|
|
|
{
|
2017-08-30 11:53:57 -07:00
|
|
|
let dep_node_debug = &self.data.as_ref().unwrap().dep_node_debug;
|
2017-06-12 17:00:55 +02:00
|
|
|
|
2017-08-30 11:53:57 -07:00
|
|
|
if dep_node_debug.borrow().contains_key(&dep_node) {
|
2019-12-22 17:42:04 -05:00
|
|
|
return;
|
2017-08-30 11:53:57 -07:00
|
|
|
}
|
|
|
|
let debug_str = debug_str_gen();
|
|
|
|
dep_node_debug.borrow_mut().insert(dep_node, debug_str);
|
2017-06-12 17:00:55 +02:00
|
|
|
}
|
|
|
|
|
2020-03-18 10:25:22 +01:00
|
|
|
pub fn dep_node_debug_str(&self, dep_node: DepNode<K>) -> Option<String> {
|
2019-12-22 17:42:04 -05:00
|
|
|
self.data.as_ref()?.dep_node_debug.borrow().get(&dep_node).cloned()
|
2017-06-12 17:00:55 +02:00
|
|
|
}
|
2017-09-22 13:00:42 +02:00
|
|
|
|
2018-12-25 04:36:17 +01:00
|
|
|
pub fn edge_deduplication_data(&self) -> Option<(u64, u64)> {
|
|
|
|
if cfg!(debug_assertions) {
|
2019-06-13 22:42:24 +02:00
|
|
|
let current_dep_graph = &self.data.as_ref().unwrap().current;
|
2017-11-11 14:32:01 -05:00
|
|
|
|
2019-12-22 17:42:04 -05:00
|
|
|
Some((
|
2019-12-13 14:46:10 +01:00
|
|
|
current_dep_graph.total_read_count.load(Relaxed),
|
|
|
|
current_dep_graph.total_duplicate_read_count.load(Relaxed),
|
2019-12-22 17:42:04 -05:00
|
|
|
))
|
2018-12-25 04:36:17 +01:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2017-11-11 14:32:01 -05:00
|
|
|
}
|
|
|
|
|
2020-11-28 17:42:41 -08:00
|
|
|
#[inline]
|
|
|
|
fn edge_count(&self) -> usize {
|
|
|
|
let data = self.data.as_ref().unwrap();
|
|
|
|
let previous = &data.previous;
|
|
|
|
let data = data.current.data.lock();
|
|
|
|
|
2020-11-30 21:07:08 -08:00
|
|
|
let mut edge_count = data.unshared_edges.len();
|
2020-11-28 17:42:41 -08:00
|
|
|
|
|
|
|
for &hybrid_index in data.hybrid_indices.iter() {
|
|
|
|
if let HybridIndex::DarkGreen(prev_index) = hybrid_index.into() {
|
|
|
|
edge_count += previous.edge_targets_from(prev_index).len()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
edge_count
|
|
|
|
}
|
|
|
|
|
2020-03-18 10:25:22 +01:00
|
|
|
pub fn serialize(&self) -> SerializedDepGraph<K> {
|
2020-11-26 01:10:43 -08:00
|
|
|
type SDNI = SerializedDepNodeIndex;
|
2017-09-22 13:00:42 +02:00
|
|
|
|
2020-11-28 17:42:41 -08:00
|
|
|
// We call this before acquiring locks, since it also acquires them.
|
|
|
|
let edge_count = self.edge_count();
|
2020-11-26 01:10:43 -08:00
|
|
|
let data = self.data.as_ref().unwrap();
|
|
|
|
let previous = &data.previous;
|
2020-11-28 17:42:41 -08:00
|
|
|
let prev_index_to_index = data.current.prev_index_to_index.lock();
|
2020-11-26 01:10:43 -08:00
|
|
|
let data = data.current.data.lock();
|
|
|
|
let node_count = data.hybrid_indices.len();
|
2017-09-22 13:00:42 +02:00
|
|
|
|
2020-11-26 01:10:43 -08:00
|
|
|
let mut nodes = IndexVec::with_capacity(node_count);
|
|
|
|
let mut fingerprints = IndexVec::with_capacity(node_count);
|
|
|
|
let mut edge_list_indices = IndexVec::with_capacity(node_count);
|
|
|
|
let mut edge_list_data = Vec::with_capacity(edge_count);
|
2020-11-30 21:07:08 -08:00
|
|
|
edge_list_data.extend(data.unshared_edges.iter().map(|i| SDNI::new(i.index())));
|
2020-11-26 01:10:43 -08:00
|
|
|
|
|
|
|
for &hybrid_index in data.hybrid_indices.iter() {
|
|
|
|
match hybrid_index.into() {
|
|
|
|
HybridIndex::New(i) => {
|
|
|
|
let new = &data.new;
|
|
|
|
nodes.push(new.nodes[i]);
|
|
|
|
fingerprints.push(new.fingerprints[i]);
|
2020-11-30 21:07:08 -08:00
|
|
|
let edges = &new.edges[i];
|
|
|
|
edge_list_indices.push((edges.start.as_u32(), edges.end.as_u32()));
|
2020-11-26 01:10:43 -08:00
|
|
|
}
|
|
|
|
HybridIndex::Red(i) => {
|
|
|
|
let red = &data.red;
|
|
|
|
nodes.push(previous.index_to_node(red.node_indices[i]));
|
|
|
|
fingerprints.push(red.fingerprints[i]);
|
2020-11-30 21:07:08 -08:00
|
|
|
let edges = &red.edges[i];
|
|
|
|
edge_list_indices.push((edges.start.as_u32(), edges.end.as_u32()));
|
2020-11-26 01:10:43 -08:00
|
|
|
}
|
2020-11-28 17:42:41 -08:00
|
|
|
HybridIndex::LightGreen(i) => {
|
|
|
|
let lg = &data.light_green;
|
|
|
|
nodes.push(previous.index_to_node(lg.node_indices[i]));
|
|
|
|
fingerprints.push(previous.fingerprint_by_index(lg.node_indices[i]));
|
2020-11-30 21:07:08 -08:00
|
|
|
let edges = &lg.edges[i];
|
|
|
|
edge_list_indices.push((edges.start.as_u32(), edges.end.as_u32()));
|
2020-11-28 17:42:41 -08:00
|
|
|
}
|
|
|
|
HybridIndex::DarkGreen(prev_index) => {
|
|
|
|
nodes.push(previous.index_to_node(prev_index));
|
|
|
|
fingerprints.push(previous.fingerprint_by_index(prev_index));
|
2020-11-30 21:07:08 -08:00
|
|
|
|
2020-11-28 17:42:41 -08:00
|
|
|
let edges_iter = previous
|
|
|
|
.edge_targets_from(prev_index)
|
|
|
|
.iter()
|
|
|
|
.map(|&dst| prev_index_to_index[dst].as_ref().unwrap());
|
2020-11-30 21:07:08 -08:00
|
|
|
|
|
|
|
let start = edge_list_data.len() as u32;
|
|
|
|
edge_list_data.extend(edges_iter.map(|i| SDNI::new(i.index())));
|
|
|
|
let end = edge_list_data.len() as u32;
|
|
|
|
edge_list_indices.push((start, end));
|
2020-11-26 01:10:43 -08:00
|
|
|
}
|
|
|
|
}
|
2017-09-22 13:00:42 +02:00
|
|
|
}
|
|
|
|
|
2020-11-26 01:10:43 -08:00
|
|
|
debug_assert_eq!(nodes.len(), node_count);
|
|
|
|
debug_assert_eq!(fingerprints.len(), node_count);
|
|
|
|
debug_assert_eq!(edge_list_indices.len(), node_count);
|
|
|
|
debug_assert_eq!(edge_list_data.len(), edge_count);
|
2020-03-04 13:18:08 +01:00
|
|
|
debug_assert!(edge_list_data.len() <= u32::MAX as usize);
|
2017-09-22 13:00:42 +02:00
|
|
|
|
2019-12-22 17:42:04 -05:00
|
|
|
SerializedDepGraph { nodes, fingerprints, edge_list_indices, edge_list_data }
|
2017-09-22 13:00:42 +02:00
|
|
|
}
|
2017-09-25 13:51:49 +02:00
|
|
|
|
2020-03-18 10:25:22 +01:00
|
|
|
pub fn node_color(&self, dep_node: &DepNode<K>) -> Option<DepNodeColor> {
|
2018-02-13 17:40:46 +01:00
|
|
|
if let Some(ref data) = self.data {
|
|
|
|
if let Some(prev_index) = data.previous.node_to_index_opt(dep_node) {
|
2019-12-22 17:42:04 -05:00
|
|
|
return data.colors.get(prev_index);
|
2018-02-13 17:40:46 +01:00
|
|
|
} else {
|
|
|
|
// This is a node that did not exist in the previous compilation
|
|
|
|
// session, so we consider it to be red.
|
2019-12-22 17:42:04 -05:00
|
|
|
return Some(DepNodeColor::Red);
|
2018-02-13 17:40:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
2017-09-25 13:51:49 +02:00
|
|
|
}
|
|
|
|
|
2018-12-22 18:03:40 +01:00
|
|
|
/// Try to read a node index for the node dep_node.
|
|
|
|
/// A node will have an index, when it's already been marked green, or when we can mark it
|
|
|
|
/// green. This function will mark the current task as a reader of the specified node, when
|
|
|
|
/// a node index can be found for that node.
|
2020-03-18 10:25:22 +01:00
|
|
|
pub fn try_mark_green_and_read<Ctxt: DepContext<DepKind = K>>(
|
2018-12-22 18:03:40 +01:00
|
|
|
&self,
|
2020-03-18 10:25:22 +01:00
|
|
|
tcx: Ctxt,
|
|
|
|
dep_node: &DepNode<K>,
|
2018-12-22 18:03:40 +01:00
|
|
|
) -> Option<(SerializedDepNodeIndex, DepNodeIndex)> {
|
|
|
|
self.try_mark_green(tcx, dep_node).map(|(prev_index, dep_node_index)| {
|
|
|
|
debug_assert!(self.is_green(&dep_node));
|
|
|
|
self.read_index(dep_node_index);
|
|
|
|
(prev_index, dep_node_index)
|
|
|
|
})
|
|
|
|
}
|
2017-09-25 13:51:49 +02:00
|
|
|
|
2020-03-18 10:25:22 +01:00
|
|
|
pub fn try_mark_green<Ctxt: DepContext<DepKind = K>>(
|
2018-12-22 18:03:40 +01:00
|
|
|
&self,
|
2020-03-18 10:25:22 +01:00
|
|
|
tcx: Ctxt,
|
|
|
|
dep_node: &DepNode<K>,
|
2018-12-22 18:03:40 +01:00
|
|
|
) -> Option<(SerializedDepNodeIndex, DepNodeIndex)> {
|
2019-03-10 10:11:15 +01:00
|
|
|
debug_assert!(!dep_node.kind.is_eval_always());
|
2017-09-25 13:51:49 +02:00
|
|
|
|
2018-12-22 18:03:40 +01:00
|
|
|
// Return None if the dep graph is disabled
|
|
|
|
let data = self.data.as_ref()?;
|
|
|
|
|
|
|
|
// Return None if the dep node didn't exist in the previous session
|
|
|
|
let prev_index = data.previous.node_to_index_opt(dep_node)?;
|
|
|
|
|
|
|
|
match data.colors.get(prev_index) {
|
|
|
|
Some(DepNodeColor::Green(dep_node_index)) => Some((prev_index, dep_node_index)),
|
|
|
|
Some(DepNodeColor::Red) => None,
|
2017-09-25 13:51:49 +02:00
|
|
|
None => {
|
2019-01-15 10:39:35 +01:00
|
|
|
// This DepNode and the corresponding query invocation existed
|
|
|
|
// in the previous compilation session too, so we can try to
|
|
|
|
// mark it as green by recursively marking all of its
|
|
|
|
// dependencies green.
|
2019-12-22 17:42:04 -05:00
|
|
|
self.try_mark_previous_green(tcx, data, prev_index, &dep_node)
|
|
|
|
.map(|dep_node_index| (prev_index, dep_node_index))
|
2017-09-25 13:51:49 +02:00
|
|
|
}
|
2018-12-22 18:03:40 +01:00
|
|
|
}
|
|
|
|
}
|
2017-09-25 13:51:49 +02:00
|
|
|
|
2019-02-08 14:53:55 +01:00
|
|
|
/// Try to mark a dep-node which existed in the previous compilation session as green.
|
2020-03-18 10:25:22 +01:00
|
|
|
fn try_mark_previous_green<Ctxt: DepContext<DepKind = K>>(
|
2018-12-22 18:03:40 +01:00
|
|
|
&self,
|
2020-03-18 10:25:22 +01:00
|
|
|
tcx: Ctxt,
|
|
|
|
data: &DepGraphData<K>,
|
2018-12-22 18:03:40 +01:00
|
|
|
prev_dep_node_index: SerializedDepNodeIndex,
|
2020-03-18 10:25:22 +01:00
|
|
|
dep_node: &DepNode<K>,
|
2018-12-22 18:03:40 +01:00
|
|
|
) -> Option<DepNodeIndex> {
|
|
|
|
debug!("try_mark_previous_green({:?}) - BEGIN", dep_node);
|
|
|
|
|
2019-01-28 15:51:47 +01:00
|
|
|
#[cfg(not(parallel_compiler))]
|
2018-12-22 18:03:40 +01:00
|
|
|
{
|
2020-11-26 01:10:43 -08:00
|
|
|
debug_assert!(!self.dep_node_exists(dep_node));
|
2018-12-22 18:03:40 +01:00
|
|
|
debug_assert!(data.colors.get(prev_dep_node_index).is_none());
|
|
|
|
}
|
|
|
|
|
2019-03-10 10:11:15 +01:00
|
|
|
// We never try to mark eval_always nodes as green
|
|
|
|
debug_assert!(!dep_node.kind.is_eval_always());
|
2018-12-22 18:03:40 +01:00
|
|
|
|
2020-12-18 16:00:52 -08:00
|
|
|
debug_assert_eq!(data.previous.index_to_node(prev_dep_node_index), *dep_node);
|
2018-12-22 18:03:40 +01:00
|
|
|
|
|
|
|
let prev_deps = data.previous.edge_targets_from(prev_dep_node_index);
|
2018-02-13 17:40:46 +01:00
|
|
|
|
2017-09-26 19:43:17 +02:00
|
|
|
for &dep_dep_node_index in prev_deps {
|
2018-12-22 18:03:40 +01:00
|
|
|
let dep_dep_node_color = data.colors.get(dep_dep_node_index);
|
2017-09-26 19:43:17 +02:00
|
|
|
|
2017-09-25 13:51:49 +02:00
|
|
|
match dep_dep_node_color {
|
2020-11-28 17:42:41 -08:00
|
|
|
Some(DepNodeColor::Green(_)) => {
|
2017-09-25 13:51:49 +02:00
|
|
|
// This dependency has been marked as green before, we are
|
|
|
|
// still fine and can continue with checking the other
|
|
|
|
// dependencies.
|
2019-12-22 17:42:04 -05:00
|
|
|
debug!(
|
|
|
|
"try_mark_previous_green({:?}) --- found dependency {:?} to \
|
2018-02-13 17:40:46 +01:00
|
|
|
be immediately green",
|
2019-12-22 17:42:04 -05:00
|
|
|
dep_node,
|
2020-12-18 16:00:52 -08:00
|
|
|
data.previous.index_to_node(dep_dep_node_index)
|
2019-12-22 17:42:04 -05:00
|
|
|
);
|
2017-09-25 13:51:49 +02:00
|
|
|
}
|
|
|
|
Some(DepNodeColor::Red) => {
|
|
|
|
// We found a dependency the value of which has changed
|
|
|
|
// compared to the previous compilation session. We cannot
|
|
|
|
// mark the DepNode as green and also don't need to bother
|
|
|
|
// with checking any of the other dependencies.
|
2019-12-22 17:42:04 -05:00
|
|
|
debug!(
|
|
|
|
"try_mark_previous_green({:?}) - END - dependency {:?} was \
|
2018-02-13 17:40:46 +01:00
|
|
|
immediately red",
|
2019-12-22 17:42:04 -05:00
|
|
|
dep_node,
|
2020-12-18 16:00:52 -08:00
|
|
|
data.previous.index_to_node(dep_dep_node_index)
|
2019-12-22 17:42:04 -05:00
|
|
|
);
|
|
|
|
return None;
|
2017-09-25 13:51:49 +02:00
|
|
|
}
|
|
|
|
None => {
|
2020-12-18 16:00:52 -08:00
|
|
|
let dep_dep_node = &data.previous.index_to_node(dep_dep_node_index);
|
2018-02-13 17:40:46 +01:00
|
|
|
|
2017-11-07 14:53:21 +01:00
|
|
|
// We don't know the state of this dependency. If it isn't
|
2019-03-10 10:11:15 +01:00
|
|
|
// an eval_always node, let's try to mark it green recursively.
|
|
|
|
if !dep_dep_node.kind.is_eval_always() {
|
2019-12-22 17:42:04 -05:00
|
|
|
debug!(
|
2020-12-10 15:27:07 -05:00
|
|
|
"try_mark_previous_green({:?}) --- state of dependency {:?} ({}) \
|
2019-12-22 17:42:04 -05:00
|
|
|
is unknown, trying to mark it green",
|
2020-12-10 15:27:07 -05:00
|
|
|
dep_node, dep_dep_node, dep_dep_node.hash,
|
2019-12-22 17:42:04 -05:00
|
|
|
);
|
2017-11-07 14:53:21 +01:00
|
|
|
|
2018-12-22 18:03:40 +01:00
|
|
|
let node_index = self.try_mark_previous_green(
|
|
|
|
tcx,
|
|
|
|
data,
|
|
|
|
dep_dep_node_index,
|
2019-12-22 17:42:04 -05:00
|
|
|
dep_dep_node,
|
2018-12-22 18:03:40 +01:00
|
|
|
);
|
2020-11-28 17:42:41 -08:00
|
|
|
if node_index.is_some() {
|
2019-12-22 17:42:04 -05:00
|
|
|
debug!(
|
|
|
|
"try_mark_previous_green({:?}) --- managed to MARK \
|
|
|
|
dependency {:?} as green",
|
|
|
|
dep_node, dep_dep_node
|
|
|
|
);
|
2017-11-07 14:53:21 +01:00
|
|
|
continue;
|
|
|
|
}
|
2017-09-26 19:43:17 +02:00
|
|
|
}
|
|
|
|
|
2017-11-07 14:53:21 +01:00
|
|
|
// We failed to mark it green, so we try to force the query.
|
2019-12-22 17:42:04 -05:00
|
|
|
debug!(
|
|
|
|
"try_mark_previous_green({:?}) --- trying to force \
|
|
|
|
dependency {:?}",
|
|
|
|
dep_node, dep_dep_node
|
|
|
|
);
|
2020-03-22 20:47:30 +01:00
|
|
|
if tcx.try_force_from_dep_node(dep_dep_node) {
|
2018-12-22 18:03:40 +01:00
|
|
|
let dep_dep_node_color = data.colors.get(dep_dep_node_index);
|
2018-02-13 17:40:46 +01:00
|
|
|
|
2017-11-07 14:53:21 +01:00
|
|
|
match dep_dep_node_color {
|
2020-11-28 17:42:41 -08:00
|
|
|
Some(DepNodeColor::Green(_)) => {
|
2019-12-22 17:42:04 -05:00
|
|
|
debug!(
|
|
|
|
"try_mark_previous_green({:?}) --- managed to \
|
2017-11-07 14:53:21 +01:00
|
|
|
FORCE dependency {:?} to green",
|
2019-12-22 17:42:04 -05:00
|
|
|
dep_node, dep_dep_node
|
|
|
|
);
|
2017-11-07 14:53:21 +01:00
|
|
|
}
|
|
|
|
Some(DepNodeColor::Red) => {
|
2019-12-22 17:42:04 -05:00
|
|
|
debug!(
|
|
|
|
"try_mark_previous_green({:?}) - END - \
|
2017-11-07 14:53:21 +01:00
|
|
|
dependency {:?} was red after forcing",
|
2019-12-22 17:42:04 -05:00
|
|
|
dep_node, dep_dep_node
|
|
|
|
);
|
|
|
|
return None;
|
2017-11-07 14:53:21 +01:00
|
|
|
}
|
|
|
|
None => {
|
2020-03-18 10:25:22 +01:00
|
|
|
if !tcx.has_errors_or_delayed_span_bugs() {
|
2020-03-22 20:47:30 +01:00
|
|
|
panic!(
|
2019-12-22 17:42:04 -05:00
|
|
|
"try_mark_previous_green() - Forcing the DepNode \
|
|
|
|
should have set its color"
|
|
|
|
)
|
2018-03-16 16:18:14 +01:00
|
|
|
} else {
|
2019-12-06 12:48:53 +03:00
|
|
|
// If the query we just forced has resulted in
|
|
|
|
// some kind of compilation error, we cannot rely on
|
|
|
|
// the dep-node color having been properly updated.
|
|
|
|
// This means that the query system has reached an
|
|
|
|
// invalid state. We let the compiler continue (by
|
|
|
|
// returning `None`) so it can emit error messages
|
|
|
|
// and wind down, but rely on the fact that this
|
|
|
|
// invalid state will not be persisted to the
|
|
|
|
// incremental compilation cache because of
|
|
|
|
// compilation errors being present.
|
2019-12-22 17:42:04 -05:00
|
|
|
debug!(
|
|
|
|
"try_mark_previous_green({:?}) - END - \
|
2019-12-06 12:48:53 +03:00
|
|
|
dependency {:?} resulted in compilation error",
|
2019-12-22 17:42:04 -05:00
|
|
|
dep_node, dep_dep_node
|
|
|
|
);
|
|
|
|
return None;
|
2018-03-16 16:18:14 +01:00
|
|
|
}
|
2017-09-26 19:43:17 +02:00
|
|
|
}
|
|
|
|
}
|
2017-11-07 14:53:21 +01:00
|
|
|
} else {
|
|
|
|
// The DepNode could not be forced.
|
2019-12-22 17:42:04 -05:00
|
|
|
debug!(
|
|
|
|
"try_mark_previous_green({:?}) - END - dependency {:?} \
|
|
|
|
could not be forced",
|
|
|
|
dep_node, dep_dep_node
|
|
|
|
);
|
|
|
|
return None;
|
2017-09-25 13:51:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we got here without hitting a `return` that means that all
|
|
|
|
// dependencies of this DepNode could be marked as green. Therefore we
|
2018-04-06 14:52:36 +02:00
|
|
|
// can also mark this DepNode as green.
|
2017-09-25 13:51:49 +02:00
|
|
|
|
2018-04-06 14:52:36 +02:00
|
|
|
// There may be multiple threads trying to mark the same dep node green concurrently
|
|
|
|
|
2019-04-19 18:49:15 +02:00
|
|
|
let dep_node_index = {
|
2018-12-23 05:54:10 +01:00
|
|
|
// We allocating an entry for the node in the current dependency graph and
|
|
|
|
// adding all the appropriate edges imported from the previous graph
|
2020-11-28 17:42:41 -08:00
|
|
|
data.current.intern_dark_green_node(&data.previous, prev_dep_node_index)
|
2018-04-06 14:52:36 +02:00
|
|
|
};
|
2017-09-25 13:51:49 +02:00
|
|
|
|
2017-10-19 14:32:39 +02:00
|
|
|
// ... emitting any stored diagnostic ...
|
2018-04-06 14:52:36 +02:00
|
|
|
|
2019-04-19 18:49:15 +02:00
|
|
|
// FIXME: Store the fact that a node has diagnostics in a bit in the dep graph somewhere
|
|
|
|
// Maybe store a list on disk and encode this fact in the DepNodeState
|
2020-03-18 10:25:22 +01:00
|
|
|
let diagnostics = tcx.load_diagnostics(prev_dep_node_index);
|
2019-04-19 18:49:15 +02:00
|
|
|
|
|
|
|
#[cfg(not(parallel_compiler))]
|
2019-12-22 17:42:04 -05:00
|
|
|
debug_assert!(
|
|
|
|
data.colors.get(prev_dep_node_index).is_none(),
|
|
|
|
"DepGraph::try_mark_previous_green() - Duplicate DepNodeColor \
|
|
|
|
insertion for {:?}",
|
|
|
|
dep_node
|
|
|
|
);
|
2017-10-19 14:32:39 +02:00
|
|
|
|
2020-02-28 14:20:33 +01:00
|
|
|
if unlikely!(!diagnostics.is_empty()) {
|
2019-12-22 17:42:04 -05:00
|
|
|
self.emit_diagnostics(tcx, data, dep_node_index, prev_dep_node_index, diagnostics);
|
2017-10-19 14:32:39 +02:00
|
|
|
}
|
|
|
|
|
2017-09-25 13:51:49 +02:00
|
|
|
// ... and finally storing a "Green" entry in the color map.
|
2018-04-06 14:52:36 +02:00
|
|
|
// Multiple threads can all write the same color here
|
2018-12-22 18:03:40 +01:00
|
|
|
data.colors.insert(prev_dep_node_index, DepNodeColor::Green(dep_node_index));
|
2018-02-13 17:40:46 +01:00
|
|
|
|
2018-12-22 18:03:40 +01:00
|
|
|
debug!("try_mark_previous_green({:?}) - END - successfully marked as green", dep_node);
|
2017-09-28 16:19:10 +02:00
|
|
|
Some(dep_node_index)
|
2017-09-25 13:51:49 +02:00
|
|
|
}
|
|
|
|
|
2019-04-19 18:49:15 +02:00
|
|
|
/// Atomically emits some loaded diagnostics.
|
|
|
|
/// This may be called concurrently on multiple threads for the same dep node.
|
2018-12-22 18:59:03 +01:00
|
|
|
#[cold]
|
|
|
|
#[inline(never)]
|
2020-03-18 10:25:22 +01:00
|
|
|
fn emit_diagnostics<Ctxt: DepContext<DepKind = K>>(
|
2018-12-22 18:59:03 +01:00
|
|
|
&self,
|
2020-03-18 10:25:22 +01:00
|
|
|
tcx: Ctxt,
|
|
|
|
data: &DepGraphData<K>,
|
2018-12-22 18:59:03 +01:00
|
|
|
dep_node_index: DepNodeIndex,
|
2019-04-19 18:49:15 +02:00
|
|
|
prev_dep_node_index: SerializedDepNodeIndex,
|
2018-12-22 18:59:03 +01:00
|
|
|
diagnostics: Vec<Diagnostic>,
|
|
|
|
) {
|
2019-04-19 18:49:15 +02:00
|
|
|
let mut emitting = data.emitting_diagnostics.lock();
|
|
|
|
|
|
|
|
if data.colors.get(prev_dep_node_index) == Some(DepNodeColor::Green(dep_node_index)) {
|
|
|
|
// The node is already green so diagnostics must have been emitted already
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if emitting.insert(dep_node_index) {
|
|
|
|
// We were the first to insert the node in the set so this thread
|
|
|
|
// must emit the diagnostics and signal other potentially waiting
|
|
|
|
// threads after.
|
|
|
|
mem::drop(emitting);
|
2018-12-22 18:59:03 +01:00
|
|
|
|
|
|
|
// Promote the previous diagnostics to the current session.
|
2020-03-18 10:25:22 +01:00
|
|
|
tcx.store_diagnostics(dep_node_index, diagnostics.clone().into());
|
2019-04-19 18:49:15 +02:00
|
|
|
|
2020-03-18 10:25:22 +01:00
|
|
|
let handle = tcx.diagnostic();
|
2018-12-22 18:59:03 +01:00
|
|
|
|
|
|
|
for diagnostic in diagnostics {
|
2019-09-07 10:20:56 -04:00
|
|
|
handle.emit_diagnostic(&diagnostic);
|
2018-12-22 18:59:03 +01:00
|
|
|
}
|
|
|
|
|
2019-04-19 18:49:15 +02:00
|
|
|
// Mark the node as green now that diagnostics are emitted
|
|
|
|
data.colors.insert(prev_dep_node_index, DepNodeColor::Green(dep_node_index));
|
|
|
|
|
|
|
|
// Remove the node from the set
|
|
|
|
data.emitting_diagnostics.lock().remove(&dep_node_index);
|
|
|
|
|
|
|
|
// Wake up waiters
|
|
|
|
data.emitting_diagnostics_cond_var.notify_all();
|
2018-12-22 18:59:03 +01:00
|
|
|
} else {
|
2019-04-19 18:49:15 +02:00
|
|
|
// We must wait for the other thread to finish emitting the diagnostic
|
2018-12-22 18:59:03 +01:00
|
|
|
|
|
|
|
loop {
|
2019-04-19 18:49:15 +02:00
|
|
|
data.emitting_diagnostics_cond_var.wait(&mut emitting);
|
2019-12-22 17:42:04 -05:00
|
|
|
if data.colors.get(prev_dep_node_index) == Some(DepNodeColor::Green(dep_node_index))
|
|
|
|
{
|
2018-12-22 18:59:03 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-13 17:40:46 +01:00
|
|
|
// Returns true if the given node has been marked as green during the
|
|
|
|
// current compilation session. Used in various assertions
|
2020-03-18 10:25:22 +01:00
|
|
|
pub fn is_green(&self, dep_node: &DepNode<K>) -> bool {
|
2018-02-13 17:40:46 +01:00
|
|
|
self.node_color(dep_node).map(|c| c.is_green()).unwrap_or(false)
|
2017-09-25 13:51:49 +02:00
|
|
|
}
|
2017-09-28 11:58:45 +02:00
|
|
|
|
2017-11-20 13:11:03 +01:00
|
|
|
// This method loads all on-disk cacheable query results into memory, so
|
|
|
|
// they can be written out to the new cache file again. Most query results
|
|
|
|
// will already be in memory but in the case where we marked something as
|
|
|
|
// green but then did not need the value, that value will never have been
|
|
|
|
// loaded from disk.
|
|
|
|
//
|
|
|
|
// This method will only load queries that will end up in the disk cache.
|
|
|
|
// Other queries will not be executed.
|
2020-03-18 10:25:22 +01:00
|
|
|
pub fn exec_cache_promotions<Ctxt: DepContext<DepKind = K>>(&self, tcx: Ctxt) {
|
|
|
|
let _prof_timer = tcx.profiler().generic_activity("incr_comp_query_cache_promotion");
|
2019-10-08 14:05:41 +02:00
|
|
|
|
2019-04-05 13:11:44 +02:00
|
|
|
let data = self.data.as_ref().unwrap();
|
|
|
|
for prev_index in data.colors.values.indices() {
|
|
|
|
match data.colors.get(prev_index) {
|
|
|
|
Some(DepNodeColor::Green(_)) => {
|
2020-12-18 16:00:52 -08:00
|
|
|
let dep_node = data.previous.index_to_node(prev_index);
|
2020-03-18 10:25:22 +01:00
|
|
|
tcx.try_load_from_on_disk_cache(&dep_node);
|
2017-11-20 13:11:03 +01:00
|
|
|
}
|
2019-12-22 17:42:04 -05:00
|
|
|
None | Some(DepNodeColor::Red) => {
|
2019-04-05 13:11:44 +02:00
|
|
|
// We can skip red nodes because a node can only be marked
|
|
|
|
// as red if the query result was recomputed and thus is
|
|
|
|
// already in memory.
|
|
|
|
}
|
|
|
|
}
|
2017-11-20 13:11:03 +01:00
|
|
|
}
|
|
|
|
}
|
2020-12-18 16:00:52 -08:00
|
|
|
|
|
|
|
// Register reused dep nodes (i.e. nodes we've marked red or green) with the context.
|
|
|
|
pub fn register_reused_dep_nodes<Ctxt: DepContext<DepKind = K>>(&self, tcx: Ctxt) {
|
|
|
|
let data = self.data.as_ref().unwrap();
|
|
|
|
for prev_index in data.colors.values.indices() {
|
|
|
|
match data.colors.get(prev_index) {
|
|
|
|
Some(DepNodeColor::Red) | Some(DepNodeColor::Green(_)) => {
|
|
|
|
let dep_node = data.previous.index_to_node(prev_index);
|
|
|
|
tcx.register_reused_dep_node(&dep_node);
|
|
|
|
}
|
|
|
|
None => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-13 14:44:08 +01:00
|
|
|
|
|
|
|
fn next_virtual_depnode_index(&self) -> DepNodeIndex {
|
|
|
|
let index = self.virtual_dep_node_index.fetch_add(1, Relaxed);
|
|
|
|
DepNodeIndex::from_u32(index)
|
|
|
|
}
|
2016-07-21 12:33:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// A "work product" is an intermediate result that we save into the
|
|
|
|
/// incremental directory for later re-use. The primary example are
|
|
|
|
/// the object files that we save for each partition at code
|
|
|
|
/// generation time.
|
|
|
|
///
|
|
|
|
/// Each work product is associated with a dep-node, representing the
|
|
|
|
/// process that produced the work-product. If that dep-node is found
|
|
|
|
/// to be dirty when we load up, then we will delete the work-product
|
2016-07-22 10:39:30 -04:00
|
|
|
/// at load time. If the work-product is found to be clean, then we
|
2016-07-21 12:33:23 -04:00
|
|
|
/// will keep a record in the `previous_work_products` list.
|
|
|
|
///
|
|
|
|
/// In addition, work products have an associated hash. This hash is
|
|
|
|
/// an extra hash that can be used to decide if the work-product from
|
|
|
|
/// a previous compilation can be re-used (in addition to the dirty
|
|
|
|
/// edges check).
|
|
|
|
///
|
|
|
|
/// As the primary example, consider the object files we generate for
|
|
|
|
/// each partition. In the first run, we create partitions based on
|
|
|
|
/// the symbols that need to be compiled. For each partition P, we
|
|
|
|
/// hash the symbols in P and create a `WorkProduct` record associated
|
2018-05-08 16:10:16 +03:00
|
|
|
/// with `DepNode::CodegenUnit(P)`; the hash is the set of symbols
|
2016-07-21 12:33:23 -04:00
|
|
|
/// in P.
|
|
|
|
///
|
2018-05-08 16:10:16 +03:00
|
|
|
/// The next time we compile, if the `DepNode::CodegenUnit(P)` is
|
2016-07-21 12:33:23 -04:00
|
|
|
/// judged to be clean (which means none of the things we read to
|
|
|
|
/// generate the partition were found to be dirty), it will be loaded
|
|
|
|
/// into previous work products. We will then regenerate the set of
|
|
|
|
/// symbols in the partition P and hash them (note that new symbols
|
|
|
|
/// may be added -- for example, new monomorphizations -- even if
|
|
|
|
/// nothing in P changed!). We will compare that hash against the
|
|
|
|
/// previous hash. If it matches up, we can reuse the object file.
|
2020-06-11 15:49:57 +01:00
|
|
|
#[derive(Clone, Debug, Encodable, Decodable)]
|
2016-07-21 12:33:23 -04:00
|
|
|
pub struct WorkProduct {
|
2017-06-23 16:37:12 +02:00
|
|
|
pub cgu_name: String,
|
2020-05-12 15:56:02 +10:00
|
|
|
/// Saved file associated with this CGU.
|
|
|
|
pub saved_file: Option<String>,
|
2016-03-28 17:37:34 -04:00
|
|
|
}
|
2017-08-21 16:44:05 +02:00
|
|
|
|
2020-11-26 01:10:43 -08:00
|
|
|
// The maximum value of the follow index types leaves the upper two bits unused
|
|
|
|
// so that we can store multiple index types in `CompressedHybridIndex`, and use
|
|
|
|
// those bits to encode which index type it contains.
|
|
|
|
|
|
|
|
// Index type for `NewDepNodeData`.
|
|
|
|
rustc_index::newtype_index! {
|
|
|
|
struct NewDepNodeIndex {
|
|
|
|
MAX = 0x7FFF_FFFF
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Index type for `RedDepNodeData`.
|
|
|
|
rustc_index::newtype_index! {
|
|
|
|
struct RedDepNodeIndex {
|
|
|
|
MAX = 0x7FFF_FFFF
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-28 17:42:41 -08:00
|
|
|
// Index type for `LightGreenDepNodeData`.
|
2020-11-26 01:10:43 -08:00
|
|
|
rustc_index::newtype_index! {
|
2020-11-28 17:42:41 -08:00
|
|
|
struct LightGreenDepNodeIndex {
|
2020-11-26 01:10:43 -08:00
|
|
|
MAX = 0x7FFF_FFFF
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Compressed representation of `HybridIndex` enum. Bits unused by the
|
|
|
|
/// contained index types are used to encode which index type it contains.
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
struct CompressedHybridIndex(u32);
|
|
|
|
|
|
|
|
impl CompressedHybridIndex {
|
|
|
|
const NEW_TAG: u32 = 0b0000_0000_0000_0000_0000_0000_0000_0000;
|
|
|
|
const RED_TAG: u32 = 0b0100_0000_0000_0000_0000_0000_0000_0000;
|
2020-11-28 17:42:41 -08:00
|
|
|
const LIGHT_GREEN_TAG: u32 = 0b1000_0000_0000_0000_0000_0000_0000_0000;
|
|
|
|
const DARK_GREEN_TAG: u32 = 0b1100_0000_0000_0000_0000_0000_0000_0000;
|
2020-11-26 01:10:43 -08:00
|
|
|
|
|
|
|
const TAG_MASK: u32 = 0b1100_0000_0000_0000_0000_0000_0000_0000;
|
|
|
|
const INDEX_MASK: u32 = !Self::TAG_MASK;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<NewDepNodeIndex> for CompressedHybridIndex {
|
|
|
|
#[inline]
|
|
|
|
fn from(index: NewDepNodeIndex) -> Self {
|
|
|
|
CompressedHybridIndex(Self::NEW_TAG | index.as_u32())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<RedDepNodeIndex> for CompressedHybridIndex {
|
|
|
|
#[inline]
|
|
|
|
fn from(index: RedDepNodeIndex) -> Self {
|
|
|
|
CompressedHybridIndex(Self::RED_TAG | index.as_u32())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-28 17:42:41 -08:00
|
|
|
impl From<LightGreenDepNodeIndex> for CompressedHybridIndex {
|
|
|
|
#[inline]
|
|
|
|
fn from(index: LightGreenDepNodeIndex) -> Self {
|
|
|
|
CompressedHybridIndex(Self::LIGHT_GREEN_TAG | index.as_u32())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<SerializedDepNodeIndex> for CompressedHybridIndex {
|
2020-11-26 01:10:43 -08:00
|
|
|
#[inline]
|
2020-11-28 17:42:41 -08:00
|
|
|
fn from(index: SerializedDepNodeIndex) -> Self {
|
|
|
|
CompressedHybridIndex(Self::DARK_GREEN_TAG | index.as_u32())
|
2020-11-26 01:10:43 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Contains an index into one of several node data collections. Elsewhere, we
|
|
|
|
/// store `CompressedHyridIndex` instead of this to save space, but convert to
|
|
|
|
/// this type during processing to take advantage of the enum match ergonomics.
|
|
|
|
enum HybridIndex {
|
|
|
|
New(NewDepNodeIndex),
|
|
|
|
Red(RedDepNodeIndex),
|
2020-11-28 17:42:41 -08:00
|
|
|
LightGreen(LightGreenDepNodeIndex),
|
|
|
|
DarkGreen(SerializedDepNodeIndex),
|
2020-11-26 01:10:43 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<CompressedHybridIndex> for HybridIndex {
|
|
|
|
#[inline]
|
|
|
|
fn from(hybrid_index: CompressedHybridIndex) -> Self {
|
|
|
|
let index = hybrid_index.0 & CompressedHybridIndex::INDEX_MASK;
|
|
|
|
|
|
|
|
match hybrid_index.0 & CompressedHybridIndex::TAG_MASK {
|
|
|
|
CompressedHybridIndex::NEW_TAG => HybridIndex::New(NewDepNodeIndex::from_u32(index)),
|
|
|
|
CompressedHybridIndex::RED_TAG => HybridIndex::Red(RedDepNodeIndex::from_u32(index)),
|
2020-11-28 17:42:41 -08:00
|
|
|
CompressedHybridIndex::LIGHT_GREEN_TAG => {
|
|
|
|
HybridIndex::LightGreen(LightGreenDepNodeIndex::from_u32(index))
|
|
|
|
}
|
|
|
|
CompressedHybridIndex::DARK_GREEN_TAG => {
|
|
|
|
HybridIndex::DarkGreen(SerializedDepNodeIndex::from_u32(index))
|
2020-11-26 01:10:43 -08:00
|
|
|
}
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-30 21:07:08 -08:00
|
|
|
// Index type for `DepNodeData`'s edges.
|
|
|
|
rustc_index::newtype_index! {
|
|
|
|
struct EdgeIndex { .. }
|
|
|
|
}
|
|
|
|
|
2020-11-26 01:10:43 -08:00
|
|
|
/// Data for nodes in the current graph, divided into different collections
|
|
|
|
/// based on their presence in the previous graph, and if present, their color.
|
|
|
|
/// We divide nodes this way because different types of nodes are able to share
|
|
|
|
/// more or less data with the previous graph.
|
|
|
|
///
|
2020-11-28 17:42:41 -08:00
|
|
|
/// To enable more sharing, we distinguish between two kinds of green nodes.
|
|
|
|
/// Light green nodes are nodes in the previous graph that have been marked
|
|
|
|
/// green because we re-executed their queries and the results were the same as
|
|
|
|
/// in the previous session. Dark green nodes are nodes in the previous graph
|
|
|
|
/// that have been marked green because we were able to mark all of their
|
|
|
|
/// dependencies green.
|
|
|
|
///
|
|
|
|
/// Both light and dark green nodes can share the dep node and fingerprint with
|
|
|
|
/// the previous graph, but for light green nodes, we can't be sure that the
|
|
|
|
/// edges may be shared without comparing them against the previous edges, so we
|
|
|
|
/// store them directly (an approach in which we compare edges with the previous
|
|
|
|
/// edges to see if they can be shared was evaluated, but was not found to be
|
|
|
|
/// very profitable).
|
|
|
|
///
|
|
|
|
/// For dark green nodes, we can share everything with the previous graph, which
|
|
|
|
/// is why the `HybridIndex::DarkGreen` enum variant contains the index of the
|
|
|
|
/// node in the previous graph, and why we don't have a separate collection for
|
|
|
|
/// dark green node data--the collection is the `PreviousDepGraph` itself.
|
|
|
|
///
|
|
|
|
/// (Note that for dark green nodes, the edges in the previous graph
|
|
|
|
/// (`SerializedDepNodeIndex`s) must be converted to edges in the current graph
|
|
|
|
/// (`DepNodeIndex`s). `CurrentDepGraph` contains `prev_index_to_index`, which
|
|
|
|
/// can perform this conversion. It should always be possible, as by definition,
|
|
|
|
/// a dark green node is one whose dependencies from the previous session have
|
|
|
|
/// all been marked green--which means `prev_index_to_index` contains them.)
|
|
|
|
///
|
2020-11-26 01:10:43 -08:00
|
|
|
/// Node data is stored in parallel vectors to eliminate the padding between
|
|
|
|
/// elements that would be needed to satisfy alignment requirements of the
|
|
|
|
/// structure that would contain all of a node's data. We could group tightly
|
|
|
|
/// packing subsets of node data together and use fewer vectors, but for
|
|
|
|
/// consistency's sake, we use separate vectors for each piece of data.
|
2020-03-18 10:25:22 +01:00
|
|
|
struct DepNodeData<K> {
|
2020-11-26 01:10:43 -08:00
|
|
|
/// Data for nodes not in previous graph.
|
|
|
|
new: NewDepNodeData<K>,
|
|
|
|
|
|
|
|
/// Data for nodes in previous graph that have been marked red.
|
|
|
|
red: RedDepNodeData,
|
|
|
|
|
2020-11-28 17:42:41 -08:00
|
|
|
/// Data for nodes in previous graph that have been marked light green.
|
|
|
|
light_green: LightGreenDepNodeData,
|
2020-11-26 01:10:43 -08:00
|
|
|
|
2020-11-30 21:07:08 -08:00
|
|
|
// Edges for all nodes other than dark-green ones. Edges for each node
|
|
|
|
// occupy a contiguous region of this collection, which a node can reference
|
|
|
|
// using two indices. Storing edges this way rather than using an `EdgesVec`
|
|
|
|
// for each node reduces memory consumption by a not insignificant amount
|
|
|
|
// when compiling large crates. The downside is that we have to copy into
|
|
|
|
// this collection the edges from the `EdgesVec`s that are built up during
|
|
|
|
// query execution. But this is mostly balanced out by the more efficient
|
|
|
|
// implementation of `DepGraph::serialize` enabled by this representation.
|
|
|
|
unshared_edges: IndexVec<EdgeIndex, DepNodeIndex>,
|
|
|
|
|
2020-11-26 01:10:43 -08:00
|
|
|
/// Mapping from `DepNodeIndex` to an index into a collection above.
|
|
|
|
/// Indicates which of the above collections contains a node's data.
|
|
|
|
///
|
|
|
|
/// This collection is wasteful in time and space during incr-full builds,
|
|
|
|
/// because for those, all nodes are new. However, the waste is relatively
|
|
|
|
/// small, and the maintenance cost of avoiding using this for incr-full
|
|
|
|
/// builds is somewhat high and prone to bugginess. It does not seem worth
|
|
|
|
/// it at the time of this writing, but we may want to revisit the idea.
|
|
|
|
hybrid_indices: IndexVec<DepNodeIndex, CompressedHybridIndex>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Data for nodes not in previous graph. Since we cannot share any data with
|
|
|
|
/// the previous graph, so we must store all of such a node's data here.
|
|
|
|
struct NewDepNodeData<K> {
|
|
|
|
nodes: IndexVec<NewDepNodeIndex, DepNode<K>>,
|
2020-11-30 21:07:08 -08:00
|
|
|
edges: IndexVec<NewDepNodeIndex, Range<EdgeIndex>>,
|
2020-11-26 01:10:43 -08:00
|
|
|
fingerprints: IndexVec<NewDepNodeIndex, Fingerprint>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Data for nodes in previous graph that have been marked red. We can share the
|
|
|
|
/// dep node with the previous graph, but the edges may be different, and the
|
|
|
|
/// fingerprint is known to be different, so we store the latter two directly.
|
|
|
|
struct RedDepNodeData {
|
|
|
|
node_indices: IndexVec<RedDepNodeIndex, SerializedDepNodeIndex>,
|
2020-11-30 21:07:08 -08:00
|
|
|
edges: IndexVec<RedDepNodeIndex, Range<EdgeIndex>>,
|
2020-11-26 01:10:43 -08:00
|
|
|
fingerprints: IndexVec<RedDepNodeIndex, Fingerprint>,
|
|
|
|
}
|
|
|
|
|
2020-11-28 17:42:41 -08:00
|
|
|
/// Data for nodes in previous graph that have been marked green because we
|
|
|
|
/// re-executed their queries and the results were the same as in the previous
|
|
|
|
/// session. We can share the dep node and the fingerprint with the previous
|
|
|
|
/// graph, but the edges may be different, so we store them directly.
|
|
|
|
struct LightGreenDepNodeData {
|
|
|
|
node_indices: IndexVec<LightGreenDepNodeIndex, SerializedDepNodeIndex>,
|
2020-11-30 21:07:08 -08:00
|
|
|
edges: IndexVec<LightGreenDepNodeIndex, Range<EdgeIndex>>,
|
2018-12-22 12:40:23 +01:00
|
|
|
}
|
|
|
|
|
2020-11-26 01:10:43 -08:00
|
|
|
/// `CurrentDepGraph` stores the dependency graph for the current session. It
|
|
|
|
/// will be populated as we run queries or tasks. We never remove nodes from the
|
|
|
|
/// graph: they are only added.
|
2019-06-13 22:42:24 +02:00
|
|
|
///
|
2020-11-26 01:10:43 -08:00
|
|
|
/// The nodes in it are identified by a `DepNodeIndex`. Internally, this maps to
|
|
|
|
/// a `HybridIndex`, which identifies which collection in the `data` field
|
|
|
|
/// contains a node's data. Which collection is used for a node depends on
|
|
|
|
/// whether the node was present in the `PreviousDepGraph`, and if so, the color
|
|
|
|
/// of the node. Each type of node can share more or less data with the previous
|
|
|
|
/// graph. When possible, we can store just the index of the node in the
|
|
|
|
/// previous graph, rather than duplicating its data in our own collections.
|
|
|
|
/// This is important, because these graph structures are some of the largest in
|
|
|
|
/// the compiler.
|
2019-06-13 22:42:24 +02:00
|
|
|
///
|
2020-11-26 01:10:43 -08:00
|
|
|
/// For the same reason, we also avoid storing `DepNode`s more than once as map
|
|
|
|
/// keys. The `new_node_to_index` map only contains nodes not in the previous
|
|
|
|
/// graph, and we map nodes in the previous graph to indices via a two-step
|
|
|
|
/// mapping. `PreviousDepGraph` maps from `DepNode` to `SerializedDepNodeIndex`,
|
|
|
|
/// and the `prev_index_to_index` vector (which is more compact and faster than
|
|
|
|
/// using a map) maps from `SerializedDepNodeIndex` to `DepNodeIndex`.
|
2019-06-13 22:42:24 +02:00
|
|
|
///
|
2020-11-26 01:10:43 -08:00
|
|
|
/// This struct uses three locks internally. The `data`, `new_node_to_index`,
|
|
|
|
/// and `prev_index_to_index` fields are locked separately. Operations that take
|
|
|
|
/// a `DepNodeIndex` typically just access the `data` field.
|
2019-06-13 22:42:24 +02:00
|
|
|
///
|
2020-11-26 01:10:43 -08:00
|
|
|
/// We only need to manipulate at most two locks simultaneously:
|
2020-11-28 17:42:41 -08:00
|
|
|
/// `new_node_to_index` and `data`, or `prev_index_to_index` and `data`. When
|
|
|
|
/// manipulating both, we acquire `new_node_to_index` or `prev_index_to_index`
|
|
|
|
/// first, and `data` second.
|
2020-03-18 10:25:22 +01:00
|
|
|
pub(super) struct CurrentDepGraph<K> {
|
2020-11-26 01:10:43 -08:00
|
|
|
data: Lock<DepNodeData<K>>,
|
|
|
|
new_node_to_index: Sharded<FxHashMap<DepNode<K>, DepNodeIndex>>,
|
|
|
|
prev_index_to_index: Lock<IndexVec<SerializedDepNodeIndex, Option<DepNodeIndex>>>,
|
2019-06-13 22:42:24 +02:00
|
|
|
|
|
|
|
/// Used to trap when a specific edge is added to the graph.
|
|
|
|
/// This is used for debug purposes and is only active with `debug_assertions`.
|
2018-12-25 04:36:17 +01:00
|
|
|
#[allow(dead_code)]
|
2017-09-28 16:19:10 +02:00
|
|
|
forbidden_edge: Option<EdgeFilter>,
|
2017-10-04 12:35:56 +02:00
|
|
|
|
2019-02-08 14:53:55 +01:00
|
|
|
/// Anonymous `DepNode`s are nodes whose IDs we compute from the list of
|
|
|
|
/// their edges. This has the beneficial side-effect that multiple anonymous
|
|
|
|
/// nodes can be coalesced into one without changing the semantics of the
|
|
|
|
/// dependency graph. However, the merging of nodes can lead to a subtle
|
|
|
|
/// problem during red-green marking: The color of an anonymous node from
|
|
|
|
/// the current session might "shadow" the color of the node with the same
|
|
|
|
/// ID from the previous session. In order to side-step this problem, we make
|
|
|
|
/// sure that anonymous `NodeId`s allocated in different sessions don't overlap.
|
|
|
|
/// This is implemented by mixing a session-key into the ID fingerprint of
|
|
|
|
/// each anon node. The session-key is just a random number generated when
|
|
|
|
/// the `DepGraph` is created.
|
2017-10-04 12:35:56 +02:00
|
|
|
anon_id_seed: Fingerprint,
|
2017-11-11 14:32:01 -05:00
|
|
|
|
2019-06-13 22:42:24 +02:00
|
|
|
/// These are simple counters that are for profiling and
|
|
|
|
/// debugging and only active with `debug_assertions`.
|
2019-12-17 16:28:33 -05:00
|
|
|
total_read_count: AtomicU64,
|
|
|
|
total_duplicate_read_count: AtomicU64,
|
2017-08-21 16:44:05 +02:00
|
|
|
}
|
|
|
|
|
2020-03-18 10:25:22 +01:00
|
|
|
impl<K: DepKind> CurrentDepGraph<K> {
|
|
|
|
fn new(prev_graph_node_count: usize) -> CurrentDepGraph<K> {
|
2017-09-28 11:58:45 +02:00
|
|
|
use std::time::{SystemTime, UNIX_EPOCH};
|
|
|
|
|
|
|
|
let duration = SystemTime::now().duration_since(UNIX_EPOCH).unwrap();
|
2019-12-22 17:42:04 -05:00
|
|
|
let nanos = duration.as_secs() * 1_000_000_000 + duration.subsec_nanos() as u64;
|
2017-09-28 11:58:45 +02:00
|
|
|
let mut stable_hasher = StableHasher::new();
|
|
|
|
nanos.hash(&mut stable_hasher);
|
|
|
|
|
2017-09-28 16:19:10 +02:00
|
|
|
let forbidden_edge = if cfg!(debug_assertions) {
|
|
|
|
match env::var("RUST_FORBID_DEP_GRAPH_EDGE") {
|
2019-12-22 17:42:04 -05:00
|
|
|
Ok(s) => match EdgeFilter::new(&s) {
|
|
|
|
Ok(f) => Some(f),
|
2020-03-22 20:47:30 +01:00
|
|
|
Err(err) => panic!("RUST_FORBID_DEP_GRAPH_EDGE invalid: {}", err),
|
2019-12-22 17:42:04 -05:00
|
|
|
},
|
2017-09-28 16:19:10 +02:00
|
|
|
Err(_) => None,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2018-12-22 12:40:23 +01:00
|
|
|
// Pre-allocate the dep node structures. We over-allocate a little so
|
|
|
|
// that we hopefully don't have to re-allocate during this compilation
|
2020-11-26 01:10:43 -08:00
|
|
|
// session. The over-allocation for new nodes is 2% plus a small
|
|
|
|
// constant to account for the fact that in very small crates 2% might
|
|
|
|
// not be enough. The allocation for red and green node data doesn't
|
|
|
|
// include a constant, as we don't want to allocate anything for these
|
|
|
|
// structures during full incremental builds, where they aren't used.
|
2020-11-30 21:07:08 -08:00
|
|
|
//
|
|
|
|
// These estimates are based on the distribution of node and edge counts
|
|
|
|
// seen in rustc-perf benchmarks, adjusted somewhat to account for the
|
|
|
|
// fact that these benchmarks aren't perfectly representative.
|
|
|
|
//
|
|
|
|
// FIXME Use a collection type that doesn't copy node and edge data and
|
|
|
|
// grow multiplicatively on reallocation. Without such a collection or
|
|
|
|
// solution having the same effect, there is a performance hazard here
|
|
|
|
// in both time and space, as growing these collections means copying a
|
|
|
|
// large amount of data and doubling already large buffer capacities. A
|
|
|
|
// solution for this will also mean that it's less important to get
|
|
|
|
// these estimates right.
|
2020-11-26 01:10:43 -08:00
|
|
|
let new_node_count_estimate = (prev_graph_node_count * 2) / 100 + 200;
|
|
|
|
let red_node_count_estimate = (prev_graph_node_count * 3) / 100;
|
2020-11-28 17:42:41 -08:00
|
|
|
let light_green_node_count_estimate = (prev_graph_node_count * 25) / 100;
|
2020-11-26 01:10:43 -08:00
|
|
|
let total_node_count_estimate = prev_graph_node_count + new_node_count_estimate;
|
|
|
|
|
2020-11-30 21:07:08 -08:00
|
|
|
let average_edges_per_node_estimate = 6;
|
|
|
|
let unshared_edge_count_estimate = average_edges_per_node_estimate
|
|
|
|
* (new_node_count_estimate + red_node_count_estimate + light_green_node_count_estimate);
|
|
|
|
|
2020-11-26 01:10:43 -08:00
|
|
|
// We store a large collection of these in `prev_index_to_index` during
|
|
|
|
// non-full incremental builds, and want to ensure that the element size
|
|
|
|
// doesn't inadvertently increase.
|
|
|
|
static_assert_size!(Option<DepNodeIndex>, 4);
|
2018-12-22 12:40:23 +01:00
|
|
|
|
2017-08-21 16:44:05 +02:00
|
|
|
CurrentDepGraph {
|
2020-11-26 01:10:43 -08:00
|
|
|
data: Lock::new(DepNodeData {
|
|
|
|
new: NewDepNodeData {
|
|
|
|
nodes: IndexVec::with_capacity(new_node_count_estimate),
|
|
|
|
edges: IndexVec::with_capacity(new_node_count_estimate),
|
|
|
|
fingerprints: IndexVec::with_capacity(new_node_count_estimate),
|
|
|
|
},
|
|
|
|
red: RedDepNodeData {
|
|
|
|
node_indices: IndexVec::with_capacity(red_node_count_estimate),
|
|
|
|
edges: IndexVec::with_capacity(red_node_count_estimate),
|
|
|
|
fingerprints: IndexVec::with_capacity(red_node_count_estimate),
|
|
|
|
},
|
2020-11-28 17:42:41 -08:00
|
|
|
light_green: LightGreenDepNodeData {
|
|
|
|
node_indices: IndexVec::with_capacity(light_green_node_count_estimate),
|
|
|
|
edges: IndexVec::with_capacity(light_green_node_count_estimate),
|
2020-11-26 01:10:43 -08:00
|
|
|
},
|
2020-11-30 21:07:08 -08:00
|
|
|
unshared_edges: IndexVec::with_capacity(unshared_edge_count_estimate),
|
2020-11-26 01:10:43 -08:00
|
|
|
hybrid_indices: IndexVec::with_capacity(total_node_count_estimate),
|
|
|
|
}),
|
|
|
|
new_node_to_index: Sharded::new(|| {
|
2019-12-22 17:42:04 -05:00
|
|
|
FxHashMap::with_capacity_and_hasher(
|
|
|
|
new_node_count_estimate / sharded::SHARDS,
|
|
|
|
Default::default(),
|
|
|
|
)
|
|
|
|
}),
|
2020-11-26 01:10:43 -08:00
|
|
|
prev_index_to_index: Lock::new(IndexVec::from_elem_n(None, prev_graph_node_count)),
|
2017-09-28 11:58:45 +02:00
|
|
|
anon_id_seed: stable_hasher.finish(),
|
2017-09-28 16:19:10 +02:00
|
|
|
forbidden_edge,
|
2019-12-17 16:28:33 -05:00
|
|
|
total_read_count: AtomicU64::new(0),
|
|
|
|
total_duplicate_read_count: AtomicU64::new(0),
|
2017-08-21 16:44:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-26 01:10:43 -08:00
|
|
|
fn intern_node(
|
2019-06-13 22:42:24 +02:00
|
|
|
&self,
|
2020-11-26 01:10:43 -08:00
|
|
|
prev_graph: &PreviousDepGraph<K>,
|
2020-03-18 10:25:22 +01:00
|
|
|
dep_node: DepNode<K>,
|
2020-03-07 22:46:15 +01:00
|
|
|
edges: EdgesVec,
|
2019-12-22 17:42:04 -05:00
|
|
|
fingerprint: Fingerprint,
|
2018-12-23 05:54:10 +01:00
|
|
|
) -> DepNodeIndex {
|
2019-12-22 17:42:04 -05:00
|
|
|
debug_assert!(
|
2020-11-26 01:10:43 -08:00
|
|
|
prev_graph.node_to_index_opt(&dep_node).is_none(),
|
2020-11-28 17:42:41 -08:00
|
|
|
"node in previous graph should be interned using one \
|
|
|
|
of `intern_red_node`, `intern_light_green_node`, etc."
|
2019-12-22 17:42:04 -05:00
|
|
|
);
|
2020-11-26 01:10:43 -08:00
|
|
|
|
|
|
|
match self.new_node_to_index.get_shard_by_value(&dep_node).lock().entry(dep_node) {
|
|
|
|
Entry::Occupied(entry) => *entry.get(),
|
|
|
|
Entry::Vacant(entry) => {
|
2020-11-30 21:07:08 -08:00
|
|
|
let data = &mut *self.data.lock();
|
2020-11-26 01:10:43 -08:00
|
|
|
let new_index = data.new.nodes.push(dep_node);
|
2020-11-30 21:07:08 -08:00
|
|
|
add_edges(&mut data.unshared_edges, &mut data.new.edges, edges);
|
2020-11-26 01:10:43 -08:00
|
|
|
data.new.fingerprints.push(fingerprint);
|
|
|
|
let dep_node_index = data.hybrid_indices.push(new_index.into());
|
|
|
|
entry.insert(dep_node_index);
|
|
|
|
dep_node_index
|
|
|
|
}
|
|
|
|
}
|
2018-12-23 05:54:10 +01:00
|
|
|
}
|
|
|
|
|
2020-11-26 01:10:43 -08:00
|
|
|
fn intern_red_node(
|
2019-06-13 22:42:24 +02:00
|
|
|
&self,
|
2020-11-26 01:10:43 -08:00
|
|
|
prev_graph: &PreviousDepGraph<K>,
|
|
|
|
prev_index: SerializedDepNodeIndex,
|
2020-03-07 22:46:15 +01:00
|
|
|
edges: EdgesVec,
|
2019-12-22 17:42:04 -05:00
|
|
|
fingerprint: Fingerprint,
|
2019-04-19 18:49:15 +02:00
|
|
|
) -> DepNodeIndex {
|
2020-11-26 01:10:43 -08:00
|
|
|
self.debug_assert_not_in_new_nodes(prev_graph, prev_index);
|
|
|
|
|
|
|
|
let mut prev_index_to_index = self.prev_index_to_index.lock();
|
|
|
|
|
|
|
|
match prev_index_to_index[prev_index] {
|
|
|
|
Some(dep_node_index) => dep_node_index,
|
|
|
|
None => {
|
2020-11-30 21:07:08 -08:00
|
|
|
let data = &mut *self.data.lock();
|
2020-11-26 01:10:43 -08:00
|
|
|
let red_index = data.red.node_indices.push(prev_index);
|
2020-11-30 21:07:08 -08:00
|
|
|
add_edges(&mut data.unshared_edges, &mut data.red.edges, edges);
|
2020-11-26 01:10:43 -08:00
|
|
|
data.red.fingerprints.push(fingerprint);
|
|
|
|
let dep_node_index = data.hybrid_indices.push(red_index.into());
|
|
|
|
prev_index_to_index[prev_index] = Some(dep_node_index);
|
2019-04-19 18:49:15 +02:00
|
|
|
dep_node_index
|
2018-12-23 05:54:10 +01:00
|
|
|
}
|
|
|
|
}
|
2017-08-21 16:44:05 +02:00
|
|
|
}
|
|
|
|
|
2020-11-28 17:42:41 -08:00
|
|
|
fn intern_light_green_node(
|
2020-11-26 01:10:43 -08:00
|
|
|
&self,
|
|
|
|
prev_graph: &PreviousDepGraph<K>,
|
|
|
|
prev_index: SerializedDepNodeIndex,
|
|
|
|
edges: EdgesVec,
|
|
|
|
) -> DepNodeIndex {
|
|
|
|
self.debug_assert_not_in_new_nodes(prev_graph, prev_index);
|
2020-03-06 16:44:22 +01:00
|
|
|
|
2020-11-26 01:10:43 -08:00
|
|
|
let mut prev_index_to_index = self.prev_index_to_index.lock();
|
2018-12-25 04:36:17 +01:00
|
|
|
|
2020-11-26 01:10:43 -08:00
|
|
|
match prev_index_to_index[prev_index] {
|
|
|
|
Some(dep_node_index) => dep_node_index,
|
|
|
|
None => {
|
2020-11-30 21:07:08 -08:00
|
|
|
let data = &mut *self.data.lock();
|
2020-11-28 17:42:41 -08:00
|
|
|
let light_green_index = data.light_green.node_indices.push(prev_index);
|
2020-11-30 21:07:08 -08:00
|
|
|
add_edges(&mut data.unshared_edges, &mut data.light_green.edges, edges);
|
2020-11-28 17:42:41 -08:00
|
|
|
let dep_node_index = data.hybrid_indices.push(light_green_index.into());
|
|
|
|
prev_index_to_index[prev_index] = Some(dep_node_index);
|
|
|
|
dep_node_index
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn intern_dark_green_node(
|
|
|
|
&self,
|
|
|
|
prev_graph: &PreviousDepGraph<K>,
|
|
|
|
prev_index: SerializedDepNodeIndex,
|
|
|
|
) -> DepNodeIndex {
|
|
|
|
self.debug_assert_not_in_new_nodes(prev_graph, prev_index);
|
|
|
|
|
|
|
|
let mut prev_index_to_index = self.prev_index_to_index.lock();
|
|
|
|
|
|
|
|
match prev_index_to_index[prev_index] {
|
|
|
|
Some(dep_node_index) => dep_node_index,
|
|
|
|
None => {
|
|
|
|
let mut data = self.data.lock();
|
|
|
|
let dep_node_index = data.hybrid_indices.push(prev_index.into());
|
2020-11-26 01:10:43 -08:00
|
|
|
prev_index_to_index[prev_index] = Some(dep_node_index);
|
|
|
|
dep_node_index
|
2018-12-25 04:36:17 +01:00
|
|
|
}
|
2020-11-26 01:10:43 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn debug_assert_not_in_new_nodes(
|
|
|
|
&self,
|
|
|
|
prev_graph: &PreviousDepGraph<K>,
|
|
|
|
prev_index: SerializedDepNodeIndex,
|
|
|
|
) {
|
|
|
|
let node = &prev_graph.index_to_node(prev_index);
|
|
|
|
debug_assert!(
|
|
|
|
!self.new_node_to_index.get_shard_by_value(node).lock().contains_key(node),
|
|
|
|
"node from previous graph present in new node collection"
|
|
|
|
);
|
2018-12-25 04:36:17 +01:00
|
|
|
}
|
2018-04-25 11:55:12 +02:00
|
|
|
}
|
|
|
|
|
2020-11-30 21:07:08 -08:00
|
|
|
#[inline]
|
|
|
|
fn add_edges<I: Idx>(
|
|
|
|
edges: &mut IndexVec<EdgeIndex, DepNodeIndex>,
|
|
|
|
edge_indices: &mut IndexVec<I, Range<EdgeIndex>>,
|
|
|
|
new_edges: EdgesVec,
|
|
|
|
) {
|
|
|
|
let start = edges.next_index();
|
|
|
|
edges.extend(new_edges);
|
|
|
|
let end = edges.next_index();
|
|
|
|
edge_indices.push(start..end);
|
|
|
|
}
|
|
|
|
|
2020-03-07 22:46:15 +01:00
|
|
|
/// The capacity of the `reads` field `SmallVec`
|
2020-03-06 16:44:22 +01:00
|
|
|
const TASK_DEPS_READS_CAP: usize = 8;
|
2020-03-07 22:46:15 +01:00
|
|
|
type EdgesVec = SmallVec<[DepNodeIndex; TASK_DEPS_READS_CAP]>;
|
2020-03-18 10:25:22 +01:00
|
|
|
|
|
|
|
pub struct TaskDeps<K> {
|
2018-12-25 04:36:17 +01:00
|
|
|
#[cfg(debug_assertions)]
|
2020-03-18 10:25:22 +01:00
|
|
|
node: Option<DepNode<K>>,
|
2020-03-07 22:46:15 +01:00
|
|
|
reads: EdgesVec,
|
2018-04-25 11:55:12 +02:00
|
|
|
read_set: FxHashSet<DepNodeIndex>,
|
2020-03-22 20:47:30 +01:00
|
|
|
phantom_data: PhantomData<DepNode<K>>,
|
2020-03-18 10:25:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<K> Default for TaskDeps<K> {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self {
|
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
node: None,
|
|
|
|
reads: EdgesVec::new(),
|
|
|
|
read_set: FxHashSet::default(),
|
2020-03-22 20:47:30 +01:00
|
|
|
phantom_data: PhantomData,
|
2020-03-18 10:25:22 +01:00
|
|
|
}
|
|
|
|
}
|
2018-04-25 11:55:12 +02:00
|
|
|
}
|
|
|
|
|
2018-02-13 17:40:46 +01:00
|
|
|
// A data structure that stores Option<DepNodeColor> values as a contiguous
|
|
|
|
// array, using one u32 per entry.
|
|
|
|
struct DepNodeColorMap {
|
2018-12-22 18:03:40 +01:00
|
|
|
values: IndexVec<SerializedDepNodeIndex, AtomicU32>,
|
2018-02-13 17:40:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const COMPRESSED_NONE: u32 = 0;
|
|
|
|
const COMPRESSED_RED: u32 = 1;
|
|
|
|
const COMPRESSED_FIRST_GREEN: u32 = 2;
|
|
|
|
|
|
|
|
impl DepNodeColorMap {
|
|
|
|
fn new(size: usize) -> DepNodeColorMap {
|
2019-12-22 17:42:04 -05:00
|
|
|
DepNodeColorMap { values: (0..size).map(|_| AtomicU32::new(COMPRESSED_NONE)).collect() }
|
2018-02-13 17:40:46 +01:00
|
|
|
}
|
|
|
|
|
2020-03-30 14:36:28 +02:00
|
|
|
#[inline]
|
2018-02-13 17:40:46 +01:00
|
|
|
fn get(&self, index: SerializedDepNodeIndex) -> Option<DepNodeColor> {
|
2018-12-22 18:03:40 +01:00
|
|
|
match self.values[index].load(Ordering::Acquire) {
|
2018-02-13 17:40:46 +01:00
|
|
|
COMPRESSED_NONE => None,
|
|
|
|
COMPRESSED_RED => Some(DepNodeColor::Red),
|
2019-12-22 17:42:04 -05:00
|
|
|
value => {
|
|
|
|
Some(DepNodeColor::Green(DepNodeIndex::from_u32(value - COMPRESSED_FIRST_GREEN)))
|
|
|
|
}
|
2018-02-13 17:40:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-22 18:03:40 +01:00
|
|
|
fn insert(&self, index: SerializedDepNodeIndex, color: DepNodeColor) {
|
2019-12-22 17:42:04 -05:00
|
|
|
self.values[index].store(
|
|
|
|
match color {
|
|
|
|
DepNodeColor::Red => COMPRESSED_RED,
|
|
|
|
DepNodeColor::Green(index) => index.as_u32() + COMPRESSED_FIRST_GREEN,
|
|
|
|
},
|
|
|
|
Ordering::Release,
|
|
|
|
)
|
2018-02-13 17:40:46 +01:00
|
|
|
}
|
|
|
|
}
|