Skip to content

Commit ca115dd

Browse files
Remove extra lang item, exchange_free; use box_free instead.
Trans used to insert code equivalent to box_free in a wrapper around exchange_free, and that code is now removed from trans.
1 parent ce4461f commit ca115dd

File tree

4 files changed

+32
-64
lines changed

4 files changed

+32
-64
lines changed

src/liballoc/heap.rs

+1
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ unsafe fn exchange_malloc(size: usize, align: usize) -> *mut u8 {
144144
}
145145

146146
#[cfg(not(test))]
147+
#[cfg(stage0)]
147148
#[lang = "exchange_free"]
148149
#[inline]
149150
unsafe fn exchange_free(ptr: *mut u8, old_size: usize, align: usize) {

src/librustc/middle/lang_items.rs

-1
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,6 @@ language_item_table! {
328328
PanicFmtLangItem, "panic_fmt", panic_fmt;
329329

330330
ExchangeMallocFnLangItem, "exchange_malloc", exchange_malloc_fn;
331-
ExchangeFreeFnLangItem, "exchange_free", exchange_free_fn;
332331
BoxFreeFnLangItem, "box_free", box_free_fn;
333332
StrDupUniqFnLangItem, "strdup_uniq", strdup_uniq_fn;
334333

src/librustc_trans/collector.rs

+12-16
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,9 @@ use rustc::hir::itemlikevisit::ItemLikeVisitor;
193193

194194
use rustc::hir::map as hir_map;
195195
use rustc::hir::def_id::DefId;
196-
use rustc::middle::lang_items::{ExchangeFreeFnLangItem, ExchangeMallocFnLangItem};
196+
use rustc::middle::lang_items::{BoxFreeFnLangItem, ExchangeMallocFnLangItem};
197197
use rustc::traits;
198-
use rustc::ty::subst::{Substs, Subst};
198+
use rustc::ty::subst::{Kind, Substs, Subst};
199199
use rustc::ty::{self, TypeFoldable, TyCtxt};
200200
use rustc::ty::adjustment::CustomCoerceUnsized;
201201
use rustc::mir::{self, Location};
@@ -215,6 +215,8 @@ use util::nodemap::{FxHashSet, FxHashMap, DefIdMap};
215215

216216
use trans_item::{TransItem, DefPathBasedNames};
217217

218+
use std::iter;
219+
218220
#[derive(PartialEq, Eq, Hash, Clone, Copy, Debug)]
219221
pub enum TransItemCollectionMode {
220222
Eager,
@@ -723,23 +725,17 @@ fn find_drop_glue_neighbors<'a, 'tcx>(scx: &SharedCrateContext<'a, 'tcx>,
723725

724726
debug!("find_drop_glue_neighbors: {}", type_to_string(scx.tcx(), ty));
725727

726-
// Make sure the exchange_free_fn() lang-item gets translated if
727-
// there is a boxed value.
728-
if let ty::TyBox(_) = ty.sty {
729-
let exchange_free_fn_def_id = scx.tcx()
730-
.lang_items
731-
.require(ExchangeFreeFnLangItem)
732-
.unwrap_or_else(|e| scx.sess().fatal(&e));
733-
734-
assert!(can_have_local_instance(scx.tcx(), exchange_free_fn_def_id));
735-
let fn_substs = scx.empty_substs_for_def_id(exchange_free_fn_def_id);
736-
let exchange_free_fn_trans_item =
728+
// Make sure the BoxFreeFn lang-item gets translated if there is a boxed value.
729+
if let ty::TyBox(content_type) = ty.sty {
730+
let def_id = scx.tcx().require_lang_item(BoxFreeFnLangItem);
731+
assert!(can_have_local_instance(scx.tcx(), def_id));
732+
let box_free_fn_trans_item =
737733
create_fn_trans_item(scx,
738-
exchange_free_fn_def_id,
739-
fn_substs,
734+
def_id,
735+
scx.tcx().mk_substs(iter::once(Kind::from(content_type))),
740736
scx.tcx().intern_substs(&[]));
741737

742-
output.push(exchange_free_fn_trans_item);
738+
output.push(box_free_fn_trans_item);
743739
}
744740

745741
// If the type implements Drop, also add a translation item for the

src/librustc_trans/glue.rs

+19-47
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@
1313
// Code relating to drop glue.
1414

1515
use std;
16+
use std::iter;
1617

1718
use llvm;
1819
use llvm::{ValueRef, get_param};
19-
use middle::lang_items::ExchangeFreeFnLangItem;
20+
use middle::lang_items::BoxFreeFnLangItem;
2021
use rustc::ty::subst::{Substs};
2122
use rustc::traits;
2223
use rustc::ty::{self, AdtKind, Ty, TypeFoldable};
24+
use rustc::ty::subst::Kind;
2325
use adt::{self, MaybeSizedValue};
2426
use base::*;
2527
use callee::Callee;
@@ -36,38 +38,22 @@ use cleanup::CleanupScope;
3638

3739
use syntax_pos::DUMMY_SP;
3840

39-
pub fn trans_exchange_free_dyn<'a, 'tcx>(
41+
pub fn trans_exchange_free_ty<'a, 'tcx>(
4042
bcx: &BlockAndBuilder<'a, 'tcx>,
41-
v: ValueRef,
42-
size: ValueRef,
43-
align: ValueRef
43+
ptr: MaybeSizedValue,
44+
content_ty: Ty<'tcx>
4445
) {
45-
let def_id = langcall(bcx.tcx(), None, "", ExchangeFreeFnLangItem);
46-
let args = [bcx.pointercast(v, Type::i8p(bcx.ccx)), size, align];
47-
let callee = Callee::def(bcx.ccx, def_id, bcx.tcx().intern_substs(&[]));
46+
let def_id = langcall(bcx.tcx(), None, "", BoxFreeFnLangItem);
47+
let substs = bcx.tcx().mk_substs(iter::once(Kind::from(content_ty)));
48+
let callee = Callee::def(bcx.ccx, def_id, substs);
4849

49-
let ccx = bcx.ccx;
50-
let fn_ty = callee.direct_fn_type(ccx, &[]);
50+
let fn_ty = callee.direct_fn_type(bcx.ccx, &[]);
5151

52-
let llret = bcx.call(callee.reify(ccx), &args[..], None);
52+
let llret = bcx.call(callee.reify(bcx.ccx),
53+
&[ptr.value, ptr.meta][..1 + ptr.has_meta() as usize], None);
5354
fn_ty.apply_attrs_callsite(llret);
5455
}
5556

56-
pub fn trans_exchange_free_ty<'a, 'tcx>(
57-
bcx: &BlockAndBuilder<'a, 'tcx>, ptr: ValueRef, content_ty: Ty<'tcx>
58-
) {
59-
assert!(bcx.ccx.shared().type_is_sized(content_ty));
60-
let sizing_type = sizing_type_of(bcx.ccx, content_ty);
61-
let content_size = llsize_of_alloc(bcx.ccx, sizing_type);
62-
63-
// `Box<ZeroSizeType>` does not allocate.
64-
if content_size != 0 {
65-
let content_align = align_of(bcx.ccx, content_ty);
66-
let ccx = bcx.ccx;
67-
trans_exchange_free_dyn(bcx, ptr, C_uint(ccx, content_size), C_uint(ccx, content_align));
68-
}
69-
}
70-
7157
pub fn get_drop_glue_type<'a, 'tcx>(scx: &SharedCrateContext<'a, 'tcx>, t: Ty<'tcx>) -> Ty<'tcx> {
7258
assert!(t.is_normalized_for_trans());
7359

@@ -224,30 +210,16 @@ pub fn implement_drop_glue<'a, 'tcx>(ccx: &CrateContext<'a, 'tcx>, g: DropGlueKi
224210
// special. It may move to library and have Drop impl. As
225211
// a safe-guard, assert TyBox not used with TyContents.
226212
assert!(!skip_dtor);
227-
if !bcx.ccx.shared().type_is_sized(content_ty) {
213+
let ptr = if !bcx.ccx.shared().type_is_sized(content_ty) {
228214
let llbox = bcx.load(get_dataptr(&bcx, ptr.value));
229215
let info = bcx.load(get_meta(&bcx, ptr.value));
230-
drop_ty(&bcx, MaybeSizedValue::unsized_(llbox, info), content_ty);
231-
let (llsize, llalign) = size_and_align_of_dst(&bcx, content_ty, info);
232-
233-
// `Box<ZeroSizeType>` does not allocate.
234-
let needs_free = bcx.icmp(llvm::IntNE, llsize, C_uint(bcx.ccx, 0u64));
235-
if const_to_opt_uint(needs_free) == Some(0) {
236-
bcx
237-
} else {
238-
let next_cx = bcx.fcx().build_new_block("next");
239-
let cond_cx = bcx.fcx().build_new_block("cond");
240-
bcx.cond_br(needs_free, cond_cx.llbb(), next_cx.llbb());
241-
trans_exchange_free_dyn(&cond_cx, llbox, llsize, llalign);
242-
cond_cx.br(next_cx.llbb());
243-
next_cx
244-
}
216+
MaybeSizedValue::unsized_(llbox, info)
245217
} else {
246-
let llbox = bcx.load(ptr.value);
247-
drop_ty(&bcx, MaybeSizedValue::sized(llbox), content_ty);
248-
trans_exchange_free_ty(&bcx, llbox, content_ty);
249-
bcx
250-
}
218+
MaybeSizedValue::sized(bcx.load(ptr.value))
219+
};
220+
drop_ty(&bcx, ptr, content_ty);
221+
trans_exchange_free_ty(&bcx, ptr, content_ty);
222+
bcx
251223
}
252224
ty::TyDynamic(..) => {
253225
// No support in vtable for distinguishing destroying with

0 commit comments

Comments
 (0)