Skip to content

Commit e901b24

Browse files
authored
Rollup merge of #93098 - Aaron1011:def-path-hash-debug, r=oli-obk
Show a more informative panic message when `DefPathHash` does not exist This should hopefully make it easier to debug incremental compilation bugs like #93096 without affecting performance.
2 parents 6cdd2e5 + 70d36a0 commit e901b24

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

compiler/rustc_hir/src/definitions.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -449,13 +449,17 @@ impl Definitions {
449449
}
450450

451451
#[inline(always)]
452-
pub fn local_def_path_hash_to_def_id(&self, hash: DefPathHash) -> LocalDefId {
452+
pub fn local_def_path_hash_to_def_id(
453+
&self,
454+
hash: DefPathHash,
455+
err: &mut dyn FnMut() -> !,
456+
) -> LocalDefId {
453457
debug_assert!(hash.stable_crate_id() == self.stable_crate_id);
454458
self.table
455459
.def_path_hash_to_index
456460
.get(&hash)
457461
.map(|local_def_index| LocalDefId { local_def_index })
458-
.unwrap()
462+
.unwrap_or_else(|| err())
459463
}
460464

461465
pub fn def_path_hash_to_def_index_map(&self) -> &DefPathHashMap {

compiler/rustc_middle/src/dep_graph/dep_node.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,9 @@ impl DepNodeExt for DepNode {
266266
/// has been removed.
267267
fn extract_def_id<'tcx>(&self, tcx: TyCtxt<'tcx>) -> Option<DefId> {
268268
if self.kind.fingerprint_style(tcx) == FingerprintStyle::DefPathHash {
269-
Some(tcx.def_path_hash_to_def_id(DefPathHash(self.hash.into())))
269+
Some(tcx.def_path_hash_to_def_id(DefPathHash(self.hash.into()), &mut || {
270+
panic!("Failed to extract DefId: {:?} {}", self.kind, self.hash)
271+
}))
270272
} else {
271273
None
272274
}

compiler/rustc_middle/src/ty/context.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -1308,15 +1308,18 @@ impl<'tcx> TyCtxt<'tcx> {
13081308
/// Converts a `DefPathHash` to its corresponding `DefId` in the current compilation
13091309
/// session, if it still exists. This is used during incremental compilation to
13101310
/// turn a deserialized `DefPathHash` into its current `DefId`.
1311-
pub fn def_path_hash_to_def_id(self, hash: DefPathHash) -> DefId {
1311+
pub fn def_path_hash_to_def_id(self, hash: DefPathHash, err: &mut dyn FnMut() -> !) -> DefId {
13121312
debug!("def_path_hash_to_def_id({:?})", hash);
13131313

13141314
let stable_crate_id = hash.stable_crate_id();
13151315

13161316
// If this is a DefPathHash from the local crate, we can look up the
13171317
// DefId in the tcx's `Definitions`.
13181318
if stable_crate_id == self.sess.local_stable_crate_id() {
1319-
self.untracked_resolutions.definitions.local_def_path_hash_to_def_id(hash).to_def_id()
1319+
self.untracked_resolutions
1320+
.definitions
1321+
.local_def_path_hash_to_def_id(hash, err)
1322+
.to_def_id()
13201323
} else {
13211324
// If this is a DefPathHash from an upstream crate, let the CrateStore map
13221325
// it to a DefId.

compiler/rustc_query_impl/src/on_disk_cache.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,9 @@ impl<'a, 'tcx> Decodable<CacheDecoder<'a, 'tcx>> for DefId {
761761
// If we get to this point, then all of the query inputs were green,
762762
// which means that the definition with this hash is guaranteed to
763763
// still exist in the current compilation session.
764-
Ok(d.tcx().def_path_hash_to_def_id(def_path_hash))
764+
Ok(d.tcx().def_path_hash_to_def_id(def_path_hash, &mut || {
765+
panic!("Failed to convert DefPathHash {:?}", def_path_hash)
766+
}))
765767
}
766768
}
767769

0 commit comments

Comments
 (0)