]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_typeck/src/check/dropck.rs
New upstream version 1.64.0+dfsg1
[rustc.git] / compiler / rustc_typeck / src / check / dropck.rs
CommitLineData
064997fb
FG
1// FIXME(@lcnr): Move this module out of `rustc_typeck`.
2//
3// We don't do any drop checking during hir typeck.
f9f354fc 4use crate::hir::def_id::{DefId, LocalDefId};
5e7ed085 5use rustc_errors::{struct_span_err, ErrorGuaranteed};
ba9703b0
XL
6use rustc_middle::ty::error::TypeError;
7use rustc_middle::ty::relate::{Relate, RelateResult, TypeRelation};
923072b8
FG
8use rustc_middle::ty::subst::SubstsRef;
9use rustc_middle::ty::util::IgnoreRegions;
10use rustc_middle::ty::{self, Predicate, Ty, TyCtxt};
60c5eb7d 11
9fa01778 12/// This function confirms that the `Drop` implementation identified by
c34b1796
AL
13/// `drop_impl_did` is not any more specialized than the type it is
14/// attached to (Issue #8142).
15///
16/// This means:
17///
18/// 1. The self type must be nominal (this is already checked during
19/// coherence),
20///
9fa01778 21/// 2. The generic region/type parameters of the impl's self type must
0731742a 22/// all be parameters of the Drop impl itself (i.e., no
c34b1796
AL
23/// specialization like `impl Drop for Foo<i32>`), and,
24///
25/// 3. Any bounds on the generic parameters must be reflected in the
26/// struct/enum definition for the nominal type itself (i.e.
27/// cannot do `struct S<T>; impl<T:Clone> Drop for S<T> { ... }`).
28///
5e7ed085 29pub fn check_drop_impl(tcx: TyCtxt<'_>, drop_impl_did: DefId) -> Result<(), ErrorGuaranteed> {
7cac9316
XL
30 let dtor_self_type = tcx.type_of(drop_impl_did);
31 let dtor_predicates = tcx.predicates_of(drop_impl_did);
1b1a35ee 32 match dtor_self_type.kind() {
b7449926 33 ty::Adt(adt_def, self_to_impl_substs) => {
0bf4aa26
XL
34 ensure_drop_params_and_item_params_correspond(
35 tcx,
f9f354fc 36 drop_impl_did.expect_local(),
5e7ed085 37 adt_def.did(),
923072b8 38 self_to_impl_substs,
0bf4aa26 39 )?;
c34b1796 40
0bf4aa26
XL
41 ensure_drop_predicates_are_implied_by_item_defn(
42 tcx,
e74abb32 43 dtor_predicates,
5e7ed085 44 adt_def.did().expect_local(),
0bf4aa26
XL
45 self_to_impl_substs,
46 )
c34b1796
AL
47 }
48 _ => {
49 // Destructors only work on nominal types. This was
2c00a5a8
XL
50 // already checked by coherence, but compilation may
51 // not have been terminated.
8bb4bdeb 52 let span = tcx.def_span(drop_impl_did);
5e7ed085 53 let reported = tcx.sess.delay_span_bug(
dfeec247 54 span,
04454e1e 55 &format!("should have been rejected by coherence check: {dtor_self_type}"),
dfeec247 56 );
5e7ed085 57 Err(reported)
c34b1796
AL
58 }
59 }
60}
61
dc9dc135
XL
62fn ensure_drop_params_and_item_params_correspond<'tcx>(
63 tcx: TyCtxt<'tcx>,
f9f354fc 64 drop_impl_did: LocalDefId,
0bf4aa26 65 self_type_did: DefId,
923072b8 66 drop_impl_substs: SubstsRef<'tcx>,
5e7ed085 67) -> Result<(), ErrorGuaranteed> {
923072b8
FG
68 let Err(arg) = tcx.uses_unique_generic_params(drop_impl_substs, IgnoreRegions::No) else {
69 return Ok(())
70 };
e9174d1e 71
923072b8
FG
72 let drop_impl_span = tcx.def_span(drop_impl_did);
73 let item_span = tcx.def_span(self_type_did);
74 let self_descr = tcx.def_kind(self_type_did).descr(self_type_did);
75 let mut err =
76 struct_span_err!(tcx.sess, drop_impl_span, E0366, "`Drop` impls cannot be specialized");
77 match arg {
78 ty::util::NotUniqueParam::DuplicateParam(arg) => {
79 err.note(&format!("`{arg}` is mentioned multiple times"))
a7813a04 80 }
923072b8
FG
81 ty::util::NotUniqueParam::NotParam(arg) => {
82 err.note(&format!("`{arg}` is not a generic parameter"))
a7813a04 83 }
923072b8
FG
84 };
85 err.span_note(
86 item_span,
87 &format!(
88 "use the same sequence of generic lifetime, type and const parameters \
89 as the {self_descr} definition",
90 ),
91 );
92 Err(err.emit())
c34b1796
AL
93}
94
95/// Confirms that every predicate imposed by dtor_predicates is
96/// implied by assuming the predicates attached to self_type_did.
dc9dc135
XL
97fn ensure_drop_predicates_are_implied_by_item_defn<'tcx>(
98 tcx: TyCtxt<'tcx>,
e74abb32 99 dtor_predicates: ty::GenericPredicates<'tcx>,
f9f354fc 100 self_type_did: LocalDefId,
532ac7d7 101 self_to_impl_substs: SubstsRef<'tcx>,
5e7ed085 102) -> Result<(), ErrorGuaranteed> {
8bb4bdeb 103 let mut result = Ok(());
c34b1796
AL
104
105 // Here is an example, analogous to that from
106 // `compare_impl_method`.
107 //
108 // Consider a struct type:
109 //
110 // struct Type<'c, 'b:'c, 'a> {
111 // x: &'a Contents // (contents are irrelevant;
112 // y: &'c Cell<&'b Contents>, // only the bounds matter for our purposes.)
113 // }
114 //
115 // and a Drop impl:
116 //
117 // impl<'z, 'y:'z, 'x:'y> Drop for P<'z, 'y, 'x> {
118 // fn drop(&mut self) { self.y.set(self.x); } // (only legal if 'x: 'y)
119 // }
120 //
121 // We start out with self_to_impl_substs, that maps the generic
122 // parameters of Type to that of the Drop impl.
123 //
124 // self_to_impl_substs = {'c => 'z, 'b => 'y, 'a => 'x}
125 //
0731742a 126 // Applying this to the predicates (i.e., assumptions) provided by the item
c34b1796
AL
127 // definition yields the instantiated assumptions:
128 //
129 // ['y : 'z]
130 //
131 // We then check all of the predicates of the Drop impl:
132 //
133 // ['y:'z, 'x:'y]
134 //
135 // and ensure each is in the list of instantiated
136 // assumptions. Here, `'y:'z` is present, but `'x:'y` is
137 // absent. So we report an error that the Drop impl injected a
138 // predicate that is not present on the struct definition.
139
c34b1796
AL
140 // We can assume the predicates attached to struct/enum definition
141 // hold.
7cac9316 142 let generic_assumptions = tcx.predicates_of(self_type_did);
c34b1796
AL
143
144 let assumptions_in_impl_context = generic_assumptions.instantiate(tcx, &self_to_impl_substs);
9e0c209e 145 let assumptions_in_impl_context = assumptions_in_impl_context.predicates;
c34b1796 146
dfeec247
XL
147 let self_param_env = tcx.param_env(self_type_did);
148
c34b1796
AL
149 // An earlier version of this code attempted to do this checking
150 // via the traits::fulfill machinery. However, it ran into trouble
151 // since the fulfill machinery merely turns outlives-predicates
152 // 'a:'b and T:'b into region inference constraints. It is simpler
153 // just to look for all the predicates directly.
154
9e0c209e 155 assert_eq!(dtor_predicates.parent, None);
f9f354fc 156 for &(predicate, predicate_sp) in dtor_predicates.predicates {
c34b1796
AL
157 // (We do not need to worry about deep analysis of type
158 // expressions etc because the Drop impls are already forced
b039eaaf 159 // to take on a structure that is roughly an alpha-renaming of
c34b1796
AL
160 // the generic parameters of the item definition.)
161
dfeec247
XL
162 // This path now just checks *all* predicates via an instantiation of
163 // the `SimpleEqRelation`, which simply forwards to the `relate` machinery
164 // after taking care of anonymizing late bound regions.
c34b1796
AL
165 //
166 // However, it may be more efficient in the future to batch
dfeec247
XL
167 // the analysis together via the fulfill (see comment above regarding
168 // the usage of the fulfill machinery), rather than the
169 // repeated `.iter().any(..)` calls.
c34b1796 170
dfeec247
XL
171 // This closure is a more robust way to check `Predicate` equality
172 // than simple `==` checks (which were the previous implementation).
94222f64
XL
173 // It relies on `ty::relate` for `TraitPredicate`, `ProjectionPredicate`,
174 // `ConstEvaluatable` and `TypeOutlives` (which implement the Relate trait),
175 // while delegating on simple equality for the other `Predicate`.
dfeec247
XL
176 // This implementation solves (Issue #59497) and (Issue #58311).
177 // It is unclear to me at the moment whether the approach based on `relate`
178 // could be extended easily also to the other `Predicate`.
f9f354fc 179 let predicate_matches_closure = |p: Predicate<'tcx>| {
dfeec247 180 let mut relator: SimpleEqRelation<'tcx> = SimpleEqRelation::new(tcx, self_param_env);
5869c6ff
XL
181 let predicate = predicate.kind();
182 let p = p.kind();
29967ef6 183 match (predicate.skip_binder(), p.skip_binder()) {
94222f64 184 (ty::PredicateKind::Trait(a), ty::PredicateKind::Trait(b)) => {
5099ac24
FG
185 // Since struct predicates cannot have ~const, project the impl predicate
186 // onto one that ignores the constness. This is equivalent to saying that
187 // we match a `Trait` bound on the struct with a `Trait` or `~const Trait`
188 // in the impl.
189 let non_const_a =
190 ty::TraitPredicate { constness: ty::BoundConstness::NotConst, ..a };
191 relator.relate(predicate.rebind(non_const_a), p.rebind(b)).is_ok()
f9f354fc 192 }
5869c6ff 193 (ty::PredicateKind::Projection(a), ty::PredicateKind::Projection(b)) => {
29967ef6 194 relator.relate(predicate.rebind(a), p.rebind(b)).is_ok()
dfeec247 195 }
94222f64
XL
196 (
197 ty::PredicateKind::ConstEvaluatable(a),
198 ty::PredicateKind::ConstEvaluatable(b),
5e7ed085 199 ) => tcx.try_unify_abstract_consts(self_param_env.and((a, b))),
c295e0f8
XL
200 (
201 ty::PredicateKind::TypeOutlives(ty::OutlivesPredicate(ty_a, lt_a)),
202 ty::PredicateKind::TypeOutlives(ty::OutlivesPredicate(ty_b, lt_b)),
203 ) => {
204 relator.relate(predicate.rebind(ty_a), p.rebind(ty_b)).is_ok()
205 && relator.relate(predicate.rebind(lt_a), p.rebind(lt_b)).is_ok()
94222f64 206 }
064997fb
FG
207 (ty::PredicateKind::WellFormed(arg_a), ty::PredicateKind::WellFormed(arg_b)) => {
208 relator.relate(predicate.rebind(arg_a), p.rebind(arg_b)).is_ok()
209 }
dfeec247
XL
210 _ => predicate == p,
211 }
212 };
213
f9f354fc 214 if !assumptions_in_impl_context.iter().copied().any(predicate_matches_closure) {
5099ac24 215 let item_span = tcx.def_span(self_type_did);
f9f354fc 216 let self_descr = tcx.def_kind(self_type_did).descr(self_type_did.to_def_id());
5e7ed085 217 let reported = struct_span_err!(
0bf4aa26 218 tcx.sess,
f9f354fc 219 predicate_sp,
0bf4aa26 220 E0367,
04454e1e 221 "`Drop` impl requires `{predicate}` but the {self_descr} it is implemented for does not",
0bf4aa26 222 )
dfeec247
XL
223 .span_note(item_span, "the implementor must specify the same requirement")
224 .emit();
5e7ed085 225 result = Err(reported);
c34b1796
AL
226 }
227 }
85aaf69f 228
8bb4bdeb 229 result
c34b1796 230}
85aaf69f 231
dfeec247
XL
232// This is an implementation of the TypeRelation trait with the
233// aim of simply comparing for equality (without side-effects).
234// It is not intended to be used anywhere else other than here.
923072b8 235pub(crate) struct SimpleEqRelation<'tcx> {
dfeec247
XL
236 tcx: TyCtxt<'tcx>,
237 param_env: ty::ParamEnv<'tcx>,
238}
239
240impl<'tcx> SimpleEqRelation<'tcx> {
241 fn new(tcx: TyCtxt<'tcx>, param_env: ty::ParamEnv<'tcx>) -> SimpleEqRelation<'tcx> {
242 SimpleEqRelation { tcx, param_env }
243 }
244}
245
a2a8927a 246impl<'tcx> TypeRelation<'tcx> for SimpleEqRelation<'tcx> {
dfeec247
XL
247 fn tcx(&self) -> TyCtxt<'tcx> {
248 self.tcx
249 }
250
251 fn param_env(&self) -> ty::ParamEnv<'tcx> {
252 self.param_env
253 }
254
255 fn tag(&self) -> &'static str {
256 "dropck::SimpleEqRelation"
257 }
258
259 fn a_is_expected(&self) -> bool {
260 true
261 }
262
263 fn relate_with_variance<T: Relate<'tcx>>(
264 &mut self,
265 _: ty::Variance,
17df50a5 266 _info: ty::VarianceDiagInfo<'tcx>,
f035d41b
XL
267 a: T,
268 b: T,
dfeec247
XL
269 ) -> RelateResult<'tcx, T> {
270 // Here we ignore variance because we require drop impl's types
271 // to be *exactly* the same as to the ones in the struct definition.
272 self.relate(a, b)
273 }
274
275 fn tys(&mut self, a: Ty<'tcx>, b: Ty<'tcx>) -> RelateResult<'tcx, Ty<'tcx>> {
276 debug!("SimpleEqRelation::tys(a={:?}, b={:?})", a, b);
277 ty::relate::super_relate_tys(self, a, b)
278 }
279
280 fn regions(
281 &mut self,
282 a: ty::Region<'tcx>,
283 b: ty::Region<'tcx>,
284 ) -> RelateResult<'tcx, ty::Region<'tcx>> {
285 debug!("SimpleEqRelation::regions(a={:?}, b={:?})", a, b);
286
287 // We can just equate the regions because LBRs have been
288 // already anonymized.
289 if a == b {
290 Ok(a)
291 } else {
292 // I'm not sure is this `TypeError` is the right one, but
293 // it should not matter as it won't be checked (the dropck
294 // will emit its own, more informative and higher-level errors
295 // in case anything goes wrong).
296 Err(TypeError::RegionsPlaceholderMismatch)
297 }
298 }
299
300 fn consts(
301 &mut self,
5099ac24
FG
302 a: ty::Const<'tcx>,
303 b: ty::Const<'tcx>,
304 ) -> RelateResult<'tcx, ty::Const<'tcx>> {
dfeec247
XL
305 debug!("SimpleEqRelation::consts(a={:?}, b={:?})", a, b);
306 ty::relate::super_relate_consts(self, a, b)
307 }
308
309 fn binders<T>(
310 &mut self,
cdc7bbd5
XL
311 a: ty::Binder<'tcx, T>,
312 b: ty::Binder<'tcx, T>,
313 ) -> RelateResult<'tcx, ty::Binder<'tcx, T>>
dfeec247
XL
314 where
315 T: Relate<'tcx>,
316 {
317 debug!("SimpleEqRelation::binders({:?}: {:?}", a, b);
318
319 // Anonymizing the LBRs is necessary to solve (Issue #59497).
320 // After we do so, it should be totally fine to skip the binders.
064997fb
FG
321 let anon_a = self.tcx.anonymize_bound_vars(a);
322 let anon_b = self.tcx.anonymize_bound_vars(b);
dfeec247
XL
323 self.relate(anon_a.skip_binder(), anon_b.skip_binder())?;
324
3dfed10e 325 Ok(a)
dfeec247
XL
326 }
327}