1use std::collections::hash_map::Entry;
2use std::slice;
3
4use rustc_abi::FieldIdx;
5use rustc_data_structures::fx::FxHashSet;
6use rustc_errors::{
7 Applicability, Diag, DiagCtxtHandle, Diagnostic, ErrorGuaranteed, Level, MultiSpan,
8};
9use rustc_hir::def::{CtorOf, DefKind, Res};
10use rustc_hir::def_id::DefId;
11use rustc_hir::intravisit::VisitorExt;
12use rustc_hir::lang_items::LangItem;
13use rustc_hir::{self as hir, AmbigArg, ExprKind, GenericArg, HirId, Node, QPath, intravisit};
14use rustc_hir_analysis::hir_ty_lowering::errors::GenericsArgsErrExtend;
15use rustc_hir_analysis::hir_ty_lowering::generics::{
16 check_generic_arg_count_for_call, lower_generic_args,
17};
18use rustc_hir_analysis::hir_ty_lowering::{
19 ExplicitLateBound, GenericArgCountMismatch, GenericArgCountResult, GenericArgsLowerer,
20 GenericPathSegment, HirTyLowerer, IsMethodCall, RegionInferReason,
21};
22use rustc_infer::infer::canonical::{Canonical, OriginalQueryValues, QueryResponse};
23use rustc_infer::infer::{DefineOpaqueTypes, InferResult};
24use rustc_lint::builtin::SELF_CONSTRUCTOR_FROM_OUTER_ITEM;
25use rustc_middle::ty::adjustment::{
26 Adjust, Adjustment, AutoBorrow, AutoBorrowMutability, DerefAdjustKind,
27};
28use rustc_middle::ty::{
29 self, AdtKind, CanonicalUserType, GenericArgsRef, GenericParamDefKind, IsIdentity,
30 SizedTraitKind, Ty, TyCtxt, TypeFoldable, TypeVisitable, TypeVisitableExt, UserArgs,
31 UserSelfTy,
32};
33use rustc_middle::{bug, span_bug};
34use rustc_session::lint;
35use rustc_span::Span;
36use rustc_span::def_id::LocalDefId;
37use rustc_span::hygiene::DesugaringKind;
38use rustc_trait_selection::error_reporting::infer::need_type_info::TypeAnnotationNeeded;
39use rustc_trait_selection::traits::{
40 self, NormalizeExt, ObligationCauseCode, StructurallyNormalizeExt,
41};
42use tracing::{debug, instrument};
43
44use crate::callee::{self, DeferredCallResolution};
45use crate::errors::{self, CtorIsPrivate};
46use crate::method::{self, MethodCallee};
47use crate::{BreakableCtxt, Diverges, Expectation, FnCtxt, LoweredTy};
48
49impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
50 pub(crate) fn transform_args_for_inherent_type_const(
56 &self,
57 def_id: DefId,
58 args: GenericArgsRef<'tcx>,
59 ) -> GenericArgsRef<'tcx> {
60 let tcx = self.tcx;
61 if !tcx.is_type_const(def_id) {
62 return args;
63 }
64 let Some(assoc_item) = tcx.opt_associated_item(def_id) else {
65 return args;
66 };
67 if !#[allow(non_exhaustive_omitted_patterns)] match assoc_item.container {
ty::AssocContainer::InherentImpl => true,
_ => false,
}matches!(assoc_item.container, ty::AssocContainer::InherentImpl) {
68 return args;
69 }
70
71 let impl_def_id = assoc_item.container_id(tcx);
72 let generics = tcx.generics_of(def_id);
73 let impl_args = &args[..generics.parent_count];
74 let self_ty = tcx.type_of(impl_def_id).instantiate(tcx, impl_args);
75 let own_args = &args[generics.parent_count..];
77 tcx.mk_args_from_iter(
78 std::iter::once(ty::GenericArg::from(self_ty)).chain(own_args.iter().copied()),
79 )
80 }
81
82 pub(crate) fn warn_if_unreachable(&self, id: HirId, span: Span, kind: &str) {
85 struct UnreachableItem<'a, 'b> {
86 kind: &'a str,
87 span: Span,
88 orig_span: Span,
89 custom_note: Option<&'b str>,
90 }
91
92 impl<'a, 'b, 'c> Diagnostic<'a, ()> for UnreachableItem<'b, 'c> {
93 fn into_diag(self, dcx: DiagCtxtHandle<'a>, level: Level) -> Diag<'a, ()> {
94 let Self { kind, span, orig_span, custom_note } = self;
95 let msg = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("unreachable {0}", kind))
})format!("unreachable {kind}");
96 Diag::new(dcx, level, msg.clone()).with_span_label(span, msg).with_span_label(
97 orig_span,
98 custom_note.map(|c| c.to_owned()).unwrap_or_else(|| {
99 "any code following this expression is unreachable".to_owned()
100 }),
101 )
102 }
103 }
104
105 let Diverges::Always { span: orig_span, custom_note } = self.diverges.get() else {
106 return;
107 };
108
109 match span.desugaring_kind() {
110 Some(DesugaringKind::Async) => return,
113
114 Some(DesugaringKind::Await) => return,
118
119 _ => {}
120 }
121
122 if self.tcx.is_automatically_derived(self.tcx.parent(id.owner.def_id.into())) {
125 return;
126 }
127
128 self.diverges.set(Diverges::WarnedAlways);
130
131 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs:131",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(131u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::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!("warn_if_unreachable: id={0:?} span={1:?} kind={2}",
id, span, kind) as &dyn Value))])
});
} else { ; }
};debug!("warn_if_unreachable: id={:?} span={:?} kind={}", id, span, kind);
132
133 self.tcx().emit_node_span_lint(
134 lint::builtin::UNREACHABLE_CODE,
135 id,
136 span,
137 UnreachableItem { kind, span, orig_span, custom_note },
138 );
139 }
140
141 x;#[instrument(skip(self), level = "debug", ret)]
148 pub(crate) fn resolve_vars_with_obligations<T: TypeFoldable<TyCtxt<'tcx>>>(
149 &self,
150 mut t: T,
151 ) -> T {
152 if !t.has_non_region_infer() {
154 debug!("no inference var, nothing needs doing");
155 return t;
156 }
157
158 t = self.resolve_vars_if_possible(t);
160 if !t.has_non_region_infer() {
161 debug!(?t);
162 return t;
163 }
164
165 self.select_obligations_where_possible(|_| {});
170 self.resolve_vars_if_possible(t)
171 }
172
173 pub(crate) fn record_deferred_call_resolution(
174 &self,
175 closure_def_id: LocalDefId,
176 r: DeferredCallResolution<'tcx>,
177 ) {
178 let mut deferred_call_resolutions = self.deferred_call_resolutions.borrow_mut();
179 deferred_call_resolutions.entry(closure_def_id).or_default().push(r);
180 }
181
182 pub(crate) fn remove_deferred_call_resolutions(
183 &self,
184 closure_def_id: LocalDefId,
185 ) -> Vec<DeferredCallResolution<'tcx>> {
186 let mut deferred_call_resolutions = self.deferred_call_resolutions.borrow_mut();
187 deferred_call_resolutions.remove(&closure_def_id).unwrap_or_default()
188 }
189
190 fn tag(&self) -> String {
191 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0:p}", self))
})format!("{self:p}")
192 }
193
194 pub(crate) fn local_ty(&self, span: Span, nid: HirId) -> Ty<'tcx> {
195 self.locals.borrow().get(&nid).cloned().unwrap_or_else(|| {
196 ::rustc_middle::util::bug::span_bug_fmt(span,
format_args!("no type for local variable {0}",
self.tcx.hir_id_to_string(nid)))span_bug!(span, "no type for local variable {}", self.tcx.hir_id_to_string(nid))
197 })
198 }
199
200 #[inline]
201 pub(crate) fn write_ty(&self, id: HirId, ty: Ty<'tcx>) {
202 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs:202",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(202u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::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!("write_ty({0:?}, {1:?}) in fcx {2}",
id, self.resolve_vars_if_possible(ty), self.tag()) as
&dyn Value))])
});
} else { ; }
};debug!("write_ty({:?}, {:?}) in fcx {}", id, self.resolve_vars_if_possible(ty), self.tag());
203 let mut typeck = self.typeck_results.borrow_mut();
204 let mut node_ty = typeck.node_types_mut();
205
206 if let Some(prev) = node_ty.insert(id, ty) {
207 if prev.references_error() {
208 node_ty.insert(id, prev);
209 } else if !ty.references_error() {
210 self.dcx().span_delayed_bug(
215 self.tcx.hir_span(id),
216 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("`{1}` overridden by `{2}` for {3:?} in {0:?}",
self.body_id, prev, ty, id))
})format!("`{prev}` overridden by `{ty}` for {id:?} in {:?}", self.body_id),
217 );
218 }
219 }
220
221 if let Err(e) = ty.error_reported() {
222 self.set_tainted_by_errors(e);
223 }
224 }
225
226 pub(crate) fn write_field_index(&self, hir_id: HirId, index: FieldIdx) {
227 self.typeck_results.borrow_mut().field_indices_mut().insert(hir_id, index);
228 }
229
230 #[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("write_resolution",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(230u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::tracing_core::field::FieldSet::new(&["hir_id", "r"],
::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(&hir_id)
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(&r)
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;
}
{
self.typeck_results.borrow_mut().type_dependent_defs_mut().insert(hir_id,
r);
}
}
}#[instrument(level = "debug", skip(self))]
231 pub(crate) fn write_resolution(
232 &self,
233 hir_id: HirId,
234 r: Result<(DefKind, DefId), ErrorGuaranteed>,
235 ) {
236 self.typeck_results.borrow_mut().type_dependent_defs_mut().insert(hir_id, r);
237 }
238
239 #[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("write_method_call_and_enforce_effects",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(239u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::tracing_core::field::FieldSet::new(&["hir_id", "span",
"method"],
::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(&hir_id)
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(&span)
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(&method)
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;
}
{
self.enforce_context_effects(Some(hir_id), span, method.def_id,
method.args);
self.write_resolution(hir_id,
Ok((DefKind::AssocFn, method.def_id)));
self.write_args(hir_id, method.args);
}
}
}#[instrument(level = "debug", skip(self))]
240 pub(crate) fn write_method_call_and_enforce_effects(
241 &self,
242 hir_id: HirId,
243 span: Span,
244 method: MethodCallee<'tcx>,
245 ) {
246 self.enforce_context_effects(Some(hir_id), span, method.def_id, method.args);
247 self.write_resolution(hir_id, Ok((DefKind::AssocFn, method.def_id)));
248 self.write_args(hir_id, method.args);
249 }
250
251 fn write_args(&self, node_id: HirId, args: GenericArgsRef<'tcx>) {
252 if !args.is_empty() {
253 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs:253",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(253u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::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!("write_args({0:?}, {1:?}) in fcx {2}",
node_id, args, self.tag()) as &dyn Value))])
});
} else { ; }
};debug!("write_args({:?}, {:?}) in fcx {}", node_id, args, self.tag());
254
255 self.typeck_results.borrow_mut().node_args_mut().insert(node_id, args);
256 }
257 }
258
259 #[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("write_user_type_annotation_from_args",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(266u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::tracing_core::field::FieldSet::new(&["hir_id", "def_id",
"args", "user_self_ty"],
::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(&hir_id)
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(&def_id)
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(&args)
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(&user_self_ty)
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;
}
{
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs:274",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(274u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::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!("fcx {0}",
self.tag()) as &dyn Value))])
});
} else { ; }
};
if self.tcx.def_kind(def_id) == DefKind::ConstParam { return; }
if Self::can_contain_user_lifetime_bounds((args, user_self_ty)) {
let canonicalized =
self.canonicalize_user_type_annotation(ty::UserType::new(ty::UserTypeKind::TypeOf(def_id,
UserArgs { args, user_self_ty })));
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs:287",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(287u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::tracing_core::field::FieldSet::new(&["canonicalized"],
::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(&debug(&canonicalized)
as &dyn Value))])
});
} else { ; }
};
self.write_user_type_annotation(hir_id, canonicalized);
}
}
}
}#[instrument(skip(self), level = "debug")]
267 pub(crate) fn write_user_type_annotation_from_args(
268 &self,
269 hir_id: HirId,
270 def_id: DefId,
271 args: GenericArgsRef<'tcx>,
272 user_self_ty: Option<UserSelfTy<'tcx>>,
273 ) {
274 debug!("fcx {}", self.tag());
275
276 if self.tcx.def_kind(def_id) == DefKind::ConstParam {
280 return;
281 }
282
283 if Self::can_contain_user_lifetime_bounds((args, user_self_ty)) {
284 let canonicalized = self.canonicalize_user_type_annotation(ty::UserType::new(
285 ty::UserTypeKind::TypeOf(def_id, UserArgs { args, user_self_ty }),
286 ));
287 debug!(?canonicalized);
288 self.write_user_type_annotation(hir_id, canonicalized);
289 }
290 }
291
292 #[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("write_user_type_annotation",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(292u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::tracing_core::field::FieldSet::new(&["hir_id",
"canonical_user_type_annotation"],
::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(&hir_id)
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(&canonical_user_type_annotation)
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;
}
{
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs:298",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(298u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::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!("fcx {0}",
self.tag()) as &dyn Value))])
});
} else { ; }
};
if !canonical_user_type_annotation.is_identity() {
self.typeck_results.borrow_mut().user_provided_types_mut().insert(hir_id,
canonical_user_type_annotation);
} 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_hir_typeck/src/fn_ctxt/_impl.rs:307",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(307u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::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!("skipping identity args")
as &dyn Value))])
});
} else { ; }
};
}
}
}
}#[instrument(skip(self), level = "debug")]
293 pub(crate) fn write_user_type_annotation(
294 &self,
295 hir_id: HirId,
296 canonical_user_type_annotation: CanonicalUserType<'tcx>,
297 ) {
298 debug!("fcx {}", self.tag());
299
300 if !canonical_user_type_annotation.is_identity() {
302 self.typeck_results
303 .borrow_mut()
304 .user_provided_types_mut()
305 .insert(hir_id, canonical_user_type_annotation);
306 } else {
307 debug!("skipping identity args");
308 }
309 }
310
311 #[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("apply_adjustments",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(311u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::tracing_core::field::FieldSet::new(&["adj"],
::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(&adj)
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;
}
{
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs:313",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(313u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::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!("expr = {0:#?}",
expr) as &dyn Value))])
});
} else { ; }
};
if adj.is_empty() { return; }
let mut expr_ty =
self.typeck_results.borrow().expr_ty_adjusted(expr);
for a in &adj {
match a.kind {
Adjust::NeverToAny => {
if a.target.is_ty_var() {
self.diverging_type_vars.borrow_mut().insert(a.target);
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs:326",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(326u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::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!("apply_adjustments: adding `{0:?}` as diverging type var",
a.target) as &dyn Value))])
});
} else { ; }
};
}
}
Adjust::Deref(DerefAdjustKind::Overloaded(overloaded_deref))
=> {
self.enforce_context_effects(None, expr.span,
overloaded_deref.method_call(self.tcx),
self.tcx.mk_args(&[expr_ty.into()]));
}
Adjust::Deref(DerefAdjustKind::Builtin) => {}
Adjust::Deref(DerefAdjustKind::Pin) => {}
Adjust::Pointer(_pointer_coercion) => {}
Adjust::Borrow(_) => {}
}
expr_ty = a.target;
}
let autoborrow_mut =
adj.iter().any(|adj|
{
#[allow(non_exhaustive_omitted_patterns)]
match adj {
&Adjustment {
kind: Adjust::Borrow(AutoBorrow::Ref(AutoBorrowMutability::Mut {
.. })), .. } => true,
_ => false,
}
});
match self.typeck_results.borrow_mut().adjustments_mut().entry(expr.hir_id)
{
Entry::Vacant(entry) => { entry.insert(adj); }
Entry::Occupied(mut entry) => {
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs:369",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(369u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::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!(" - composing on top of {0:?}",
entry.get()) as &dyn Value))])
});
} else { ; }
};
match (&mut entry.get_mut()[..], &adj[..]) {
([Adjustment { kind: Adjust::NeverToAny, target }],
&[.., Adjustment { target: new_target, .. }]) => {
*target = new_target;
}
(&mut [Adjustment { kind: Adjust::Deref(_), .. },
Adjustment { kind: Adjust::Borrow(AutoBorrow::Ref(..)), ..
}], &[Adjustment { kind: Adjust::Deref(_), .. }, ..]) => {
*entry.get_mut() = adj;
}
_ => {
self.dcx().span_delayed_bug(expr.span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("while adjusting {0:?}, can\'t compose {1:?} and {2:?}",
expr, entry.get(), adj))
}));
*entry.get_mut() = adj;
}
}
}
}
if autoborrow_mut { self.convert_place_derefs_to_mutable(expr); }
}
}
}#[instrument(skip(self, expr), level = "debug")]
312 pub(crate) fn apply_adjustments(&self, expr: &hir::Expr<'_>, adj: Vec<Adjustment<'tcx>>) {
313 debug!("expr = {:#?}", expr);
314
315 if adj.is_empty() {
316 return;
317 }
318
319 let mut expr_ty = self.typeck_results.borrow().expr_ty_adjusted(expr);
320
321 for a in &adj {
322 match a.kind {
323 Adjust::NeverToAny => {
324 if a.target.is_ty_var() {
325 self.diverging_type_vars.borrow_mut().insert(a.target);
326 debug!("apply_adjustments: adding `{:?}` as diverging type var", a.target);
327 }
328 }
329 Adjust::Deref(DerefAdjustKind::Overloaded(overloaded_deref)) => {
330 self.enforce_context_effects(
331 None,
332 expr.span,
333 overloaded_deref.method_call(self.tcx),
334 self.tcx.mk_args(&[expr_ty.into()]),
335 );
336 }
337 Adjust::Deref(DerefAdjustKind::Builtin) => {
338 }
340 Adjust::Deref(DerefAdjustKind::Pin) => {
341 }
343 Adjust::Pointer(_pointer_coercion) => {
344 }
346 Adjust::Borrow(_) => {
347 }
349 }
350
351 expr_ty = a.target;
352 }
353
354 let autoborrow_mut = adj.iter().any(|adj| {
355 matches!(
356 adj,
357 &Adjustment {
358 kind: Adjust::Borrow(AutoBorrow::Ref(AutoBorrowMutability::Mut { .. })),
359 ..
360 }
361 )
362 });
363
364 match self.typeck_results.borrow_mut().adjustments_mut().entry(expr.hir_id) {
365 Entry::Vacant(entry) => {
366 entry.insert(adj);
367 }
368 Entry::Occupied(mut entry) => {
369 debug!(" - composing on top of {:?}", entry.get());
370 match (&mut entry.get_mut()[..], &adj[..]) {
371 (
372 [Adjustment { kind: Adjust::NeverToAny, target }],
373 &[.., Adjustment { target: new_target, .. }],
374 ) => {
375 *target = new_target;
383 }
384
385 (
386 &mut [
387 Adjustment { kind: Adjust::Deref(_), .. },
388 Adjustment { kind: Adjust::Borrow(AutoBorrow::Ref(..)), .. },
389 ],
390 &[
391 Adjustment { kind: Adjust::Deref(_), .. },
392 .., ],
394 ) => {
395 *entry.get_mut() = adj;
397 }
398
399 _ => {
400 self.dcx().span_delayed_bug(
403 expr.span,
404 format!(
405 "while adjusting {:?}, can't compose {:?} and {:?}",
406 expr,
407 entry.get(),
408 adj
409 ),
410 );
411
412 *entry.get_mut() = adj;
413 }
414 }
415 }
416 }
417
418 if autoborrow_mut {
422 self.convert_place_derefs_to_mutable(expr);
423 }
424 }
425
426 pub(crate) fn instantiate_bounds(
428 &self,
429 span: Span,
430 def_id: DefId,
431 args: GenericArgsRef<'tcx>,
432 ) -> ty::InstantiatedPredicates<'tcx> {
433 let bounds = self.tcx.predicates_of(def_id);
434 let result = bounds.instantiate(self.tcx, args);
435 let result = self.normalize(span, result);
436 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs:436",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(436u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::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_bounds(bounds={0:?}, args={1:?}) = {2:?}",
bounds, args, result) as &dyn Value))])
});
} else { ; }
};debug!("instantiate_bounds(bounds={:?}, args={:?}) = {:?}", bounds, args, result);
437 result
438 }
439
440 pub(crate) fn normalize<T>(&self, span: Span, value: T) -> T
441 where
442 T: TypeFoldable<TyCtxt<'tcx>>,
443 {
444 self.register_infer_ok_obligations(
445 self.at(&self.misc(span), self.param_env).normalize(value),
446 )
447 }
448
449 pub(crate) fn require_type_meets(
450 &self,
451 ty: Ty<'tcx>,
452 span: Span,
453 code: traits::ObligationCauseCode<'tcx>,
454 def_id: DefId,
455 ) {
456 self.register_bound(ty, def_id, self.cause(span, code));
457 }
458
459 pub(crate) fn require_type_is_sized(
460 &self,
461 ty: Ty<'tcx>,
462 span: Span,
463 code: traits::ObligationCauseCode<'tcx>,
464 ) {
465 if !ty.references_error() {
466 let lang_item = self.tcx.require_lang_item(LangItem::Sized, span);
467 self.require_type_meets(ty, span, code, lang_item);
468 }
469 }
470
471 pub(crate) fn require_type_is_sized_deferred(
472 &self,
473 ty: Ty<'tcx>,
474 span: Span,
475 code: traits::ObligationCauseCode<'tcx>,
476 ) {
477 if !ty.references_error() {
478 self.deferred_sized_obligations.borrow_mut().push((ty, span, code));
479 }
480 }
481
482 pub(crate) fn require_type_has_static_alignment(&self, ty: Ty<'tcx>, span: Span) {
483 if !ty.references_error() {
484 let tail = self.tcx.struct_tail_raw(
485 ty,
486 &self.misc(span),
487 |ty| {
488 if self.next_trait_solver() {
489 self.try_structurally_resolve_type(span, ty)
490 } else {
491 self.normalize(span, ty)
492 }
493 },
494 || {},
495 );
496 if tail.has_trivial_sizedness(self.tcx, SizedTraitKind::Sized)
498 || #[allow(non_exhaustive_omitted_patterns)] match tail.kind() {
ty::Slice(..) => true,
_ => false,
}matches!(tail.kind(), ty::Slice(..))
499 {
500 } else {
502 let lang_item = self.tcx.require_lang_item(LangItem::Sized, span);
504 self.require_type_meets(ty, span, ObligationCauseCode::Misc, lang_item);
505 }
506 }
507 }
508
509 pub(crate) fn register_bound(
510 &self,
511 ty: Ty<'tcx>,
512 def_id: DefId,
513 cause: traits::ObligationCause<'tcx>,
514 ) {
515 if !ty.references_error() {
516 self.fulfillment_cx.borrow_mut().register_bound(
517 self,
518 self.param_env,
519 ty,
520 def_id,
521 cause,
522 );
523 }
524 }
525
526 pub(crate) fn lower_ty(&self, hir_ty: &hir::Ty<'tcx>) -> LoweredTy<'tcx> {
527 let ty = self.lowerer().lower_ty(hir_ty);
528 self.register_wf_obligation(ty.into(), hir_ty.span, ObligationCauseCode::WellFormed(None));
529 LoweredTy::from_raw(self, hir_ty.span, ty)
530 }
531
532 pub(crate) fn collect_impl_trait_clauses_from_hir_ty(
536 &self,
537 hir_ty: &'tcx hir::Ty<'tcx>,
538 ) -> ty::Clauses<'tcx> {
539 struct CollectClauses<'a, 'tcx> {
540 clauses: Vec<ty::Clause<'tcx>>,
541 fcx: &'a FnCtxt<'a, 'tcx>,
542 }
543
544 impl<'tcx> intravisit::Visitor<'tcx> for CollectClauses<'_, 'tcx> {
545 fn visit_ty(&mut self, ty: &'tcx hir::Ty<'tcx, AmbigArg>) {
546 if let Some(clauses) = self.fcx.trait_ascriptions.borrow().get(&ty.hir_id.local_id)
547 {
548 self.clauses.extend(clauses.iter().cloned());
549 }
550 intravisit::walk_ty(self, ty)
551 }
552 }
553
554 let mut clauses = CollectClauses { clauses: ::alloc::vec::Vec::new()vec![], fcx: self };
555 clauses.visit_ty_unambig(hir_ty);
556 self.tcx.mk_clauses(&clauses.clauses)
557 }
558
559 #[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("lower_ty_saving_user_provided_ty",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(559u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::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(&[]) })
} 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<'tcx> = loop {};
return __tracing_attr_fake_return;
}
{
let ty = self.lower_ty(hir_ty);
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs:562",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(562u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::tracing_core::field::FieldSet::new(&["ty"],
::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(&debug(&ty) as
&dyn Value))])
});
} else { ; }
};
if Self::can_contain_user_lifetime_bounds(ty.raw) {
let c_ty =
self.canonicalize_response(ty::UserType::new(ty::UserTypeKind::Ty(ty.raw)));
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs:566",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(566u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::tracing_core::field::FieldSet::new(&["c_ty"],
::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(&debug(&c_ty) as
&dyn Value))])
});
} else { ; }
};
self.typeck_results.borrow_mut().user_provided_types_mut().insert(hir_ty.hir_id,
c_ty);
}
ty.normalized
}
}
}#[instrument(level = "debug", skip_all)]
560 pub(crate) fn lower_ty_saving_user_provided_ty(&self, hir_ty: &'tcx hir::Ty<'tcx>) -> Ty<'tcx> {
561 let ty = self.lower_ty(hir_ty);
562 debug!(?ty);
563
564 if Self::can_contain_user_lifetime_bounds(ty.raw) {
565 let c_ty = self.canonicalize_response(ty::UserType::new(ty::UserTypeKind::Ty(ty.raw)));
566 debug!(?c_ty);
567 self.typeck_results.borrow_mut().user_provided_types_mut().insert(hir_ty.hir_id, c_ty);
568 }
569
570 ty.normalized
571 }
572
573 pub(super) fn user_args_for_adt(ty: LoweredTy<'tcx>) -> UserArgs<'tcx> {
574 match (ty.raw.kind(), ty.normalized.kind()) {
575 (ty::Adt(_, args), _) => UserArgs { args, user_self_ty: None },
576 (_, ty::Adt(adt, args)) => UserArgs {
577 args,
578 user_self_ty: Some(UserSelfTy { impl_def_id: adt.did(), self_ty: ty.raw }),
579 },
580 _ => ::rustc_middle::util::bug::bug_fmt(format_args!("non-adt type {0:?}", ty))bug!("non-adt type {:?}", ty),
581 }
582 }
583
584 pub(crate) fn lower_const_arg(
585 &self,
586 const_arg: &'tcx hir::ConstArg<'tcx>,
587 ty: Ty<'tcx>,
588 ) -> ty::Const<'tcx> {
589 let ct = self.lowerer().lower_const_arg(const_arg, ty);
590 self.register_wf_obligation(
591 ct.into(),
592 self.tcx.hir_span(const_arg.hir_id),
593 ObligationCauseCode::WellFormed(None),
594 );
595 ct
596 }
597
598 fn can_contain_user_lifetime_bounds<T>(t: T) -> bool
606 where
607 T: TypeVisitable<TyCtxt<'tcx>>,
608 {
609 t.has_free_regions() || t.has_aliases() || t.has_infer_types() || t.has_param()
611 }
612
613 pub(crate) fn node_ty(&self, id: HirId) -> Ty<'tcx> {
614 match self.typeck_results.borrow().node_types().get(id) {
615 Some(&t) => t,
616 None if let Some(e) = self.tainted_by_errors() => Ty::new_error(self.tcx, e),
617 None => {
618 ::rustc_middle::util::bug::bug_fmt(format_args!("no type for node {0} in fcx {1}",
self.tcx.hir_id_to_string(id), self.tag()));bug!("no type for node {} in fcx {}", self.tcx.hir_id_to_string(id), self.tag());
619 }
620 }
621 }
622
623 pub(crate) fn node_ty_opt(&self, id: HirId) -> Option<Ty<'tcx>> {
624 match self.typeck_results.borrow().node_types().get(id) {
625 Some(&t) => Some(t),
626 None if let Some(e) = self.tainted_by_errors() => Some(Ty::new_error(self.tcx, e)),
627 None => None,
628 }
629 }
630
631 pub(crate) fn register_wf_obligation(
633 &self,
634 term: ty::Term<'tcx>,
635 span: Span,
636 code: traits::ObligationCauseCode<'tcx>,
637 ) {
638 let cause = self.cause(span, code);
640 self.register_predicate(traits::Obligation::new(
641 self.tcx,
642 cause,
643 self.param_env,
644 ty::ClauseKind::WellFormed(term),
645 ));
646 }
647
648 pub(crate) fn add_wf_bounds(&self, args: GenericArgsRef<'tcx>, span: Span) {
650 for term in args.iter().filter_map(ty::GenericArg::as_term) {
651 self.register_wf_obligation(term, span, ObligationCauseCode::WellFormed(None));
652 }
653 }
654
655 pub(crate) fn field_ty(
659 &self,
660 span: Span,
661 field: &'tcx ty::FieldDef,
662 args: GenericArgsRef<'tcx>,
663 ) -> Ty<'tcx> {
664 self.normalize(span, field.ty(self.tcx, args))
665 }
666
667 #[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("drain_stalled_coroutine_obligations",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(668u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::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(&[]) })
} 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;
}
{
self.select_obligations_where_possible(|_| {});
let ty::TypingMode::Analysis {
defining_opaque_types_and_generators } =
self.typing_mode() else {
::rustc_middle::util::bug::bug_fmt(format_args!("impossible case reached"));
};
if defining_opaque_types_and_generators.iter().any(|def_id|
self.tcx.is_coroutine(def_id.to_def_id())) {
self.typeck_results.borrow_mut().coroutine_stalled_predicates.extend(self.fulfillment_cx.borrow_mut().drain_stalled_obligations_for_coroutines(&self.infcx).into_iter().map(|o|
(o.predicate, o.cause)));
}
}
}
}#[instrument(level = "debug", skip(self))]
669 pub(crate) fn drain_stalled_coroutine_obligations(&self) {
670 self.select_obligations_where_possible(|_| {});
675
676 let ty::TypingMode::Analysis { defining_opaque_types_and_generators } = self.typing_mode()
677 else {
678 bug!();
679 };
680
681 if defining_opaque_types_and_generators
682 .iter()
683 .any(|def_id| self.tcx.is_coroutine(def_id.to_def_id()))
684 {
685 self.typeck_results.borrow_mut().coroutine_stalled_predicates.extend(
686 self.fulfillment_cx
687 .borrow_mut()
688 .drain_stalled_obligations_for_coroutines(&self.infcx)
689 .into_iter()
690 .map(|o| (o.predicate, o.cause)),
691 );
692 }
693 }
694
695 #[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("report_ambiguity_errors",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(695u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::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(&[]) })
} 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;
}
{
let mut errors =
self.fulfillment_cx.borrow_mut().collect_remaining_errors(self);
if !errors.is_empty() {
self.adjust_fulfillment_errors_for_expr_obligation(&mut errors);
self.err_ctxt().report_fulfillment_errors(errors);
}
}
}
}#[instrument(skip(self), level = "debug")]
696 pub(crate) fn report_ambiguity_errors(&self) {
697 let mut errors = self.fulfillment_cx.borrow_mut().collect_remaining_errors(self);
698
699 if !errors.is_empty() {
700 self.adjust_fulfillment_errors_for_expr_obligation(&mut errors);
701 self.err_ctxt().report_fulfillment_errors(errors);
702 }
703 }
704
705 pub(crate) fn select_obligations_where_possible(
707 &self,
708 mutate_fulfillment_errors: impl Fn(&mut Vec<traits::FulfillmentError<'tcx>>),
709 ) {
710 let mut result = self.fulfillment_cx.borrow_mut().try_evaluate_obligations(self);
711 if !result.is_empty() {
712 mutate_fulfillment_errors(&mut result);
713 self.adjust_fulfillment_errors_for_expr_obligation(&mut result);
714 self.err_ctxt().report_fulfillment_errors(result);
715 }
716 }
717
718 pub(crate) fn make_overloaded_place_return_type(&self, method: MethodCallee<'tcx>) -> Ty<'tcx> {
723 let ret_ty = method.sig.output();
725
726 ret_ty.builtin_deref(true).unwrap()
728 }
729
730 pub(crate) fn type_var_is_sized(&self, self_ty: ty::TyVid) -> bool {
731 let sized_did = self.tcx.lang_items().sized_trait();
732 self.obligations_for_self_ty(self_ty).into_iter().any(|obligation| {
733 match obligation.predicate.kind().skip_binder() {
734 ty::PredicateKind::Clause(ty::ClauseKind::Trait(data)) => {
735 Some(data.def_id()) == sized_did
736 }
737 _ => false,
738 }
739 })
740 }
741
742 pub(crate) fn err_args(&self, len: usize, guar: ErrorGuaranteed) -> Vec<Ty<'tcx>> {
743 let ty_error = Ty::new_error(self.tcx, guar);
744 ::alloc::vec::from_elem(ty_error, len)vec![ty_error; len]
745 }
746
747 x;#[instrument(level = "trace", skip(self), ret)]
750 pub(crate) fn resolve_ty_and_res_fully_qualified_call(
751 &self,
752 qpath: &'tcx QPath<'tcx>,
753 hir_id: HirId,
754 span: Span,
755 ) -> (Res, Option<LoweredTy<'tcx>>, &'tcx [hir::PathSegment<'tcx>]) {
756 let (ty, qself, item_segment) = match *qpath {
757 QPath::Resolved(ref opt_qself, path) => {
758 return (
759 path.res,
760 opt_qself.as_ref().map(|qself| self.lower_ty(qself)),
761 path.segments,
762 );
763 }
764 QPath::TypeRelative(ref qself, ref segment) => {
765 let ty = self.lowerer().lower_ty(qself);
775 (LoweredTy::from_raw(self, span, ty), qself, segment)
776 }
777 };
778
779 self.register_wf_obligation(
780 ty.raw.into(),
781 qself.span,
782 ObligationCauseCode::WellFormed(None),
783 );
784 self.select_obligations_where_possible(|_| {});
785
786 if let Some(&cached_result) = self.typeck_results.borrow().type_dependent_defs().get(hir_id)
787 {
788 let def = cached_result.map_or(Res::Err, |(kind, def_id)| Res::Def(kind, def_id));
791 return (def, Some(ty), slice::from_ref(&**item_segment));
792 }
793 let item_name = item_segment.ident;
794 let result = self
795 .resolve_fully_qualified_call(span, item_name, ty.normalized, qself.span, hir_id)
796 .or_else(|error| {
797 let guar = self
798 .dcx()
799 .span_delayed_bug(span, "method resolution should've emitted an error");
800 let result = match error {
801 method::MethodError::PrivateMatch(kind, def_id, _) => Ok((kind, def_id)),
802 _ => Err(guar),
803 };
804
805 let trait_missing_method =
806 matches!(error, method::MethodError::NoMatch(_)) && ty.normalized.is_trait();
807 self.report_method_error(
808 hir_id,
809 ty.normalized,
810 error,
811 Expectation::NoExpectation,
812 trait_missing_method && span.edition().at_least_rust_2021(), );
814
815 result
816 });
817
818 self.write_resolution(hir_id, result);
820 (
821 result.map_or(Res::Err, |(kind, def_id)| Res::Def(kind, def_id)),
822 Some(ty),
823 slice::from_ref(&**item_segment),
824 )
825 }
826
827 pub(crate) fn get_fn_decl(
829 &self,
830 blk_id: HirId,
831 ) -> Option<(LocalDefId, &'tcx hir::FnDecl<'tcx>)> {
832 self.tcx.hir_get_fn_id_for_return_block(blk_id).and_then(|item_id| {
835 match self.tcx.hir_node(item_id) {
836 Node::Item(&hir::Item {
837 kind: hir::ItemKind::Fn { sig, .. }, owner_id, ..
838 }) => Some((owner_id.def_id, sig.decl)),
839 Node::TraitItem(&hir::TraitItem {
840 kind: hir::TraitItemKind::Fn(ref sig, ..),
841 owner_id,
842 ..
843 }) => Some((owner_id.def_id, sig.decl)),
844 Node::ImplItem(&hir::ImplItem {
845 kind: hir::ImplItemKind::Fn(ref sig, ..),
846 owner_id,
847 ..
848 }) => Some((owner_id.def_id, sig.decl)),
849 Node::Expr(&hir::Expr {
850 hir_id,
851 kind: hir::ExprKind::Closure(&hir::Closure { def_id, kind, fn_decl, .. }),
852 ..
853 }) => {
854 match kind {
855 hir::ClosureKind::CoroutineClosure(_) => {
856 return None;
858 }
859 hir::ClosureKind::Closure => Some((def_id, fn_decl)),
860 hir::ClosureKind::Coroutine(hir::CoroutineKind::Desugared(
861 _,
862 hir::CoroutineSource::Fn,
863 )) => {
864 let (sig, owner_id) = match self.tcx.parent_hir_node(hir_id) {
865 Node::Item(&hir::Item {
866 kind: hir::ItemKind::Fn { ref sig, .. },
867 owner_id,
868 ..
869 }) => (sig, owner_id),
870 Node::TraitItem(&hir::TraitItem {
871 kind: hir::TraitItemKind::Fn(ref sig, ..),
872 owner_id,
873 ..
874 }) => (sig, owner_id),
875 Node::ImplItem(&hir::ImplItem {
876 kind: hir::ImplItemKind::Fn(ref sig, ..),
877 owner_id,
878 ..
879 }) => (sig, owner_id),
880 _ => return None,
881 };
882 Some((owner_id.def_id, sig.decl))
883 }
884 _ => None,
885 }
886 }
887 _ => None,
888 }
889 })
890 }
891
892 pub(crate) fn note_internal_mutation_in_method(
893 &self,
894 err: &mut Diag<'_>,
895 expr: &hir::Expr<'_>,
896 expected: Option<Ty<'tcx>>,
897 found: Ty<'tcx>,
898 ) {
899 if found != self.tcx.types.unit {
900 return;
901 }
902
903 let ExprKind::MethodCall(path_segment, rcvr, ..) = expr.kind else {
904 return;
905 };
906
907 let rcvr_has_the_expected_type = self
908 .typeck_results
909 .borrow()
910 .expr_ty_adjusted_opt(rcvr)
911 .zip(expected)
912 .is_some_and(|(ty, expected_ty)| expected_ty.peel_refs() == ty.peel_refs());
913
914 let prev_call_mutates_and_returns_unit = || {
915 self.typeck_results
916 .borrow()
917 .type_dependent_def_id(expr.hir_id)
918 .map(|def_id| self.tcx.fn_sig(def_id).skip_binder().skip_binder())
919 .and_then(|sig| sig.inputs_and_output.split_last())
920 .is_some_and(|(output, inputs)| {
921 output.is_unit()
922 && inputs
923 .get(0)
924 .and_then(|self_ty| self_ty.ref_mutability())
925 .is_some_and(rustc_ast::Mutability::is_mut)
926 })
927 };
928
929 if !(rcvr_has_the_expected_type || prev_call_mutates_and_returns_unit()) {
930 return;
931 }
932
933 let mut sp = MultiSpan::from_span(path_segment.ident.span);
934 sp.push_span_label(
935 path_segment.ident.span,
936 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("this call modifies {0} in-place",
match rcvr.kind {
ExprKind::Path(QPath::Resolved(None, hir::Path {
segments: [segment], .. })) =>
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("`{0}`", segment.ident))
}),
_ => "its receiver".to_string(),
}))
})format!(
937 "this call modifies {} in-place",
938 match rcvr.kind {
939 ExprKind::Path(QPath::Resolved(
940 None,
941 hir::Path { segments: [segment], .. },
942 )) => format!("`{}`", segment.ident),
943 _ => "its receiver".to_string(),
944 }
945 ),
946 );
947
948 let modifies_rcvr_note =
949 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("method `{0}` modifies its receiver in-place",
path_segment.ident))
})format!("method `{}` modifies its receiver in-place", path_segment.ident);
950 if rcvr_has_the_expected_type {
951 sp.push_span_label(
952 rcvr.span,
953 "you probably want to use this value after calling the method...",
954 );
955 err.span_note(sp, modifies_rcvr_note);
956 err.note(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("...instead of the `()` output of method `{0}`",
path_segment.ident))
})format!("...instead of the `()` output of method `{}`", path_segment.ident));
957 } else if let ExprKind::MethodCall(..) = rcvr.kind {
958 err.span_note(
959 sp,
960 modifies_rcvr_note + ", it is not meant to be used in method chains.",
961 );
962 } else {
963 err.span_note(sp, modifies_rcvr_note);
964 }
965 }
966
967 #[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("instantiate_value_path",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(969u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::tracing_core::field::FieldSet::new(&["segments",
"self_ty", "res", "path_span", "hir_id"],
::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(&segments)
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(&self_ty)
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(&res)
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(&path_span)
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(&hir_id)
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<'tcx>, Res) = loop {};
return __tracing_attr_fake_return;
}
{
let tcx = self.tcx;
let generic_segments =
match res {
Res::Local(_) | Res::SelfCtor(_) =>
::alloc::vec::Vec::new(),
Res::Def(kind, def_id) =>
self.lowerer().probe_generic_path_segments(segments,
self_ty.map(|ty| ty.raw), kind, def_id, span),
Res::Err => {
return (Ty::new_error(tcx,
tcx.dcx().span_delayed_bug(span,
"could not resolve path {:?}")), res);
}
_ =>
::rustc_middle::util::bug::bug_fmt(format_args!("instantiate_value_path on {0:?}",
res)),
};
let mut user_self_ty = None;
let mut is_alias_variant_ctor = false;
let mut err_extend = GenericsArgsErrExtend::None;
match res {
Res::Def(DefKind::Ctor(CtorOf::Variant, _), _) if
let Some(self_ty) = self_ty => {
let adt_def = self_ty.normalized.ty_adt_def().unwrap();
user_self_ty =
Some(UserSelfTy {
impl_def_id: adt_def.did(),
self_ty: self_ty.raw,
});
is_alias_variant_ctor = true;
err_extend = GenericsArgsErrExtend::DefVariant(segments);
}
Res::Def(DefKind::Ctor(CtorOf::Variant, _), _) => {
err_extend = GenericsArgsErrExtend::DefVariant(segments);
}
Res::Def(DefKind::AssocFn | DefKind::AssocConst { .. },
def_id) => {
let assoc_item = tcx.associated_item(def_id);
let container = assoc_item.container;
let container_id = assoc_item.container_id(tcx);
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs:1020",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(1020u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::tracing_core::field::FieldSet::new(&["def_id",
"container", "container_id"],
::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(&debug(&def_id) as
&dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&container)
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&container_id)
as &dyn Value))])
});
} else { ; }
};
match container {
ty::AssocContainer::Trait => {
if let Err(e) =
callee::check_legal_trait_for_method_call(tcx, path_span,
None, span, container_id, self.body_id.to_def_id()) {
self.set_tainted_by_errors(e);
}
}
ty::AssocContainer::InherentImpl |
ty::AssocContainer::TraitImpl(_) => {
if segments.len() == 1 {
user_self_ty =
self_ty.map(|self_ty|
UserSelfTy {
impl_def_id: container_id,
self_ty: self_ty.raw,
});
}
}
}
}
_ => {}
}
let indices: FxHashSet<_> =
generic_segments.iter().map(|GenericPathSegment(_, index)|
index).collect();
let generics_err =
self.lowerer().prohibit_generic_args(segments.iter().enumerate().filter_map(|(index,
seg)|
{
if !indices.contains(&index) || is_alias_variant_ctor {
Some(seg)
} else { None }
}), err_extend);
if let Err(e) =
self.lowerer().check_param_res_if_mcg_for_instantiate_value_path(res,
span) {
return (Ty::new_error(self.tcx, e), res);
}
if let Res::Local(hid) = res {
let ty = self.local_ty(span, hid);
let ty = self.normalize(span, ty);
return (ty, res);
}
if let Err(_) = generics_err { user_self_ty = None; }
let mut infer_args_for_err = None;
let mut explicit_late_bound = ExplicitLateBound::No;
for &GenericPathSegment(def_id, index) in &generic_segments {
let seg = &segments[index];
let generics = tcx.generics_of(def_id);
let arg_count =
check_generic_arg_count_for_call(self, def_id, generics,
seg, IsMethodCall::No);
if let ExplicitLateBound::Yes = arg_count.explicit_late_bound
{
explicit_late_bound = ExplicitLateBound::Yes;
}
if let Err(GenericArgCountMismatch { reported, .. }) =
arg_count.correct {
infer_args_for_err.get_or_insert_with(||
(reported, FxHashSet::default())).1.insert(index);
self.set_tainted_by_errors(reported);
}
}
let has_self =
generic_segments.last().is_some_and(|GenericPathSegment(def_id,
_)| tcx.generics_of(*def_id).has_self);
let (res, implicit_args) =
if let Res::Def(DefKind::ConstParam, def) = res {
(res,
Some(ty::GenericArgs::identity_for_item(tcx,
tcx.parent(def))))
} else if let Res::SelfCtor(impl_def_id) = res {
let ty =
LoweredTy::from_raw(self, span,
tcx.at(span).type_of(impl_def_id).instantiate_identity());
if std::iter::successors(Some(self.body_id.to_def_id()),
|&def_id|
{
self.tcx.generics_of(def_id).parent
}).all(|def_id| def_id != impl_def_id) {
let sugg =
ty.normalized.ty_adt_def().map(|def|
errors::ReplaceWithName {
span: path_span,
name: self.tcx.item_name(def.did()).to_ident_string(),
});
let item =
match self.tcx.hir_node_by_def_id(self.tcx.hir_get_parent_item(hir_id).def_id)
{
hir::Node::Item(item) =>
Some(errors::InnerItem {
span: item.kind.ident().map(|i| i.span).unwrap_or(item.span),
}),
_ => None,
};
if ty.raw.has_param() {
let guar =
self.dcx().emit_err(errors::SelfCtorFromOuterItem {
span: path_span,
impl_span: tcx.def_span(impl_def_id),
sugg,
item,
});
return (Ty::new_error(self.tcx, guar), res);
} else {
self.tcx.emit_node_span_lint(SELF_CONSTRUCTOR_FROM_OUTER_ITEM,
hir_id, path_span,
errors::SelfCtorFromOuterItemLint {
impl_span: tcx.def_span(impl_def_id),
sugg,
item,
});
}
}
match ty.normalized.ty_adt_def() {
Some(adt_def) if adt_def.has_ctor() => {
let (ctor_kind, ctor_def_id) =
adt_def.non_enum_variant().ctor.unwrap();
let vis = tcx.visibility(ctor_def_id);
if !vis.is_accessible_from(tcx.parent_module(hir_id).to_def_id(),
tcx) {
self.dcx().emit_err(CtorIsPrivate {
span,
def: tcx.def_path_str(adt_def.did()),
});
}
let new_res =
Res::Def(DefKind::Ctor(CtorOf::Struct, ctor_kind),
ctor_def_id);
let user_args = Self::user_args_for_adt(ty);
user_self_ty = user_args.user_self_ty;
(new_res, Some(user_args.args))
}
_ => {
let mut err =
self.dcx().struct_span_err(span,
"the `Self` constructor can only be used with tuple or unit structs");
if let Some(adt_def) = ty.normalized.ty_adt_def() {
match adt_def.adt_kind() {
AdtKind::Enum => {
err.help("did you mean to use one of the enum's variants?");
}
AdtKind::Struct | AdtKind::Union => {
err.span_suggestion(span, "use curly brackets",
"Self { /* fields */ }", Applicability::HasPlaceholders);
}
}
}
let reported = err.emit();
return (Ty::new_error(tcx, reported), res);
}
}
} else { (res, None) };
let def_id = res.def_id();
let (correct, infer_args_for_err) =
match infer_args_for_err {
Some((reported, args)) => {
(Err(GenericArgCountMismatch {
reported,
invalid_args: ::alloc::vec::Vec::new(),
}), args)
}
None => (Ok(()), Default::default()),
};
let arg_count =
GenericArgCountResult { explicit_late_bound, correct };
struct CtorGenericArgsCtxt<'a, 'tcx> {
fcx: &'a FnCtxt<'a, 'tcx>,
span: Span,
generic_segments: &'a [GenericPathSegment],
infer_args_for_err: &'a FxHashSet<usize>,
segments: &'tcx [hir::PathSegment<'tcx>],
}
impl<'a, 'tcx> GenericArgsLowerer<'a, 'tcx> for
CtorGenericArgsCtxt<'a, 'tcx> {
fn args_for_def_id(&mut self, def_id: DefId)
-> (Option<&'a hir::GenericArgs<'tcx>>, bool) {
if let Some(&GenericPathSegment(_, index)) =
self.generic_segments.iter().find(|&GenericPathSegment(did,
_)| *did == def_id) {
if !self.infer_args_for_err.contains(&index) {
if let Some(data) = self.segments[index].args {
return (Some(data), self.segments[index].infer_args);
}
}
return (None, self.segments[index].infer_args);
}
(None, true)
}
fn provided_kind(&mut self,
preceding_args: &[ty::GenericArg<'tcx>],
param: &ty::GenericParamDef, arg: &GenericArg<'tcx>)
-> ty::GenericArg<'tcx> {
match (¶m.kind, arg) {
(GenericParamDefKind::Lifetime, GenericArg::Lifetime(lt)) =>
self.fcx.lowerer().lower_lifetime(lt,
RegionInferReason::Param(param)).into(),
(GenericParamDefKind::Type { .. }, GenericArg::Type(ty)) =>
{
self.fcx.lower_ty(ty.as_unambig_ty()).raw.into()
}
(GenericParamDefKind::Type { .. }, GenericArg::Infer(inf))
=> {
self.fcx.lower_ty(&inf.to_ty()).raw.into()
}
(GenericParamDefKind::Const { .. }, GenericArg::Const(ct))
=>
self.fcx.lower_const_arg(ct.as_unambig_ct(),
self.fcx.tcx.type_of(param.def_id).instantiate(self.fcx.tcx,
preceding_args)).into(),
(&GenericParamDefKind::Const { .. }, GenericArg::Infer(inf))
=> {
self.fcx.ct_infer(Some(param), inf.span).into()
}
_ =>
::core::panicking::panic("internal error: entered unreachable code"),
}
}
fn inferred_kind(&mut self,
preceding_args: &[ty::GenericArg<'tcx>],
param: &ty::GenericParamDef, infer_args: bool)
-> ty::GenericArg<'tcx> {
let tcx = self.fcx.tcx();
if !infer_args &&
let Some(default) = param.default_value(tcx) {
return default.instantiate(tcx, preceding_args);
}
self.fcx.var_for_def(self.span, param)
}
}
let args_raw =
implicit_args.unwrap_or_else(||
{
lower_generic_args(self, def_id, &[], has_self,
self_ty.map(|s| s.raw), &arg_count,
&mut CtorGenericArgsCtxt {
fcx: self,
span,
generic_segments: &generic_segments,
infer_args_for_err: &infer_args_for_err,
segments,
})
});
let args_for_user_type =
if let Res::Def(DefKind::AssocConst { .. }, def_id) = res {
self.transform_args_for_inherent_type_const(def_id,
args_raw)
} else { args_raw };
self.write_user_type_annotation_from_args(hir_id, def_id,
args_for_user_type, user_self_ty);
let args = self.normalize(span, args_raw);
self.add_required_obligations_for_hir(span, def_id, args, hir_id);
let ty = tcx.type_of(def_id);
if !!args.has_escaping_bound_vars() {
::core::panicking::panic("assertion failed: !args.has_escaping_bound_vars()")
};
if !!ty.skip_binder().has_escaping_bound_vars() {
::core::panicking::panic("assertion failed: !ty.skip_binder().has_escaping_bound_vars()")
};
let ty_instantiated =
self.normalize(span, ty.instantiate(tcx, args));
if let Some(UserSelfTy { impl_def_id, self_ty }) = user_self_ty {
let impl_ty =
self.normalize(span,
tcx.type_of(impl_def_id).instantiate(tcx, args));
let self_ty = self.normalize(span, self_ty);
match self.at(&self.misc(span),
self.param_env).eq(DefineOpaqueTypes::Yes, impl_ty, self_ty)
{
Ok(ok) => self.register_infer_ok_obligations(ok),
Err(_) => {
self.dcx().span_bug(span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("instantiate_value_path: (UFCS) {0:?} was a subtype of {1:?} but now is not?",
self_ty, impl_ty))
}));
}
}
}
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs:1388",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(1388u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::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_value_path: type of {0:?} is {1:?}",
hir_id, ty_instantiated) as &dyn Value))])
});
} else { ; }
};
let args =
if let Res::Def(DefKind::AssocConst { .. }, def_id) = res {
self.transform_args_for_inherent_type_const(def_id, args)
} else { args };
self.write_args(hir_id, args);
(ty_instantiated, res)
}
}
}#[instrument(skip(self, span), level = "debug")]
970 pub(crate) fn instantiate_value_path(
971 &self,
972 segments: &'tcx [hir::PathSegment<'tcx>],
973 self_ty: Option<LoweredTy<'tcx>>,
974 res: Res,
975 span: Span,
976 path_span: Span,
977 hir_id: HirId,
978 ) -> (Ty<'tcx>, Res) {
979 let tcx = self.tcx;
980
981 let generic_segments = match res {
982 Res::Local(_) | Res::SelfCtor(_) => vec![],
983 Res::Def(kind, def_id) => self.lowerer().probe_generic_path_segments(
984 segments,
985 self_ty.map(|ty| ty.raw),
986 kind,
987 def_id,
988 span,
989 ),
990 Res::Err => {
991 return (
992 Ty::new_error(
993 tcx,
994 tcx.dcx().span_delayed_bug(span, "could not resolve path {:?}"),
995 ),
996 res,
997 );
998 }
999 _ => bug!("instantiate_value_path on {:?}", res),
1000 };
1001
1002 let mut user_self_ty = None;
1003 let mut is_alias_variant_ctor = false;
1004 let mut err_extend = GenericsArgsErrExtend::None;
1005 match res {
1006 Res::Def(DefKind::Ctor(CtorOf::Variant, _), _) if let Some(self_ty) = self_ty => {
1007 let adt_def = self_ty.normalized.ty_adt_def().unwrap();
1008 user_self_ty =
1009 Some(UserSelfTy { impl_def_id: adt_def.did(), self_ty: self_ty.raw });
1010 is_alias_variant_ctor = true;
1011 err_extend = GenericsArgsErrExtend::DefVariant(segments);
1012 }
1013 Res::Def(DefKind::Ctor(CtorOf::Variant, _), _) => {
1014 err_extend = GenericsArgsErrExtend::DefVariant(segments);
1015 }
1016 Res::Def(DefKind::AssocFn | DefKind::AssocConst { .. }, def_id) => {
1017 let assoc_item = tcx.associated_item(def_id);
1018 let container = assoc_item.container;
1019 let container_id = assoc_item.container_id(tcx);
1020 debug!(?def_id, ?container, ?container_id);
1021 match container {
1022 ty::AssocContainer::Trait => {
1023 if let Err(e) = callee::check_legal_trait_for_method_call(
1024 tcx,
1025 path_span,
1026 None,
1027 span,
1028 container_id,
1029 self.body_id.to_def_id(),
1030 ) {
1031 self.set_tainted_by_errors(e);
1032 }
1033 }
1034 ty::AssocContainer::InherentImpl | ty::AssocContainer::TraitImpl(_) => {
1035 if segments.len() == 1 {
1036 user_self_ty = self_ty.map(|self_ty| UserSelfTy {
1043 impl_def_id: container_id,
1044 self_ty: self_ty.raw,
1045 });
1046 }
1047 }
1048 }
1049 }
1050 _ => {}
1051 }
1052
1053 let indices: FxHashSet<_> =
1059 generic_segments.iter().map(|GenericPathSegment(_, index)| index).collect();
1060 let generics_err = self.lowerer().prohibit_generic_args(
1061 segments.iter().enumerate().filter_map(|(index, seg)| {
1062 if !indices.contains(&index) || is_alias_variant_ctor { Some(seg) } else { None }
1063 }),
1064 err_extend,
1065 );
1066
1067 if let Err(e) = self.lowerer().check_param_res_if_mcg_for_instantiate_value_path(res, span)
1068 {
1069 return (Ty::new_error(self.tcx, e), res);
1070 }
1071
1072 if let Res::Local(hid) = res {
1073 let ty = self.local_ty(span, hid);
1074 let ty = self.normalize(span, ty);
1075 return (ty, res);
1076 }
1077
1078 if let Err(_) = generics_err {
1079 user_self_ty = None;
1081 }
1082
1083 let mut infer_args_for_err = None;
1091
1092 let mut explicit_late_bound = ExplicitLateBound::No;
1093 for &GenericPathSegment(def_id, index) in &generic_segments {
1094 let seg = &segments[index];
1095 let generics = tcx.generics_of(def_id);
1096
1097 let arg_count =
1102 check_generic_arg_count_for_call(self, def_id, generics, seg, IsMethodCall::No);
1103
1104 if let ExplicitLateBound::Yes = arg_count.explicit_late_bound {
1105 explicit_late_bound = ExplicitLateBound::Yes;
1106 }
1107
1108 if let Err(GenericArgCountMismatch { reported, .. }) = arg_count.correct {
1109 infer_args_for_err
1110 .get_or_insert_with(|| (reported, FxHashSet::default()))
1111 .1
1112 .insert(index);
1113 self.set_tainted_by_errors(reported); }
1115 }
1116
1117 let has_self = generic_segments
1118 .last()
1119 .is_some_and(|GenericPathSegment(def_id, _)| tcx.generics_of(*def_id).has_self);
1120
1121 let (res, implicit_args) = if let Res::Def(DefKind::ConstParam, def) = res {
1122 (res, Some(ty::GenericArgs::identity_for_item(tcx, tcx.parent(def))))
1132 } else if let Res::SelfCtor(impl_def_id) = res {
1133 let ty = LoweredTy::from_raw(
1134 self,
1135 span,
1136 tcx.at(span).type_of(impl_def_id).instantiate_identity(),
1137 );
1138
1139 if std::iter::successors(Some(self.body_id.to_def_id()), |&def_id| {
1147 self.tcx.generics_of(def_id).parent
1148 })
1149 .all(|def_id| def_id != impl_def_id)
1150 {
1151 let sugg = ty.normalized.ty_adt_def().map(|def| errors::ReplaceWithName {
1152 span: path_span,
1153 name: self.tcx.item_name(def.did()).to_ident_string(),
1154 });
1155 let item = match self
1156 .tcx
1157 .hir_node_by_def_id(self.tcx.hir_get_parent_item(hir_id).def_id)
1158 {
1159 hir::Node::Item(item) => Some(errors::InnerItem {
1160 span: item.kind.ident().map(|i| i.span).unwrap_or(item.span),
1161 }),
1162 _ => None,
1163 };
1164 if ty.raw.has_param() {
1165 let guar = self.dcx().emit_err(errors::SelfCtorFromOuterItem {
1166 span: path_span,
1167 impl_span: tcx.def_span(impl_def_id),
1168 sugg,
1169 item,
1170 });
1171 return (Ty::new_error(self.tcx, guar), res);
1172 } else {
1173 self.tcx.emit_node_span_lint(
1174 SELF_CONSTRUCTOR_FROM_OUTER_ITEM,
1175 hir_id,
1176 path_span,
1177 errors::SelfCtorFromOuterItemLint {
1178 impl_span: tcx.def_span(impl_def_id),
1179 sugg,
1180 item,
1181 },
1182 );
1183 }
1184 }
1185
1186 match ty.normalized.ty_adt_def() {
1187 Some(adt_def) if adt_def.has_ctor() => {
1188 let (ctor_kind, ctor_def_id) = adt_def.non_enum_variant().ctor.unwrap();
1189 let vis = tcx.visibility(ctor_def_id);
1191 if !vis.is_accessible_from(tcx.parent_module(hir_id).to_def_id(), tcx) {
1192 self.dcx()
1193 .emit_err(CtorIsPrivate { span, def: tcx.def_path_str(adt_def.did()) });
1194 }
1195 let new_res = Res::Def(DefKind::Ctor(CtorOf::Struct, ctor_kind), ctor_def_id);
1196 let user_args = Self::user_args_for_adt(ty);
1197 user_self_ty = user_args.user_self_ty;
1198 (new_res, Some(user_args.args))
1199 }
1200 _ => {
1201 let mut err = self.dcx().struct_span_err(
1202 span,
1203 "the `Self` constructor can only be used with tuple or unit structs",
1204 );
1205 if let Some(adt_def) = ty.normalized.ty_adt_def() {
1206 match adt_def.adt_kind() {
1207 AdtKind::Enum => {
1208 err.help("did you mean to use one of the enum's variants?");
1209 }
1210 AdtKind::Struct | AdtKind::Union => {
1211 err.span_suggestion(
1212 span,
1213 "use curly brackets",
1214 "Self { /* fields */ }",
1215 Applicability::HasPlaceholders,
1216 );
1217 }
1218 }
1219 }
1220 let reported = err.emit();
1221 return (Ty::new_error(tcx, reported), res);
1222 }
1223 }
1224 } else {
1225 (res, None)
1226 };
1227 let def_id = res.def_id();
1228
1229 let (correct, infer_args_for_err) = match infer_args_for_err {
1230 Some((reported, args)) => {
1231 (Err(GenericArgCountMismatch { reported, invalid_args: vec![] }), args)
1232 }
1233 None => (Ok(()), Default::default()),
1234 };
1235
1236 let arg_count = GenericArgCountResult { explicit_late_bound, correct };
1237
1238 struct CtorGenericArgsCtxt<'a, 'tcx> {
1239 fcx: &'a FnCtxt<'a, 'tcx>,
1240 span: Span,
1241 generic_segments: &'a [GenericPathSegment],
1242 infer_args_for_err: &'a FxHashSet<usize>,
1243 segments: &'tcx [hir::PathSegment<'tcx>],
1244 }
1245 impl<'a, 'tcx> GenericArgsLowerer<'a, 'tcx> for CtorGenericArgsCtxt<'a, 'tcx> {
1246 fn args_for_def_id(
1247 &mut self,
1248 def_id: DefId,
1249 ) -> (Option<&'a hir::GenericArgs<'tcx>>, bool) {
1250 if let Some(&GenericPathSegment(_, index)) =
1251 self.generic_segments.iter().find(|&GenericPathSegment(did, _)| *did == def_id)
1252 {
1253 if !self.infer_args_for_err.contains(&index) {
1256 if let Some(data) = self.segments[index].args {
1258 return (Some(data), self.segments[index].infer_args);
1259 }
1260 }
1261 return (None, self.segments[index].infer_args);
1262 }
1263
1264 (None, true)
1265 }
1266
1267 fn provided_kind(
1268 &mut self,
1269 preceding_args: &[ty::GenericArg<'tcx>],
1270 param: &ty::GenericParamDef,
1271 arg: &GenericArg<'tcx>,
1272 ) -> ty::GenericArg<'tcx> {
1273 match (¶m.kind, arg) {
1274 (GenericParamDefKind::Lifetime, GenericArg::Lifetime(lt)) => self
1275 .fcx
1276 .lowerer()
1277 .lower_lifetime(lt, RegionInferReason::Param(param))
1278 .into(),
1279 (GenericParamDefKind::Type { .. }, GenericArg::Type(ty)) => {
1280 self.fcx.lower_ty(ty.as_unambig_ty()).raw.into()
1282 }
1283 (GenericParamDefKind::Type { .. }, GenericArg::Infer(inf)) => {
1284 self.fcx.lower_ty(&inf.to_ty()).raw.into()
1285 }
1286 (GenericParamDefKind::Const { .. }, GenericArg::Const(ct)) => self
1287 .fcx
1288 .lower_const_arg(
1290 ct.as_unambig_ct(),
1291 self.fcx
1292 .tcx
1293 .type_of(param.def_id)
1294 .instantiate(self.fcx.tcx, preceding_args),
1295 )
1296 .into(),
1297 (&GenericParamDefKind::Const { .. }, GenericArg::Infer(inf)) => {
1298 self.fcx.ct_infer(Some(param), inf.span).into()
1299 }
1300 _ => unreachable!(),
1301 }
1302 }
1303
1304 fn inferred_kind(
1305 &mut self,
1306 preceding_args: &[ty::GenericArg<'tcx>],
1307 param: &ty::GenericParamDef,
1308 infer_args: bool,
1309 ) -> ty::GenericArg<'tcx> {
1310 let tcx = self.fcx.tcx();
1311 if !infer_args && let Some(default) = param.default_value(tcx) {
1312 return default.instantiate(tcx, preceding_args);
1315 }
1316 self.fcx.var_for_def(self.span, param)
1321 }
1322 }
1323
1324 let args_raw = implicit_args.unwrap_or_else(|| {
1325 lower_generic_args(
1326 self,
1327 def_id,
1328 &[],
1329 has_self,
1330 self_ty.map(|s| s.raw),
1331 &arg_count,
1332 &mut CtorGenericArgsCtxt {
1333 fcx: self,
1334 span,
1335 generic_segments: &generic_segments,
1336 infer_args_for_err: &infer_args_for_err,
1337 segments,
1338 },
1339 )
1340 });
1341
1342 let args_for_user_type = if let Res::Def(DefKind::AssocConst { .. }, def_id) = res {
1343 self.transform_args_for_inherent_type_const(def_id, args_raw)
1344 } else {
1345 args_raw
1346 };
1347
1348 self.write_user_type_annotation_from_args(hir_id, def_id, args_for_user_type, user_self_ty);
1350
1351 let args = self.normalize(span, args_raw);
1353
1354 self.add_required_obligations_for_hir(span, def_id, args, hir_id);
1355
1356 let ty = tcx.type_of(def_id);
1359 assert!(!args.has_escaping_bound_vars());
1360 assert!(!ty.skip_binder().has_escaping_bound_vars());
1361 let ty_instantiated = self.normalize(span, ty.instantiate(tcx, args));
1362
1363 if let Some(UserSelfTy { impl_def_id, self_ty }) = user_self_ty {
1364 let impl_ty = self.normalize(span, tcx.type_of(impl_def_id).instantiate(tcx, args));
1370 let self_ty = self.normalize(span, self_ty);
1371 match self.at(&self.misc(span), self.param_env).eq(
1372 DefineOpaqueTypes::Yes,
1373 impl_ty,
1374 self_ty,
1375 ) {
1376 Ok(ok) => self.register_infer_ok_obligations(ok),
1377 Err(_) => {
1378 self.dcx().span_bug(
1379 span,
1380 format!(
1381 "instantiate_value_path: (UFCS) {self_ty:?} was a subtype of {impl_ty:?} but now is not?",
1382 ),
1383 );
1384 }
1385 }
1386 }
1387
1388 debug!("instantiate_value_path: type of {:?} is {:?}", hir_id, ty_instantiated);
1389
1390 let args = if let Res::Def(DefKind::AssocConst { .. }, def_id) = res {
1391 self.transform_args_for_inherent_type_const(def_id, args)
1392 } else {
1393 args
1394 };
1395
1396 self.write_args(hir_id, args);
1397
1398 (ty_instantiated, res)
1399 }
1400
1401 pub(crate) fn add_required_obligations_for_hir(
1403 &self,
1404 span: Span,
1405 def_id: DefId,
1406 args: GenericArgsRef<'tcx>,
1407 hir_id: HirId,
1408 ) {
1409 self.add_required_obligations_with_code(span, def_id, args, |idx, span| {
1410 ObligationCauseCode::WhereClauseInExpr(def_id, span, hir_id, idx)
1411 })
1412 }
1413
1414 #[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("add_required_obligations_with_code",
"rustc_hir_typeck::fn_ctxt::_impl", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs"),
::tracing_core::__macro_support::Option::Some(1414u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::fn_ctxt::_impl"),
::tracing_core::field::FieldSet::new(&["def_id"],
::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(&def_id)
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;
}
{
let param_env = self.param_env;
let bounds = self.instantiate_bounds(span, def_id, args);
for obligation in
traits::predicates_for_generics(|idx, predicate_span|
self.cause(span, code(idx, predicate_span)), param_env,
bounds) {
self.register_predicate(obligation);
}
}
}
}#[instrument(level = "debug", skip(self, code, span, args))]
1415 pub(crate) fn add_required_obligations_with_code(
1416 &self,
1417 span: Span,
1418 def_id: DefId,
1419 args: GenericArgsRef<'tcx>,
1420 code: impl Fn(usize, Span) -> ObligationCauseCode<'tcx>,
1421 ) {
1422 let param_env = self.param_env;
1423
1424 let bounds = self.instantiate_bounds(span, def_id, args);
1425
1426 for obligation in traits::predicates_for_generics(
1427 |idx, predicate_span| self.cause(span, code(idx, predicate_span)),
1428 param_env,
1429 bounds,
1430 ) {
1431 self.register_predicate(obligation);
1432 }
1433 }
1434
1435 x;#[instrument(level = "debug", skip(self, sp), ret)]
1441 pub(crate) fn try_structurally_resolve_type(&self, sp: Span, ty: Ty<'tcx>) -> Ty<'tcx> {
1442 if self.next_trait_solver()
1443 && let ty::Alias(..) = ty.kind()
1444 {
1445 let result = self
1449 .at(&self.misc(sp), self.param_env)
1450 .structurally_normalize_ty(ty, &mut **self.fulfillment_cx.borrow_mut());
1451 match result {
1452 Ok(normalized_ty) => normalized_ty,
1453 Err(errors) => {
1454 let guar = self.err_ctxt().report_fulfillment_errors(errors);
1455 return Ty::new_error(self.tcx, guar);
1456 }
1457 }
1458 } else {
1459 self.resolve_vars_with_obligations(ty)
1460 }
1461 }
1462
1463 x;#[instrument(level = "debug", skip(self, sp), ret)]
1464 pub(crate) fn try_structurally_resolve_const(
1465 &self,
1466 sp: Span,
1467 ct: ty::Const<'tcx>,
1468 ) -> ty::Const<'tcx> {
1469 let ct = self.resolve_vars_with_obligations(ct);
1470
1471 if self.next_trait_solver()
1472 && let ty::ConstKind::Unevaluated(..) = ct.kind()
1473 {
1474 let result = self
1478 .at(&self.misc(sp), self.param_env)
1479 .structurally_normalize_const(ct, &mut **self.fulfillment_cx.borrow_mut());
1480 match result {
1481 Ok(normalized_ct) => normalized_ct,
1482 Err(errors) => {
1483 let guar = self.err_ctxt().report_fulfillment_errors(errors);
1484 return ty::Const::new_error(self.tcx, guar);
1485 }
1486 }
1487 } else if self.tcx.features().generic_const_exprs() {
1488 rustc_trait_selection::traits::evaluate_const(&self.infcx, ct, self.param_env)
1489 } else {
1490 ct
1491 }
1492 }
1493
1494 pub(crate) fn structurally_resolve_type(&self, sp: Span, ty: Ty<'tcx>) -> Ty<'tcx> {
1503 let ty = self.try_structurally_resolve_type(sp, ty);
1504
1505 if !ty.is_ty_var() { ty } else { self.type_must_be_known_at_this_point(sp, ty) }
1506 }
1507
1508 #[cold]
1509 pub(crate) fn type_must_be_known_at_this_point(&self, sp: Span, ty: Ty<'tcx>) -> Ty<'tcx> {
1510 let guar = self.tainted_by_errors().unwrap_or_else(|| {
1511 self.err_ctxt()
1512 .emit_inference_failure_err(
1513 self.body_id,
1514 sp,
1515 ty.into(),
1516 TypeAnnotationNeeded::E0282,
1517 true,
1518 )
1519 .emit()
1520 });
1521 let err = Ty::new_error(self.tcx, guar);
1522 self.demand_suptype(sp, err, ty);
1523 err
1524 }
1525
1526 pub(crate) fn structurally_resolve_const(
1527 &self,
1528 sp: Span,
1529 ct: ty::Const<'tcx>,
1530 ) -> ty::Const<'tcx> {
1531 let ct = self.try_structurally_resolve_const(sp, ct);
1532
1533 if !ct.is_ct_infer() {
1534 ct
1535 } else {
1536 let e = self.tainted_by_errors().unwrap_or_else(|| {
1537 self.err_ctxt()
1538 .emit_inference_failure_err(
1539 self.body_id,
1540 sp,
1541 ct.into(),
1542 TypeAnnotationNeeded::E0282,
1543 true,
1544 )
1545 .emit()
1546 });
1547 ty::Const::new_error(self.tcx, e)
1549 }
1550 }
1551
1552 pub(crate) fn with_breakable_ctxt<F: FnOnce() -> R, R>(
1553 &self,
1554 id: HirId,
1555 ctxt: BreakableCtxt<'tcx>,
1556 f: F,
1557 ) -> (BreakableCtxt<'tcx>, R) {
1558 let index;
1559 {
1560 let mut enclosing_breakables = self.enclosing_breakables.borrow_mut();
1561 index = enclosing_breakables.stack.len();
1562 enclosing_breakables.by_id.insert(id, index);
1563 enclosing_breakables.stack.push(ctxt);
1564 }
1565 let result = f();
1566 let ctxt = {
1567 let mut enclosing_breakables = self.enclosing_breakables.borrow_mut();
1568 if true {
if !(enclosing_breakables.stack.len() == index + 1) {
::core::panicking::panic("assertion failed: enclosing_breakables.stack.len() == index + 1")
};
};debug_assert!(enclosing_breakables.stack.len() == index + 1);
1569 enclosing_breakables.by_id.swap_remove(&id).expect("missing breakable context");
1571 enclosing_breakables.stack.pop().expect("missing breakable context")
1572 };
1573 (ctxt, result)
1574 }
1575
1576 pub(crate) fn probe_instantiate_query_response(
1579 &self,
1580 span: Span,
1581 original_values: &OriginalQueryValues<'tcx>,
1582 query_result: &Canonical<'tcx, QueryResponse<'tcx, Ty<'tcx>>>,
1583 ) -> InferResult<'tcx, Ty<'tcx>> {
1584 self.instantiate_query_response_and_region_obligations(
1585 &self.misc(span),
1586 self.param_env,
1587 original_values,
1588 query_result,
1589 )
1590 }
1591
1592 pub(crate) fn expr_in_place(&self, mut expr_id: HirId) -> bool {
1594 let mut contained_in_place = false;
1595
1596 while let hir::Node::Expr(parent_expr) = self.tcx.parent_hir_node(expr_id) {
1597 match &parent_expr.kind {
1598 hir::ExprKind::Assign(lhs, ..) | hir::ExprKind::AssignOp(_, lhs, ..) => {
1599 if lhs.hir_id == expr_id {
1600 contained_in_place = true;
1601 break;
1602 }
1603 }
1604 _ => (),
1605 }
1606 expr_id = parent_expr.hir_id;
1607 }
1608
1609 contained_in_place
1610 }
1611}