Skip to content

Commit bbf3383

Browse files
Fingerprint even when incr comp is disabled in debug mode
1 parent f361413 commit bbf3383

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

compiler/rustc_query_system/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#![feature(hash_raw_entry)]
44
#![feature(min_specialization)]
55
#![feature(extern_types)]
6+
#![feature(let_chains)]
67
#![allow(rustc::potential_query_instability)]
78
#![deny(rustc::untranslatable_diagnostic)]
89
#![deny(rustc::diagnostic_outside_of_impl)]

compiler/rustc_query_system/src/query/plumbing.rs

+18-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//! generate the actual methods on tcx which find and execute the provider,
33
//! manage the caches, and so forth.
44
5-
use crate::dep_graph::{DepContext, DepKind, DepNode, DepNodeIndex};
5+
use crate::dep_graph::{DepContext, DepKind, DepNode, DepNodeIndex, DepNodeParams};
66
use crate::ich::StableHashingContext;
77
use crate::query::caches::QueryCache;
88
use crate::query::job::{report_cycle, QueryInfo, QueryJob, QueryJobId, QueryJobInfo};
@@ -428,12 +428,29 @@ where
428428

429429
// Fast path for when incr. comp. is off.
430430
if !dep_graph.is_fully_enabled() {
431+
// Fingerprint the key, just to assert that it doesn't
432+
// have anything we don't consider hashable
433+
if cfg!(debug_assertions) {
434+
let _ = key.to_fingerprint(*qcx.dep_context());
435+
}
436+
431437
let prof_timer = qcx.dep_context().profiler().query_provider();
432438
let result = qcx.start_query(job_id, Q::DEPTH_LIMIT, None, || {
433439
Q::compute(qcx, &key)(*qcx.dep_context(), key)
434440
});
435441
let dep_node_index = dep_graph.next_virtual_depnode_index();
436442
prof_timer.finish_with_query_invocation_id(dep_node_index.into());
443+
444+
// Similarly, fingerprint the result to assert that
445+
// it doesn't have anything not considered hashable.
446+
if cfg!(debug_assertions)
447+
&& let Some(hash_result) = Q::HASH_RESULT
448+
{
449+
qcx.dep_context().with_stable_hashing_context(|mut hcx| {
450+
hash_result(&mut hcx, &result);
451+
});
452+
}
453+
437454
return (result, dep_node_index);
438455
}
439456

0 commit comments

Comments
 (0)