Skip to content

Commit 0630c5d

Browse files
committed
move defining_opaque_types out of Canonical
1 parent a5e280e commit 0630c5d

File tree

25 files changed

+130
-120
lines changed

25 files changed

+130
-120
lines changed

compiler/rustc_borrowck/src/diagnostics/bound_region_errors.rs

+14-15
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@ use std::rc::Rc;
33

44
use rustc_errors::Diag;
55
use rustc_hir::def_id::LocalDefId;
6-
use rustc_infer::infer::canonical::Canonical;
6+
use rustc_infer::infer::canonical::CanonicalQueryInput;
77
use rustc_infer::infer::region_constraints::{Constraint, RegionConstraintData};
88
use rustc_infer::infer::{
99
InferCtxt, RegionResolutionError, RegionVariableOrigin, SubregionOrigin, TyCtxtInferExt as _,
1010
};
1111
use rustc_infer::traits::ObligationCause;
12+
use rustc_infer::traits::query::{
13+
CanonicalTypeOpAscribeUserTypeGoal, CanonicalTypeOpNormalizeGoal,
14+
CanonicalTypeOpProvePredicateGoal,
15+
};
1216
use rustc_middle::ty::error::TypeError;
1317
use rustc_middle::ty::{
1418
self, RePlaceholder, Region, RegionVid, Ty, TyCtxt, TypeFoldable, UniverseIndex,
@@ -95,9 +99,7 @@ impl<'tcx> ToUniverseInfo<'tcx> for crate::type_check::InstantiateOpaqueType<'tc
9599
}
96100
}
97101

98-
impl<'tcx> ToUniverseInfo<'tcx>
99-
for Canonical<'tcx, ty::ParamEnvAnd<'tcx, type_op::prove_predicate::ProvePredicate<'tcx>>>
100-
{
102+
impl<'tcx> ToUniverseInfo<'tcx> for CanonicalTypeOpProvePredicateGoal<'tcx> {
101103
fn to_universe_info(self, base_universe: ty::UniverseIndex) -> UniverseInfo<'tcx> {
102104
UniverseInfo(UniverseInfoInner::TypeOp(Rc::new(PredicateQuery {
103105
canonical_query: self,
@@ -107,7 +109,7 @@ impl<'tcx> ToUniverseInfo<'tcx>
107109
}
108110

109111
impl<'tcx, T: Copy + fmt::Display + TypeFoldable<TyCtxt<'tcx>> + 'tcx> ToUniverseInfo<'tcx>
110-
for Canonical<'tcx, ty::ParamEnvAnd<'tcx, type_op::Normalize<T>>>
112+
for CanonicalTypeOpNormalizeGoal<'tcx, T>
111113
{
112114
fn to_universe_info(self, base_universe: ty::UniverseIndex) -> UniverseInfo<'tcx> {
113115
UniverseInfo(UniverseInfoInner::TypeOp(Rc::new(NormalizeQuery {
@@ -117,9 +119,7 @@ impl<'tcx, T: Copy + fmt::Display + TypeFoldable<TyCtxt<'tcx>> + 'tcx> ToUnivers
117119
}
118120
}
119121

120-
impl<'tcx> ToUniverseInfo<'tcx>
121-
for Canonical<'tcx, ty::ParamEnvAnd<'tcx, type_op::AscribeUserType<'tcx>>>
122-
{
122+
impl<'tcx> ToUniverseInfo<'tcx> for CanonicalTypeOpAscribeUserTypeGoal<'tcx> {
123123
fn to_universe_info(self, base_universe: ty::UniverseIndex) -> UniverseInfo<'tcx> {
124124
UniverseInfo(UniverseInfoInner::TypeOp(Rc::new(AscribeUserTypeQuery {
125125
canonical_query: self,
@@ -128,7 +128,7 @@ impl<'tcx> ToUniverseInfo<'tcx>
128128
}
129129
}
130130

131-
impl<'tcx, F> ToUniverseInfo<'tcx> for Canonical<'tcx, type_op::custom::CustomTypeOp<F>> {
131+
impl<'tcx, F> ToUniverseInfo<'tcx> for CanonicalQueryInput<'tcx, type_op::custom::CustomTypeOp<F>> {
132132
fn to_universe_info(self, _base_universe: ty::UniverseIndex) -> UniverseInfo<'tcx> {
133133
// We can't rerun custom type ops.
134134
UniverseInfo::other()
@@ -211,16 +211,15 @@ trait TypeOpInfo<'tcx> {
211211
}
212212

213213
struct PredicateQuery<'tcx> {
214-
canonical_query:
215-
Canonical<'tcx, ty::ParamEnvAnd<'tcx, type_op::prove_predicate::ProvePredicate<'tcx>>>,
214+
canonical_query: CanonicalTypeOpProvePredicateGoal<'tcx>,
216215
base_universe: ty::UniverseIndex,
217216
}
218217

219218
impl<'tcx> TypeOpInfo<'tcx> for PredicateQuery<'tcx> {
220219
fn fallback_error(&self, tcx: TyCtxt<'tcx>, span: Span) -> Diag<'tcx> {
221220
tcx.dcx().create_err(HigherRankedLifetimeError {
222221
cause: Some(HigherRankedErrorCause::CouldNotProve {
223-
predicate: self.canonical_query.value.value.predicate.to_string(),
222+
predicate: self.canonical_query.canonical.value.value.predicate.to_string(),
224223
}),
225224
span,
226225
})
@@ -253,7 +252,7 @@ impl<'tcx> TypeOpInfo<'tcx> for PredicateQuery<'tcx> {
253252
}
254253

255254
struct NormalizeQuery<'tcx, T> {
256-
canonical_query: Canonical<'tcx, ty::ParamEnvAnd<'tcx, type_op::Normalize<T>>>,
255+
canonical_query: CanonicalTypeOpNormalizeGoal<'tcx, T>,
257256
base_universe: ty::UniverseIndex,
258257
}
259258

@@ -264,7 +263,7 @@ where
264263
fn fallback_error(&self, tcx: TyCtxt<'tcx>, span: Span) -> Diag<'tcx> {
265264
tcx.dcx().create_err(HigherRankedLifetimeError {
266265
cause: Some(HigherRankedErrorCause::CouldNotNormalize {
267-
value: self.canonical_query.value.value.value.to_string(),
266+
value: self.canonical_query.canonical.value.value.value.to_string(),
268267
}),
269268
span,
270269
})
@@ -306,7 +305,7 @@ where
306305
}
307306

308307
struct AscribeUserTypeQuery<'tcx> {
309-
canonical_query: Canonical<'tcx, ty::ParamEnvAnd<'tcx, type_op::AscribeUserType<'tcx>>>,
308+
canonical_query: CanonicalTypeOpAscribeUserTypeGoal<'tcx>,
310309
base_universe: ty::UniverseIndex,
311310
}
312311

compiler/rustc_hir_typeck/src/method/probe.rs

+4-7
Original file line numberDiff line numberDiff line change
@@ -340,13 +340,13 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
340340
OP: FnOnce(ProbeContext<'_, 'tcx>) -> Result<R, MethodError<'tcx>>,
341341
{
342342
let mut orig_values = OriginalQueryValues::default();
343-
let param_env_and_self_ty = self.canonicalize_query(
343+
let query_input = self.canonicalize_query(
344344
ParamEnvAnd { param_env: self.param_env, value: self_ty },
345345
&mut orig_values,
346346
);
347347

348348
let steps = match mode {
349-
Mode::MethodCall => self.tcx.method_autoderef_steps(param_env_and_self_ty),
349+
Mode::MethodCall => self.tcx.method_autoderef_steps(query_input),
350350
Mode::Path => self.probe(|_| {
351351
// Mode::Path - the deref steps is "trivial". This turns
352352
// our CanonicalQuery into a "trivial" QueryResponse. This
@@ -355,11 +355,8 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
355355

356356
let infcx = &self.infcx;
357357
let (ParamEnvAnd { param_env: _, value: self_ty }, canonical_inference_vars) =
358-
infcx.instantiate_canonical(span, &param_env_and_self_ty);
359-
debug!(
360-
"probe_op: Mode::Path, param_env_and_self_ty={:?} self_ty={:?}",
361-
param_env_and_self_ty, self_ty
362-
);
358+
infcx.instantiate_canonical(span, &query_input.canonical);
359+
debug!(?self_ty, ?query_input, "probe_op: Mode::Path");
363360
MethodAutoderefStepsResult {
364361
steps: infcx.tcx.arena.alloc_from_iter([CandidateStep {
365362
self_ty: self.make_query_response_ignoring_pending_obligations(

compiler/rustc_infer/src/infer/canonical/canonicalizer.rs

+8-17
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ use tracing::debug;
1717

1818
use crate::infer::InferCtxt;
1919
use crate::infer::canonical::{
20-
Canonical, CanonicalTyVarKind, CanonicalVarInfo, CanonicalVarKind, OriginalQueryValues,
20+
Canonical, CanonicalQueryInput, CanonicalTyVarKind, CanonicalVarInfo, CanonicalVarKind,
21+
OriginalQueryValues,
2122
};
2223

2324
impl<'tcx> InferCtxt<'tcx> {
@@ -40,12 +41,12 @@ impl<'tcx> InferCtxt<'tcx> {
4041
&self,
4142
value: ty::ParamEnvAnd<'tcx, V>,
4243
query_state: &mut OriginalQueryValues<'tcx>,
43-
) -> Canonical<'tcx, ty::ParamEnvAnd<'tcx, V>>
44+
) -> CanonicalQueryInput<'tcx, ty::ParamEnvAnd<'tcx, V>>
4445
where
4546
V: TypeFoldable<TyCtxt<'tcx>>,
4647
{
4748
let (param_env, value) = value.into_parts();
48-
let mut param_env = self.tcx.canonical_param_env_cache.get_or_insert(
49+
let param_env = self.tcx.canonical_param_env_cache.get_or_insert(
4950
self.tcx,
5051
param_env,
5152
query_state,
@@ -62,17 +63,16 @@ impl<'tcx> InferCtxt<'tcx> {
6263
},
6364
);
6465

65-
param_env.defining_opaque_types = self.defining_opaque_types;
66-
67-
Canonicalizer::canonicalize_with_base(
66+
let canonical = Canonicalizer::canonicalize_with_base(
6867
param_env,
6968
value,
7069
Some(self),
7170
self.tcx,
7271
&CanonicalizeAllFreeRegions,
7372
query_state,
7473
)
75-
.unchecked_map(|(param_env, value)| param_env.and(value))
74+
.unchecked_map(|(param_env, value)| param_env.and(value));
75+
CanonicalQueryInput { canonical, defining_opaque_types: self.defining_opaque_types() }
7676
}
7777

7878
/// Canonicalizes a query *response* `V`. When we canonicalize a
@@ -544,7 +544,6 @@ impl<'cx, 'tcx> Canonicalizer<'cx, 'tcx> {
544544
max_universe: ty::UniverseIndex::ROOT,
545545
variables: List::empty(),
546546
value: (),
547-
defining_opaque_types: infcx.map(|i| i.defining_opaque_types).unwrap_or_default(),
548547
};
549548
Canonicalizer::canonicalize_with_base(
550549
base,
@@ -614,15 +613,7 @@ impl<'cx, 'tcx> Canonicalizer<'cx, 'tcx> {
614613
.max()
615614
.unwrap_or(ty::UniverseIndex::ROOT);
616615

617-
assert!(
618-
!infcx.is_some_and(|infcx| infcx.defining_opaque_types != base.defining_opaque_types)
619-
);
620-
Canonical {
621-
max_universe,
622-
variables: canonical_variables,
623-
value: (base.value, out_value),
624-
defining_opaque_types: base.defining_opaque_types,
625-
}
616+
Canonical { max_universe, variables: canonical_variables, value: (base.value, out_value) }
626617
}
627618

628619
/// Creates a canonical variable replacing `kind` from the input,

compiler/rustc_infer/src/infer/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ use rustc_hir as hir;
2525
use rustc_hir::def_id::{DefId, LocalDefId};
2626
use rustc_macros::extension;
2727
pub use rustc_macros::{TypeFoldable, TypeVisitable};
28-
use rustc_middle::infer::canonical::{Canonical, CanonicalVarValues};
28+
use rustc_middle::infer::canonical::{CanonicalQueryInput, CanonicalVarValues};
2929
use rustc_middle::infer::unify_key::{
3030
ConstVariableOrigin, ConstVariableValue, ConstVidKey, EffectVarValue, EffectVidKey,
3131
};
@@ -604,14 +604,14 @@ impl<'tcx> InferCtxtBuilder<'tcx> {
604604
pub fn build_with_canonical<T>(
605605
mut self,
606606
span: Span,
607-
canonical: &Canonical<'tcx, T>,
607+
input: &CanonicalQueryInput<'tcx, T>,
608608
) -> (InferCtxt<'tcx>, T, CanonicalVarValues<'tcx>)
609609
where
610610
T: TypeFoldable<TyCtxt<'tcx>>,
611611
{
612-
self.defining_opaque_types = canonical.defining_opaque_types;
612+
self.defining_opaque_types = input.defining_opaque_types;
613613
let infcx = self.build();
614-
let (value, args) = infcx.instantiate_canonical(span, canonical);
614+
let (value, args) = infcx.instantiate_canonical(span, &input.canonical);
615615
(infcx, value, args)
616616
}
617617

compiler/rustc_middle/src/infer/canonical.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ use crate::infer::MemberConstraint;
3434
use crate::mir::ConstraintCategory;
3535
use crate::ty::{self, GenericArg, List, Ty, TyCtxt, TypeFlags, TypeVisitableExt};
3636

37+
pub type CanonicalQueryInput<'tcx, V> = ir::CanonicalQueryInput<TyCtxt<'tcx>, V>;
3738
pub type Canonical<'tcx, V> = ir::Canonical<TyCtxt<'tcx>, V>;
3839
pub type CanonicalVarInfo<'tcx> = ir::CanonicalVarInfo<TyCtxt<'tcx>>;
3940
pub type CanonicalVarValues<'tcx> = ir::CanonicalVarValues<TyCtxt<'tcx>>;
@@ -182,7 +183,6 @@ impl<'tcx> CanonicalParamEnvCache<'tcx> {
182183
max_universe: ty::UniverseIndex::ROOT,
183184
variables: List::empty(),
184185
value: key,
185-
defining_opaque_types: ty::List::empty(),
186186
};
187187
}
188188

compiler/rustc_middle/src/query/keys.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use rustc_span::symbol::{Ident, Symbol};
77
use rustc_span::{DUMMY_SP, Span};
88
use rustc_target::abi;
99

10-
use crate::infer::canonical::Canonical;
10+
use crate::infer::canonical::CanonicalQueryInput;
1111
use crate::ty::fast_reject::SimplifiedType;
1212
use crate::ty::layout::{TyAndLayout, ValidityRequirement};
1313
use crate::ty::{self, GenericArg, GenericArgsRef, Ty, TyCtxt};
@@ -485,7 +485,7 @@ impl Key for Option<Symbol> {
485485

486486
/// Canonical query goals correspond to abstract trait operations that
487487
/// are not tied to any crate in particular.
488-
impl<'tcx, T: Clone> Key for Canonical<'tcx, T> {
488+
impl<'tcx, T: Clone> Key for CanonicalQueryInput<'tcx, T> {
489489
type Cache<V> = DefaultCache<Self, V>;
490490

491491
fn default_span(&self, _tcx: TyCtxt<'_>) -> Span {

compiler/rustc_middle/src/query/mod.rs

+14-14
Original file line numberDiff line numberDiff line change
@@ -2011,7 +2011,7 @@ rustc_queries! {
20112011
&'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, NormalizationResult<'tcx>>>,
20122012
NoSolution,
20132013
> {
2014-
desc { "normalizing `{}`", goal.value.value }
2014+
desc { "normalizing `{}`", goal.canonical.value.value }
20152015
}
20162016

20172017
/// <div class="warning">
@@ -2025,7 +2025,7 @@ rustc_queries! {
20252025
&'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, NormalizationResult<'tcx>>>,
20262026
NoSolution,
20272027
> {
2028-
desc { "normalizing `{}`", goal.value.value }
2028+
desc { "normalizing `{}`", goal.canonical.value.value }
20292029
}
20302030

20312031
/// <div class="warning">
@@ -2039,7 +2039,7 @@ rustc_queries! {
20392039
&'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, NormalizationResult<'tcx>>>,
20402040
NoSolution,
20412041
> {
2042-
desc { "normalizing `{}`", goal.value.value }
2042+
desc { "normalizing `{}`", goal.canonical.value.value }
20432043
}
20442044

20452045
/// Do not call this query directly: invoke `try_normalize_erasing_regions` instead.
@@ -2055,7 +2055,7 @@ rustc_queries! {
20552055
&'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, Vec<OutlivesBound<'tcx>>>>,
20562056
NoSolution,
20572057
> {
2058-
desc { "computing implied outlives bounds for `{}`", goal.value.value.ty }
2058+
desc { "computing implied outlives bounds for `{}`", goal.canonical.value.value.ty }
20592059
}
20602060

20612061
query implied_outlives_bounds(
@@ -2064,7 +2064,7 @@ rustc_queries! {
20642064
&'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, Vec<OutlivesBound<'tcx>>>>,
20652065
NoSolution,
20662066
> {
2067-
desc { "computing implied outlives bounds v2 for `{}`", goal.value.value.ty }
2067+
desc { "computing implied outlives bounds v2 for `{}`", goal.canonical.value.value.ty }
20682068
}
20692069

20702070
/// Do not call this query directly:
@@ -2075,15 +2075,15 @@ rustc_queries! {
20752075
&'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, DropckOutlivesResult<'tcx>>>,
20762076
NoSolution,
20772077
> {
2078-
desc { "computing dropck types for `{}`", goal.value.value.dropped_ty }
2078+
desc { "computing dropck types for `{}`", goal.canonical.value.value.dropped_ty }
20792079
}
20802080

20812081
/// Do not call this query directly: invoke `infcx.predicate_may_hold()` or
20822082
/// `infcx.predicate_must_hold()` instead.
20832083
query evaluate_obligation(
20842084
goal: CanonicalPredicateGoal<'tcx>
20852085
) -> Result<EvaluationResult, OverflowError> {
2086-
desc { "evaluating trait selection obligation `{}`", goal.value.value }
2086+
desc { "evaluating trait selection obligation `{}`", goal.canonical.value.value }
20872087
}
20882088

20892089
/// Do not call this query directly: part of the `Eq` type-op
@@ -2093,7 +2093,7 @@ rustc_queries! {
20932093
&'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
20942094
NoSolution,
20952095
> {
2096-
desc { "evaluating `type_op_ascribe_user_type` `{:?}`", goal.value.value }
2096+
desc { "evaluating `type_op_ascribe_user_type` `{:?}`", goal.canonical.value.value }
20972097
}
20982098

20992099
/// Do not call this query directly: part of the `ProvePredicate` type-op
@@ -2103,7 +2103,7 @@ rustc_queries! {
21032103
&'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ()>>,
21042104
NoSolution,
21052105
> {
2106-
desc { "evaluating `type_op_prove_predicate` `{:?}`", goal.value.value }
2106+
desc { "evaluating `type_op_prove_predicate` `{:?}`", goal.canonical.value.value }
21072107
}
21082108

21092109
/// Do not call this query directly: part of the `Normalize` type-op
@@ -2113,7 +2113,7 @@ rustc_queries! {
21132113
&'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, Ty<'tcx>>>,
21142114
NoSolution,
21152115
> {
2116-
desc { "normalizing `{}`", goal.value.value.value }
2116+
desc { "normalizing `{}`", goal.canonical.value.value.value }
21172117
}
21182118

21192119
/// Do not call this query directly: part of the `Normalize` type-op
@@ -2123,7 +2123,7 @@ rustc_queries! {
21232123
&'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ty::Clause<'tcx>>>,
21242124
NoSolution,
21252125
> {
2126-
desc { "normalizing `{:?}`", goal.value.value.value }
2126+
desc { "normalizing `{:?}`", goal.canonical.value.value.value }
21272127
}
21282128

21292129
/// Do not call this query directly: part of the `Normalize` type-op
@@ -2133,7 +2133,7 @@ rustc_queries! {
21332133
&'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ty::PolyFnSig<'tcx>>>,
21342134
NoSolution,
21352135
> {
2136-
desc { "normalizing `{:?}`", goal.value.value.value }
2136+
desc { "normalizing `{:?}`", goal.canonical.value.value.value }
21372137
}
21382138

21392139
/// Do not call this query directly: part of the `Normalize` type-op
@@ -2143,7 +2143,7 @@ rustc_queries! {
21432143
&'tcx Canonical<'tcx, canonical::QueryResponse<'tcx, ty::FnSig<'tcx>>>,
21442144
NoSolution,
21452145
> {
2146-
desc { "normalizing `{:?}`", goal.value.value.value }
2146+
desc { "normalizing `{:?}`", goal.canonical.value.value.value }
21472147
}
21482148

21492149
query instantiate_and_check_impossible_predicates(key: (DefId, GenericArgsRef<'tcx>)) -> bool {
@@ -2164,7 +2164,7 @@ rustc_queries! {
21642164
query method_autoderef_steps(
21652165
goal: CanonicalTyGoal<'tcx>
21662166
) -> MethodAutoderefStepsResult<'tcx> {
2167-
desc { "computing autoderef types for `{}`", goal.value.value }
2167+
desc { "computing autoderef types for `{}`", goal.canonical.value.value }
21682168
}
21692169

21702170
query supported_target_features(_: CrateNum) -> &'tcx UnordMap<String, Option<Symbol>> {

0 commit comments

Comments
 (0)