2012-09-04 13:54:36 -05:00
|
|
|
use libc::c_uint;
|
|
|
|
use base::*;
|
|
|
|
use common::*;
|
|
|
|
use type_of::*;
|
|
|
|
use build::*;
|
2012-08-28 17:54:45 -05:00
|
|
|
use driver::session::{session, expect};
|
2012-09-04 13:54:36 -05:00
|
|
|
use syntax::{ast, ast_map};
|
|
|
|
use ast_map::{path, path_mod, path_name, node_id_to_str};
|
|
|
|
use syntax::ast_util::local_def;
|
|
|
|
use metadata::csearch;
|
2012-09-18 13:46:39 -05:00
|
|
|
use back::{link, abi};
|
2012-09-04 13:54:36 -05:00
|
|
|
use lib::llvm::llvm;
|
|
|
|
use lib::llvm::{ValueRef, TypeRef};
|
|
|
|
use lib::llvm::llvm::LLVMGetParam;
|
2012-09-10 17:38:28 -05:00
|
|
|
use std::map::HashMap;
|
2012-09-04 13:54:36 -05:00
|
|
|
use util::ppaux::{ty_to_str, tys_to_str};
|
2012-08-28 17:54:45 -05:00
|
|
|
use callee::*;
|
2012-09-04 13:54:36 -05:00
|
|
|
use syntax::print::pprust::expr_to_str;
|
2012-08-28 17:54:45 -05:00
|
|
|
use expr::{SaveIn, Ignore};
|
|
|
|
|
|
|
|
fn macros() { include!("macros.rs"); } // FIXME(#3114): Macro import/export.
|
2012-01-02 05:21:44 -06:00
|
|
|
|
2012-08-21 21:51:43 -05:00
|
|
|
/**
|
|
|
|
The main "translation" pass for methods. Generates code
|
|
|
|
for non-monomorphized methods only. Other methods will
|
|
|
|
be generated once they are invoked with specific type parameters,
|
|
|
|
see `trans::base::lval_static_fn()` or `trans::base::monomorphic_fn()`.
|
|
|
|
*/
|
2012-03-14 19:31:16 -05:00
|
|
|
fn trans_impl(ccx: @crate_ctxt, path: path, name: ast::ident,
|
2012-10-05 19:49:13 -05:00
|
|
|
methods: ~[@ast::method], tps: ~[ast::ty_param],
|
|
|
|
self_ty: Option<ty::t>) {
|
2012-08-14 18:45:43 -05:00
|
|
|
let _icx = ccx.insn_ctxt("impl::trans_impl");
|
2012-08-01 19:30:05 -05:00
|
|
|
if tps.len() > 0u { return; }
|
2012-06-28 15:52:13 -05:00
|
|
|
let sub_path = vec::append_one(path, path_name(name));
|
2012-09-18 23:41:13 -05:00
|
|
|
for vec::each(methods) |method| {
|
2012-08-21 21:51:43 -05:00
|
|
|
if method.tps.len() == 0u {
|
|
|
|
let llfn = get_item_val(ccx, method.id);
|
|
|
|
let path = vec::append_one(sub_path, path_name(method.ident));
|
2012-10-05 19:49:13 -05:00
|
|
|
trans_method(ccx, path, *method, None, self_ty, llfn);
|
2012-03-08 06:30:22 -06:00
|
|
|
}
|
2012-01-02 05:21:44 -06:00
|
|
|
}
|
|
|
|
}
|
2012-01-02 06:26:51 -06:00
|
|
|
|
2012-08-21 21:51:43 -05:00
|
|
|
/**
|
|
|
|
Translates a (possibly monomorphized) method body.
|
|
|
|
|
|
|
|
# Parameters
|
|
|
|
|
|
|
|
- `path`: the path to the method
|
|
|
|
- `method`: the AST node for the method
|
|
|
|
- `param_substs`: if this is a generic method, the current values for
|
|
|
|
type parameters and so forth, else none
|
2012-10-05 19:49:13 -05:00
|
|
|
- `base_self_ty`: optionally, the explicit self type for this method. This
|
|
|
|
will be none if this is not a default method and must always be present
|
|
|
|
if this is a default method.
|
2012-08-21 21:51:43 -05:00
|
|
|
- `llfn`: the LLVM ValueRef for the method
|
|
|
|
*/
|
|
|
|
fn trans_method(ccx: @crate_ctxt,
|
|
|
|
path: path,
|
|
|
|
method: &ast::method,
|
2012-08-20 14:23:37 -05:00
|
|
|
param_substs: Option<param_substs>,
|
2012-10-05 19:49:13 -05:00
|
|
|
base_self_ty: Option<ty::t>,
|
2012-08-21 21:51:43 -05:00
|
|
|
llfn: ValueRef) {
|
|
|
|
|
2012-08-22 15:18:29 -05:00
|
|
|
// figure out how self is being passed
|
2012-08-21 21:51:43 -05:00
|
|
|
let self_arg = match method.self_ty.node {
|
|
|
|
ast::sty_static => {
|
|
|
|
no_self
|
|
|
|
}
|
2012-08-22 15:18:29 -05:00
|
|
|
_ => {
|
|
|
|
// determine the (monomorphized) type that `self` maps to for
|
|
|
|
// this method
|
2012-10-05 19:49:13 -05:00
|
|
|
let self_ty;
|
|
|
|
match base_self_ty {
|
|
|
|
None => self_ty = ty::node_id_to_type(ccx.tcx, method.self_id),
|
|
|
|
Some(provided_self_ty) => self_ty = provided_self_ty
|
|
|
|
}
|
2012-08-22 15:18:29 -05:00
|
|
|
let self_ty = match param_substs {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => self_ty,
|
|
|
|
Some({tys: ref tys, _}) => ty::subst_tps(ccx.tcx, *tys, self_ty)
|
2012-08-22 15:18:29 -05:00
|
|
|
};
|
|
|
|
match method.self_ty.node {
|
|
|
|
ast::sty_value => {
|
|
|
|
impl_owned_self(self_ty)
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
impl_self(self_ty)
|
|
|
|
}
|
|
|
|
}
|
2012-08-21 21:51:43 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// generate the actual code
|
|
|
|
trans_fn(ccx,
|
|
|
|
path,
|
|
|
|
method.decl,
|
|
|
|
method.body,
|
|
|
|
llfn,
|
|
|
|
self_arg,
|
|
|
|
param_substs,
|
|
|
|
method.id);
|
|
|
|
}
|
|
|
|
|
2012-08-16 18:44:22 -05:00
|
|
|
fn trans_self_arg(bcx: block, base: @ast::expr,
|
2012-08-28 17:54:45 -05:00
|
|
|
mentry: typeck::method_map_entry) -> Result {
|
2012-08-14 18:45:43 -05:00
|
|
|
let _icx = bcx.insn_ctxt("impl::trans_self_arg");
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut temp_cleanups = ~[];
|
2012-09-11 23:25:01 -05:00
|
|
|
let self_arg = {mode: mentry.self_arg.mode,
|
|
|
|
ty: monomorphize_type(bcx, mentry.self_arg.ty)};
|
|
|
|
let result = trans_arg_expr(bcx, self_arg, base,
|
2012-09-19 20:00:26 -05:00
|
|
|
&mut temp_cleanups, None, DontAutorefArg);
|
2012-09-11 23:25:01 -05:00
|
|
|
|
|
|
|
// FIXME(#3446)---this is wrong, actually. The temp_cleanups
|
|
|
|
// should be revoked only after all arguments have been passed.
|
|
|
|
for temp_cleanups.each |c| {
|
2012-09-19 18:55:01 -05:00
|
|
|
revoke_clean(bcx, *c)
|
2012-09-11 23:25:01 -05:00
|
|
|
}
|
2012-02-24 19:45:16 -06:00
|
|
|
|
2012-08-01 19:30:05 -05:00
|
|
|
return result;
|
2012-01-02 09:50:51 -06:00
|
|
|
}
|
|
|
|
|
2012-02-17 06:17:40 -06:00
|
|
|
fn trans_method_callee(bcx: block, callee_id: ast::node_id,
|
2012-06-07 12:51:21 -05:00
|
|
|
self: @ast::expr, mentry: typeck::method_map_entry)
|
2012-08-28 17:54:45 -05:00
|
|
|
-> Callee
|
|
|
|
{
|
2012-08-14 18:45:43 -05:00
|
|
|
let _icx = bcx.insn_ctxt("impl::trans_method_callee");
|
2012-08-06 14:34:08 -05:00
|
|
|
match mentry.origin {
|
2012-08-28 17:54:45 -05:00
|
|
|
typeck::method_static(did) => {
|
|
|
|
let callee_fn = callee::trans_fn_ref(bcx, did, callee_id);
|
|
|
|
let Result {bcx, val} = trans_self_arg(bcx, self, mentry);
|
2012-09-11 23:25:01 -05:00
|
|
|
let tcx = bcx.tcx();
|
2012-08-28 17:54:45 -05:00
|
|
|
Callee {
|
|
|
|
bcx: bcx,
|
|
|
|
data: Method(MethodData {
|
|
|
|
llfn: callee_fn.llfn,
|
|
|
|
llself: val,
|
|
|
|
self_ty: node_id_type(bcx, self.id),
|
2012-09-11 23:25:01 -05:00
|
|
|
self_mode: ty::resolved_mode(tcx, mentry.self_arg.mode)
|
2012-08-28 17:54:45 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
typeck::method_param({trait_id:trait_id, method_num:off,
|
|
|
|
param_num:p, bound_num:b}) => {
|
|
|
|
match bcx.fcx.param_substs {
|
2012-09-10 14:25:45 -05:00
|
|
|
Some(ref substs) => {
|
|
|
|
let vtbl = base::find_vtable(bcx.tcx(), substs, p, b);
|
2012-08-28 17:54:45 -05:00
|
|
|
trans_monomorphized_callee(bcx, callee_id, self, mentry,
|
|
|
|
trait_id, off, vtbl)
|
|
|
|
}
|
|
|
|
// how to get rid of this?
|
|
|
|
None => fail ~"trans_method_callee: missing param_substs"
|
|
|
|
}
|
|
|
|
}
|
2012-10-05 18:55:42 -05:00
|
|
|
typeck::method_trait(_, off, vstore) => {
|
|
|
|
trans_trait_callee(bcx, callee_id, off, self, vstore)
|
2012-02-09 04:17:11 -06:00
|
|
|
}
|
2012-10-06 00:07:53 -05:00
|
|
|
typeck::method_self(*) => {
|
2012-10-05 20:51:36 -05:00
|
|
|
bcx.tcx().sess.span_bug(self.span, ~"self method call");
|
|
|
|
}
|
2012-01-26 05:26:14 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-28 17:54:45 -05:00
|
|
|
fn trans_static_method_callee(bcx: block,
|
|
|
|
method_id: ast::def_id,
|
|
|
|
callee_id: ast::node_id) -> FnData
|
|
|
|
{
|
2012-08-14 18:45:43 -05:00
|
|
|
let _icx = bcx.insn_ctxt("impl::trans_static_method_callee");
|
2012-08-02 18:01:38 -05:00
|
|
|
let ccx = bcx.ccx();
|
|
|
|
|
|
|
|
let mname = if method_id.crate == ast::local_crate {
|
2012-08-23 19:39:07 -05:00
|
|
|
match bcx.tcx().items.get(method_id.node) {
|
2012-08-28 17:54:45 -05:00
|
|
|
ast_map::node_trait_method(trait_method, _, _) => {
|
|
|
|
ast_util::trait_method_to_ty_method(*trait_method).ident
|
|
|
|
}
|
|
|
|
_ => fail ~"callee is not a trait method"
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let path = csearch::get_item_path(bcx.tcx(), method_id);
|
|
|
|
match path[path.len()-1] {
|
2012-08-28 17:54:45 -05:00
|
|
|
path_name(s) => { s }
|
|
|
|
path_mod(_) => { fail ~"path doesn't have a name?" }
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
debug!("trans_static_method_callee: method_id=%?, callee_id=%?, \
|
2012-07-18 18:18:02 -05:00
|
|
|
name=%s", method_id, callee_id, ccx.sess.str_of(mname));
|
2012-08-02 18:01:38 -05:00
|
|
|
|
|
|
|
let vtbls = resolve_vtables_in_fn_ctxt(
|
|
|
|
bcx.fcx, ccx.maps.vtable_map.get(callee_id));
|
|
|
|
|
2012-09-11 23:25:01 -05:00
|
|
|
// FIXME(#3446) -- I am pretty sure index 0 is not the right one,
|
|
|
|
// if the static method is implemented on a generic type. (NDM)
|
|
|
|
match vtbls[0] {
|
2012-09-10 14:25:45 -05:00
|
|
|
typeck::vtable_static(impl_did, rcvr_substs, rcvr_origins) => {
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
let mth_id = method_with_name(bcx.ccx(), impl_did, mname);
|
2012-09-10 14:25:45 -05:00
|
|
|
let callee_substs = combine_impl_and_methods_tps(
|
|
|
|
bcx, mth_id, impl_did, callee_id, rcvr_substs);
|
|
|
|
let callee_origins = combine_impl_and_methods_origins(
|
|
|
|
bcx, mth_id, impl_did, callee_id, rcvr_origins);
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
let FnData {llfn: lval} =
|
2012-09-10 17:12:37 -05:00
|
|
|
trans_fn_ref_with_vtables(bcx,
|
|
|
|
mth_id,
|
|
|
|
callee_id,
|
|
|
|
callee_substs,
|
|
|
|
Some(callee_origins));
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
let callee_ty = node_id_type(bcx, callee_id);
|
|
|
|
let llty = T_ptr(type_of_fn_from_ty(ccx, callee_ty));
|
|
|
|
FnData {llfn: PointerCast(bcx, lval, llty)}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
fail ~"vtable_param left in monomorphized \
|
|
|
|
function's vtable substs";
|
|
|
|
}
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
fn method_from_methods(ms: ~[@ast::method], name: ast::ident)
|
2012-06-25 22:00:46 -05:00
|
|
|
-> ast::def_id {
|
2012-09-21 21:37:57 -05:00
|
|
|
local_def(option::get(&vec::find(ms, |m| m.ident == name)).id)
|
2012-04-13 14:22:35 -05:00
|
|
|
}
|
|
|
|
|
2012-03-08 09:10:25 -06:00
|
|
|
fn method_with_name(ccx: @crate_ctxt, impl_id: ast::def_id,
|
2012-03-08 05:15:02 -06:00
|
|
|
name: ast::ident) -> ast::def_id {
|
|
|
|
if impl_id.crate == ast::local_crate {
|
2012-08-23 19:39:07 -05:00
|
|
|
match ccx.tcx.items.get(impl_id.node) {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast_map::node_item(@{node: ast::item_impl(_, _, _, ms), _}, _) => {
|
2012-04-13 14:22:35 -05:00
|
|
|
method_from_methods(ms, name)
|
|
|
|
}
|
|
|
|
ast_map::node_item(@{node:
|
2012-08-07 17:34:07 -05:00
|
|
|
ast::item_class(struct_def, _), _}, _) => {
|
2012-08-15 17:53:58 -05:00
|
|
|
method_from_methods(struct_def.methods, name)
|
2012-03-08 05:15:02 -06:00
|
|
|
}
|
2012-08-23 19:39:07 -05:00
|
|
|
_ => fail ~"method_with_name"
|
2012-03-08 05:15:02 -06:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
csearch::get_impl_method(ccx.sess.cstore, impl_id, name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-23 02:25:14 -05:00
|
|
|
fn method_ty_param_count(ccx: @crate_ctxt, m_id: ast::def_id,
|
|
|
|
i_id: ast::def_id) -> uint {
|
2012-03-09 01:44:53 -06:00
|
|
|
if m_id.crate == ast::local_crate {
|
2012-08-23 19:39:07 -05:00
|
|
|
match ccx.tcx.items.get(m_id.node) {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast_map::node_method(m, _, _) => vec::len(m.tps),
|
2012-08-23 19:39:07 -05:00
|
|
|
_ => fail ~"method_ty_param_count"
|
2012-03-09 01:44:53 -06:00
|
|
|
}
|
|
|
|
} else {
|
2012-04-23 02:25:14 -05:00
|
|
|
csearch::get_type_param_count(ccx.sess.cstore, m_id) -
|
|
|
|
csearch::get_type_param_count(ccx.sess.cstore, i_id)
|
2012-03-09 01:44:53 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-28 17:54:45 -05:00
|
|
|
fn trans_monomorphized_callee(bcx: block,
|
|
|
|
callee_id: ast::node_id,
|
2012-08-16 18:44:22 -05:00
|
|
|
base: @ast::expr,
|
|
|
|
mentry: typeck::method_map_entry,
|
2012-08-28 17:54:45 -05:00
|
|
|
trait_id: ast::def_id,
|
|
|
|
n_method: uint,
|
2012-08-02 18:01:38 -05:00
|
|
|
vtbl: typeck::vtable_origin)
|
2012-08-28 17:54:45 -05:00
|
|
|
-> Callee
|
|
|
|
{
|
2012-08-14 18:45:43 -05:00
|
|
|
let _icx = bcx.insn_ctxt("impl::trans_monomorphized_callee");
|
2012-09-10 14:25:45 -05:00
|
|
|
return match vtbl {
|
|
|
|
typeck::vtable_static(impl_did, rcvr_substs, rcvr_origins) => {
|
2012-08-28 17:54:45 -05:00
|
|
|
let ccx = bcx.ccx();
|
|
|
|
let mname = ty::trait_methods(ccx.tcx, trait_id)[n_method].ident;
|
|
|
|
let mth_id = method_with_name(bcx.ccx(), impl_did, mname);
|
|
|
|
|
|
|
|
// obtain the `self` value:
|
|
|
|
let Result {bcx, val: llself_val} =
|
|
|
|
trans_self_arg(bcx, base, mentry);
|
|
|
|
|
|
|
|
// create a concatenated set of substitutions which includes
|
|
|
|
// those from the impl and those from the method:
|
2012-09-10 14:25:45 -05:00
|
|
|
let callee_substs = combine_impl_and_methods_tps(
|
|
|
|
bcx, mth_id, impl_did, callee_id, rcvr_substs);
|
|
|
|
let callee_origins = combine_impl_and_methods_origins(
|
|
|
|
bcx, mth_id, impl_did, callee_id, rcvr_origins);
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
// translate the function
|
|
|
|
let callee = trans_fn_ref_with_vtables(
|
2012-09-10 14:25:45 -05:00
|
|
|
bcx, mth_id, callee_id, callee_substs, Some(callee_origins));
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
// create a llvalue that represents the fn ptr
|
|
|
|
let fn_ty = node_id_type(bcx, callee_id);
|
|
|
|
let llfn_ty = T_ptr(type_of_fn_from_ty(ccx, fn_ty));
|
|
|
|
let llfn_val = PointerCast(bcx, callee.llfn, llfn_ty);
|
|
|
|
|
|
|
|
// combine the self environment with the rest
|
2012-09-11 23:25:01 -05:00
|
|
|
let tcx = bcx.tcx();
|
2012-08-28 17:54:45 -05:00
|
|
|
Callee {
|
|
|
|
bcx: bcx,
|
|
|
|
data: Method(MethodData {
|
|
|
|
llfn: llfn_val,
|
|
|
|
llself: llself_val,
|
|
|
|
self_ty: node_id_type(bcx, base.id),
|
2012-09-11 23:25:01 -05:00
|
|
|
self_mode: ty::resolved_mode(tcx, mentry.self_arg.mode)
|
2012-08-28 17:54:45 -05:00
|
|
|
})
|
|
|
|
}
|
2012-02-09 04:17:11 -06:00
|
|
|
}
|
2012-10-05 18:55:42 -05:00
|
|
|
typeck::vtable_trait(_, _) => {
|
|
|
|
trans_trait_callee(bcx, callee_id, n_method, base, ty::vstore_box)
|
2012-02-09 04:17:11 -06:00
|
|
|
}
|
2012-08-26 11:58:45 -05:00
|
|
|
typeck::vtable_param(*) => {
|
2012-08-28 17:54:45 -05:00
|
|
|
fail ~"vtable_param left in monomorphized function's vtable substs";
|
2012-02-09 04:17:11 -06:00
|
|
|
}
|
2012-09-10 14:25:45 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
fn combine_impl_and_methods_tps(bcx: block,
|
|
|
|
mth_did: ast::def_id,
|
|
|
|
impl_did: ast::def_id,
|
|
|
|
callee_id: ast::node_id,
|
|
|
|
rcvr_substs: ~[ty::t])
|
|
|
|
-> ~[ty::t]
|
|
|
|
{
|
|
|
|
/*!
|
|
|
|
*
|
|
|
|
* Creates a concatenated set of substitutions which includes
|
|
|
|
* those from the impl and those from the method. This are
|
|
|
|
* some subtle complications here. Statically, we have a list
|
|
|
|
* of type parameters like `[T0, T1, T2, M1, M2, M3]` where
|
|
|
|
* `Tn` are type parameters that appear on the receiver. For
|
|
|
|
* example, if the receiver is a method parameter `A` with a
|
|
|
|
* bound like `trait<B,C,D>` then `Tn` would be `[B,C,D]`.
|
|
|
|
*
|
|
|
|
* The weird part is that the type `A` might now be bound to
|
|
|
|
* any other type, such as `foo<X>`. In that case, the vector
|
|
|
|
* we want is: `[X, M1, M2, M3]`. Therefore, what we do now is
|
|
|
|
* to slice off the method type parameters and append them to
|
|
|
|
* the type parameters from the type that the receiver is
|
|
|
|
* mapped to. */
|
|
|
|
|
|
|
|
let ccx = bcx.ccx();
|
|
|
|
let n_m_tps = method_ty_param_count(ccx, mth_did, impl_did);
|
|
|
|
let node_substs = node_id_type_params(bcx, callee_id);
|
|
|
|
let ty_substs
|
|
|
|
= vec::append(rcvr_substs,
|
|
|
|
vec::tailn(node_substs,
|
|
|
|
node_substs.len() - n_m_tps));
|
|
|
|
debug!("n_m_tps=%?", n_m_tps);
|
2012-09-21 20:43:30 -05:00
|
|
|
debug!("rcvr_substs=%?", rcvr_substs.map(|t| bcx.ty_to_str(*t)));
|
|
|
|
debug!("node_substs=%?", node_substs.map(|t| bcx.ty_to_str(*t)));
|
|
|
|
debug!("ty_substs=%?", ty_substs.map(|t| bcx.ty_to_str(*t)));
|
2012-09-10 14:25:45 -05:00
|
|
|
|
|
|
|
return ty_substs;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn combine_impl_and_methods_origins(bcx: block,
|
|
|
|
mth_did: ast::def_id,
|
|
|
|
impl_did: ast::def_id,
|
|
|
|
callee_id: ast::node_id,
|
|
|
|
rcvr_origins: typeck::vtable_res)
|
|
|
|
-> typeck::vtable_res
|
|
|
|
{
|
|
|
|
/*!
|
|
|
|
*
|
|
|
|
* Similar to `combine_impl_and_methods_tps`, but for vtables.
|
|
|
|
* This is much messier because of the flattened layout we are
|
|
|
|
* currently using (for some reason that I fail to understand).
|
|
|
|
* The proper fix is described in #3446.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
// Find the bounds for the method, which are the tail of the
|
|
|
|
// bounds found in the item type, as the item type combines the
|
|
|
|
// rcvr + method bounds.
|
|
|
|
let ccx = bcx.ccx(), tcx = bcx.tcx();
|
|
|
|
let n_m_tps = method_ty_param_count(ccx, mth_did, impl_did);
|
|
|
|
let {bounds: r_m_bounds, _} = ty::lookup_item_type(tcx, mth_did);
|
|
|
|
let n_r_m_tps = r_m_bounds.len(); // rcvr + method tps
|
|
|
|
let m_boundss = vec::view(*r_m_bounds, n_r_m_tps - n_m_tps, n_r_m_tps);
|
|
|
|
|
|
|
|
// Flatten out to find the number of vtables the method expects.
|
|
|
|
let m_vtables = m_boundss.foldl(0, |sum, m_bounds| {
|
2012-09-28 18:37:14 -05:00
|
|
|
m_bounds.foldl(*sum, |sum, m_bound| {
|
|
|
|
(*sum) + match (*m_bound) {
|
2012-09-10 14:25:45 -05:00
|
|
|
ty::bound_copy | ty::bound_owned |
|
|
|
|
ty::bound_send | ty::bound_const => 0,
|
|
|
|
ty::bound_trait(_) => 1
|
|
|
|
}
|
|
|
|
})
|
|
|
|
});
|
|
|
|
|
|
|
|
// Find the vtables we computed at type check time and monomorphize them
|
|
|
|
let r_m_origins = match node_vtables(bcx, callee_id) {
|
|
|
|
Some(vt) => vt,
|
|
|
|
None => @~[]
|
|
|
|
};
|
|
|
|
|
|
|
|
// Extract those that belong to method:
|
|
|
|
let m_origins = vec::tailn(*r_m_origins, r_m_origins.len() - m_vtables);
|
|
|
|
|
|
|
|
// Combine rcvr + method to find the final result:
|
|
|
|
@vec::append(*rcvr_origins, m_origins)
|
2012-02-09 04:17:11 -06:00
|
|
|
}
|
|
|
|
|
2012-09-10 14:25:45 -05:00
|
|
|
|
2012-08-28 17:54:45 -05:00
|
|
|
fn trans_trait_callee(bcx: block,
|
|
|
|
callee_id: ast::node_id,
|
|
|
|
n_method: uint,
|
2012-10-05 18:55:42 -05:00
|
|
|
self_expr: @ast::expr,
|
|
|
|
vstore: ty::vstore)
|
2012-08-28 17:54:45 -05:00
|
|
|
-> Callee
|
|
|
|
{
|
|
|
|
//!
|
|
|
|
//
|
|
|
|
// Create a method callee where the method is coming from a trait
|
|
|
|
// instance (e.g., @Trait type). In this case, we must pull the
|
|
|
|
// fn pointer out of the vtable that is packaged up with the
|
2012-10-05 18:55:42 -05:00
|
|
|
// @/~/&Trait instance. @/~/&Traits are represented as a pair, so we
|
|
|
|
// first evaluate the self expression (expected a by-ref result) and then
|
2012-08-28 17:54:45 -05:00
|
|
|
// extract the self data and vtable out of the pair.
|
|
|
|
|
|
|
|
let _icx = bcx.insn_ctxt("impl::trans_trait_callee");
|
|
|
|
let mut bcx = bcx;
|
|
|
|
let self_datum = unpack_datum!(bcx, expr::trans_to_datum(bcx, self_expr));
|
|
|
|
let llpair = self_datum.to_ref_llval(bcx);
|
|
|
|
let callee_ty = node_id_type(bcx, callee_id);
|
2012-10-05 18:55:42 -05:00
|
|
|
trans_trait_callee_from_llval(bcx, callee_ty, n_method, llpair, vstore)
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_trait_callee_from_llval(bcx: block,
|
|
|
|
callee_ty: ty::t,
|
|
|
|
n_method: uint,
|
2012-10-05 18:55:42 -05:00
|
|
|
llpair: ValueRef,
|
|
|
|
vstore: ty::vstore)
|
2012-08-28 17:54:45 -05:00
|
|
|
-> Callee
|
|
|
|
{
|
|
|
|
//!
|
|
|
|
//
|
|
|
|
// Same as `trans_trait_callee()` above, except that it is given
|
|
|
|
// a by-ref pointer to the @Trait pair.
|
|
|
|
|
2012-08-14 18:45:43 -05:00
|
|
|
let _icx = bcx.insn_ctxt("impl::trans_trait_callee");
|
2012-05-14 17:48:58 -05:00
|
|
|
let ccx = bcx.ccx();
|
2012-08-28 17:54:45 -05:00
|
|
|
let mut bcx = bcx;
|
|
|
|
|
|
|
|
// Load the vtable from the @Trait pair
|
|
|
|
let llvtable = Load(bcx,
|
|
|
|
PointerCast(bcx,
|
|
|
|
GEPi(bcx, llpair, [0u, 0u]),
|
|
|
|
T_ptr(T_ptr(T_vtable()))));
|
|
|
|
|
2012-10-05 18:55:42 -05:00
|
|
|
// Load the box from the @Trait pair and GEP over the box header if
|
|
|
|
// necessary:
|
|
|
|
let llself;
|
2012-08-28 17:54:45 -05:00
|
|
|
let llbox = Load(bcx, GEPi(bcx, llpair, [0u, 1u]));
|
2012-10-05 18:55:42 -05:00
|
|
|
match vstore {
|
|
|
|
ty::vstore_box | ty::vstore_uniq => {
|
|
|
|
llself = GEPi(bcx, llbox, [0u, abi::box_field_body]);
|
|
|
|
}
|
|
|
|
ty::vstore_slice(_) => {
|
|
|
|
llself = llbox;
|
|
|
|
}
|
|
|
|
ty::vstore_fixed(*) => {
|
|
|
|
bcx.tcx().sess.bug(~"vstore_fixed trait");
|
|
|
|
}
|
|
|
|
}
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
// Load the function from the vtable and cast it to the expected type.
|
|
|
|
let llcallee_ty = type_of::type_of_fn_from_ty(ccx, callee_ty);
|
|
|
|
let mptr = Load(bcx, GEPi(bcx, llvtable, [0u, n_method]));
|
|
|
|
let mptr = PointerCast(bcx, mptr, T_ptr(llcallee_ty));
|
|
|
|
|
|
|
|
return Callee {
|
|
|
|
bcx: bcx,
|
|
|
|
data: Method(MethodData {
|
|
|
|
llfn: mptr,
|
|
|
|
llself: llself,
|
|
|
|
self_ty: ty::mk_opaque_box(bcx.tcx()),
|
|
|
|
self_mode: ast::by_ref, // XXX: is this bogosity?
|
|
|
|
/* XXX: Some(llbox) */
|
|
|
|
})
|
|
|
|
};
|
2012-01-07 15:44:14 -06:00
|
|
|
}
|
|
|
|
|
2012-03-12 10:31:22 -05:00
|
|
|
fn vtable_id(ccx: @crate_ctxt, origin: typeck::vtable_origin) -> mono_id {
|
2012-08-23 19:39:07 -05:00
|
|
|
match origin {
|
2012-08-28 17:54:45 -05:00
|
|
|
typeck::vtable_static(impl_id, substs, sub_vtables) => {
|
|
|
|
monomorphize::make_mono_id(
|
|
|
|
ccx, impl_id, substs,
|
|
|
|
if (*sub_vtables).len() == 0u { None }
|
|
|
|
else { Some(sub_vtables) }, None)
|
|
|
|
}
|
|
|
|
typeck::vtable_trait(trait_id, substs) => {
|
|
|
|
@{def: trait_id,
|
2012-09-21 20:43:30 -05:00
|
|
|
params: vec::map(substs, |t| mono_precise(*t, None))}
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
// can't this be checked at the callee?
|
|
|
|
_ => fail ~"vtable_id"
|
2012-03-08 09:10:25 -06:00
|
|
|
}
|
2012-01-12 09:57:30 -06:00
|
|
|
}
|
|
|
|
|
2012-03-08 09:17:59 -06:00
|
|
|
fn get_vtable(ccx: @crate_ctxt, origin: typeck::vtable_origin)
|
2012-01-12 09:57:30 -06:00
|
|
|
-> ValueRef {
|
2012-03-12 10:31:22 -05:00
|
|
|
let hash_id = vtable_id(ccx, origin);
|
2012-08-06 14:34:08 -05:00
|
|
|
match ccx.vtables.find(hash_id) {
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(val) => val,
|
|
|
|
None => match origin {
|
2012-08-03 21:59:04 -05:00
|
|
|
typeck::vtable_static(id, substs, sub_vtables) => {
|
2012-03-08 09:17:59 -06:00
|
|
|
make_impl_vtable(ccx, id, substs, sub_vtables)
|
2012-01-02 09:50:51 -06:00
|
|
|
}
|
2012-08-23 19:39:07 -05:00
|
|
|
_ => fail ~"get_vtable: expected a static origin"
|
2012-03-08 09:10:25 -06:00
|
|
|
}
|
2012-01-02 09:50:51 -06:00
|
|
|
}
|
2012-01-12 09:57:30 -06:00
|
|
|
}
|
2012-01-02 06:26:51 -06:00
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
fn make_vtable(ccx: @crate_ctxt, ptrs: ~[ValueRef]) -> ValueRef {
|
2012-08-14 18:45:43 -05:00
|
|
|
let _icx = ccx.insn_ctxt("impl::make_vtable");
|
2012-03-08 09:10:25 -06:00
|
|
|
let tbl = C_struct(ptrs);
|
2012-07-18 18:18:02 -05:00
|
|
|
let vt_gvar = str::as_c_str(ccx.sess.str_of(ccx.names(~"vtable")), |buf| {
|
2012-03-08 09:10:25 -06:00
|
|
|
llvm::LLVMAddGlobal(ccx.llmod, val_ty(tbl), buf)
|
2012-01-12 09:57:30 -06:00
|
|
|
});
|
2012-03-08 09:10:25 -06:00
|
|
|
llvm::LLVMSetInitializer(vt_gvar, tbl);
|
|
|
|
llvm::LLVMSetGlobalConstant(vt_gvar, lib::llvm::True);
|
|
|
|
lib::llvm::SetLinkage(vt_gvar, lib::llvm::InternalLinkage);
|
|
|
|
vt_gvar
|
2012-01-12 09:57:30 -06:00
|
|
|
}
|
2012-01-02 06:26:51 -06:00
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
fn make_impl_vtable(ccx: @crate_ctxt, impl_id: ast::def_id, substs: ~[ty::t],
|
2012-03-08 09:17:59 -06:00
|
|
|
vtables: typeck::vtable_res) -> ValueRef {
|
2012-08-14 18:45:43 -05:00
|
|
|
let _icx = ccx.insn_ctxt("impl::make_impl_vtable");
|
2012-03-08 09:10:25 -06:00
|
|
|
let tcx = ccx.tcx;
|
2012-07-18 18:49:55 -05:00
|
|
|
|
|
|
|
// XXX: This should support multiple traits.
|
2012-08-28 17:54:45 -05:00
|
|
|
let trt_id = driver::session::expect(
|
|
|
|
tcx.sess,
|
2012-10-05 18:55:42 -05:00
|
|
|
ty::ty_to_def_id(ty::impl_traits(tcx, impl_id, ty::vstore_box)[0]),
|
2012-08-28 17:54:45 -05:00
|
|
|
|| ~"make_impl_vtable: non-trait-type implemented");
|
2012-07-18 18:49:55 -05:00
|
|
|
|
2012-03-15 09:07:25 -05:00
|
|
|
let has_tps = (*ty::lookup_item_type(ccx.tcx, impl_id).bounds).len() > 0u;
|
2012-07-30 16:43:44 -05:00
|
|
|
make_vtable(ccx, vec::map(*ty::trait_methods(tcx, trt_id), |im| {
|
2012-04-13 14:22:35 -05:00
|
|
|
let fty = ty::subst_tps(tcx, substs, ty::mk_fn(tcx, im.fty));
|
2012-05-09 08:09:58 -05:00
|
|
|
if (*im.tps).len() > 0u || ty::type_has_self(fty) {
|
2012-03-16 08:28:45 -05:00
|
|
|
C_null(T_ptr(T_nil()))
|
2012-03-08 09:10:25 -06:00
|
|
|
} else {
|
2012-05-29 16:39:22 -05:00
|
|
|
let mut m_id = method_with_name(ccx, impl_id, im.ident);
|
2012-03-15 09:07:25 -05:00
|
|
|
if has_tps {
|
2012-05-29 16:39:22 -05:00
|
|
|
// If the method is in another crate, need to make an inlined
|
|
|
|
// copy first
|
|
|
|
if m_id.crate != ast::local_crate {
|
2012-08-28 17:54:45 -05:00
|
|
|
m_id = inline::maybe_instantiate_inline(ccx, m_id);
|
2012-05-29 16:39:22 -05:00
|
|
|
}
|
2012-08-28 17:54:45 -05:00
|
|
|
monomorphize::monomorphic_fn(ccx, m_id, substs,
|
|
|
|
Some(vtables), None).val
|
2012-03-15 09:07:25 -05:00
|
|
|
} else if m_id.crate == ast::local_crate {
|
|
|
|
get_item_val(ccx, m_id.node)
|
|
|
|
} else {
|
|
|
|
trans_external_path(ccx, m_id, fty)
|
|
|
|
}
|
2012-01-12 09:57:30 -06:00
|
|
|
}
|
2012-06-26 15:55:56 -05:00
|
|
|
}))
|
2012-01-12 09:57:30 -06:00
|
|
|
}
|
|
|
|
|
2012-08-28 17:54:45 -05:00
|
|
|
fn trans_trait_cast(bcx: block,
|
|
|
|
val: @ast::expr,
|
|
|
|
id: ast::node_id,
|
|
|
|
dest: expr::Dest)
|
|
|
|
-> block
|
|
|
|
{
|
2012-10-03 17:18:50 -05:00
|
|
|
let mut bcx = bcx;
|
2012-08-14 18:45:43 -05:00
|
|
|
let _icx = bcx.insn_ctxt("impl::trans_cast");
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
let lldest = match dest {
|
|
|
|
Ignore => {
|
|
|
|
return expr::trans_into(bcx, val, Ignore);
|
|
|
|
}
|
|
|
|
SaveIn(dest) => dest
|
|
|
|
};
|
|
|
|
|
2012-02-21 07:20:18 -06:00
|
|
|
let ccx = bcx.ccx();
|
2012-02-10 04:32:03 -06:00
|
|
|
let v_ty = expr_ty(bcx, val);
|
2012-08-28 17:54:45 -05:00
|
|
|
|
2012-10-03 17:18:50 -05:00
|
|
|
let mut llboxdest = GEPi(bcx, lldest, [0u, 1u]);
|
|
|
|
if bcx.tcx().legacy_boxed_traits.contains_key(id) {
|
|
|
|
// Allocate an @ box and store the value into it
|
|
|
|
let {bcx: new_bcx, box: llbox, body: body} = malloc_boxed(bcx, v_ty);
|
|
|
|
bcx = new_bcx;
|
|
|
|
add_clean_free(bcx, llbox, heap_shared);
|
|
|
|
bcx = expr::trans_into(bcx, val, SaveIn(body));
|
|
|
|
revoke_clean(bcx, llbox);
|
2012-08-28 17:54:45 -05:00
|
|
|
|
2012-10-03 17:18:50 -05:00
|
|
|
// Store the @ box into the pair
|
2012-10-03 19:18:24 -05:00
|
|
|
Store(bcx, llbox, PointerCast(bcx, llboxdest, T_ptr(val_ty(llbox))));
|
2012-10-03 17:18:50 -05:00
|
|
|
} else {
|
|
|
|
// Just store the @ box into the pair.
|
2012-10-03 19:18:24 -05:00
|
|
|
llboxdest = PointerCast(bcx, llboxdest,
|
|
|
|
T_ptr(type_of::type_of(bcx.ccx(), v_ty)));
|
2012-10-03 17:18:50 -05:00
|
|
|
bcx = expr::trans_into(bcx, val, SaveIn(llboxdest));
|
|
|
|
}
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
// Store the vtable into the pair
|
2012-03-08 09:17:59 -06:00
|
|
|
let orig = ccx.maps.vtable_map.get(id)[0];
|
2012-03-08 09:10:25 -06:00
|
|
|
let orig = resolve_vtable_in_fn_ctxt(bcx.fcx, orig);
|
|
|
|
let vtable = get_vtable(bcx.ccx(), orig);
|
2012-08-28 17:54:45 -05:00
|
|
|
Store(bcx, vtable, PointerCast(bcx,
|
|
|
|
GEPi(bcx, lldest, [0u, 0u]),
|
2012-03-08 09:10:25 -06:00
|
|
|
T_ptr(val_ty(vtable))));
|
2012-08-28 17:54:45 -05:00
|
|
|
|
2012-02-10 04:32:03 -06:00
|
|
|
bcx
|
2012-01-07 15:44:14 -06:00
|
|
|
}
|