@@ -93,7 +93,7 @@ fn load_dep_graph_if_exists<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
93
93
}
94
94
95
95
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) {
97
97
Ok ( Some ( data) ) => return Some ( data) ,
98
98
Ok ( None ) => {
99
99
// 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>,
132
132
let prev_commandline_args_hash = u64:: decode ( & mut dep_graph_decoder) ?;
133
133
134
134
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
+ }
135
139
// We can't reuse the cache, purge it.
136
140
debug ! ( "decode_dep_graph: differing commandline arg hashes" ) ;
137
141
for swp in work_products {
@@ -192,7 +196,8 @@ pub fn decode_dep_graph<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
192
196
if tcx. sess . opts . debugging_opts . incremental_info {
193
197
// It'd be nice to pretty-print these paths better than just
194
198
// 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",
196
201
target_node,
197
202
raw_source_node. map_def( |& index| {
198
203
Some ( directory. def_path_string( tcx, index) )
@@ -277,14 +282,19 @@ fn reconcile_work_products<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
277
282
debug ! ( "reconcile_work_products: dep-node for {:?} is dirty" , swp) ;
278
283
delete_dirty_work_product ( tcx, swp) ;
279
284
} 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
+
288
298
if all_files_exist {
289
299
debug ! ( "reconcile_work_products: all files for {:?} exist" , swp) ;
290
300
tcx. dep_graph . insert_previous_work_product ( & swp. id , swp. work_product ) ;
@@ -331,7 +341,7 @@ fn load_prev_metadata_hashes(tcx: TyCtxt,
331
341
332
342
debug ! ( "load_prev_metadata_hashes() - File: {}" , file_path. display( ) ) ;
333
343
334
- let data = match file_format:: read_file ( & file_path) {
344
+ let data = match file_format:: read_file ( tcx . sess , & file_path) {
335
345
Ok ( Some ( data) ) => data,
336
346
Ok ( None ) => {
337
347
debug ! ( "load_prev_metadata_hashes() - File produced by incompatible \
0 commit comments