2016-09-09 05:51:14 -05:00
|
|
|
use rustc::hir::def_id::DefId;
|
|
|
|
use rustc::traits::{self, Reveal, SelectionContext};
|
2016-11-17 04:31:28 -06:00
|
|
|
use rustc::ty::subst::Substs;
|
2016-09-09 05:51:14 -05:00
|
|
|
use rustc::ty;
|
|
|
|
|
|
|
|
use error::EvalResult;
|
2016-12-10 18:58:13 -06:00
|
|
|
use eval_context::EvalContext;
|
2016-09-09 05:51:14 -05:00
|
|
|
use memory::Pointer;
|
2016-12-10 18:58:13 -06:00
|
|
|
use terminator::{get_impl_method, ImplMethod};
|
2016-09-09 05:51:14 -05:00
|
|
|
|
|
|
|
impl<'a, 'tcx> EvalContext<'a, 'tcx> {
|
2016-09-11 04:06:44 -05:00
|
|
|
/// Creates a dynamic vtable for the given type and vtable origin. This is used only for
|
|
|
|
/// objects.
|
2016-09-09 05:51:14 -05:00
|
|
|
///
|
|
|
|
/// The `trait_ref` encodes the erased self type. Hence if we are
|
|
|
|
/// making an object `Foo<Trait>` from a value of type `Foo<T>`, then
|
|
|
|
/// `trait_ref` would map `T:Trait`.
|
|
|
|
pub fn get_vtable(&mut self, trait_ref: ty::PolyTraitRef<'tcx>) -> EvalResult<'tcx, Pointer> {
|
|
|
|
let tcx = self.tcx;
|
|
|
|
|
|
|
|
debug!("get_vtable(trait_ref={:?})", trait_ref);
|
|
|
|
|
2016-09-13 06:03:54 -05:00
|
|
|
let methods: Vec<_> = traits::supertraits(tcx, trait_ref).flat_map(|trait_ref| {
|
|
|
|
match self.fulfill_obligation(trait_ref) {
|
2016-09-09 05:51:14 -05:00
|
|
|
// Should default trait error here?
|
|
|
|
traits::VtableDefaultImpl(_) |
|
|
|
|
traits::VtableBuiltin(_) => {
|
|
|
|
Vec::new().into_iter()
|
|
|
|
}
|
2017-01-22 02:19:35 -06:00
|
|
|
|
|
|
|
traits::VtableImpl(traits::VtableImplData { impl_def_id: id, substs, .. }) => {
|
2016-09-09 05:51:14 -05:00
|
|
|
self.get_vtable_methods(id, substs)
|
|
|
|
.into_iter()
|
|
|
|
.map(|opt_mth| opt_mth.map(|mth| {
|
2016-11-17 04:31:28 -06:00
|
|
|
let fn_ty = self.tcx.item_type(mth.method.def_id);
|
|
|
|
let fn_ty = match fn_ty.sty {
|
|
|
|
ty::TyFnDef(_, _, fn_ty) => fn_ty,
|
|
|
|
_ => bug!("bad function type: {}", fn_ty),
|
|
|
|
};
|
|
|
|
let fn_ty = self.tcx.erase_regions(&fn_ty);
|
2016-11-15 10:19:37 -06:00
|
|
|
self.memory.create_fn_ptr(self.tcx, mth.method.def_id, mth.substs, fn_ty)
|
2016-09-09 05:51:14 -05:00
|
|
|
}))
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
.into_iter()
|
|
|
|
}
|
2017-01-22 02:19:35 -06:00
|
|
|
|
2016-09-09 05:51:14 -05:00
|
|
|
traits::VtableClosure(
|
|
|
|
traits::VtableClosureData {
|
|
|
|
closure_def_id,
|
|
|
|
substs,
|
2017-01-22 02:19:35 -06:00
|
|
|
..
|
|
|
|
}
|
|
|
|
) => {
|
2016-09-09 05:51:14 -05:00
|
|
|
let closure_type = self.tcx.closure_type(closure_def_id, substs);
|
2016-11-15 10:19:37 -06:00
|
|
|
vec![Some(self.memory.create_closure_ptr(self.tcx, closure_def_id, substs, closure_type))].into_iter()
|
2016-09-09 05:51:14 -05:00
|
|
|
}
|
2017-01-22 02:19:35 -06:00
|
|
|
|
2017-02-07 07:22:20 -06:00
|
|
|
// turn a function definition into a Fn trait object
|
2017-01-22 02:19:35 -06:00
|
|
|
traits::VtableFnPointer(traits::VtableFnPointerData { fn_ty, .. }) => {
|
2016-11-15 09:32:21 -06:00
|
|
|
match fn_ty.sty {
|
|
|
|
ty::TyFnDef(did, substs, bare_fn_ty) => {
|
2017-02-07 07:22:20 -06:00
|
|
|
vec![Some(self.memory.create_fn_as_trait_glue(self.tcx, did, substs, bare_fn_ty))].into_iter()
|
2016-11-15 09:32:21 -06:00
|
|
|
},
|
2017-02-07 07:22:20 -06:00
|
|
|
ty::TyFnPtr(bare_fn_ty) => {
|
|
|
|
vec![Some(self.memory.create_fn_ptr_as_trait_glue(bare_fn_ty))].into_iter()
|
|
|
|
},
|
|
|
|
_ => bug!("bad VtableFnPointer fn_ty: {:#?}", fn_ty.sty),
|
2016-11-15 09:32:21 -06:00
|
|
|
}
|
2016-09-09 05:51:14 -05:00
|
|
|
}
|
2017-01-22 02:19:35 -06:00
|
|
|
|
2016-09-09 05:51:14 -05:00
|
|
|
traits::VtableObject(ref data) => {
|
|
|
|
// this would imply that the Self type being erased is
|
|
|
|
// an object type; this cannot happen because we
|
|
|
|
// cannot cast an unsized type into a trait object
|
|
|
|
bug!("cannot get vtable for an object type: {:?}",
|
|
|
|
data);
|
|
|
|
}
|
2017-01-22 02:19:35 -06:00
|
|
|
|
2016-09-09 05:51:14 -05:00
|
|
|
vtable @ traits::VtableParam(..) => {
|
|
|
|
bug!("resolved vtable for {:?} to bad vtable {:?} in trans",
|
|
|
|
trait_ref,
|
|
|
|
vtable);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}).collect();
|
|
|
|
|
2016-11-17 10:23:40 -06:00
|
|
|
let size = self.type_size(trait_ref.self_ty())?.expect("can't create a vtable for an unsized type");
|
|
|
|
let align = self.type_align(trait_ref.self_ty())?;
|
2016-09-09 05:51:14 -05:00
|
|
|
|
|
|
|
let ptr_size = self.memory.pointer_size();
|
2016-11-18 05:55:14 -06:00
|
|
|
let vtable = self.memory.allocate(ptr_size * (3 + methods.len() as u64), ptr_size)?;
|
2016-09-09 05:51:14 -05:00
|
|
|
|
2016-11-04 10:38:04 -05:00
|
|
|
// in case there is no drop function to be called, this still needs to be initialized
|
|
|
|
self.memory.write_usize(vtable, 0)?;
|
|
|
|
if let ty::TyAdt(adt_def, substs) = trait_ref.self_ty().sty {
|
|
|
|
if let Some(drop_def_id) = adt_def.destructor() {
|
2016-11-17 04:31:28 -06:00
|
|
|
let fn_ty = match self.tcx.item_type(drop_def_id).sty {
|
2016-11-15 08:20:10 -06:00
|
|
|
ty::TyFnDef(_, _, fn_ty) => self.tcx.erase_regions(&fn_ty),
|
2016-11-04 10:38:04 -05:00
|
|
|
_ => bug!("drop method is not a TyFnDef"),
|
|
|
|
};
|
2017-02-07 07:22:20 -06:00
|
|
|
let fn_ptr = self.memory.create_drop_glue(self.tcx, drop_def_id, substs, fn_ty);
|
2016-11-04 10:38:04 -05:00
|
|
|
self.memory.write_ptr(vtable, fn_ptr)?;
|
|
|
|
}
|
|
|
|
}
|
2016-09-09 05:51:14 -05:00
|
|
|
|
2016-11-18 05:55:14 -06:00
|
|
|
self.memory.write_usize(vtable.offset(ptr_size), size)?;
|
2017-01-22 02:19:35 -06:00
|
|
|
self.memory.write_usize(vtable.offset(ptr_size * 2), align)?;
|
2016-09-09 05:51:14 -05:00
|
|
|
|
|
|
|
for (i, method) in methods.into_iter().enumerate() {
|
|
|
|
if let Some(method) = method {
|
2016-11-18 05:55:14 -06:00
|
|
|
self.memory.write_ptr(vtable.offset(ptr_size * (3 + i as u64)), method)?;
|
2016-09-09 05:51:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-07 12:20:16 -06:00
|
|
|
self.memory.mark_static(vtable.alloc_id, false)?;
|
2016-09-10 08:17:08 -05:00
|
|
|
|
2016-09-09 05:51:14 -05:00
|
|
|
Ok(vtable)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_vtable_methods(&mut self, impl_id: DefId, substs: &'tcx Substs<'tcx>) -> Vec<Option<ImplMethod<'tcx>>> {
|
|
|
|
debug!("get_vtable_methods(impl_id={:?}, substs={:?}", impl_id, substs);
|
|
|
|
|
|
|
|
let trait_id = match self.tcx.impl_trait_ref(impl_id) {
|
|
|
|
Some(t_id) => t_id.def_id,
|
|
|
|
None => bug!("make_impl_vtable: don't know how to \
|
|
|
|
make a vtable for a type impl!")
|
|
|
|
};
|
|
|
|
|
|
|
|
self.tcx.populate_implementations_for_trait_if_necessary(trait_id);
|
|
|
|
|
2016-11-17 04:31:28 -06:00
|
|
|
self.tcx
|
|
|
|
.associated_items(trait_id)
|
2016-09-09 05:51:14 -05:00
|
|
|
// Filter out non-method items.
|
2016-11-17 04:31:28 -06:00
|
|
|
.filter_map(|trait_method_type| {
|
|
|
|
if trait_method_type.kind != ty::AssociatedKind::Method {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
debug!("get_vtable_methods: trait_method_type={:?}",
|
|
|
|
trait_method_type);
|
2016-09-09 05:51:14 -05:00
|
|
|
|
|
|
|
let name = trait_method_type.name;
|
|
|
|
|
|
|
|
// Some methods cannot be called on an object; skip those.
|
|
|
|
if !self.tcx.is_vtable_safe_method(trait_id, &trait_method_type) {
|
|
|
|
debug!("get_vtable_methods: not vtable safe");
|
2016-09-27 09:59:48 -05:00
|
|
|
return Some(None);
|
2016-09-09 05:51:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
debug!("get_vtable_methods: trait_method_type={:?}",
|
|
|
|
trait_method_type);
|
|
|
|
|
|
|
|
// the method may have some early-bound lifetimes, add
|
|
|
|
// regions for those
|
2016-11-17 04:31:28 -06:00
|
|
|
let method_substs = Substs::for_item(self.tcx, trait_method_type.def_id,
|
2016-09-09 05:51:14 -05:00
|
|
|
|_, _| self.tcx.mk_region(ty::ReErased),
|
|
|
|
|_, _| self.tcx.types.err);
|
|
|
|
|
|
|
|
// The substitutions we have are on the impl, so we grab
|
|
|
|
// the method type from the impl to substitute into.
|
|
|
|
let mth = get_impl_method(self.tcx, method_substs, impl_id, substs, name);
|
|
|
|
|
|
|
|
debug!("get_vtable_methods: mth={:?}", mth);
|
|
|
|
|
|
|
|
// If this is a default method, it's possible that it
|
|
|
|
// relies on where clauses that do not hold for this
|
|
|
|
// particular set of type parameters. Note that this
|
|
|
|
// method could then never be called, so we do not want to
|
|
|
|
// try and trans it, in that case. Issue #23435.
|
|
|
|
if mth.is_provided {
|
2016-11-17 04:31:28 -06:00
|
|
|
let predicates = self.tcx.item_predicates(trait_method_type.def_id).instantiate_own(self.tcx, mth.substs);
|
|
|
|
if !self.normalize_and_test_predicates(predicates.predicates) {
|
2016-09-09 05:51:14 -05:00
|
|
|
debug!("get_vtable_methods: predicates do not hold");
|
2016-09-27 09:59:48 -05:00
|
|
|
return Some(None);
|
2016-09-09 05:51:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-27 09:59:48 -05:00
|
|
|
Some(Some(mth))
|
2016-09-09 05:51:14 -05:00
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Normalizes the predicates and checks whether they hold. If this
|
|
|
|
/// returns false, then either normalize encountered an error or one
|
|
|
|
/// of the predicates did not hold. Used when creating vtables to
|
|
|
|
/// check for unsatisfiable methods.
|
|
|
|
fn normalize_and_test_predicates(&mut self, predicates: Vec<ty::Predicate<'tcx>>) -> bool {
|
|
|
|
debug!("normalize_and_test_predicates(predicates={:?})",
|
|
|
|
predicates);
|
|
|
|
|
2017-01-13 10:16:19 -06:00
|
|
|
self.tcx.infer_ctxt((), Reveal::All).enter(|infcx| {
|
2016-09-09 05:51:14 -05:00
|
|
|
let mut selcx = SelectionContext::new(&infcx);
|
|
|
|
let mut fulfill_cx = traits::FulfillmentContext::new();
|
|
|
|
let cause = traits::ObligationCause::dummy();
|
|
|
|
let traits::Normalized { value: predicates, obligations } =
|
|
|
|
traits::normalize(&mut selcx, cause.clone(), &predicates);
|
|
|
|
for obligation in obligations {
|
|
|
|
fulfill_cx.register_predicate_obligation(&infcx, obligation);
|
|
|
|
}
|
|
|
|
for predicate in predicates {
|
|
|
|
let obligation = traits::Obligation::new(cause.clone(), predicate);
|
|
|
|
fulfill_cx.register_predicate_obligation(&infcx, obligation);
|
|
|
|
}
|
|
|
|
|
|
|
|
fulfill_cx.select_all_or_error(&infcx).is_ok()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|