2012-01-18 05:29:37 -06:00
|
|
|
import core::ctypes::c_uint;
|
2012-01-27 06:17:06 -06:00
|
|
|
import base::*;
|
|
|
|
import common::*;
|
|
|
|
import build::*;
|
2012-01-30 23:00:57 -06:00
|
|
|
import driver::session::session;
|
2012-01-02 05:21:44 -06:00
|
|
|
import option::{some, none};
|
2012-01-02 06:26:51 -06:00
|
|
|
import syntax::{ast, ast_util};
|
2012-01-05 06:57:27 -06:00
|
|
|
import metadata::csearch;
|
2012-01-07 15:44:14 -06:00
|
|
|
import back::{link, abi};
|
2012-01-06 07:22:31 -06:00
|
|
|
import lib::llvm::llvm;
|
2012-02-01 04:04:56 -06:00
|
|
|
import lib::llvm::{ValueRef, TypeRef};
|
|
|
|
import lib::llvm::llvm::LLVMGetParam;
|
2012-02-03 02:53:37 -06:00
|
|
|
import ast_map::{path, path_mod, path_name};
|
2012-01-02 05:21:44 -06:00
|
|
|
|
2012-01-06 10:50:55 -06:00
|
|
|
// Translation functionality related to impls and ifaces
|
|
|
|
//
|
|
|
|
// Terminology:
|
|
|
|
// vtable: a table of function pointers pointing to method wrappers
|
|
|
|
// of an impl that implements an iface
|
|
|
|
// dict: a record containing a vtable pointer along with pointers to
|
|
|
|
// all tydescs and other dicts needed to run methods in this vtable
|
|
|
|
// (i.e. corresponding to the type parameters of the impl)
|
|
|
|
// wrapper: a function that takes a dict as first argument, along
|
|
|
|
// with the method-specific tydescs for a method (and all
|
|
|
|
// other args the method expects), which fetches the extra
|
|
|
|
// tydescs and dicts from the dict, splices them into the
|
|
|
|
// arglist, and calls through to the actual method
|
|
|
|
//
|
|
|
|
// Generic functions take, along with their normal arguments, a number
|
|
|
|
// of extra tydesc and dict arguments -- one tydesc for each type
|
|
|
|
// parameter, one dict (following the tydesc in the arg order) for
|
|
|
|
// each interface bound on a type parameter.
|
|
|
|
//
|
|
|
|
// Most dicts are completely static, and are allocated and filled at
|
|
|
|
// compile time. Dicts that depend on run-time values (tydescs or
|
|
|
|
// dicts for type parameter types) are built at run-time, and interned
|
|
|
|
// through upcall_intern_dict in the runtime. This means that dict
|
|
|
|
// pointers are self-contained things that do not need to be cleaned
|
|
|
|
// up.
|
|
|
|
//
|
|
|
|
// The trans_constants pass in trans.rs outputs the vtables. Typeck
|
|
|
|
// annotates notes with information about the methods and dicts that
|
|
|
|
// are referenced (ccx.method_map and ccx.dict_map).
|
|
|
|
|
2012-02-03 02:53:37 -06:00
|
|
|
fn trans_impl(ccx: @crate_ctxt, path: path, name: ast::ident,
|
|
|
|
methods: [@ast::method], id: ast::node_id,
|
|
|
|
tps: [ast::ty_param]) {
|
|
|
|
let sub_path = path + [path_name(name)];
|
2012-01-02 05:21:44 -06:00
|
|
|
for m in methods {
|
2012-02-03 02:53:37 -06:00
|
|
|
alt ccx.item_ids.find(m.id) {
|
2012-01-02 05:21:44 -06:00
|
|
|
some(llfn) {
|
2012-02-03 02:53:37 -06:00
|
|
|
trans_fn(ccx, sub_path + [path_name(m.ident)], m.decl, m.body,
|
|
|
|
llfn, impl_self(ty::node_id_to_type(ccx.tcx, id)),
|
2012-02-02 05:37:17 -06:00
|
|
|
tps + m.tps, none, m.id);
|
2012-01-02 05:21:44 -06:00
|
|
|
}
|
2012-01-30 23:00:57 -06:00
|
|
|
_ {
|
2012-02-03 02:53:37 -06:00
|
|
|
ccx.tcx.sess.bug("Unbound id in trans_impl");
|
2012-01-30 23:00:57 -06:00
|
|
|
}
|
2012-01-02 05:21:44 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-01-02 06:26:51 -06:00
|
|
|
|
2012-01-02 09:50:51 -06:00
|
|
|
fn trans_self_arg(bcx: @block_ctxt, base: @ast::expr) -> result {
|
|
|
|
let tz = [], tr = [];
|
2012-02-02 05:37:17 -06:00
|
|
|
let basety = expr_ty(bcx, base);
|
2012-02-02 18:50:17 -06:00
|
|
|
let m_by_ref = ast::expl(ast::by_ref);
|
2012-02-07 04:25:04 -06:00
|
|
|
let {bcx, val} =
|
|
|
|
trans_arg_expr(bcx, {mode: m_by_ref, ty: basety},
|
|
|
|
T_ptr(type_of_or_i8(bcx_ccx(bcx), basety)), tz,
|
|
|
|
tr, base);
|
2012-01-05 18:19:12 -06:00
|
|
|
rslt(bcx, PointerCast(bcx, val, T_opaque_cbox_ptr(bcx_ccx(bcx))))
|
2012-01-02 09:50:51 -06:00
|
|
|
}
|
|
|
|
|
2012-01-26 05:26:14 -06:00
|
|
|
fn trans_method_callee(bcx: @block_ctxt, callee_id: ast::node_id,
|
|
|
|
self: @ast::expr, origin: typeck::method_origin)
|
|
|
|
-> lval_maybe_callee {
|
|
|
|
alt origin {
|
|
|
|
typeck::method_static(did) {
|
|
|
|
trans_static_callee(bcx, callee_id, self, did)
|
|
|
|
}
|
|
|
|
typeck::method_param(iid, off, p, b) {
|
|
|
|
trans_param_callee(bcx, callee_id, self, iid, off, p, b)
|
|
|
|
}
|
|
|
|
typeck::method_iface(off) {
|
|
|
|
trans_iface_callee(bcx, callee_id, self, off)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-07 15:44:14 -06:00
|
|
|
// Method callee where the method is statically known
|
2012-01-26 05:26:14 -06:00
|
|
|
fn trans_static_callee(bcx: @block_ctxt, callee_id: ast::node_id,
|
|
|
|
base: @ast::expr, did: ast::def_id)
|
|
|
|
-> lval_maybe_callee {
|
2012-01-02 09:50:51 -06:00
|
|
|
let {bcx, val} = trans_self_arg(bcx, base);
|
2012-01-26 05:26:14 -06:00
|
|
|
{env: self_env(val) with lval_static_fn(bcx, did, callee_id)}
|
2012-01-02 09:50:51 -06:00
|
|
|
}
|
|
|
|
|
2012-01-30 04:52:34 -06:00
|
|
|
fn wrapper_fn_ty(ccx: @crate_ctxt, dict_ty: TypeRef, fty: ty::t,
|
|
|
|
tps: @[ty::param_bounds]) -> {ty: ty::t, llty: TypeRef} {
|
|
|
|
let bare_fn_ty = type_of_fn_from_ty(ccx, fty, *tps);
|
2012-01-12 09:57:30 -06:00
|
|
|
let {inputs, output} = llfn_arg_tys(bare_fn_ty);
|
|
|
|
{ty: fty, llty: T_fn([dict_ty] + inputs, output)}
|
|
|
|
}
|
|
|
|
|
2012-01-07 15:44:14 -06:00
|
|
|
fn trans_vtable_callee(bcx: @block_ctxt, self: ValueRef, dict: ValueRef,
|
2012-01-26 05:26:14 -06:00
|
|
|
callee_id: ast::node_id, iface_id: ast::def_id,
|
2012-01-07 15:44:14 -06:00
|
|
|
n_method: uint) -> lval_maybe_callee {
|
|
|
|
let bcx = bcx, ccx = bcx_ccx(bcx), tcx = ccx.tcx;
|
2012-01-04 04:32:26 -06:00
|
|
|
let method = ty::iface_methods(tcx, iface_id)[n_method];
|
2012-01-30 04:52:34 -06:00
|
|
|
let {ty: fty, llty: llfty} =
|
|
|
|
wrapper_fn_ty(ccx, val_ty(dict), ty::node_id_to_type(tcx, callee_id),
|
|
|
|
method.tps);
|
2012-01-02 09:50:51 -06:00
|
|
|
let vtable = PointerCast(bcx, Load(bcx, GEPi(bcx, dict, [0, 0])),
|
2012-01-12 09:57:30 -06:00
|
|
|
T_ptr(T_array(T_ptr(llfty), n_method + 1u)));
|
2012-01-02 09:50:51 -06:00
|
|
|
let mptr = Load(bcx, GEPi(bcx, vtable, [0, n_method as int]));
|
2012-02-07 04:25:04 -06:00
|
|
|
let generic = generic_none;
|
2012-02-03 08:15:28 -06:00
|
|
|
if vec::len(*method.tps) > 0u || ty::type_has_params(fty) {
|
2012-01-04 04:32:26 -06:00
|
|
|
let tydescs = [], tis = [];
|
2012-01-26 05:26:14 -06:00
|
|
|
let tptys = ty::node_id_to_type_params(tcx, callee_id);
|
2012-01-06 03:23:55 -06:00
|
|
|
for t in vec::tail_n(tptys, vec::len(tptys) - vec::len(*method.tps)) {
|
2012-01-04 04:32:26 -06:00
|
|
|
let ti = none;
|
2012-01-13 03:58:31 -06:00
|
|
|
let td = get_tydesc(bcx, t, true, ti).result;
|
2012-01-04 04:32:26 -06:00
|
|
|
tis += [ti];
|
|
|
|
tydescs += [td.val];
|
|
|
|
bcx = td.bcx;
|
|
|
|
}
|
2012-02-07 04:25:04 -06:00
|
|
|
generic = generic_full({item_type: fty,
|
|
|
|
static_tis: tis,
|
|
|
|
tydescs: tydescs,
|
|
|
|
param_bounds: method.tps,
|
|
|
|
origins: ccx.dict_map.find(callee_id)});
|
2012-01-04 04:32:26 -06:00
|
|
|
}
|
2012-01-02 09:50:51 -06:00
|
|
|
{bcx: bcx, val: mptr, kind: owned,
|
2012-01-07 15:44:14 -06:00
|
|
|
env: dict_env(dict, self),
|
2012-01-04 04:32:26 -06:00
|
|
|
generic: generic}
|
2012-01-02 09:50:51 -06:00
|
|
|
}
|
|
|
|
|
2012-01-07 15:44:14 -06:00
|
|
|
// Method callee where the dict comes from a type param
|
2012-01-26 05:26:14 -06:00
|
|
|
fn trans_param_callee(bcx: @block_ctxt, callee_id: ast::node_id,
|
2012-01-07 15:44:14 -06:00
|
|
|
base: @ast::expr, iface_id: ast::def_id, n_method: uint,
|
|
|
|
n_param: uint, n_bound: uint) -> lval_maybe_callee {
|
|
|
|
let {bcx, val} = trans_self_arg(bcx, base);
|
|
|
|
let dict = option::get(bcx.fcx.lltyparams[n_param].dicts)[n_bound];
|
2012-01-26 05:26:14 -06:00
|
|
|
trans_vtable_callee(bcx, val, dict, callee_id, iface_id, n_method)
|
2012-01-07 15:44:14 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Method callee where the dict comes from a boxed iface
|
2012-01-26 05:26:14 -06:00
|
|
|
fn trans_iface_callee(bcx: @block_ctxt, callee_id: ast::node_id,
|
2012-01-08 17:32:03 -06:00
|
|
|
base: @ast::expr, n_method: uint)
|
2012-01-07 15:44:14 -06:00
|
|
|
-> lval_maybe_callee {
|
|
|
|
let {bcx, val} = trans_temp_expr(bcx, base);
|
2012-02-01 20:52:08 -06:00
|
|
|
let box_body = GEPi(bcx, val, [0, abi::box_field_body]);
|
2012-01-07 15:44:14 -06:00
|
|
|
let dict = Load(bcx, PointerCast(bcx, GEPi(bcx, box_body, [0, 1]),
|
|
|
|
T_ptr(T_ptr(T_dict()))));
|
|
|
|
// FIXME[impl] I doubt this is alignment-safe
|
|
|
|
let self = PointerCast(bcx, GEPi(bcx, box_body, [0, 2]),
|
|
|
|
T_opaque_cbox_ptr(bcx_ccx(bcx)));
|
2012-02-03 08:15:28 -06:00
|
|
|
let iface_id = alt ty::get(expr_ty(bcx, base)).struct {
|
2012-01-07 15:44:14 -06:00
|
|
|
ty::ty_iface(did, _) { did }
|
2012-01-30 23:00:57 -06:00
|
|
|
// precondition
|
|
|
|
_ { bcx_tcx(bcx).sess.span_bug(base.span, "base has non-iface type \
|
|
|
|
in trans_iface_callee"); }
|
2012-01-07 15:44:14 -06:00
|
|
|
};
|
2012-01-26 05:26:14 -06:00
|
|
|
trans_vtable_callee(bcx, self, dict, callee_id, iface_id, n_method)
|
2012-01-07 15:44:14 -06:00
|
|
|
}
|
|
|
|
|
2012-01-02 06:26:51 -06:00
|
|
|
fn llfn_arg_tys(ft: TypeRef) -> {inputs: [TypeRef], output: TypeRef} {
|
2012-01-06 07:22:31 -06:00
|
|
|
let out_ty = llvm::LLVMGetReturnType(ft);
|
|
|
|
let n_args = llvm::LLVMCountParamTypes(ft);
|
2012-01-18 15:02:29 -06:00
|
|
|
let args = vec::init_elt(n_args as uint, 0 as TypeRef);
|
2012-01-06 07:22:31 -06:00
|
|
|
unsafe { llvm::LLVMGetParamTypes(ft, vec::to_ptr(args)); }
|
2012-01-02 06:26:51 -06:00
|
|
|
{inputs: args, output: out_ty}
|
|
|
|
}
|
|
|
|
|
2012-01-12 09:57:30 -06:00
|
|
|
fn trans_vtable(ccx: @crate_ctxt, id: ast::node_id, name: str,
|
|
|
|
ptrs: [ValueRef]) {
|
|
|
|
let tbl = C_struct(ptrs);
|
|
|
|
let vt_gvar = str::as_buf(name, {|buf|
|
|
|
|
llvm::LLVMAddGlobal(ccx.llmod, val_ty(tbl), buf)
|
|
|
|
});
|
|
|
|
llvm::LLVMSetInitializer(vt_gvar, tbl);
|
|
|
|
llvm::LLVMSetGlobalConstant(vt_gvar, lib::llvm::True);
|
|
|
|
ccx.item_ids.insert(id, vt_gvar);
|
|
|
|
ccx.item_symbols.insert(id, name);
|
|
|
|
}
|
|
|
|
|
2012-02-03 02:53:37 -06:00
|
|
|
fn trans_wrapper(ccx: @crate_ctxt, pt: path, llfty: TypeRef,
|
2012-01-23 16:59:00 -06:00
|
|
|
fill: fn(ValueRef, @block_ctxt) -> @block_ctxt)
|
2012-01-12 09:57:30 -06:00
|
|
|
-> ValueRef {
|
|
|
|
let name = link::mangle_internal_name_by_path(ccx, pt);
|
|
|
|
let llfn = decl_internal_cdecl_fn(ccx.llmod, name, llfty);
|
2012-02-03 02:53:37 -06:00
|
|
|
let fcx = new_fn_ctxt(ccx, [], llfn, none);
|
2012-01-28 13:49:21 -06:00
|
|
|
let bcx = new_top_block_ctxt(fcx, none), lltop = bcx.llbb;
|
2012-01-12 09:57:30 -06:00
|
|
|
let bcx = fill(llfn, bcx);
|
|
|
|
build_return(bcx);
|
|
|
|
finish_fn(fcx, lltop);
|
|
|
|
ret llfn;
|
|
|
|
}
|
|
|
|
|
2012-02-03 02:53:37 -06:00
|
|
|
fn trans_impl_wrapper(ccx: @crate_ctxt, pt: path,
|
2012-01-12 09:57:30 -06:00
|
|
|
extra_tps: [ty::param_bounds], real_fn: ValueRef)
|
|
|
|
-> ValueRef {
|
2012-01-02 06:26:51 -06:00
|
|
|
let {inputs: real_args, output: real_ret} =
|
2012-01-06 07:22:31 -06:00
|
|
|
llfn_arg_tys(llvm::LLVMGetElementType(val_ty(real_fn)));
|
2012-01-02 09:50:51 -06:00
|
|
|
let extra_ptrs = [];
|
|
|
|
for tp in extra_tps {
|
|
|
|
extra_ptrs += [T_ptr(ccx.tydesc_type)];
|
|
|
|
for bound in *tp {
|
|
|
|
alt bound {
|
|
|
|
ty::bound_iface(_) { extra_ptrs += [T_ptr(T_dict())]; }
|
|
|
|
_ {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let env_ty = T_ptr(T_struct([T_ptr(T_i8())] + extra_ptrs));
|
|
|
|
let n_extra_ptrs = vec::len(extra_ptrs);
|
|
|
|
|
|
|
|
let wrap_args = [T_ptr(T_dict())] + vec::slice(real_args, 0u, 2u) +
|
|
|
|
vec::slice(real_args, 2u + vec::len(extra_ptrs), vec::len(real_args));
|
2012-01-02 06:26:51 -06:00
|
|
|
let llfn_ty = T_fn(wrap_args, real_ret);
|
2012-01-12 09:57:30 -06:00
|
|
|
trans_wrapper(ccx, pt, llfn_ty, {|llfn, bcx|
|
2012-01-18 05:29:37 -06:00
|
|
|
let dict = PointerCast(bcx, LLVMGetParam(llfn, 0 as c_uint), env_ty);
|
2012-01-12 09:57:30 -06:00
|
|
|
// retptr, self
|
2012-01-18 05:29:37 -06:00
|
|
|
let args = [LLVMGetParam(llfn, 1 as c_uint),
|
|
|
|
LLVMGetParam(llfn, 2 as c_uint)];
|
2012-01-16 04:21:01 -06:00
|
|
|
let i = 0u;
|
2012-01-12 09:57:30 -06:00
|
|
|
// saved tydescs/dicts
|
|
|
|
while i < n_extra_ptrs {
|
|
|
|
i += 1u;
|
|
|
|
args += [load_inbounds(bcx, dict, [0, i as int])];
|
|
|
|
}
|
|
|
|
// the rest of the parameters
|
2012-01-18 05:29:37 -06:00
|
|
|
let j = 3u as c_uint;
|
|
|
|
let params_total = llvm::LLVMCountParamTypes(llfn_ty);
|
|
|
|
while j < params_total {
|
|
|
|
args += [LLVMGetParam(llfn, j)];
|
|
|
|
j += 1u as c_uint;
|
2012-01-12 09:57:30 -06:00
|
|
|
}
|
|
|
|
Call(bcx, real_fn, args);
|
|
|
|
bcx
|
|
|
|
})
|
|
|
|
}
|
2012-01-02 06:26:51 -06:00
|
|
|
|
2012-02-03 02:53:37 -06:00
|
|
|
fn trans_impl_vtable(ccx: @crate_ctxt, pt: path,
|
2012-01-12 09:57:30 -06:00
|
|
|
iface_id: ast::def_id, ms: [@ast::method],
|
|
|
|
tps: [ast::ty_param], it: @ast::item) {
|
2012-02-03 02:53:37 -06:00
|
|
|
let new_pt = pt + [path_name(it.ident), path_name(int::str(it.id)),
|
|
|
|
path_name("wrap")];
|
2012-01-12 09:57:30 -06:00
|
|
|
let extra_tps = vec::map(tps, {|p| param_bounds(ccx, p)});
|
|
|
|
let ptrs = vec::map(*ty::iface_methods(ccx.tcx, iface_id), {|im|
|
|
|
|
alt vec::find(ms, {|m| m.ident == im.ident}) {
|
|
|
|
some(m) {
|
|
|
|
let target = ccx.item_ids.get(m.id);
|
2012-02-03 02:53:37 -06:00
|
|
|
trans_impl_wrapper(ccx, new_pt + [path_name(m.ident)], extra_tps,
|
|
|
|
target)
|
2012-01-12 09:57:30 -06:00
|
|
|
}
|
2012-01-30 23:00:57 -06:00
|
|
|
_ {
|
|
|
|
ccx.tcx.sess.span_bug(it.span, "No matching method \
|
|
|
|
in trans_impl_vtable");
|
|
|
|
}
|
2012-01-12 09:57:30 -06:00
|
|
|
}
|
|
|
|
});
|
2012-02-03 02:53:37 -06:00
|
|
|
let s = link::mangle_internal_name_by_path(
|
|
|
|
ccx, new_pt + [path_name("!vtable")]);
|
2012-01-12 09:57:30 -06:00
|
|
|
trans_vtable(ccx, it.id, s, ptrs);
|
|
|
|
}
|
2012-01-02 06:26:51 -06:00
|
|
|
|
2012-02-03 02:53:37 -06:00
|
|
|
fn trans_iface_wrapper(ccx: @crate_ctxt, pt: path, m: ty::method,
|
2012-01-12 09:57:30 -06:00
|
|
|
n: uint) -> ValueRef {
|
2012-01-30 04:52:34 -06:00
|
|
|
let {llty: llfty, _} = wrapper_fn_ty(ccx, T_ptr(T_i8()),
|
|
|
|
ty::mk_fn(ccx.tcx, m.fty), m.tps);
|
2012-01-12 09:57:30 -06:00
|
|
|
trans_wrapper(ccx, pt, llfty, {|llfn, bcx|
|
2012-01-18 05:29:37 -06:00
|
|
|
let self = Load(bcx, PointerCast(bcx,
|
|
|
|
LLVMGetParam(llfn, 2u as c_uint),
|
2012-01-12 09:57:30 -06:00
|
|
|
T_ptr(T_opaque_iface_ptr(ccx))));
|
2012-02-01 20:52:08 -06:00
|
|
|
let boxed = GEPi(bcx, self, [0, abi::box_field_body]);
|
2012-01-12 09:57:30 -06:00
|
|
|
let dict = Load(bcx, PointerCast(bcx, GEPi(bcx, boxed, [0, 1]),
|
|
|
|
T_ptr(T_ptr(T_dict()))));
|
|
|
|
let vtable = PointerCast(bcx, Load(bcx, GEPi(bcx, dict, [0, 0])),
|
|
|
|
T_ptr(T_array(T_ptr(llfty), n + 1u)));
|
|
|
|
let mptr = Load(bcx, GEPi(bcx, vtable, [0, n as int]));
|
|
|
|
// FIXME[impl] This doesn't account for more-than-ptr-sized alignment
|
|
|
|
let inner_self = GEPi(bcx, boxed, [0, 2]);
|
|
|
|
let args = [PointerCast(bcx, dict, T_ptr(T_i8())),
|
2012-01-18 05:29:37 -06:00
|
|
|
LLVMGetParam(llfn, 1u as c_uint),
|
2012-01-12 09:57:30 -06:00
|
|
|
PointerCast(bcx, inner_self, T_opaque_cbox_ptr(ccx))];
|
2012-01-18 05:29:37 -06:00
|
|
|
let i = 3u as c_uint, total = llvm::LLVMCountParamTypes(llfty);
|
2012-01-12 09:57:30 -06:00
|
|
|
while i < total {
|
|
|
|
args += [LLVMGetParam(llfn, i)];
|
2012-01-18 05:29:37 -06:00
|
|
|
i += 1u as c_uint;
|
2012-01-12 09:57:30 -06:00
|
|
|
}
|
|
|
|
Call(bcx, mptr, args);
|
|
|
|
bcx
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2012-02-03 02:53:37 -06:00
|
|
|
fn trans_iface_vtable(ccx: @crate_ctxt, pt: path, it: @ast::item) {
|
|
|
|
let new_pt = pt + [path_name(it.ident), path_name(int::str(it.id))];
|
2012-01-12 09:57:30 -06:00
|
|
|
let i_did = ast_util::local_def(it.id), i = 0u;
|
|
|
|
let ptrs = vec::map(*ty::iface_methods(ccx.tcx, i_did), {|m|
|
2012-02-03 02:53:37 -06:00
|
|
|
let w = trans_iface_wrapper(ccx, new_pt + [path_name(m.ident)], m, i);
|
2012-01-02 06:26:51 -06:00
|
|
|
i += 1u;
|
2012-01-12 09:57:30 -06:00
|
|
|
w
|
|
|
|
});
|
2012-02-03 02:53:37 -06:00
|
|
|
let s = link::mangle_internal_name_by_path(
|
|
|
|
ccx, new_pt + [path_name("!vtable")]);
|
2012-01-12 09:57:30 -06:00
|
|
|
trans_vtable(ccx, it.id, s, ptrs);
|
2012-01-02 06:26:51 -06:00
|
|
|
}
|
|
|
|
|
2012-01-06 07:22:31 -06:00
|
|
|
fn dict_is_static(tcx: ty::ctxt, origin: typeck::dict_origin) -> bool {
|
|
|
|
alt origin {
|
|
|
|
typeck::dict_static(_, ts, origs) {
|
2012-02-03 08:15:28 -06:00
|
|
|
vec::all(ts, {|t| !ty::type_has_params(t)}) &&
|
2012-01-06 07:22:31 -06:00
|
|
|
vec::all(*origs, {|o| dict_is_static(tcx, o)})
|
|
|
|
}
|
2012-01-12 09:57:30 -06:00
|
|
|
typeck::dict_iface(_) { true }
|
|
|
|
_ { false }
|
2012-01-06 07:22:31 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-02 09:50:51 -06:00
|
|
|
fn get_dict(bcx: @block_ctxt, origin: typeck::dict_origin) -> result {
|
2012-01-06 10:29:06 -06:00
|
|
|
let ccx = bcx_ccx(bcx);
|
2012-01-06 07:22:31 -06:00
|
|
|
alt origin {
|
|
|
|
typeck::dict_static(impl_did, tys, sub_origins) {
|
2012-01-06 10:29:06 -06:00
|
|
|
if dict_is_static(ccx.tcx, origin) {
|
2012-01-06 07:22:31 -06:00
|
|
|
ret rslt(bcx, get_static_dict(bcx, origin));
|
|
|
|
}
|
|
|
|
let {bcx, ptrs} = get_dict_ptrs(bcx, origin);
|
|
|
|
let pty = T_ptr(T_i8()), dict_ty = T_array(pty, vec::len(ptrs));
|
|
|
|
let dict = alloca(bcx, dict_ty), i = 0;
|
|
|
|
for ptr in ptrs {
|
|
|
|
Store(bcx, PointerCast(bcx, ptr, pty), GEPi(bcx, dict, [0, i]));
|
|
|
|
i += 1;
|
|
|
|
}
|
2012-01-06 10:29:06 -06:00
|
|
|
dict = Call(bcx, ccx.upcalls.intern_dict,
|
|
|
|
[C_uint(ccx, vec::len(ptrs)),
|
|
|
|
PointerCast(bcx, dict, T_ptr(T_dict()))]);
|
|
|
|
rslt(bcx, dict)
|
2012-01-06 07:22:31 -06:00
|
|
|
}
|
|
|
|
typeck::dict_param(n_param, n_bound) {
|
|
|
|
rslt(bcx, option::get(bcx.fcx.lltyparams[n_param].dicts)[n_bound])
|
|
|
|
}
|
2012-01-12 09:57:30 -06:00
|
|
|
typeck::dict_iface(did) {
|
|
|
|
ret rslt(bcx, get_static_dict(bcx, origin));
|
|
|
|
}
|
2012-01-06 07:22:31 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn dict_id(tcx: ty::ctxt, origin: typeck::dict_origin) -> dict_id {
|
|
|
|
alt origin {
|
|
|
|
typeck::dict_static(did, ts, origs) {
|
|
|
|
let d_params = [], orig = 0u;
|
2012-01-12 09:57:30 -06:00
|
|
|
if vec::len(ts) == 0u { ret @{def: did, params: d_params}; }
|
2012-01-06 07:22:31 -06:00
|
|
|
let impl_params = ty::lookup_item_type(tcx, did).bounds;
|
|
|
|
vec::iter2(ts, *impl_params) {|t, bounds|
|
|
|
|
d_params += [dict_param_ty(t)];
|
|
|
|
for bound in *bounds {
|
|
|
|
alt bound {
|
|
|
|
ty::bound_iface(_) {
|
|
|
|
d_params += [dict_param_dict(dict_id(tcx, origs[orig]))];
|
|
|
|
orig += 1u;
|
|
|
|
}
|
2012-01-30 04:52:34 -06:00
|
|
|
_ {}
|
2012-01-06 07:22:31 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-01-12 09:57:30 -06:00
|
|
|
@{def: did, params: d_params}
|
|
|
|
}
|
|
|
|
typeck::dict_iface(did) {
|
|
|
|
@{def: did, params: []}
|
2012-01-06 07:22:31 -06:00
|
|
|
}
|
2012-01-30 23:00:57 -06:00
|
|
|
_ {
|
|
|
|
tcx.sess.bug("Unexpected dict_param in dict_id");
|
|
|
|
}
|
2012-01-06 07:22:31 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_static_dict(bcx: @block_ctxt, origin: typeck::dict_origin)
|
|
|
|
-> ValueRef {
|
|
|
|
let ccx = bcx_ccx(bcx);
|
|
|
|
let id = dict_id(ccx.tcx, origin);
|
|
|
|
alt ccx.dicts.find(id) {
|
|
|
|
some(d) { ret d; }
|
2012-01-19 00:37:22 -06:00
|
|
|
none {}
|
2012-01-06 07:22:31 -06:00
|
|
|
}
|
|
|
|
let ptrs = C_struct(get_dict_ptrs(bcx, origin).ptrs);
|
2012-01-13 02:32:05 -06:00
|
|
|
let name = ccx.names("dict");
|
2012-01-06 07:22:31 -06:00
|
|
|
let gvar = str::as_buf(name, {|buf|
|
|
|
|
llvm::LLVMAddGlobal(ccx.llmod, val_ty(ptrs), buf)
|
|
|
|
});
|
|
|
|
llvm::LLVMSetGlobalConstant(gvar, lib::llvm::True);
|
|
|
|
llvm::LLVMSetInitializer(gvar, ptrs);
|
2012-02-01 04:04:56 -06:00
|
|
|
lib::llvm::SetLinkage(gvar, lib::llvm::InternalLinkage);
|
2012-01-06 07:22:31 -06:00
|
|
|
let cast = llvm::LLVMConstPointerCast(gvar, T_ptr(T_dict()));
|
|
|
|
ccx.dicts.insert(id, cast);
|
|
|
|
cast
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_dict_ptrs(bcx: @block_ctxt, origin: typeck::dict_origin)
|
|
|
|
-> {bcx: @block_ctxt, ptrs: [ValueRef]} {
|
|
|
|
let ccx = bcx_ccx(bcx);
|
2012-01-12 09:57:30 -06:00
|
|
|
fn get_vtable(ccx: @crate_ctxt, did: ast::def_id) -> ValueRef {
|
|
|
|
if did.crate == ast::local_crate {
|
|
|
|
ccx.item_ids.get(did.node)
|
2012-01-05 06:57:27 -06:00
|
|
|
} else {
|
2012-01-12 10:59:49 -06:00
|
|
|
let name = csearch::get_symbol(ccx.sess.cstore, did);
|
2012-01-05 06:57:27 -06:00
|
|
|
get_extern_const(ccx.externs, ccx.llmod, name, T_ptr(T_i8()))
|
2012-01-12 09:57:30 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
alt origin {
|
|
|
|
typeck::dict_static(impl_did, tys, sub_origins) {
|
2012-01-02 09:50:51 -06:00
|
|
|
let impl_params = ty::lookup_item_type(ccx.tcx, impl_did).bounds;
|
2012-01-12 09:57:30 -06:00
|
|
|
let ptrs = [get_vtable(ccx, impl_did)];
|
|
|
|
let origin = 0u, ti = none, bcx = bcx;
|
2012-01-06 07:22:31 -06:00
|
|
|
vec::iter2(*impl_params, tys) {|param, ty|
|
2012-01-13 03:58:31 -06:00
|
|
|
let rslt = get_tydesc(bcx, ty, true, ti).result;
|
2012-01-02 09:50:51 -06:00
|
|
|
ptrs += [rslt.val];
|
|
|
|
bcx = rslt.bcx;
|
|
|
|
for bound in *param {
|
|
|
|
alt bound {
|
|
|
|
ty::bound_iface(_) {
|
|
|
|
let res = get_dict(bcx, sub_origins[origin]);
|
|
|
|
ptrs += [res.val];
|
|
|
|
bcx = res.bcx;
|
|
|
|
origin += 1u;
|
|
|
|
}
|
|
|
|
_ {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-01-06 07:22:31 -06:00
|
|
|
{bcx: bcx, ptrs: ptrs}
|
2012-01-03 09:37:41 -06:00
|
|
|
}
|
2012-01-12 09:57:30 -06:00
|
|
|
typeck::dict_iface(did) {
|
|
|
|
{bcx: bcx, ptrs: [get_vtable(ccx, did)]}
|
|
|
|
}
|
2012-01-30 23:00:57 -06:00
|
|
|
_ {
|
|
|
|
bcx_tcx(bcx).sess.bug("Unexpected dict_param in get_dict_ptrs");
|
|
|
|
}
|
2012-01-02 09:50:51 -06:00
|
|
|
}
|
2012-01-06 07:22:31 -06:00
|
|
|
}
|
2012-01-07 15:44:14 -06:00
|
|
|
|
|
|
|
fn trans_cast(bcx: @block_ctxt, val: @ast::expr, id: ast::node_id, dest: dest)
|
|
|
|
-> @block_ctxt {
|
|
|
|
let ccx = bcx_ccx(bcx), tcx = ccx.tcx;
|
2012-02-02 05:37:17 -06:00
|
|
|
let val_ty = expr_ty(bcx, val);
|
2012-01-07 15:44:14 -06:00
|
|
|
let {bcx, val: dict} = get_dict(bcx, ccx.dict_map.get(id)[0]);
|
|
|
|
let body_ty = ty::mk_tup(tcx, [ty::mk_type(tcx), ty::mk_type(tcx),
|
|
|
|
val_ty]);
|
|
|
|
let ti = none;
|
2012-01-13 03:58:31 -06:00
|
|
|
let {bcx, val: tydesc} = get_tydesc(bcx, body_ty, true, ti).result;
|
2012-02-07 04:25:04 -06:00
|
|
|
lazily_emit_all_tydesc_glue(ccx, ti);
|
2012-01-07 15:44:14 -06:00
|
|
|
let {bcx, box, body: box_body} = trans_malloc_boxed(bcx, body_ty);
|
|
|
|
Store(bcx, tydesc, GEPi(bcx, box_body, [0, 0]));
|
|
|
|
Store(bcx, PointerCast(bcx, dict, T_ptr(ccx.tydesc_type)),
|
|
|
|
GEPi(bcx, box_body, [0, 1]));
|
|
|
|
bcx = trans_expr_save_in(bcx, val, GEPi(bcx, box_body, [0, 2]));
|
|
|
|
store_in_dest(bcx, PointerCast(bcx, box, T_opaque_iface_ptr(ccx)), dest)
|
|
|
|
}
|