37 lines
1.3 KiB
Rust
37 lines
1.3 KiB
Rust
// Copyright 2012 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 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
|
|
use lib::llvm::ValueRef;
|
|
use middle::trans::base::*;
|
|
use middle::trans::build::*;
|
|
use middle::trans::common::*;
|
|
use middle::trans::datum::immediate_rvalue;
|
|
use middle::trans::glue;
|
|
use middle::ty;
|
|
|
|
pub fn make_free_glue(bcx: @mut Block, vptrptr: ValueRef, box_ty: ty::t)
|
|
-> @mut Block {
|
|
let _icx = push_ctxt("uniq::make_free_glue");
|
|
let box_datum = immediate_rvalue(Load(bcx, vptrptr), box_ty);
|
|
|
|
let not_null = IsNotNull(bcx, box_datum.val);
|
|
do with_cond(bcx, not_null) |bcx| {
|
|
let body_datum = box_datum.box_body(bcx);
|
|
let bcx = glue::drop_ty(bcx, body_datum.to_ref_llval(bcx),
|
|
body_datum.ty);
|
|
if ty::type_contents(bcx.tcx(), box_ty).contains_managed() {
|
|
glue::trans_free(bcx, box_datum.val)
|
|
} else {
|
|
glue::trans_exchange_free(bcx, box_datum.val)
|
|
}
|
|
}
|
|
}
|