2016-03-28 17:42:39 -04:00
|
|
|
//! Code to save/load the dep-graph from files.
|
|
|
|
|
|
2020-03-29 17:19:48 +02:00
|
|
|
use rustc_data_structures::fx::FxHashMap;
|
2021-03-16 21:39:03 +01:00
|
|
|
use rustc_data_structures::memmap::Mmap;
|
2021-05-22 11:46:54 +02:00
|
|
|
use rustc_middle::dep_graph::{SerializedDepGraph, WorkProduct, WorkProductId};
|
2021-06-28 21:12:01 +02:00
|
|
|
use rustc_middle::ty::OnDiskCache;
|
2016-09-01 16:55:33 +03:00
|
|
|
use rustc_serialize::opaque::Decoder;
|
2021-03-02 22:38:49 +01:00
|
|
|
use rustc_serialize::Decodable;
|
2021-10-31 17:05:48 -05:00
|
|
|
use rustc_session::config::IncrementalStateAssertion;
|
2020-03-11 12:49:08 +01:00
|
|
|
use rustc_session::Session;
|
2017-09-28 15:26:11 +02:00
|
|
|
use std::path::Path;
|
2016-03-28 17:42:39 -04:00
|
|
|
|
|
|
|
|
use super::data::*;
|
2016-09-26 16:05:01 -04:00
|
|
|
use super::file_format;
|
2019-12-22 17:42:04 -05:00
|
|
|
use super::fs::*;
|
2017-01-16 17:54:20 -05:00
|
|
|
use super::work_product;
|
2016-03-28 17:42:39 -04:00
|
|
|
|
2018-05-07 22:30:44 -04:00
|
|
|
type WorkProductMap = FxHashMap<WorkProductId, WorkProduct>;
|
|
|
|
|
|
2021-10-31 17:05:48 -05:00
|
|
|
#[derive(Debug)]
|
2021-10-29 12:14:17 -05:00
|
|
|
/// Represents the result of an attempt to load incremental compilation data.
|
2017-12-07 16:05:29 +01:00
|
|
|
pub enum LoadResult<T> {
|
2021-10-29 12:14:17 -05:00
|
|
|
/// Loading was successful.
|
|
|
|
|
Ok {
|
|
|
|
|
#[allow(missing_docs)]
|
|
|
|
|
data: T,
|
|
|
|
|
},
|
|
|
|
|
/// The file either didn't exist or was produced by an incompatible compiler version.
|
2017-12-07 16:05:29 +01:00
|
|
|
DataOutOfDate,
|
2021-10-29 12:14:17 -05:00
|
|
|
/// An error occured.
|
|
|
|
|
Error {
|
|
|
|
|
#[allow(missing_docs)]
|
|
|
|
|
message: String,
|
|
|
|
|
},
|
2017-12-07 16:05:29 +01:00
|
|
|
}
|
|
|
|
|
|
2021-05-24 19:24:58 +02:00
|
|
|
impl<T: Default> LoadResult<T> {
|
2021-10-29 12:14:17 -05:00
|
|
|
/// Accesses the data returned in [`LoadResult::Ok`].
|
2021-05-24 19:24:58 +02:00
|
|
|
pub fn open(self, sess: &Session) -> T {
|
2021-10-31 17:05:48 -05:00
|
|
|
// Check for errors when using `-Zassert-incremental-state`
|
|
|
|
|
match (sess.opts.assert_incr_state, &self) {
|
|
|
|
|
(Some(IncrementalStateAssertion::NotLoaded), LoadResult::Ok { .. }) => {
|
|
|
|
|
sess.fatal(
|
|
|
|
|
"We asserted that the incremental cache should not be loaded, \
|
|
|
|
|
but it was loaded.",
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
(
|
|
|
|
|
Some(IncrementalStateAssertion::Loaded),
|
|
|
|
|
LoadResult::Error { .. } | LoadResult::DataOutOfDate,
|
|
|
|
|
) => {
|
|
|
|
|
sess.fatal(
|
|
|
|
|
"We asserted that an existing incremental cache directory should \
|
|
|
|
|
be successfully loaded, but it was not.",
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
_ => {}
|
|
|
|
|
};
|
|
|
|
|
|
2017-12-07 16:05:29 +01:00
|
|
|
match self {
|
|
|
|
|
LoadResult::Error { message } => {
|
2018-03-22 22:25:57 -04:00
|
|
|
sess.warn(&message);
|
2018-10-16 16:57:53 +02:00
|
|
|
Default::default()
|
2019-12-22 17:42:04 -05:00
|
|
|
}
|
2017-12-07 16:05:29 +01:00
|
|
|
LoadResult::DataOutOfDate => {
|
|
|
|
|
if let Err(err) = delete_all_session_dir_contents(sess) {
|
2019-12-22 17:42:04 -05:00
|
|
|
sess.err(&format!(
|
|
|
|
|
"Failed to delete invalidated or incompatible \
|
2021-10-31 17:05:48 -05:00
|
|
|
incremental compilation session directory contents `{}`: {}.",
|
2019-12-22 17:42:04 -05:00
|
|
|
dep_graph_path(sess).display(),
|
|
|
|
|
err
|
|
|
|
|
));
|
2017-12-07 16:05:29 +01:00
|
|
|
}
|
2018-10-16 16:57:53 +02:00
|
|
|
Default::default()
|
2017-12-07 16:05:29 +01:00
|
|
|
}
|
2019-12-22 17:42:04 -05:00
|
|
|
LoadResult::Ok { data } => data,
|
2017-12-07 16:05:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-10 14:27:52 -04:00
|
|
|
fn load_data(
|
|
|
|
|
report_incremental_info: bool,
|
|
|
|
|
path: &Path,
|
|
|
|
|
nightly_build: bool,
|
2021-03-16 21:39:03 +01:00
|
|
|
) -> LoadResult<(Mmap, usize)> {
|
2020-10-10 14:27:52 -04:00
|
|
|
match file_format::read_file(report_incremental_info, path, nightly_build) {
|
2019-12-22 17:42:04 -05:00
|
|
|
Ok(Some(data_and_pos)) => LoadResult::Ok { data: data_and_pos },
|
2016-09-26 16:05:01 -04:00
|
|
|
Ok(None) => {
|
|
|
|
|
// The file either didn't exist or was produced by an incompatible
|
|
|
|
|
// compiler version. Neither is an error.
|
2017-12-07 16:05:29 +01:00
|
|
|
LoadResult::DataOutOfDate
|
2016-07-21 12:44:59 -04:00
|
|
|
}
|
2019-12-22 17:42:04 -05:00
|
|
|
Err(err) => LoadResult::Error {
|
|
|
|
|
message: format!("could not load dep-graph from `{}`: {}", path.display(), err),
|
|
|
|
|
},
|
2016-03-28 17:42:39 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-22 17:42:04 -05:00
|
|
|
fn delete_dirty_work_product(sess: &Session, swp: SerializedWorkProduct) {
|
2016-07-21 12:44:59 -04:00
|
|
|
debug!("delete_dirty_work_product({:?})", swp);
|
2018-05-07 22:30:44 -04:00
|
|
|
work_product::delete_workproduct_files(sess, &swp.work_product);
|
2016-07-21 12:44:59 -04:00
|
|
|
}
|
2016-08-30 16:49:54 -04:00
|
|
|
|
2017-12-07 16:05:29 +01:00
|
|
|
/// Either a result that has already be computed or a
|
|
|
|
|
/// handle that will let us wait until it is computed
|
|
|
|
|
/// by a background thread.
|
|
|
|
|
pub enum MaybeAsync<T> {
|
|
|
|
|
Sync(T),
|
2019-12-22 17:42:04 -05:00
|
|
|
Async(std::thread::JoinHandle<T>),
|
2017-12-07 16:05:29 +01:00
|
|
|
}
|
2021-05-24 19:24:58 +02:00
|
|
|
|
|
|
|
|
impl<T> MaybeAsync<LoadResult<T>> {
|
2021-10-29 12:14:17 -05:00
|
|
|
/// Accesses the data returned in [`LoadResult::Ok`] in an asynchronous way if possible.
|
2021-05-24 19:24:58 +02:00
|
|
|
pub fn open(self) -> LoadResult<T> {
|
2017-12-07 16:05:29 +01:00
|
|
|
match self {
|
2021-05-24 19:24:58 +02:00
|
|
|
MaybeAsync::Sync(result) => result,
|
|
|
|
|
MaybeAsync::Async(handle) => handle.join().unwrap_or_else(|e| LoadResult::Error {
|
|
|
|
|
message: format!("could not decode incremental cache: {:?}", e),
|
|
|
|
|
}),
|
2017-12-07 16:05:29 +01:00
|
|
|
}
|
2017-09-22 13:00:42 +02:00
|
|
|
}
|
2017-12-07 16:05:29 +01:00
|
|
|
}
|
2017-09-22 13:00:42 +02:00
|
|
|
|
2021-10-29 12:14:17 -05:00
|
|
|
/// An asynchronous type for computing the dependency graph.
|
2021-05-22 11:46:54 +02:00
|
|
|
pub type DepGraphFuture = MaybeAsync<LoadResult<(SerializedDepGraph, WorkProductMap)>>;
|
2018-12-08 20:30:23 +01:00
|
|
|
|
2017-12-07 16:05:29 +01:00
|
|
|
/// Launch a thread and load the dependency graph in the background.
|
2018-12-08 20:30:23 +01:00
|
|
|
pub fn load_dep_graph(sess: &Session) -> DepGraphFuture {
|
2017-12-07 16:05:29 +01:00
|
|
|
// Since `sess` isn't `Sync`, we perform all accesses to `sess`
|
|
|
|
|
// before we fire the background thread.
|
2017-09-22 13:00:42 +02:00
|
|
|
|
2019-10-08 14:05:41 +02:00
|
|
|
let prof = sess.prof.clone();
|
2017-12-03 14:21:23 +01:00
|
|
|
|
2017-12-07 16:05:29 +01:00
|
|
|
if sess.opts.incremental.is_none() {
|
|
|
|
|
// No incremental compilation.
|
2019-12-22 17:42:04 -05:00
|
|
|
return MaybeAsync::Sync(LoadResult::Ok { data: Default::default() });
|
2017-12-07 16:05:29 +01:00
|
|
|
}
|
2017-11-13 15:13:44 +01:00
|
|
|
|
2020-01-09 03:48:00 +01:00
|
|
|
let _timer = sess.prof.generic_activity("incr_comp_prepare_load_dep_graph");
|
|
|
|
|
|
2017-12-07 16:05:29 +01:00
|
|
|
// Calling `sess.incr_comp_session_dir()` will panic if `sess.opts.incremental.is_none()`.
|
|
|
|
|
// Fortunately, we just checked that this isn't the case.
|
2021-11-09 10:58:11 -06:00
|
|
|
let path = dep_graph_path(&sess);
|
2017-12-07 16:05:29 +01:00
|
|
|
let report_incremental_info = sess.opts.debugging_opts.incremental_info;
|
2021-04-15 19:25:01 -04:00
|
|
|
let expected_hash = sess.opts.dep_tracking_hash(false);
|
2017-12-07 16:05:29 +01:00
|
|
|
|
2018-10-16 10:44:26 +02:00
|
|
|
let mut prev_work_products = FxHashMap::default();
|
2020-10-10 14:27:52 -04:00
|
|
|
let nightly_build = sess.is_nightly_build();
|
2018-05-07 22:30:44 -04:00
|
|
|
|
|
|
|
|
// If we are only building with -Zquery-dep-graph but without an actual
|
2018-05-08 09:13:18 -04:00
|
|
|
// incr. comp. session directory, we skip this. Otherwise we'd fail
|
2018-05-07 22:30:44 -04:00
|
|
|
// when trying to load work products.
|
|
|
|
|
if sess.incr_comp_session_dir_opt().is_some() {
|
|
|
|
|
let work_products_path = work_products_path(sess);
|
2020-10-10 14:27:52 -04:00
|
|
|
let load_result = load_data(report_incremental_info, &work_products_path, nightly_build);
|
2018-05-07 22:30:44 -04:00
|
|
|
|
|
|
|
|
if let LoadResult::Ok { data: (work_products_data, start_pos) } = load_result {
|
|
|
|
|
// Decode the list of work_products
|
|
|
|
|
let mut work_product_decoder = Decoder::new(&work_products_data[..], start_pos);
|
|
|
|
|
let work_products: Vec<SerializedWorkProduct> =
|
Make `Decodable` and `Decoder` infallible.
`Decoder` has two impls:
- opaque: this impl is already partly infallible, i.e. in some places it
currently panics on failure (e.g. if the input is too short, or on a
bad `Result` discriminant), and in some places it returns an error
(e.g. on a bad `Option` discriminant). The number of places where
either happens is surprisingly small, just because the binary
representation has very little redundancy and a lot of input reading
can occur even on malformed data.
- json: this impl is fully fallible, but it's only used (a) for the
`.rlink` file production, and there's a `FIXME` comment suggesting it
should change to a binary format, and (b) in a few tests in
non-fundamental ways. Indeed #85993 is open to remove it entirely.
And the top-level places in the compiler that call into decoding just
abort on error anyway. So the fallibility is providing little value, and
getting rid of it leads to some non-trivial performance improvements.
Much of this commit is pretty boring and mechanical. Some notes about
a few interesting parts:
- The commit removes `Decoder::{Error,error}`.
- `InternIteratorElement::intern_with`: the impl for `T` now has the same
optimization for small counts that the impl for `Result<T, E>` has,
because it's now much hotter.
- Decodable impls for SmallVec, LinkedList, VecDeque now all use
`collect`, which is nice; the one for `Vec` uses unsafe code, because
that gave better perf on some benchmarks.
2022-01-18 13:22:50 +11:00
|
|
|
Decodable::decode(&mut work_product_decoder);
|
2018-05-07 22:30:44 -04:00
|
|
|
|
|
|
|
|
for swp in work_products {
|
|
|
|
|
let mut all_files_exist = true;
|
2020-05-12 15:56:02 +10:00
|
|
|
if let Some(ref file_name) = swp.work_product.saved_file {
|
2018-05-07 22:30:44 -04:00
|
|
|
let path = in_incr_comp_dir_sess(sess, file_name);
|
|
|
|
|
if !path.exists() {
|
|
|
|
|
all_files_exist = false;
|
|
|
|
|
|
|
|
|
|
if sess.opts.debugging_opts.incremental_info {
|
2019-12-22 17:42:04 -05:00
|
|
|
eprintln!(
|
|
|
|
|
"incremental: could not find file for work \
|
|
|
|
|
product: {}",
|
|
|
|
|
path.display()
|
|
|
|
|
);
|
2018-05-07 22:30:44 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if all_files_exist {
|
|
|
|
|
debug!("reconcile_work_products: all files for {:?} exist", swp);
|
|
|
|
|
prev_work_products.insert(swp.id, swp.work_product);
|
|
|
|
|
} else {
|
|
|
|
|
debug!("reconcile_work_products: some file for {:?} does not exist", swp);
|
|
|
|
|
delete_dirty_work_product(sess, swp);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-07 16:05:29 +01:00
|
|
|
MaybeAsync::Async(std::thread::spawn(move || {
|
2020-01-07 21:34:08 +01:00
|
|
|
let _prof_timer = prof.generic_activity("incr_comp_load_dep_graph");
|
2020-01-01 02:24:05 +01:00
|
|
|
|
2020-10-10 14:27:52 -04:00
|
|
|
match load_data(report_incremental_info, &path, nightly_build) {
|
2020-01-01 02:24:05 +01:00
|
|
|
LoadResult::DataOutOfDate => LoadResult::DataOutOfDate,
|
|
|
|
|
LoadResult::Error { message } => LoadResult::Error { message },
|
|
|
|
|
LoadResult::Ok { data: (bytes, start_pos) } => {
|
|
|
|
|
let mut decoder = Decoder::new(&bytes, start_pos);
|
Make `Decodable` and `Decoder` infallible.
`Decoder` has two impls:
- opaque: this impl is already partly infallible, i.e. in some places it
currently panics on failure (e.g. if the input is too short, or on a
bad `Result` discriminant), and in some places it returns an error
(e.g. on a bad `Option` discriminant). The number of places where
either happens is surprisingly small, just because the binary
representation has very little redundancy and a lot of input reading
can occur even on malformed data.
- json: this impl is fully fallible, but it's only used (a) for the
`.rlink` file production, and there's a `FIXME` comment suggesting it
should change to a binary format, and (b) in a few tests in
non-fundamental ways. Indeed #85993 is open to remove it entirely.
And the top-level places in the compiler that call into decoding just
abort on error anyway. So the fallibility is providing little value, and
getting rid of it leads to some non-trivial performance improvements.
Much of this commit is pretty boring and mechanical. Some notes about
a few interesting parts:
- The commit removes `Decoder::{Error,error}`.
- `InternIteratorElement::intern_with`: the impl for `T` now has the same
optimization for small counts that the impl for `Result<T, E>` has,
because it's now much hotter.
- Decodable impls for SmallVec, LinkedList, VecDeque now all use
`collect`, which is nice; the one for `Vec` uses unsafe code, because
that gave better perf on some benchmarks.
2022-01-18 13:22:50 +11:00
|
|
|
let prev_commandline_args_hash = u64::decode(&mut decoder);
|
2020-01-01 02:24:05 +01:00
|
|
|
|
|
|
|
|
if prev_commandline_args_hash != expected_hash {
|
|
|
|
|
if report_incremental_info {
|
2021-02-18 14:13:38 +02:00
|
|
|
eprintln!(
|
2020-01-01 02:24:05 +01:00
|
|
|
"[incremental] completely ignoring cache because of \
|
2019-12-22 17:42:04 -05:00
|
|
|
differing commandline arguments"
|
2020-01-01 02:24:05 +01:00
|
|
|
);
|
2017-12-07 16:05:29 +01:00
|
|
|
}
|
2020-01-01 02:24:05 +01:00
|
|
|
// We can't reuse the cache, purge it.
|
|
|
|
|
debug!("load_dep_graph_new: differing commandline arg hashes");
|
2017-09-22 13:00:42 +02:00
|
|
|
|
2020-01-01 02:24:05 +01:00
|
|
|
// No need to do any further work
|
|
|
|
|
return LoadResult::DataOutOfDate;
|
2017-12-07 16:05:29 +01:00
|
|
|
}
|
2020-01-01 02:24:05 +01:00
|
|
|
|
Make `Decodable` and `Decoder` infallible.
`Decoder` has two impls:
- opaque: this impl is already partly infallible, i.e. in some places it
currently panics on failure (e.g. if the input is too short, or on a
bad `Result` discriminant), and in some places it returns an error
(e.g. on a bad `Option` discriminant). The number of places where
either happens is surprisingly small, just because the binary
representation has very little redundancy and a lot of input reading
can occur even on malformed data.
- json: this impl is fully fallible, but it's only used (a) for the
`.rlink` file production, and there's a `FIXME` comment suggesting it
should change to a binary format, and (b) in a few tests in
non-fundamental ways. Indeed #85993 is open to remove it entirely.
And the top-level places in the compiler that call into decoding just
abort on error anyway. So the fallibility is providing little value, and
getting rid of it leads to some non-trivial performance improvements.
Much of this commit is pretty boring and mechanical. Some notes about
a few interesting parts:
- The commit removes `Decoder::{Error,error}`.
- `InternIteratorElement::intern_with`: the impl for `T` now has the same
optimization for small counts that the impl for `Result<T, E>` has,
because it's now much hotter.
- Decodable impls for SmallVec, LinkedList, VecDeque now all use
`collect`, which is nice; the one for `Vec` uses unsafe code, because
that gave better perf on some benchmarks.
2022-01-18 13:22:50 +11:00
|
|
|
let dep_graph = SerializedDepGraph::decode(&mut decoder);
|
2020-01-01 02:24:05 +01:00
|
|
|
|
2021-05-22 11:46:54 +02:00
|
|
|
LoadResult::Ok { data: (dep_graph, prev_work_products) }
|
2017-12-07 16:05:29 +01:00
|
|
|
}
|
2020-01-01 02:24:05 +01:00
|
|
|
}
|
2017-12-07 16:05:29 +01:00
|
|
|
}))
|
2017-09-22 13:00:42 +02:00
|
|
|
}
|
2017-10-19 14:32:39 +02:00
|
|
|
|
2020-11-19 15:49:45 -05:00
|
|
|
/// Attempts to load the query result cache from disk
|
|
|
|
|
///
|
|
|
|
|
/// If we are not in incremental compilation mode, returns `None`.
|
|
|
|
|
/// Otherwise, tries to load the query result cache from disk,
|
|
|
|
|
/// creating an empty cache if it could not be loaded.
|
2021-06-28 21:12:01 +02:00
|
|
|
pub fn load_query_result_cache<'a, C: OnDiskCache<'a>>(sess: &'a Session) -> Option<C> {
|
2020-03-23 11:41:35 +11:00
|
|
|
if sess.opts.incremental.is_none() {
|
2020-11-19 15:49:45 -05:00
|
|
|
return None;
|
2017-10-19 14:32:39 +02:00
|
|
|
}
|
|
|
|
|
|
2019-10-08 14:05:41 +02:00
|
|
|
let _prof_timer = sess.prof.generic_activity("incr_comp_load_query_result_cache");
|
|
|
|
|
|
2020-10-10 14:27:52 -04:00
|
|
|
match load_data(
|
|
|
|
|
sess.opts.debugging_opts.incremental_info,
|
|
|
|
|
&query_cache_path(sess),
|
|
|
|
|
sess.is_nightly_build(),
|
|
|
|
|
) {
|
2021-06-28 21:12:01 +02:00
|
|
|
LoadResult::Ok { data: (bytes, start_pos) } => Some(C::new(sess, bytes, start_pos)),
|
|
|
|
|
_ => Some(C::new_empty(sess.source_map())),
|
2017-10-19 14:32:39 +02:00
|
|
|
}
|
|
|
|
|
}
|