Files
rust/compiler/rustc_incremental/src/persist/load.rs

244 lines
9.1 KiB
Rust
Raw Normal View History

//! Code to save/load the dep-graph from files.
2020-03-29 17:19:48 +02:00
use rustc_data_structures::fx::FxHashMap;
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;
use rustc_serialize::opaque::Decoder;
2021-03-02 22:38:49 +01:00
use rustc_serialize::Decodable;
use rustc_session::config::IncrementalStateAssertion;
use rustc_session::Session;
use std::path::Path;
use super::data::*;
use super::file_format;
2019-12-22 17:42:04 -05:00
use super::fs::*;
use super::work_product;
type WorkProductMap = FxHashMap<WorkProductId, WorkProduct>;
#[derive(Debug)]
/// Represents the result of an attempt to load incremental compilation data.
pub enum LoadResult<T> {
/// Loading was successful.
Ok {
#[allow(missing_docs)]
data: T,
},
/// The file either didn't exist or was produced by an incompatible compiler version.
DataOutOfDate,
/// An error occured.
Error {
#[allow(missing_docs)]
message: String,
},
}
2021-05-24 19:24:58 +02:00
impl<T: Default> LoadResult<T> {
/// Accesses the data returned in [`LoadResult::Ok`].
2021-05-24 19:24:58 +02:00
pub fn open(self, sess: &Session) -> T {
// 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.",
);
}
_ => {}
};
match self {
LoadResult::Error { message } => {
sess.warn(&message);
Default::default()
2019-12-22 17:42:04 -05: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 \
incremental compilation session directory contents `{}`: {}.",
2019-12-22 17:42:04 -05:00
dep_graph_path(sess).display(),
err
));
}
Default::default()
}
2019-12-22 17:42:04 -05:00
LoadResult::Ok { data } => data,
}
}
}
2020-10-10 14:27:52 -04:00
fn load_data(
report_incremental_info: bool,
path: &Path,
nightly_build: bool,
) -> 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 },
Ok(None) => {
// The file either didn't exist or was produced by an incompatible
// compiler version. Neither is an error.
LoadResult::DataOutOfDate
}
2019-12-22 17:42:04 -05:00
Err(err) => LoadResult::Error {
message: format!("could not load dep-graph from `{}`: {}", path.display(), err),
},
}
}
2019-12-22 17:42:04 -05:00
fn delete_dirty_work_product(sess: &Session, swp: SerializedWorkProduct) {
debug!("delete_dirty_work_product({:?})", swp);
work_product::delete_workproduct_files(sess, &swp.work_product);
}
/// 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>),
}
2021-05-24 19:24:58 +02:00
impl<T> MaybeAsync<LoadResult<T>> {
/// 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> {
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),
}),
}
}
}
/// An asynchronous type for computing the dependency graph.
2021-05-22 11:46:54 +02:00
pub type DepGraphFuture = MaybeAsync<LoadResult<(SerializedDepGraph, WorkProductMap)>>;
/// Launch a thread and load the dependency graph in the background.
pub fn load_dep_graph(sess: &Session) -> DepGraphFuture {
// Since `sess` isn't `Sync`, we perform all accesses to `sess`
// before we fire the background thread.
let prof = sess.prof.clone();
2017-12-03 14:21:23 +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() });
}
2020-01-09 03:48:00 +01:00
let _timer = sess.prof.generic_activity("incr_comp_prepare_load_dep_graph");
// Calling `sess.incr_comp_session_dir()` will panic if `sess.opts.incremental.is_none()`.
// Fortunately, we just checked that this isn't the case.
let path = dep_graph_path(&sess);
let report_incremental_info = sess.opts.debugging_opts.incremental_info;
let expected_hash = sess.opts.dep_tracking_hash(false);
let mut prev_work_products = FxHashMap::default();
2020-10-10 14:27:52 -04:00
let nightly_build = sess.is_nightly_build();
// 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
// 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);
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> =
2022-01-18 13:22:50 +11:00
Decodable::decode(&mut work_product_decoder);
for swp in work_products {
let mut all_files_exist = true;
if let Some(ref file_name) = swp.work_product.saved_file {
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()
);
}
}
}
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);
}
}
}
}
MaybeAsync::Async(std::thread::spawn(move || {
let _prof_timer = prof.generic_activity("incr_comp_load_dep_graph");
2020-10-10 14:27:52 -04:00
match load_data(report_incremental_info, &path, nightly_build) {
LoadResult::DataOutOfDate => LoadResult::DataOutOfDate,
LoadResult::Error { message } => LoadResult::Error { message },
LoadResult::Ok { data: (bytes, start_pos) } => {
let mut decoder = Decoder::new(&bytes, start_pos);
2022-01-18 13:22:50 +11:00
let prev_commandline_args_hash = u64::decode(&mut decoder);
if prev_commandline_args_hash != expected_hash {
if report_incremental_info {
eprintln!(
"[incremental] completely ignoring cache because of \
2019-12-22 17:42:04 -05:00
differing commandline arguments"
);
}
// We can't reuse the cache, purge it.
debug!("load_dep_graph_new: differing commandline arg hashes");
// No need to do any further work
return LoadResult::DataOutOfDate;
}
2022-01-18 13:22:50 +11:00
let dep_graph = SerializedDepGraph::decode(&mut decoder);
2021-05-22 11:46:54 +02:00
LoadResult::Ok { data: (dep_graph, prev_work_products) }
}
}
}))
}
/// 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> {
if sess.opts.incremental.is_none() {
return None;
}
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())),
}
}