Skip to content

Commit 0da8104

Browse files
committed
EXPERIMENT: Cache check_mod_type_wf and check_well_formed to see if that resolves most of the performance regression
1 parent cdcdb4e commit 0da8104

File tree

1 file changed

+2
-0
lines changed
  • compiler/rustc_middle/src/query

1 file changed

+2
-0
lines changed

compiler/rustc_middle/src/query/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -977,6 +977,7 @@ rustc_queries! {
977977

978978
query check_mod_type_wf(key: LocalModDefId) -> Result<(), ErrorGuaranteed> {
979979
desc { |tcx| "checking that types are well-formed in {}", describe_as_module(key, tcx) }
980+
cache_on_disk_if { true }
980981
}
981982

982983
query collect_mod_item_types(key: LocalModDefId) -> () {
@@ -1511,6 +1512,7 @@ rustc_queries! {
15111512

15121513
query check_well_formed(key: hir::OwnerId) -> Result<(), ErrorGuaranteed> {
15131514
desc { |tcx| "checking that `{}` is well-formed", tcx.def_path_str(key) }
1515+
cache_on_disk_if { true }
15141516
}
15151517

15161518
// The `DefId`s of all non-generic functions and statics in the given crate

0 commit comments

Comments
 (0)