2016-12-04 00:28:30 +02:00
|
|
|
//! Check properties that are required by built-in traits and set
|
2018-05-08 16:10:16 +03:00
|
|
|
//! up data structures required by type-checking/codegen.
|
2016-12-04 00:28:30 +02:00
|
|
|
|
2020-08-27 20:09:22 +10:00
|
|
|
use crate::errors::{CopyImplOnNonAdt, CopyImplOnTypeWithDtor, DropImplOnWrongItem};
|
2022-06-02 13:15:56 -07:00
|
|
|
use rustc_errors::{struct_span_err, MultiSpan};
|
2020-01-05 02:37:57 +01:00
|
|
|
use rustc_hir as hir;
|
2020-04-09 09:43:00 +01:00
|
|
|
use rustc_hir::def_id::{DefId, LocalDefId};
|
2020-08-18 11:47:27 +01:00
|
|
|
use rustc_hir::lang_items::LangItem;
|
2020-01-05 02:37:57 +01:00
|
|
|
use rustc_hir::ItemKind;
|
2020-01-06 23:12:31 +01:00
|
|
|
use rustc_infer::infer;
|
|
|
|
use rustc_infer::infer::outlives::env::OutlivesEnvironment;
|
2022-06-13 01:11:16 -04:00
|
|
|
use rustc_infer::infer::TyCtxtInferExt;
|
2020-03-29 17:19:48 +02:00
|
|
|
use rustc_middle::ty::adjustment::CoerceUnsizedInfo;
|
2022-06-17 13:15:00 +01:00
|
|
|
use rustc_middle::ty::{self, suggest_constraining_type_params, Ty, TyCtxt, TypeVisitable};
|
2022-09-09 15:08:06 -05:00
|
|
|
use rustc_trait_selection::traits::error_reporting::TypeErrCtxtExt;
|
2020-02-11 21:19:40 +01:00
|
|
|
use rustc_trait_selection::traits::misc::{can_type_implement_copy, CopyImplementationError};
|
|
|
|
use rustc_trait_selection::traits::predicate_for_trait_def;
|
2022-08-02 06:02:04 +00:00
|
|
|
use rustc_trait_selection::traits::{self, ObligationCause};
|
2022-06-02 13:15:56 -07:00
|
|
|
use std::collections::BTreeMap;
|
2016-12-04 00:28:30 +02:00
|
|
|
|
2019-06-21 20:05:14 +02:00
|
|
|
pub fn check_trait(tcx: TyCtxt<'_>, trait_def_id: DefId) {
|
2020-02-08 00:27:07 +01:00
|
|
|
let lang_items = tcx.lang_items();
|
2017-02-19 14:46:29 +02:00
|
|
|
Checker { tcx, trait_def_id }
|
2020-02-08 00:27:07 +01:00
|
|
|
.check(lang_items.drop_trait(), visit_implementation_of_drop)
|
|
|
|
.check(lang_items.copy_trait(), visit_implementation_of_copy)
|
|
|
|
.check(lang_items.coerce_unsized_trait(), visit_implementation_of_coerce_unsized)
|
|
|
|
.check(lang_items.dispatch_from_dyn_trait(), visit_implementation_of_dispatch_from_dyn);
|
2017-01-04 11:54:57 +02:00
|
|
|
}
|
2016-12-04 00:58:13 +02:00
|
|
|
|
2019-06-11 22:03:44 +03:00
|
|
|
struct Checker<'tcx> {
|
2019-06-14 00:48:52 +03:00
|
|
|
tcx: TyCtxt<'tcx>,
|
2019-06-12 00:11:55 +03:00
|
|
|
trait_def_id: DefId,
|
2017-02-19 14:46:29 +02:00
|
|
|
}
|
|
|
|
|
2019-06-11 22:03:44 +03:00
|
|
|
impl<'tcx> Checker<'tcx> {
|
2017-02-19 14:46:29 +02:00
|
|
|
fn check<F>(&self, trait_def_id: Option<DefId>, mut f: F) -> &Self
|
2019-06-12 00:11:55 +03:00
|
|
|
where
|
2020-04-09 09:43:00 +01:00
|
|
|
F: FnMut(TyCtxt<'tcx>, LocalDefId),
|
2017-02-19 14:46:29 +02:00
|
|
|
{
|
|
|
|
if Some(self.trait_def_id) == trait_def_id {
|
2021-02-01 11:12:49 +01:00
|
|
|
for &impl_def_id in self.tcx.hir().trait_impls(self.trait_def_id) {
|
2018-07-30 16:43:23 -06:00
|
|
|
f(self.tcx, impl_def_id);
|
2017-02-19 14:46:29 +02:00
|
|
|
}
|
2017-01-04 11:54:57 +02:00
|
|
|
}
|
2017-02-19 14:46:29 +02:00
|
|
|
self
|
2016-12-04 00:58:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-09 09:43:00 +01:00
|
|
|
fn visit_implementation_of_drop(tcx: TyCtxt<'_>, impl_did: LocalDefId) {
|
2022-07-21 22:00:15 +00:00
|
|
|
// Destructors only work on local ADT types.
|
|
|
|
match tcx.type_of(impl_did).kind() {
|
|
|
|
ty::Adt(def, _) if def.did().is_local() => return,
|
|
|
|
ty::Error(_) => return,
|
|
|
|
_ => {}
|
2016-12-04 00:58:13 +02:00
|
|
|
}
|
2020-01-02 22:24:21 -05:00
|
|
|
|
2021-10-20 22:38:10 +02:00
|
|
|
let sp = match tcx.hir().expect_item(impl_did).kind {
|
2020-11-22 17:46:21 -05:00
|
|
|
ItemKind::Impl(ref impl_) => impl_.self_ty.span,
|
2020-01-02 22:24:21 -05:00
|
|
|
_ => bug!("expected Drop impl item"),
|
|
|
|
};
|
|
|
|
|
2020-08-27 20:09:22 +10:00
|
|
|
tcx.sess.emit_err(DropImplOnWrongItem { span: sp });
|
2016-12-04 00:28:30 +02:00
|
|
|
}
|
|
|
|
|
2020-04-09 09:43:00 +01:00
|
|
|
fn visit_implementation_of_copy(tcx: TyCtxt<'_>, impl_did: LocalDefId) {
|
2016-12-04 00:58:13 +02:00
|
|
|
debug!("visit_implementation_of_copy: impl_did={:?}", impl_did);
|
|
|
|
|
2020-08-12 12:22:56 +02:00
|
|
|
let impl_hir_id = tcx.hir().local_def_id_to_hir_id(impl_did);
|
2016-12-04 00:28:30 +02:00
|
|
|
|
2017-04-24 15:20:46 +03:00
|
|
|
let self_type = tcx.type_of(impl_did);
|
2016-12-04 00:58:13 +02:00
|
|
|
debug!("visit_implementation_of_copy: self_type={:?} (bound)", self_type);
|
|
|
|
|
2017-05-15 18:00:35 -04:00
|
|
|
let param_env = tcx.param_env(impl_did);
|
2018-10-22 22:38:51 +02:00
|
|
|
assert!(!self_type.has_escaping_bound_vars());
|
2016-12-04 00:58:13 +02:00
|
|
|
|
|
|
|
debug!("visit_implementation_of_copy: self_type={:?} (free)", self_type);
|
|
|
|
|
2022-09-16 00:06:25 +02:00
|
|
|
let span = match tcx.hir().expect_item(impl_did).kind {
|
|
|
|
ItemKind::Impl(hir::Impl { polarity: hir::ImplPolarity::Negative(_), .. }) => return,
|
|
|
|
ItemKind::Impl(impl_) => impl_.self_ty.span,
|
|
|
|
_ => bug!("expected Copy impl item"),
|
|
|
|
};
|
|
|
|
|
2022-02-06 13:03:28 -08:00
|
|
|
let cause = traits::ObligationCause::misc(span, impl_hir_id);
|
|
|
|
match can_type_implement_copy(tcx, param_env, self_type, cause) {
|
2016-12-04 00:58:13 +02:00
|
|
|
Ok(()) => {}
|
2018-05-08 11:38:35 -03:00
|
|
|
Err(CopyImplementationError::InfrigingFields(fields)) => {
|
2018-05-09 10:05:59 -03:00
|
|
|
let mut err = struct_span_err!(
|
|
|
|
tcx.sess,
|
2018-09-26 17:32:23 +02:00
|
|
|
span,
|
|
|
|
E0204,
|
|
|
|
"the trait `Copy` may not be implemented for this type"
|
|
|
|
);
|
2022-06-02 12:34:55 -07:00
|
|
|
|
|
|
|
// We'll try to suggest constraining type parameters to fulfill the requirements of
|
|
|
|
// their `Copy` implementation.
|
2022-06-02 13:15:56 -07:00
|
|
|
let mut errors: BTreeMap<_, Vec<_>> = Default::default();
|
2022-06-02 12:34:55 -07:00
|
|
|
let mut bounds = vec![];
|
|
|
|
|
2022-02-21 21:26:37 -08:00
|
|
|
for (field, ty) in fields {
|
|
|
|
let field_span = tcx.def_span(field.did);
|
2022-06-03 19:17:12 -07:00
|
|
|
let field_ty_span = match tcx.hir().get_if_local(field.did) {
|
|
|
|
Some(hir::Node::Field(field_def)) => field_def.ty.span,
|
|
|
|
_ => field_span,
|
|
|
|
};
|
2022-02-21 21:26:37 -08:00
|
|
|
err.span_label(field_span, "this field does not implement `Copy`");
|
|
|
|
// Spin up a new FulfillmentContext, so we can get the _precise_ reason
|
|
|
|
// why this field does not implement Copy. This is useful because sometimes
|
|
|
|
// it is not immediately clear why Copy is not implemented for a field, since
|
|
|
|
// all we point at is the field itself.
|
2022-07-20 11:40:15 +02:00
|
|
|
let infcx = tcx.infer_ctxt().ignoring_regions().build();
|
2022-08-02 06:02:04 +00:00
|
|
|
for error in traits::fully_solve_bound(
|
2022-02-21 21:26:37 -08:00
|
|
|
&infcx,
|
2022-08-02 06:02:04 +00:00
|
|
|
traits::ObligationCause::dummy_with_span(field_ty_span),
|
2022-02-21 21:26:37 -08:00
|
|
|
param_env,
|
|
|
|
ty,
|
2022-11-22 17:19:19 +00:00
|
|
|
tcx.require_lang_item(LangItem::Copy, Some(span)),
|
2022-08-02 06:02:04 +00:00
|
|
|
) {
|
2022-02-21 21:26:37 -08:00
|
|
|
let error_predicate = error.obligation.predicate;
|
|
|
|
// Only note if it's not the root obligation, otherwise it's trivial and
|
|
|
|
// should be self-explanatory (i.e. a field literally doesn't implement Copy).
|
2022-09-19 22:03:59 -05:00
|
|
|
|
2022-02-21 21:26:37 -08:00
|
|
|
// FIXME: This error could be more descriptive, especially if the error_predicate
|
|
|
|
// contains a foreign type or if it's a deeply nested type...
|
|
|
|
if error_predicate != error.root_obligation.predicate {
|
2022-06-02 13:15:56 -07:00
|
|
|
errors
|
|
|
|
.entry((ty.to_string(), error_predicate.to_string()))
|
|
|
|
.or_default()
|
|
|
|
.push(error.obligation.cause.span);
|
2022-02-21 21:26:37 -08:00
|
|
|
}
|
2022-11-24 18:14:58 -03:00
|
|
|
if let ty::PredicateKind::Clause(ty::Clause::Trait(ty::TraitPredicate {
|
2022-06-02 12:34:55 -07:00
|
|
|
trait_ref,
|
|
|
|
polarity: ty::ImplPolarity::Positive,
|
|
|
|
..
|
2022-11-24 18:14:58 -03:00
|
|
|
})) = error_predicate.kind().skip_binder()
|
2022-06-02 12:34:55 -07:00
|
|
|
{
|
|
|
|
let ty = trait_ref.self_ty();
|
|
|
|
if let ty::Param(_) = ty.kind() {
|
|
|
|
bounds.push((
|
|
|
|
format!("{ty}"),
|
|
|
|
trait_ref.print_only_trait_path().to_string(),
|
|
|
|
Some(trait_ref.def_id),
|
|
|
|
));
|
|
|
|
}
|
2022-02-21 21:26:37 -08:00
|
|
|
}
|
|
|
|
}
|
2018-05-08 11:38:35 -03:00
|
|
|
}
|
2022-06-02 13:15:56 -07:00
|
|
|
for ((ty, error_predicate), spans) in errors {
|
|
|
|
let span: MultiSpan = spans.into();
|
|
|
|
err.span_note(
|
|
|
|
span,
|
|
|
|
&format!("the `Copy` impl for `{}` requires that `{}`", ty, error_predicate),
|
|
|
|
);
|
|
|
|
}
|
2022-07-26 01:37:06 +00:00
|
|
|
suggest_constraining_type_params(
|
|
|
|
tcx,
|
|
|
|
tcx.hir().get_generics(impl_did).expect("impls always have generics"),
|
|
|
|
&mut err,
|
|
|
|
bounds.iter().map(|(param, constraint, def_id)| {
|
|
|
|
(param.as_str(), constraint.as_str(), *def_id)
|
|
|
|
}),
|
|
|
|
);
|
2022-01-27 09:44:25 +00:00
|
|
|
err.emit();
|
2016-12-04 00:28:30 +02:00
|
|
|
}
|
2016-12-04 00:58:13 +02:00
|
|
|
Err(CopyImplementationError::NotAnAdt) => {
|
2020-08-27 20:09:22 +10:00
|
|
|
tcx.sess.emit_err(CopyImplOnNonAdt { span });
|
2016-12-04 00:58:13 +02:00
|
|
|
}
|
|
|
|
Err(CopyImplementationError::HasDestructor) => {
|
2020-08-27 20:09:22 +10:00
|
|
|
tcx.sess.emit_err(CopyImplOnTypeWithDtor { span });
|
2016-12-04 00:58:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-04 00:28:30 +02:00
|
|
|
|
2022-12-20 22:10:40 +01:00
|
|
|
fn visit_implementation_of_coerce_unsized(tcx: TyCtxt<'_>, impl_did: LocalDefId) {
|
2016-12-04 00:58:13 +02:00
|
|
|
debug!("visit_implementation_of_coerce_unsized: impl_did={:?}", impl_did);
|
|
|
|
|
2017-03-17 16:17:45 -04:00
|
|
|
// Just compute this for the side-effects, in particular reporting
|
|
|
|
// errors; other parts of the code may demand it for the info of
|
|
|
|
// course.
|
2020-04-09 09:43:00 +01:00
|
|
|
let span = tcx.def_span(impl_did);
|
|
|
|
tcx.at(span).coerce_unsized_info(impl_did);
|
2017-03-17 16:17:45 -04:00
|
|
|
}
|
|
|
|
|
2022-12-20 22:10:40 +01:00
|
|
|
fn visit_implementation_of_dispatch_from_dyn(tcx: TyCtxt<'_>, impl_did: LocalDefId) {
|
2018-10-03 23:40:21 -04:00
|
|
|
debug!("visit_implementation_of_dispatch_from_dyn: impl_did={:?}", impl_did);
|
2018-09-20 03:16:10 -04:00
|
|
|
|
2020-08-12 12:22:56 +02:00
|
|
|
let impl_hir_id = tcx.hir().local_def_id_to_hir_id(impl_did);
|
2020-04-09 09:43:00 +01:00
|
|
|
let span = tcx.hir().span(impl_hir_id);
|
2018-09-20 03:16:10 -04:00
|
|
|
|
2020-08-18 11:47:27 +01:00
|
|
|
let dispatch_from_dyn_trait = tcx.require_lang_item(LangItem::DispatchFromDyn, Some(span));
|
2020-05-14 22:06:44 +01:00
|
|
|
|
2020-04-09 09:43:00 +01:00
|
|
|
let source = tcx.type_of(impl_did);
|
|
|
|
assert!(!source.has_escaping_bound_vars());
|
|
|
|
let target = {
|
|
|
|
let trait_ref = tcx.impl_trait_ref(impl_did).unwrap();
|
|
|
|
assert_eq!(trait_ref.def_id, dispatch_from_dyn_trait);
|
|
|
|
|
|
|
|
trait_ref.substs.type_at(1)
|
|
|
|
};
|
2018-09-20 03:16:10 -04:00
|
|
|
|
2020-04-09 09:43:00 +01:00
|
|
|
debug!("visit_implementation_of_dispatch_from_dyn: {:?} -> {:?}", source, target);
|
2018-09-20 03:16:10 -04:00
|
|
|
|
2020-04-09 09:43:00 +01:00
|
|
|
let param_env = tcx.param_env(impl_did);
|
2018-09-20 03:16:10 -04:00
|
|
|
|
2020-04-09 09:43:00 +01:00
|
|
|
let create_err = |msg: &str| struct_span_err!(tcx.sess, span, E0378, "{}", msg);
|
2018-09-20 03:16:10 -04:00
|
|
|
|
2020-04-09 09:43:00 +01:00
|
|
|
let infcx = tcx.infer_ctxt().build();
|
|
|
|
let cause = ObligationCause::misc(span, impl_hir_id);
|
2022-09-19 22:03:59 -05:00
|
|
|
|
2021-01-31 10:32:34 +01:00
|
|
|
use rustc_type_ir::sty::TyKind::*;
|
2020-08-03 00:49:11 +02:00
|
|
|
match (source.kind(), target.kind()) {
|
2020-04-09 09:43:00 +01:00
|
|
|
(&Ref(r_a, _, mutbl_a), Ref(r_b, _, mutbl_b))
|
2022-01-28 11:25:15 +11:00
|
|
|
if infcx.at(&cause, param_env).eq(r_a, *r_b).is_ok() && mutbl_a == *mutbl_b => {}
|
2020-04-09 09:43:00 +01:00
|
|
|
(&RawPtr(tm_a), &RawPtr(tm_b)) if tm_a.mutbl == tm_b.mutbl => (),
|
|
|
|
(&Adt(def_a, substs_a), &Adt(def_b, substs_b))
|
|
|
|
if def_a.is_struct() && def_b.is_struct() =>
|
|
|
|
{
|
|
|
|
if def_a != def_b {
|
2022-03-05 07:28:41 +11:00
|
|
|
let source_path = tcx.def_path_str(def_a.did());
|
|
|
|
let target_path = tcx.def_path_str(def_b.did());
|
2022-09-19 22:03:59 -05:00
|
|
|
|
2020-04-09 09:43:00 +01:00
|
|
|
create_err(&format!(
|
|
|
|
"the trait `DispatchFromDyn` may only be implemented \
|
2018-09-20 03:16:10 -04:00
|
|
|
for a coercion between structures with the same \
|
2018-10-09 01:13:07 -04:00
|
|
|
definition; expected `{}`, found `{}`",
|
2020-04-09 09:43:00 +01:00
|
|
|
source_path, target_path,
|
|
|
|
))
|
|
|
|
.emit();
|
2018-09-20 03:16:10 -04:00
|
|
|
|
2020-04-09 09:43:00 +01:00
|
|
|
return;
|
|
|
|
}
|
2018-09-20 03:16:10 -04:00
|
|
|
|
2022-03-05 07:28:41 +11:00
|
|
|
if def_a.repr().c() || def_a.repr().packed() {
|
2020-04-09 09:43:00 +01:00
|
|
|
create_err(
|
|
|
|
"structs implementing `DispatchFromDyn` may not have \
|
2018-10-26 01:09:33 -04:00
|
|
|
`#[repr(packed)]` or `#[repr(C)]`",
|
2020-04-09 09:43:00 +01:00
|
|
|
)
|
|
|
|
.emit();
|
|
|
|
}
|
2018-10-26 01:09:33 -04:00
|
|
|
|
2020-04-09 09:43:00 +01:00
|
|
|
let fields = &def_a.non_enum_variant().fields;
|
2018-09-20 03:16:10 -04:00
|
|
|
|
2020-04-09 09:43:00 +01:00
|
|
|
let coerced_fields = fields
|
|
|
|
.iter()
|
2021-11-06 16:36:23 +01:00
|
|
|
.filter(|field| {
|
2020-04-09 09:43:00 +01:00
|
|
|
let ty_a = field.ty(tcx, substs_a);
|
|
|
|
let ty_b = field.ty(tcx, substs_b);
|
2019-12-22 17:42:04 -05:00
|
|
|
|
2020-04-09 09:43:00 +01:00
|
|
|
if let Ok(layout) = tcx.layout_of(param_env.and(ty_a)) {
|
|
|
|
if layout.is_zst() && layout.align.abi.bytes() == 1 {
|
|
|
|
// ignore ZST fields with alignment of 1 byte
|
2021-11-06 16:36:23 +01:00
|
|
|
return false;
|
2020-04-09 09:43:00 +01:00
|
|
|
}
|
2022-09-19 22:03:59 -05:00
|
|
|
}
|
2019-04-29 02:55:43 +02:00
|
|
|
|
2020-04-09 09:43:00 +01:00
|
|
|
if let Ok(ok) = infcx.at(&cause, param_env).eq(ty_a, ty_b) {
|
|
|
|
if ok.obligations.is_empty() {
|
|
|
|
create_err(
|
|
|
|
"the trait `DispatchFromDyn` may only be implemented \
|
2018-10-03 23:40:21 -04:00
|
|
|
for structs containing the field being coerced, \
|
2019-04-30 14:38:17 +02:00
|
|
|
ZST fields with 1 byte alignment, and nothing else",
|
2020-04-09 09:43:00 +01:00
|
|
|
)
|
|
|
|
.note(&format!(
|
|
|
|
"extra field `{}` of type `{}` is not allowed",
|
2022-01-02 22:37:05 -05:00
|
|
|
field.name, ty_a,
|
2020-04-09 09:43:00 +01:00
|
|
|
))
|
|
|
|
.emit();
|
2022-09-19 22:03:59 -05:00
|
|
|
|
2021-11-06 16:36:23 +01:00
|
|
|
return false;
|
2020-04-09 09:43:00 +01:00
|
|
|
}
|
2022-09-19 22:03:59 -05:00
|
|
|
}
|
2018-09-20 03:16:10 -04:00
|
|
|
|
2021-11-06 16:36:23 +01:00
|
|
|
return true;
|
2020-04-09 09:43:00 +01:00
|
|
|
})
|
|
|
|
.collect::<Vec<_>>();
|
2018-09-20 03:16:10 -04:00
|
|
|
|
2020-04-09 09:43:00 +01:00
|
|
|
if coerced_fields.is_empty() {
|
|
|
|
create_err(
|
|
|
|
"the trait `DispatchFromDyn` may only be implemented \
|
2018-09-20 03:16:10 -04:00
|
|
|
for a coercion between structures with a single field \
|
|
|
|
being coerced, none found",
|
2020-04-09 09:43:00 +01:00
|
|
|
)
|
|
|
|
.emit();
|
|
|
|
} else if coerced_fields.len() > 1 {
|
|
|
|
create_err("implementing the `DispatchFromDyn` trait requires multiple coercions")
|
|
|
|
.note(
|
|
|
|
"the trait `DispatchFromDyn` may only be implemented \
|
2018-09-20 03:16:10 -04:00
|
|
|
for a coercion between structures with a single field \
|
|
|
|
being coerced",
|
2020-04-09 09:43:00 +01:00
|
|
|
)
|
|
|
|
.note(&format!(
|
|
|
|
"currently, {} fields need coercions: {}",
|
|
|
|
coerced_fields.len(),
|
|
|
|
coerced_fields
|
|
|
|
.iter()
|
|
|
|
.map(|field| {
|
|
|
|
format!(
|
|
|
|
"`{}` (`{}` to `{}`)",
|
2022-01-02 22:37:05 -05:00
|
|
|
field.name,
|
2020-04-09 09:43:00 +01:00
|
|
|
field.ty(tcx, substs_a),
|
|
|
|
field.ty(tcx, substs_b),
|
|
|
|
)
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
.join(", ")
|
|
|
|
))
|
|
|
|
.emit();
|
|
|
|
} else {
|
2022-08-02 06:02:04 +00:00
|
|
|
let errors = traits::fully_solve_obligations(
|
|
|
|
&infcx,
|
|
|
|
coerced_fields.into_iter().map(|field| {
|
|
|
|
predicate_for_trait_def(
|
|
|
|
tcx,
|
|
|
|
param_env,
|
|
|
|
cause.clone(),
|
|
|
|
dispatch_from_dyn_trait,
|
|
|
|
0,
|
2022-11-21 12:24:53 +00:00
|
|
|
[field.ty(tcx, substs_a), field.ty(tcx, substs_b)],
|
2022-08-02 06:02:04 +00:00
|
|
|
)
|
|
|
|
}),
|
|
|
|
);
|
2021-11-08 23:35:23 +08:00
|
|
|
if !errors.is_empty() {
|
2022-11-02 01:34:17 +00:00
|
|
|
infcx.err_ctxt().report_fulfillment_errors(&errors, None);
|
2018-09-20 03:16:10 -04:00
|
|
|
}
|
2022-09-19 22:03:59 -05:00
|
|
|
|
2020-04-09 09:43:00 +01:00
|
|
|
// Finally, resolve all regions.
|
|
|
|
let outlives_env = OutlivesEnvironment::new(param_env);
|
2022-12-26 22:41:49 +00:00
|
|
|
let _ = infcx
|
|
|
|
.err_ctxt()
|
|
|
|
.check_region_obligations_and_report_errors(impl_did, &outlives_env);
|
2018-09-20 03:16:10 -04:00
|
|
|
}
|
2020-04-09 09:43:00 +01:00
|
|
|
}
|
2022-09-19 22:03:59 -05:00
|
|
|
_ => {
|
2020-04-09 09:43:00 +01:00
|
|
|
create_err(
|
|
|
|
"the trait `DispatchFromDyn` may only be implemented \
|
2016-12-04 00:58:13 +02:00
|
|
|
for a coercion between structures",
|
2020-04-09 09:43:00 +01:00
|
|
|
)
|
2022-09-19 22:03:59 -05:00
|
|
|
.emit();
|
2020-04-09 09:43:00 +01:00
|
|
|
}
|
2022-09-19 22:03:59 -05:00
|
|
|
}
|
2018-09-20 03:16:10 -04:00
|
|
|
}
|
|
|
|
|
2021-12-13 21:45:08 -04:00
|
|
|
pub fn coerce_unsized_info<'tcx>(tcx: TyCtxt<'tcx>, impl_did: DefId) -> CoerceUnsizedInfo {
|
2017-03-17 16:17:45 -04:00
|
|
|
debug!("compute_coerce_unsized_info(impl_did={:?})", impl_did);
|
2020-05-14 22:06:44 +01:00
|
|
|
|
|
|
|
// this provider should only get invoked for local def-ids
|
2021-10-20 22:38:10 +02:00
|
|
|
let impl_did = impl_did.expect_local();
|
|
|
|
let span = tcx.def_span(impl_did);
|
2020-05-14 22:06:44 +01:00
|
|
|
|
2020-08-18 11:47:27 +01:00
|
|
|
let coerce_unsized_trait = tcx.require_lang_item(LangItem::CoerceUnsized, Some(span));
|
2017-03-17 16:17:45 -04:00
|
|
|
|
2020-08-18 11:47:27 +01:00
|
|
|
let unsize_trait = tcx.lang_items().require(LangItem::Unsize).unwrap_or_else(|err| {
|
2022-08-24 16:28:56 -06:00
|
|
|
tcx.sess.fatal(&format!("`CoerceUnsized` implementation {}", err.to_string()));
|
2018-09-26 17:32:23 +02:00
|
|
|
});
|
2017-01-04 11:54:57 +02:00
|
|
|
|
2019-09-25 16:35:19 -04:00
|
|
|
let source = tcx.type_of(impl_did);
|
|
|
|
let trait_ref = tcx.impl_trait_ref(impl_did).unwrap();
|
2017-03-17 16:17:45 -04:00
|
|
|
assert_eq!(trait_ref.def_id, coerce_unsized_trait);
|
2016-12-04 00:58:13 +02:00
|
|
|
let target = trait_ref.substs.type_at(1);
|
|
|
|
debug!("visit_implementation_of_coerce_unsized: {:?} -> {:?} (bound)", source, target);
|
|
|
|
|
2019-09-25 16:35:19 -04:00
|
|
|
let param_env = tcx.param_env(impl_did);
|
2018-10-22 22:38:51 +02:00
|
|
|
assert!(!source.has_escaping_bound_vars());
|
2016-12-04 00:58:13 +02:00
|
|
|
|
2017-03-17 16:17:45 -04:00
|
|
|
let err_info = CoerceUnsizedInfo { custom_kind: None };
|
|
|
|
|
2016-12-04 00:58:13 +02:00
|
|
|
debug!("visit_implementation_of_coerce_unsized: {:?} -> {:?} (free)", source, target);
|
|
|
|
|
2019-09-25 16:35:19 -04:00
|
|
|
let infcx = tcx.infer_ctxt().build();
|
2021-10-20 22:38:10 +02:00
|
|
|
let impl_hir_id = tcx.hir().local_def_id_to_hir_id(impl_did);
|
2019-02-04 20:01:14 +01:00
|
|
|
let cause = ObligationCause::misc(span, impl_hir_id);
|
2019-06-14 00:48:52 +03:00
|
|
|
let check_mutbl = |mt_a: ty::TypeAndMut<'tcx>,
|
|
|
|
mt_b: ty::TypeAndMut<'tcx>,
|
|
|
|
mk_ptr: &dyn Fn(Ty<'tcx>) -> Ty<'tcx>| {
|
2022-11-23 18:22:26 +00:00
|
|
|
if mt_a.mutbl < mt_b.mutbl {
|
2016-12-04 00:58:13 +02:00
|
|
|
infcx
|
2022-09-09 15:08:06 -05:00
|
|
|
.err_ctxt()
|
2016-12-04 00:58:13 +02:00
|
|
|
.report_mismatched_types(
|
|
|
|
&cause,
|
2018-09-26 17:32:23 +02:00
|
|
|
mk_ptr(mt_b.ty),
|
|
|
|
target,
|
|
|
|
ty::error::TypeError::Mutability,
|
|
|
|
)
|
2017-01-03 21:51:28 +02:00
|
|
|
.emit();
|
2016-12-04 00:58:13 +02:00
|
|
|
}
|
|
|
|
(mt_a.ty, mt_b.ty, unsize_trait, None)
|
2016-12-04 00:28:30 +02:00
|
|
|
};
|
2020-08-03 00:49:11 +02:00
|
|
|
let (source, target, trait_def_id, kind) = match (source.kind(), target.kind()) {
|
2018-08-22 01:35:02 +01:00
|
|
|
(&ty::Ref(r_a, ty_a, mutbl_a), &ty::Ref(r_b, ty_b, mutbl_b)) => {
|
2016-12-04 00:58:13 +02:00
|
|
|
infcx.sub_regions(infer::RelateObjectBound(span), r_b, r_a);
|
2018-05-02 15:21:05 +02:00
|
|
|
let mt_a = ty::TypeAndMut { ty: ty_a, mutbl: mutbl_a };
|
|
|
|
let mt_b = ty::TypeAndMut { ty: ty_b, mutbl: mutbl_b };
|
2019-09-25 16:35:19 -04:00
|
|
|
check_mutbl(mt_a, mt_b, &|ty| tcx.mk_imm_ref(r_b, ty))
|
2016-12-04 00:58:13 +02:00
|
|
|
}
|
2016-12-04 00:28:30 +02:00
|
|
|
|
2018-08-22 01:35:02 +01:00
|
|
|
(&ty::Ref(_, ty_a, mutbl_a), &ty::RawPtr(mt_b)) => {
|
2018-05-02 15:21:05 +02:00
|
|
|
let mt_a = ty::TypeAndMut { ty: ty_a, mutbl: mutbl_a };
|
2019-09-25 16:35:19 -04:00
|
|
|
check_mutbl(mt_a, mt_b, &|ty| tcx.mk_imm_ptr(ty))
|
2018-05-02 15:21:05 +02:00
|
|
|
}
|
2022-09-19 22:03:59 -05:00
|
|
|
|
2019-09-25 16:35:19 -04:00
|
|
|
(&ty::RawPtr(mt_a), &ty::RawPtr(mt_b)) => check_mutbl(mt_a, mt_b, &|ty| tcx.mk_imm_ptr(ty)),
|
2018-05-02 15:21:05 +02:00
|
|
|
|
2018-08-22 01:35:02 +01:00
|
|
|
(&ty::Adt(def_a, substs_a), &ty::Adt(def_b, substs_b))
|
|
|
|
if def_a.is_struct() && def_b.is_struct() =>
|
|
|
|
{
|
2019-09-25 16:35:19 -04:00
|
|
|
if def_a != def_b {
|
2022-03-05 07:28:41 +11:00
|
|
|
let source_path = tcx.def_path_str(def_a.did());
|
2019-09-25 16:35:19 -04:00
|
|
|
let target_path = tcx.def_path_str(def_b.did());
|
|
|
|
struct_span_err!(
|
|
|
|
tcx.sess,
|
2022-09-19 22:03:59 -05:00
|
|
|
span,
|
2019-09-25 16:35:19 -04:00
|
|
|
E0377,
|
|
|
|
"the trait `CoerceUnsized` may only be implemented \
|
|
|
|
for a coercion between structures with the same \
|
|
|
|
definition; expected `{}`, found `{}`",
|
2016-12-04 00:58:13 +02:00
|
|
|
source_path,
|
2022-03-05 07:28:41 +11:00
|
|
|
target_path
|
2019-09-25 16:35:19 -04:00
|
|
|
)
|
2022-09-19 22:03:59 -05:00
|
|
|
.emit();
|
2019-09-25 16:35:19 -04:00
|
|
|
return err_info;
|
2016-12-04 00:58:13 +02:00
|
|
|
}
|
2016-12-04 00:28:30 +02:00
|
|
|
|
2018-08-22 01:35:02 +01:00
|
|
|
// Here we are considering a case of converting
|
|
|
|
// `S<P0...Pn>` to S<Q0...Qn>`. As an example, let's imagine a struct `Foo<T, U>`,
|
|
|
|
// which acts like a pointer to `U`, but carries along some extra data of type `T`:
|
2022-09-19 22:03:59 -05:00
|
|
|
//
|
2018-08-22 01:35:02 +01:00
|
|
|
// struct Foo<T, U> {
|
2017-05-12 05:43:48 -04:00
|
|
|
// extra: T,
|
|
|
|
// ptr: *mut U,
|
2022-09-19 22:03:59 -05:00
|
|
|
// }
|
|
|
|
//
|
2018-08-22 01:35:02 +01:00
|
|
|
// We might have an impl that allows (e.g.) `Foo<T, [i32; 3]>` to be unsized
|
2022-03-05 07:28:41 +11:00
|
|
|
// to `Foo<T, [i32]>`. That impl would look like:
|
2022-09-19 22:03:59 -05:00
|
|
|
//
|
2022-03-05 07:28:41 +11:00
|
|
|
// impl<T, U: Unsize<V>, V> CoerceUnsized<Foo<T, V>> for Foo<T, U> {}
|
2022-09-19 22:03:59 -05:00
|
|
|
//
|
2022-03-05 07:28:41 +11:00
|
|
|
// Here `U = [i32; 3]` and `V = [i32]`. At runtime,
|
2017-05-12 05:43:48 -04:00
|
|
|
// when this coercion occurs, we would be changing the
|
2022-03-05 07:28:41 +11:00
|
|
|
// field `ptr` from a thin pointer of type `*mut [i32;
|
|
|
|
// 3]` to a fat pointer of type `*mut [i32]` (with
|
2017-05-12 05:43:48 -04:00
|
|
|
// extra data `3`). **The purpose of this check is to
|
2022-03-05 07:28:41 +11:00
|
|
|
// make sure that we know how to do this conversion.**
|
2022-09-19 22:03:59 -05:00
|
|
|
//
|
2022-03-05 07:28:41 +11:00
|
|
|
// To check if this impl is legal, we would walk down
|
|
|
|
// the fields of `Foo` and consider their types with
|
|
|
|
// both substitutes. We are looking to find that
|
2016-12-04 00:58:13 +02:00
|
|
|
// exactly one (non-phantom) field has changed its
|
|
|
|
// type, which we will expect to be the pointer that
|
|
|
|
// is becoming fat (we could probably generalize this
|
|
|
|
// to multiple thin pointers of the same type becoming
|
2017-05-12 05:43:48 -04:00
|
|
|
// fat, but we don't). In this case:
|
2022-09-19 22:03:59 -05:00
|
|
|
//
|
2016-12-04 00:58:13 +02:00
|
|
|
// - `extra` has type `T` before and type `T` after
|
2017-05-12 05:43:48 -04:00
|
|
|
// - `ptr` has type `*mut U` before and type `*mut V` after
|
2022-09-19 22:03:59 -05:00
|
|
|
//
|
2017-05-12 05:43:48 -04:00
|
|
|
// Since just one field changed, we would then check
|
2016-12-04 00:58:13 +02:00
|
|
|
// that `*mut U: CoerceUnsized<*mut V>` is implemented
|
|
|
|
// (in other words, that we know how to do this
|
|
|
|
// conversion). This will work out because `U:
|
2018-10-09 01:13:07 -04:00
|
|
|
// Unsize<V>`, and we have a builtin rule that `*mut
|
|
|
|
// U` can be coerced to `*mut V` if `U: Unsize<V>`.
|
|
|
|
let fields = &def_a.non_enum_variant().fields;
|
|
|
|
let diff_fields = fields
|
|
|
|
.iter()
|
2019-12-31 21:25:16 +01:00
|
|
|
.enumerate()
|
2016-12-04 00:58:13 +02:00
|
|
|
.filter_map(|(i, f)| {
|
2019-12-31 21:25:16 +01:00
|
|
|
let (a, b) = (f.ty(tcx, substs_a), f.ty(tcx, substs_b));
|
2022-09-19 22:03:59 -05:00
|
|
|
|
2019-09-25 16:35:19 -04:00
|
|
|
if tcx.type_of(f.did).is_phantom_data() {
|
2016-12-04 00:58:13 +02:00
|
|
|
// Ignore PhantomData fields
|
2017-03-17 16:17:45 -04:00
|
|
|
return None;
|
2016-12-04 00:28:30 +02:00
|
|
|
}
|
|
|
|
|
2017-05-12 05:43:48 -04:00
|
|
|
// Ignore fields that aren't changed; it may
|
|
|
|
// be that we could get away with subtyping or
|
|
|
|
// something more accepting, but we use
|
|
|
|
// equality because we want to be able to
|
|
|
|
// perform this check without computing
|
|
|
|
// variance where possible. (This is because
|
|
|
|
// we may have to evaluate constraint
|
|
|
|
// expressions in the course of execution.)
|
|
|
|
// See e.g., #41936.
|
2019-09-25 16:35:19 -04:00
|
|
|
if let Ok(ok) = infcx.at(&cause, param_env).eq(a, b) {
|
|
|
|
if ok.obligations.is_empty() {
|
2016-12-04 00:58:13 +02:00
|
|
|
return None;
|
|
|
|
}
|
2022-09-19 22:03:59 -05:00
|
|
|
}
|
2016-12-04 00:28:30 +02:00
|
|
|
|
2017-05-12 05:43:48 -04:00
|
|
|
// Collect up all fields that were significantly changed
|
|
|
|
// i.e., those that contain T in coerce_unsized T -> U
|
2017-05-24 09:43:20 -04:00
|
|
|
Some((i, a, b))
|
|
|
|
})
|
2016-12-04 00:28:30 +02:00
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
2016-12-04 00:58:13 +02:00
|
|
|
if diff_fields.is_empty() {
|
2019-12-31 21:25:16 +01:00
|
|
|
struct_span_err!(
|
2019-09-25 16:35:19 -04:00
|
|
|
tcx.sess,
|
2016-12-04 00:28:30 +02:00
|
|
|
span,
|
2016-12-04 00:58:13 +02:00
|
|
|
E0374,
|
2016-12-04 00:28:30 +02:00
|
|
|
"the trait `CoerceUnsized` may only be implemented \
|
2016-12-04 00:58:13 +02:00
|
|
|
for a coercion between structures with one field \
|
|
|
|
being coerced, none found"
|
2019-12-31 21:25:16 +01:00
|
|
|
)
|
|
|
|
.emit();
|
2017-03-17 16:17:45 -04:00
|
|
|
return err_info;
|
2016-12-04 00:58:13 +02:00
|
|
|
} else if diff_fields.len() > 1 {
|
2021-10-20 22:38:10 +02:00
|
|
|
let item = tcx.hir().expect_item(impl_did);
|
2020-11-22 17:46:21 -05:00
|
|
|
let span =
|
|
|
|
if let ItemKind::Impl(hir::Impl { of_trait: Some(ref t), .. }) = item.kind {
|
2016-12-04 00:58:13 +02:00
|
|
|
t.path.span
|
|
|
|
} else {
|
2021-10-20 22:38:10 +02:00
|
|
|
tcx.def_span(impl_did)
|
2016-12-04 00:58:13 +02:00
|
|
|
};
|
|
|
|
|
2019-12-31 21:25:16 +01:00
|
|
|
struct_span_err!(
|
2019-09-25 16:35:19 -04:00
|
|
|
tcx.sess,
|
2016-12-04 00:58:13 +02:00
|
|
|
span,
|
|
|
|
E0375,
|
|
|
|
"implementing the trait \
|
|
|
|
`CoerceUnsized` requires multiple \
|
|
|
|
coercions"
|
2022-09-19 22:03:59 -05:00
|
|
|
)
|
|
|
|
.note(
|
2016-12-04 00:58:13 +02:00
|
|
|
"`CoerceUnsized` may only be implemented for \
|
|
|
|
a coercion between structures with one field being coerced",
|
2019-12-31 21:25:16 +01:00
|
|
|
)
|
|
|
|
.note(&format!(
|
2016-12-04 00:58:13 +02:00
|
|
|
"currently, {} fields need coercions: {}",
|
|
|
|
diff_fields.len(),
|
|
|
|
diff_fields
|
2022-09-19 22:03:59 -05:00
|
|
|
.iter()
|
2022-01-02 22:37:05 -05:00
|
|
|
.map(|&(i, a, b)| { format!("`{}` (`{}` to `{}`)", fields[i].name, a, b) })
|
2017-01-03 21:51:28 +02:00
|
|
|
.collect::<Vec<_>>()
|
|
|
|
.join(", ")
|
2022-09-19 22:03:59 -05:00
|
|
|
))
|
2019-12-31 21:25:16 +01:00
|
|
|
.span_label(span, "requires multiple coercions")
|
|
|
|
.emit();
|
2017-03-17 16:17:45 -04:00
|
|
|
return err_info;
|
2016-12-04 00:28:30 +02:00
|
|
|
}
|
2022-09-19 22:03:59 -05:00
|
|
|
|
2020-01-05 20:27:00 +01:00
|
|
|
let (i, a, b) = diff_fields[0];
|
2022-08-02 06:02:04 +00:00
|
|
|
let kind = ty::adjustment::CustomCoerceUnsized::Struct(i);
|
|
|
|
(a, b, coerce_unsized_trait, Some(kind))
|
2016-12-04 00:58:13 +02:00
|
|
|
}
|
|
|
|
|
2022-09-19 22:03:59 -05:00
|
|
|
_ => {
|
2019-12-31 21:25:16 +01:00
|
|
|
struct_span_err!(
|
2019-09-25 16:35:19 -04:00
|
|
|
tcx.sess,
|
2022-09-19 22:03:59 -05:00
|
|
|
span,
|
|
|
|
E0376,
|
2016-12-04 00:58:13 +02:00
|
|
|
"the trait `CoerceUnsized` may only be implemented \
|
|
|
|
for a coercion between structures"
|
2022-09-19 22:03:59 -05:00
|
|
|
)
|
|
|
|
.emit();
|
2017-03-17 16:17:45 -04:00
|
|
|
return err_info;
|
2022-09-19 22:03:59 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-12-04 00:58:13 +02:00
|
|
|
// Register an obligation for `A: Trait<B>`.
|
2019-02-04 20:01:14 +01:00
|
|
|
let cause = traits::ObligationCause::misc(span, impl_hir_id);
|
2020-01-05 20:27:00 +01:00
|
|
|
let predicate =
|
2022-11-21 12:24:53 +00:00
|
|
|
predicate_for_trait_def(tcx, param_env, cause, trait_def_id, 0, [source, target]);
|
2022-08-02 06:02:04 +00:00
|
|
|
let errors = traits::fully_solve_obligation(&infcx, predicate);
|
2021-11-08 23:35:23 +08:00
|
|
|
if !errors.is_empty() {
|
2022-11-02 01:34:17 +00:00
|
|
|
infcx.err_ctxt().report_fulfillment_errors(&errors, None);
|
2022-09-19 22:03:59 -05:00
|
|
|
}
|
|
|
|
|
2016-12-04 00:58:13 +02:00
|
|
|
// Finally, resolve all regions.
|
2017-12-01 05:07:52 -05:00
|
|
|
let outlives_env = OutlivesEnvironment::new(param_env);
|
2022-12-26 22:41:49 +00:00
|
|
|
let _ = infcx.err_ctxt().check_region_obligations_and_report_errors(impl_did, &outlives_env);
|
2016-12-04 00:58:13 +02:00
|
|
|
|
2017-03-17 16:17:45 -04:00
|
|
|
CoerceUnsizedInfo { custom_kind: kind }
|
2016-12-04 00:28:30 +02:00
|
|
|
}
|