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 implied_outlives_bounds;
13pub mod misc;
14pub mod normalize;
15pub mod outlives_bounds;
16pub mod outlives_for_liveness;
17pub mod project;
18pub mod query;
19pub mod select;
20pub mod specialize;
21mod structural_normalize;
22pub mod 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::ty::error::{ExpectedFound, TypeError};
34use rustc_middle::ty::{
35self, BottomUpFolder, Clause, GenericArgs, GenericArgsRef, Ty, TyCtxt, TypeFoldable,
36TypeFolder, TypeSuperFoldable, TypeSuperVisitable, TypeVisitable, TypeVisitableExt, TypingMode,
37Unnormalized, Upcast,
38};
39use rustc_span::Span;
40use rustc_span::def_id::DefId;
41use tracing::{debug, instrument};
4243pub use self::coherence::{
44InCrate, IsFirstInputType, OrphanCheckErr, OrphanCheckMode, OverlapResult, UncoveredTyParams,
45add_placeholder_note, orphan_check_trait_ref, overlapping_inherent_impls,
46overlapping_trait_impls,
47};
48pub use self::dyn_compatibility::{
49DynCompatibilityViolation, dyn_compatibility_violations_for_assoc_item,
50hir_ty_lowering_dyn_compatibility_violations, is_vtable_safe_method,
51};
52pub use self::engine::{FulfillmentEngine, ObligationCtxt};
53pub use self::fulfill::{FulfillmentContext, OldSolverError, PendingPredicateObligation};
54pub use self::normalize::NormalizeExt;
55pub use self::project::{normalize_inherent_projection, normalize_projection_term};
56pub use self::select::{
57EvaluationCache, EvaluationResult, IntercrateAmbiguityCause, OverflowError, SelectionCache,
58SelectionContext,
59};
60pub use self::specialize::specialization_graph::{
61FutureCompatOverlapError, FutureCompatOverlapErrorKind,
62};
63pub use self::specialize::{
64OverlapError, specialization_graph, translate_args, translate_args_with_cause,
65};
66pub use self::structural_normalize::StructurallyNormalizeExt;
67pub use self::util::{
68BoundVarReplacer, PlaceholderReplacer, elaborate, expand_trait_aliases, impl_item_is_final,
69sizedness_fast_path, supertrait_def_ids, supertraits, transitive_bounds_that_define_assoc_item,
70upcast_choices, with_replaced_escaping_bound_vars,
71};
72use crate::error_reporting::InferCtxtErrorExt;
73use crate::infer::outlives::env::OutlivesEnvironment;
74use crate::infer::{InferCtxt, TyCtxtInferExt};
75use crate::regions::InferCtxtRegionExt;
76use crate::traits::query::evaluate_obligation::InferCtxtExtas _;
7778#[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)]
79pub struct FulfillmentError<'tcx> {
80pub obligation: PredicateObligation<'tcx>,
81pub code: FulfillmentErrorCode<'tcx>,
82/// Diagnostics only: the 'root' obligation which resulted in
83 /// the failure to process `obligation`. This is the obligation
84 /// that was initially passed to `register_predicate_obligation`
85pub root_obligation: PredicateObligation<'tcx>,
86}
8788impl<'tcx> FulfillmentError<'tcx> {
89pub fn new(
90 obligation: PredicateObligation<'tcx>,
91 code: FulfillmentErrorCode<'tcx>,
92 root_obligation: PredicateObligation<'tcx>,
93 ) -> FulfillmentError<'tcx> {
94FulfillmentError { obligation, code, root_obligation }
95 }
9697pub fn is_true_error(&self) -> bool {
98match self.code {
99 FulfillmentErrorCode::Select(_)
100 | FulfillmentErrorCode::Project(_)
101 | FulfillmentErrorCode::Outlives102 | 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::Outlives => FulfillmentErrorCode::Outlives,
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::Outlives => {}
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/// An outlives constraint emitted for `-Zassumptions-on-binders` was unsatisfiable.
119Outlives,
120 Subtype(ExpectedFound<Ty<'tcx>>, TypeError<'tcx>), // always comes from a SubtypePredicate
121ConstEquate(ExpectedFound<ty::Const<'tcx>>, TypeError<'tcx>),
122 Ambiguity {
123/// Overflow is only `Some(suggest_recursion_limit)` when using the next generation
124 /// trait solver `-Znext-solver`. With the old solver overflow is eagerly handled by
125 /// emitting a fatal error instead.
126overflow: Option<bool>,
127 },
128}
129130impl<'tcx> Debugfor FulfillmentErrorCode<'tcx> {
131fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
132match *self {
133 FulfillmentErrorCode::Select(ref e) => f.write_fmt(format_args!("{0:?}", e))write!(f, "{e:?}"),
134 FulfillmentErrorCode::Project(ref e) => f.write_fmt(format_args!("{0:?}", e))write!(f, "{e:?}"),
135 FulfillmentErrorCode::Outlives => f.write_fmt(format_args!("CodeOutlivesError"))write!(f, "CodeOutlivesError"),
136 FulfillmentErrorCode::Subtype(ref a, ref b) => {
137f.write_fmt(format_args!("CodeSubtypeError({0:?}, {1:?})", a, b))write!(f, "CodeSubtypeError({a:?}, {b:?})")138 }
139 FulfillmentErrorCode::ConstEquate(ref a, ref b) => {
140f.write_fmt(format_args!("CodeConstEquateError({0:?}, {1:?})", a, b))write!(f, "CodeConstEquateError({a:?}, {b:?})")141 }
142 FulfillmentErrorCode::Ambiguity { overflow: None } => f.write_fmt(format_args!("Ambiguity"))write!(f, "Ambiguity"),
143 FulfillmentErrorCode::Ambiguity { overflow: Some(suggest_increasing_limit) } => {
144f.write_fmt(format_args!("Overflow({0})", suggest_increasing_limit))write!(f, "Overflow({suggest_increasing_limit})")145 }
146 FulfillmentErrorCode::Cycle(ref cycle) => f.write_fmt(format_args!("Cycle({0:?})", cycle))write!(f, "Cycle({cycle:?})"),
147 }
148 }
149}
150151/// Whether to skip the leak check, as part of a future compatibility warning step.
152///
153/// The "default" for skip-leak-check corresponds to the current
154/// behavior (do not skip the leak check) -- not the behavior we are
155/// transitioning into.
156#[derive(#[automatically_derived]
impl ::core::marker::Copy for SkipLeakCheck { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for SkipLeakCheck { }
#[automatically_derived]
impl ::core::clone::Clone for SkipLeakCheck {
#[inline]
fn clone(&self) -> SkipLeakCheck { *self }
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for SkipLeakCheck { }
#[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)]
157pub enum SkipLeakCheck {
158 Yes,
159#[default]
160No,
161}
162163impl SkipLeakCheck {
164fn is_yes(self) -> bool {
165self == SkipLeakCheck::Yes166 }
167}
168169/// The mode that trait queries run in.
170#[derive(#[automatically_derived]
impl ::core::marker::Copy for TraitQueryMode { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for TraitQueryMode { }
#[automatically_derived]
impl ::core::clone::Clone for TraitQueryMode {
#[inline]
fn clone(&self) -> TraitQueryMode { *self }
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for TraitQueryMode { }
#[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)]
171pub enum TraitQueryMode {
172/// Standard/un-canonicalized queries get accurate
173 /// spans etc. passed in and hence can do reasonable
174 /// error reporting on their own.
175Standard,
176/// Canonical queries get dummy spans and hence
177 /// must generally propagate errors to
178 /// pre-canonicalization callsites.
179Canonical,
180}
181182/// Creates predicate obligations from the generic bounds.
183{}
#[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("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(183u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("generic_bounds")
}> =
::tracing::__macro_support::FieldName::new("generic_bounds");
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(&generic_bounds)
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: _ = 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_clause(clause).as_predicate(),
})
}
}
}#[instrument(level = "debug", skip(cause, param_env, normalize_clause))]184pub fn predicates_for_generics<'tcx>(
185 cause: impl Fn(usize, Span) -> ObligationCause<'tcx>,
186mut normalize_clause: impl FnMut(Unnormalized<'tcx, Clause<'tcx>>) -> Clause<'tcx>,
187 param_env: ty::ParamEnv<'tcx>,
188 generic_bounds: ty::InstantiatedClauses<'tcx>,
189) -> impl Iterator<Item = PredicateObligation<'tcx>> {
190 generic_bounds.into_iter().enumerate().map(move |(idx, (clause, span))| Obligation {
191 cause: cause(idx, span),
192 recursion_depth: 0,
193 param_env,
194 predicate: normalize_clause(clause).as_predicate(),
195 })
196}
197198/// Determines whether the type `ty` is known to meet `bound` and
199/// returns true if so. Returns false if `ty` either does not meet
200/// `bound` or is not known to meet bound (note that this is
201/// conservative towards *no impl*, which is the opposite of the
202/// `evaluate` methods).
203pub fn type_known_to_meet_bound_modulo_regions<'tcx>(
204 infcx: &InferCtxt<'tcx>,
205 param_env: ty::ParamEnv<'tcx>,
206 ty: Ty<'tcx>,
207 def_id: DefId,
208) -> bool {
209let trait_ref = ty::TraitRef::new(infcx.tcx, def_id, [ty]);
210pred_known_to_hold_modulo_regions(infcx, param_env, trait_ref)
211}
212213/// FIXME(@lcnr): this function doesn't seem right and shouldn't exist?
214///
215/// Ping me on zulip if you want to use this method and need help with finding
216/// an appropriate replacement.
217{}
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("pred_known_to_hold_modulo_regions",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(217u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&[],
::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,
&{ meta.fields().value_set_all(&[]) })
} 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: bool = loop {};
return __tracing_attr_fake_return;
}
{
let obligation =
Obligation::new(infcx.tcx, ObligationCause::dummy(),
param_env, pred);
let result =
infcx.evaluate_obligation_no_overflow(&obligation);
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs:226",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(226u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::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()
}], ::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))])
});
} else { ; }
};
if result.must_apply_modulo_regions() {
true
} else if result.may_apply() && !infcx.next_trait_solver() {
let goal =
infcx.resolve_vars_if_possible((obligation.predicate,
obligation.param_env));
infcx.probe(|_|
{
let ocx = ObligationCtxt::new(infcx);
ocx.register_obligation(obligation);
let errors = ocx.evaluate_obligations_error_on_ambiguity();
match errors {
TraitErrors::NoErrors =>
infcx.resolve_vars_if_possible(goal) == goal,
TraitErrors::HasErrors(errors) => {
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs:246",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(246u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("errors")
}> =
::tracing::__macro_support::FieldName::new("errors");
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(&errors)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};
false
}
}
})
} else { false }
}
})();
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs:217",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(217u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::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(infcx, param_env, pred), ret)]218fn pred_known_to_hold_modulo_regions<'tcx>(
219 infcx: &InferCtxt<'tcx>,
220 param_env: ty::ParamEnv<'tcx>,
221 pred: impl Upcast<TyCtxt<'tcx>, ty::Predicate<'tcx>>,
222) -> bool {
223let obligation = Obligation::new(infcx.tcx, ObligationCause::dummy(), param_env, pred);
224225let result = infcx.evaluate_obligation_no_overflow(&obligation);
226debug!(?result);
227228if result.must_apply_modulo_regions() {
229true
230} else if result.may_apply() && !infcx.next_trait_solver() {
231// Sometimes obligations are ambiguous because the recursive evaluator
232 // is not smart enough, so we fall back to fulfillment when we're not certain
233 // that an obligation holds or not. Even still, we must make sure that
234 // the we do no inference in the process of checking this obligation.
235let goal = infcx.resolve_vars_if_possible((obligation.predicate, obligation.param_env));
236 infcx.probe(|_| {
237let ocx = ObligationCtxt::new(infcx);
238 ocx.register_obligation(obligation);
239240let errors = ocx.evaluate_obligations_error_on_ambiguity();
241match errors {
242// Only known to hold if we did no inference.
243TraitErrors::NoErrors => infcx.resolve_vars_if_possible(goal) == goal,
244245 TraitErrors::HasErrors(errors) => {
246debug!(?errors);
247false
248}
249 }
250 })
251 } else {
252false
253}
254}
255256fn set_projection_term_to_non_rigid<'tcx>(
257 tcx: TyCtxt<'tcx>,
258 predicates: impl IntoIterator<Item = ty::Clause<'tcx>>,
259) -> impl Iterator<Item = ty::Clause<'tcx>> {
260predicates.into_iter().map(move |clause| {
261if let ty::ClauseKind::Projection(projection_pred) = clause.kind().skip_binder() {
262clause263 .kind()
264 .rebind(ty::ProjectionClause {
265 projection_term: projection_pred.projection_term,
266 term: ty::set_aliases_to_non_rigid(tcx, projection_pred.term).skip_norm_wip(),
267 })
268 .upcast(tcx)
269 } else {
270clause271 }
272 })
273}
274275enum ReplaceRegions {
276 Yes,
277 No,
278}
279280fn replace_infer_and_non_rigid_alias_with_error<'tcx, T>(
281 infcx: &InferCtxt<'tcx>,
282 value: T,
283 guar: ErrorGuaranteed,
284 replace_regions: ReplaceRegions,
285) -> T
286where
287T: TypeFoldable<TyCtxt<'tcx>>,
288{
289let tcx = infcx.tcx;
290value.fold_with(&mut BottomUpFolder {
291tcx,
292 ty_op: |ty| {
293let ty = infcx.shallow_resolve(ty);
294match ty.kind() {
295 ty::Infer(ty::TyVar(_) | ty::IntVar(_) | ty::FloatVar(_)) => {
296Ty::new_error(tcx, guar)
297 }
298 ty::Alias(ty::IsRigid::No, _) if tcx.next_trait_solver_globally() => {
299Ty::new_error(tcx, guar)
300 }
301_ => ty,
302 }
303 },
304 lt_op: |lt| match replace_regions {
305// We can't resolve regions using lexical resolution here since
306 // that's private. It probably doesn't matter since we already
307 // got more severe error.
308ReplaceRegions::Yes => match lt.kind() {
309 ty::ReVar(_) => ty::Region::new_error(tcx, guar),
310_ => lt,
311 },
312 ReplaceRegions::No => lt,
313 },
314 ct_op: |ct| {
315let ct = infcx.shallow_resolve_const(ct);
316match ct.kind() {
317 ty::ConstKind::Infer(ty::InferConst::Var(_)) => ty::Const::new_error(tcx, guar),
318 ty::ConstKind::Alias(ty::IsRigid::No, _) if tcx.next_trait_solver_globally() => {
319 ty::Const::new_error(tcx, guar)
320 }
321_ => ct,
322 }
323 },
324 })
325}
326327{}
#[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_clauses",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(327u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("cause")
}> =
::tracing::__macro_support::FieldName::new("cause");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("clauses")
}> =
::tracing::__macro_support::FieldName::new("clauses");
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(&cause)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&clauses)
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: Vec<ty::Clause<'tcx>> = loop {};
return __tracing_attr_fake_return;
}
{
let infcx =
tcx.infer_ctxt().ignoring_regions().build(TypingMode::non_body_analysis());
let ocx = ObligationCtxt::new_with_diagnostics(&infcx);
let elaborated_env =
if tcx.next_trait_solver_globally() &&
!tcx.disable_param_env_normalization_hack() {
let elaborated_env =
ty::set_type_aliases_to_rigid(tcx, elaborated_env);
let elaborated_env =
set_projection_term_to_non_rigid(tcx,
elaborated_env.caller_bounds());
ty::ParamEnv::new(tcx, elaborated_env)
} else { elaborated_env };
let clauses =
ocx.normalize(&cause, elaborated_env,
Unnormalized::new_wip(clauses));
let clauses =
if tcx.next_trait_solver_globally() {
if !tcx.disable_param_env_normalization_hack() {
let clauses: Vec<_> =
set_projection_term_to_non_rigid(tcx, clauses).collect();
ty::set_opaques_to_non_rigid(tcx, clauses).skip_norm_wip()
} else {
ty::set_aliases_to_non_rigid(tcx, clauses).skip_norm_wip()
}
} else { clauses };
let errors = ocx.evaluate_obligations_error_on_ambiguity();
let clauses =
if let TraitErrors::HasErrors(errors) = errors {
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs:382",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(382u32),
::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};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("do_normalize_clauses: failed to normalize clauses")
as &dyn ::tracing::field::Value))])
});
} else { ; }
};
let guar =
infcx.err_ctxt().report_fulfillment_errors(errors);
replace_infer_and_non_rigid_alias_with_error(&infcx,
clauses, guar, ReplaceRegions::No)
} else { clauses };
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs:389",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(389u32),
::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};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("do_normalize_clauses: normalized clauses = {0:?}",
clauses) as &dyn ::tracing::field::Value))])
});
} else { ; }
};
let normalized_env =
ty::ParamEnv::new(tcx, clauses.iter().copied());
let _errors =
infcx.resolve_regions(cause.body_def_id, normalized_env, []);
match infcx.fully_resolve(clauses.clone()) {
Ok(clauses) => clauses,
Err(fixup_err) => {
let guar =
tcx.dcx().span_delayed_bug(cause.span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("inference variables in normalized parameter environment: {0}",
fixup_err))
}));
replace_infer_and_non_rigid_alias_with_error(&infcx,
clauses, guar, ReplaceRegions::Yes)
}
}
}
}
}#[instrument(level = "debug", skip(tcx, elaborated_env))]328fn do_normalize_clauses<'tcx>(
329 tcx: TyCtxt<'tcx>,
330 cause: ObligationCause<'tcx>,
331 elaborated_env: ty::ParamEnv<'tcx>,
332 clauses: Vec<ty::Clause<'tcx>>,
333) -> Vec<ty::Clause<'tcx>> {
334// FIXME. We should really... do something with these region
335 // obligations. But this call just continues the older
336 // behavior (i.e., doesn't cause any new bugs), and it would
337 // take some further refactoring to actually solve them. In
338 // particular, we would have to handle implied bounds
339 // properly, and that code is currently largely confined to
340 // regionck (though I made some efforts to extract it
341 // out). -nmatsakis
342 //
343 // @arielby: In any case, these obligations are checked
344 // by wfcheck anyway, so I'm not sure we have to check
345 // them here too, and we will remove this function when
346 // we move over to lazy normalization *anyway*.
347let infcx = tcx.infer_ctxt().ignoring_regions().build(TypingMode::non_body_analysis());
348let ocx = ObligationCtxt::new_with_diagnostics(&infcx);
349// FIXME: `elaborated_env` is not really rigid. We do this to be
350 // consistent with the old solver.
351let elaborated_env = if tcx.next_trait_solver_globally()
352 && !tcx.disable_param_env_normalization_hack()
353 {
354let elaborated_env = ty::set_type_aliases_to_rigid(tcx, elaborated_env);
355let elaborated_env = set_projection_term_to_non_rigid(tcx, elaborated_env.caller_bounds());
356 ty::ParamEnv::new(tcx, elaborated_env)
357 } else {
358 elaborated_env
359 };
360let clauses = ocx.normalize(&cause, elaborated_env, Unnormalized::new_wip(clauses));
361let clauses = if tcx.next_trait_solver_globally() {
362if !tcx.disable_param_env_normalization_hack() {
363let clauses: Vec<_> = set_projection_term_to_non_rigid(tcx, clauses).collect();
364// FIXME(type_alias_impl_trait): opaque types in param env might be
365 // in defining scope but we're using non body analysis here.
366 // So the rigidness marker is wrong.
367ty::set_opaques_to_non_rigid(tcx, clauses).skip_norm_wip()
368 } else {
369// Param env is used in different typing modes but itself
370 // is normalized in `non_body_analysis`.
371 // That not only makes the rigidness of opaques types wrong,
372 // other aliases can be indirectly affected as well.
373 // So we conservatively set everything to be non-rigid.
374ty::set_aliases_to_non_rigid(tcx, clauses).skip_norm_wip()
375 }
376 } else {
377 clauses
378 };
379380let errors = ocx.evaluate_obligations_error_on_ambiguity();
381let clauses = if let TraitErrors::HasErrors(errors) = errors {
382debug!("do_normalize_clauses: failed to normalize clauses");
383let guar = infcx.err_ctxt().report_fulfillment_errors(errors);
384 replace_infer_and_non_rigid_alias_with_error(&infcx, clauses, guar, ReplaceRegions::No)
385 } else {
386 clauses
387 };
388389debug!("do_normalize_clauses: normalized clauses = {:?}", clauses);
390391// FIXME: It's very weird that we ignore region obligations but apparently
392 // still need to use `resolve_regions` as we need the resolved regions in
393 // the normalized clauses.
394 //
395 // FIXME(-Zhigher-ranked-assumptions): We're ignoring region errors for now.
396 // There're placeholder constraints `leaking` out. This is a hack to work around
397 // the fact that we don't support placeholder assumptions right now and is necessary
398 // for `compare_method_clause_entailment`. We should remove this once we have proper
399 // support for implied bounds on binders.
400 //
401 // This ignoring is required by trait-system-refactor-initiative#166. The new solver encounters
402 // this more frequently as we entirely ignore outlives clauses with the old solver.
403 //
404 // FIXME: We should avoid interning clauses both here and at the
405 // caller sites. We should also avoid cloning if possible.
406let normalized_env = ty::ParamEnv::new(tcx, clauses.iter().copied());
407let _errors = infcx.resolve_regions(cause.body_def_id, normalized_env, []);
408match infcx.fully_resolve(clauses.clone()) {
409Ok(clauses) => clauses,
410Err(fixup_err) => {
411// The first folder only replaces infers from normalization failure. We might not have
412 // normalization failure and have unconstrained ty/const vars from ill-formed impls.
413 // See `tests/ui/traits/normalize/self-referential-param-env-normalization.rs`.
414 //
415 // We delay a bug here instead of immediately ICEing and let type checking report the
416 // actual user-facing errors.
417let guar = tcx.dcx().span_delayed_bug(
418 cause.span,
419format!("inference variables in normalized parameter environment: {fixup_err}"),
420 );
421422// This is slightly wrong as we replace opaques with errors.
423 //
424 // We still need to replace regions because `fully_resolve` eagerly returns `Err` if
425 // it encounters unconstrained ty/const var. Thus region vars might not get replaced.
426replace_infer_and_non_rigid_alias_with_error(&infcx, clauses, guar, ReplaceRegions::Yes)
427 }
428 }
429}
430431// FIXME: this is gonna need to be removed ...
432/// Normalizes the parameter environment, reporting errors if they occur.
433{}
#[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("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(433u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("unnormalized_env")
}> =
::tracing::__macro_support::FieldName::new("unnormalized_env");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("cause")
}> =
::tracing::__macro_support::FieldName::new("cause");
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(&unnormalized_env)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&cause)
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::ParamEnv<'tcx> = loop {};
return __tracing_attr_fake_return;
}
{
let mut clauses: Vec<_> =
util::elaborate(tcx,
unnormalized_env.caller_bounds().into_iter().map(|clause|
{
if tcx.features().generic_const_exprs() ||
tcx.next_trait_solver_globally() {
return clause;
}
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::Alias(_, alias_const) = c.kind() &&
#[allow(non_exhaustive_omitted_patterns)] match alias_const.kind
{
ty::AliasConstKind::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
}
}
clause.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 /rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs:526",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(526u32),
::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};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: elaborated-clauses={0:?}",
clauses) as &dyn ::tracing::field::Value))])
});
} else { ; }
};
let elaborated_env =
ty::ParamEnv::new(tcx, clauses.iter().copied());
if !elaborated_env.has_aliases() { return elaborated_env; }
let outlives_clauses: Vec<_> =
clauses.extract_if(..,
|clause|
{
#[allow(non_exhaustive_omitted_patterns)]
match clause.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 /rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs:557",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(557u32),
::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};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: clauses=(non-outlives={0:?}, outlives={1:?})",
clauses, outlives_clauses) as
&dyn ::tracing::field::Value))])
});
} else { ; }
};
let non_outlives_clauses =
do_normalize_clauses(tcx, cause.clone(), elaborated_env,
clauses);
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs:563",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(563u32),
::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};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: non-outlives clauses={0:?}",
non_outlives_clauses) as &dyn ::tracing::field::Value))])
});
} else { ; }
};
let outlives_env =
non_outlives_clauses.iter().chain(&outlives_clauses).cloned();
let outlives_env = ty::ParamEnv::new(tcx, outlives_env);
let outlives_clauses =
do_normalize_clauses(tcx, cause, outlives_env,
outlives_clauses);
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs:571",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(571u32),
::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};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: outlives clauses={0:?}",
outlives_clauses) as &dyn ::tracing::field::Value))])
});
} else { ; }
};
let mut clauses = non_outlives_clauses;
clauses.extend(outlives_clauses);
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs:575",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(575u32),
::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};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: final clauses={0:?}",
clauses) as &dyn ::tracing::field::Value))])
});
} else { ; }
};
ty::ParamEnv::new(tcx, clauses)
}
}
}#[instrument(level = "debug", skip(tcx))]434pub fn normalize_param_env_or_error<'tcx>(
435 tcx: TyCtxt<'tcx>,
436 unnormalized_env: ty::ParamEnv<'tcx>,
437 cause: ObligationCause<'tcx>,
438) -> ty::ParamEnv<'tcx> {
439// I'm not wild about reporting errors here; I'd prefer to
440 // have the errors get reported at a defined place (e.g.,
441 // during typeck). Instead I have all parameter
442 // environments, in effect, going through this function
443 // and hence potentially reporting errors. This ensures of
444 // course that we never forget to normalize (the
445 // alternative seemed like it would involve a lot of
446 // manual invocations of this fn -- and then we'd have to
447 // deal with the errors at each of those sites).
448 //
449 // In any case, in practice, typeck constructs all the
450 // parameter environments once for every fn as it goes,
451 // and errors will get reported then; so outside of type inference we
452 // can be sure that no errors should occur.
453let mut clauses: Vec<_> = util::elaborate(
454 tcx,
455 unnormalized_env.caller_bounds().into_iter().map(|clause| {
456if tcx.features().generic_const_exprs() || tcx.next_trait_solver_globally() {
457return clause;
458 }
459460struct ConstNormalizer<'tcx>(TyCtxt<'tcx>);
461462impl<'tcx> TypeFolder<TyCtxt<'tcx>> for ConstNormalizer<'tcx> {
463fn cx(&self) -> TyCtxt<'tcx> {
464self.0
465}
466467fn fold_const(&mut self, c: ty::Const<'tcx>) -> ty::Const<'tcx> {
468// FIXME(return_type_notation): track binders in this normalizer, as
469 // `ty::Const::normalize` can only work with properly preserved binders.
470471if c.has_escaping_bound_vars() {
472return ty::Const::new_misc_error(self.0);
473 }
474475// While it is pretty sus to be evaluating things with an empty param env, it
476 // should actually be okay since without `feature(generic_const_exprs)` the only
477 // const arguments that have a non-empty param env are array repeat counts. These
478 // do not appear in the type system though.
479if let ty::ConstKind::Alias(_, alias_const) = c.kind()
480 && matches!(alias_const.kind, ty::AliasConstKind::Anon { .. })
481 {
482let infcx = self.0.infer_ctxt().build(TypingMode::non_body_analysis());
483let c = evaluate_const(&infcx, c, ty::ParamEnv::empty());
484// We should never wind up with any `infcx` local state when normalizing anon consts
485 // under min const generics.
486assert!(!c.has_infer() && !c.has_placeholders());
487return c;
488 }
489490 c
491 }
492 }
493494// This whole normalization step is a hack to work around the fact that
495 // `normalize_param_env_or_error` is fundamentally broken from using an
496 // unnormalized param env with a trait solver that expects the param env
497 // to be normalized.
498 //
499 // When normalizing the param env we can end up evaluating obligations
500 // that have been normalized but can only be proven via a where clause
501 // which is still in its unnormalized form. example:
502 //
503 // Attempting to prove `T: Trait<<u8 as Identity>::Assoc>` in a param env
504 // with a `T: Trait<<u8 as Identity>::Assoc>` where clause will fail because
505 // we first normalize obligations before proving them so we end up proving
506 // `T: Trait<u8>`. Since lazy normalization is not implemented equating `u8`
507 // with `<u8 as Identity>::Assoc` fails outright so we incorrectly believe that
508 // we cannot prove `T: Trait<u8>`.
509 //
510 // The same thing is true for const generics- attempting to prove
511 // `T: Trait<ConstKind::Alias(...)>` with the same thing as a where clauses
512 // will fail. After normalization we may be attempting to prove `T: Trait<4>` with
513 // the unnormalized where clause `T: Trait<ConstKind::Alias(...)>`. In order
514 // for the obligation to hold `4` must be equal to `ConstKind::Alias(...)`
515 // but as we do not have lazy norm implemented, equating the two consts fails outright.
516 //
517 // Ideally we would not normalize consts here at all but it is required for backwards
518 // compatibility. Eventually when lazy norm is implemented this can just be removed.
519 // We do not normalize types here as there is no backwards compatibility requirement
520 // for us to do so.
521clause.fold_with(&mut ConstNormalizer(tcx))
522 }),
523 )
524 .collect();
525526debug!("normalize_param_env_or_error: elaborated-clauses={:?}", clauses);
527528let elaborated_env = ty::ParamEnv::new(tcx, clauses.iter().copied());
529if !elaborated_env.has_aliases() {
530return elaborated_env;
531 }
532533// HACK: we are trying to normalize the param-env inside *itself*. The problem is that
534 // normalization expects its param-env to be already normalized, which means we have
535 // a circularity.
536 //
537 // The way we handle this is by normalizing the param-env inside an unnormalized version
538 // of the param-env, which means that if the param-env contains unnormalized projections,
539 // we'll have some normalization failures. This is unfortunate.
540 //
541 // Lazy normalization would basically handle this by treating just the
542 // normalizing-a-trait-ref-requires-itself cycles as evaluation failures.
543 //
544 // Inferred outlives bounds can create a lot of `TypeOutlives` predicates for associated
545 // types, so to make the situation less bad, we normalize all the predicates *but*
546 // the `TypeOutlives` predicates first inside the unnormalized parameter environment, and
547 // then we normalize the `TypeOutlives` bounds inside the normalized parameter environment.
548 //
549 // This works fairly well because trait matching does not actually care about param-env
550 // TypeOutlives clauses - these are normally used by regionck.
551let outlives_clauses: Vec<_> = clauses
552 .extract_if(.., |clause| {
553matches!(clause.kind().skip_binder(), ty::ClauseKind::TypeOutlives(..))
554 })
555 .collect();
556557debug!(
558"normalize_param_env_or_error: clauses=(non-outlives={:?}, outlives={:?})",
559 clauses, outlives_clauses
560 );
561let non_outlives_clauses = do_normalize_clauses(tcx, cause.clone(), elaborated_env, clauses);
562563debug!("normalize_param_env_or_error: non-outlives clauses={:?}", non_outlives_clauses);
564565// Not sure whether it is better to include the unnormalized TypeOutlives clauses
566 // here. I believe they should not matter, because we are ignoring TypeOutlives param-env
567 // clauses here anyway. Keeping them here anyway because it seems safer.
568let outlives_env = non_outlives_clauses.iter().chain(&outlives_clauses).cloned();
569let outlives_env = ty::ParamEnv::new(tcx, outlives_env);
570let outlives_clauses = do_normalize_clauses(tcx, cause, outlives_env, outlives_clauses);
571debug!("normalize_param_env_or_error: outlives clauses={:?}", outlives_clauses);
572573let mut clauses = non_outlives_clauses;
574 clauses.extend(outlives_clauses);
575debug!("normalize_param_env_or_error: final clauses={:?}", clauses);
576 ty::ParamEnv::new(tcx, clauses)
577}
578579#[derive(#[automatically_derived]
impl<E: ::core::fmt::Debug> ::core::fmt::Debug for EvaluateConstErr<E> {
#[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),
EvaluateConstErr::FailedNormalization(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"FailedNormalization", &__self_0),
}
}
}Debug)]
580pub enum EvaluateConstErr<E> {
581/// The constant being evaluated was either a generic parameter or inference variable, *or*,
582 /// some alias const with either generic parameters or inference variables in its
583 /// generic arguments.
584HasGenericsOrInfers,
585/// The type this constant evaluated to is not valid for use in const generics. This should
586 /// always result in an error when checking the constant is correctly typed for the parameter
587 /// it is an argument to, so a bug is delayed when encountering this.
588InvalidConstParamTy(ErrorGuaranteed),
589/// CTFE failed to evaluate the constant in some unrecoverable way (e.g. encountered a `panic!`).
590 /// This is also used when the constant was already tainted by error.
591EvaluationFailure(ErrorGuaranteed),
592 FailedNormalization(E),
593}
594595// FIXME(BoxyUwU): Private this once we `generic_const_exprs` isn't doing its own normalization routine
596// FIXME(generic_const_exprs): Consider accepting a `ty::AliasConst` when we are not rolling our own
597// normalization scheme
598/// Evaluates a type system constant returning a `ConstKind::Error` in cases where CTFE failed and
599/// returning the passed in constant if it was not fully concrete (i.e. depended on generic parameters
600/// or inference variables)
601///
602/// You should not call this function unless you are implementing normalization itself. Prefer to use
603/// `normalize_erasing_regions` or the `normalize` functions on `ObligationCtxt`/`FnCtxt`/`InferCtxt`.
604pub fn evaluate_const<'tcx>(
605 infcx: &InferCtxt<'tcx>,
606 ct: ty::Const<'tcx>,
607 param_env: ty::ParamEnv<'tcx>,
608) -> ty::Const<'tcx> {
609match try_evaluate_const(infcx, ct, param_env, |v| Ok::<_, !>(v.skip_norm_wip())) {
610Ok(ct) => ct,
611Err(EvaluateConstErr::EvaluationFailure(e) | EvaluateConstErr::InvalidConstParamTy(e)) => {
612 ty::Const::new_error(infcx.tcx, e)
613 }
614Err(EvaluateConstErr::HasGenericsOrInfers) => ct,
615 }
616}
617618// FIXME(BoxyUwU): Private this once we `generic_const_exprs` isn't doing its own normalization routine
619// FIXME(generic_const_exprs): Consider accepting a `ty::AliasConst` when we are not rolling our own
620// normalization scheme
621/// Evaluates a type system constant making sure to not allow constants that depend on generic parameters
622/// or inference variables to succeed in evaluating.
623///
624/// You should not call this function unless you are implementing normalization itself. Prefer to use
625/// `normalize_erasing_regions` or the `normalize` functions on `ObligationCtxt`/`FnCtxt`/`InferCtxt`.
626{}
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("try_evaluate_const",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(626u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::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()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("param_env")
}> =
::tracing::__macro_support::FieldName::new("param_env");
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)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(¶m_env)
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:
Result<ty::Const<'tcx>, EvaluateConstErr<E>> = loop {};
return __tracing_attr_fake_return;
}
{
let tcx = infcx.tcx;
let ct = infcx.resolve_vars_if_possible(ct);
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs:635",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(635u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::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::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(&ct)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};
match ct.kind() {
ty::ConstKind::Value(..) => Ok(ct),
ty::ConstKind::Error(e) =>
Err(EvaluateConstErr::EvaluationFailure(e)),
ty::ConstKind::Param(_) | ty::ConstKind::Infer(_) |
ty::ConstKind::Bound(_, _) | ty::ConstKind::Placeholder(_) |
ty::ConstKind::Expr(_) =>
Err(EvaluateConstErr::HasGenericsOrInfers),
ty::ConstKind::Alias(_, alias_const) => {
let opt_anon_const_kind =
match alias_const.kind {
ty::AliasConstKind::Anon { def_id } =>
Some((def_id, tcx.anon_const_kind(def_id))),
_ => None,
};
let (args, typing_env) =
match opt_anon_const_kind {
Some((def_id, ty::AnonConstKind::GCE)) => {
if alias_const.has_non_region_infer() ||
alias_const.has_non_region_param() {
match tcx.thir_abstract_const(def_id) {
Ok(Some(ct)) => {
let ct =
tcx.expand_abstract_consts(ct.instantiate(tcx,
alias_const.args).skip_norm_wip());
if let Err(e) = ct.error_reported() {
return Err(EvaluateConstErr::EvaluationFailure(e));
} else if ct.has_non_region_infer() ||
ct.has_non_region_param() {
return Err(EvaluateConstErr::HasGenericsOrInfers);
} else {
let args =
replace_param_and_infer_args_with_placeholder(tcx,
alias_const.args);
let typing_env =
infcx.typing_env(tcx.erase_and_anonymize_regions(param_env)).with_post_analysis_normalized(tcx);
(args, typing_env)
}
}
Err(_) | Ok(None) => {
let args = GenericArgs::identity_for_item(tcx, def_id);
let typing_env = ty::TypingEnv::post_analysis(tcx, def_id);
(args, typing_env)
}
}
} else {
let typing_env =
infcx.typing_env(tcx.erase_and_anonymize_regions(param_env)).with_post_analysis_normalized(tcx);
(alias_const.args, typing_env)
}
}
Some((def_id, ty::AnonConstKind::RepeatExprCount)) => {
if alias_const.has_non_region_infer() {
tcx.dcx().delayed_bug("AnonConst with infer args but no error reported");
}
let args = GenericArgs::identity_for_item(tcx, def_id);
let typing_env = ty::TypingEnv::post_analysis(tcx, def_id);
(args, typing_env)
}
Some((_,
ty::AnonConstKind::MCG |
ty::AnonConstKind::NonTypeSystemAnon |
ty::AnonConstKind::NonTypeSystemInline)) | None => {
if alias_const.args.has_non_region_param() ||
alias_const.args.has_non_region_infer() ||
alias_const.args.has_non_region_placeholders() {
return Err(EvaluateConstErr::HasGenericsOrInfers);
}
let typing_env = ty::TypingEnv::fully_monomorphized();
(alias_const.args, typing_env)
}
};
let alias_const =
ty::AliasConst::new(tcx, alias_const.kind, args);
let erased_alias_const =
tcx.erase_and_anonymize_regions(alias_const);
use rustc_middle::mir::interpret::ErrorHandled;
let span = alias_const.kind.def_span(tcx);
match tcx.const_eval_resolve_for_typeck(typing_env,
erased_alias_const, span) {
Ok(Ok(val)) => {
let ty =
normalize_ty(alias_const.type_of(tcx)).map_err(EvaluateConstErr::FailedNormalization)?;
Ok(ty::Const::new_value(tcx, val, ty))
}
Ok(Err(_)) => {
let e =
tcx.dcx().delayed_bug("Type system constant with non valtree'able type evaluated but no error emitted");
Err(EvaluateConstErr::InvalidConstParamTy(e))
}
Err(ErrorHandled::Reported(info, _)) => {
Err(EvaluateConstErr::EvaluationFailure(info.into()))
}
Err(ErrorHandled::TooGeneric(_)) =>
Err(EvaluateConstErr::HasGenericsOrInfers),
}
}
}
}
})();
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs:626",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(626u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::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(infcx, normalize_ty), ret)]627pub fn try_evaluate_const<'tcx, E: Debug>(
628 infcx: &InferCtxt<'tcx>,
629 ct: ty::Const<'tcx>,
630 param_env: ty::ParamEnv<'tcx>,
631 normalize_ty: impl FnOnce(Unnormalized<'tcx, Ty<'tcx>>) -> Result<Ty<'tcx>, E>,
632) -> Result<ty::Const<'tcx>, EvaluateConstErr<E>> {
633let tcx = infcx.tcx;
634let ct = infcx.resolve_vars_if_possible(ct);
635debug!(?ct);
636637match ct.kind() {
638 ty::ConstKind::Value(..) => Ok(ct),
639 ty::ConstKind::Error(e) => Err(EvaluateConstErr::EvaluationFailure(e)),
640 ty::ConstKind::Param(_)
641 | ty::ConstKind::Infer(_)
642 | ty::ConstKind::Bound(_, _)
643 | ty::ConstKind::Placeholder(_)
644 | ty::ConstKind::Expr(_) => Err(EvaluateConstErr::HasGenericsOrInfers),
645 ty::ConstKind::Alias(_, alias_const) => {
646let opt_anon_const_kind = match alias_const.kind {
647 ty::AliasConstKind::Anon { def_id } => Some((def_id, tcx.anon_const_kind(def_id))),
648_ => None,
649 };
650651// Postpone evaluation of constants that depend on generic parameters or
652 // inference variables.
653 //
654 // We use `TypingMode::PostAnalysis` here which is not *technically* correct
655 // to be revealing opaque types here as borrowcheck has not run yet. However,
656 // CTFE itself uses `TypingMode::PostAnalysis` unconditionally even during
657 // typeck and not doing so has a lot of (undesirable) fallout (#101478, #119821).
658 // As a result we always use a revealed env when resolving the instance to evaluate.
659 //
660 // FIXME: `const_eval_resolve_for_typeck` should probably just modify the env itself
661 // instead of having this logic here
662let (args, typing_env) = match opt_anon_const_kind {
663// We handle `generic_const_exprs` separately as reasonable ways of handling constants in the type system
664 // completely fall apart under `generic_const_exprs` and makes this whole function Really hard to reason
665 // about if you have to consider gce whatsoever.
666Some((def_id, ty::AnonConstKind::GCE)) => {
667if alias_const.has_non_region_infer() || alias_const.has_non_region_param() {
668// `feature(generic_const_exprs)` causes anon consts to inherit all parent generics. This can cause
669 // inference variables and generic parameters to show up in `ty::Const` even though the anon const
670 // does not actually make use of them. We handle this case specially and attempt to evaluate anyway.
671match tcx.thir_abstract_const(def_id) {
672Ok(Some(ct)) => {
673let ct = tcx.expand_abstract_consts(
674 ct.instantiate(tcx, alias_const.args).skip_norm_wip(),
675 );
676if let Err(e) = ct.error_reported() {
677return Err(EvaluateConstErr::EvaluationFailure(e));
678 } else if ct.has_non_region_infer() || ct.has_non_region_param() {
679// If the anon const *does* actually use generic parameters or inference variables from
680 // the generic arguments provided for it, then we should *not* attempt to evaluate it.
681return Err(EvaluateConstErr::HasGenericsOrInfers);
682 } else {
683let args = replace_param_and_infer_args_with_placeholder(
684 tcx,
685 alias_const.args,
686 );
687let typing_env = infcx
688 .typing_env(tcx.erase_and_anonymize_regions(param_env))
689 .with_post_analysis_normalized(tcx);
690 (args, typing_env)
691 }
692 }
693Err(_) | Ok(None) => {
694let args = GenericArgs::identity_for_item(tcx, def_id);
695let typing_env = ty::TypingEnv::post_analysis(tcx, def_id);
696 (args, typing_env)
697 }
698 }
699 } else {
700let typing_env = infcx
701 .typing_env(tcx.erase_and_anonymize_regions(param_env))
702 .with_post_analysis_normalized(tcx);
703 (alias_const.args, typing_env)
704 }
705 }
706Some((def_id, ty::AnonConstKind::RepeatExprCount)) => {
707if alias_const.has_non_region_infer() {
708// Diagnostics will sometimes replace the identity args of anon consts in
709 // array repeat expr counts with inference variables so we have to handle this
710 // even though it is not something we should ever actually encounter.
711 //
712 // Array repeat expr counts are allowed to syntactically use generic parameters
713 // but must not actually depend on them in order to evalaute successfully. This means
714 // that it is actually fine to evalaute them in their own environment rather than with
715 // the actually provided generic arguments.
716tcx.dcx().delayed_bug("AnonConst with infer args but no error reported");
717 }
718719// The generic args of repeat expr counts under `min_const_generics` are not supposed to
720 // affect evaluation of the constant as this would make it a "truly" generic const arg.
721 // To prevent this we discard all the generic arguments and evalaute with identity args
722 // and in its own environment instead of the current environment we are normalizing in.
723let args = GenericArgs::identity_for_item(tcx, def_id);
724let typing_env = ty::TypingEnv::post_analysis(tcx, def_id);
725726 (args, typing_env)
727 }
728Some((
729_,
730 ty::AnonConstKind::MCG
731 | ty::AnonConstKind::NonTypeSystemAnon
732 | ty::AnonConstKind::NonTypeSystemInline,
733 ))
734 | None => {
735// We are only dealing with "truly" generic/uninferred constants here:
736 // - GCEConsts have been handled separately
737 // - Repeat expr count back compat consts have also been handled separately
738 // So we are free to simply defer evaluation here.
739 //
740 // FIXME: This assumes that `args` are normalized which is not necessarily true
741 //
742 // Const patterns are converted to type system constants before being
743 // evaluated. However, we don't care about them here as pattern evaluation
744 // logic does not go through type system normalization. If it did this would
745 // be a backwards compatibility problem as we do not enforce "syntactic" non-
746 // usage of generic parameters like we do here.
747if alias_const.args.has_non_region_param()
748 || alias_const.args.has_non_region_infer()
749 || alias_const.args.has_non_region_placeholders()
750 {
751return Err(EvaluateConstErr::HasGenericsOrInfers);
752 }
753754// Since there is no generic parameter, we can just drop the environment
755 // to prevent query cycle.
756let typing_env = ty::TypingEnv::fully_monomorphized();
757758 (alias_const.args, typing_env)
759 }
760 };
761762let alias_const = ty::AliasConst::new(tcx, alias_const.kind, args);
763let erased_alias_const = tcx.erase_and_anonymize_regions(alias_const);
764765use rustc_middle::mir::interpret::ErrorHandled;
766// FIXME: `def_span` will point at the definition of this const; ideally, we'd point at
767 // where it gets used as a const generic.
768let span = alias_const.kind.def_span(tcx);
769match tcx.const_eval_resolve_for_typeck(typing_env, erased_alias_const, span) {
770Ok(Ok(val)) => {
771let ty = normalize_ty(alias_const.type_of(tcx))
772 .map_err(EvaluateConstErr::FailedNormalization)?;
773Ok(ty::Const::new_value(tcx, val, ty))
774 }
775Ok(Err(_)) => {
776let e = tcx.dcx().delayed_bug(
777"Type system constant with non valtree'able type evaluated but no error emitted",
778 );
779Err(EvaluateConstErr::InvalidConstParamTy(e))
780 }
781Err(ErrorHandled::Reported(info, _)) => {
782Err(EvaluateConstErr::EvaluationFailure(info.into()))
783 }
784Err(ErrorHandled::TooGeneric(_)) => Err(EvaluateConstErr::HasGenericsOrInfers),
785 }
786 }
787 }
788}
789790/// Replaces args that reference param or infer variables with suitable
791/// placeholders. This function is meant to remove these param and infer
792/// args when they're not actually needed to evaluate a constant.
793fn replace_param_and_infer_args_with_placeholder<'tcx>(
794 tcx: TyCtxt<'tcx>,
795 args: GenericArgsRef<'tcx>,
796) -> GenericArgsRef<'tcx> {
797struct ReplaceParamAndInferWithPlaceholder<'tcx> {
798 tcx: TyCtxt<'tcx>,
799 idx: ty::BoundVar,
800 }
801802impl<'tcx> TypeFolder<TyCtxt<'tcx>> for ReplaceParamAndInferWithPlaceholder<'tcx> {
803fn cx(&self) -> TyCtxt<'tcx> {
804self.tcx
805 }
806807fn fold_ty(&mut self, t: Ty<'tcx>) -> Ty<'tcx> {
808if let ty::Infer(_) = t.kind() {
809let idx = self.idx;
810self.idx += 1;
811Ty::new_placeholder(
812self.tcx,
813 ty::PlaceholderType::new(
814 ty::UniverseIndex::ROOT,
815 ty::BoundTy { var: idx, kind: ty::BoundTyKind::Anon },
816 ),
817 )
818 } else {
819t.super_fold_with(self)
820 }
821 }
822823fn fold_const(&mut self, c: ty::Const<'tcx>) -> ty::Const<'tcx> {
824if let ty::ConstKind::Infer(_) = c.kind() {
825let idx = self.idx;
826self.idx += 1;
827 ty::Const::new_placeholder(
828self.tcx,
829 ty::PlaceholderConst::new(ty::UniverseIndex::ROOT, ty::BoundConst::new(idx)),
830 )
831 } else {
832c.super_fold_with(self)
833 }
834 }
835 }
836837args.fold_with(&mut ReplaceParamAndInferWithPlaceholder { tcx, idx: ty::BoundVar::ZERO })
838}
839840/// Normalizes the clauses and checks whether they hold in an empty environment. If this
841/// returns true, then either normalize encountered an error or one of the clauses did not
842/// hold. Used when creating vtables to check for unsatisfiable methods. This should not be
843/// used during analysis.
844pub fn impossible_clauses<'tcx>(tcx: TyCtxt<'tcx>, clauses: Vec<ty::Clause<'tcx>>) -> bool {
845{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs:845",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(845u32),
::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};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("impossible_clauses(clauses={0:?})",
clauses) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("impossible_clauses(clauses={:?})", clauses);
846let (infcx, param_env) = tcx847 .infer_ctxt()
848 .with_next_trait_solver(true)
849 .enable_next_solver_overflow_fcw(false)
850 .build_with_typing_env(ty::TypingEnv::fully_monomorphized());
851852let ocx = ObligationCtxt::new(&infcx);
853let clauses =
854ocx.normalize(&ObligationCause::dummy(), param_env, Unnormalized::new_wip(clauses));
855for clause in clauses {
856let obligation = Obligation::new(tcx, ObligationCause::dummy(), param_env, clause);
857 ocx.register_obligation(obligation);
858 }
859860// Use `try_evaluate_obligations` to only return impossible for true errors,
861 // and not ambiguities or overflows. Since the new trait solver forces
862 // some currently undetected overlap between `dyn Trait: Trait` built-in
863 // vs user-written impls to AMBIGUOUS, this may return ambiguity even
864 // with no infer vars. There may also be ways to encounter ambiguity due
865 // to post-mono overflow.
866!ocx.try_evaluate_obligations().no_errors()
867}
868869fn instantiate_and_check_impossible_clauses<'tcx>(
870 tcx: TyCtxt<'tcx>,
871 key: (DefId, GenericArgsRef<'tcx>),
872) -> bool {
873{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs:873",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(873u32),
::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};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("instantiate_and_check_impossible_clauses(key={0:?})",
key) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("instantiate_and_check_impossible_clauses(key={:?})", key);
874875let mut clauses: Vec<_> = tcx876 .clauses_of(key.0)
877 .instantiate(tcx, key.1)
878 .clauses
879 .into_iter()
880 .map(Unnormalized::skip_norm_wip)
881 .collect();
882883// Specifically check trait fulfillment to avoid an error when trying to resolve
884 // associated items.
885if let Some(trait_def_id) = tcx.trait_of_assoc(key.0) {
886let trait_ref = ty::TraitRef::from_assoc(tcx, trait_def_id, key.1);
887clauses.push(trait_ref.upcast(tcx));
888 }
889890clauses.retain(|clause| !clause.has_param());
891let result = impossible_clauses(tcx, clauses);
892893{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs:893",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/a36d05efab632d1ddf902b6a5c33b6d5d3b64131/compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(893u32),
::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};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("instantiate_and_check_impossible_clauses(key={0:?}) = {1:?}",
key, result) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("instantiate_and_check_impossible_clauses(key={:?}) = {:?}", key, result);
894result895}
896897/// Checks whether a trait's associated item is impossible to reference on a given impl.
898///
899/// This only considers predicates that reference the impl's generics, and not
900/// those that reference the method's generics.
901fn is_impossible_associated_item(
902 tcx: TyCtxt<'_>,
903 (impl_def_id, trait_item_def_id): (DefId, DefId),
904) -> bool {
905struct ReferencesOnlyParentGenerics<'tcx> {
906 tcx: TyCtxt<'tcx>,
907 generics: &'tcx ty::Generics,
908 trait_item_def_id: DefId,
909 }
910impl<'tcx> ty::TypeVisitor<TyCtxt<'tcx>> for ReferencesOnlyParentGenerics<'tcx> {
911type Result = ControlFlow<()>;
912fn visit_ty(&mut self, t: Ty<'tcx>) -> Self::Result {
913// If this is a parameter from the trait item's own generics, then bail
914if let ty::Param(param) = *t.kind()
915 && let param_def_id = self.generics.type_param(param, self.tcx).def_id
916 && self.tcx.parent(param_def_id) == self.trait_item_def_id
917 {
918return ControlFlow::Break(());
919 }
920t.super_visit_with(self)
921 }
922fn visit_region(&mut self, r: ty::Region<'tcx>) -> Self::Result {
923if let ty::ReEarlyParam(param) = r.kind()
924 && let param_def_id = self.generics.region_param(param, self.tcx).def_id
925 && self.tcx.parent(param_def_id) == self.trait_item_def_id
926 {
927return ControlFlow::Break(());
928 }
929 ControlFlow::Continue(())
930 }
931fn visit_const(&mut self, ct: ty::Const<'tcx>) -> Self::Result {
932if let ty::ConstKind::Param(param) = ct.kind()
933 && let param_def_id = self.generics.const_param(param, self.tcx).def_id
934 && self.tcx.parent(param_def_id) == self.trait_item_def_id
935 {
936return ControlFlow::Break(());
937 }
938ct.super_visit_with(self)
939 }
940 }
941942let generics = tcx.generics_of(trait_item_def_id);
943let gen_clauses = tcx.clauses_of(trait_item_def_id);
944945// Be conservative in cases where we have `W<T: ?Sized>` and a method like `Self: Sized`,
946 // since that method *may* have some substitutions where the predicates hold.
947 //
948 // This replicates the logic we use in coherence.
949let infcx = tcx950 .infer_ctxt()
951 .ignoring_regions()
952 .with_next_trait_solver(true)
953 .enable_next_solver_overflow_fcw(false)
954 .build(TypingMode::Coherence);
955let param_env = ty::ParamEnv::empty();
956let fresh_args = infcx.fresh_args_for_item(tcx.def_span(impl_def_id), impl_def_id);
957958let impl_trait_ref =
959tcx.impl_trait_ref(impl_def_id).instantiate(tcx, fresh_args).skip_norm_wip();
960961let mut visitor = ReferencesOnlyParentGenerics { tcx, generics, trait_item_def_id };
962let predicates_for_trait = gen_clauses.clauses.iter().filter_map(|(clause, span)| {
963clause.visit_with(&mut visitor).is_continue().then(|| {
964Obligation::new(
965tcx,
966ObligationCause::dummy_with_span(*span),
967param_env,
968 ty::EarlyBinder::bind(tcx, *clause)
969 .instantiate(tcx, impl_trait_ref.args)
970 .skip_norm_wip(),
971 )
972 })
973 });
974975let ocx = ObligationCtxt::new(&infcx);
976ocx.register_obligations(predicates_for_trait);
977 !ocx.try_evaluate_obligations().no_errors()
978}
979980pub fn provide(providers: &mut Providers) {
981 dyn_compatibility::provide(providers);
982 vtable::provide(providers);
983*providers = Providers {
984 specialization_graph_of: specialize::specialization_graph_provider,
985 specializes: specialize::specializes,
986 specialization_enabled_in: specialize::specialization_enabled_in,
987instantiate_and_check_impossible_clauses,
988is_impossible_associated_item,
989 live_args_for_alias_from_outlives_bounds:
990 outlives_for_liveness::live_args_for_alias_from_outlives_bounds,
991 args_known_to_outlive_alias_params:
992 outlives_for_liveness::args_known_to_outlive_alias_params,
993 ..*providers994 };
995}