2013-05-30 10:16:33 +00:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-04 00:48:01 +00:00
|
|
|
// 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.
|
|
|
|
|
2012-08-28 22:54:45 +00:00
|
|
|
//!
|
|
|
|
//
|
2015-03-15 02:01:57 +00:00
|
|
|
// Code relating to drop glue.
|
2012-08-28 22:54:45 +00:00
|
|
|
|
2015-12-06 13:38:29 +00:00
|
|
|
use std;
|
2013-05-17 22:28:44 +00:00
|
|
|
|
2017-09-12 15:28:17 +00:00
|
|
|
use builder::Builder;
|
2016-03-22 17:23:36 +00:00
|
|
|
use common::*;
|
2017-09-12 15:28:17 +00:00
|
|
|
use llvm::{ValueRef};
|
|
|
|
use llvm;
|
2017-03-13 23:08:21 +00:00
|
|
|
use meth;
|
2016-03-22 17:23:36 +00:00
|
|
|
use monomorphize;
|
2017-09-12 15:28:17 +00:00
|
|
|
use rustc::traits;
|
|
|
|
use rustc::ty::layout::LayoutTyper;
|
|
|
|
use rustc::ty::{self, Ty, TypeFoldable, TyCtxt};
|
2016-03-22 17:23:36 +00:00
|
|
|
use value::Value;
|
2013-06-16 10:52:44 +00:00
|
|
|
|
2016-12-31 23:00:24 +00:00
|
|
|
pub fn size_and_align_of_dst<'a, 'tcx>(bcx: &Builder<'a, 'tcx>, t: Ty<'tcx>, info: ValueRef)
|
2016-12-18 02:54:32 +00:00
|
|
|
-> (ValueRef, ValueRef) {
|
2016-02-18 17:49:45 +00:00
|
|
|
debug!("calculate size of DST: {}; with lost info: {:?}",
|
|
|
|
t, Value(info));
|
2016-12-19 23:25:00 +00:00
|
|
|
if bcx.ccx.shared().type_is_sized(t) {
|
2017-03-02 03:35:25 +00:00
|
|
|
let size = bcx.ccx.size_of(t);
|
|
|
|
let align = bcx.ccx.align_of(t);
|
2016-02-18 17:49:45 +00:00
|
|
|
debug!("size_and_align_of_dst t={} info={:?} size: {} align: {}",
|
|
|
|
t, Value(info), size, align);
|
2017-08-05 09:27:28 +00:00
|
|
|
let size = C_usize(bcx.ccx, size);
|
|
|
|
let align = C_usize(bcx.ccx, align as u64);
|
2014-08-06 09:59:40 +00:00
|
|
|
return (size, align);
|
|
|
|
}
|
2017-05-18 15:43:52 +00:00
|
|
|
assert!(!info.is_null());
|
2014-10-31 08:51:16 +00:00
|
|
|
match t.sty {
|
2017-06-08 05:49:54 +00:00
|
|
|
ty::TyAdt(..) | ty::TyTuple(..) => {
|
2016-12-19 23:25:00 +00:00
|
|
|
let ccx = bcx.ccx;
|
2014-08-06 09:59:40 +00:00
|
|
|
// First get the size of all statically known fields.
|
2017-03-02 03:35:25 +00:00
|
|
|
// Don't use size_of because it also rounds up to alignment, which we
|
|
|
|
// want to avoid, as the unsized field's alignment could be smaller.
|
2015-08-06 15:25:15 +00:00
|
|
|
assert!(!t.is_simd());
|
2016-08-27 05:51:55 +00:00
|
|
|
let layout = ccx.layout_of(t);
|
|
|
|
debug!("DST {} layout: {:?}", t, layout);
|
|
|
|
|
|
|
|
let (sized_size, sized_align) = match *layout {
|
|
|
|
ty::layout::Layout::Univariant { ref variant, .. } => {
|
2016-10-02 01:25:40 +00:00
|
|
|
(variant.offsets.last().map_or(0, |o| o.bytes()), variant.align.abi())
|
2016-08-27 05:51:55 +00:00
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
bug!("size_and_align_of_dst: expcted Univariant for `{}`, found {:#?}",
|
|
|
|
t, layout);
|
|
|
|
}
|
|
|
|
};
|
2015-07-27 12:45:20 +00:00
|
|
|
debug!("DST {} statically sized prefix size: {} align: {}",
|
|
|
|
t, sized_size, sized_align);
|
2017-08-05 09:27:28 +00:00
|
|
|
let sized_size = C_usize(ccx, sized_size);
|
|
|
|
let sized_align = C_usize(ccx, sized_align);
|
2014-08-06 09:59:40 +00:00
|
|
|
|
|
|
|
// Recurse to get the size of the dynamically sized field (must be
|
|
|
|
// the last field).
|
2017-06-08 05:49:54 +00:00
|
|
|
let field_ty = match t.sty {
|
|
|
|
ty::TyAdt(def, substs) => {
|
|
|
|
let last_field = def.struct_variant().fields.last().unwrap();
|
|
|
|
monomorphize::field_ty(bcx.tcx(), substs, last_field)
|
|
|
|
},
|
|
|
|
ty::TyTuple(tys, _) => tys.last().unwrap(),
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
2014-08-06 09:59:40 +00:00
|
|
|
let (unsized_size, unsized_align) = size_and_align_of_dst(bcx, field_ty, info);
|
|
|
|
|
2015-07-29 17:43:26 +00:00
|
|
|
// FIXME (#26403, #27023): We should be adding padding
|
2015-07-27 12:45:20 +00:00
|
|
|
// to `sized_size` (to accommodate the `unsized_align`
|
|
|
|
// required of the unsized field that follows) before
|
2015-07-29 17:43:26 +00:00
|
|
|
// summing it with `sized_size`. (Note that since #26403
|
|
|
|
// is unfixed, we do not yet add the necessary padding
|
|
|
|
// here. But this is where the add would go.)
|
2015-07-27 12:45:20 +00:00
|
|
|
|
2014-08-06 09:59:40 +00:00
|
|
|
// Return the sum of sizes and max of aligns.
|
2016-08-23 07:39:30 +00:00
|
|
|
let size = bcx.add(sized_size, unsized_size);
|
2015-07-27 12:45:20 +00:00
|
|
|
|
2015-07-27 14:53:57 +00:00
|
|
|
// Choose max of two known alignments (combined value must
|
|
|
|
// be aligned according to more restrictive of the two).
|
2016-08-25 22:32:46 +00:00
|
|
|
let align = match (const_to_opt_u128(sized_align, false),
|
|
|
|
const_to_opt_u128(unsized_align, false)) {
|
2015-12-06 13:38:29 +00:00
|
|
|
(Some(sized_align), Some(unsized_align)) => {
|
|
|
|
// If both alignments are constant, (the sized_align should always be), then
|
|
|
|
// pick the correct alignment statically.
|
2017-08-05 09:27:28 +00:00
|
|
|
C_usize(ccx, std::cmp::max(sized_align, unsized_align) as u64)
|
2015-12-06 13:38:29 +00:00
|
|
|
}
|
2016-03-09 12:20:22 +00:00
|
|
|
_ => bcx.select(bcx.icmp(llvm::IntUGT, sized_align, unsized_align),
|
|
|
|
sized_align,
|
|
|
|
unsized_align)
|
2015-12-06 13:38:29 +00:00
|
|
|
};
|
2015-07-27 12:45:20 +00:00
|
|
|
|
2015-07-27 14:53:57 +00:00
|
|
|
// Issue #27023: must add any necessary padding to `size`
|
|
|
|
// (to make it a multiple of `align`) before returning it.
|
|
|
|
//
|
|
|
|
// Namely, the returned size should be, in C notation:
|
|
|
|
//
|
|
|
|
// `size + ((size & (align-1)) ? align : 0)`
|
|
|
|
//
|
2015-07-29 20:18:39 +00:00
|
|
|
// emulated via the semi-standard fast bit trick:
|
2015-07-27 14:53:57 +00:00
|
|
|
//
|
2015-12-06 13:38:29 +00:00
|
|
|
// `(size + (align-1)) & -align`
|
2015-07-29 20:18:39 +00:00
|
|
|
|
2017-08-05 09:27:28 +00:00
|
|
|
let addend = bcx.sub(align, C_usize(bcx.ccx, 1));
|
2016-03-09 12:20:22 +00:00
|
|
|
let size = bcx.and(bcx.add(size, addend), bcx.neg(align));
|
2015-07-27 12:45:20 +00:00
|
|
|
|
2014-08-06 09:59:40 +00:00
|
|
|
(size, align)
|
|
|
|
}
|
2016-11-16 16:21:49 +00:00
|
|
|
ty::TyDynamic(..) => {
|
2017-03-13 23:08:21 +00:00
|
|
|
// load size/align from vtable
|
|
|
|
(meth::SIZE.get_usize(bcx, info), meth::ALIGN.get_usize(bcx, info))
|
2014-08-06 09:59:40 +00:00
|
|
|
}
|
2015-06-12 23:50:13 +00:00
|
|
|
ty::TySlice(_) | ty::TyStr => {
|
2017-03-02 03:35:25 +00:00
|
|
|
let unit = t.sequence_element_type(bcx.tcx());
|
2015-01-15 06:54:51 +00:00
|
|
|
// The info in this case is the length of the str, so the size is that
|
2014-08-06 09:59:40 +00:00
|
|
|
// times the unit size.
|
2017-08-05 09:27:28 +00:00
|
|
|
(bcx.mul(info, C_usize(bcx.ccx, bcx.ccx.size_of(unit))),
|
|
|
|
C_usize(bcx.ccx, bcx.ccx.align_of(unit) as u64))
|
2014-08-06 09:59:40 +00:00
|
|
|
}
|
2016-03-28 23:46:02 +00:00
|
|
|
_ => bug!("Unexpected unsized type, found {}", t)
|
2014-08-06 09:59:40 +00:00
|
|
|
}
|
|
|
|
}
|