1use rustc_data_structures::fx::FxHashSet;
2use rustc_hir as hir;
3use rustc_hir::def::DefKind;
4use rustc_index::bit_set::DenseBitSet;
5use rustc_infer::infer::TyCtxtInferExt;
6use rustc_middle::bug;
7use rustc_middle::query::Providers;
8use rustc_middle::ty::{
9 self, SizedTraitKind, Ty, TyCtxt, TypeSuperVisitable, TypeVisitable, TypeVisitor, Unnormalized,
10 Upcast, fold_regions,
11};
12use rustc_span::DUMMY_SP;
13use rustc_span::def_id::{CRATE_DEF_ID, DefId, LocalDefId};
14use rustc_trait_selection::traits;
15use tracing::instrument;
16
17x;#[instrument(level = "debug", skip(tcx), ret)]
20fn sizedness_constraint_for_ty<'tcx>(
21 tcx: TyCtxt<'tcx>,
22 sizedness: SizedTraitKind,
23 ty: Ty<'tcx>,
24) -> Option<Ty<'tcx>> {
25 match ty.kind() {
26 ty::Bool
28 | ty::Char
29 | ty::Int(..)
30 | ty::Uint(..)
31 | ty::Float(..)
32 | ty::RawPtr(..)
33 | ty::Ref(..)
34 | ty::FnDef(..)
35 | ty::FnPtr(..)
36 | ty::Array(..)
37 | ty::Closure(..)
38 | ty::CoroutineClosure(..)
39 | ty::Coroutine(..)
40 | ty::CoroutineWitness(..)
41 | ty::Never => None,
42
43 ty::Str | ty::Slice(..) | ty::Dynamic(_, _) => match sizedness {
44 SizedTraitKind::Sized => Some(ty),
46 SizedTraitKind::MetaSized => None,
48 },
49
50 ty::Param(..) | ty::Alias(..) | ty::Error(_) => Some(ty),
52
53 ty::UnsafeBinder(inner_ty) => {
57 sizedness_constraint_for_ty(tcx, sizedness, inner_ty.skip_binder()).map(|_| ty)
58 }
59
60 ty::Foreign(..) => Some(ty),
62
63 ty::Pat(ty, _) => sizedness_constraint_for_ty(tcx, sizedness, *ty),
65
66 ty::Tuple(tys) => {
67 tys.last().and_then(|&ty| sizedness_constraint_for_ty(tcx, sizedness, ty))
68 }
69
70 ty::Adt(adt, args) => adt.sizedness_constraint(tcx, sizedness).and_then(|intermediate| {
71 let ty = intermediate.instantiate(tcx, args).skip_norm_wip();
72 sizedness_constraint_for_ty(tcx, sizedness, ty)
73 }),
74
75 ty::Placeholder(..) | ty::Bound(..) | ty::Infer(..) => {
76 bug!("unexpected type `{ty:?}` in `sizedness_constraint_for_ty`")
77 }
78 }
79}
80
81fn defaultness(tcx: TyCtxt<'_>, def_id: LocalDefId) -> hir::Defaultness {
82 match tcx.hir_node_by_def_id(def_id) {
83 hir::Node::Item(hir::Item {
84 kind:
85 hir::ItemKind::Impl(hir::Impl {
86 of_trait: Some(hir::TraitImplHeader { defaultness, .. }),
87 ..
88 }),
89 ..
90 })
91 | hir::Node::ImplItem(hir::ImplItem {
92 impl_kind: hir::ImplItemImplKind::Trait { defaultness, .. },
93 ..
94 })
95 | hir::Node::TraitItem(hir::TraitItem { defaultness, .. }) => *defaultness,
96 node => {
97 ::rustc_middle::util::bug::bug_fmt(format_args!("`defaultness` called on {0:?}",
node));bug!("`defaultness` called on {:?}", node);
98 }
99 }
100}
101
102x;#[instrument(level = "debug", skip(tcx), ret)]
115fn adt_sizedness_constraint<'tcx>(
116 tcx: TyCtxt<'tcx>,
117 (def_id, sizedness): (DefId, SizedTraitKind),
118) -> Option<ty::EarlyBinder<'tcx, Ty<'tcx>>> {
119 if let Some(def_id) = def_id.as_local() {
120 tcx.ensure_ok().check_representability(def_id);
121 }
122
123 let def = tcx.adt_def(def_id);
124
125 if !def.is_struct() {
126 bug!("`adt_sizedness_constraint` called on non-struct type: {def:?}");
127 }
128
129 let tail_def = def.non_enum_variant().tail_opt()?;
130 let tail_ty = tcx.type_of(tail_def.did).instantiate_identity().skip_norm_wip();
131
132 let constraint_ty = sizedness_constraint_for_ty(tcx, sizedness, tail_ty)?;
133
134 let sizedness_trait_def_id = sizedness.require_lang_item(tcx);
137 let predicates = tcx.predicates_of(def.did()).predicates;
138 if predicates.iter().any(|(p, _)| {
139 p.as_trait_clause().is_some_and(|trait_pred| {
140 trait_pred.def_id() == sizedness_trait_def_id
141 && trait_pred.self_ty().skip_binder() == constraint_ty
142 })
143 }) {
144 return None;
145 }
146
147 Some(ty::EarlyBinder::bind(tcx, constraint_ty))
148}
149
150fn param_env(tcx: TyCtxt<'_>, def_id: DefId) -> ty::ParamEnv<'_> {
152 if tcx.is_typeck_child(def_id) {
153 return tcx.param_env(tcx.typeck_root_def_id(def_id));
154 }
155 let ty::InstantiatedPredicates { predicates, .. } =
157 tcx.predicates_of(def_id).instantiate_identity(tcx);
158 let mut predicates: Vec<_> = predicates.into_iter().map(Unnormalized::skip_norm_wip).collect();
159
160 if tcx.def_kind(def_id) == DefKind::AssocFn
173 && let assoc_item = tcx.associated_item(def_id)
174 && assoc_item.container == ty::AssocContainer::Trait
175 && assoc_item.defaultness(tcx).has_value()
176 {
177 let sig = tcx.fn_sig(def_id).instantiate_identity().skip_norm_wip();
178 sig.skip_binder().visit_with(&mut ImplTraitInTraitFinder {
180 tcx,
181 fn_def_id: def_id,
182 bound_vars: sig.bound_vars(),
183 predicates: &mut predicates,
184 seen: FxHashSet::default(),
185 depth: ty::INNERMOST,
186 });
187 }
188
189 if tcx.is_conditionally_const(def_id) {
192 predicates.extend(tcx.const_conditions(def_id).instantiate_identity(tcx).into_iter().map(
193 |(trait_ref, _)| {
194 trait_ref.to_host_effect_clause(tcx, ty::BoundConstness::Maybe).skip_norm_wip()
195 },
196 ));
197 }
198
199 let local_did = def_id.as_local().unwrap_or(CRATE_DEF_ID);
200
201 let unnormalized_env = ty::ParamEnv::new(tcx.mk_clauses(&predicates));
202
203 let cause = traits::ObligationCause::misc(tcx.def_span(def_id), local_did);
204 traits::normalize_param_env_or_error(tcx, unnormalized_env, cause)
205}
206
207struct ImplTraitInTraitFinder<'a, 'tcx> {
212 tcx: TyCtxt<'tcx>,
213 predicates: &'a mut Vec<ty::Clause<'tcx>>,
214 fn_def_id: DefId,
215 bound_vars: &'tcx ty::List<ty::BoundVariableKind<'tcx>>,
216 seen: FxHashSet<DefId>,
217 depth: ty::DebruijnIndex,
218}
219
220impl<'tcx> TypeVisitor<TyCtxt<'tcx>> for ImplTraitInTraitFinder<'_, 'tcx> {
221 fn visit_binder<T: TypeVisitable<TyCtxt<'tcx>>>(&mut self, binder: &ty::Binder<'tcx, T>) {
222 self.depth.shift_in(1);
223 binder.super_visit_with(self);
224 self.depth.shift_out(1);
225 }
226
227 fn visit_ty(&mut self, ty: Ty<'tcx>) {
228 if let ty::Alias(_, unshifted_alias_ty) = *ty.kind()
229 && let Some(unshifted_alias_ty) = unshifted_alias_ty.try_to_projection()
230 && let Some(
231 ty::ImplTraitInTraitData::Trait { fn_def_id, .. }
232 | ty::ImplTraitInTraitData::Impl { fn_def_id, .. },
233 ) = self.tcx.opt_rpitit_info(unshifted_alias_ty.kind)
234 && fn_def_id == self.fn_def_id
235 && self.seen.insert(unshifted_alias_ty.kind)
236 {
237 let shifted_alias_ty = fold_regions(self.tcx, unshifted_alias_ty, |re, depth| {
241 if let ty::ReBound(ty::BoundVarIndexKind::Bound(index), bv) = re.kind() {
242 if depth != ty::INNERMOST {
243 return ty::Region::new_error_with_message(
244 self.tcx,
245 DUMMY_SP,
246 "we shouldn't walk non-predicate binders with `impl Trait`...",
247 );
248 }
249 ty::Region::new_bound(self.tcx, index.shifted_out_to_binder(self.depth), bv)
250 } else {
251 re
252 }
253 });
254
255 let default_ty = self
259 .tcx
260 .type_of(shifted_alias_ty.kind)
261 .instantiate(self.tcx, shifted_alias_ty.args)
262 .skip_norm_wip();
263
264 self.predicates.push(
265 ty::Binder::bind_with_vars(
266 ty::ProjectionPredicate {
267 projection_term: shifted_alias_ty.projection_to_alias_ty().into(),
268 term: default_ty.into(),
269 },
270 self.bound_vars,
271 )
272 .upcast(self.tcx),
273 );
274
275 for bound in self
280 .tcx
281 .item_bounds(unshifted_alias_ty.kind)
282 .iter_instantiated(self.tcx, unshifted_alias_ty.args)
283 .map(Unnormalized::skip_norm_wip)
284 {
285 bound.visit_with(self);
286 }
287 }
288
289 ty.super_visit_with(self)
290 }
291}
292
293fn param_env_normalized_for_post_analysis(tcx: TyCtxt<'_>, def_id: DefId) -> ty::ParamEnv<'_> {
294 tcx.param_env(def_id).with_normalized(tcx)
295}
296
297fn asyncness(tcx: TyCtxt<'_>, def_id: LocalDefId) -> ty::Asyncness {
299 let node = tcx.hir_node_by_def_id(def_id);
300 node.fn_sig().map_or(ty::Asyncness::No, |sig| match sig.header.asyncness {
301 hir::IsAsync::Async(_) => ty::Asyncness::Yes,
302 hir::IsAsync::NotAsync => ty::Asyncness::No,
303 })
304}
305
306fn unsizing_params_for_adt<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId) -> DenseBitSet<u32> {
307 let def = tcx.adt_def(def_id);
308 let num_params = tcx.generics_of(def_id).count();
309
310 let maybe_unsizing_param_idx = |arg: ty::GenericArg<'tcx>| match arg.kind() {
311 ty::GenericArgKind::Type(ty) => match ty.kind() {
312 ty::Param(p) => Some(p.index),
313 _ => None,
314 },
315
316 ty::GenericArgKind::Lifetime(_) => None,
318
319 ty::GenericArgKind::Const(ct) => match ct.kind() {
320 ty::ConstKind::Param(p) => Some(p.index),
321 _ => None,
322 },
323 };
324
325 let Some((tail_field, prefix_fields)) = def.non_enum_variant().fields.raw.split_last() else {
327 return DenseBitSet::new_empty(num_params);
328 };
329
330 let mut unsizing_params = DenseBitSet::new_empty(num_params);
331 for arg in tcx.type_of(tail_field.did).instantiate_identity().skip_norm_wip().walk() {
332 if let Some(i) = maybe_unsizing_param_idx(arg) {
333 unsizing_params.insert(i);
334 }
335 }
336
337 for field in prefix_fields {
340 for arg in tcx.type_of(field.did).instantiate_identity().skip_norm_wip().walk() {
341 if let Some(i) = maybe_unsizing_param_idx(arg) {
342 unsizing_params.remove(i);
343 }
344 }
345 }
346
347 unsizing_params
348}
349
350fn impl_self_is_guaranteed_unsized<'tcx>(tcx: TyCtxt<'tcx>, impl_def_id: DefId) -> bool {
351 if true {
{
match (&tcx.def_kind(impl_def_id), &DefKind::Impl { of_trait: true })
{
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};
};debug_assert_eq!(tcx.def_kind(impl_def_id), DefKind::Impl { of_trait: true });
352
353 let infcx = tcx.infer_ctxt().ignoring_regions().build(ty::TypingMode::non_body_analysis());
354
355 let ocx = traits::ObligationCtxt::new(&infcx);
356 let cause = traits::ObligationCause::dummy();
357 let param_env = tcx.param_env(impl_def_id);
358
359 let self_ty = ocx.normalize(&cause, param_env, tcx.type_of(impl_def_id).instantiate_identity());
360 let tail = tcx.struct_tail_raw(
361 self_ty,
362 &cause,
363 |ty| {
364 ocx.normalize(&cause, param_env, ty)
366 },
367 || (),
368 );
369
370 match tail.kind() {
371 ty::Dynamic(_, _) | ty::Slice(_) | ty::Str => true,
372 ty::Bool
373 | ty::Char
374 | ty::Int(_)
375 | ty::Uint(_)
376 | ty::Float(_)
377 | ty::Adt(_, _)
378 | ty::Foreign(_)
379 | ty::Array(_, _)
380 | ty::Pat(_, _)
381 | ty::RawPtr(_, _)
382 | ty::Ref(_, _, _)
383 | ty::FnDef(_, _)
384 | ty::FnPtr(_, _)
385 | ty::UnsafeBinder(_)
386 | ty::Closure(_, _)
387 | ty::CoroutineClosure(_, _)
388 | ty::Coroutine(_, _)
389 | ty::CoroutineWitness(_, _)
390 | ty::Never
391 | ty::Tuple(_)
392 | ty::Alias(_, _)
393 | ty::Param(_)
394 | ty::Bound(_, _)
395 | ty::Placeholder(_)
396 | ty::Infer(_)
397 | ty::Error(_) => false,
398 }
399}
400
401pub(crate) fn provide(providers: &mut Providers) {
402 *providers = Providers {
403 asyncness,
404 adt_sizedness_constraint,
405 param_env,
406 param_env_normalized_for_post_analysis,
407 defaultness,
408 unsizing_params_for_adt,
409 impl_self_is_guaranteed_unsized,
410 ..*providers
411 };
412}