1//! Trait Resolution. See the [rustc dev guide] for more information on how this works.
2//!
3//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/traits/resolution.html
45pub mod auto_trait;
6pub(crate) mod coherence;
7pub mod const_evaluatable;
8mod dyn_compatibility;
9pub mod effects;
10mod engine;
11mod fulfill;
12pub mod misc;
13pub mod normalize;
14pub mod outlives_bounds;
15pub mod project;
16pub mod query;
17#[allow(hidden_glob_reexports)]
18mod select;
19pub mod specialize;
20mod structural_normalize;
21#[allow(hidden_glob_reexports)]
22mod util;
23pub mod vtable;
24pub mod wf;
2526use std::fmt::Debug;
27use std::ops::ControlFlow;
2829use rustc_errors::ErrorGuaranteed;
30pub use rustc_infer::traits::*;
31use rustc_macros::TypeVisitable;
32use rustc_middle::query::Providers;
33use rustc_middle::ty::error::{ExpectedFound, TypeError};
34use rustc_middle::ty::{
35self, Clause, GenericArgs, GenericArgsRef, Ty, TyCtxt, TypeFoldable, TypeFolder,
36TypeSuperFoldable, 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::{ObligationCtxt, TraitEngineExt};
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::Subtype(_, _)
102 | FulfillmentErrorCode::ConstEquate(_, _) => true,
103 FulfillmentErrorCode::Cycle(_) | FulfillmentErrorCode::Ambiguity { overflow: _ } => {
104false
105}
106 }
107 }
108}
109110#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for FulfillmentErrorCode<'tcx> {
#[inline]
fn clone(&self) -> FulfillmentErrorCode<'tcx> {
match self {
FulfillmentErrorCode::Cycle(__self_0) =>
FulfillmentErrorCode::Cycle(::core::clone::Clone::clone(__self_0)),
FulfillmentErrorCode::Select(__self_0) =>
FulfillmentErrorCode::Select(::core::clone::Clone::clone(__self_0)),
FulfillmentErrorCode::Project(__self_0) =>
FulfillmentErrorCode::Project(::core::clone::Clone::clone(__self_0)),
FulfillmentErrorCode::Subtype(__self_0, __self_1) =>
FulfillmentErrorCode::Subtype(::core::clone::Clone::clone(__self_0),
::core::clone::Clone::clone(__self_1)),
FulfillmentErrorCode::ConstEquate(__self_0, __self_1) =>
FulfillmentErrorCode::ConstEquate(::core::clone::Clone::clone(__self_0),
::core::clone::Clone::clone(__self_1)),
FulfillmentErrorCode::Ambiguity { overflow: __self_0 } =>
FulfillmentErrorCode::Ambiguity {
overflow: ::core::clone::Clone::clone(__self_0),
},
}
}
}Clone, const _: () =
{
impl<'tcx>
::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
for FulfillmentErrorCode<'tcx> {
fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
__visitor: &mut __V) -> __V::Result {
match *self {
FulfillmentErrorCode::Cycle(ref __binding_0) => {
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
}
FulfillmentErrorCode::Select(ref __binding_0) => {
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
}
FulfillmentErrorCode::Project(ref __binding_0) => {
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
}
FulfillmentErrorCode::Subtype(ref __binding_0,
ref __binding_1) => {
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
}
FulfillmentErrorCode::ConstEquate(ref __binding_0,
ref __binding_1) => {
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
}
FulfillmentErrorCode::Ambiguity { overflow: ref __binding_0
} => {
{
match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
__visitor)) {
::core::ops::ControlFlow::Continue(()) => {}
::core::ops::ControlFlow::Break(r) => {
return ::rustc_middle::ty::VisitorResult::from_residual(r);
}
}
}
}
}
<__V::Result as ::rustc_middle::ty::VisitorResult>::output()
}
}
};TypeVisitable)]
111pub enum FulfillmentErrorCode<'tcx> {
112/// Inherently impossible to fulfill; this trait is implemented if and only
113 /// if it is already implemented.
114Cycle(PredicateObligations<'tcx>),
115 Select(SelectionError<'tcx>),
116 Project(MismatchedProjectionTypes<'tcx>),
117 Subtype(ExpectedFound<Ty<'tcx>>, TypeError<'tcx>), // always comes from a SubtypePredicate
118ConstEquate(ExpectedFound<ty::Const<'tcx>>, TypeError<'tcx>),
119 Ambiguity {
120/// Overflow is only `Some(suggest_recursion_limit)` when using the next generation
121 /// trait solver `-Znext-solver`. With the old solver overflow is eagerly handled by
122 /// emitting a fatal error instead.
123overflow: Option<bool>,
124 },
125}
126127impl<'tcx> Debugfor FulfillmentErrorCode<'tcx> {
128fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
129match *self {
130 FulfillmentErrorCode::Select(ref e) => f.write_fmt(format_args!("{0:?}", e))write!(f, "{e:?}"),
131 FulfillmentErrorCode::Project(ref e) => f.write_fmt(format_args!("{0:?}", e))write!(f, "{e:?}"),
132 FulfillmentErrorCode::Subtype(ref a, ref b) => {
133f.write_fmt(format_args!("CodeSubtypeError({0:?}, {1:?})", a, b))write!(f, "CodeSubtypeError({a:?}, {b:?})")134 }
135 FulfillmentErrorCode::ConstEquate(ref a, ref b) => {
136f.write_fmt(format_args!("CodeConstEquateError({0:?}, {1:?})", a, b))write!(f, "CodeConstEquateError({a:?}, {b:?})")137 }
138 FulfillmentErrorCode::Ambiguity { overflow: None } => f.write_fmt(format_args!("Ambiguity"))write!(f, "Ambiguity"),
139 FulfillmentErrorCode::Ambiguity { overflow: Some(suggest_increasing_limit) } => {
140f.write_fmt(format_args!("Overflow({0})", suggest_increasing_limit))write!(f, "Overflow({suggest_increasing_limit})")141 }
142 FulfillmentErrorCode::Cycle(ref cycle) => f.write_fmt(format_args!("Cycle({0:?})", cycle))write!(f, "Cycle({cycle:?})"),
143 }
144 }
145}
146147/// Whether to skip the leak check, as part of a future compatibility warning step.
148///
149/// The "default" for skip-leak-check corresponds to the current
150/// behavior (do not skip the leak check) -- not the behavior we are
151/// transitioning into.
152#[derive(#[automatically_derived]
impl ::core::marker::Copy for SkipLeakCheck { }Copy, #[automatically_derived]
impl ::core::clone::Clone for SkipLeakCheck {
#[inline]
fn clone(&self) -> SkipLeakCheck { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for SkipLeakCheck {
#[inline]
fn eq(&self, other: &SkipLeakCheck) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for SkipLeakCheck {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for SkipLeakCheck {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
SkipLeakCheck::Yes => "Yes",
SkipLeakCheck::No => "No",
})
}
}Debug, #[automatically_derived]
impl ::core::default::Default for SkipLeakCheck {
#[inline]
fn default() -> SkipLeakCheck { Self::No }
}Default)]
153pub enum SkipLeakCheck {
154 Yes,
155#[default]
156No,
157}
158159impl SkipLeakCheck {
160fn is_yes(self) -> bool {
161self == SkipLeakCheck::Yes162 }
163}
164165/// The mode that trait queries run in.
166#[derive(#[automatically_derived]
impl ::core::marker::Copy for TraitQueryMode { }Copy, #[automatically_derived]
impl ::core::clone::Clone for TraitQueryMode {
#[inline]
fn clone(&self) -> TraitQueryMode { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for TraitQueryMode {
#[inline]
fn eq(&self, other: &TraitQueryMode) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for TraitQueryMode {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for TraitQueryMode {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
TraitQueryMode::Standard => "Standard",
TraitQueryMode::Canonical => "Canonical",
})
}
}Debug)]
167pub enum TraitQueryMode {
168/// Standard/un-canonicalized queries get accurate
169 /// spans etc. passed in and hence can do reasonable
170 /// error reporting on their own.
171Standard,
172/// Canonical queries get dummy spans and hence
173 /// must generally propagate errors to
174 /// pre-canonicalization callsites.
175Canonical,
176}
177178/// Creates predicate obligations from the generic bounds.
179#[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("predicates_for_generics",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(179u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["generic_bounds"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&generic_bounds)
as &dyn Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: _ = loop {};
return __tracing_attr_fake_return;
}
{
generic_bounds.into_iter().enumerate().map(move
|(idx, (clause, span))|
Obligation {
cause: cause(idx, span),
recursion_depth: 0,
param_env,
predicate: normalize_predicate(clause).as_predicate(),
})
}
}
}#[instrument(level = "debug", skip(cause, param_env, normalize_predicate))]180pub fn predicates_for_generics<'tcx>(
181 cause: impl Fn(usize, Span) -> ObligationCause<'tcx>,
182mut normalize_predicate: impl FnMut(Unnormalized<'tcx, Clause<'tcx>>) -> Clause<'tcx>,
183 param_env: ty::ParamEnv<'tcx>,
184 generic_bounds: ty::InstantiatedPredicates<'tcx>,
185) -> impl Iterator<Item = PredicateObligation<'tcx>> {
186 generic_bounds.into_iter().enumerate().map(move |(idx, (clause, span))| Obligation {
187 cause: cause(idx, span),
188 recursion_depth: 0,
189 param_env,
190 predicate: normalize_predicate(clause).as_predicate(),
191 })
192}
193194/// Determines whether the type `ty` is known to meet `bound` and
195/// returns true if so. Returns false if `ty` either does not meet
196/// `bound` or is not known to meet bound (note that this is
197/// conservative towards *no impl*, which is the opposite of the
198/// `evaluate` methods).
199pub fn type_known_to_meet_bound_modulo_regions<'tcx>(
200 infcx: &InferCtxt<'tcx>,
201 param_env: ty::ParamEnv<'tcx>,
202 ty: Ty<'tcx>,
203 def_id: DefId,
204) -> bool {
205let trait_ref = ty::TraitRef::new(infcx.tcx, def_id, [ty]);
206pred_known_to_hold_modulo_regions(infcx, param_env, trait_ref)
207}
208209/// FIXME(@lcnr): this function doesn't seem right and shouldn't exist?
210///
211/// Ping me on zulip if you want to use this method and need help with finding
212/// an appropriate replacement.
213x;#[instrument(level = "debug", skip(infcx, param_env, pred), ret)]214fn pred_known_to_hold_modulo_regions<'tcx>(
215 infcx: &InferCtxt<'tcx>,
216 param_env: ty::ParamEnv<'tcx>,
217 pred: impl Upcast<TyCtxt<'tcx>, ty::Predicate<'tcx>>,
218) -> bool {
219let obligation = Obligation::new(infcx.tcx, ObligationCause::dummy(), param_env, pred);
220221let result = infcx.evaluate_obligation_no_overflow(&obligation);
222debug!(?result);
223224if result.must_apply_modulo_regions() {
225true
226} else if result.may_apply() && !infcx.next_trait_solver() {
227// Sometimes obligations are ambiguous because the recursive evaluator
228 // is not smart enough, so we fall back to fulfillment when we're not certain
229 // that an obligation holds or not. Even still, we must make sure that
230 // the we do no inference in the process of checking this obligation.
231let goal = infcx.resolve_vars_if_possible((obligation.predicate, obligation.param_env));
232 infcx.probe(|_| {
233let ocx = ObligationCtxt::new(infcx);
234 ocx.register_obligation(obligation);
235236let errors = ocx.evaluate_obligations_error_on_ambiguity();
237match errors.as_slice() {
238// Only known to hold if we did no inference.
239[] => infcx.resolve_vars_if_possible(goal) == goal,
240241 errors => {
242debug!(?errors);
243false
244}
245 }
246 })
247 } else {
248false
249}
250}
251252fn set_projection_term_to_non_rigid<'tcx>(
253 tcx: TyCtxt<'tcx>,
254 predicates: impl IntoIterator<Item = ty::Clause<'tcx>>,
255) -> impl Iterator<Item = ty::Clause<'tcx>> {
256predicates.into_iter().map(move |clause| {
257if let ty::ClauseKind::Projection(projection_pred) = clause.kind().skip_binder() {
258clause259 .kind()
260 .rebind(ty::ProjectionPredicate {
261 projection_term: projection_pred.projection_term,
262 term: ty::set_aliases_to_non_rigid(tcx, projection_pred.term).skip_norm_wip(),
263 })
264 .upcast(tcx)
265 } else {
266clause267 }
268 })
269}
270271#[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("do_normalize_predicates",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(271u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["cause",
"predicates"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&cause)
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&predicates)
as &dyn Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return:
Result<Vec<ty::Clause<'tcx>>, ErrorGuaranteed> = loop {};
return __tracing_attr_fake_return;
}
{
let span = cause.span;
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_aliases_to_rigid(tcx, elaborated_env);
let elaborated_env =
set_projection_term_to_non_rigid(tcx,
elaborated_env.caller_bounds());
ty::ParamEnv::new(tcx.mk_clauses_from_iter(elaborated_env))
} else { elaborated_env };
let predicates =
ocx.normalize(&cause, elaborated_env,
Unnormalized::new_wip(predicates));
let predicates =
if tcx.next_trait_solver_globally() {
if !tcx.disable_param_env_normalization_hack() {
let predicates: Vec<_> =
set_projection_term_to_non_rigid(tcx, predicates).collect();
ty::set_opaques_to_non_rigid(tcx,
predicates).skip_norm_wip()
} else {
ty::set_aliases_to_non_rigid(tcx,
predicates).skip_norm_wip()
}
} else { predicates };
let errors = ocx.evaluate_obligations_error_on_ambiguity();
if !errors.is_empty() {
let reported =
infcx.err_ctxt().report_fulfillment_errors(errors);
return Err(reported);
}
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:331",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(331u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("do_normalize_predicates: normalized predicates = {0:?}",
predicates) as &dyn Value))])
});
} else { ; }
};
let _errors =
infcx.resolve_regions(cause.body_def_id, elaborated_env, []);
match infcx.fully_resolve(predicates) {
Ok(predicates) => Ok(predicates),
Err(fixup_err) => {
Err(tcx.dcx().span_delayed_bug(span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("inference variables in normalized parameter environment: {0}",
fixup_err))
})))
}
}
}
}
}#[instrument(level = "debug", skip(tcx, elaborated_env))]272fn do_normalize_predicates<'tcx>(
273 tcx: TyCtxt<'tcx>,
274 cause: ObligationCause<'tcx>,
275 elaborated_env: ty::ParamEnv<'tcx>,
276 predicates: Vec<ty::Clause<'tcx>>,
277) -> Result<Vec<ty::Clause<'tcx>>, ErrorGuaranteed> {
278// FIXME. We should really... do something with these region
279 // obligations. But this call just continues the older
280 // behavior (i.e., doesn't cause any new bugs), and it would
281 // take some further refactoring to actually solve them. In
282 // particular, we would have to handle implied bounds
283 // properly, and that code is currently largely confined to
284 // regionck (though I made some efforts to extract it
285 // out). -nmatsakis
286 //
287 // @arielby: In any case, these obligations are checked
288 // by wfcheck anyway, so I'm not sure we have to check
289 // them here too, and we will remove this function when
290 // we move over to lazy normalization *anyway*.
291let span = cause.span;
292let infcx = tcx.infer_ctxt().ignoring_regions().build(TypingMode::non_body_analysis());
293let ocx = ObligationCtxt::new_with_diagnostics(&infcx);
294// FIXME: `elaborated_env` is not really rigid. We do this to be
295 // consistent with the old solver.
296let elaborated_env = if tcx.next_trait_solver_globally()
297 && !tcx.disable_param_env_normalization_hack()
298 {
299let elaborated_env = ty::set_aliases_to_rigid(tcx, elaborated_env);
300let elaborated_env = set_projection_term_to_non_rigid(tcx, elaborated_env.caller_bounds());
301 ty::ParamEnv::new(tcx.mk_clauses_from_iter(elaborated_env))
302 } else {
303 elaborated_env
304 };
305let predicates = ocx.normalize(&cause, elaborated_env, Unnormalized::new_wip(predicates));
306let predicates = if tcx.next_trait_solver_globally() {
307if !tcx.disable_param_env_normalization_hack() {
308let predicates: Vec<_> = set_projection_term_to_non_rigid(tcx, predicates).collect();
309// FIXME(type_alias_impl_trait): opaque types in param env might be
310 // in defining scope but we're using non body analysis here.
311 // So the rigidness marker is wrong.
312ty::set_opaques_to_non_rigid(tcx, predicates).skip_norm_wip()
313 } else {
314// Param env is used in different typing modes but itself
315 // is normalized in `non_body_analysis`.
316 // That not only makes the rigidness of opaques types wrong,
317 // other aliases can be indirectly affected as well.
318 // So we conservatively set everything to be non-rigid.
319ty::set_aliases_to_non_rigid(tcx, predicates).skip_norm_wip()
320 }
321 } else {
322 predicates
323 };
324325let errors = ocx.evaluate_obligations_error_on_ambiguity();
326if !errors.is_empty() {
327let reported = infcx.err_ctxt().report_fulfillment_errors(errors);
328return Err(reported);
329 }
330331debug!("do_normalize_predicates: normalized predicates = {:?}", predicates);
332333// We can use the `elaborated_env` here; the region code only
334 // cares about declarations like `'a: 'b`.
335 //
336 // FIXME: It's very weird that we ignore region obligations but apparently
337 // still need to use `resolve_regions` as we need the resolved regions in
338 // the normalized predicates.
339 //
340 // FIXME(-Zhigher-ranked-assumptions): We're ignoring region errors for now.
341 // There're placeholder constraints `leaking` out. This is a hack to work around
342 // the fact that we don't support placeholder assumptions right now and is necessary
343 // for `compare_method_predicate_entailment`. We should remove this once we
344 // have proper support for implied bounds on binders.
345 //
346 // This is required by trait-system-refactor-initiative#166. The new solver encounters
347 // this more frequently as we entirely ignore outlives predicates with the old solver.
348let _errors = infcx.resolve_regions(cause.body_def_id, elaborated_env, []);
349match infcx.fully_resolve(predicates) {
350Ok(predicates) => Ok(predicates),
351Err(fixup_err) => {
352// If we encounter a fixup error, it means that some type
353 // variable wound up unconstrained. That can happen for
354 // ill-formed impls, so we delay a bug here instead of
355 // immediately ICEing and let type checking report the
356 // actual user-facing errors.
357Err(tcx.dcx().span_delayed_bug(
358 span,
359format!("inference variables in normalized parameter environment: {fixup_err}"),
360 ))
361 }
362 }
363}
364365// FIXME: this is gonna need to be removed ...
366/// Normalizes the parameter environment, reporting errors if they occur.
367#[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("normalize_param_env_or_error",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(367u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["unnormalized_env",
"cause"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&unnormalized_env)
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&cause)
as &dyn Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: ty::ParamEnv<'tcx> = loop {};
return __tracing_attr_fake_return;
}
{
let mut predicates: Vec<_> =
util::elaborate(tcx,
unnormalized_env.caller_bounds().into_iter().map(|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 compiler/rustc_trait_selection/src/traits/mod.rs:460",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(460u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: elaborated-predicates={0:?}",
predicates) as &dyn Value))])
});
} else { ; }
};
let elaborated_env =
ty::ParamEnv::new(tcx.mk_clauses(&predicates));
if !elaborated_env.has_aliases() { return elaborated_env; }
let outlives_predicates: Vec<_> =
predicates.extract_if(..,
|predicate|
{
#[allow(non_exhaustive_omitted_patterns)]
match predicate.kind().skip_binder() {
ty::ClauseKind::TypeOutlives(..) => true,
_ => false,
}
}).collect();
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:491",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(491u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: predicates=(non-outlives={0:?}, outlives={1:?})",
predicates, outlives_predicates) as &dyn Value))])
});
} else { ; }
};
let Ok(non_outlives_predicates) =
do_normalize_predicates(tcx, cause.clone(), elaborated_env,
predicates) else {
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:499",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(499u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: errored resolving non-outlives predicates")
as &dyn Value))])
});
} else { ; }
};
return elaborated_env;
};
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:503",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(503u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: non-outlives predicates={0:?}",
non_outlives_predicates) as &dyn Value))])
});
} else { ; }
};
let outlives_env =
non_outlives_predicates.iter().chain(&outlives_predicates).cloned();
let outlives_env =
ty::ParamEnv::new(tcx.mk_clauses_from_iter(outlives_env));
let Ok(outlives_predicates) =
do_normalize_predicates(tcx, cause, outlives_env,
outlives_predicates) else {
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:514",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(514u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: errored resolving outlives predicates")
as &dyn Value))])
});
} else { ; }
};
return elaborated_env;
};
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:517",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(517u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: outlives predicates={0:?}",
outlives_predicates) as &dyn Value))])
});
} else { ; }
};
let mut predicates = non_outlives_predicates;
predicates.extend(outlives_predicates);
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:521",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(521u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("normalize_param_env_or_error: final predicates={0:?}",
predicates) as &dyn Value))])
});
} else { ; }
};
ty::ParamEnv::new(tcx.mk_clauses(&predicates))
}
}
}#[instrument(level = "debug", skip(tcx))]368pub fn normalize_param_env_or_error<'tcx>(
369 tcx: TyCtxt<'tcx>,
370 unnormalized_env: ty::ParamEnv<'tcx>,
371 cause: ObligationCause<'tcx>,
372) -> ty::ParamEnv<'tcx> {
373// I'm not wild about reporting errors here; I'd prefer to
374 // have the errors get reported at a defined place (e.g.,
375 // during typeck). Instead I have all parameter
376 // environments, in effect, going through this function
377 // and hence potentially reporting errors. This ensures of
378 // course that we never forget to normalize (the
379 // alternative seemed like it would involve a lot of
380 // manual invocations of this fn -- and then we'd have to
381 // deal with the errors at each of those sites).
382 //
383 // In any case, in practice, typeck constructs all the
384 // parameter environments once for every fn as it goes,
385 // and errors will get reported then; so outside of type inference we
386 // can be sure that no errors should occur.
387let mut predicates: Vec<_> = util::elaborate(
388 tcx,
389 unnormalized_env.caller_bounds().into_iter().map(|clause| {
390if tcx.features().generic_const_exprs() || tcx.next_trait_solver_globally() {
391return clause;
392 }
393394struct ConstNormalizer<'tcx>(TyCtxt<'tcx>);
395396impl<'tcx> TypeFolder<TyCtxt<'tcx>> for ConstNormalizer<'tcx> {
397fn cx(&self) -> TyCtxt<'tcx> {
398self.0
399}
400401fn fold_const(&mut self, c: ty::Const<'tcx>) -> ty::Const<'tcx> {
402// FIXME(return_type_notation): track binders in this normalizer, as
403 // `ty::Const::normalize` can only work with properly preserved binders.
404405if c.has_escaping_bound_vars() {
406return ty::Const::new_misc_error(self.0);
407 }
408409// While it is pretty sus to be evaluating things with an empty param env, it
410 // should actually be okay since without `feature(generic_const_exprs)` the only
411 // const arguments that have a non-empty param env are array repeat counts. These
412 // do not appear in the type system though.
413if let ty::ConstKind::Alias(_, alias_const) = c.kind()
414 && matches!(alias_const.kind, ty::AliasConstKind::Anon { .. })
415 {
416let infcx = self.0.infer_ctxt().build(TypingMode::non_body_analysis());
417let c = evaluate_const(&infcx, c, ty::ParamEnv::empty());
418// We should never wind up with any `infcx` local state when normalizing anon consts
419 // under min const generics.
420assert!(!c.has_infer() && !c.has_placeholders());
421return c;
422 }
423424 c
425 }
426 }
427428// This whole normalization step is a hack to work around the fact that
429 // `normalize_param_env_or_error` is fundamentally broken from using an
430 // unnormalized param env with a trait solver that expects the param env
431 // to be normalized.
432 //
433 // When normalizing the param env we can end up evaluating obligations
434 // that have been normalized but can only be proven via a where clause
435 // which is still in its unnormalized form. example:
436 //
437 // Attempting to prove `T: Trait<<u8 as Identity>::Assoc>` in a param env
438 // with a `T: Trait<<u8 as Identity>::Assoc>` where clause will fail because
439 // we first normalize obligations before proving them so we end up proving
440 // `T: Trait<u8>`. Since lazy normalization is not implemented equating `u8`
441 // with `<u8 as Identity>::Assoc` fails outright so we incorrectly believe that
442 // we cannot prove `T: Trait<u8>`.
443 //
444 // The same thing is true for const generics- attempting to prove
445 // `T: Trait<ConstKind::Alias(...)>` with the same thing as a where clauses
446 // will fail. After normalization we may be attempting to prove `T: Trait<4>` with
447 // the unnormalized where clause `T: Trait<ConstKind::Alias(...)>`. In order
448 // for the obligation to hold `4` must be equal to `ConstKind::Alias(...)`
449 // but as we do not have lazy norm implemented, equating the two consts fails outright.
450 //
451 // Ideally we would not normalize consts here at all but it is required for backwards
452 // compatibility. Eventually when lazy norm is implemented this can just be removed.
453 // We do not normalize types here as there is no backwards compatibility requirement
454 // for us to do so.
455clause.fold_with(&mut ConstNormalizer(tcx))
456 }),
457 )
458 .collect();
459460debug!("normalize_param_env_or_error: elaborated-predicates={:?}", predicates);
461462let elaborated_env = ty::ParamEnv::new(tcx.mk_clauses(&predicates));
463if !elaborated_env.has_aliases() {
464return elaborated_env;
465 }
466467// HACK: we are trying to normalize the param-env inside *itself*. The problem is that
468 // normalization expects its param-env to be already normalized, which means we have
469 // a circularity.
470 //
471 // The way we handle this is by normalizing the param-env inside an unnormalized version
472 // of the param-env, which means that if the param-env contains unnormalized projections,
473 // we'll have some normalization failures. This is unfortunate.
474 //
475 // Lazy normalization would basically handle this by treating just the
476 // normalizing-a-trait-ref-requires-itself cycles as evaluation failures.
477 //
478 // Inferred outlives bounds can create a lot of `TypeOutlives` predicates for associated
479 // types, so to make the situation less bad, we normalize all the predicates *but*
480 // the `TypeOutlives` predicates first inside the unnormalized parameter environment, and
481 // then we normalize the `TypeOutlives` bounds inside the normalized parameter environment.
482 //
483 // This works fairly well because trait matching does not actually care about param-env
484 // TypeOutlives predicates - these are normally used by regionck.
485let outlives_predicates: Vec<_> = predicates
486 .extract_if(.., |predicate| {
487matches!(predicate.kind().skip_binder(), ty::ClauseKind::TypeOutlives(..))
488 })
489 .collect();
490491debug!(
492"normalize_param_env_or_error: predicates=(non-outlives={:?}, outlives={:?})",
493 predicates, outlives_predicates
494 );
495let Ok(non_outlives_predicates) =
496 do_normalize_predicates(tcx, cause.clone(), elaborated_env, predicates)
497else {
498// An unnormalized env is better than nothing.
499debug!("normalize_param_env_or_error: errored resolving non-outlives predicates");
500return elaborated_env;
501 };
502503debug!("normalize_param_env_or_error: non-outlives predicates={:?}", non_outlives_predicates);
504505// Not sure whether it is better to include the unnormalized TypeOutlives predicates
506 // here. I believe they should not matter, because we are ignoring TypeOutlives param-env
507 // predicates here anyway. Keeping them here anyway because it seems safer.
508let outlives_env = non_outlives_predicates.iter().chain(&outlives_predicates).cloned();
509let outlives_env = ty::ParamEnv::new(tcx.mk_clauses_from_iter(outlives_env));
510let Ok(outlives_predicates) =
511 do_normalize_predicates(tcx, cause, outlives_env, outlives_predicates)
512else {
513// An unnormalized env is better than nothing.
514debug!("normalize_param_env_or_error: errored resolving outlives predicates");
515return elaborated_env;
516 };
517debug!("normalize_param_env_or_error: outlives predicates={:?}", outlives_predicates);
518519let mut predicates = non_outlives_predicates;
520 predicates.extend(outlives_predicates);
521debug!("normalize_param_env_or_error: final predicates={:?}", predicates);
522 ty::ParamEnv::new(tcx.mk_clauses(&predicates))
523}
524525#[derive(#[automatically_derived]
impl ::core::fmt::Debug for EvaluateConstErr {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
EvaluateConstErr::HasGenericsOrInfers =>
::core::fmt::Formatter::write_str(f, "HasGenericsOrInfers"),
EvaluateConstErr::InvalidConstParamTy(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"InvalidConstParamTy", &__self_0),
EvaluateConstErr::EvaluationFailure(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"EvaluationFailure", &__self_0),
}
}
}Debug)]
526pub enum EvaluateConstErr {
527/// The constant being evaluated was either a generic parameter or inference variable, *or*,
528 /// some alias const with either generic parameters or inference variables in its
529 /// generic arguments.
530HasGenericsOrInfers,
531/// The type this constant evaluated to is not valid for use in const generics. This should
532 /// always result in an error when checking the constant is correctly typed for the parameter
533 /// it is an argument to, so a bug is delayed when encountering this.
534InvalidConstParamTy(ErrorGuaranteed),
535/// CTFE failed to evaluate the constant in some unrecoverable way (e.g. encountered a `panic!`).
536 /// This is also used when the constant was already tainted by error.
537EvaluationFailure(ErrorGuaranteed),
538}
539540// FIXME(BoxyUwU): Private this once we `generic_const_exprs` isn't doing its own normalization routine
541// FIXME(generic_const_exprs): Consider accepting a `ty::AliasConst` when we are not rolling our own
542// normalization scheme
543/// Evaluates a type system constant returning a `ConstKind::Error` in cases where CTFE failed and
544/// returning the passed in constant if it was not fully concrete (i.e. depended on generic parameters
545/// or inference variables)
546///
547/// You should not call this function unless you are implementing normalization itself. Prefer to use
548/// `normalize_erasing_regions` or the `normalize` functions on `ObligationCtxt`/`FnCtxt`/`InferCtxt`.
549pub fn evaluate_const<'tcx>(
550 infcx: &InferCtxt<'tcx>,
551 ct: ty::Const<'tcx>,
552 param_env: ty::ParamEnv<'tcx>,
553) -> ty::Const<'tcx> {
554match try_evaluate_const(infcx, ct, param_env) {
555Ok(ct) => ct,
556Err(EvaluateConstErr::EvaluationFailure(e) | EvaluateConstErr::InvalidConstParamTy(e)) => {
557 ty::Const::new_error(infcx.tcx, e)
558 }
559Err(EvaluateConstErr::HasGenericsOrInfers) => ct,
560 }
561}
562563// FIXME(BoxyUwU): Private this once we `generic_const_exprs` isn't doing its own normalization routine
564// FIXME(generic_const_exprs): Consider accepting a `ty::AliasConst` when we are not rolling our own
565// normalization scheme
566/// Evaluates a type system constant making sure to not allow constants that depend on generic parameters
567/// or inference variables to succeed in evaluating.
568///
569/// You should not call this function unless you are implementing normalization itself. Prefer to use
570/// `normalize_erasing_regions` or the `normalize` functions on `ObligationCtxt`/`FnCtxt`/`InferCtxt`.
571x;#[instrument(level = "debug", skip(infcx), ret)]572pub fn try_evaluate_const<'tcx>(
573 infcx: &InferCtxt<'tcx>,
574 ct: ty::Const<'tcx>,
575 param_env: ty::ParamEnv<'tcx>,
576) -> Result<ty::Const<'tcx>, EvaluateConstErr> {
577let tcx = infcx.tcx;
578let ct = infcx.resolve_vars_if_possible(ct);
579debug!(?ct);
580581match ct.kind() {
582 ty::ConstKind::Value(..) => Ok(ct),
583 ty::ConstKind::Error(e) => Err(EvaluateConstErr::EvaluationFailure(e)),
584 ty::ConstKind::Param(_)
585 | ty::ConstKind::Infer(_)
586 | ty::ConstKind::Bound(_, _)
587 | ty::ConstKind::Placeholder(_)
588 | ty::ConstKind::Expr(_) => Err(EvaluateConstErr::HasGenericsOrInfers),
589 ty::ConstKind::Alias(_, alias_const) => {
590let opt_anon_const_kind = match alias_const.kind {
591 ty::AliasConstKind::Anon { def_id } => Some((def_id, tcx.anon_const_kind(def_id))),
592_ => None,
593 };
594595// Postpone evaluation of constants that depend on generic parameters or
596 // inference variables.
597 //
598 // We use `TypingMode::PostAnalysis` here which is not *technically* correct
599 // to be revealing opaque types here as borrowcheck has not run yet. However,
600 // CTFE itself uses `TypingMode::PostAnalysis` unconditionally even during
601 // typeck and not doing so has a lot of (undesirable) fallout (#101478, #119821).
602 // As a result we always use a revealed env when resolving the instance to evaluate.
603 //
604 // FIXME: `const_eval_resolve_for_typeck` should probably just modify the env itself
605 // instead of having this logic here
606let (args, typing_env) = match opt_anon_const_kind {
607// We handle `generic_const_exprs` separately as reasonable ways of handling constants in the type system
608 // completely fall apart under `generic_const_exprs` and makes this whole function Really hard to reason
609 // about if you have to consider gce whatsoever.
610Some((def_id, ty::AnonConstKind::GCE)) => {
611if alias_const.has_non_region_infer() || alias_const.has_non_region_param() {
612// `feature(generic_const_exprs)` causes anon consts to inherit all parent generics. This can cause
613 // inference variables and generic parameters to show up in `ty::Const` even though the anon const
614 // does not actually make use of them. We handle this case specially and attempt to evaluate anyway.
615match tcx.thir_abstract_const(def_id) {
616Ok(Some(ct)) => {
617let ct = tcx.expand_abstract_consts(
618 ct.instantiate(tcx, alias_const.args).skip_norm_wip(),
619 );
620if let Err(e) = ct.error_reported() {
621return Err(EvaluateConstErr::EvaluationFailure(e));
622 } else if ct.has_non_region_infer() || ct.has_non_region_param() {
623// If the anon const *does* actually use generic parameters or inference variables from
624 // the generic arguments provided for it, then we should *not* attempt to evaluate it.
625return Err(EvaluateConstErr::HasGenericsOrInfers);
626 } else {
627let args = replace_param_and_infer_args_with_placeholder(
628 tcx,
629 alias_const.args,
630 );
631let typing_env = infcx
632 .typing_env(tcx.erase_and_anonymize_regions(param_env))
633 .with_post_analysis_normalized(tcx);
634 (args, typing_env)
635 }
636 }
637Err(_) | Ok(None) => {
638let args = GenericArgs::identity_for_item(tcx, def_id);
639let typing_env = ty::TypingEnv::post_analysis(tcx, def_id);
640 (args, typing_env)
641 }
642 }
643 } else {
644let typing_env = infcx
645 .typing_env(tcx.erase_and_anonymize_regions(param_env))
646 .with_post_analysis_normalized(tcx);
647 (alias_const.args, typing_env)
648 }
649 }
650Some((def_id, ty::AnonConstKind::RepeatExprCount)) => {
651if alias_const.has_non_region_infer() {
652// Diagnostics will sometimes replace the identity args of anon consts in
653 // array repeat expr counts with inference variables so we have to handle this
654 // even though it is not something we should ever actually encounter.
655 //
656 // Array repeat expr counts are allowed to syntactically use generic parameters
657 // but must not actually depend on them in order to evalaute successfully. This means
658 // that it is actually fine to evalaute them in their own environment rather than with
659 // the actually provided generic arguments.
660tcx.dcx().delayed_bug("AnonConst with infer args but no error reported");
661 }
662663// The generic args of repeat expr counts under `min_const_generics` are not supposed to
664 // affect evaluation of the constant as this would make it a "truly" generic const arg.
665 // To prevent this we discard all the generic arguments and evalaute with identity args
666 // and in its own environment instead of the current environment we are normalizing in.
667let args = GenericArgs::identity_for_item(tcx, def_id);
668let typing_env = ty::TypingEnv::post_analysis(tcx, def_id);
669670 (args, typing_env)
671 }
672Some((_, ty::AnonConstKind::MCG))
673 | Some((_, ty::AnonConstKind::NonTypeSystem))
674 | None => {
675// We are only dealing with "truly" generic/uninferred constants here:
676 // - GCEConsts have been handled separately
677 // - Repeat expr count back compat consts have also been handled separately
678 // So we are free to simply defer evaluation here.
679 //
680 // FIXME: This assumes that `args` are normalized which is not necessarily true
681 //
682 // Const patterns are converted to type system constants before being
683 // evaluated. However, we don't care about them here as pattern evaluation
684 // logic does not go through type system normalization. If it did this would
685 // be a backwards compatibility problem as we do not enforce "syntactic" non-
686 // usage of generic parameters like we do here.
687if alias_const.args.has_non_region_param()
688 || alias_const.args.has_non_region_infer()
689 || alias_const.args.has_non_region_placeholders()
690 {
691return Err(EvaluateConstErr::HasGenericsOrInfers);
692 }
693694// Since there is no generic parameter, we can just drop the environment
695 // to prevent query cycle.
696let typing_env = ty::TypingEnv::fully_monomorphized();
697698 (alias_const.args, typing_env)
699 }
700 };
701702let alias_const = ty::AliasConst::new(tcx, alias_const.kind, args);
703let erased_alias_const = tcx.erase_and_anonymize_regions(alias_const);
704705use rustc_middle::mir::interpret::ErrorHandled;
706// FIXME: `def_span` will point at the definition of this const; ideally, we'd point at
707 // where it gets used as a const generic.
708let span = alias_const.kind.def_span(tcx);
709match tcx.const_eval_resolve_for_typeck(typing_env, erased_alias_const, span) {
710Ok(Ok(val)) => {
711Ok(ty::Const::new_value(tcx, val, alias_const.type_of(tcx).skip_norm_wip()))
712 }
713Ok(Err(_)) => {
714let e = tcx.dcx().delayed_bug(
715"Type system constant with non valtree'able type evaluated but no error emitted",
716 );
717Err(EvaluateConstErr::InvalidConstParamTy(e))
718 }
719Err(ErrorHandled::Reported(info, _)) => {
720Err(EvaluateConstErr::EvaluationFailure(info.into()))
721 }
722Err(ErrorHandled::TooGeneric(_)) => Err(EvaluateConstErr::HasGenericsOrInfers),
723 }
724 }
725 }
726}
727728/// Replaces args that reference param or infer variables with suitable
729/// placeholders. This function is meant to remove these param and infer
730/// args when they're not actually needed to evaluate a constant.
731fn replace_param_and_infer_args_with_placeholder<'tcx>(
732 tcx: TyCtxt<'tcx>,
733 args: GenericArgsRef<'tcx>,
734) -> GenericArgsRef<'tcx> {
735struct ReplaceParamAndInferWithPlaceholder<'tcx> {
736 tcx: TyCtxt<'tcx>,
737 idx: ty::BoundVar,
738 }
739740impl<'tcx> TypeFolder<TyCtxt<'tcx>> for ReplaceParamAndInferWithPlaceholder<'tcx> {
741fn cx(&self) -> TyCtxt<'tcx> {
742self.tcx
743 }
744745fn fold_ty(&mut self, t: Ty<'tcx>) -> Ty<'tcx> {
746if let ty::Infer(_) = t.kind() {
747let idx = self.idx;
748self.idx += 1;
749Ty::new_placeholder(
750self.tcx,
751 ty::PlaceholderType::new(
752 ty::UniverseIndex::ROOT,
753 ty::BoundTy { var: idx, kind: ty::BoundTyKind::Anon },
754 ),
755 )
756 } else {
757t.super_fold_with(self)
758 }
759 }
760761fn fold_const(&mut self, c: ty::Const<'tcx>) -> ty::Const<'tcx> {
762if let ty::ConstKind::Infer(_) = c.kind() {
763let idx = self.idx;
764self.idx += 1;
765 ty::Const::new_placeholder(
766self.tcx,
767 ty::PlaceholderConst::new(ty::UniverseIndex::ROOT, ty::BoundConst::new(idx)),
768 )
769 } else {
770c.super_fold_with(self)
771 }
772 }
773 }
774775args.fold_with(&mut ReplaceParamAndInferWithPlaceholder { tcx, idx: ty::BoundVar::ZERO })
776}
777778/// Normalizes the predicates and checks whether they hold in an empty environment. If this
779/// returns true, then either normalize encountered an error or one of the predicates did not
780/// hold. Used when creating vtables to check for unsatisfiable methods. This should not be
781/// used during analysis.
782pub fn impossible_predicates<'tcx>(tcx: TyCtxt<'tcx>, predicates: Vec<ty::Clause<'tcx>>) -> bool {
783{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:783",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(783u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("impossible_predicates(predicates={0:?})",
predicates) as &dyn Value))])
});
} else { ; }
};debug!("impossible_predicates(predicates={:?})", predicates);
784let (infcx, param_env) = tcx785 .infer_ctxt()
786 .with_next_trait_solver(true)
787 .build_with_typing_env(ty::TypingEnv::fully_monomorphized());
788789let ocx = ObligationCtxt::new(&infcx);
790let predicates =
791ocx.normalize(&ObligationCause::dummy(), param_env, Unnormalized::new_wip(predicates));
792for predicate in predicates {
793let obligation = Obligation::new(tcx, ObligationCause::dummy(), param_env, predicate);
794 ocx.register_obligation(obligation);
795 }
796797// Use `try_evaluate_obligations` to only return impossible for true errors,
798 // and not ambiguities or overflows. Since the new trait solver forces
799 // some currently undetected overlap between `dyn Trait: Trait` built-in
800 // vs user-written impls to AMBIGUOUS, this may return ambiguity even
801 // with no infer vars. There may also be ways to encounter ambiguity due
802 // to post-mono overflow.
803let true_errors = ocx.try_evaluate_obligations();
804if !true_errors.is_empty() {
805return true;
806 }
807808false
809}
810811fn instantiate_and_check_impossible_predicates<'tcx>(
812 tcx: TyCtxt<'tcx>,
813 key: (DefId, GenericArgsRef<'tcx>),
814) -> bool {
815{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:815",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(815u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("instantiate_and_check_impossible_predicates(key={0:?})",
key) as &dyn Value))])
});
} else { ; }
};debug!("instantiate_and_check_impossible_predicates(key={:?})", key);
816817let mut predicates: Vec<_> = tcx818 .predicates_of(key.0)
819 .instantiate(tcx, key.1)
820 .predicates
821 .into_iter()
822 .map(Unnormalized::skip_norm_wip)
823 .collect();
824825// Specifically check trait fulfillment to avoid an error when trying to resolve
826 // associated items.
827if let Some(trait_def_id) = tcx.trait_of_assoc(key.0) {
828let trait_ref = ty::TraitRef::from_assoc(tcx, trait_def_id, key.1);
829predicates.push(trait_ref.upcast(tcx));
830 }
831832predicates.retain(|predicate| !predicate.has_param());
833let result = impossible_predicates(tcx, predicates);
834835{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/mod.rs:835",
"rustc_trait_selection::traits", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/mod.rs"),
::tracing_core::__macro_support::Option::Some(835u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("instantiate_and_check_impossible_predicates(key={0:?}) = {1:?}",
key, result) as &dyn Value))])
});
} else { ; }
};debug!("instantiate_and_check_impossible_predicates(key={:?}) = {:?}", key, result);
836result837}
838839/// Checks whether a trait's associated item is impossible to reference on a given impl.
840///
841/// This only considers predicates that reference the impl's generics, and not
842/// those that reference the method's generics.
843fn is_impossible_associated_item(
844 tcx: TyCtxt<'_>,
845 (impl_def_id, trait_item_def_id): (DefId, DefId),
846) -> bool {
847struct ReferencesOnlyParentGenerics<'tcx> {
848 tcx: TyCtxt<'tcx>,
849 generics: &'tcx ty::Generics,
850 trait_item_def_id: DefId,
851 }
852impl<'tcx> ty::TypeVisitor<TyCtxt<'tcx>> for ReferencesOnlyParentGenerics<'tcx> {
853type Result = ControlFlow<()>;
854fn visit_ty(&mut self, t: Ty<'tcx>) -> Self::Result {
855// If this is a parameter from the trait item's own generics, then bail
856if let ty::Param(param) = *t.kind()
857 && let param_def_id = self.generics.type_param(param, self.tcx).def_id
858 && self.tcx.parent(param_def_id) == self.trait_item_def_id
859 {
860return ControlFlow::Break(());
861 }
862t.super_visit_with(self)
863 }
864fn visit_region(&mut self, r: ty::Region<'tcx>) -> Self::Result {
865if let ty::ReEarlyParam(param) = r.kind()
866 && let param_def_id = self.generics.region_param(param, self.tcx).def_id
867 && self.tcx.parent(param_def_id) == self.trait_item_def_id
868 {
869return ControlFlow::Break(());
870 }
871 ControlFlow::Continue(())
872 }
873fn visit_const(&mut self, ct: ty::Const<'tcx>) -> Self::Result {
874if let ty::ConstKind::Param(param) = ct.kind()
875 && let param_def_id = self.generics.const_param(param, self.tcx).def_id
876 && self.tcx.parent(param_def_id) == self.trait_item_def_id
877 {
878return ControlFlow::Break(());
879 }
880ct.super_visit_with(self)
881 }
882 }
883884let generics = tcx.generics_of(trait_item_def_id);
885let predicates = tcx.predicates_of(trait_item_def_id);
886887// Be conservative in cases where we have `W<T: ?Sized>` and a method like `Self: Sized`,
888 // since that method *may* have some substitutions where the predicates hold.
889 //
890 // This replicates the logic we use in coherence.
891let infcx = tcx892 .infer_ctxt()
893 .ignoring_regions()
894 .with_next_trait_solver(true)
895 .build(TypingMode::Coherence);
896let param_env = ty::ParamEnv::empty();
897let fresh_args = infcx.fresh_args_for_item(tcx.def_span(impl_def_id), impl_def_id);
898899let impl_trait_ref =
900tcx.impl_trait_ref(impl_def_id).instantiate(tcx, fresh_args).skip_norm_wip();
901902let mut visitor = ReferencesOnlyParentGenerics { tcx, generics, trait_item_def_id };
903let predicates_for_trait = predicates.predicates.iter().filter_map(|(pred, span)| {
904pred.visit_with(&mut visitor).is_continue().then(|| {
905Obligation::new(
906tcx,
907ObligationCause::dummy_with_span(*span),
908param_env,
909 ty::EarlyBinder::bind(tcx, *pred)
910 .instantiate(tcx, impl_trait_ref.args)
911 .skip_norm_wip(),
912 )
913 })
914 });
915916let ocx = ObligationCtxt::new(&infcx);
917ocx.register_obligations(predicates_for_trait);
918 !ocx.try_evaluate_obligations().is_empty()
919}
920921pub fn provide(providers: &mut Providers) {
922 dyn_compatibility::provide(providers);
923 vtable::provide(providers);
924*providers = Providers {
925 specialization_graph_of: specialize::specialization_graph_provider,
926 specializes: specialize::specializes,
927 specialization_enabled_in: specialize::specialization_enabled_in,
928instantiate_and_check_impossible_predicates,
929is_impossible_associated_item,
930 ..*providers931 };
932}