Skip to content

Commit 29a6ffa

Browse files
incr.comp.: Add more output to -Z incremental-info.
1 parent 5db4826 commit 29a6ffa

File tree

5 files changed

+44
-15
lines changed

5 files changed

+44
-15
lines changed

src/librustc_incremental/persist/file_format.rs

+15-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ use std::path::Path;
2424
use std::fs::File;
2525
use std::env;
2626

27+
use rustc::session::Session;
2728
use rustc::session::config::nightly_options;
2829

2930
/// The first few bytes of files generated by incremental compilation
@@ -59,7 +60,7 @@ pub fn write_file_header<W: io::Write>(stream: &mut W) -> io::Result<()> {
5960
/// incompatible version of the compiler.
6061
/// - Returns `Err(..)` if some kind of IO error occurred while reading the
6162
/// file.
62-
pub fn read_file(path: &Path) -> io::Result<Option<Vec<u8>>> {
63+
pub fn read_file(sess: &Session, path: &Path) -> io::Result<Option<Vec<u8>>> {
6364
if !path.exists() {
6465
return Ok(None);
6566
}
@@ -72,6 +73,7 @@ pub fn read_file(path: &Path) -> io::Result<Option<Vec<u8>>> {
7273
let mut file_magic = [0u8; 4];
7374
file.read_exact(&mut file_magic)?;
7475
if file_magic != FILE_MAGIC {
76+
report_format_mismatch(sess, path, "Wrong FILE_MAGIC");
7577
return Ok(None)
7678
}
7779
}
@@ -85,6 +87,7 @@ pub fn read_file(path: &Path) -> io::Result<Option<Vec<u8>>> {
8587
((header_format_version[1] as u16) << 8);
8688

8789
if header_format_version != HEADER_FORMAT_VERSION {
90+
report_format_mismatch(sess, path, "Wrong HEADER_FORMAT_VERSION");
8891
return Ok(None)
8992
}
9093
}
@@ -99,6 +102,7 @@ pub fn read_file(path: &Path) -> io::Result<Option<Vec<u8>>> {
99102
file.read_exact(&mut buffer[..])?;
100103

101104
if &buffer[..] != rustc_version().as_bytes() {
105+
report_format_mismatch(sess, path, "Different compiler version");
102106
return Ok(None);
103107
}
104108
}
@@ -109,6 +113,16 @@ pub fn read_file(path: &Path) -> io::Result<Option<Vec<u8>>> {
109113
Ok(Some(data))
110114
}
111115

116+
fn report_format_mismatch(sess: &Session, file: &Path, message: &str) {
117+
debug!("read_file: {}", message);
118+
119+
if sess.opts.debugging_opts.incremental_info {
120+
println!("incremental: ignoring cache artifact `{}`: {}",
121+
file.file_name().unwrap().to_string_lossy(),
122+
message);
123+
}
124+
}
125+
112126
fn rustc_version() -> String {
113127
if nightly_options::is_nightly_build() {
114128
if let Some(val) = env::var_os("RUSTC_FORCE_INCR_COMP_ARTIFACT_HEADER") {

src/librustc_incremental/persist/fs.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -435,8 +435,8 @@ fn copy_files(target_dir: &Path,
435435
}
436436

437437
if print_stats_on_success {
438-
println!("incr. comp. session directory: {} files hard-linked", files_linked);
439-
println!("incr. comp. session directory: {} files copied", files_copied);
438+
println!("incremental: session directory: {} files hard-linked", files_linked);
439+
println!("incremental: session directory: {} files copied", files_copied);
440440
}
441441

442442
Ok(files_linked > 0 || files_copied == 0)

src/librustc_incremental/persist/hash.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ impl<'a, 'tcx> HashContext<'a, 'tcx> {
156156

157157
let hashes_file_path = metadata_hash_import_path(&session_dir);
158158

159-
match file_format::read_file(&hashes_file_path)
159+
match file_format::read_file(self.tcx.sess, &hashes_file_path)
160160
{
161161
Ok(Some(data)) => {
162162
match self.load_from_data(cnum, &data, svh) {

src/librustc_incremental/persist/load.rs

+21-11
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ fn load_dep_graph_if_exists<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
9393
}
9494

9595
fn load_data(sess: &Session, path: &Path) -> Option<Vec<u8>> {
96-
match file_format::read_file(path) {
96+
match file_format::read_file(sess, path) {
9797
Ok(Some(data)) => return Some(data),
9898
Ok(None) => {
9999
// The file either didn't exist or was produced by an incompatible
@@ -132,6 +132,10 @@ pub fn decode_dep_graph<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
132132
let prev_commandline_args_hash = u64::decode(&mut dep_graph_decoder)?;
133133

134134
if prev_commandline_args_hash != tcx.sess.opts.dep_tracking_hash() {
135+
if tcx.sess.opts.debugging_opts.incremental_info {
136+
println!("incremental: completely ignoring cache because of \
137+
differing commandline arguments");
138+
}
135139
// We can't reuse the cache, purge it.
136140
debug!("decode_dep_graph: differing commandline arg hashes");
137141
for swp in work_products {
@@ -192,7 +196,8 @@ pub fn decode_dep_graph<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
192196
if tcx.sess.opts.debugging_opts.incremental_info {
193197
// It'd be nice to pretty-print these paths better than just
194198
// using the `Debug` impls, but wev.
195-
println!("module {:?} is dirty because {:?} changed or was removed",
199+
println!("incremental: module {:?} is dirty because {:?} \
200+
changed or was removed",
196201
target_node,
197202
raw_source_node.map_def(|&index| {
198203
Some(directory.def_path_string(tcx, index))
@@ -277,14 +282,19 @@ fn reconcile_work_products<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
277282
debug!("reconcile_work_products: dep-node for {:?} is dirty", swp);
278283
delete_dirty_work_product(tcx, swp);
279284
} else {
280-
let all_files_exist =
281-
swp.work_product
282-
.saved_files
283-
.iter()
284-
.all(|&(_, ref file_name)| {
285-
let path = in_incr_comp_dir_sess(tcx.sess, &file_name);
286-
path.exists()
287-
});
285+
let mut all_files_exist = true;
286+
for &(_, ref file_name) in swp.work_product.saved_files.iter() {
287+
let path = in_incr_comp_dir_sess(tcx.sess, file_name);
288+
if !path.exists() {
289+
all_files_exist = false;
290+
291+
if tcx.sess.opts.debugging_opts.incremental_info {
292+
println!("incremental: could not find file for up-to-date work product: {}",
293+
path.display());
294+
}
295+
}
296+
}
297+
288298
if all_files_exist {
289299
debug!("reconcile_work_products: all files for {:?} exist", swp);
290300
tcx.dep_graph.insert_previous_work_product(&swp.id, swp.work_product);
@@ -331,7 +341,7 @@ fn load_prev_metadata_hashes(tcx: TyCtxt,
331341

332342
debug!("load_prev_metadata_hashes() - File: {}", file_path.display());
333343

334-
let data = match file_format::read_file(&file_path) {
344+
let data = match file_format::read_file(tcx.sess, &file_path) {
335345
Ok(Some(data)) => data,
336346
Ok(None) => {
337347
debug!("load_prev_metadata_hashes() - File produced by incompatible \

src/librustc_trans/base.rs

+5
Original file line numberDiff line numberDiff line change
@@ -1981,6 +1981,11 @@ fn trans_reuse_previous_work_products(tcx: TyCtxt,
19811981
debug!("trans_reuse_previous_work_products: reusing {:?}", work_product);
19821982
return Some(work_product);
19831983
} else {
1984+
if tcx.sess.opts.debugging_opts.incremental_info {
1985+
println!("incremental: CGU `{}` invalidated because of \
1986+
changed partitioning hash.",
1987+
cgu.name());
1988+
}
19841989
debug!("trans_reuse_previous_work_products: \
19851990
not reusing {:?} because hash changed to {:?}",
19861991
work_product, hash);

0 commit comments

Comments
 (0)