-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Use a more lightweight cache for erase_regions
#139240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,27 @@ | ||
use tracing::debug; | ||
|
||
use crate::query::Providers; | ||
use crate::dep_graph::DepGraph; | ||
use crate::ty::{ | ||
self, Ty, TyCtxt, TypeFlags, TypeFoldable, TypeFolder, TypeSuperFoldable, TypeVisitableExt, | ||
}; | ||
|
||
pub(super) fn provide(providers: &mut Providers) { | ||
*providers = Providers { erase_regions_ty, ..*providers }; | ||
} | ||
impl<'tcx> TyCtxt<'tcx> { | ||
/// Erases regions from `ty` to yield a new type. | ||
pub fn erase_regions_ty(self, ty: Ty<'tcx>) -> Ty<'tcx> { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you add a comment telling that this function is expected to be a pure function of its input, and that's why it cannot call any other queries. |
||
if let Some(ty) = self.erased_region_cache.get(&ty) { | ||
return ty; | ||
} | ||
|
||
fn erase_regions_ty<'tcx>(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>) -> Ty<'tcx> { | ||
// N.B., use `super_fold_with` here. If we used `fold_with`, it | ||
// could invoke the `erase_regions_ty` query recursively. | ||
ty.super_fold_with(&mut RegionEraserVisitor { tcx }) | ||
} | ||
let result = DepGraph::debug_assert_no_deps(|| { | ||
// N.B., use `super_fold_with` here. If we used `fold_with`, it | ||
// could invoke the `erase_regions_ty` function recursively. | ||
ty.super_fold_with(&mut RegionEraserVisitor { tcx: self }) | ||
}); | ||
|
||
self.erased_region_cache.insert(ty, result); | ||
result | ||
} | ||
|
||
impl<'tcx> TyCtxt<'tcx> { | ||
/// Returns an equivalent value with all free regions removed (note | ||
/// that late-bound regions remain, because they are important for | ||
/// subtyping, but they are anonymized and normalized as well).. | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -268,6 +268,14 @@ impl<D: Deps> DepGraph<D> { | |||||
D::with_deps(TaskDepsRef::Forbid, op) | ||||||
} | ||||||
|
||||||
/// This checks that no dependencies are registered in `op` if debug assertions are enabled. | ||||||
pub fn debug_assert_no_deps<OP, R>(op: OP) -> R | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
where | ||||||
OP: FnOnce() -> R, | ||||||
{ | ||||||
if cfg!(debug_assertions) { D::with_deps(TaskDepsRef::Forbid, op) } else { op() } | ||||||
} | ||||||
|
||||||
#[inline(always)] | ||||||
pub fn with_task<Ctxt: HasDepContext<Deps = D>, A: Debug, R>( | ||||||
&self, | ||||||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you add comments explaining why 1) the query cache is not used here and 2) a sharded hash map is used instead of a simple one.