Skip to content

Commit 5cbaa3f

Browse files
committed
Save allocations for empty generic_predicates query results
1 parent 873dcf4 commit 5cbaa3f

File tree

4 files changed

+27
-14
lines changed

4 files changed

+27
-14
lines changed

src/tools/rust-analyzer/crates/hir-ty/src/chalk_db.rs

-1
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,6 @@ pub(crate) fn associated_ty_data_query(
604604
// Lower bounds -- we could/should maybe move this to a separate query in `lower`
605605
let type_alias_data = db.type_alias_data(type_alias);
606606
let generic_params = generics(db.upcast(), type_alias.into());
607-
// let bound_vars = generic_params.bound_vars_subst(DebruijnIndex::INNERMOST);
608607
let resolver = hir_def::resolver::HasResolver::resolver(type_alias, db.upcast());
609608
let ctx = crate::TyLoweringContext::new(db, &resolver, type_alias.into())
610609
.with_type_param_mode(crate::lower::ParamLoweringMode::Variable);

src/tools/rust-analyzer/crates/hir-ty/src/db.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ use crate::{
2121
chalk_db,
2222
consteval::ConstEvalError,
2323
layout::{Layout, LayoutError},
24+
lower::GenericPredicates,
2425
method_resolution::{InherentImpls, TraitImpls, TyFingerprint},
2526
mir::{BorrowckResult, MirBody, MirLowerError},
2627
Binders, CallableDefId, ClosureId, Const, FnDefId, GenericArg, ImplTraitId, ImplTraits,
@@ -147,7 +148,7 @@ pub trait HirDatabase: DefDatabase + Upcast<dyn DefDatabase> {
147148
) -> Arc<[Binders<QuantifiedWhereClause>]>;
148149

149150
#[salsa::invoke(crate::lower::generic_predicates_query)]
150-
fn generic_predicates(&self, def: GenericDefId) -> Arc<[Binders<QuantifiedWhereClause>]>;
151+
fn generic_predicates(&self, def: GenericDefId) -> GenericPredicates;
151152

152153
#[salsa::invoke(crate::lower::trait_environment_for_body_query)]
153154
#[salsa::transparent]

src/tools/rust-analyzer/crates/hir-ty/src/infer.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ use crate::{
6464
traits::FnTrait,
6565
utils::{InTypeConstIdMetadata, UnevaluatedConstEvaluatorFolder},
6666
AliasEq, AliasTy, Binders, ClosureId, Const, DomainGoal, GenericArg, Goal, ImplTraitId,
67-
ImplTraitIdx, InEnvironment, Interner, Lifetime, OpaqueTyId, ProjectionTy, Substitution,
68-
TraitEnvironment, Ty, TyBuilder, TyExt,
67+
ImplTraitIdx, InEnvironment, Interner, Lifetime, OpaqueTyId, ParamLoweringMode, ProjectionTy,
68+
Substitution, TraitEnvironment, Ty, TyBuilder, TyExt,
6969
};
7070

7171
// This lint has a false positive here. See the link below for details.
@@ -791,7 +791,8 @@ impl<'a> InferenceContext<'a> {
791791

792792
fn collect_fn(&mut self, func: FunctionId) {
793793
let data = self.db.function_data(func);
794-
let ctx = crate::lower::TyLoweringContext::new(self.db, &self.resolver, func.into())
794+
let ctx = crate::lower::TyLoweringContext::new(self.db, &self.resolver, self.owner.into())
795+
.with_type_param_mode(ParamLoweringMode::Placeholder)
795796
.with_impl_trait_mode(ImplTraitLoweringMode::Param);
796797
let mut param_tys =
797798
data.params.iter().map(|type_ref| ctx.lower_ty(type_ref)).collect::<Vec<_>>();
@@ -826,6 +827,7 @@ impl<'a> InferenceContext<'a> {
826827
let return_ty = &*data.ret_type;
827828

828829
let ctx = crate::lower::TyLoweringContext::new(self.db, &self.resolver, self.owner.into())
830+
.with_type_param_mode(ParamLoweringMode::Placeholder)
829831
.with_impl_trait_mode(ImplTraitLoweringMode::Opaque);
830832
let return_ty = ctx.lower_ty(return_ty);
831833
let return_ty = self.insert_type_vars(return_ty);

src/tools/rust-analyzer/crates/hir-ty/src/lower.rs

+20-9
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
use std::{
99
cell::{Cell, RefCell, RefMut},
1010
iter,
11+
ops::Not as _,
1112
};
1213

1314
use base_db::{
@@ -1679,20 +1680,30 @@ pub(crate) fn trait_environment_query(
16791680
TraitEnvironment::new(resolver.krate(), None, traits_in_scope.into_boxed_slice(), env)
16801681
}
16811682

1683+
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
1684+
pub struct GenericPredicates(Option<Arc<[Binders<QuantifiedWhereClause>]>>);
1685+
1686+
impl GenericPredicates {
1687+
pub fn iter(&self) -> impl Iterator<Item = &Binders<QuantifiedWhereClause>> + '_ + Clone {
1688+
self.0.as_ref().into_iter().flat_map(Arc::as_ref)
1689+
}
1690+
}
1691+
16821692
/// Resolve the where clause(s) of an item with generics.
16831693
pub(crate) fn generic_predicates_query(
16841694
db: &dyn HirDatabase,
16851695
def: GenericDefId,
1686-
) -> Arc<[Binders<QuantifiedWhereClause>]> {
1696+
) -> GenericPredicates {
16871697
let resolver = def.resolver(db.upcast());
1688-
let ctx = if let GenericDefId::FunctionId(_) = def {
1689-
TyLoweringContext::new(db, &resolver, def.into())
1690-
.with_impl_trait_mode(ImplTraitLoweringMode::Variable)
1691-
.with_type_param_mode(ParamLoweringMode::Variable)
1692-
} else {
1693-
TyLoweringContext::new(db, &resolver, def.into())
1694-
.with_type_param_mode(ParamLoweringMode::Variable)
1698+
let (impl_trait_lowering, param_lowering) = match def {
1699+
GenericDefId::FunctionId(_) => {
1700+
(ImplTraitLoweringMode::Variable, ParamLoweringMode::Variable)
1701+
}
1702+
_ => (ImplTraitLoweringMode::Disallowed, ParamLoweringMode::Variable),
16951703
};
1704+
let ctx = TyLoweringContext::new(db, &resolver, def.into())
1705+
.with_impl_trait_mode(impl_trait_lowering)
1706+
.with_type_param_mode(param_lowering);
16961707
let generics = generics(db.upcast(), def);
16971708

16981709
let mut predicates = resolver
@@ -1712,7 +1723,7 @@ pub(crate) fn generic_predicates_query(
17121723
.map(|p| make_binders(db, &generics, crate::wrap_empty_binders(p))),
17131724
);
17141725
}
1715-
predicates.into()
1726+
GenericPredicates(predicates.is_empty().not().then(|| predicates.into()))
17161727
}
17171728

17181729
/// Generate implicit `: Sized` predicates for all generics that has no `?Sized` bound.

0 commit comments

Comments
 (0)