2019-02-08 00:56:05 +09:00
|
|
|
use errors::{Diagnostic, DiagnosticBuilder};
|
2017-12-03 14:21:23 +01:00
|
|
|
use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
|
2017-08-21 16:44:05 +02:00
|
|
|
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
|
|
|
|
use rustc_data_structures::indexed_vec::{Idx, IndexVec};
|
2018-08-13 22:15:16 +03:00
|
|
|
use smallvec::SmallVec;
|
2018-12-22 18:03:40 +01:00
|
|
|
use rustc_data_structures::sync::{Lrc, Lock, AtomicU32, Ordering};
|
2017-09-28 16:19:10 +02:00
|
|
|
use std::env;
|
2017-08-21 16:44:05 +02:00
|
|
|
use std::hash::Hash;
|
2018-12-23 05:54:10 +01:00
|
|
|
use std::collections::hash_map::Entry;
|
2019-02-05 11:20:45 -06:00
|
|
|
use crate::ty::{self, TyCtxt};
|
|
|
|
use crate::util::common::{ProfileQueriesMsg, profq_msg};
|
2018-12-22 18:59:03 +01:00
|
|
|
use parking_lot::{Mutex, Condvar};
|
2016-03-28 17:37:34 -04:00
|
|
|
|
2019-02-05 11:20:45 -06:00
|
|
|
use crate::ich::{StableHashingContext, StableHashingContextProvider, Fingerprint};
|
2017-09-07 16:11:58 +02:00
|
|
|
|
2017-09-28 16:19:10 +02:00
|
|
|
use super::debug::EdgeFilter;
|
2017-06-23 16:37:12 +02:00
|
|
|
use super::dep_node::{DepNode, DepKind, WorkProductId};
|
2016-03-28 17:37:34 -04:00
|
|
|
use super::query::DepGraphQuery;
|
isolate dep-graph tasks
A task function is now given as a `fn` pointer to ensure that it carries
no state. Each fn can take two arguments, because that worked out to be
convenient -- these two arguments must be of some type that is
`DepGraphSafe`, a new trait that is intended to prevent "leaking"
information into the task that was derived from tracked state.
This intentionally leaves `DepGraph::in_task()`, the more common form,
alone. Eventually all uses of `DepGraph::in_task()` should be ported
to `with_task()`, but I wanted to start with a smaller subset.
Originally I wanted to use closures bound by an auto trait, but that
approach has some limitations:
- the trait cannot have a `read()` method; since the current method
is unused, that may not be a problem.
- more importantly, we would want the auto trait to be "undefined" for all types
*by default* -- that is, this use case doesn't really fit the typical
auto trait scenario. For example, imagine that there is a `u32` loaded
out of a `hir::Node` -- we don't really want to be passing that
`u32` into the task!
2017-03-06 15:35:34 -05:00
|
|
|
use super::safe::DepGraphSafe;
|
2017-09-22 13:00:42 +02:00
|
|
|
use super::serialized::{SerializedDepGraph, SerializedDepNodeIndex};
|
|
|
|
use super::prev::PreviousDepGraph;
|
2016-03-28 17:37:34 -04:00
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct DepGraph {
|
2018-02-27 17:11:14 +01:00
|
|
|
data: Option<Lrc<DepGraphData>>,
|
2016-07-21 12:33:23 -04:00
|
|
|
}
|
|
|
|
|
2018-07-25 13:41:32 +03:00
|
|
|
newtype_index! {
|
|
|
|
pub struct DepNodeIndex { .. }
|
|
|
|
}
|
2017-08-21 16:44:05 +02:00
|
|
|
|
|
|
|
impl DepNodeIndex {
|
2018-08-23 07:46:53 -04:00
|
|
|
const INVALID: DepNodeIndex = DepNodeIndex::MAX;
|
2017-08-21 16:44:05 +02:00
|
|
|
}
|
|
|
|
|
2017-09-25 12:25:41 +02:00
|
|
|
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub enum DepNodeColor {
|
|
|
|
Red,
|
2017-09-25 13:51:49 +02: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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-21 12:33:23 -04:00
|
|
|
struct DepGraphData {
|
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
|
|
|
|
/// current one anymore.
|
2018-04-06 14:52:36 +02:00
|
|
|
current: Lock<CurrentDepGraph>,
|
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.
|
|
|
|
previous: PreviousDepGraph,
|
|
|
|
|
2018-12-22 18:03:40 +01:00
|
|
|
colors: DepNodeColorMap,
|
2017-09-25 12:25:41 +02:00
|
|
|
|
2019-02-08 14:53:55 +01:00
|
|
|
/// A set of loaded diagnostics that have been emitted.
|
2018-12-22 18:59:03 +01:00
|
|
|
emitted_diagnostics: Mutex<FxHashSet<DepNodeIndex>>,
|
|
|
|
|
|
|
|
/// Used to wait for diagnostics to be emitted.
|
|
|
|
emitted_diagnostics_cond_var: Condvar,
|
|
|
|
|
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
|
|
|
|
2018-04-06 14:52:36 +02:00
|
|
|
dep_node_debug: Lock<FxHashMap<DepNode, String>>,
|
2017-09-28 11:58:45 +02:00
|
|
|
|
|
|
|
// Used for testing, only populated when -Zquery-dep-graph is specified.
|
2018-04-06 14:52:36 +02:00
|
|
|
loaded_from_cache: Lock<FxHashMap<DepNodeIndex, bool>>,
|
2016-03-28 17:37:34 -04:00
|
|
|
}
|
|
|
|
|
2019-01-20 05:44:02 +01:00
|
|
|
pub fn hash_result<R>(hcx: &mut StableHashingContext<'_>, result: &R) -> Option<Fingerprint>
|
|
|
|
where
|
|
|
|
R: for<'a> HashStable<StableHashingContext<'a>>,
|
|
|
|
{
|
|
|
|
let mut stable_hasher = StableHasher::new();
|
|
|
|
result.hash_stable(hcx, &mut stable_hasher);
|
|
|
|
|
|
|
|
Some(stable_hasher.finish())
|
|
|
|
}
|
|
|
|
|
2016-03-28 17:37:34 -04:00
|
|
|
impl DepGraph {
|
2017-09-22 13:00:42 +02:00
|
|
|
|
2018-05-07 22:30:44 -04:00
|
|
|
pub fn new(prev_graph: PreviousDepGraph,
|
|
|
|
prev_work_products: FxHashMap<WorkProductId, WorkProduct>) -> DepGraph {
|
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(),
|
2018-12-22 12:40:23 +01:00
|
|
|
current: Lock::new(CurrentDepGraph::new(prev_graph_node_count)),
|
2018-12-22 18:59:03 +01:00
|
|
|
emitted_diagnostics: Default::default(),
|
|
|
|
emitted_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),
|
2018-07-25 15:44:06 +03:00
|
|
|
loaded_from_cache: Default::default(),
|
2017-09-22 13:00:42 +02:00
|
|
|
})),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn new_disabled() -> DepGraph {
|
|
|
|
DepGraph {
|
|
|
|
data: None,
|
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
|
|
|
}
|
|
|
|
|
2017-06-02 17:36:30 +02:00
|
|
|
pub fn query(&self) -> DepGraphQuery {
|
2017-09-28 13:26:15 +02:00
|
|
|
let current_dep_graph = self.data.as_ref().unwrap().current.borrow();
|
2018-12-22 12:40:23 +01:00
|
|
|
let nodes: Vec<_> = current_dep_graph.data.iter().map(|n| n.node).collect();
|
2017-09-28 13:26:15 +02:00
|
|
|
let mut edges = Vec::new();
|
2018-12-22 12:40:23 +01:00
|
|
|
for (from, edge_targets) in current_dep_graph.data.iter()
|
|
|
|
.map(|d| (d.node, &d.edges)) {
|
2018-05-09 12:21:48 +10:00
|
|
|
for &edge_target in edge_targets.iter() {
|
2018-12-22 12:40:23 +01:00
|
|
|
let to = current_dep_graph.data[edge_target].node;
|
2017-09-28 13:26:15 +02:00
|
|
|
edges.push((from, to));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DepGraphQuery::new(&nodes[..], &edges[..])
|
2016-03-28 17:37:34 -04:00
|
|
|
}
|
|
|
|
|
2017-12-28 06:05:45 +01:00
|
|
|
pub fn assert_ignored(&self)
|
|
|
|
{
|
2018-04-06 14:52:36 +02:00
|
|
|
if let Some(..) = self.data {
|
|
|
|
ty::tls::with_context_opt(|icx| {
|
|
|
|
let icx = if let Some(icx) = icx { icx } else { return };
|
2018-12-25 04:36:17 +01:00
|
|
|
assert!(icx.task_deps.is_none(), "expected no task dependency tracking");
|
2018-04-06 14:52:36 +02:00
|
|
|
})
|
2017-12-28 06:05:45 +01:00
|
|
|
}
|
2016-03-28 17:37:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn with_ignore<OP,R>(&self, op: OP) -> R
|
|
|
|
where OP: FnOnce() -> R
|
|
|
|
{
|
2018-04-06 14:52:36 +02:00
|
|
|
ty::tls::with_context(|icx| {
|
|
|
|
let icx = ty::tls::ImplicitCtxt {
|
2018-12-25 04:36:17 +01:00
|
|
|
task_deps: None,
|
2018-04-06 14:52:36 +02:00
|
|
|
..icx.clone()
|
|
|
|
};
|
|
|
|
|
|
|
|
ty::tls::enter_context(&icx, |_| {
|
|
|
|
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
|
2018-02-25 15:24:14 -06:00
|
|
|
/// dep-graph -- see the [rustc 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.
|
|
|
|
///
|
2018-11-26 15:03:13 -06:00
|
|
|
/// [rustc guide]: https://rust-lang.github.io/rustc-guide/incremental-compilation.html
|
2019-01-20 05:44:02 +01:00
|
|
|
pub fn with_task<'a, C, A, R>(
|
|
|
|
&self,
|
|
|
|
key: DepNode,
|
|
|
|
cx: C,
|
|
|
|
arg: A,
|
|
|
|
task: fn(C, A) -> R,
|
|
|
|
hash_result: impl FnOnce(&mut StableHashingContext<'_>, &R) -> Option<Fingerprint>,
|
|
|
|
) -> (R, DepNodeIndex)
|
|
|
|
where
|
|
|
|
C: DepGraphSafe + StableHashingContextProvider<'a>,
|
2017-10-17 22:50:33 -04:00
|
|
|
{
|
2018-04-06 14:52:36 +02:00
|
|
|
self.with_task_impl(key, cx, arg, false, task,
|
2018-12-25 04:36:17 +01:00
|
|
|
|_key| Some(TaskDeps {
|
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
node: Some(_key),
|
2018-05-09 12:21:48 +10:00
|
|
|
reads: SmallVec::new(),
|
2018-10-16 16:57:53 +02:00
|
|
|
read_set: Default::default(),
|
2018-12-25 04:36:17 +01:00
|
|
|
}),
|
|
|
|
|data, key, fingerprint, task| {
|
|
|
|
data.borrow_mut().complete_task(key, task.unwrap(), fingerprint)
|
2019-01-20 05:44:02 +01:00
|
|
|
},
|
|
|
|
hash_result)
|
2018-04-06 14:52:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a new dep-graph input with value `input`
|
2019-01-20 05:44:02 +01:00
|
|
|
pub fn input_task<'a, C, R>(&self,
|
2018-04-06 14:52:36 +02:00
|
|
|
key: DepNode,
|
|
|
|
cx: C,
|
|
|
|
input: R)
|
|
|
|
-> (R, DepNodeIndex)
|
2019-01-20 05:44:02 +01:00
|
|
|
where C: DepGraphSafe + StableHashingContextProvider<'a>,
|
|
|
|
R: for<'b> HashStable<StableHashingContext<'b>>,
|
2018-04-06 14:52:36 +02:00
|
|
|
{
|
|
|
|
fn identity_fn<C, A>(_: C, arg: A) -> A {
|
|
|
|
arg
|
|
|
|
}
|
|
|
|
|
|
|
|
self.with_task_impl(key, cx, input, true, identity_fn,
|
2018-12-25 04:36:17 +01:00
|
|
|
|_| None,
|
2018-12-31 09:14:09 +01:00
|
|
|
|data, key, fingerprint, _| {
|
|
|
|
data.borrow_mut().alloc_node(key, SmallVec::new(), fingerprint)
|
2019-01-20 05:44:02 +01:00
|
|
|
},
|
|
|
|
hash_result::<R>)
|
2017-10-17 22:50:33 -04:00
|
|
|
}
|
|
|
|
|
2019-01-20 05:44:02 +01:00
|
|
|
fn with_task_impl<'a, C, A, R>(
|
2018-04-25 02:30:18 +02:00
|
|
|
&self,
|
|
|
|
key: DepNode,
|
|
|
|
cx: C,
|
|
|
|
arg: A,
|
|
|
|
no_tcx: bool,
|
|
|
|
task: fn(C, A) -> R,
|
2018-12-25 04:36:17 +01:00
|
|
|
create_task: fn(DepNode) -> Option<TaskDeps>,
|
2018-04-25 02:30:18 +02:00
|
|
|
finish_task_and_alloc_depnode: fn(&Lock<CurrentDepGraph>,
|
|
|
|
DepNode,
|
2018-12-22 12:40:23 +01:00
|
|
|
Fingerprint,
|
2019-01-20 05:44:02 +01:00
|
|
|
Option<TaskDeps>) -> DepNodeIndex,
|
|
|
|
hash_result: impl FnOnce(&mut StableHashingContext<'_>, &R) -> Option<Fingerprint>,
|
2018-04-25 02:30:18 +02:00
|
|
|
) -> (R, DepNodeIndex)
|
|
|
|
where
|
2019-01-20 05:44:02 +01:00
|
|
|
C: DepGraphSafe + StableHashingContextProvider<'a>,
|
2016-03-28 17:37:34 -04:00
|
|
|
{
|
2017-07-04 17:33:43 +02:00
|
|
|
if let Some(ref data) = self.data {
|
2018-12-25 04:36:17 +01:00
|
|
|
let task_deps = create_task(key).map(|deps| Lock::new(deps));
|
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.
|
2017-12-03 14:21:23 +01:00
|
|
|
let mut hcx = cx.get_stable_hashing_context();
|
|
|
|
|
|
|
|
if cfg!(debug_assertions) {
|
|
|
|
profq_msg(hcx.sess(), ProfileQueriesMsg::TaskBegin(key.clone()))
|
|
|
|
};
|
2017-09-07 16:11:58 +02: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 {
|
|
|
|
ty::tls::with_context(|icx| {
|
2018-04-25 11:55:12 +02:00
|
|
|
let icx = ty::tls::ImplicitCtxt {
|
2018-12-25 04:36:17 +01:00
|
|
|
task_deps: task_deps.as_ref(),
|
2018-04-25 11:55:12 +02:00
|
|
|
..icx.clone()
|
2018-04-06 14:52:36 +02:00
|
|
|
};
|
|
|
|
|
2018-04-25 11:55:12 +02:00
|
|
|
ty::tls::enter_context(&icx, |_| {
|
|
|
|
task(cx, arg)
|
|
|
|
})
|
2018-04-06 14:52:36 +02:00
|
|
|
})
|
|
|
|
};
|
2017-12-03 14:21:23 +01:00
|
|
|
|
2017-07-23 10:02:07 -06:00
|
|
|
if cfg!(debug_assertions) {
|
2017-12-03 14:21:23 +01:00
|
|
|
profq_msg(hcx.sess(), ProfileQueriesMsg::TaskEnd)
|
2017-07-23 10:02:07 -06:00
|
|
|
};
|
2017-08-21 16:44:05 +02:00
|
|
|
|
2019-01-20 05:44:02 +01:00
|
|
|
let current_fingerprint = hash_result(&mut hcx, &result);
|
2017-09-25 12:25:41 +02:00
|
|
|
|
2018-12-22 12:40:23 +01:00
|
|
|
let dep_node_index = finish_task_and_alloc_depnode(
|
|
|
|
&data.current,
|
|
|
|
key,
|
2019-01-20 05:44:02 +01:00
|
|
|
current_fingerprint.unwrap_or(Fingerprint::ZERO),
|
2018-12-25 04:36:17 +01:00
|
|
|
task_deps.map(|lock| lock.into_inner()),
|
2018-12-22 12:40:23 +01:00
|
|
|
);
|
2017-09-07 16:11:58 +02:00
|
|
|
|
2019-02-11 00:03:51 +01:00
|
|
|
let print_status = cfg!(debug_assertions) && hcx.sess().opts.debugging_opts.dep_tasks;
|
|
|
|
|
2017-10-04 12:35:56 +02:00
|
|
|
// Determine the color of the new DepNode.
|
2018-02-13 17:40:46 +01:00
|
|
|
if let Some(prev_index) = data.previous.node_to_index_opt(&key) {
|
|
|
|
let prev_fingerprint = data.previous.fingerprint_by_index(prev_index);
|
2017-09-25 12:25:41 +02:00
|
|
|
|
2019-01-20 05:44:02 +01:00
|
|
|
let color = if let Some(current_fingerprint) = current_fingerprint {
|
|
|
|
if current_fingerprint == prev_fingerprint {
|
2019-02-11 00:03:51 +01:00
|
|
|
if print_status {
|
|
|
|
eprintln!("[task::green] {:?}", key);
|
|
|
|
}
|
2019-01-20 05:44:02 +01:00
|
|
|
DepNodeColor::Green(dep_node_index)
|
|
|
|
} else {
|
2019-02-11 00:03:51 +01:00
|
|
|
if print_status {
|
|
|
|
eprintln!("[task::red] {:?}", key);
|
|
|
|
}
|
2019-01-20 05:44:02 +01:00
|
|
|
DepNodeColor::Red
|
|
|
|
}
|
2017-10-04 12:35:56 +02:00
|
|
|
} else {
|
2019-02-11 00:03:51 +01:00
|
|
|
if print_status {
|
|
|
|
eprintln!("[task::unknown] {:?}", key);
|
|
|
|
}
|
2019-01-20 05:44:02 +01:00
|
|
|
// Mark the node as Red if we can't hash the result
|
2017-10-04 12:35:56 +02:00
|
|
|
DepNodeColor::Red
|
|
|
|
};
|
2017-09-25 12:25:41 +02:00
|
|
|
|
2018-12-22 18:03:40 +01:00
|
|
|
debug_assert!(data.colors.get(prev_index).is_none(),
|
2019-01-20 05:44:02 +01:00
|
|
|
"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);
|
2019-02-11 00:03:51 +01:00
|
|
|
} else {
|
|
|
|
if print_status {
|
|
|
|
eprintln!("[task::new] {:?}", key);
|
|
|
|
}
|
2017-10-04 12:35:56 +02:00
|
|
|
}
|
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 {
|
2018-12-22 12:40:23 +01:00
|
|
|
(task(cx, arg), DepNodeIndex::INVALID)
|
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.
|
2017-07-04 17:33:43 +02:00
|
|
|
pub fn with_anon_task<OP,R>(&self, dep_kind: DepKind, op: OP) -> (R, DepNodeIndex)
|
2017-06-23 16:37:12 +02:00
|
|
|
where OP: FnOnce() -> R
|
|
|
|
{
|
|
|
|
if let Some(ref data) = self.data {
|
2018-12-25 04:36:17 +01:00
|
|
|
let (result, task_deps) = ty::tls::with_context(|icx| {
|
|
|
|
let task_deps = Lock::new(TaskDeps {
|
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
node: None,
|
2018-05-09 12:21:48 +10:00
|
|
|
reads: SmallVec::new(),
|
2018-10-16 16:57:53 +02:00
|
|
|
read_set: Default::default(),
|
2018-12-25 04:36:17 +01:00
|
|
|
});
|
2018-04-06 14:52:36 +02:00
|
|
|
|
|
|
|
let r = {
|
|
|
|
let icx = ty::tls::ImplicitCtxt {
|
2018-12-25 04:36:17 +01:00
|
|
|
task_deps: Some(&task_deps),
|
2018-04-06 14:52:36 +02:00
|
|
|
..icx.clone()
|
|
|
|
};
|
|
|
|
|
|
|
|
ty::tls::enter_context(&icx, |_| {
|
|
|
|
op()
|
|
|
|
})
|
|
|
|
};
|
|
|
|
|
2018-12-25 04:36:17 +01:00
|
|
|
(r, task_deps.into_inner())
|
2018-04-06 14:52:36 +02:00
|
|
|
});
|
2017-09-28 16:19:10 +02:00
|
|
|
let dep_node_index = data.current
|
|
|
|
.borrow_mut()
|
2018-12-25 04:36:17 +01:00
|
|
|
.complete_anon_task(dep_kind, task_deps);
|
2017-09-28 16:19:10 +02:00
|
|
|
(result, dep_node_index)
|
2017-06-23 16:37:12 +02:00
|
|
|
} else {
|
2017-07-04 17:33:43 +02:00
|
|
|
(op(), DepNodeIndex::INVALID)
|
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.
|
2019-01-20 05:44:02 +01:00
|
|
|
pub fn with_eval_always_task<'a, C, A, R>(
|
|
|
|
&self,
|
|
|
|
key: DepNode,
|
|
|
|
cx: C,
|
|
|
|
arg: A,
|
|
|
|
task: fn(C, A) -> R,
|
|
|
|
hash_result: impl FnOnce(&mut StableHashingContext<'_>, &R) -> Option<Fingerprint>,
|
|
|
|
) -> (R, DepNodeIndex)
|
|
|
|
where
|
|
|
|
C: DepGraphSafe + StableHashingContextProvider<'a>,
|
2017-10-17 22:50:33 -04:00
|
|
|
{
|
2018-04-06 14:52:36 +02:00
|
|
|
self.with_task_impl(key, cx, arg, false, task,
|
2018-12-25 04:36:17 +01:00
|
|
|
|_| None,
|
|
|
|
|data, key, fingerprint, _| {
|
|
|
|
let mut current = data.borrow_mut();
|
|
|
|
let krate_idx = current.node_to_node_index[
|
|
|
|
&DepNode::new_no_params(DepKind::Krate)
|
|
|
|
];
|
|
|
|
current.alloc_node(key, smallvec![krate_idx], fingerprint)
|
2019-01-20 05:44:02 +01:00
|
|
|
},
|
|
|
|
hash_result)
|
2017-10-17 22:50:33 -04:00
|
|
|
}
|
|
|
|
|
2017-07-04 15:06:57 +02:00
|
|
|
#[inline]
|
2017-06-02 17:36:30 +02:00
|
|
|
pub fn read(&self, v: DepNode) {
|
2017-07-04 15:06:57 +02:00
|
|
|
if let Some(ref data) = self.data {
|
2018-12-25 04:36:17 +01:00
|
|
|
let current = data.current.borrow_mut();
|
2017-09-28 16:19:10 +02:00
|
|
|
if let Some(&dep_node_index) = current.node_to_node_index.get(&v) {
|
2018-12-25 04:36:17 +01:00
|
|
|
std::mem::drop(current);
|
|
|
|
data.read_index(dep_node_index);
|
2017-09-22 13:00:42 +02:00
|
|
|
} else {
|
|
|
|
bug!("DepKind {:?} should be pre-allocated but isn't.", v.kind)
|
|
|
|
}
|
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]
|
2017-09-28 16:19:10 +02:00
|
|
|
pub fn read_index(&self, dep_node_index: DepNodeIndex) {
|
2017-07-04 17:33:43 +02:00
|
|
|
if let Some(ref data) = self.data {
|
2018-12-25 04:36:17 +01:00
|
|
|
data.read_index(dep_node_index);
|
2017-07-04 17:33:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-14 19:52:49 +01:00
|
|
|
#[inline]
|
2017-12-19 18:01:19 +01:00
|
|
|
pub fn dep_node_index_of(&self, dep_node: &DepNode) -> DepNodeIndex {
|
|
|
|
self.data
|
|
|
|
.as_ref()
|
|
|
|
.unwrap()
|
|
|
|
.current
|
|
|
|
.borrow_mut()
|
|
|
|
.node_to_node_index
|
|
|
|
.get(dep_node)
|
|
|
|
.cloned()
|
|
|
|
.unwrap()
|
|
|
|
}
|
|
|
|
|
2018-02-13 17:40:46 +01:00
|
|
|
#[inline]
|
|
|
|
pub fn dep_node_exists(&self, dep_node: &DepNode) -> bool {
|
|
|
|
if let Some(ref data) = self.data {
|
|
|
|
data.current.borrow_mut().node_to_node_index.contains_key(dep_node)
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-19 18:01:19 +01:00
|
|
|
#[inline]
|
|
|
|
pub fn fingerprint_of(&self, dep_node_index: DepNodeIndex) -> Fingerprint {
|
2018-12-22 12:40:23 +01:00
|
|
|
let current = self.data.as_ref().expect("dep graph enabled").current.borrow_mut();
|
|
|
|
current.data[dep_node_index].fingerprint
|
2017-08-18 20:24:19 +02:00
|
|
|
}
|
|
|
|
|
2017-09-25 12:25:41 +02:00
|
|
|
pub fn prev_fingerprint_of(&self, dep_node: &DepNode) -> 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
|
|
|
}
|
|
|
|
|
2017-11-14 19:52:49 +01:00
|
|
|
#[inline]
|
|
|
|
pub fn prev_dep_node_index_of(&self, dep_node: &DepNode) -> SerializedDepNodeIndex {
|
|
|
|
self.data.as_ref().unwrap().previous.node_to_index(dep_node)
|
|
|
|
}
|
|
|
|
|
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> {
|
2017-07-04 15:06:57 +02:00
|
|
|
self.data
|
|
|
|
.as_ref()
|
|
|
|
.and_then(|data| {
|
2018-05-07 22:30:44 -04:00
|
|
|
data.previous_work_products.get(v).cloned()
|
2017-07-04 15:06:57 +02:00
|
|
|
})
|
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)]
|
2017-06-23 16:37:12 +02:00
|
|
|
pub fn register_dep_node_debug_str<F>(&self,
|
|
|
|
dep_node: DepNode,
|
|
|
|
debug_str_gen: F)
|
2017-06-12 17:00:55 +02:00
|
|
|
where F: FnOnce() -> String
|
|
|
|
{
|
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) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
let debug_str = debug_str_gen();
|
|
|
|
dep_node_debug.borrow_mut().insert(dep_node, debug_str);
|
2017-06-12 17:00:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(super) fn dep_node_debug_str(&self, dep_node: DepNode) -> Option<String> {
|
2018-04-03 08:45:06 +09: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) {
|
|
|
|
let current_dep_graph = self.data.as_ref().unwrap().current.borrow();
|
2017-11-11 14:32:01 -05:00
|
|
|
|
2018-12-25 04:36:17 +01:00
|
|
|
Some((current_dep_graph.total_read_count,
|
|
|
|
current_dep_graph.total_duplicate_read_count))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2017-11-11 14:32:01 -05:00
|
|
|
}
|
|
|
|
|
2017-09-22 13:00:42 +02:00
|
|
|
pub fn serialize(&self) -> SerializedDepGraph {
|
|
|
|
let current_dep_graph = self.data.as_ref().unwrap().current.borrow();
|
|
|
|
|
2018-12-22 12:40:23 +01:00
|
|
|
let fingerprints: IndexVec<SerializedDepNodeIndex, _> =
|
|
|
|
current_dep_graph.data.iter().map(|d| d.fingerprint).collect();
|
|
|
|
let nodes: IndexVec<SerializedDepNodeIndex, _> =
|
|
|
|
current_dep_graph.data.iter().map(|d| d.node).collect();
|
2017-09-22 13:00:42 +02:00
|
|
|
|
2018-12-22 12:40:23 +01:00
|
|
|
let total_edge_count: usize = current_dep_graph.data.iter()
|
|
|
|
.map(|d| d.edges.len())
|
|
|
|
.sum();
|
2017-09-22 13:00:42 +02:00
|
|
|
|
|
|
|
let mut edge_list_indices = IndexVec::with_capacity(nodes.len());
|
|
|
|
let mut edge_list_data = Vec::with_capacity(total_edge_count);
|
|
|
|
|
2018-12-22 12:40:23 +01:00
|
|
|
for (current_dep_node_index, edges) in current_dep_graph.data.iter_enumerated()
|
|
|
|
.map(|(i, d)| (i, &d.edges)) {
|
2017-09-22 13:00:42 +02:00
|
|
|
let start = edge_list_data.len() as u32;
|
|
|
|
// This should really just be a memcpy :/
|
2017-09-28 16:11:06 -03:00
|
|
|
edge_list_data.extend(edges.iter().map(|i| SerializedDepNodeIndex::new(i.index())));
|
2017-09-22 13:00:42 +02:00
|
|
|
let end = edge_list_data.len() as u32;
|
|
|
|
|
|
|
|
debug_assert_eq!(current_dep_node_index.index(), edge_list_indices.len());
|
|
|
|
edge_list_indices.push((start, end));
|
|
|
|
}
|
|
|
|
|
|
|
|
debug_assert!(edge_list_data.len() <= ::std::u32::MAX as usize);
|
|
|
|
debug_assert_eq!(edge_list_data.len(), total_edge_count);
|
|
|
|
|
|
|
|
SerializedDepGraph {
|
|
|
|
nodes,
|
2018-03-15 18:56:20 -04:00
|
|
|
fingerprints,
|
2017-09-22 13:00:42 +02:00
|
|
|
edge_list_indices,
|
|
|
|
edge_list_data,
|
|
|
|
}
|
|
|
|
}
|
2017-09-25 13:51:49 +02:00
|
|
|
|
|
|
|
pub fn node_color(&self, dep_node: &DepNode) -> 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) {
|
2018-12-22 18:03:40 +01: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.
|
|
|
|
return Some(DepNodeColor::Red)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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.
|
|
|
|
pub fn try_mark_green_and_read(
|
|
|
|
&self,
|
|
|
|
tcx: TyCtxt<'_, '_, '_>,
|
|
|
|
dep_node: &DepNode
|
|
|
|
) -> 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
|
|
|
|
2018-12-22 18:03:40 +01:00
|
|
|
pub fn try_mark_green(
|
|
|
|
&self,
|
|
|
|
tcx: TyCtxt<'_, '_, '_>,
|
|
|
|
dep_node: &DepNode
|
|
|
|
) -> Option<(SerializedDepNodeIndex, DepNodeIndex)> {
|
|
|
|
debug_assert!(!dep_node.kind.is_input());
|
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.
|
2018-12-22 18:03:40 +01:00
|
|
|
self.try_mark_previous_green(
|
|
|
|
tcx.global_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.
|
2018-12-22 18:03:40 +01:00
|
|
|
fn try_mark_previous_green<'tcx>(
|
|
|
|
&self,
|
|
|
|
tcx: TyCtxt<'_, 'tcx, 'tcx>,
|
|
|
|
data: &DepGraphData,
|
|
|
|
prev_dep_node_index: SerializedDepNodeIndex,
|
|
|
|
dep_node: &DepNode
|
|
|
|
) -> 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
|
|
|
{
|
|
|
|
debug_assert!(!data.current.borrow().node_to_node_index.contains_key(dep_node));
|
|
|
|
debug_assert!(data.colors.get(prev_dep_node_index).is_none());
|
|
|
|
}
|
|
|
|
|
2019-01-15 10:39:35 +01:00
|
|
|
// We never try to mark inputs as green
|
2018-12-22 18:03:40 +01:00
|
|
|
debug_assert!(!dep_node.kind.is_input());
|
|
|
|
|
2019-01-15 10:39:35 +01: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
|
|
|
|
2018-05-09 12:21:48 +10:00
|
|
|
let mut current_deps = SmallVec::new();
|
2017-09-25 13:51:49 +02: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 {
|
|
|
|
Some(DepNodeColor::Green(node_index)) => {
|
|
|
|
// This dependency has been marked as green before, we are
|
|
|
|
// still fine and can continue with checking the other
|
|
|
|
// dependencies.
|
2018-12-22 18:03:40 +01:00
|
|
|
debug!("try_mark_previous_green({:?}) --- found dependency {:?} to \
|
2018-02-13 17:40:46 +01:00
|
|
|
be immediately green",
|
|
|
|
dep_node,
|
|
|
|
data.previous.index_to_node(dep_dep_node_index));
|
2017-09-25 13:51:49 +02:00
|
|
|
current_deps.push(node_index);
|
|
|
|
}
|
|
|
|
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.
|
2018-12-22 18:03:40 +01:00
|
|
|
debug!("try_mark_previous_green({:?}) - END - dependency {:?} was \
|
2018-02-13 17:40:46 +01:00
|
|
|
immediately red",
|
|
|
|
dep_node,
|
|
|
|
data.previous.index_to_node(dep_dep_node_index));
|
2017-09-25 13:51:49 +02:00
|
|
|
return None
|
|
|
|
}
|
|
|
|
None => {
|
2018-02-13 17:40:46 +01:00
|
|
|
let dep_dep_node = &data.previous.index_to_node(dep_dep_node_index);
|
|
|
|
|
2017-11-07 14:53:21 +01:00
|
|
|
// We don't know the state of this dependency. If it isn't
|
|
|
|
// an input node, let's try to mark it green recursively.
|
|
|
|
if !dep_dep_node.kind.is_input() {
|
2018-12-22 18:03:40 +01:00
|
|
|
debug!("try_mark_previous_green({:?}) --- state of dependency {:?} \
|
2017-11-07 14:53:21 +01:00
|
|
|
is unknown, trying to mark it green", dep_node,
|
|
|
|
dep_dep_node);
|
|
|
|
|
2018-12-22 18:03:40 +01:00
|
|
|
let node_index = self.try_mark_previous_green(
|
|
|
|
tcx,
|
|
|
|
data,
|
|
|
|
dep_dep_node_index,
|
|
|
|
dep_dep_node
|
|
|
|
);
|
|
|
|
if let Some(node_index) = node_index {
|
|
|
|
debug!("try_mark_previous_green({:?}) --- managed to MARK \
|
2017-11-07 14:53:21 +01:00
|
|
|
dependency {:?} as green", dep_node, dep_dep_node);
|
|
|
|
current_deps.push(node_index);
|
|
|
|
continue;
|
|
|
|
}
|
2017-11-10 17:50:15 +01:00
|
|
|
} else {
|
2017-11-07 15:04:10 +01:00
|
|
|
match dep_dep_node.kind {
|
|
|
|
DepKind::Hir |
|
|
|
|
DepKind::HirBody |
|
|
|
|
DepKind::CrateMetadata => {
|
2019-01-17 15:32:05 +01:00
|
|
|
if dep_dep_node.extract_def_id(tcx).is_none() {
|
2017-11-10 17:50:15 +01:00
|
|
|
// If the node does not exist anymore, we
|
|
|
|
// just fail to mark green.
|
|
|
|
return None
|
|
|
|
} else {
|
|
|
|
// If the node does exist, it should have
|
|
|
|
// been pre-allocated.
|
|
|
|
bug!("DepNode {:?} should have been \
|
|
|
|
pre-allocated but wasn't.",
|
|
|
|
dep_dep_node)
|
|
|
|
}
|
2017-11-07 15:04:10 +01:00
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
// For other kinds of inputs it's OK to be
|
|
|
|
// forced.
|
|
|
|
}
|
|
|
|
}
|
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.
|
2018-12-22 18:03:40 +01:00
|
|
|
debug!("try_mark_previous_green({:?}) --- trying to force \
|
2017-11-07 14:53:21 +01:00
|
|
|
dependency {:?}", dep_node, dep_dep_node);
|
2019-02-05 11:20:45 -06:00
|
|
|
if crate::ty::query::force_from_dep_node(tcx, 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 {
|
|
|
|
Some(DepNodeColor::Green(node_index)) => {
|
2018-12-22 18:03:40 +01:00
|
|
|
debug!("try_mark_previous_green({:?}) --- managed to \
|
2017-11-07 14:53:21 +01:00
|
|
|
FORCE dependency {:?} to green",
|
|
|
|
dep_node, dep_dep_node);
|
|
|
|
current_deps.push(node_index);
|
|
|
|
}
|
|
|
|
Some(DepNodeColor::Red) => {
|
2018-12-22 18:03:40 +01:00
|
|
|
debug!("try_mark_previous_green({:?}) - END - \
|
2017-11-07 14:53:21 +01:00
|
|
|
dependency {:?} was red after forcing",
|
|
|
|
dep_node,
|
|
|
|
dep_dep_node);
|
|
|
|
return None
|
|
|
|
}
|
|
|
|
None => {
|
2018-03-16 16:18:14 +01:00
|
|
|
if !tcx.sess.has_errors() {
|
2018-12-22 18:03:40 +01:00
|
|
|
bug!("try_mark_previous_green() - Forcing the DepNode \
|
2018-03-16 16:18:14 +01:00
|
|
|
should have set its color")
|
|
|
|
} else {
|
|
|
|
// If the query we just forced has resulted
|
|
|
|
// in some kind of compilation error, we
|
|
|
|
// don't expect that the corresponding
|
|
|
|
// dep-node color has been updated.
|
|
|
|
}
|
2017-09-26 19:43:17 +02:00
|
|
|
}
|
|
|
|
}
|
2017-11-07 14:53:21 +01:00
|
|
|
} else {
|
|
|
|
// The DepNode could not be forced.
|
2018-12-22 18:03:40 +01:00
|
|
|
debug!("try_mark_previous_green({:?}) - END - dependency {:?} \
|
2017-11-07 14:53:21 +01:00
|
|
|
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
|
|
|
|
|
|
|
|
let (dep_node_index, did_allocation) = {
|
|
|
|
let mut current = data.current.borrow_mut();
|
|
|
|
|
2018-12-23 05:54:10 +01:00
|
|
|
// Copy the fingerprint from the previous graph,
|
|
|
|
// so we don't have to recompute it
|
|
|
|
let fingerprint = data.previous.fingerprint_by_index(prev_dep_node_index);
|
|
|
|
|
|
|
|
// We allocating an entry for the node in the current dependency graph and
|
|
|
|
// adding all the appropriate edges imported from the previous graph
|
|
|
|
current.intern_node(*dep_node, current_deps, fingerprint)
|
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
|
|
|
|
2018-12-22 18:59:03 +01:00
|
|
|
let diagnostics = tcx.queries.on_disk_cache
|
|
|
|
.load_diagnostics(tcx, prev_dep_node_index);
|
2017-10-19 14:32:39 +02:00
|
|
|
|
2018-12-22 18:59:03 +01:00
|
|
|
if unlikely!(diagnostics.len() > 0) {
|
|
|
|
self.emit_diagnostics(
|
|
|
|
tcx,
|
|
|
|
data,
|
|
|
|
dep_node_index,
|
|
|
|
did_allocation,
|
|
|
|
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
|
2019-01-28 15:51:47 +01:00
|
|
|
#[cfg(not(parallel_compiler))]
|
2018-12-22 18:03:40 +01:00
|
|
|
debug_assert!(data.colors.get(prev_dep_node_index).is_none(),
|
|
|
|
"DepGraph::try_mark_previous_green() - Duplicate DepNodeColor \
|
2017-10-04 12:35:56 +02:00
|
|
|
insertion for {:?}", dep_node);
|
2017-09-25 13:51:49 +02:00
|
|
|
|
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-02-08 14:53:55 +01:00
|
|
|
/// Atomically emits some loaded diagnotics, assuming that this only gets called with
|
|
|
|
/// `did_allocation` set to `true` on a single thread.
|
2018-12-22 18:59:03 +01:00
|
|
|
#[cold]
|
|
|
|
#[inline(never)]
|
|
|
|
fn emit_diagnostics<'tcx>(
|
|
|
|
&self,
|
|
|
|
tcx: TyCtxt<'_, 'tcx, 'tcx>,
|
|
|
|
data: &DepGraphData,
|
|
|
|
dep_node_index: DepNodeIndex,
|
|
|
|
did_allocation: bool,
|
|
|
|
diagnostics: Vec<Diagnostic>,
|
|
|
|
) {
|
2019-01-28 15:51:47 +01:00
|
|
|
if did_allocation || !cfg!(parallel_compiler) {
|
2018-12-22 18:59:03 +01:00
|
|
|
// Only the thread which did the allocation emits the error messages
|
|
|
|
let handle = tcx.sess.diagnostic();
|
|
|
|
|
|
|
|
// Promote the previous diagnostics to the current session.
|
|
|
|
tcx.queries.on_disk_cache
|
|
|
|
.store_diagnostics(dep_node_index, diagnostics.clone().into());
|
|
|
|
|
|
|
|
for diagnostic in diagnostics {
|
|
|
|
DiagnosticBuilder::new_diagnostic(handle, diagnostic).emit();
|
|
|
|
}
|
|
|
|
|
2019-01-28 15:51:47 +01:00
|
|
|
#[cfg(parallel_compiler)]
|
2018-12-22 18:59:03 +01:00
|
|
|
{
|
|
|
|
// Mark the diagnostics and emitted and wake up waiters
|
|
|
|
data.emitted_diagnostics.lock().insert(dep_node_index);
|
|
|
|
data.emitted_diagnostics_cond_var.notify_all();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// The other threads will wait for the diagnostics to be emitted
|
|
|
|
|
|
|
|
let mut emitted_diagnostics = data.emitted_diagnostics.lock();
|
|
|
|
loop {
|
|
|
|
if emitted_diagnostics.contains(&dep_node_index) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
data.emitted_diagnostics_cond_var.wait(&mut emitted_diagnostics);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
pub fn is_green(&self, dep_node: &DepNode) -> bool {
|
|
|
|
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.
|
|
|
|
pub fn exec_cache_promotions<'a, 'tcx>(&self, tcx: TyCtxt<'a, 'tcx, 'tcx>) {
|
|
|
|
let green_nodes: Vec<DepNode> = {
|
|
|
|
let data = self.data.as_ref().unwrap();
|
2018-12-22 18:03:40 +01:00
|
|
|
data.colors.values.indices().filter_map(|prev_index| {
|
|
|
|
match data.colors.get(prev_index) {
|
2018-02-13 17:40:46 +01:00
|
|
|
Some(DepNodeColor::Green(_)) => {
|
|
|
|
let dep_node = data.previous.index_to_node(prev_index);
|
|
|
|
if dep_node.cache_on_disk(tcx) {
|
|
|
|
Some(dep_node)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None |
|
|
|
|
Some(DepNodeColor::Red) => {
|
|
|
|
// 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
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}).collect()
|
|
|
|
};
|
|
|
|
|
|
|
|
for dep_node in green_nodes {
|
|
|
|
dep_node.load_from_on_disk_cache(tcx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-28 16:19:10 +02:00
|
|
|
pub fn mark_loaded_from_cache(&self, dep_node_index: DepNodeIndex, state: bool) {
|
2017-09-28 11:58:45 +02:00
|
|
|
debug!("mark_loaded_from_cache({:?}, {})",
|
2018-12-22 12:40:23 +01:00
|
|
|
self.data.as_ref().unwrap().current.borrow().data[dep_node_index].node,
|
2017-09-28 11:58:45 +02:00
|
|
|
state);
|
|
|
|
|
|
|
|
self.data
|
|
|
|
.as_ref()
|
|
|
|
.unwrap()
|
|
|
|
.loaded_from_cache
|
|
|
|
.borrow_mut()
|
2017-09-28 16:19:10 +02:00
|
|
|
.insert(dep_node_index, state);
|
2017-09-28 11:58:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn was_loaded_from_cache(&self, dep_node: &DepNode) -> Option<bool> {
|
|
|
|
let data = self.data.as_ref().unwrap();
|
|
|
|
let dep_node_index = data.current.borrow().node_to_node_index[dep_node];
|
|
|
|
data.loaded_from_cache.borrow().get(&dep_node_index).cloned()
|
|
|
|
}
|
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.
|
|
|
|
#[derive(Clone, Debug, RustcEncodable, RustcDecodable)]
|
|
|
|
pub struct WorkProduct {
|
2017-06-23 16:37:12 +02:00
|
|
|
pub cgu_name: String,
|
2019-02-08 14:53:55 +01:00
|
|
|
/// Saved files associated with this CGU.
|
2017-10-19 18:44:33 -07:00
|
|
|
pub saved_files: Vec<(WorkProductFileKind, String)>,
|
|
|
|
}
|
|
|
|
|
2018-08-20 17:13:01 +02:00
|
|
|
#[derive(Clone, Copy, Debug, RustcEncodable, RustcDecodable, PartialEq)]
|
2017-10-19 18:44:33 -07:00
|
|
|
pub enum WorkProductFileKind {
|
|
|
|
Object,
|
|
|
|
Bytecode,
|
|
|
|
BytecodeCompressed,
|
2016-03-28 17:37:34 -04:00
|
|
|
}
|
2017-08-21 16:44:05 +02:00
|
|
|
|
2018-12-22 12:40:23 +01:00
|
|
|
#[derive(Clone)]
|
|
|
|
struct DepNodeData {
|
|
|
|
node: DepNode,
|
|
|
|
edges: SmallVec<[DepNodeIndex; 8]>,
|
|
|
|
fingerprint: Fingerprint,
|
|
|
|
}
|
|
|
|
|
2017-08-21 16:44:05 +02:00
|
|
|
pub(super) struct CurrentDepGraph {
|
2018-12-22 12:40:23 +01:00
|
|
|
data: IndexVec<DepNodeIndex, DepNodeData>,
|
2017-09-28 16:19:10 +02:00
|
|
|
node_to_node_index: FxHashMap<DepNode, DepNodeIndex>,
|
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
|
|
|
|
|
|
|
total_read_count: u64,
|
|
|
|
total_duplicate_read_count: u64,
|
2017-08-21 16:44:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl CurrentDepGraph {
|
2018-12-22 12:40:23 +01:00
|
|
|
fn new(prev_graph_node_count: usize) -> CurrentDepGraph {
|
2017-09-28 11:58:45 +02:00
|
|
|
use std::time::{SystemTime, UNIX_EPOCH};
|
|
|
|
|
|
|
|
let duration = SystemTime::now().duration_since(UNIX_EPOCH).unwrap();
|
|
|
|
let nanos = duration.as_secs() * 1_000_000_000 +
|
|
|
|
duration.subsec_nanos() as u64;
|
|
|
|
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") {
|
|
|
|
Ok(s) => {
|
|
|
|
match EdgeFilter::new(&s) {
|
|
|
|
Ok(f) => Some(f),
|
|
|
|
Err(err) => bug!("RUST_FORBID_DEP_GRAPH_EDGE invalid: {}", err),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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
|
|
|
|
// session.
|
|
|
|
let new_node_count_estimate = (prev_graph_node_count * 115) / 100;
|
|
|
|
|
2017-08-21 16:44:05 +02:00
|
|
|
CurrentDepGraph {
|
2018-12-22 12:40:23 +01:00
|
|
|
data: IndexVec::with_capacity(new_node_count_estimate),
|
|
|
|
node_to_node_index: FxHashMap::with_capacity_and_hasher(
|
|
|
|
new_node_count_estimate,
|
|
|
|
Default::default(),
|
|
|
|
),
|
2017-09-28 11:58:45 +02:00
|
|
|
anon_id_seed: stable_hasher.finish(),
|
2017-09-28 16:19:10 +02:00
|
|
|
forbidden_edge,
|
2017-11-11 14:32:01 -05:00
|
|
|
total_read_count: 0,
|
|
|
|
total_duplicate_read_count: 0,
|
2017-08-21 16:44:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-22 12:40:23 +01:00
|
|
|
fn complete_task(
|
|
|
|
&mut self,
|
2018-12-25 04:36:17 +01:00
|
|
|
node: DepNode,
|
|
|
|
task_deps: TaskDeps,
|
2018-12-22 12:40:23 +01:00
|
|
|
fingerprint: Fingerprint
|
|
|
|
) -> DepNodeIndex {
|
2018-12-25 04:36:17 +01:00
|
|
|
// If this is an input node, we expect that it either has no
|
|
|
|
// dependencies, or that it just depends on DepKind::CrateMetadata
|
|
|
|
// or DepKind::Krate. This happens for some "thin wrapper queries"
|
|
|
|
// like `crate_disambiguator` which sometimes have zero deps (for
|
|
|
|
// when called for LOCAL_CRATE) or they depend on a CrateMetadata
|
|
|
|
// node.
|
|
|
|
if cfg!(debug_assertions) {
|
|
|
|
if node.kind.is_input() && task_deps.reads.len() > 0 &&
|
|
|
|
// FIXME(mw): Special case for DefSpan until Spans are handled
|
|
|
|
// better in general.
|
|
|
|
node.kind != DepKind::DefSpan &&
|
|
|
|
task_deps.reads.iter().any(|&i| {
|
|
|
|
!(self.data[i].node.kind == DepKind::CrateMetadata ||
|
|
|
|
self.data[i].node.kind == DepKind::Krate)
|
|
|
|
})
|
|
|
|
{
|
|
|
|
bug!("Input node {:?} with unexpected reads: {:?}",
|
|
|
|
node,
|
|
|
|
task_deps.reads.iter().map(|&i| self.data[i].node).collect::<Vec<_>>())
|
2017-11-07 14:53:21 +01:00
|
|
|
}
|
2017-08-21 16:44:05 +02:00
|
|
|
}
|
|
|
|
|
2018-12-25 04:36:17 +01:00
|
|
|
self.alloc_node(node, task_deps.reads, fingerprint)
|
|
|
|
}
|
2017-08-21 16:44:05 +02:00
|
|
|
|
2018-12-25 04:36:17 +01:00
|
|
|
fn complete_anon_task(&mut self, kind: DepKind, task_deps: TaskDeps) -> DepNodeIndex {
|
|
|
|
debug_assert!(!kind.is_input());
|
2017-08-21 16:44:05 +02:00
|
|
|
|
2018-12-25 04:36:17 +01:00
|
|
|
let mut fingerprint = self.anon_id_seed;
|
|
|
|
let mut hasher = StableHasher::new();
|
2017-08-21 16:44:05 +02:00
|
|
|
|
2018-12-25 04:36:17 +01:00
|
|
|
for &read in task_deps.reads.iter() {
|
|
|
|
let read_dep_node = self.data[read].node;
|
2017-08-21 16:44:05 +02:00
|
|
|
|
2018-12-25 04:36:17 +01:00
|
|
|
::std::mem::discriminant(&read_dep_node.kind).hash(&mut hasher);
|
2017-08-21 16:44:05 +02:00
|
|
|
|
2018-12-25 04:36:17 +01:00
|
|
|
// Fingerprint::combine() is faster than sending Fingerprint
|
|
|
|
// through the StableHasher (at least as long as StableHasher
|
|
|
|
// is so slow).
|
|
|
|
fingerprint = fingerprint.combine(read_dep_node.hash);
|
2017-08-21 16:44:05 +02:00
|
|
|
}
|
|
|
|
|
2018-12-25 04:36:17 +01:00
|
|
|
fingerprint = fingerprint.combine(hasher.finish());
|
2017-10-17 22:50:33 -04:00
|
|
|
|
2018-12-25 04:36:17 +01:00
|
|
|
let target_dep_node = DepNode {
|
|
|
|
kind,
|
|
|
|
hash: fingerprint,
|
|
|
|
};
|
|
|
|
|
|
|
|
self.intern_node(target_dep_node, task_deps.reads, Fingerprint::ZERO).0
|
2017-08-21 16:44:05 +02:00
|
|
|
}
|
|
|
|
|
2018-12-23 05:54:10 +01:00
|
|
|
fn alloc_node(
|
|
|
|
&mut self,
|
|
|
|
dep_node: DepNode,
|
|
|
|
edges: SmallVec<[DepNodeIndex; 8]>,
|
|
|
|
fingerprint: Fingerprint
|
|
|
|
) -> DepNodeIndex {
|
2017-08-21 16:44:05 +02:00
|
|
|
debug_assert!(!self.node_to_node_index.contains_key(&dep_node));
|
2018-12-23 05:54:10 +01:00
|
|
|
self.intern_node(dep_node, edges, fingerprint).0
|
|
|
|
}
|
|
|
|
|
|
|
|
fn intern_node(
|
|
|
|
&mut self,
|
|
|
|
dep_node: DepNode,
|
|
|
|
edges: SmallVec<[DepNodeIndex; 8]>,
|
|
|
|
fingerprint: Fingerprint
|
|
|
|
) -> (DepNodeIndex, bool) {
|
|
|
|
debug_assert_eq!(self.node_to_node_index.len(), self.data.len());
|
|
|
|
|
|
|
|
match self.node_to_node_index.entry(dep_node) {
|
|
|
|
Entry::Occupied(entry) => (*entry.get(), false),
|
|
|
|
Entry::Vacant(entry) => {
|
|
|
|
let dep_node_index = DepNodeIndex::new(self.data.len());
|
|
|
|
self.data.push(DepNodeData {
|
|
|
|
node: dep_node,
|
|
|
|
edges,
|
|
|
|
fingerprint
|
|
|
|
});
|
|
|
|
entry.insert(dep_node_index);
|
|
|
|
(dep_node_index, true)
|
|
|
|
}
|
|
|
|
}
|
2017-08-21 16:44:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-25 04:36:17 +01:00
|
|
|
impl DepGraphData {
|
|
|
|
fn read_index(&self, source: DepNodeIndex) {
|
|
|
|
ty::tls::with_context_opt(|icx| {
|
|
|
|
let icx = if let Some(icx) = icx { icx } else { return };
|
|
|
|
if let Some(task_deps) = icx.task_deps {
|
|
|
|
let mut task_deps = task_deps.lock();
|
|
|
|
if cfg!(debug_assertions) {
|
|
|
|
self.current.lock().total_read_count += 1;
|
|
|
|
}
|
|
|
|
if task_deps.read_set.insert(source) {
|
|
|
|
task_deps.reads.push(source);
|
|
|
|
|
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
{
|
|
|
|
if let Some(target) = task_deps.node {
|
|
|
|
let graph = self.current.lock();
|
|
|
|
if let Some(ref forbidden_edge) = graph.forbidden_edge {
|
|
|
|
let source = graph.data[source].node;
|
|
|
|
if forbidden_edge.test(&source, &target) {
|
|
|
|
bug!("forbidden edge {:?} -> {:?} created",
|
|
|
|
source,
|
|
|
|
target)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if cfg!(debug_assertions) {
|
|
|
|
self.current.lock().total_duplicate_read_count += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2018-04-25 11:55:12 +02:00
|
|
|
}
|
|
|
|
|
2018-12-25 04:36:17 +01:00
|
|
|
pub struct TaskDeps {
|
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
node: Option<DepNode>,
|
2018-05-09 12:21:48 +10:00
|
|
|
reads: SmallVec<[DepNodeIndex; 8]>,
|
2018-04-25 11:55:12 +02:00
|
|
|
read_set: FxHashSet<DepNodeIndex>,
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
DepNodeColorMap {
|
2018-12-22 18:03:40 +01:00
|
|
|
values: (0..size).map(|_| AtomicU32::new(COMPRESSED_NONE)).collect(),
|
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),
|
2018-08-28 12:20:56 -04: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) {
|
|
|
|
self.values[index].store(match color {
|
2018-02-13 17:40:46 +01:00
|
|
|
DepNodeColor::Red => COMPRESSED_RED,
|
2018-08-28 12:20:56 -04:00
|
|
|
DepNodeColor::Green(index) => index.as_u32() + COMPRESSED_FIRST_GREEN,
|
2018-12-22 18:03:40 +01:00
|
|
|
}, Ordering::Release)
|
2018-02-13 17:40:46 +01:00
|
|
|
}
|
|
|
|
}
|