]> git.lizzy.rs Git - rust.git/blob - src/librustc/middle/trans/glue.rs
auto merge of #13345 : bjz/rust/irc, r=alexcrichton
[rust.git] / src / librustc / middle / trans / glue.rs
1 // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //!
12 //
13 // Code relating to taking, dropping, etc as well as type descriptors.
14
15
16 use back::abi;
17 use back::link::*;
18 use lib::llvm::{llvm, ValueRef, True};
19 use lib;
20 use middle::lang_items::{FreeFnLangItem, ExchangeFreeFnLangItem};
21 use middle::trans::adt;
22 use middle::trans::base::*;
23 use middle::trans::build::*;
24 use middle::trans::callee;
25 use middle::trans::cleanup;
26 use middle::trans::cleanup::CleanupMethods;
27 use middle::trans::common::*;
28 use middle::trans::expr;
29 use middle::trans::machine::*;
30 use middle::trans::reflect;
31 use middle::trans::tvec;
32 use middle::trans::type_::Type;
33 use middle::trans::type_of::{type_of, sizing_type_of};
34 use middle::ty;
35 use util::ppaux::ty_to_short_str;
36 use util::ppaux;
37
38 use arena::TypedArena;
39 use std::c_str::ToCStr;
40 use std::cell::Cell;
41 use libc::c_uint;
42 use syntax::ast;
43 use syntax::parse::token;
44
45 pub fn trans_free<'a>(cx: &'a Block<'a>, v: ValueRef) -> &'a Block<'a> {
46     let _icx = push_ctxt("trans_free");
47     callee::trans_lang_call(cx,
48         langcall(cx, None, "", FreeFnLangItem),
49         [PointerCast(cx, v, Type::i8p(cx.ccx()))],
50         Some(expr::Ignore)).bcx
51 }
52
53 pub fn trans_exchange_free<'a>(cx: &'a Block<'a>, v: ValueRef)
54                            -> &'a Block<'a> {
55     let _icx = push_ctxt("trans_exchange_free");
56     callee::trans_lang_call(cx,
57         langcall(cx, None, "", ExchangeFreeFnLangItem),
58         [PointerCast(cx, v, Type::i8p(cx.ccx()))],
59         Some(expr::Ignore)).bcx
60 }
61
62 pub fn take_ty<'a>(bcx: &'a Block<'a>, v: ValueRef, t: ty::t)
63                -> &'a Block<'a> {
64     // NB: v is an *alias* of type t here, not a direct value.
65     let _icx = push_ctxt("take_ty");
66     match ty::get(t).sty {
67         ty::ty_box(_) => incr_refcnt_of_boxed(bcx, v),
68         _ if ty::type_is_structural(t)
69           && ty::type_needs_drop(bcx.tcx(), t) => {
70             iter_structural_ty(bcx, v, t, take_ty)
71         }
72         _ => bcx
73     }
74 }
75
76 fn get_drop_glue_type(ccx: &CrateContext, t: ty::t) -> ty::t {
77     let tcx = ccx.tcx();
78     if !ty::type_needs_drop(tcx, t) {
79         return ty::mk_i8();
80     }
81     match ty::get(t).sty {
82         ty::ty_box(typ) if !ty::type_needs_drop(tcx, typ) =>
83             ty::mk_box(tcx, ty::mk_i8()),
84
85         ty::ty_uniq(typ) if !ty::type_needs_drop(tcx, typ) => {
86             let llty = sizing_type_of(ccx, typ);
87             // Unique boxes do not allocate for zero-size types. The standard library may assume
88             // that `free` is never called on the pointer returned for `~ZeroSizeType`.
89             if llsize_of_alloc(ccx, llty) == 0 {
90                 ty::mk_i8()
91             } else {
92                 ty::mk_uniq(tcx, ty::mk_i8())
93             }
94         }
95
96         ty::ty_vec(mt, ty::vstore_uniq) if !ty::type_needs_drop(tcx, mt.ty) =>
97             ty::mk_uniq(tcx, ty::mk_i8()),
98
99         _ => t
100     }
101 }
102
103 pub fn drop_ty<'a>(bcx: &'a Block<'a>, v: ValueRef, t: ty::t)
104                -> &'a Block<'a> {
105     // NB: v is an *alias* of type t here, not a direct value.
106     let _icx = push_ctxt("drop_ty");
107     let ccx = bcx.ccx();
108     if ty::type_needs_drop(bcx.tcx(), t) {
109         let glue = get_drop_glue(ccx, t);
110         let glue_type = get_drop_glue_type(ccx, t);
111         let ptr = if glue_type != t {
112             PointerCast(bcx, v, type_of(ccx, glue_type).ptr_to())
113         } else {
114             v
115         };
116         Call(bcx, glue, [ptr], []);
117     }
118     bcx
119 }
120
121 pub fn drop_ty_immediate<'a>(bcx: &'a Block<'a>, v: ValueRef, t: ty::t)
122                          -> &'a Block<'a> {
123     let _icx = push_ctxt("drop_ty_immediate");
124     let vp = alloca(bcx, type_of(bcx.ccx(), t), "");
125     Store(bcx, v, vp);
126     drop_ty(bcx, vp, t)
127 }
128
129 pub fn get_drop_glue(ccx: &CrateContext, t: ty::t) -> ValueRef {
130     let t = get_drop_glue_type(ccx, t);
131     match ccx.drop_glues.borrow().find(&t) {
132         Some(&glue) => return glue,
133         _ => { }
134     }
135
136     let llfnty = Type::glue_fn(ccx, type_of(ccx, t).ptr_to());
137     let glue = declare_generic_glue(ccx, t, llfnty, "drop");
138
139     ccx.drop_glues.borrow_mut().insert(t, glue);
140
141     make_generic_glue(ccx, t, glue, make_drop_glue, "drop");
142
143     glue
144 }
145
146 pub fn lazily_emit_visit_glue(ccx: &CrateContext, ti: @tydesc_info) {
147     let _icx = push_ctxt("lazily_emit_visit_glue");
148
149     let llfnty = Type::glue_fn(ccx, type_of(ccx, ti.ty).ptr_to());
150
151     match ti.visit_glue.get() {
152         Some(_) => (),
153         None => {
154             debug!("+++ lazily_emit_tydesc_glue VISIT {}", ppaux::ty_to_str(ccx.tcx(), ti.ty));
155             let glue_fn = declare_generic_glue(ccx, ti.ty, llfnty, "visit");
156             ti.visit_glue.set(Some(glue_fn));
157             make_generic_glue(ccx, ti.ty, glue_fn, make_visit_glue, "visit");
158             debug!("--- lazily_emit_tydesc_glue VISIT {}", ppaux::ty_to_str(ccx.tcx(), ti.ty));
159         }
160     }
161 }
162
163 // See [Note-arg-mode]
164 pub fn call_visit_glue(bcx: &Block, v: ValueRef, tydesc: ValueRef,
165                        static_ti: Option<@tydesc_info>) {
166     let _icx = push_ctxt("call_tydesc_glue_full");
167     let ccx = bcx.ccx();
168     // NB: Don't short-circuit even if this block is unreachable because
169     // GC-based cleanup needs to the see that the roots are live.
170     if bcx.unreachable.get() && !ccx.sess().no_landing_pads() { return; }
171
172     let static_glue_fn = match static_ti {
173         None => None,
174         Some(sti) => {
175             lazily_emit_visit_glue(ccx, sti);
176             sti.visit_glue.get()
177         }
178     };
179
180     // When static type info is available, avoid casting to a generic pointer.
181     let llrawptr = if static_glue_fn.is_none() {
182         PointerCast(bcx, v, Type::i8p(ccx))
183     } else {
184         v
185     };
186
187     let llfn = {
188         match static_glue_fn {
189             None => {
190                 // Select out the glue function to call from the tydesc
191                 let llfnptr = GEPi(bcx, tydesc, [0u, abi::tydesc_field_visit_glue]);
192                 Load(bcx, llfnptr)
193             }
194             Some(sgf) => sgf
195         }
196     };
197
198     Call(bcx, llfn, [llrawptr], []);
199 }
200
201 fn make_visit_glue<'a>(bcx: &'a Block<'a>, v: ValueRef, t: ty::t)
202                    -> &'a Block<'a> {
203     let _icx = push_ctxt("make_visit_glue");
204     let mut bcx = bcx;
205     let (visitor_trait, object_ty) = match ty::visitor_object_ty(bcx.tcx(),
206                                                                  ty::ReStatic) {
207         Ok(pair) => pair,
208         Err(s) => {
209             bcx.tcx().sess.fatal(s);
210         }
211     };
212     let v = PointerCast(bcx, v, type_of(bcx.ccx(), object_ty).ptr_to());
213     bcx = reflect::emit_calls_to_trait_visit_ty(bcx, t, v, visitor_trait.def_id);
214     bcx
215 }
216
217 fn trans_struct_drop_flag<'a>(bcx: &'a Block<'a>,
218                               t: ty::t,
219                               v0: ValueRef,
220                               dtor_did: ast::DefId,
221                               class_did: ast::DefId,
222                               substs: &ty::substs)
223                               -> &'a Block<'a> {
224     let repr = adt::represent_type(bcx.ccx(), t);
225     let drop_flag = adt::trans_drop_flag_ptr(bcx, repr, v0);
226     with_cond(bcx, IsNotNull(bcx, Load(bcx, drop_flag)), |cx| {
227         trans_struct_drop(cx, t, v0, dtor_did, class_did, substs)
228     })
229 }
230
231 fn trans_struct_drop<'a>(bcx: &'a Block<'a>,
232                          t: ty::t,
233                          v0: ValueRef,
234                          dtor_did: ast::DefId,
235                          class_did: ast::DefId,
236                          substs: &ty::substs)
237                          -> &'a Block<'a> {
238     let repr = adt::represent_type(bcx.ccx(), t);
239
240     // Find and call the actual destructor
241     let dtor_addr = get_res_dtor(bcx.ccx(), dtor_did,
242                                  class_did, substs.tps.as_slice());
243
244     // The second argument is the "self" argument for drop
245     let params = unsafe {
246         let ty = Type::from_ref(llvm::LLVMTypeOf(dtor_addr));
247         ty.element_type().func_params()
248     };
249
250     // Class dtors have no explicit args, so the params should
251     // just consist of the environment (self)
252     assert_eq!(params.len(), 1);
253
254     // Be sure to put all of the fields into a scope so we can use an invoke
255     // instruction to call the user destructor but still call the field
256     // destructors if the user destructor fails.
257     let field_scope = bcx.fcx.push_custom_cleanup_scope();
258
259     let self_arg = PointerCast(bcx, v0, *params.get(0));
260     let args = vec!(self_arg);
261
262     // Add all the fields as a value which needs to be cleaned at the end of
263     // this scope.
264     let field_tys = ty::struct_fields(bcx.tcx(), class_did, substs);
265     for (i, fld) in field_tys.iter().enumerate() {
266         let llfld_a = adt::trans_field_ptr(bcx, repr, v0, 0, i);
267         bcx.fcx.schedule_drop_mem(cleanup::CustomScope(field_scope),
268                                   llfld_a,
269                                   fld.mt.ty);
270     }
271
272     let (_, bcx) = invoke(bcx, dtor_addr, args, [], None);
273
274     bcx.fcx.pop_and_trans_custom_cleanup_scope(bcx, field_scope)
275 }
276
277 fn make_drop_glue<'a>(bcx: &'a Block<'a>, v0: ValueRef, t: ty::t) -> &'a Block<'a> {
278     // NB: v0 is an *alias* of type t here, not a direct value.
279     let _icx = push_ctxt("make_drop_glue");
280     match ty::get(t).sty {
281         ty::ty_box(body_ty) => {
282             decr_refcnt_maybe_free(bcx, v0, body_ty)
283         }
284         ty::ty_uniq(content_ty) => {
285             let llbox = Load(bcx, v0);
286             let not_null = IsNotNull(bcx, llbox);
287             with_cond(bcx, not_null, |bcx| {
288                 let bcx = drop_ty(bcx, llbox, content_ty);
289                 trans_exchange_free(bcx, llbox)
290             })
291         }
292         ty::ty_vec(_, ty::vstore_uniq) | ty::ty_str(ty::vstore_uniq) => {
293             let llbox = Load(bcx, v0);
294             let not_null = IsNotNull(bcx, llbox);
295             with_cond(bcx, not_null, |bcx| {
296                 let unit_ty = ty::sequence_element_type(bcx.tcx(), t);
297                 let bcx = tvec::make_drop_glue_unboxed(bcx, llbox, unit_ty);
298                 trans_exchange_free(bcx, llbox)
299             })
300         }
301         ty::ty_struct(did, ref substs) => {
302             let tcx = bcx.tcx();
303             match ty::ty_dtor(tcx, did) {
304                 ty::TraitDtor(dtor, true) => {
305                     trans_struct_drop_flag(bcx, t, v0, dtor, did, substs)
306                 }
307                 ty::TraitDtor(dtor, false) => {
308                     trans_struct_drop(bcx, t, v0, dtor, did, substs)
309                 }
310                 ty::NoDtor => {
311                     // No dtor? Just the default case
312                     iter_structural_ty(bcx, v0, t, drop_ty)
313                 }
314             }
315         }
316         ty::ty_trait(~ty::TyTrait { store: ty::UniqTraitStore, .. }) => {
317             let lluniquevalue = GEPi(bcx, v0, [0, abi::trt_field_box]);
318             // Only drop the value when it is non-null
319             with_cond(bcx, IsNotNull(bcx, Load(bcx, lluniquevalue)), |bcx| {
320                 let dtor_ptr = Load(bcx, GEPi(bcx, v0, [0, abi::trt_field_vtable]));
321                 let dtor = Load(bcx, dtor_ptr);
322                 Call(bcx, dtor, [PointerCast(bcx, lluniquevalue, Type::i8p(bcx.ccx()))], []);
323                 bcx
324             })
325         }
326         ty::ty_closure(ref f) if f.sigil == ast::OwnedSigil => {
327             let box_cell_v = GEPi(bcx, v0, [0u, abi::fn_field_box]);
328             let env = Load(bcx, box_cell_v);
329             let env_ptr_ty = Type::at_box(bcx.ccx(), Type::i8(bcx.ccx())).ptr_to();
330             let env = PointerCast(bcx, env, env_ptr_ty);
331             with_cond(bcx, IsNotNull(bcx, env), |bcx| {
332                 let dtor_ptr = GEPi(bcx, env, [0u, abi::box_field_tydesc]);
333                 let dtor = Load(bcx, dtor_ptr);
334                 let cdata = GEPi(bcx, env, [0u, abi::box_field_body]);
335                 Call(bcx, dtor, [PointerCast(bcx, cdata, Type::i8p(bcx.ccx()))], []);
336
337                 // Free the environment itself
338                 trans_exchange_free(bcx, env)
339             })
340         }
341         _ => {
342             if ty::type_needs_drop(bcx.tcx(), t) &&
343                 ty::type_is_structural(t) {
344                 iter_structural_ty(bcx, v0, t, drop_ty)
345             } else {
346                 bcx
347             }
348         }
349     }
350 }
351
352 fn decr_refcnt_maybe_free<'a>(bcx: &'a Block<'a>,
353                               box_ptr_ptr: ValueRef,
354                               t: ty::t) -> &'a Block<'a> {
355     let _icx = push_ctxt("decr_refcnt_maybe_free");
356     let fcx = bcx.fcx;
357     let ccx = bcx.ccx();
358
359     let decr_bcx = fcx.new_temp_block("decr");
360     let free_bcx = fcx.new_temp_block("free");
361     let next_bcx = fcx.new_temp_block("next");
362
363     let box_ptr = Load(bcx, box_ptr_ptr);
364     let llnotnull = IsNotNull(bcx, box_ptr);
365     CondBr(bcx, llnotnull, decr_bcx.llbb, next_bcx.llbb);
366
367     let rc_ptr = GEPi(decr_bcx, box_ptr, [0u, abi::box_field_refcnt]);
368     let rc = Sub(decr_bcx, Load(decr_bcx, rc_ptr), C_int(ccx, 1));
369     Store(decr_bcx, rc, rc_ptr);
370     CondBr(decr_bcx, IsNull(decr_bcx, rc), free_bcx.llbb, next_bcx.llbb);
371
372     let v = Load(free_bcx, box_ptr_ptr);
373     let body = GEPi(free_bcx, v, [0u, abi::box_field_body]);
374     let free_bcx = drop_ty(free_bcx, body, t);
375     let free_bcx = trans_free(free_bcx, v);
376     Br(free_bcx, next_bcx.llbb);
377
378     next_bcx
379 }
380
381 fn incr_refcnt_of_boxed<'a>(bcx: &'a Block<'a>,
382                             box_ptr_ptr: ValueRef) -> &'a Block<'a> {
383     let _icx = push_ctxt("incr_refcnt_of_boxed");
384     let ccx = bcx.ccx();
385     let box_ptr = Load(bcx, box_ptr_ptr);
386     let rc_ptr = GEPi(bcx, box_ptr, [0u, abi::box_field_refcnt]);
387     let rc = Load(bcx, rc_ptr);
388     let rc = Add(bcx, rc, C_int(ccx, 1));
389     Store(bcx, rc, rc_ptr);
390     bcx
391 }
392
393
394 // Generates the declaration for (but doesn't emit) a type descriptor.
395 pub fn declare_tydesc(ccx: &CrateContext, t: ty::t) -> @tydesc_info {
396     // If emit_tydescs already ran, then we shouldn't be creating any new
397     // tydescs.
398     assert!(!ccx.finished_tydescs.get());
399
400     let llty = type_of(ccx, t);
401
402     if ccx.sess().count_type_sizes() {
403         println!("{}\t{}", llsize_of_real(ccx, llty),
404                  ppaux::ty_to_str(ccx.tcx(), t));
405     }
406
407     let llsize = llsize_of(ccx, llty);
408     let llalign = llalign_of(ccx, llty);
409     let name = mangle_internal_name_by_type_and_seq(ccx, t, "tydesc");
410     debug!("+++ declare_tydesc {} {}", ppaux::ty_to_str(ccx.tcx(), t), name);
411     let gvar = name.with_c_str(|buf| {
412         unsafe {
413             llvm::LLVMAddGlobal(ccx.llmod, ccx.tydesc_type().to_ref(), buf)
414         }
415     });
416     note_unique_llvm_symbol(ccx, name);
417
418     let ty_name = token::intern_and_get_ident(ppaux::ty_to_str(ccx.tcx(), t));
419     let ty_name = C_str_slice(ccx, ty_name);
420
421     let inf = @tydesc_info {
422         ty: t,
423         tydesc: gvar,
424         size: llsize,
425         align: llalign,
426         name: ty_name,
427         visit_glue: Cell::new(None),
428     };
429     debug!("--- declare_tydesc {}", ppaux::ty_to_str(ccx.tcx(), t));
430     return inf;
431 }
432
433 fn declare_generic_glue(ccx: &CrateContext, t: ty::t, llfnty: Type,
434                         name: &str) -> ValueRef {
435     let _icx = push_ctxt("declare_generic_glue");
436     let fn_nm = mangle_internal_name_by_type_and_seq(ccx, t, ~"glue_" + name);
437     debug!("{} is for type {}", fn_nm, ppaux::ty_to_str(ccx.tcx(), t));
438     let llfn = decl_cdecl_fn(ccx.llmod, fn_nm, llfnty, ty::mk_nil());
439     note_unique_llvm_symbol(ccx, fn_nm);
440     return llfn;
441 }
442
443 fn make_generic_glue(ccx: &CrateContext,
444                      t: ty::t,
445                      llfn: ValueRef,
446                      helper: <'a> |&'a Block<'a>, ValueRef, ty::t|
447                                   -> &'a Block<'a>,
448                      name: &str)
449                      -> ValueRef {
450     let _icx = push_ctxt("make_generic_glue");
451     let glue_name = format!("glue {} {}", name, ty_to_short_str(ccx.tcx(), t));
452     let _s = StatRecorder::new(ccx, glue_name);
453
454     let arena = TypedArena::new();
455     let fcx = new_fn_ctxt(ccx, llfn, -1, false, ty::mk_nil(), None, None, &arena);
456
457     init_function(&fcx, false, ty::mk_nil(), None);
458
459     lib::llvm::SetLinkage(llfn, lib::llvm::InternalLinkage);
460     ccx.stats.n_glues_created.set(ccx.stats.n_glues_created.get() + 1u);
461     // All glue functions take values passed *by alias*; this is a
462     // requirement since in many contexts glue is invoked indirectly and
463     // the caller has no idea if it's dealing with something that can be
464     // passed by value.
465     //
466     // llfn is expected be declared to take a parameter of the appropriate
467     // type, so we don't need to explicitly cast the function parameter.
468
469     let bcx = fcx.entry_bcx.borrow().clone().unwrap();
470     let llrawptr0 = unsafe { llvm::LLVMGetParam(llfn, fcx.arg_pos(0) as c_uint) };
471     let bcx = helper(bcx, llrawptr0, t);
472     finish_fn(&fcx, bcx);
473
474     llfn
475 }
476
477 pub fn emit_tydescs(ccx: &CrateContext) {
478     let _icx = push_ctxt("emit_tydescs");
479     // As of this point, allow no more tydescs to be created.
480     ccx.finished_tydescs.set(true);
481     let glue_fn_ty = Type::generic_glue_fn(ccx).ptr_to();
482     for (_, &val) in ccx.tydescs.borrow().iter() {
483         let ti = val;
484
485         // Each of the glue functions needs to be cast to a generic type
486         // before being put into the tydesc because we only have a singleton
487         // tydesc type. Then we'll recast each function to its real type when
488         // calling it.
489         let drop_glue = unsafe {
490             llvm::LLVMConstPointerCast(get_drop_glue(ccx, ti.ty), glue_fn_ty.to_ref())
491         };
492         ccx.stats.n_real_glues.set(ccx.stats.n_real_glues.get() + 1);
493         let visit_glue =
494             match ti.visit_glue.get() {
495               None => {
496                   ccx.stats.n_null_glues.set(ccx.stats.n_null_glues.get() +
497                                              1u);
498                   C_null(glue_fn_ty)
499               }
500               Some(v) => {
501                 unsafe {
502                     ccx.stats.n_real_glues.set(ccx.stats.n_real_glues.get() +
503                                                1);
504                     llvm::LLVMConstPointerCast(v, glue_fn_ty.to_ref())
505                 }
506               }
507             };
508
509         let tydesc = C_named_struct(ccx.tydesc_type(),
510                                     [ti.size, // size
511                                      ti.align, // align
512                                      drop_glue, // drop_glue
513                                      visit_glue, // visit_glue
514                                      ti.name]); // name
515
516         unsafe {
517             let gvar = ti.tydesc;
518             llvm::LLVMSetInitializer(gvar, tydesc);
519             llvm::LLVMSetGlobalConstant(gvar, True);
520             lib::llvm::SetLinkage(gvar, lib::llvm::InternalLinkage);
521         }
522     };
523 }