1//! Trait Resolution. See the [rustc dev guide] for more information on how this works.
2//!
3//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/traits/resolution.html
45pub mod auto_trait;
6pub(crate) mod coherence;
7pub mod const_evaluatable;
8mod dyn_compatibility;
9pub mod effects;
10mod engine;
11mod fulfill;
12pub mod misc;
13pub mod normalize;
14pub mod outlives_bounds;
15pub mod project;
16pub mod query;
17#[allow(hidden_glob_reexports)]
18mod select;
19pub mod specialize;
20mod structural_normalize;
21#[allow(hidden_glob_reexports)]
22mod util;
23pub mod vtable;
24pub mod wf;
2526use std::fmt::Debug;
27use std::ops::ControlFlow;
2829use rustc_errors::ErrorGuaranteed;
30pub use rustc_infer::traits::*;
31use rustc_macros::TypeVisitable;
32use rustc_middle::query::Providers;
33use rustc_middle::span_bug;
34use rustc_middle::ty::error::{ExpectedFound, TypeError};
35use rustc_middle::ty::{
36self, Clause, GenericArgs, GenericArgsRef, Ty, TyCtxt, TypeFoldable, TypeFolder,
37TypeSuperFoldable, TypeSuperVisitable, TypeVisitable, TypeVisitableExt, TypingMode,
38Unnormalized, Upcast,
39};
40use rustc_span::Span;
41use rustc_span::def_id::DefId;
42use tracing::{debug, instrument};
4344pub use self::coherence::{
45InCrate, IsFirstInputType, OrphanCheckErr, OrphanCheckMode, OverlapResult, UncoveredTyParams,
46add_placeholder_note, orphan_check_trait_ref, overlapping_inherent_impls,
47overlapping_trait_impls,
48};
49pub use self::dyn_compatibility::{
50DynCompatibilityViolation, dyn_compatibility_violations_for_assoc_item,
51hir_ty_lowering_dyn_compatibility_violations, is_vtable_safe_method,
52};
53pub use self::engine::{ObligationCtxt, TraitEngineExt};
54pub use self::fulfill::{FulfillmentContext, OldSolverError, PendingPredicateObligation};
55pub use self::normalize::NormalizeExt;
56pub use self::project::{normalize_inherent_projection, normalize_projection_term};
57pub use self::select::{
58EvaluationCache, EvaluationResult, IntercrateAmbiguityCause, OverflowError, SelectionCache,
59SelectionContext,
60};
61pub use self::specialize::specialization_graph::{
62FutureCompatOverlapError, FutureCompatOverlapErrorKind,
63};
64pub use self::specialize::{
65OverlapError, specialization_graph, translate_args, translate_args_with_cause,
66};
67pub use self::structural_normalize::StructurallyNormalizeExt;
68pub use self::util::{
69BoundVarReplacer, PlaceholderReplacer, elaborate, expand_trait_aliases, impl_item_is_final,
70sizedness_fast_path, supertrait_def_ids, supertraits, transitive_bounds_that_define_assoc_item,
71upcast_choices, with_replaced_escaping_bound_vars,
72};
73use crate::error_reporting::InferCtxtErrorExt;
74use crate::infer::outlives::env::OutlivesEnvironment;
75use crate::infer::{InferCtxt, TyCtxtInferExt};
76use crate::regions::InferCtxtRegionExt;
77use crate::traits::query::evaluate_obligation::InferCtxtExtas _;
7879#[derive(#[automatically_derived]
impl<'tcx> ::core::fmt::Debug for FulfillmentError<'tcx> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field3_finish(f,
"FulfillmentError", "obligation", &self.obligation, "code",
&self.code, "root_obligation", &&self.root_obligation)
}
}Debug, const _: () =
{
impl<'tcx>
::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
for FulfillmentError<'tcx> {
fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
__visitor: &mut __V) -> __V::Result {
match *self {
FulfillmentError {
obligation: ref __binding_0,
code: ref __binding_1,
root_obligation: ref __binding_2 } => {
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_2,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
}
}
<__V::Result as ::rustc_middle::ty::VisitorResult>::output()
}
}
};TypeVisitable)]
80pub struct FulfillmentError<'tcx> {
81pub obligation: PredicateObligation<'tcx>,
82pub code: FulfillmentErrorCode<'tcx>,
83/// Diagnostics only: the 'root' obligation which resulted in
84 /// the failure to process `obligation`. This is the obligation
85 /// that was initially passed to `register_predicate_obligation`
86pub root_obligation: PredicateObligation<'tcx>,
87}
8889impl<'tcx> FulfillmentError<'tcx> {
90pub fn new(
91 obligation: PredicateObligation<'tcx>,
92 code: FulfillmentErrorCode<'tcx>,
93 root_obligation: PredicateObligation<'tcx>,
94 ) -> FulfillmentError<'tcx> {
95FulfillmentError { obligation, code, root_obligation }
96 }
9798pub fn is_true_error(&self) -> bool {
99match self.code {
100 FulfillmentErrorCode::Select(_)
101 | FulfillmentErrorCode::Project(_)
102 | FulfillmentErrorCode::Subtype(_, _)
103 | FulfillmentErrorCode::ConstEquate(_, _) => true,
104 FulfillmentErrorCode::Cycle(_) | FulfillmentErrorCode::Ambiguity { overflow: _ } => {
105false
106}
107 }
108 }
109}
110111#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for FulfillmentErrorCode<'tcx> {
#[inline]
fn clone(&self) -> FulfillmentErrorCode<'tcx> {
match self {
FulfillmentErrorCode::Cycle(__self_0) =>
FulfillmentErrorCode::Cycle(::core::clone::Clone::clone(__self_0)),
FulfillmentErrorCode::Select(__self_0) =>
FulfillmentErrorCode::Select(::core::clone::Clone::clone(__self_0)),
FulfillmentErrorCode::Project(__self_0) =>
FulfillmentErrorCode::Project(::core::clone::Clone::clone(__self_0)),
FulfillmentErrorCode::Subtype(__self_0, __self_1) =>
FulfillmentErrorCode::Subtype(::core::clone::Clone::clone(__self_0),
::core::clone::Clone::clone(__self_1)),
FulfillmentErrorCode::ConstEquate(__self_0, __self_1) =>
FulfillmentErrorCode::ConstEquate(::core::clone::Clone::clone(__self_0),
::core::clone::Clone::clone(__self_1)),
FulfillmentErrorCode::Ambiguity { overflow: __self_0 } =>
FulfillmentErrorCode::Ambiguity {
overflow: ::core::clone::Clone::clone(__self_0),
},
}
}
}Clone, const _: () =
{
impl<'tcx>
::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
for FulfillmentErrorCode<'tcx> {
fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
__visitor: &mut __V) -> __V::Result {
match *self {
FulfillmentErrorCode::Cycle(ref __binding_0) => {
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
}
FulfillmentErrorCode::Select(ref __binding_0) => {
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
}
FulfillmentErrorCode::Project(ref __binding_0) => {
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
}
FulfillmentErrorCode::Subtype(ref __binding_0,
ref __binding_1) => {
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
}
FulfillmentErrorCode::ConstEquate(ref __binding_0,
ref __binding_1) => {
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
}
FulfillmentErrorCode::Ambiguity { overflow: ref __binding_0
} => {
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
}
}
<__V::Result as ::rustc_middle::ty::VisitorResult>::output()
}
}
};TypeVisitable)]
112pub enum FulfillmentErrorCode<'tcx> {
113/// Inherently impossible to fulfill; this trait is implemented if and only
114 /// if it is already implemented.
115Cycle(PredicateObligations<'tcx>),
116 Select(SelectionError<'tcx>),
117 Project(MismatchedProjectionTypes<'tcx>),
118 Subtype(ExpectedFound<Ty<'tcx>>, TypeError<'tcx>), // always comes from a SubtypePredicate
119ConstEquate(ExpectedFound<ty::Const<'tcx>>, TypeError<'tcx>),
120 Ambiguity {
121/// Overflow is only `Some(suggest_recursion_limit)` when using the next generation
122 /// trait solver `-Znext-solver`. With the old solver overflow is eagerly handled by
123 /// emitting a fatal error instead.
124overflow: Option<bool>,
125 },
126}
127128impl<'tcx> Debugfor FulfillmentErrorCode<'tcx> {
129fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
130match *self {
131 FulfillmentErrorCode::Select(ref e) => f.write_fmt(format_args!("{0:?}", e))write!(f, "{e:?}"),
132 FulfillmentErrorCode::Project(ref e) => f.write_fmt(format_args!("{0:?}", e))write!(f, "{e:?}"),
133 FulfillmentErrorCode::Subtype(ref a, ref b) => {
134f.write_fmt(format_args!("CodeSubtypeError({0:?}, {1:?})", a, b))write!(f, "CodeSubtypeError({a:?}, {b:?})")135 }
136 FulfillmentErrorCode::ConstEquate(ref a, ref b) => {
137f.write_fmt(format_args!("CodeConstEquateError({0:?}, {1:?})", a, b))write!(f, "CodeConstEquateError({a:?}, {b:?})")138 }
139 FulfillmentErrorCode::Ambiguity { overflow: None } => f.write_fmt(format_args!("Ambiguity"))write!(f, "Ambiguity"),
140 FulfillmentErrorCode::Ambiguity { overflow: Some(suggest_increasing_limit) } => {
141f.write_fmt(format_args!("Overflow({0})", suggest_increasing_limit))write!(f, "Overflow({suggest_increasing_limit})")142 }
143 FulfillmentErrorCode::Cycle(ref cycle) => f.write_fmt(format_args!("Cycle({0:?})", cycle))write!(f, "Cycle({cycle:?})"),
144 }
145 }
146}
147148/// Whether to skip the leak check, as part of a future compatibility warning step.
149///
150/// The "default" for skip-leak-check corresponds to the current
151/// behavior (do not skip the leak check) -- not the behavior we are
152/// transitioning into.
153#[derive(#[automatically_derived]
impl ::core::marker::Copy for SkipLeakCheck { }Copy, #[automatically_derived]
impl ::core::clone::Clone for SkipLeakCheck {
#[inline]
fn clone(&self) -> SkipLeakCheck { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for SkipLeakCheck {
#[inline]
fn eq(&self, other: &SkipLeakCheck) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for SkipLeakCheck {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for SkipLeakCheck {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
SkipLeakCheck::Yes => "Yes",
SkipLeakCheck::No => "No",
})
}
}Debug, #[automatically_derived]
impl ::core::default::Default for SkipLeakCheck {
#[inline]
fn default() -> SkipLeakCheck { Self::No }
}Default)]
154pub enum SkipLeakCheck {
155 Yes,
156#[default]
157No,
158}
159160impl SkipLeakCheck {
161fn is_yes(self) -> bool {
162self == SkipLeakCheck::Yes163 }
164}
165166/// The mode that trait queries run in.
167#[derive(#[automatically_derived]
impl ::core::marker::Copy for TraitQueryMode { }Copy, #[automatically_derived]
impl ::core::clone::Clone for TraitQueryMode {
#[inline]
fn clone(&self) -> TraitQueryMode { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for TraitQueryMode {
#[inline]
fn eq(&self, other: &TraitQueryMode) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for TraitQueryMode {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for TraitQueryMode {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
TraitQueryMode::Standard => "Standard",
TraitQueryMode::Canonical => "Canonical",
})
}
}Debug)]
168pub enum TraitQueryMode {
169/// Standard/un-canonicalized queries get accurate
170 /// spans etc. passed in and hence can do reasonable
171 /// error reporting on their own.
172Standard,
173/// Canonical queries get dummy spans and hence
174 /// must generally propagate errors to
175 /// pre-canonicalization callsites.
176Canonical,
177}
178179/// Creates predicate obligations from the generic bounds.
180#[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("predicates_for_generics",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(180u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["generic_bounds"],
::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};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&generic_bounds)
as &dyn 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: _ = loop {};
return __tracing_attr_fake_return;
}
{
generic_bounds.into_iter().enumerate().map(move
|(idx, (clause, span))|
Obligation {
cause: cause(idx, span),
recursion_depth: 0,
param_env,
predicate: normalize_predicate(clause).as_predicate(),
})
}
}
}#[instrument(level = "debug", skip(cause, param_env, normalize_predicate))]181pub fn predicates_for_generics<'tcx>(
182 cause: impl Fn(usize, Span) -> ObligationCause<'tcx>,
183mut normalize_predicate: impl FnMut(Unnormalized<'tcx, Clause<'tcx>>) -> Clause<'tcx>,
184 param_env: ty::ParamEnv<'tcx>,
185 generic_bounds: ty::InstantiatedPredicates<'tcx>,
186) -> impl Iterator<Item = PredicateObligation<'tcx>> {
187 generic_bounds.into_iter().enumerate().map(move |(idx, (clause, span))| Obligation {
188 cause: cause(idx, span),
189 recursion_depth: 0,
190 param_env,
191 predicate: normalize_predicate(clause).as_predicate(),
192 })
193}
194195/// Determines whether the type `ty` is known to meet `bound` and
196/// returns true if so. Returns false if `ty` either does not meet
197/// `bound` or is not known to meet bound (note that this is
198/// conservative towards *no impl*, which is the opposite of the
199/// `evaluate` methods).
200pub fn type_known_to_meet_bound_modulo_regions<'tcx>(
201 infcx: &InferCtxt<'tcx>,
202 param_env: ty::ParamEnv<'tcx>,
203 ty: Ty<'tcx>,
204 def_id: DefId,
205) -> bool {
206let trait_ref = ty::TraitRef::new(infcx.tcx, def_id, [ty]);
207pred_known_to_hold_modulo_regions(infcx, param_env, trait_ref)
208}
209210/// FIXME(@lcnr): this function doesn't seem right and shouldn't exist?
211///
212/// Ping me on zulip if you want to use this method and need help with finding
213/// an appropriate replacement.
214x;#[instrument(level = "debug", skip(infcx, param_env, pred), ret)]215fn pred_known_to_hold_modulo_regions<'tcx>(
216 infcx: &InferCtxt<'tcx>,
217 param_env: ty::ParamEnv<'tcx>,
218 pred: impl Upcast<TyCtxt<'tcx>, ty::Predicate<'tcx>>,
219) -> bool {
220let obligation = Obligation::new(infcx.tcx, ObligationCause::dummy(), param_env, pred);
221222let result = infcx.evaluate_obligation_no_overflow(&obligation);
223debug!(?result);
224225if result.must_apply_modulo_regions() {
226true
227} else if result.may_apply() && !infcx.next_trait_solver() {
228// Sometimes obligations are ambiguous because the recursive evaluator
229 // is not smart enough, so we fall back to fulfillment when we're not certain
230 // that an obligation holds or not. Even still, we must make sure that
231 // the we do no inference in the process of checking this obligation.
232let goal = infcx.resolve_vars_if_possible((obligation.predicate, obligation.param_env));
233 infcx.probe(|_| {
234let ocx = ObligationCtxt::new(infcx);
235 ocx.register_obligation(obligation);
236237let errors = ocx.evaluate_obligations_error_on_ambiguity();
238match errors.as_slice() {
239// Only known to hold if we did no inference.
240[] => infcx.resolve_vars_if_possible(goal) == goal,
241242 errors => {
243debug!(?errors);
244false
245}
246 }
247 })
248 } else {
249false
250}
251}
252253#[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("do_normalize_predicates",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(253u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["cause",
"predicates"],
::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};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&cause)
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&predicates)
as &dyn 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:
Result<Vec<ty::Clause<'tcx>>, ErrorGuaranteed> = loop {};
return __tracing_attr_fake_return;
}
{
if tcx.next_trait_solver_globally() { return Ok(predicates); }
let span = cause.span;
let infcx =
tcx.infer_ctxt().ignoring_regions().build(TypingMode::non_body_analysis());
let ocx = ObligationCtxt::new_with_diagnostics(&infcx);
let predicates =
ocx.normalize(&cause, elaborated_env,
Unnormalized::new_wip(predicates));
let errors = ocx.evaluate_obligations_error_on_ambiguity();
if !errors.is_empty() {
let reported =
infcx.err_ctxt().report_fulfillment_errors(errors);
return Err(reported);
}
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:290",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(290u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("do_normalize_predicates: normalized predicates = {0:?}",
predicates) as &dyn Value))])
});
} else { ; }
};
let errors =
infcx.resolve_regions(cause.body_id, elaborated_env, []);
if !errors.is_empty() {
tcx.dcx().span_delayed_bug(span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("failed region resolution while normalizing {0:?}: {1:?}",
elaborated_env, errors))
}));
}
match infcx.fully_resolve(predicates) {
Ok(predicates) => Ok(predicates),
Err(fixup_err) => {
Err(tcx.dcx().span_delayed_bug(span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("inference variables in normalized parameter environment: {0}",
fixup_err))
})))
}
}
}
}
}#[instrument(level = "debug", skip(tcx, elaborated_env))]254fn do_normalize_predicates<'tcx>(
255 tcx: TyCtxt<'tcx>,
256 cause: ObligationCause<'tcx>,
257 elaborated_env: ty::ParamEnv<'tcx>,
258 predicates: Vec<ty::Clause<'tcx>>,
259) -> Result<Vec<ty::Clause<'tcx>>, ErrorGuaranteed> {
260// Even if we move back to eager normalization elsewhere,
261 // param env normalization remains lazy in the next solver.
262if tcx.next_trait_solver_globally() {
263return Ok(predicates);
264 }
265266// FIXME. We should really... do something with these region
267 // obligations. But this call just continues the older
268 // behavior (i.e., doesn't cause any new bugs), and it would
269 // take some further refactoring to actually solve them. In
270 // particular, we would have to handle implied bounds
271 // properly, and that code is currently largely confined to
272 // regionck (though I made some efforts to extract it
273 // out). -nmatsakis
274 //
275 // @arielby: In any case, these obligations are checked
276 // by wfcheck anyway, so I'm not sure we have to check
277 // them here too, and we will remove this function when
278 // we move over to lazy normalization *anyway*.
279let span = cause.span;
280let infcx = tcx.infer_ctxt().ignoring_regions().build(TypingMode::non_body_analysis());
281let ocx = ObligationCtxt::new_with_diagnostics(&infcx);
282let predicates = ocx.normalize(&cause, elaborated_env, Unnormalized::new_wip(predicates));
283284let errors = ocx.evaluate_obligations_error_on_ambiguity();
285if !errors.is_empty() {
286let reported = infcx.err_ctxt().report_fulfillment_errors(errors);
287return Err(reported);
288 }
289290debug!("do_normalize_predicates: normalized predicates = {:?}", predicates);
291292// We can use the `elaborated_env` here; the region code only
293 // cares about declarations like `'a: 'b`.
294 // FIXME: It's very weird that we ignore region obligations but apparently
295 // still need to use `resolve_regions` as we need the resolved regions in
296 // the normalized predicates.
297let errors = infcx.resolve_regions(cause.body_id, elaborated_env, []);
298if !errors.is_empty() {
299 tcx.dcx().span_delayed_bug(
300 span,
301format!("failed region resolution while normalizing {elaborated_env:?}: {errors:?}"),
302 );
303 }
304305match infcx.fully_resolve(predicates) {
306Ok(predicates) => Ok(predicates),
307Err(fixup_err) => {
308// If we encounter a fixup error, it means that some type
309 // variable wound up unconstrained. That can happen for
310 // ill-formed impls, so we delay a bug here instead of
311 // immediately ICEing and let type checking report the
312 // actual user-facing errors.
313Err(tcx.dcx().span_delayed_bug(
314 span,
315format!("inference variables in normalized parameter environment: {fixup_err}"),
316 ))
317 }
318 }
319}
320321// FIXME: this is gonna need to be removed ...
322/// Normalizes the parameter environment, reporting errors if they occur.
323#[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("normalize_param_env_or_error",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(323u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["unnormalized_env",
"cause"],
::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};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&unnormalized_env)
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&cause)
as &dyn 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::ParamEnv<'tcx> = loop {};
return __tracing_attr_fake_return;
}
{
let mut predicates: Vec<_> =
util::elaborate(tcx,
unnormalized_env.caller_bounds().into_iter().map(|predicate|
{
if tcx.features().generic_const_exprs() ||
tcx.next_trait_solver_globally() {
return predicate;
}
struct ConstNormalizer<'tcx>(TyCtxt<'tcx>);
impl<'tcx> TypeFolder<TyCtxt<'tcx>> for
ConstNormalizer<'tcx> {
fn cx(&self) -> TyCtxt<'tcx> { self.0 }
fn fold_const(&mut self, c: ty::Const<'tcx>)
-> ty::Const<'tcx> {
if c.has_escaping_bound_vars() {
return ty::Const::new_misc_error(self.0);
}
if let ty::ConstKind::Unevaluated(uv) = c.kind() &&
#[allow(non_exhaustive_omitted_patterns)] match uv.kind {
ty::UnevaluatedConstKind::Anon { .. } => true,
_ => false,
} {
let infcx =
self.0.infer_ctxt().build(TypingMode::non_body_analysis());
let c = evaluate_const(&infcx, c, ty::ParamEnv::empty());
if !(!c.has_infer() && !c.has_placeholders()) {
::core::panicking::panic("assertion failed: !c.has_infer() && !c.has_placeholders()")
};
return c;
}
c
}
}
predicate.fold_with(&mut ConstNormalizer(tcx))
})).collect();
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:416",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(416u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: elaborated-predicates={0:?}",
predicates) as &dyn Value))])
});
} else { ; }
};
let elaborated_env =
ty::ParamEnv::new(tcx.mk_clauses(&predicates));
if !elaborated_env.has_aliases() { return elaborated_env; }
let outlives_predicates: Vec<_> =
predicates.extract_if(..,
|predicate|
{
#[allow(non_exhaustive_omitted_patterns)]
match predicate.kind().skip_binder() {
ty::ClauseKind::TypeOutlives(..) => true,
_ => false,
}
}).collect();
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:447",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(447u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: predicates=(non-outlives={0:?}, outlives={1:?})",
predicates, outlives_predicates) as &dyn Value))])
});
} else { ; }
};
let Ok(non_outlives_predicates) =
do_normalize_predicates(tcx, cause.clone(), elaborated_env,
predicates) else {
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:455",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(455u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: errored resolving non-outlives predicates")
as &dyn Value))])
});
} else { ; }
};
return elaborated_env;
};
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:459",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(459u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: non-outlives predicates={0:?}",
non_outlives_predicates) as &dyn Value))])
});
} else { ; }
};
let outlives_env =
non_outlives_predicates.iter().chain(&outlives_predicates).cloned();
let outlives_env =
ty::ParamEnv::new(tcx.mk_clauses_from_iter(outlives_env));
let Ok(outlives_predicates) =
do_normalize_predicates(tcx, cause, outlives_env,
outlives_predicates) else {
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:470",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(470u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: errored resolving outlives predicates")
as &dyn Value))])
});
} else { ; }
};
return elaborated_env;
};
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:473",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(473u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: outlives predicates={0:?}",
outlives_predicates) as &dyn Value))])
});
} else { ; }
};
let mut predicates = non_outlives_predicates;
predicates.extend(outlives_predicates);
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:477",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(477u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: final predicates={0:?}",
predicates) as &dyn Value))])
});
} else { ; }
};
ty::ParamEnv::new(tcx.mk_clauses(&predicates))
}
}
}#[instrument(level = "debug", skip(tcx))]324pub fn normalize_param_env_or_error<'tcx>(
325 tcx: TyCtxt<'tcx>,
326 unnormalized_env: ty::ParamEnv<'tcx>,
327 cause: ObligationCause<'tcx>,
328) -> ty::ParamEnv<'tcx> {
329// I'm not wild about reporting errors here; I'd prefer to
330 // have the errors get reported at a defined place (e.g.,
331 // during typeck). Instead I have all parameter
332 // environments, in effect, going through this function
333 // and hence potentially reporting errors. This ensures of
334 // course that we never forget to normalize (the
335 // alternative seemed like it would involve a lot of
336 // manual invocations of this fn -- and then we'd have to
337 // deal with the errors at each of those sites).
338 //
339 // In any case, in practice, typeck constructs all the
340 // parameter environments once for every fn as it goes,
341 // and errors will get reported then; so outside of type inference we
342 // can be sure that no errors should occur.
343let mut predicates: Vec<_> = util::elaborate(
344 tcx,
345 unnormalized_env.caller_bounds().into_iter().map(|predicate| {
346if tcx.features().generic_const_exprs() || tcx.next_trait_solver_globally() {
347return predicate;
348 }
349350struct ConstNormalizer<'tcx>(TyCtxt<'tcx>);
351352impl<'tcx> TypeFolder<TyCtxt<'tcx>> for ConstNormalizer<'tcx> {
353fn cx(&self) -> TyCtxt<'tcx> {
354self.0
355}
356357fn fold_const(&mut self, c: ty::Const<'tcx>) -> ty::Const<'tcx> {
358// FIXME(return_type_notation): track binders in this normalizer, as
359 // `ty::Const::normalize` can only work with properly preserved binders.
360361if c.has_escaping_bound_vars() {
362return ty::Const::new_misc_error(self.0);
363 }
364365// While it is pretty sus to be evaluating things with an empty param env, it
366 // should actually be okay since without `feature(generic_const_exprs)` the only
367 // const arguments that have a non-empty param env are array repeat counts. These
368 // do not appear in the type system though.
369if let ty::ConstKind::Unevaluated(uv) = c.kind()
370 && matches!(uv.kind, ty::UnevaluatedConstKind::Anon { .. })
371 {
372let infcx = self.0.infer_ctxt().build(TypingMode::non_body_analysis());
373let c = evaluate_const(&infcx, c, ty::ParamEnv::empty());
374// We should never wind up with any `infcx` local state when normalizing anon consts
375 // under min const generics.
376assert!(!c.has_infer() && !c.has_placeholders());
377return c;
378 }
379380 c
381 }
382 }
383384// This whole normalization step is a hack to work around the fact that
385 // `normalize_param_env_or_error` is fundamentally broken from using an
386 // unnormalized param env with a trait solver that expects the param env
387 // to be normalized.
388 //
389 // When normalizing the param env we can end up evaluating obligations
390 // that have been normalized but can only be proven via a where clause
391 // which is still in its unnormalized form. example:
392 //
393 // Attempting to prove `T: Trait<<u8 as Identity>::Assoc>` in a param env
394 // with a `T: Trait<<u8 as Identity>::Assoc>` where clause will fail because
395 // we first normalize obligations before proving them so we end up proving
396 // `T: Trait<u8>`. Since lazy normalization is not implemented equating `u8`
397 // with `<u8 as Identity>::Assoc` fails outright so we incorrectly believe that
398 // we cannot prove `T: Trait<u8>`.
399 //
400 // The same thing is true for const generics- attempting to prove
401 // `T: Trait<ConstKind::Unevaluated(...)>` with the same thing as a where clauses
402 // will fail. After normalization we may be attempting to prove `T: Trait<4>` with
403 // the unnormalized where clause `T: Trait<ConstKind::Unevaluated(...)>`. In order
404 // for the obligation to hold `4` must be equal to `ConstKind::Unevaluated(...)`
405 // but as we do not have lazy norm implemented, equating the two consts fails outright.
406 //
407 // Ideally we would not normalize consts here at all but it is required for backwards
408 // compatibility. Eventually when lazy norm is implemented this can just be removed.
409 // We do not normalize types here as there is no backwards compatibility requirement
410 // for us to do so.
411predicate.fold_with(&mut ConstNormalizer(tcx))
412 }),
413 )
414 .collect();
415416debug!("normalize_param_env_or_error: elaborated-predicates={:?}", predicates);
417418let elaborated_env = ty::ParamEnv::new(tcx.mk_clauses(&predicates));
419if !elaborated_env.has_aliases() {
420return elaborated_env;
421 }
422423// HACK: we are trying to normalize the param-env inside *itself*. The problem is that
424 // normalization expects its param-env to be already normalized, which means we have
425 // a circularity.
426 //
427 // The way we handle this is by normalizing the param-env inside an unnormalized version
428 // of the param-env, which means that if the param-env contains unnormalized projections,
429 // we'll have some normalization failures. This is unfortunate.
430 //
431 // Lazy normalization would basically handle this by treating just the
432 // normalizing-a-trait-ref-requires-itself cycles as evaluation failures.
433 //
434 // Inferred outlives bounds can create a lot of `TypeOutlives` predicates for associated
435 // types, so to make the situation less bad, we normalize all the predicates *but*
436 // the `TypeOutlives` predicates first inside the unnormalized parameter environment, and
437 // then we normalize the `TypeOutlives` bounds inside the normalized parameter environment.
438 //
439 // This works fairly well because trait matching does not actually care about param-env
440 // TypeOutlives predicates - these are normally used by regionck.
441let outlives_predicates: Vec<_> = predicates
442 .extract_if(.., |predicate| {
443matches!(predicate.kind().skip_binder(), ty::ClauseKind::TypeOutlives(..))
444 })
445 .collect();
446447debug!(
448"normalize_param_env_or_error: predicates=(non-outlives={:?}, outlives={:?})",
449 predicates, outlives_predicates
450 );
451let Ok(non_outlives_predicates) =
452 do_normalize_predicates(tcx, cause.clone(), elaborated_env, predicates)
453else {
454// An unnormalized env is better than nothing.
455debug!("normalize_param_env_or_error: errored resolving non-outlives predicates");
456return elaborated_env;
457 };
458459debug!("normalize_param_env_or_error: non-outlives predicates={:?}", non_outlives_predicates);
460461// Not sure whether it is better to include the unnormalized TypeOutlives predicates
462 // here. I believe they should not matter, because we are ignoring TypeOutlives param-env
463 // predicates here anyway. Keeping them here anyway because it seems safer.
464let outlives_env = non_outlives_predicates.iter().chain(&outlives_predicates).cloned();
465let outlives_env = ty::ParamEnv::new(tcx.mk_clauses_from_iter(outlives_env));
466let Ok(outlives_predicates) =
467 do_normalize_predicates(tcx, cause, outlives_env, outlives_predicates)
468else {
469// An unnormalized env is better than nothing.
470debug!("normalize_param_env_or_error: errored resolving outlives predicates");
471return elaborated_env;
472 };
473debug!("normalize_param_env_or_error: outlives predicates={:?}", outlives_predicates);
474475let mut predicates = non_outlives_predicates;
476 predicates.extend(outlives_predicates);
477debug!("normalize_param_env_or_error: final predicates={:?}", predicates);
478 ty::ParamEnv::new(tcx.mk_clauses(&predicates))
479}
480481/// Deeply normalize the param env using the next solver ignoring
482/// region errors.
483///
484/// FIXME(-Zhigher-ranked-assumptions): this is a hack to work around
485/// the fact that we don't support placeholder assumptions right now
486/// and is necessary for `compare_method_predicate_entailment`, see the
487/// use of this function for more info. We should remove this once we
488/// have proper support for implied bounds on binders.
489#[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("deeply_normalize_param_env_ignoring_regions",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(489u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["unnormalized_env",
"cause"],
::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};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&unnormalized_env)
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&cause)
as &dyn 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::ParamEnv<'tcx> = loop {};
return __tracing_attr_fake_return;
}
{
let predicates: Vec<_> =
util::elaborate(tcx,
unnormalized_env.caller_bounds().into_iter()).collect();
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:498",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(498u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: elaborated-predicates={0:?}",
predicates) as &dyn Value))])
});
} else { ; }
};
let elaborated_env =
ty::ParamEnv::new(tcx.mk_clauses(&predicates));
if !elaborated_env.has_aliases() { return elaborated_env; }
let span = cause.span;
let infcx =
tcx.infer_ctxt().with_next_trait_solver(true).ignoring_regions().build(TypingMode::non_body_analysis());
let predicates =
match crate::solve::deeply_normalize::<_,
FulfillmentError<'tcx>>(infcx.at(&cause, elaborated_env),
Unnormalized::new_wip(predicates)) {
Ok(predicates) => predicates,
Err(errors) => {
infcx.err_ctxt().report_fulfillment_errors(errors);
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:519",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(519u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: errored resolving predicates")
as &dyn Value))])
});
} else { ; }
};
return elaborated_env;
}
};
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:524",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(524u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("do_normalize_predicates: normalized predicates = {0:?}",
predicates) as &dyn Value))])
});
} else { ; }
};
let _errors =
infcx.resolve_regions(cause.body_id, elaborated_env, []);
let predicates =
match infcx.fully_resolve(predicates) {
Ok(predicates) => predicates,
Err(fixup_err) => {
::rustc_middle::util::bug::span_bug_fmt(span,
format_args!("inference variables in normalized parameter environment: {0}",
fixup_err))
}
};
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:540",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(540u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: final predicates={0:?}",
predicates) as &dyn Value))])
});
} else { ; }
};
ty::ParamEnv::new(tcx.mk_clauses(&predicates))
}
}
}#[instrument(level = "debug", skip(tcx))]490pub fn deeply_normalize_param_env_ignoring_regions<'tcx>(
491 tcx: TyCtxt<'tcx>,
492 unnormalized_env: ty::ParamEnv<'tcx>,
493 cause: ObligationCause<'tcx>,
494) -> ty::ParamEnv<'tcx> {
495let predicates: Vec<_> =
496 util::elaborate(tcx, unnormalized_env.caller_bounds().into_iter()).collect();
497498debug!("normalize_param_env_or_error: elaborated-predicates={:?}", predicates);
499500let elaborated_env = ty::ParamEnv::new(tcx.mk_clauses(&predicates));
501if !elaborated_env.has_aliases() {
502return elaborated_env;
503 }
504505let span = cause.span;
506let infcx = tcx
507 .infer_ctxt()
508 .with_next_trait_solver(true)
509 .ignoring_regions()
510 .build(TypingMode::non_body_analysis());
511let predicates = match crate::solve::deeply_normalize::<_, FulfillmentError<'tcx>>(
512 infcx.at(&cause, elaborated_env),
513 Unnormalized::new_wip(predicates),
514 ) {
515Ok(predicates) => predicates,
516Err(errors) => {
517 infcx.err_ctxt().report_fulfillment_errors(errors);
518// An unnormalized env is better than nothing.
519debug!("normalize_param_env_or_error: errored resolving predicates");
520return elaborated_env;
521 }
522 };
523524debug!("do_normalize_predicates: normalized predicates = {:?}", predicates);
525// FIXME(-Zhigher-ranked-assumptions): We're ignoring region errors for now.
526 // There're placeholder constraints `leaking` out.
527 // See the fixme in the enclosing function's docs for more.
528let _errors = infcx.resolve_regions(cause.body_id, elaborated_env, []);
529530let predicates = match infcx.fully_resolve(predicates) {
531Ok(predicates) => predicates,
532Err(fixup_err) => {
533span_bug!(
534 span,
535"inference variables in normalized parameter environment: {}",
536 fixup_err
537 )
538 }
539 };
540debug!("normalize_param_env_or_error: final predicates={:?}", predicates);
541 ty::ParamEnv::new(tcx.mk_clauses(&predicates))
542}
543544#[derive(#[automatically_derived]
impl ::core::fmt::Debug for EvaluateConstErr {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
EvaluateConstErr::HasGenericsOrInfers =>
::core::fmt::Formatter::write_str(f, "HasGenericsOrInfers"),
EvaluateConstErr::InvalidConstParamTy(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"InvalidConstParamTy", &__self_0),
EvaluateConstErr::EvaluationFailure(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"EvaluationFailure", &__self_0),
}
}
}Debug)]
545pub enum EvaluateConstErr {
546/// The constant being evaluated was either a generic parameter or inference variable, *or*,
547 /// some unevaluated constant with either generic parameters or inference variables in its
548 /// generic arguments.
549HasGenericsOrInfers,
550/// The type this constant evaluated to is not valid for use in const generics. This should
551 /// always result in an error when checking the constant is correctly typed for the parameter
552 /// it is an argument to, so a bug is delayed when encountering this.
553InvalidConstParamTy(ErrorGuaranteed),
554/// CTFE failed to evaluate the constant in some unrecoverable way (e.g. encountered a `panic!`).
555 /// This is also used when the constant was already tainted by error.
556EvaluationFailure(ErrorGuaranteed),
557}
558559// FIXME(BoxyUwU): Private this once we `generic_const_exprs` isn't doing its own normalization routine
560// FIXME(generic_const_exprs): Consider accepting a `ty::UnevaluatedConst` when we are not rolling our own
561// normalization scheme
562/// Evaluates a type system constant returning a `ConstKind::Error` in cases where CTFE failed and
563/// returning the passed in constant if it was not fully concrete (i.e. depended on generic parameters
564/// or inference variables)
565///
566/// You should not call this function unless you are implementing normalization itself. Prefer to use
567/// `normalize_erasing_regions` or the `normalize` functions on `ObligationCtxt`/`FnCtxt`/`InferCtxt`.
568pub fn evaluate_const<'tcx>(
569 infcx: &InferCtxt<'tcx>,
570 ct: ty::Const<'tcx>,
571 param_env: ty::ParamEnv<'tcx>,
572) -> ty::Const<'tcx> {
573match try_evaluate_const(infcx, ct, param_env) {
574Ok(ct) => ct,
575Err(EvaluateConstErr::EvaluationFailure(e) | EvaluateConstErr::InvalidConstParamTy(e)) => {
576 ty::Const::new_error(infcx.tcx, e)
577 }
578Err(EvaluateConstErr::HasGenericsOrInfers) => ct,
579 }
580}
581582// FIXME(BoxyUwU): Private this once we `generic_const_exprs` isn't doing its own normalization routine
583// FIXME(generic_const_exprs): Consider accepting a `ty::UnevaluatedConst` when we are not rolling our own
584// normalization scheme
585/// Evaluates a type system constant making sure to not allow constants that depend on generic parameters
586/// or inference variables to succeed in evaluating.
587///
588/// You should not call this function unless you are implementing normalization itself. Prefer to use
589/// `normalize_erasing_regions` or the `normalize` functions on `ObligationCtxt`/`FnCtxt`/`InferCtxt`.
590x;#[instrument(level = "debug", skip(infcx), ret)]591pub fn try_evaluate_const<'tcx>(
592 infcx: &InferCtxt<'tcx>,
593 ct: ty::Const<'tcx>,
594 param_env: ty::ParamEnv<'tcx>,
595) -> Result<ty::Const<'tcx>, EvaluateConstErr> {
596let tcx = infcx.tcx;
597let ct = infcx.resolve_vars_if_possible(ct);
598debug!(?ct);
599600match ct.kind() {
601 ty::ConstKind::Value(..) => Ok(ct),
602 ty::ConstKind::Error(e) => Err(EvaluateConstErr::EvaluationFailure(e)),
603 ty::ConstKind::Param(_)
604 | ty::ConstKind::Infer(_)
605 | ty::ConstKind::Bound(_, _)
606 | ty::ConstKind::Placeholder(_)
607 | ty::ConstKind::Expr(_) => Err(EvaluateConstErr::HasGenericsOrInfers),
608 ty::ConstKind::Unevaluated(uv) => {
609let opt_anon_const_kind = match uv.kind {
610 ty::UnevaluatedConstKind::Anon { def_id } => {
611Some((def_id, tcx.anon_const_kind(def_id)))
612 }
613_ => None,
614 };
615616// Postpone evaluation of constants that depend on generic parameters or
617 // inference variables.
618 //
619 // We use `TypingMode::PostAnalysis` here which is not *technically* correct
620 // to be revealing opaque types here as borrowcheck has not run yet. However,
621 // CTFE itself uses `TypingMode::PostAnalysis` unconditionally even during
622 // typeck and not doing so has a lot of (undesirable) fallout (#101478, #119821).
623 // As a result we always use a revealed env when resolving the instance to evaluate.
624 //
625 // FIXME: `const_eval_resolve_for_typeck` should probably just modify the env itself
626 // instead of having this logic here
627let (args, typing_env) = match opt_anon_const_kind {
628// We handle `generic_const_exprs` separately as reasonable ways of handling constants in the type system
629 // completely fall apart under `generic_const_exprs` and makes this whole function Really hard to reason
630 // about if you have to consider gce whatsoever.
631Some((def_id, ty::AnonConstKind::GCE)) => {
632if uv.has_non_region_infer() || uv.has_non_region_param() {
633// `feature(generic_const_exprs)` causes anon consts to inherit all parent generics. This can cause
634 // inference variables and generic parameters to show up in `ty::Const` even though the anon const
635 // does not actually make use of them. We handle this case specially and attempt to evaluate anyway.
636match tcx.thir_abstract_const(def_id) {
637Ok(Some(ct)) => {
638let ct = tcx.expand_abstract_consts(
639 ct.instantiate(tcx, uv.args).skip_norm_wip(),
640 );
641if let Err(e) = ct.error_reported() {
642return Err(EvaluateConstErr::EvaluationFailure(e));
643 } else if ct.has_non_region_infer() || ct.has_non_region_param() {
644// If the anon const *does* actually use generic parameters or inference variables from
645 // the generic arguments provided for it, then we should *not* attempt to evaluate it.
646return Err(EvaluateConstErr::HasGenericsOrInfers);
647 } else {
648let args =
649 replace_param_and_infer_args_with_placeholder(tcx, uv.args);
650let typing_env = infcx
651 .typing_env(tcx.erase_and_anonymize_regions(param_env))
652 .with_post_analysis_normalized(tcx);
653 (args, typing_env)
654 }
655 }
656Err(_) | Ok(None) => {
657let args = GenericArgs::identity_for_item(tcx, def_id);
658let typing_env = ty::TypingEnv::post_analysis(tcx, def_id);
659 (args, typing_env)
660 }
661 }
662 } else {
663let typing_env = infcx
664 .typing_env(tcx.erase_and_anonymize_regions(param_env))
665 .with_post_analysis_normalized(tcx);
666 (uv.args, typing_env)
667 }
668 }
669Some((def_id, ty::AnonConstKind::RepeatExprCount)) => {
670if uv.has_non_region_infer() {
671// Diagnostics will sometimes replace the identity args of anon consts in
672 // array repeat expr counts with inference variables so we have to handle this
673 // even though it is not something we should ever actually encounter.
674 //
675 // Array repeat expr counts are allowed to syntactically use generic parameters
676 // but must not actually depend on them in order to evalaute successfully. This means
677 // that it is actually fine to evalaute them in their own environment rather than with
678 // the actually provided generic arguments.
679tcx.dcx().delayed_bug("AnonConst with infer args but no error reported");
680 }
681682// The generic args of repeat expr counts under `min_const_generics` are not supposed to
683 // affect evaluation of the constant as this would make it a "truly" generic const arg.
684 // To prevent this we discard all the generic arguments and evalaute with identity args
685 // and in its own environment instead of the current environment we are normalizing in.
686let args = GenericArgs::identity_for_item(tcx, def_id);
687let typing_env = ty::TypingEnv::post_analysis(tcx, def_id);
688689 (args, typing_env)
690 }
691Some((_, ty::AnonConstKind::MCG))
692 | Some((_, ty::AnonConstKind::NonTypeSystem))
693 | None => {
694// We are only dealing with "truly" generic/uninferred constants here:
695 // - GCEConsts have been handled separately
696 // - Repeat expr count back compat consts have also been handled separately
697 // So we are free to simply defer evaluation here.
698 //
699 // FIXME: This assumes that `args` are normalized which is not necessarily true
700 //
701 // Const patterns are converted to type system constants before being
702 // evaluated. However, we don't care about them here as pattern evaluation
703 // logic does not go through type system normalization. If it did this would
704 // be a backwards compatibility problem as we do not enforce "syntactic" non-
705 // usage of generic parameters like we do here.
706if uv.args.has_non_region_param()
707 || uv.args.has_non_region_infer()
708 || uv.args.has_non_region_placeholders()
709 {
710return Err(EvaluateConstErr::HasGenericsOrInfers);
711 }
712713// Since there is no generic parameter, we can just drop the environment
714 // to prevent query cycle.
715let typing_env = ty::TypingEnv::fully_monomorphized();
716717 (uv.args, typing_env)
718 }
719 };
720721let uv = ty::UnevaluatedConst::new(tcx, uv.kind, args);
722let erased_uv = tcx.erase_and_anonymize_regions(uv);
723724use rustc_middle::mir::interpret::ErrorHandled;
725// FIXME: `def_span` will point at the definition of this const; ideally, we'd point at
726 // where it gets used as a const generic.
727let span = uv.kind.def_span(tcx);
728match tcx.const_eval_resolve_for_typeck(typing_env, erased_uv, span) {
729Ok(Ok(val)) => Ok(ty::Const::new_value(tcx, val, uv.type_of(tcx).skip_norm_wip())),
730Ok(Err(_)) => {
731let e = tcx.dcx().delayed_bug(
732"Type system constant with non valtree'able type evaluated but no error emitted",
733 );
734Err(EvaluateConstErr::InvalidConstParamTy(e))
735 }
736Err(ErrorHandled::Reported(info, _)) => {
737Err(EvaluateConstErr::EvaluationFailure(info.into()))
738 }
739Err(ErrorHandled::TooGeneric(_)) => Err(EvaluateConstErr::HasGenericsOrInfers),
740 }
741 }
742 }
743}
744745/// Replaces args that reference param or infer variables with suitable
746/// placeholders. This function is meant to remove these param and infer
747/// args when they're not actually needed to evaluate a constant.
748fn replace_param_and_infer_args_with_placeholder<'tcx>(
749 tcx: TyCtxt<'tcx>,
750 args: GenericArgsRef<'tcx>,
751) -> GenericArgsRef<'tcx> {
752struct ReplaceParamAndInferWithPlaceholder<'tcx> {
753 tcx: TyCtxt<'tcx>,
754 idx: ty::BoundVar,
755 }
756757impl<'tcx> TypeFolder<TyCtxt<'tcx>> for ReplaceParamAndInferWithPlaceholder<'tcx> {
758fn cx(&self) -> TyCtxt<'tcx> {
759self.tcx
760 }
761762fn fold_ty(&mut self, t: Ty<'tcx>) -> Ty<'tcx> {
763if let ty::Infer(_) = t.kind() {
764let idx = self.idx;
765self.idx += 1;
766Ty::new_placeholder(
767self.tcx,
768 ty::PlaceholderType::new(
769 ty::UniverseIndex::ROOT,
770 ty::BoundTy { var: idx, kind: ty::BoundTyKind::Anon },
771 ),
772 )
773 } else {
774t.super_fold_with(self)
775 }
776 }
777778fn fold_const(&mut self, c: ty::Const<'tcx>) -> ty::Const<'tcx> {
779if let ty::ConstKind::Infer(_) = c.kind() {
780let idx = self.idx;
781self.idx += 1;
782 ty::Const::new_placeholder(
783self.tcx,
784 ty::PlaceholderConst::new(ty::UniverseIndex::ROOT, ty::BoundConst::new(idx)),
785 )
786 } else {
787c.super_fold_with(self)
788 }
789 }
790 }
791792args.fold_with(&mut ReplaceParamAndInferWithPlaceholder { tcx, idx: ty::BoundVar::ZERO })
793}
794795/// Normalizes the predicates and checks whether they hold in an empty environment. If this
796/// returns true, then either normalize encountered an error or one of the predicates did not
797/// hold. Used when creating vtables to check for unsatisfiable methods. This should not be
798/// used during analysis.
799pub fn impossible_predicates<'tcx>(tcx: TyCtxt<'tcx>, predicates: Vec<ty::Clause<'tcx>>) -> bool {
800{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:800",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(800u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("impossible_predicates(predicates={0:?})",
predicates) as &dyn Value))])
});
} else { ; }
};debug!("impossible_predicates(predicates={:?})", predicates);
801let (infcx, param_env) = tcx802 .infer_ctxt()
803 .with_next_trait_solver(true)
804 .build_with_typing_env(ty::TypingEnv::fully_monomorphized());
805806let ocx = ObligationCtxt::new(&infcx);
807let predicates =
808ocx.normalize(&ObligationCause::dummy(), param_env, Unnormalized::new_wip(predicates));
809for predicate in predicates {
810let obligation = Obligation::new(tcx, ObligationCause::dummy(), param_env, predicate);
811 ocx.register_obligation(obligation);
812 }
813814// Use `try_evaluate_obligations` to only return impossible for true errors,
815 // and not ambiguities or overflows. Since the new trait solver forces
816 // some currently undetected overlap between `dyn Trait: Trait` built-in
817 // vs user-written impls to AMBIGUOUS, this may return ambiguity even
818 // with no infer vars. There may also be ways to encounter ambiguity due
819 // to post-mono overflow.
820let true_errors = ocx.try_evaluate_obligations();
821if !true_errors.is_empty() {
822return true;
823 }
824825false
826}
827828fn instantiate_and_check_impossible_predicates<'tcx>(
829 tcx: TyCtxt<'tcx>,
830 key: (DefId, GenericArgsRef<'tcx>),
831) -> bool {
832{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:832",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(832u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("instantiate_and_check_impossible_predicates(key={0:?})",
key) as &dyn Value))])
});
} else { ; }
};debug!("instantiate_and_check_impossible_predicates(key={:?})", key);
833834let mut predicates: Vec<_> = tcx835 .predicates_of(key.0)
836 .instantiate(tcx, key.1)
837 .predicates
838 .into_iter()
839 .map(Unnormalized::skip_norm_wip)
840 .collect();
841842// Specifically check trait fulfillment to avoid an error when trying to resolve
843 // associated items.
844if let Some(trait_def_id) = tcx.trait_of_assoc(key.0) {
845let trait_ref = ty::TraitRef::from_assoc(tcx, trait_def_id, key.1);
846predicates.push(trait_ref.upcast(tcx));
847 }
848849predicates.retain(|predicate| !predicate.has_param());
850let result = impossible_predicates(tcx, predicates);
851852{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:852",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(852u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("instantiate_and_check_impossible_predicates(key={0:?}) = {1:?}",
key, result) as &dyn Value))])
});
} else { ; }
};debug!("instantiate_and_check_impossible_predicates(key={:?}) = {:?}", key, result);
853result854}
855856/// Checks whether a trait's associated item is impossible to reference on a given impl.
857///
858/// This only considers predicates that reference the impl's generics, and not
859/// those that reference the method's generics.
860fn is_impossible_associated_item(
861 tcx: TyCtxt<'_>,
862 (impl_def_id, trait_item_def_id): (DefId, DefId),
863) -> bool {
864struct ReferencesOnlyParentGenerics<'tcx> {
865 tcx: TyCtxt<'tcx>,
866 generics: &'tcx ty::Generics,
867 trait_item_def_id: DefId,
868 }
869impl<'tcx> ty::TypeVisitor<TyCtxt<'tcx>> for ReferencesOnlyParentGenerics<'tcx> {
870type Result = ControlFlow<()>;
871fn visit_ty(&mut self, t: Ty<'tcx>) -> Self::Result {
872// If this is a parameter from the trait item's own generics, then bail
873if let ty::Param(param) = *t.kind()
874 && let param_def_id = self.generics.type_param(param, self.tcx).def_id
875 && self.tcx.parent(param_def_id) == self.trait_item_def_id
876 {
877return ControlFlow::Break(());
878 }
879t.super_visit_with(self)
880 }
881fn visit_region(&mut self, r: ty::Region<'tcx>) -> Self::Result {
882if let ty::ReEarlyParam(param) = r.kind()
883 && let param_def_id = self.generics.region_param(param, self.tcx).def_id
884 && self.tcx.parent(param_def_id) == self.trait_item_def_id
885 {
886return ControlFlow::Break(());
887 }
888 ControlFlow::Continue(())
889 }
890fn visit_const(&mut self, ct: ty::Const<'tcx>) -> Self::Result {
891if let ty::ConstKind::Param(param) = ct.kind()
892 && let param_def_id = self.generics.const_param(param, self.tcx).def_id
893 && self.tcx.parent(param_def_id) == self.trait_item_def_id
894 {
895return ControlFlow::Break(());
896 }
897ct.super_visit_with(self)
898 }
899 }
900901let generics = tcx.generics_of(trait_item_def_id);
902let predicates = tcx.predicates_of(trait_item_def_id);
903904// Be conservative in cases where we have `W<T: ?Sized>` and a method like `Self: Sized`,
905 // since that method *may* have some substitutions where the predicates hold.
906 //
907 // This replicates the logic we use in coherence.
908let infcx = tcx909 .infer_ctxt()
910 .ignoring_regions()
911 .with_next_trait_solver(true)
912 .build(TypingMode::Coherence);
913let param_env = ty::ParamEnv::empty();
914let fresh_args = infcx.fresh_args_for_item(tcx.def_span(impl_def_id), impl_def_id);
915916let impl_trait_ref =
917tcx.impl_trait_ref(impl_def_id).instantiate(tcx, fresh_args).skip_norm_wip();
918919let mut visitor = ReferencesOnlyParentGenerics { tcx, generics, trait_item_def_id };
920let predicates_for_trait = predicates.predicates.iter().filter_map(|(pred, span)| {
921pred.visit_with(&mut visitor).is_continue().then(|| {
922Obligation::new(
923tcx,
924ObligationCause::dummy_with_span(*span),
925param_env,
926 ty::EarlyBinder::bind(*pred).instantiate(tcx, impl_trait_ref.args).skip_norm_wip(),
927 )
928 })
929 });
930931let ocx = ObligationCtxt::new(&infcx);
932ocx.register_obligations(predicates_for_trait);
933 !ocx.try_evaluate_obligations().is_empty()
934}
935936pub fn provide(providers: &mut Providers) {
937 dyn_compatibility::provide(providers);
938 vtable::provide(providers);
939*providers = Providers {
940 specialization_graph_of: specialize::specialization_graph_provider,
941 specializes: specialize::specializes,
942 specialization_enabled_in: specialize::specialization_enabled_in,
943instantiate_and_check_impossible_predicates,
944is_impossible_associated_item,
945 ..*providers946 };
947}