// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. //! // // Code relating to taking, dropping, etc as well as type descriptors. use back::abi; use back::link::*; use lib; use lib::llvm::{llvm, ValueRef, True}; use middle::lang_items::{FreeFnLangItem, ExchangeFreeFnLangItem}; use middle::trans::adt; use middle::trans::base::*; use middle::trans::callee; use middle::trans::cleanup; use middle::trans::cleanup::CleanupMethods; use middle::trans::common::*; use middle::trans::build::*; use middle::trans::expr; use middle::trans::machine::*; use middle::trans::reflect; use middle::trans::tvec; use middle::trans::type_of::type_of; use middle::ty; use util::ppaux; use util::ppaux::ty_to_short_str; use middle::trans::type_::Type; use std::c_str::ToCStr; use std::cell::Cell; use std::libc::c_uint; use syntax::ast; pub fn trans_free<'a>(cx: &'a Block<'a>, v: ValueRef) -> &'a Block<'a> { let _icx = push_ctxt("trans_free"); callee::trans_lang_call(cx, langcall(cx, None, "", FreeFnLangItem), [PointerCast(cx, v, Type::i8p())], Some(expr::Ignore)).bcx } pub fn trans_exchange_free<'a>(cx: &'a Block<'a>, v: ValueRef) -> &'a Block<'a> { let _icx = push_ctxt("trans_exchange_free"); callee::trans_lang_call(cx, langcall(cx, None, "", ExchangeFreeFnLangItem), [PointerCast(cx, v, Type::i8p())], Some(expr::Ignore)).bcx } pub fn take_ty<'a>(cx: &'a Block<'a>, v: ValueRef, t: ty::t) -> &'a Block<'a> { // NB: v is an *alias* of type t here, not a direct value. let _icx = push_ctxt("take_ty"); if ty::type_needs_drop(cx.tcx(), t) { return call_tydesc_glue(cx, v, t, abi::tydesc_field_take_glue); } return cx; } pub fn drop_ty<'a>(cx: &'a Block<'a>, v: ValueRef, t: ty::t) -> &'a Block<'a> { // NB: v is an *alias* of type t here, not a direct value. let _icx = push_ctxt("drop_ty"); if ty::type_needs_drop(cx.tcx(), t) { return call_tydesc_glue(cx, v, t, abi::tydesc_field_drop_glue); } return cx; } pub fn drop_ty_immediate<'a>(bcx: &'a Block<'a>, v: ValueRef, t: ty::t) -> &'a Block<'a> { let _icx = push_ctxt("drop_ty_immediate"); let vp = alloca(bcx, type_of(bcx.ccx(), t), ""); Store(bcx, v, vp); drop_ty(bcx, vp, t) } pub fn lazily_emit_all_tydesc_glue(ccx: @CrateContext, static_ti: @tydesc_info) { lazily_emit_tydesc_glue(ccx, abi::tydesc_field_take_glue, static_ti); lazily_emit_tydesc_glue(ccx, abi::tydesc_field_drop_glue, static_ti); lazily_emit_tydesc_glue(ccx, abi::tydesc_field_visit_glue, static_ti); } fn simplified_glue_type(tcx: ty::ctxt, field: uint, t: ty::t) -> ty::t { if (field == abi::tydesc_field_take_glue || field == abi::tydesc_field_drop_glue) && !ty::type_needs_drop(tcx, t) { return ty::mk_nil(); } if field == abi::tydesc_field_take_glue { match ty::get(t).sty { ty::ty_str(ty::vstore_uniq) | ty::ty_vec(_, ty::vstore_uniq) | ty::ty_unboxed_vec(..) | ty::ty_uniq(..) => return ty::mk_nil(), _ => {} } } if field == abi::tydesc_field_take_glue && ty::type_is_boxed(t) { return ty::mk_box(tcx, ty::mk_nil()); } if field == abi::tydesc_field_drop_glue { match ty::get(t).sty { ty::ty_box(typ) if !ty::type_needs_drop(tcx, typ) => return ty::mk_box(tcx, ty::mk_nil()), ty::ty_vec(mt, ty::vstore_box) if !ty::type_needs_drop(tcx, mt.ty) => return ty::mk_box(tcx, ty::mk_nil()), ty::ty_uniq(typ) if !ty::type_needs_drop(tcx, typ) => return ty::mk_uniq(tcx, ty::mk_nil()), ty::ty_vec(mt, ty::vstore_uniq) if !ty::type_needs_drop(tcx, mt.ty) => return ty::mk_uniq(tcx, ty::mk_nil()), _ => {} } } t } fn lazily_emit_tydesc_glue(ccx: @CrateContext, field: uint, ti: @tydesc_info) { let _icx = push_ctxt("lazily_emit_tydesc_glue"); let simpl = simplified_glue_type(ccx.tcx, field, ti.ty); if simpl != ti.ty { let _icx = push_ctxt("lazily_emit_simplified_tydesc_glue"); let simpl_ti = get_tydesc(ccx, simpl); lazily_emit_tydesc_glue(ccx, field, simpl_ti); if field == abi::tydesc_field_take_glue { ti.take_glue.set(simpl_ti.take_glue.get()); } else if field == abi::tydesc_field_drop_glue { ti.drop_glue.set(simpl_ti.drop_glue.get()); } else if field == abi::tydesc_field_visit_glue { ti.visit_glue.set(simpl_ti.visit_glue.get()); } return; } let llfnty = Type::glue_fn(type_of(ccx, ti.ty).ptr_to()); if field == abi::tydesc_field_take_glue { match ti.take_glue.get() { Some(_) => (), None => { debug!("+++ lazily_emit_tydesc_glue TAKE {}", ppaux::ty_to_str(ccx.tcx, ti.ty)); let glue_fn = declare_generic_glue(ccx, ti.ty, llfnty, "take"); ti.take_glue.set(Some(glue_fn)); make_generic_glue(ccx, ti.ty, glue_fn, make_take_glue, "take"); debug!("--- lazily_emit_tydesc_glue TAKE {}", ppaux::ty_to_str(ccx.tcx, ti.ty)); } } } else if field == abi::tydesc_field_drop_glue { match ti.drop_glue.get() { Some(_) => (), None => { debug!("+++ lazily_emit_tydesc_glue DROP {}", ppaux::ty_to_str(ccx.tcx, ti.ty)); let glue_fn = declare_generic_glue(ccx, ti.ty, llfnty, "drop"); ti.drop_glue.set(Some(glue_fn)); make_generic_glue(ccx, ti.ty, glue_fn, make_drop_glue, "drop"); debug!("--- lazily_emit_tydesc_glue DROP {}", ppaux::ty_to_str(ccx.tcx, ti.ty)); } } } else if field == abi::tydesc_field_visit_glue { match ti.visit_glue.get() { Some(_) => (), None => { debug!("+++ lazily_emit_tydesc_glue VISIT {}", ppaux::ty_to_str(ccx.tcx, ti.ty)); let glue_fn = declare_generic_glue(ccx, ti.ty, llfnty, "visit"); ti.visit_glue.set(Some(glue_fn)); make_generic_glue(ccx, ti.ty, glue_fn, make_visit_glue, "visit"); debug!("--- lazily_emit_tydesc_glue VISIT {}", ppaux::ty_to_str(ccx.tcx, ti.ty)); } } } } // See [Note-arg-mode] pub fn call_tydesc_glue_full(bcx: &Block, v: ValueRef, tydesc: ValueRef, field: uint, static_ti: Option<@tydesc_info>) { let _icx = push_ctxt("call_tydesc_glue_full"); let ccx = bcx.ccx(); // NB: Don't short-circuit even if this block is unreachable because // GC-based cleanup needs to the see that the roots are live. if bcx.unreachable.get() && !ccx.sess.no_landing_pads() { return; } let static_glue_fn = match static_ti { None => None, Some(sti) => { lazily_emit_tydesc_glue(ccx, field, sti); if field == abi::tydesc_field_take_glue { sti.take_glue.get() } else if field == abi::tydesc_field_drop_glue { sti.drop_glue.get() } else if field == abi::tydesc_field_visit_glue { sti.visit_glue.get() } else { None } } }; // When static type info is available, avoid casting parameter unless the // glue is using a simplified type, because the function already has the // right type. Otherwise cast to generic pointer. let llrawptr = if static_glue_fn.is_none() { PointerCast(bcx, v, Type::i8p()) } else { let ty = static_ti.unwrap().ty; let simpl = simplified_glue_type(ccx.tcx, field, ty); if simpl != ty { PointerCast(bcx, v, type_of(ccx, simpl).ptr_to()) } else { v } }; let llfn = { match static_glue_fn { None => { // Select out the glue function to call from the tydesc let llfnptr = GEPi(bcx, tydesc, [0u, field]); Load(bcx, llfnptr) } Some(sgf) => sgf } }; Call(bcx, llfn, [llrawptr], []); } // See [Note-arg-mode] fn call_tydesc_glue<'a>(cx: &'a Block<'a>, v: ValueRef, t: ty::t, field: uint) -> &'a Block<'a> { let _icx = push_ctxt("call_tydesc_glue"); let ti = get_tydesc(cx.ccx(), t); call_tydesc_glue_full(cx, v, ti.tydesc, field, Some(ti)); cx } fn make_visit_glue<'a>(bcx: &'a Block<'a>, v: ValueRef, t: ty::t) -> &'a Block<'a> { let _icx = push_ctxt("make_visit_glue"); let mut bcx = bcx; let (visitor_trait, object_ty) = match ty::visitor_object_ty(bcx.tcx(), ty::ReStatic) { Ok(pair) => pair, Err(s) => { bcx.tcx().sess.fatal(s); } }; let v = PointerCast(bcx, v, type_of(bcx.ccx(), object_ty).ptr_to()); bcx = reflect::emit_calls_to_trait_visit_ty(bcx, t, v, visitor_trait.def_id); bcx } fn trans_struct_drop_flag<'a>(bcx: &'a Block<'a>, t: ty::t, v0: ValueRef, dtor_did: ast::DefId, class_did: ast::DefId, substs: &ty::substs) -> &'a Block<'a> { let repr = adt::represent_type(bcx.ccx(), t); let drop_flag = adt::trans_drop_flag_ptr(bcx, repr, v0); with_cond(bcx, IsNotNull(bcx, Load(bcx, drop_flag)), |cx| { trans_struct_drop(cx, t, v0, dtor_did, class_did, substs) }) } fn trans_struct_drop<'a>(bcx: &'a Block<'a>, t: ty::t, v0: ValueRef, dtor_did: ast::DefId, class_did: ast::DefId, substs: &ty::substs) -> &'a Block<'a> { let repr = adt::represent_type(bcx.ccx(), t); // Find and call the actual destructor let dtor_addr = get_res_dtor(bcx.ccx(), dtor_did, class_did, substs.tps.clone()); // The second argument is the "self" argument for drop let params = unsafe { let ty = Type::from_ref(llvm::LLVMTypeOf(dtor_addr)); ty.element_type().func_params() }; // Class dtors have no explicit args, so the params should // just consist of the environment (self) assert_eq!(params.len(), 1); // Be sure to put all of the fields into a scope so we can use an invoke // instruction to call the user destructor but still call the field // destructors if the user destructor fails. let field_scope = bcx.fcx.push_custom_cleanup_scope(); let self_arg = PointerCast(bcx, v0, params[0]); let args = ~[self_arg]; // Add all the fields as a value which needs to be cleaned at the end of // this scope. let field_tys = ty::struct_fields(bcx.tcx(), class_did, substs); for (i, fld) in field_tys.iter().enumerate() { let llfld_a = adt::trans_field_ptr(bcx, repr, v0, 0, i); bcx.fcx.schedule_drop_mem(cleanup::CustomScope(field_scope), llfld_a, fld.mt.ty); } let (_, bcx) = invoke(bcx, dtor_addr, args, [], None); bcx.fcx.pop_and_trans_custom_cleanup_scope(bcx, field_scope) } fn make_drop_glue<'a>(bcx: &'a Block<'a>, v0: ValueRef, t: ty::t) -> &'a Block<'a> { // NB: v0 is an *alias* of type t here, not a direct value. let _icx = push_ctxt("make_drop_glue"); let ccx = bcx.ccx(); match ty::get(t).sty { ty::ty_box(body_ty) => { decr_refcnt_maybe_free(bcx, v0, Some(body_ty)) } ty::ty_str(ty::vstore_box) | ty::ty_vec(_, ty::vstore_box) => { let unit_ty = ty::sequence_element_type(ccx.tcx, t); let unboxed_vec_ty = ty::mk_mut_unboxed_vec(ccx.tcx, unit_ty); decr_refcnt_maybe_free(bcx, v0, Some(unboxed_vec_ty)) } ty::ty_uniq(content_ty) => { let llbox = Load(bcx, v0); let not_null = IsNotNull(bcx, llbox); with_cond(bcx, not_null, |bcx| { let bcx = drop_ty(bcx, llbox, content_ty); trans_exchange_free(bcx, llbox) }) } ty::ty_vec(_, ty::vstore_uniq) | ty::ty_str(ty::vstore_uniq) => { make_drop_glue(bcx, v0, tvec::expand_boxed_vec_ty(bcx.tcx(), t)) } ty::ty_unboxed_vec(_) => { tvec::make_drop_glue_unboxed(bcx, v0, t) } ty::ty_struct(did, ref substs) => { let tcx = bcx.tcx(); match ty::ty_dtor(tcx, did) { ty::TraitDtor(dtor, true) => { trans_struct_drop_flag(bcx, t, v0, dtor, did, substs) } ty::TraitDtor(dtor, false) => { trans_struct_drop(bcx, t, v0, dtor, did, substs) } ty::NoDtor => { // No dtor? Just the default case iter_structural_ty(bcx, v0, t, drop_ty) } } } ty::ty_trait(_, _, ty::BoxTraitStore, _, _) => { let llbox_ptr = GEPi(bcx, v0, [0u, abi::trt_field_box]); decr_refcnt_maybe_free(bcx, llbox_ptr, None) } ty::ty_trait(_, _, ty::UniqTraitStore, _, _) => { let lluniquevalue = GEPi(bcx, v0, [0, abi::trt_field_box]); // Only drop the value when it is non-null with_cond(bcx, IsNotNull(bcx, Load(bcx, lluniquevalue)), |bcx| { let llvtable = Load(bcx, GEPi(bcx, v0, [0, abi::trt_field_vtable])); // Cast the vtable to a pointer to a pointer to a tydesc. let llvtable = PointerCast(bcx, llvtable, ccx.tydesc_type.ptr_to().ptr_to()); let lltydesc = Load(bcx, llvtable); call_tydesc_glue_full(bcx, lluniquevalue, lltydesc, abi::tydesc_field_drop_glue, None); bcx }) } ty::ty_closure(ref f) if f.sigil == ast::OwnedSigil => { let box_cell_v = GEPi(bcx, v0, [0u, abi::fn_field_box]); let env = Load(bcx, box_cell_v); let env_ptr_ty = Type::at_box(ccx, Type::i8()).ptr_to(); let env = PointerCast(bcx, env, env_ptr_ty); with_cond(bcx, IsNotNull(bcx, env), |bcx| { // Load the type descr found in the env let lltydescty = ccx.tydesc_type.ptr_to(); let tydescptr = GEPi(bcx, env, [0u, abi::box_field_tydesc]); let tydesc = Load(bcx, tydescptr); let tydesc = PointerCast(bcx, tydesc, lltydescty); // Drop the tuple data then free the descriptor let cdata = GEPi(bcx, env, [0u, abi::box_field_body]); call_tydesc_glue_full(bcx, cdata, tydesc, abi::tydesc_field_drop_glue, None); // Free the ty descr (if necc) and the env itself trans_exchange_free(bcx, env) }) } _ => { if ty::type_needs_drop(ccx.tcx, t) && ty::type_is_structural(t) { iter_structural_ty(bcx, v0, t, drop_ty) } else { bcx } } } } fn decr_refcnt_maybe_free<'a>(bcx: &'a Block<'a>, box_ptr_ptr: ValueRef, t: Option) -> &'a Block<'a> { let _icx = push_ctxt("decr_refcnt_maybe_free"); let fcx = bcx.fcx; let ccx = bcx.ccx(); let decr_bcx = fcx.new_temp_block("decr"); let free_bcx = fcx.new_temp_block("free"); let next_bcx = fcx.new_temp_block("next"); let box_ptr = Load(bcx, box_ptr_ptr); let llnotnull = IsNotNull(bcx, box_ptr); CondBr(bcx, llnotnull, decr_bcx.llbb, next_bcx.llbb); let rc_ptr = GEPi(decr_bcx, box_ptr, [0u, abi::box_field_refcnt]); let rc = Sub(decr_bcx, Load(decr_bcx, rc_ptr), C_int(ccx, 1)); Store(decr_bcx, rc, rc_ptr); CondBr(decr_bcx, IsNull(decr_bcx, rc), free_bcx.llbb, next_bcx.llbb); let v = Load(free_bcx, box_ptr_ptr); let body = GEPi(free_bcx, v, [0u, abi::box_field_body]); let free_bcx = match t { Some(t) => drop_ty(free_bcx, body, t), None => { // Generate code that, dynamically, indexes into the // tydesc and calls the drop glue that got set dynamically let td = Load(free_bcx, GEPi(free_bcx, v, [0u, abi::box_field_tydesc])); call_tydesc_glue_full(free_bcx, body, td, abi::tydesc_field_drop_glue, None); free_bcx } }; let free_bcx = trans_free(free_bcx, v); Br(free_bcx, next_bcx.llbb); next_bcx } fn make_take_glue<'a>(bcx: &'a Block<'a>, v: ValueRef, t: ty::t) -> &'a Block<'a> { let _icx = push_ctxt("make_take_glue"); // NB: v is a *pointer* to type t here, not a direct value. match ty::get(t).sty { ty::ty_box(_) | ty::ty_vec(_, ty::vstore_box) | ty::ty_str(ty::vstore_box) => { incr_refcnt_of_boxed(bcx, Load(bcx, v)); bcx } ty::ty_vec(_, ty::vstore_slice(_)) | ty::ty_str(ty::vstore_slice(_)) => { bcx } ty::ty_closure(_) => bcx, ty::ty_trait(_, _, ty::BoxTraitStore, _, _) => { let llbox = Load(bcx, GEPi(bcx, v, [0u, abi::trt_field_box])); incr_refcnt_of_boxed(bcx, llbox); bcx } ty::ty_trait(_, _, ty::UniqTraitStore, _, _) => { let lluniquevalue = GEPi(bcx, v, [0, abi::trt_field_box]); let llvtable = Load(bcx, GEPi(bcx, v, [0, abi::trt_field_vtable])); // Cast the vtable to a pointer to a pointer to a tydesc. let llvtable = PointerCast(bcx, llvtable, bcx.ccx().tydesc_type.ptr_to().ptr_to()); let lltydesc = Load(bcx, llvtable); call_tydesc_glue_full(bcx, lluniquevalue, lltydesc, abi::tydesc_field_take_glue, None); bcx } _ if ty::type_is_structural(t) => { iter_structural_ty(bcx, v, t, take_ty) } _ => bcx } } fn incr_refcnt_of_boxed(cx: &Block, box_ptr: ValueRef) { let _icx = push_ctxt("incr_refcnt_of_boxed"); let ccx = cx.ccx(); let rc_ptr = GEPi(cx, box_ptr, [0u, abi::box_field_refcnt]); let rc = Load(cx, rc_ptr); let rc = Add(cx, rc, C_int(ccx, 1)); Store(cx, rc, rc_ptr); } // Generates the declaration for (but doesn't emit) a type descriptor. pub fn declare_tydesc(ccx: &CrateContext, t: ty::t) -> @tydesc_info { // If emit_tydescs already ran, then we shouldn't be creating any new // tydescs. assert!(!ccx.finished_tydescs.get()); let llty = type_of(ccx, t); if ccx.sess.count_type_sizes() { println!("{}\t{}", llsize_of_real(ccx, llty), ppaux::ty_to_str(ccx.tcx, t)); } let llsize = llsize_of(ccx, llty); let llalign = llalign_of(ccx, llty); let name = mangle_internal_name_by_type_and_seq(ccx, t, "tydesc").to_managed(); note_unique_llvm_symbol(ccx, name); debug!("+++ declare_tydesc {} {}", ppaux::ty_to_str(ccx.tcx, t), name); let gvar = name.with_c_str(|buf| { unsafe { llvm::LLVMAddGlobal(ccx.llmod, ccx.tydesc_type.to_ref(), buf) } }); let ty_name = C_str_slice(ccx, ppaux::ty_to_str(ccx.tcx, t).to_managed()); let inf = @tydesc_info { ty: t, tydesc: gvar, size: llsize, align: llalign, name: ty_name, take_glue: Cell::new(None), drop_glue: Cell::new(None), visit_glue: Cell::new(None), }; debug!("--- declare_tydesc {}", ppaux::ty_to_str(ccx.tcx, t)); return inf; } fn declare_generic_glue(ccx: &CrateContext, t: ty::t, llfnty: Type, name: &str) -> ValueRef { let _icx = push_ctxt("declare_generic_glue"); let fn_nm = mangle_internal_name_by_type_and_seq(ccx, t, (~"glue_" + name)).to_managed(); debug!("{} is for type {}", fn_nm, ppaux::ty_to_str(ccx.tcx, t)); note_unique_llvm_symbol(ccx, fn_nm); let llfn = decl_cdecl_fn(ccx.llmod, fn_nm, llfnty, ty::mk_nil()); return llfn; } pub type glue_helper<'a> = 'a |&'a Block<'a>, ValueRef, ty::t| -> &'a Block<'a>; fn make_generic_glue(ccx: @CrateContext, t: ty::t, llfn: ValueRef, helper: glue_helper, name: &str) -> ValueRef { let _icx = push_ctxt("make_generic_glue"); let glue_name = format!("glue {} {}", name, ty_to_short_str(ccx.tcx, t)); let _s = StatRecorder::new(ccx, glue_name); let fcx = new_fn_ctxt(ccx, ~[], llfn, false, ty::mk_nil(), None); init_function(&fcx, false, ty::mk_nil(), None); lib::llvm::SetLinkage(llfn, lib::llvm::InternalLinkage); ccx.stats.n_glues_created.set(ccx.stats.n_glues_created.get() + 1u); // All glue functions take values passed *by alias*; this is a // requirement since in many contexts glue is invoked indirectly and // the caller has no idea if it's dealing with something that can be // passed by value. // // llfn is expected be declared to take a parameter of the appropriate // type, so we don't need to explicitly cast the function parameter. let bcx = fcx.entry_bcx.get().unwrap(); let llrawptr0 = unsafe { llvm::LLVMGetParam(llfn, fcx.arg_pos(0) as c_uint) }; let bcx = helper(bcx, llrawptr0, t); finish_fn(&fcx, bcx); llfn } pub fn emit_tydescs(ccx: &CrateContext) { let _icx = push_ctxt("emit_tydescs"); // As of this point, allow no more tydescs to be created. ccx.finished_tydescs.set(true); let glue_fn_ty = Type::generic_glue_fn(ccx).ptr_to(); let mut tyds = ccx.tydescs.borrow_mut(); for (_, &val) in tyds.get().iter() { let ti = val; // Each of the glue functions needs to be cast to a generic type // before being put into the tydesc because we only have a singleton // tydesc type. Then we'll recast each function to its real type when // calling it. let take_glue = match ti.take_glue.get() { None => { ccx.stats.n_null_glues.set(ccx.stats.n_null_glues.get() + 1); C_null(glue_fn_ty) } Some(v) => { unsafe { ccx.stats.n_real_glues.set(ccx.stats.n_real_glues.get() + 1); llvm::LLVMConstPointerCast(v, glue_fn_ty.to_ref()) } } }; let drop_glue = match ti.drop_glue.get() { None => { ccx.stats.n_null_glues.set(ccx.stats.n_null_glues.get() + 1u); C_null(glue_fn_ty) } Some(v) => { unsafe { ccx.stats.n_real_glues.set(ccx.stats.n_real_glues.get() + 1); llvm::LLVMConstPointerCast(v, glue_fn_ty.to_ref()) } } }; let visit_glue = match ti.visit_glue.get() { None => { ccx.stats.n_null_glues.set(ccx.stats.n_null_glues.get() + 1u); C_null(glue_fn_ty) } Some(v) => { unsafe { ccx.stats.n_real_glues.set(ccx.stats.n_real_glues.get() + 1); llvm::LLVMConstPointerCast(v, glue_fn_ty.to_ref()) } } }; let tydesc = C_named_struct(ccx.tydesc_type, [ti.size, // size ti.align, // align take_glue, // take_glue drop_glue, // drop_glue visit_glue, // visit_glue ti.name]); // name unsafe { let gvar = ti.tydesc; llvm::LLVMSetInitializer(gvar, tydesc); llvm::LLVMSetGlobalConstant(gvar, True); lib::llvm::SetLinkage(gvar, lib::llvm::InternalLinkage); } }; }