1use rustc_errors::msg;
4use rustc_infer::infer::at::At;
5use rustc_infer::infer::{InferCtxt, InferOk};
6use rustc_infer::traits::{
7 FromSolverError, Normalized, Obligation, PredicateObligations, TraitEngine, TraitErrors,
8};
9use rustc_macros::extension;
10use rustc_middle::span_bug;
11use rustc_middle::traits::{ObligationCause, ObligationCauseCode};
12use rustc_middle::ty::{
13 self, AliasTerm, Term, Ty, TyCtxt, TypeFoldable, TypeFolder, TypeSuperFoldable, TypeVisitable,
14 TypeVisitableExt, TypingMode, Unnormalized,
15};
16use thin_vec::ThinVec;
17use tracing::{debug, instrument};
18
19use super::{BoundVarReplacer, PlaceholderReplacer, SelectionContext, project};
20use crate::error_reporting::InferCtxtErrorExt;
21use crate::error_reporting::traits::OverflowCause;
22use crate::solve::NextSolverError;
23
24pub trait NormalizeExt<'tcx> {
#[doc = " Normalize a value using the `AssocTypeNormalizer`."]
#[doc = ""]
#[doc =
" This normalization should be used when the type contains inference variables or the"]
#[doc = " projection may be fallible."]
fn normalize<T: TypeFoldable<TyCtxt<'tcx>>>(&self,
value: Unnormalized<'tcx, T>)
-> InferOk<'tcx, T>;
#[doc =
" Deeply normalizes `value`, replacing all aliases which can by normalized in"]
#[doc =
" the current environment. In the new solver this errors in case normalization"]
#[doc = " fails or is ambiguous."]
#[doc = ""]
#[doc =
" In the old solver this simply uses `normalizes` and adds the nested obligations"]
#[doc =
" to the `fulfill_cx`. This is necessary as we otherwise end up recomputing the"]
#[doc =
" same goals in both a temporary and the shared context which negatively impacts"]
#[doc = " performance as these don\'t share caching."]
#[doc = ""]
#[doc =
" FIXME(-Znext-solver=no): For performance reasons, we currently reuse an existing"]
#[doc =
" fulfillment context in the old solver. Once we have removed the old solver, we"]
#[doc = " can remove the `fulfill_cx` parameter on this function."]
fn deeply_normalize<T,
E>(self, value: Unnormalized<'tcx, T>,
fulfill_cx: &mut dyn TraitEngine<'tcx, E>)
-> Result<T, ThinVec<E>>
where
T: TypeFoldable<TyCtxt<'tcx>>,
E: FromSolverError<'tcx, NextSolverError<'tcx>>;
}
impl<'tcx> NormalizeExt<'tcx> for At<'_, 'tcx> {
#[doc = " Normalize a value using the `AssocTypeNormalizer`."]
#[doc = ""]
#[doc =
" This normalization should be used when the type contains inference variables or the"]
#[doc = " projection may be fallible."]
fn normalize<T: TypeFoldable<TyCtxt<'tcx>>>(&self,
value: Unnormalized<'tcx, T>) -> InferOk<'tcx, T> {
if self.infcx.next_trait_solver() {
let Normalized { value, obligations } =
crate::solve::normalize(*self, value);
InferOk { value, obligations }
} else {
let mut selcx = SelectionContext::new(self.infcx);
let Normalized { value, obligations } =
normalize_with_depth(&mut selcx, self.param_env,
self.cause.clone(), 0, value);
InferOk { value, obligations }
}
}
#[doc =
" Deeply normalizes `value`, replacing all aliases which can by normalized in"]
#[doc =
" the current environment. In the new solver this errors in case normalization"]
#[doc = " fails or is ambiguous."]
#[doc = ""]
#[doc =
" In the old solver this simply uses `normalizes` and adds the nested obligations"]
#[doc =
" to the `fulfill_cx`. This is necessary as we otherwise end up recomputing the"]
#[doc =
" same goals in both a temporary and the shared context which negatively impacts"]
#[doc = " performance as these don\'t share caching."]
#[doc = ""]
#[doc =
" FIXME(-Znext-solver=no): For performance reasons, we currently reuse an existing"]
#[doc =
" fulfillment context in the old solver. Once we have removed the old solver, we"]
#[doc = " can remove the `fulfill_cx` parameter on this function."]
fn deeply_normalize<T,
E>(self, value: Unnormalized<'tcx, T>,
fulfill_cx: &mut dyn TraitEngine<'tcx, E>) -> Result<T, ThinVec<E>>
where T: TypeFoldable<TyCtxt<'tcx>>,
E: FromSolverError<'tcx, NextSolverError<'tcx>> {
if self.infcx.next_trait_solver() {
crate::solve::deeply_normalize(self, value)
} else {
if fulfill_cx.has_pending_obligations() {
let pending_obligations = fulfill_cx.pending_obligations();
::rustc_middle::util::bug::span_bug_fmt(pending_obligations[0].cause.span,
format_args!("deeply_normalize should not be called with pending obligations: {0:#?}",
pending_obligations));
}
let value =
self.normalize(value).into_value_registering_obligations(self.infcx,
&mut *fulfill_cx);
let errors =
fulfill_cx.evaluate_obligations_error_on_ambiguity(self.infcx);
let value = self.infcx.resolve_vars_if_possible(value);
match errors {
TraitErrors::NoErrors => Ok(value),
TraitErrors::HasErrors(errors) => {
let _ = fulfill_cx.collect_remaining_errors(self.infcx);
Err(errors)
}
}
}
}
}#[extension(pub trait NormalizeExt<'tcx>)]
25impl<'tcx> At<'_, 'tcx> {
26 fn normalize<T: TypeFoldable<TyCtxt<'tcx>>>(
31 &self,
32 value: Unnormalized<'tcx, T>,
33 ) -> InferOk<'tcx, T> {
34 if self.infcx.next_trait_solver() {
35 let Normalized { value, obligations } = crate::solve::normalize(*self, value);
36 InferOk { value, obligations }
37 } else {
38 let mut selcx = SelectionContext::new(self.infcx);
39 let Normalized { value, obligations } =
40 normalize_with_depth(&mut selcx, self.param_env, self.cause.clone(), 0, value);
41 InferOk { value, obligations }
42 }
43 }
44
45 fn deeply_normalize<T, E>(
58 self,
59 value: Unnormalized<'tcx, T>,
60 fulfill_cx: &mut dyn TraitEngine<'tcx, E>,
61 ) -> Result<T, ThinVec<E>>
62 where
63 T: TypeFoldable<TyCtxt<'tcx>>,
64 E: FromSolverError<'tcx, NextSolverError<'tcx>>,
65 {
66 if self.infcx.next_trait_solver() {
67 crate::solve::deeply_normalize(self, value)
68 } else {
69 if fulfill_cx.has_pending_obligations() {
70 let pending_obligations = fulfill_cx.pending_obligations();
71 span_bug!(
72 pending_obligations[0].cause.span,
73 "deeply_normalize should not be called with pending obligations: \
74 {pending_obligations:#?}"
75 );
76 }
77 let value = self
78 .normalize(value)
79 .into_value_registering_obligations(self.infcx, &mut *fulfill_cx);
80 let errors = fulfill_cx.evaluate_obligations_error_on_ambiguity(self.infcx);
81 let value = self.infcx.resolve_vars_if_possible(value);
82 match errors {
83 TraitErrors::NoErrors => Ok(value),
84 TraitErrors::HasErrors(errors) => {
85 let _ = fulfill_cx.collect_remaining_errors(self.infcx);
89 Err(errors)
90 }
91 }
92 }
93 }
94}
95
96pub(crate) fn normalize_with_depth<'a, 'b, 'tcx, T>(
98 selcx: &'a mut SelectionContext<'b, 'tcx>,
99 param_env: ty::ParamEnv<'tcx>,
100 cause: ObligationCause<'tcx>,
101 depth: usize,
102 value: Unnormalized<'tcx, T>,
103) -> Normalized<'tcx, T>
104where
105 T: TypeFoldable<TyCtxt<'tcx>>,
106{
107 let mut obligations = PredicateObligations::new();
108 let value = normalize_with_depth_to(selcx, param_env, cause, depth, value, &mut obligations);
109 Normalized { value, obligations }
110}
111
112{}
#[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::INFO <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("normalize_with_depth_to",
"rustc_trait_selection::traits::normalize",
::tracing::Level::INFO,
::tracing_core::__macro_support::Option::Some("/rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs"),
::tracing_core::__macro_support::Option::Some(112u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::normalize"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("depth")
}> =
::tracing::__macro_support::FieldName::new("depth");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("value")
}> =
::tracing::__macro_support::FieldName::new("value");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::INFO <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::INFO <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&depth
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&value)
as &dyn ::tracing::field::Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: T = loop {};
return __tracing_attr_fake_return;
}
{
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs:124",
"rustc_trait_selection::traits::normalize",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs"),
::tracing_core::__macro_support::Option::Some(124u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::normalize"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("obligations.len")
}> =
::tracing::__macro_support::FieldName::new("obligations.len");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&obligations.len()
as &dyn ::tracing::field::Value))])
});
} else { ; }
};
let mut normalizer =
AssocTypeNormalizer::new(selcx, param_env, cause, depth,
obligations);
let result =
AssocTypeNormalizer::fold(&mut normalizer,
value.skip_normalization());
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs:127",
"rustc_trait_selection::traits::normalize",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs"),
::tracing_core::__macro_support::Option::Some(127u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::normalize"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("result")
}> =
::tracing::__macro_support::FieldName::new("result");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("obligations.len")
}> =
::tracing::__macro_support::FieldName::new("obligations.len");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&result)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&normalizer.obligations.len()
as &dyn ::tracing::field::Value))])
});
} else { ; }
};
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs:128",
"rustc_trait_selection::traits::normalize",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs"),
::tracing_core::__macro_support::Option::Some(128u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::normalize"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("normalizer.obligations")
}> =
::tracing::__macro_support::FieldName::new("normalizer.obligations");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&normalizer.obligations)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};
result
}
}
}#[instrument(level = "info", skip(selcx, param_env, cause, obligations))]
113pub(crate) fn normalize_with_depth_to<'a, 'b, 'tcx, T>(
114 selcx: &'a mut SelectionContext<'b, 'tcx>,
115 param_env: ty::ParamEnv<'tcx>,
116 cause: ObligationCause<'tcx>,
117 depth: usize,
118 value: Unnormalized<'tcx, T>,
119 obligations: &mut PredicateObligations<'tcx>,
120) -> T
121where
122 T: TypeFoldable<TyCtxt<'tcx>>,
123{
124 debug!(obligations.len = obligations.len());
125 let mut normalizer = AssocTypeNormalizer::new(selcx, param_env, cause, depth, obligations);
126 let result = AssocTypeNormalizer::fold(&mut normalizer, value.skip_normalization());
127 debug!(?result, obligations.len = normalizer.obligations.len());
128 debug!(?normalizer.obligations,);
129 result
130}
131
132pub(super) fn needs_normalization<'tcx, T: TypeVisitable<TyCtxt<'tcx>>>(
133 infcx: &InferCtxt<'tcx>,
134 value: &T,
135) -> bool {
136 let mut flags = ty::TypeFlags::HAS_ALIAS;
137
138 match infcx.typing_mode_raw().assert_not_erased() {
141 TypingMode::Coherence
143 | TypingMode::Typeck { .. }
144 | TypingMode::PostTypeckUntilBorrowck { .. }
145 | TypingMode::PostBorrowck { .. } => flags.remove(ty::TypeFlags::HAS_TY_OPAQUE),
146 TypingMode::Reflection | TypingMode::PostAnalysis | TypingMode::Codegen => {}
147 }
148
149 value.has_type_flags(flags)
150}
151
152struct AssocTypeNormalizer<'a, 'b, 'tcx> {
153 selcx: &'a mut SelectionContext<'b, 'tcx>,
154 param_env: ty::ParamEnv<'tcx>,
155 cause: ObligationCause<'tcx>,
156 obligations: &'a mut PredicateObligations<'tcx>,
157 depth: usize,
158 universes: Vec<Option<ty::UniverseIndex>>,
159}
160
161impl<'a, 'b, 'tcx> AssocTypeNormalizer<'a, 'b, 'tcx> {
162 fn new(
163 selcx: &'a mut SelectionContext<'b, 'tcx>,
164 param_env: ty::ParamEnv<'tcx>,
165 cause: ObligationCause<'tcx>,
166 depth: usize,
167 obligations: &'a mut PredicateObligations<'tcx>,
168 ) -> AssocTypeNormalizer<'a, 'b, 'tcx> {
169 if true {
if !!selcx.infcx.next_trait_solver() {
::core::panicking::panic("assertion failed: !selcx.infcx.next_trait_solver()")
};
};debug_assert!(!selcx.infcx.next_trait_solver());
170 AssocTypeNormalizer { selcx, param_env, cause, obligations, depth, universes: ::alloc::vec::Vec::new()vec![] }
171 }
172
173 fn fold<T: TypeFoldable<TyCtxt<'tcx>>>(&mut self, value: T) -> T {
174 let value = self.selcx.infcx.resolve_vars_if_possible(value);
175 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs:175",
"rustc_trait_selection::traits::normalize",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs"),
::tracing_core::__macro_support::Option::Some(175u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::normalize"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("value")
}> =
::tracing::__macro_support::FieldName::new("value");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&value)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!(?value);
176
177 if !!value.has_escaping_bound_vars() {
{
::core::panicking::panic_fmt(format_args!("Normalizing {0:?} without wrapping in a `Binder`",
value));
}
};assert!(
178 !value.has_escaping_bound_vars(),
179 "Normalizing {value:?} without wrapping in a `Binder`"
180 );
181
182 if !needs_normalization(self.selcx.infcx, &value) { value } else { value.fold_with(self) }
183 }
184
185 {}
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() || { false }
{
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("normalize_trait_projection",
"rustc_trait_selection::traits::normalize",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs"),
::tracing_core::__macro_support::Option::Some(186u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::normalize"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("proj")
}> =
::tracing::__macro_support::FieldName::new("proj");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&proj)
as &dyn ::tracing::field::Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[allow(clippy :: redundant_closure_call)]
let x =
(move ||
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy
:: needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: Term<'tcx> = loop {};
return __tracing_attr_fake_return;
}
{
if !proj.has_escaping_bound_vars() {
let proj = proj.fold_with(self);
project::normalize_projection_term(self.selcx,
self.param_env, proj, self.cause.clone(), self.depth,
self.obligations)
} else {
let infcx = self.selcx.infcx;
let (proj, mapped_regions, mapped_types, mapped_consts) =
BoundVarReplacer::replace_bound_vars(infcx,
&mut self.universes, proj);
let proj = proj.fold_with(self);
let normalized_term =
project::opt_normalize_projection_term(self.selcx,
self.param_env, proj, self.cause.clone(), self.depth,
self.obligations).ok().flatten().unwrap_or_else(||
proj.to_term(infcx.tcx, ty::IsRigid::No));
PlaceholderReplacer::replace_placeholders(infcx,
mapped_regions, mapped_types, mapped_consts,
&self.universes, normalized_term)
}
}
})();
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs:186",
"rustc_trait_selection::traits::normalize",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs"),
::tracing_core::__macro_support::Option::Some(186u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::normalize"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("return")
}> =
::tracing::__macro_support::FieldName::new("return");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&x)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};
x;#[instrument(level = "debug", skip(self), ret)]
187 fn normalize_trait_projection(&mut self, proj: AliasTerm<'tcx>) -> Term<'tcx> {
188 if !proj.has_escaping_bound_vars() {
189 let proj = proj.fold_with(self);
198 project::normalize_projection_term(
199 self.selcx,
200 self.param_env,
201 proj,
202 self.cause.clone(),
203 self.depth,
204 self.obligations,
205 )
206 } else {
207 let infcx = self.selcx.infcx;
219 let (proj, mapped_regions, mapped_types, mapped_consts) =
220 BoundVarReplacer::replace_bound_vars(infcx, &mut self.universes, proj);
221 let proj = proj.fold_with(self);
222 let normalized_term = project::opt_normalize_projection_term(
223 self.selcx,
224 self.param_env,
225 proj,
226 self.cause.clone(),
227 self.depth,
228 self.obligations,
229 )
230 .ok()
231 .flatten()
232 .unwrap_or_else(|| proj.to_term(infcx.tcx, ty::IsRigid::No));
233
234 PlaceholderReplacer::replace_placeholders(
235 infcx,
236 mapped_regions,
237 mapped_types,
238 mapped_consts,
239 &self.universes,
240 normalized_term,
241 )
242 }
243 }
244
245 {}
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() || { false }
{
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("normalize_inherent_projection",
"rustc_trait_selection::traits::normalize",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs"),
::tracing_core::__macro_support::Option::Some(246u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::normalize"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("inherent")
}> =
::tracing::__macro_support::FieldName::new("inherent");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&inherent)
as &dyn ::tracing::field::Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[allow(clippy :: redundant_closure_call)]
let x =
(move ||
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy
:: needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: Term<'tcx> = loop {};
return __tracing_attr_fake_return;
}
{
if !inherent.has_escaping_bound_vars() {
let inherent = inherent.fold_with(self);
project::normalize_inherent_projection(self.selcx,
self.param_env, inherent, self.cause.clone(), self.depth,
self.obligations)
} else {
let infcx = self.selcx.infcx;
let (inherent, mapped_regions, mapped_types,
mapped_consts) =
BoundVarReplacer::replace_bound_vars(infcx,
&mut self.universes, inherent);
let inherent = inherent.fold_with(self);
let inherent =
project::normalize_inherent_projection(self.selcx,
self.param_env, inherent, self.cause.clone(), self.depth,
self.obligations);
PlaceholderReplacer::replace_placeholders(infcx,
mapped_regions, mapped_types, mapped_consts,
&self.universes, inherent)
}
}
})();
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs:246",
"rustc_trait_selection::traits::normalize",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs"),
::tracing_core::__macro_support::Option::Some(246u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::normalize"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("return")
}> =
::tracing::__macro_support::FieldName::new("return");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&x)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};
x;#[instrument(level = "debug", skip(self), ret)]
247 fn normalize_inherent_projection(&mut self, inherent: AliasTerm<'tcx>) -> Term<'tcx> {
248 if !inherent.has_escaping_bound_vars() {
249 let inherent = inherent.fold_with(self);
259 project::normalize_inherent_projection(
260 self.selcx,
261 self.param_env,
262 inherent,
263 self.cause.clone(),
264 self.depth,
265 self.obligations,
266 )
267 } else {
268 let infcx = self.selcx.infcx;
269 let (inherent, mapped_regions, mapped_types, mapped_consts) =
270 BoundVarReplacer::replace_bound_vars(infcx, &mut self.universes, inherent);
271 let inherent = inherent.fold_with(self);
272 let inherent = project::normalize_inherent_projection(
273 self.selcx,
274 self.param_env,
275 inherent,
276 self.cause.clone(),
277 self.depth,
278 self.obligations,
279 );
280
281 PlaceholderReplacer::replace_placeholders(
282 infcx,
283 mapped_regions,
284 mapped_types,
285 mapped_consts,
286 &self.universes,
287 inherent,
288 )
289 }
290 }
291
292 {}
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() || { false }
{
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("normalize_free_alias",
"rustc_trait_selection::traits::normalize",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs"),
::tracing_core::__macro_support::Option::Some(293u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::normalize"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("free")
}> =
::tracing::__macro_support::FieldName::new("free");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&free)
as &dyn ::tracing::field::Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[allow(clippy :: redundant_closure_call)]
let x =
(move ||
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy
:: needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: Term<'tcx> = loop {};
return __tracing_attr_fake_return;
}
{
let recursion_limit = self.cx().recursion_limit();
if !recursion_limit.value_within_limit(self.depth) {
self.selcx.infcx.err_ctxt().report_overflow_error(OverflowCause::DeeplyNormalize(free),
self.cause.span, false,
|diag|
{
diag.note(rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("in case this is a recursive type alias, consider using a struct, enum, or union instead")));
});
}
let def_id = free.expect_free_def_id();
let infcx = self.selcx.infcx;
self.obligations.extend(infcx.tcx.clauses_of(def_id).instantiate_own(infcx.tcx,
free.args).map(|(clause, span)|
(clause.skip_norm_wip(),
span)).map(|(mut clause, span)|
{
if free.has_escaping_bound_vars() {
(clause, ..) =
BoundVarReplacer::replace_bound_vars(infcx,
&mut self.universes, clause);
}
let mut cause = self.cause.clone();
cause.map_code(|code|
ObligationCauseCode::TypeAlias(code, span, def_id));
Obligation::new(infcx.tcx, cause, self.param_env, clause)
}));
self.depth += 1;
let res: ty::Term<'tcx> =
if free.kind.is_type() {
infcx.tcx.type_of(def_id).instantiate(infcx.tcx,
free.args).skip_norm_wip().fold_with(self).into()
} else {
project::const_of_item_or_delayed_bug(infcx.tcx,
def_id).instantiate(infcx.tcx,
free.args).skip_norm_wip().fold_with(self).into()
};
if let Some(ct) = res.as_const() {
let expected_ty =
infcx.tcx.type_of(def_id).instantiate(infcx.tcx,
free.args).skip_norm_wip();
self.obligations.push(Obligation::with_depth(infcx.tcx,
self.cause.clone(), self.depth, self.param_env,
ty::ClauseKind::ConstArgHasType(ct, expected_ty)));
}
self.depth -= 1;
res
}
})();
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs:293",
"rustc_trait_selection::traits::normalize",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs"),
::tracing_core::__macro_support::Option::Some(293u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::normalize"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("return")
}> =
::tracing::__macro_support::FieldName::new("return");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&x)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};
x;#[instrument(level = "debug", skip(self), ret)]
294 fn normalize_free_alias(&mut self, free: AliasTerm<'tcx>) -> Term<'tcx> {
295 let recursion_limit = self.cx().recursion_limit();
296 if !recursion_limit.value_within_limit(self.depth) {
297 self.selcx.infcx.err_ctxt().report_overflow_error(
298 OverflowCause::DeeplyNormalize(free),
299 self.cause.span,
300 false,
301 |diag| {
302 diag.note(msg!("in case this is a recursive type alias, consider using a struct, enum, or union instead"));
303 },
304 );
305 }
306
307 let def_id = free.expect_free_def_id();
308
309 let infcx = self.selcx.infcx;
323 self.obligations.extend(
324 infcx
325 .tcx
326 .clauses_of(def_id)
327 .instantiate_own(infcx.tcx, free.args)
328 .map(|(clause, span)| (clause.skip_norm_wip(), span))
329 .map(|(mut clause, span)| {
330 if free.has_escaping_bound_vars() {
331 (clause, ..) = BoundVarReplacer::replace_bound_vars(
332 infcx,
333 &mut self.universes,
334 clause,
335 );
336 }
337 let mut cause = self.cause.clone();
338 cause.map_code(|code| ObligationCauseCode::TypeAlias(code, span, def_id));
339 Obligation::new(infcx.tcx, cause, self.param_env, clause)
340 }),
341 );
342 self.depth += 1;
343 let res: ty::Term<'tcx> = if free.kind.is_type() {
344 infcx
345 .tcx
346 .type_of(def_id)
347 .instantiate(infcx.tcx, free.args)
348 .skip_norm_wip()
349 .fold_with(self)
350 .into()
351 } else {
352 project::const_of_item_or_delayed_bug(infcx.tcx, def_id)
353 .instantiate(infcx.tcx, free.args)
354 .skip_norm_wip()
355 .fold_with(self)
356 .into()
357 };
358 if let Some(ct) = res.as_const() {
361 let expected_ty =
362 infcx.tcx.type_of(def_id).instantiate(infcx.tcx, free.args).skip_norm_wip();
363 self.obligations.push(Obligation::with_depth(
364 infcx.tcx,
365 self.cause.clone(),
366 self.depth,
367 self.param_env,
368 ty::ClauseKind::ConstArgHasType(ct, expected_ty),
369 ));
370 }
371 self.depth -= 1;
372 res
373 }
374}
375
376impl<'a, 'b, 'tcx> TypeFolder<TyCtxt<'tcx>> for AssocTypeNormalizer<'a, 'b, 'tcx> {
377 fn cx(&self) -> TyCtxt<'tcx> {
378 self.selcx.tcx()
379 }
380
381 fn fold_binder<T: TypeFoldable<TyCtxt<'tcx>>>(
382 &mut self,
383 t: ty::Binder<'tcx, T>,
384 ) -> ty::Binder<'tcx, T> {
385 self.universes.push(None);
386 let t = t.super_fold_with(self);
387 self.universes.pop();
388 t
389 }
390
391 fn fold_ty(&mut self, ty: Ty<'tcx>) -> Ty<'tcx> {
392 if true {
if !!ty.has_rigid_aliases() {
::core::panicking::panic("assertion failed: !ty.has_rigid_aliases()")
};
};debug_assert!(!ty.has_rigid_aliases());
394
395 if !needs_normalization(self.selcx.infcx, &ty) {
396 return ty;
397 }
398
399 let ty::Alias(_, data) = *ty.kind() else { return ty.super_fold_with(self) };
400
401 match data.kind {
425 ty::Opaque { def_id } => {
426 match self.selcx.typing_mode() {
428 TypingMode::Coherence
430 | TypingMode::Typeck { .. }
431 | TypingMode::PostTypeckUntilBorrowck { .. }
432 | TypingMode::PostBorrowck { .. } => ty.super_fold_with(self),
433 TypingMode::Reflection | TypingMode::PostAnalysis | TypingMode::Codegen => {
434 let recursion_limit = self.cx().recursion_limit();
435 if !recursion_limit.value_within_limit(self.depth) {
436 self.selcx.infcx.err_ctxt().report_overflow_error(
437 OverflowCause::DeeplyNormalize(data.into()),
438 self.cause.span,
439 true,
440 |_| {},
441 );
442 }
443
444 let args = data.args.fold_with(self);
445 let generic_ty = self.cx().type_of(def_id);
446 let concrete_ty = generic_ty.instantiate(self.cx(), args).skip_norm_wip();
447 self.depth += 1;
448 let folded_ty = self.fold_ty(concrete_ty);
449 self.depth -= 1;
450 folded_ty
451 }
452 }
453 }
454
455 ty::Projection { .. } => self.normalize_trait_projection(data.into()).expect_type(),
456 ty::Inherent { .. } => self.normalize_inherent_projection(data.into()).expect_type(),
457 ty::Free { .. } => self.normalize_free_alias(data.into()).expect_type(),
458 }
459 }
460
461 {}
#[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("fold_const",
"rustc_trait_selection::traits::normalize",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/cea272fa356e94bd2ee2cadf376630aa0683867a/compiler/rustc_trait_selection/src/traits/normalize.rs"),
::tracing_core::__macro_support::Option::Some(461u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::normalize"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("ct")
}> =
::tracing::__macro_support::FieldName::new("ct");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&ct)
as &dyn ::tracing::field::Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: ty::Const<'tcx> = loop {};
return __tracing_attr_fake_return;
}
{
if true {
if !!ct.has_rigid_aliases() {
::core::panicking::panic("assertion failed: !ct.has_rigid_aliases()")
};
};
let tcx = self.selcx.tcx();
if tcx.features().generic_const_exprs() &&
!#[allow(non_exhaustive_omitted_patterns)] match ct.kind() {
ty::ConstKind::Alias(_, alias_const) if
alias_const.kind.is_direct_const(tcx) => true,
_ => false,
} || !needs_normalization(self.selcx.infcx, &ct) {
return ct;
}
let alias_const =
match ct.kind() {
ty::ConstKind::Alias(_, alias_const) => alias_const,
_ => return ct.super_fold_with(self),
};
let ct =
match alias_const.kind {
ty::AliasConstKind::Projection { .. } => {
self.normalize_trait_projection(alias_const.into()).expect_const()
}
ty::AliasConstKind::InherentSelf { .. } |
ty::AliasConstKind::InherentImpl { .. } => {
self.normalize_inherent_projection(alias_const.into()).expect_const()
}
ty::AliasConstKind::Free { .. } => {
self.normalize_free_alias(alias_const.into()).expect_const()
}
ty::AliasConstKind::Anon { .. } => {
let ct = ct.super_fold_with(self);
super::with_replaced_escaping_bound_vars(self.selcx.infcx,
&mut self.universes, ct,
|ct|
super::evaluate_const(self.selcx.infcx, ct, self.param_env))
}
};
ct.super_fold_with(self)
}
}
}#[instrument(skip(self), level = "debug")]
462 fn fold_const(&mut self, ct: ty::Const<'tcx>) -> ty::Const<'tcx> {
463 debug_assert!(!ct.has_rigid_aliases());
465
466 let tcx = self.selcx.tcx();
467
468 if tcx.features().generic_const_exprs()
469 && !matches!(ct.kind(), ty::ConstKind::Alias(_, alias_const) if alias_const.kind.is_direct_const(tcx))
471 || !needs_normalization(self.selcx.infcx, &ct)
472 {
473 return ct;
474 }
475
476 let alias_const = match ct.kind() {
477 ty::ConstKind::Alias(_, alias_const) => alias_const,
478 _ => return ct.super_fold_with(self),
479 };
480
481 let ct = match alias_const.kind {
489 ty::AliasConstKind::Projection { .. } => {
490 self.normalize_trait_projection(alias_const.into()).expect_const()
491 }
492 ty::AliasConstKind::InherentSelf { .. } | ty::AliasConstKind::InherentImpl { .. } => {
493 self.normalize_inherent_projection(alias_const.into()).expect_const()
494 }
495 ty::AliasConstKind::Free { .. } => {
496 self.normalize_free_alias(alias_const.into()).expect_const()
497 }
498 ty::AliasConstKind::Anon { .. } => {
499 let ct = ct.super_fold_with(self);
500 super::with_replaced_escaping_bound_vars(
501 self.selcx.infcx,
502 &mut self.universes,
503 ct,
504 |ct| super::evaluate_const(self.selcx.infcx, ct, self.param_env),
505 )
506 }
507 };
508
509 ct.super_fold_with(self)
512 }
513
514 #[inline]
515 fn fold_predicate(&mut self, p: ty::Predicate<'tcx>) -> ty::Predicate<'tcx> {
516 if p.allow_normalization() && needs_normalization(self.selcx.infcx, &p) {
517 p.super_fold_with(self)
518 } else {
519 p
520 }
521 }
522}