2013-02-18 16:16:21 -06:00
|
|
|
// Copyright 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 <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.
|
|
|
|
|
2014-11-25 20:17:11 -06:00
|
|
|
//! # Representation of Algebraic Data Types
|
|
|
|
//!
|
|
|
|
//! This module determines how to represent enums, structs, and tuples
|
|
|
|
//! based on their monomorphized types; it is responsible both for
|
|
|
|
//! choosing a representation and translating basic operations on
|
|
|
|
//! values of those types. (Note: exporting the representations for
|
|
|
|
//! debuggers is handled in debuginfo.rs, not here.)
|
|
|
|
//!
|
|
|
|
//! Note that the interface treats everything as a general case of an
|
|
|
|
//! enum, so structs/tuples/etc. have one pseudo-variant with
|
|
|
|
//! discriminant 0; i.e., as if they were a univariant enum.
|
|
|
|
//!
|
|
|
|
//! Having everything in one place will enable improvements to data
|
|
|
|
//! structure representation; possibilities include:
|
|
|
|
//!
|
|
|
|
//! - User-specified alignment (e.g., cacheline-aligning parts of
|
|
|
|
//! concurrently accessed data structures); LLVM can't represent this
|
|
|
|
//! directly, so we'd have to insert padding fields in any structure
|
|
|
|
//! that might contain one and adjust GEP indices accordingly. See
|
|
|
|
//! issue #4578.
|
|
|
|
//!
|
|
|
|
//! - Store nested enums' discriminants in the same word. Rather, if
|
|
|
|
//! some variants start with enums, and those enums representations
|
|
|
|
//! have unused alignment padding between discriminant and body, the
|
|
|
|
//! outer enum's discriminant can be stored there and those variants
|
|
|
|
//! can start at offset 0. Kind of fancy, and might need work to
|
|
|
|
//! make copies of the inner enum type cooperate, but it could help
|
|
|
|
//! with `Option` or `Result` wrapped around another enum.
|
|
|
|
//!
|
|
|
|
//! - Tagged pointers would be neat, but given that any type can be
|
|
|
|
//! used unboxed and any field can have pointers (including mutable)
|
|
|
|
//! taken to it, implementing them for Rust seems difficult.
|
2013-02-28 01:08:52 -06:00
|
|
|
|
2016-01-16 09:03:09 -06:00
|
|
|
use super::Disr;
|
2014-11-06 02:05:53 -06:00
|
|
|
|
2015-12-06 07:38:29 -06:00
|
|
|
use std;
|
2013-02-28 01:08:52 -06:00
|
|
|
|
2014-07-07 19:58:01 -05:00
|
|
|
use llvm::{ValueRef, True, IntEQ, IntNE};
|
2016-08-28 19:44:19 -05:00
|
|
|
use rustc::ty::layout;
|
|
|
|
use rustc::ty::{self, Ty, AdtKind};
|
2016-03-22 12:23:36 -05:00
|
|
|
use common::*;
|
2016-12-31 17:00:24 -06:00
|
|
|
use builder::Builder;
|
2016-08-28 19:44:19 -05:00
|
|
|
use base;
|
2016-03-22 12:23:36 -05:00
|
|
|
use machine;
|
|
|
|
use monomorphize;
|
|
|
|
use type_::Type;
|
|
|
|
use type_of;
|
2013-02-18 16:16:21 -06:00
|
|
|
|
2017-02-06 10:27:09 -06:00
|
|
|
use mir::lvalue::Alignment;
|
|
|
|
|
2016-09-25 18:55:43 -05:00
|
|
|
/// Given an enum, struct, closure, or tuple, extracts fields.
|
|
|
|
/// Treats closures as a struct with one variant.
|
|
|
|
/// `empty_if_no_variants` is a switch to deal with empty enums.
|
|
|
|
/// If true, `variant_index` is disregarded and an empty Vec returned in this case.
|
2017-01-02 12:00:42 -06:00
|
|
|
pub fn compute_fields<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>, t: Ty<'tcx>,
|
|
|
|
variant_index: usize,
|
|
|
|
empty_if_no_variants: bool) -> Vec<Ty<'tcx>> {
|
2014-10-31 03:51:16 -05:00
|
|
|
match t.sty {
|
2016-08-28 19:44:19 -05:00
|
|
|
ty::TyAdt(ref def, _) if def.variants.len() == 0 && empty_if_no_variants => {
|
|
|
|
Vec::default()
|
2014-12-04 15:44:51 -06:00
|
|
|
},
|
2016-08-28 19:44:19 -05:00
|
|
|
ty::TyAdt(ref def, ref substs) => {
|
|
|
|
def.variants[variant_index].fields.iter().map(|f| {
|
|
|
|
monomorphize::field_ty(cx.tcx(), substs, f)
|
|
|
|
}).collect::<Vec<_>>()
|
2015-04-28 18:24:16 -05:00
|
|
|
},
|
2017-01-11 01:58:37 -06:00
|
|
|
ty::TyTuple(fields, _) => fields.to_vec(),
|
2016-11-03 15:19:33 -05:00
|
|
|
ty::TyClosure(def_id, substs) => {
|
2016-08-28 19:44:19 -05:00
|
|
|
if variant_index > 0 { bug!("{} is a closure, which only has one variant", t);}
|
2016-11-03 15:19:33 -05:00
|
|
|
substs.upvar_tys(def_id, cx.tcx()).collect()
|
2014-12-04 15:56:26 -06:00
|
|
|
},
|
2016-08-28 19:44:19 -05:00
|
|
|
_ => bug!("{} is not a type that can have fields.", t)
|
2014-10-14 15:40:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-24 19:06:06 -06:00
|
|
|
/// LLVM-level types are a little complicated.
|
|
|
|
///
|
|
|
|
/// C-like enums need to be actual ints, not wrapped in a struct,
|
|
|
|
/// because that changes the ABI on some platforms (see issue #10308).
|
|
|
|
///
|
|
|
|
/// For nominal types, in some cases, we need to use LLVM named structs
|
|
|
|
/// and fill in the actual contents in a second pass to prevent
|
|
|
|
/// unbounded recursion; see also the comments in `trans::type_of`.
|
2016-08-28 19:44:19 -05:00
|
|
|
pub fn type_of<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>, t: Ty<'tcx>) -> Type {
|
|
|
|
generic_type_of(cx, t, None, false, false)
|
2013-11-22 03:16:17 -06:00
|
|
|
}
|
2015-07-27 07:45:20 -05:00
|
|
|
|
|
|
|
|
2014-08-06 04:59:40 -05:00
|
|
|
// Pass dst=true if the type you are passing is a DST. Yes, we could figure
|
|
|
|
// this out, but if you call this on an unsized type without realising it, you
|
|
|
|
// are going to get the wrong type (it will not include the unsized parts of it).
|
2014-09-29 14:11:30 -05:00
|
|
|
pub fn sizing_type_of<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
|
2016-08-28 19:44:19 -05:00
|
|
|
t: Ty<'tcx>, dst: bool) -> Type {
|
|
|
|
generic_type_of(cx, t, None, true, dst)
|
2013-02-18 16:16:21 -06:00
|
|
|
}
|
2016-08-23 02:39:30 -05:00
|
|
|
|
2014-09-29 14:11:30 -05:00
|
|
|
pub fn incomplete_type_of<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
|
2016-08-28 19:44:19 -05:00
|
|
|
t: Ty<'tcx>, name: &str) -> Type {
|
|
|
|
generic_type_of(cx, t, Some(name), false, false)
|
2013-11-22 03:16:17 -06:00
|
|
|
}
|
2016-08-23 02:39:30 -05:00
|
|
|
|
2014-09-29 14:11:30 -05:00
|
|
|
pub fn finish_type_of<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
|
2016-08-28 19:44:19 -05:00
|
|
|
t: Ty<'tcx>, llty: &mut Type) {
|
|
|
|
let l = cx.layout_of(t);
|
|
|
|
debug!("finish_type_of: {} with layout {:#?}", t, l);
|
|
|
|
match *l {
|
|
|
|
layout::CEnum { .. } | layout::General { .. }
|
|
|
|
| layout::UntaggedUnion { .. } | layout::RawNullablePointer { .. } => { }
|
|
|
|
layout::Univariant { ..}
|
2016-09-25 18:55:43 -05:00
|
|
|
| layout::StructWrappedNullablePointer { .. } => {
|
2016-10-16 16:31:19 -05:00
|
|
|
let (nonnull_variant_index, nonnull_variant, packed) = match *l {
|
|
|
|
layout::Univariant { ref variant, .. } => (0, variant, variant.packed),
|
2016-08-28 19:44:19 -05:00
|
|
|
layout::StructWrappedNullablePointer { nndiscr, ref nonnull, .. } =>
|
2016-10-16 16:31:19 -05:00
|
|
|
(nndiscr, nonnull, nonnull.packed),
|
2016-08-28 19:44:19 -05:00
|
|
|
_ => unreachable!()
|
|
|
|
};
|
2016-10-16 16:31:19 -05:00
|
|
|
let fields = compute_fields(cx, t, nonnull_variant_index as usize, true);
|
|
|
|
llty.set_struct_body(&struct_llfields(cx, &fields, nonnull_variant, false, false),
|
2016-08-28 19:44:19 -05:00
|
|
|
packed)
|
|
|
|
},
|
|
|
|
_ => bug!("This function cannot handle {} with layout {:#?}", t, l)
|
2013-11-22 03:16:17 -06:00
|
|
|
}
|
2013-02-28 01:08:52 -06:00
|
|
|
}
|
2013-11-22 03:16:17 -06:00
|
|
|
|
2014-09-29 14:11:30 -05:00
|
|
|
fn generic_type_of<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
|
2016-08-28 19:44:19 -05:00
|
|
|
t: Ty<'tcx>,
|
2014-09-29 14:11:30 -05:00
|
|
|
name: Option<&str>,
|
|
|
|
sizing: bool,
|
2016-08-23 02:39:30 -05:00
|
|
|
dst: bool) -> Type {
|
2016-08-28 19:44:19 -05:00
|
|
|
let l = cx.layout_of(t);
|
|
|
|
debug!("adt::generic_type_of t: {:?} name: {:?} sizing: {} dst: {}",
|
|
|
|
t, name, sizing, dst);
|
|
|
|
match *l {
|
|
|
|
layout::CEnum { discr, .. } => Type::from_integer(cx, discr),
|
|
|
|
layout::RawNullablePointer { nndiscr, .. } => {
|
|
|
|
let (def, substs) = match t.sty {
|
|
|
|
ty::TyAdt(d, s) => (d, s),
|
|
|
|
_ => bug!("{} is not an ADT", t)
|
|
|
|
};
|
|
|
|
let nnty = monomorphize::field_ty(cx.tcx(), substs,
|
|
|
|
&def.variants[nndiscr as usize].fields[0]);
|
|
|
|
type_of::sizing_type_of(cx, nnty)
|
|
|
|
}
|
|
|
|
layout::StructWrappedNullablePointer { nndiscr, ref nonnull, .. } => {
|
|
|
|
let fields = compute_fields(cx, t, nndiscr as usize, false);
|
2015-07-27 07:45:20 -05:00
|
|
|
match name {
|
|
|
|
None => {
|
2016-10-16 16:31:19 -05:00
|
|
|
Type::struct_(cx, &struct_llfields(cx, &fields, nonnull, sizing, dst),
|
2016-08-28 19:44:19 -05:00
|
|
|
nonnull.packed)
|
2015-07-27 07:45:20 -05:00
|
|
|
}
|
|
|
|
Some(name) => {
|
|
|
|
assert_eq!(sizing, false);
|
2016-08-23 02:39:30 -05:00
|
|
|
Type::named_struct(cx, name)
|
2015-07-27 07:45:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-28 19:44:19 -05:00
|
|
|
layout::Univariant { ref variant, .. } => {
|
2016-09-25 18:55:43 -05:00
|
|
|
// Note that this case also handles empty enums.
|
|
|
|
// Thus the true as the final parameter here.
|
2016-08-28 19:44:19 -05:00
|
|
|
let fields = compute_fields(cx, t, 0, true);
|
2013-11-22 03:16:17 -06:00
|
|
|
match name {
|
2014-03-08 14:36:22 -06:00
|
|
|
None => {
|
2016-10-16 16:31:19 -05:00
|
|
|
let fields = struct_llfields(cx, &fields, &variant, sizing, dst);
|
2016-08-28 19:44:19 -05:00
|
|
|
Type::struct_(cx, &fields, variant.packed)
|
2015-07-27 07:45:20 -05:00
|
|
|
}
|
|
|
|
Some(name) => {
|
|
|
|
// Hypothesis: named_struct's can never need a
|
|
|
|
// drop flag. (... needs validation.)
|
|
|
|
assert_eq!(sizing, false);
|
2016-08-23 02:39:30 -05:00
|
|
|
Type::named_struct(cx, name)
|
2014-03-08 14:36:22 -06:00
|
|
|
}
|
2013-11-22 03:16:17 -06:00
|
|
|
}
|
|
|
|
}
|
2016-08-28 19:44:19 -05:00
|
|
|
layout::Vector { element, count } => {
|
|
|
|
let elem_ty = Type::from_primitive(cx, element);
|
|
|
|
Type::vector(&elem_ty, count)
|
|
|
|
}
|
|
|
|
layout::UntaggedUnion { ref variants, .. }=> {
|
2016-08-18 07:44:00 -05:00
|
|
|
// Use alignment-sized ints to fill all the union storage.
|
2016-08-28 19:44:19 -05:00
|
|
|
let size = variants.stride().bytes();
|
|
|
|
let align = variants.align.abi();
|
|
|
|
let fill = union_fill(cx, size, align);
|
2016-08-18 07:44:00 -05:00
|
|
|
match name {
|
|
|
|
None => {
|
2016-08-28 19:44:19 -05:00
|
|
|
Type::struct_(cx, &[fill], variants.packed)
|
2016-08-18 07:44:00 -05:00
|
|
|
}
|
|
|
|
Some(name) => {
|
|
|
|
let mut llty = Type::named_struct(cx, name);
|
2016-08-28 19:44:19 -05:00
|
|
|
llty.set_struct_body(&[fill], variants.packed);
|
2016-08-26 11:23:42 -05:00
|
|
|
llty
|
2016-08-18 07:44:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-28 19:44:19 -05:00
|
|
|
layout::General { discr, size, align, .. } => {
|
2013-10-26 14:12:53 -05:00
|
|
|
// We need a representation that has:
|
|
|
|
// * The alignment of the most-aligned field
|
|
|
|
// * The size of the largest variant (rounded up to that alignment)
|
|
|
|
// * No alignment padding anywhere any variant has actual data
|
|
|
|
// (currently matters only for enums small enough to be immediate)
|
|
|
|
// * The discriminant in an obvious place.
|
|
|
|
//
|
|
|
|
// So we start with the discriminant, pad it up to the alignment with
|
|
|
|
// more of its own type, then use alignment-sized ints to get the rest
|
|
|
|
// of the size.
|
2016-08-28 19:44:19 -05:00
|
|
|
let size = size.bytes();
|
|
|
|
let align = align.abi();
|
2016-11-15 10:48:07 -06:00
|
|
|
assert!(align <= std::u32::MAX as u64);
|
2016-08-28 19:44:19 -05:00
|
|
|
let discr_ty = Type::from_integer(cx, discr);
|
|
|
|
let discr_size = discr.size().bytes();
|
|
|
|
let padded_discr_size = roundup(discr_size, align as u32);
|
|
|
|
let variant_part_size = size-padded_discr_size;
|
|
|
|
let variant_fill = union_fill(cx, variant_part_size, align);
|
|
|
|
|
|
|
|
assert_eq!(machine::llalign_of_min(cx, variant_fill), align as u32);
|
2016-03-02 13:57:00 -06:00
|
|
|
assert_eq!(padded_discr_size % discr_size, 0); // Ensure discr_ty can fill pad evenly
|
2016-08-23 02:39:30 -05:00
|
|
|
let fields: Vec<Type> =
|
2015-07-27 07:45:20 -05:00
|
|
|
[discr_ty,
|
2016-03-02 13:57:00 -06:00
|
|
|
Type::array(&discr_ty, (padded_discr_size - discr_size)/discr_size),
|
2016-08-28 19:44:19 -05:00
|
|
|
variant_fill].iter().cloned().collect();
|
2013-11-22 03:16:17 -06:00
|
|
|
match name {
|
2015-07-27 07:45:20 -05:00
|
|
|
None => {
|
2016-08-23 02:39:30 -05:00
|
|
|
Type::struct_(cx, &fields[..], false)
|
2015-07-27 07:45:20 -05:00
|
|
|
}
|
2013-11-22 03:16:17 -06:00
|
|
|
Some(name) => {
|
2014-03-15 15:29:34 -05:00
|
|
|
let mut llty = Type::named_struct(cx, name);
|
2015-02-18 13:48:57 -06:00
|
|
|
llty.set_struct_body(&fields[..], false);
|
2016-08-23 02:39:30 -05:00
|
|
|
llty
|
2013-11-22 03:16:17 -06:00
|
|
|
}
|
|
|
|
}
|
2013-02-18 16:16:21 -06:00
|
|
|
}
|
2016-08-28 19:44:19 -05:00
|
|
|
_ => bug!("Unsupported type {} represented as {:#?}", t, l)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn union_fill(cx: &CrateContext, size: u64, align: u64) -> Type {
|
|
|
|
assert_eq!(size%align, 0);
|
2016-09-24 16:37:24 -05:00
|
|
|
assert_eq!(align.count_ones(), 1, "Alignment must be a power fof 2. Got {}", align);
|
2016-08-28 19:44:19 -05:00
|
|
|
let align_units = size/align;
|
2016-09-24 16:37:24 -05:00
|
|
|
let dl = &cx.tcx().data_layout;
|
|
|
|
let layout_align = layout::Align::from_bytes(align, align).unwrap();
|
|
|
|
if let Some(ity) = layout::Integer::for_abi_align(dl, layout_align) {
|
|
|
|
Type::array(&Type::from_integer(cx, ity), align_units)
|
|
|
|
} else {
|
|
|
|
Type::array(&Type::vector(&Type::i32(cx), align/4),
|
|
|
|
align_units)
|
2013-02-18 16:16:21 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-28 19:44:19 -05:00
|
|
|
|
|
|
|
fn struct_llfields<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>, fields: &Vec<Ty<'tcx>>,
|
2016-10-16 16:31:19 -05:00
|
|
|
variant: &layout::Struct,
|
2014-09-29 14:11:30 -05:00
|
|
|
sizing: bool, dst: bool) -> Vec<Type> {
|
2016-10-16 16:31:19 -05:00
|
|
|
let fields = variant.field_index_by_increasing_offset().map(|i| fields[i as usize]);
|
2013-03-11 03:04:08 -05:00
|
|
|
if sizing {
|
2016-12-18 12:50:07 -06:00
|
|
|
fields.filter(|ty| !dst || cx.shared().type_is_sized(*ty))
|
2016-10-16 16:31:19 -05:00
|
|
|
.map(|ty| type_of::sizing_type_of(cx, ty)).collect()
|
2013-03-11 03:04:08 -05:00
|
|
|
} else {
|
2016-10-16 16:31:19 -05:00
|
|
|
fields.map(|ty| type_of::in_memory_type_of(cx, ty)).collect()
|
2013-03-11 03:04:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-28 19:44:19 -05:00
|
|
|
pub fn is_discr_signed<'tcx>(l: &layout::Layout) -> bool {
|
|
|
|
match *l {
|
|
|
|
layout::CEnum { signed, .. }=> signed,
|
|
|
|
_ => false,
|
2015-05-05 11:34:37 -05:00
|
|
|
}
|
|
|
|
}
|
2013-03-31 17:55:30 -05:00
|
|
|
|
2013-02-28 14:13:00 -06:00
|
|
|
/// Obtain the actual discriminant of a value.
|
2016-12-17 20:54:32 -06:00
|
|
|
pub fn trans_get_discr<'a, 'tcx>(
|
2016-12-31 17:00:24 -06:00
|
|
|
bcx: &Builder<'a, 'tcx>,
|
2016-12-17 20:54:32 -06:00
|
|
|
t: Ty<'tcx>,
|
|
|
|
scrutinee: ValueRef,
|
2017-02-06 10:27:09 -06:00
|
|
|
alignment: Alignment,
|
2016-12-17 20:54:32 -06:00
|
|
|
cast_to: Option<Type>,
|
|
|
|
range_assert: bool
|
|
|
|
) -> ValueRef {
|
2016-08-28 19:44:19 -05:00
|
|
|
let (def, substs) = match t.sty {
|
|
|
|
ty::TyAdt(ref def, substs) if def.adt_kind() == AdtKind::Enum => (def, substs),
|
|
|
|
_ => bug!("{} is not an enum", t)
|
|
|
|
};
|
|
|
|
|
|
|
|
debug!("trans_get_discr t: {:?}", t);
|
2016-12-19 17:25:00 -06:00
|
|
|
let l = bcx.ccx.layout_of(t);
|
2016-08-28 19:44:19 -05:00
|
|
|
|
|
|
|
let val = match *l {
|
|
|
|
layout::CEnum { discr, min, max, .. } => {
|
2017-02-06 10:27:09 -06:00
|
|
|
load_discr(bcx, discr, scrutinee, alignment, min, max, range_assert)
|
2015-10-23 00:07:19 -05:00
|
|
|
}
|
2016-08-28 19:44:19 -05:00
|
|
|
layout::General { discr, .. } => {
|
2016-12-11 09:59:20 -06:00
|
|
|
let ptr = bcx.struct_gep(scrutinee, 0);
|
2017-02-06 10:27:09 -06:00
|
|
|
load_discr(bcx, discr, ptr, alignment,
|
|
|
|
0, def.variants.len() as u64 - 1,
|
2015-10-23 00:07:19 -05:00
|
|
|
range_assert)
|
2013-07-01 00:42:30 -05:00
|
|
|
}
|
2016-12-19 17:25:00 -06:00
|
|
|
layout::Univariant { .. } | layout::UntaggedUnion { .. } => C_u8(bcx.ccx, 0),
|
2016-08-28 19:44:19 -05:00
|
|
|
layout::RawNullablePointer { nndiscr, .. } => {
|
|
|
|
let cmp = if nndiscr == 0 { IntEQ } else { IntNE };
|
2016-12-19 17:25:00 -06:00
|
|
|
let llptrty = type_of::sizing_type_of(bcx.ccx,
|
2017-01-01 09:46:34 -06:00
|
|
|
monomorphize::field_ty(bcx.tcx(), substs,
|
2016-08-28 19:44:19 -05:00
|
|
|
&def.variants[nndiscr as usize].fields[0]));
|
2017-02-06 10:27:09 -06:00
|
|
|
bcx.icmp(cmp, bcx.load(scrutinee, alignment.to_align()), C_null(llptrty))
|
2014-05-15 19:55:23 -05:00
|
|
|
}
|
2016-08-28 19:44:19 -05:00
|
|
|
layout::StructWrappedNullablePointer { nndiscr, ref discrfield, .. } => {
|
2017-02-06 10:27:09 -06:00
|
|
|
struct_wrapped_nullable_bitdiscr(bcx, nndiscr, discrfield, scrutinee, alignment)
|
2016-08-28 19:44:19 -05:00
|
|
|
},
|
|
|
|
_ => bug!("{} is not an enum", t)
|
2015-05-05 11:34:37 -05:00
|
|
|
};
|
2013-07-01 00:42:30 -05:00
|
|
|
match cast_to {
|
|
|
|
None => val,
|
2016-12-11 09:59:20 -06:00
|
|
|
Some(llty) => if is_discr_signed(&l) { bcx.sext(val, llty) } else { bcx.zext(val, llty) }
|
2013-07-01 00:42:30 -05:00
|
|
|
}
|
2013-02-18 16:16:21 -06:00
|
|
|
}
|
|
|
|
|
2016-12-10 21:32:44 -06:00
|
|
|
fn struct_wrapped_nullable_bitdiscr(
|
2016-12-31 17:00:24 -06:00
|
|
|
bcx: &Builder,
|
2016-12-10 21:32:44 -06:00
|
|
|
nndiscr: u64,
|
|
|
|
discrfield: &layout::FieldPath,
|
2017-02-06 10:27:09 -06:00
|
|
|
scrutinee: ValueRef,
|
|
|
|
alignment: Alignment,
|
2016-12-10 21:32:44 -06:00
|
|
|
) -> ValueRef {
|
2016-12-11 09:59:20 -06:00
|
|
|
let llptrptr = bcx.gepi(scrutinee,
|
2016-08-28 19:44:19 -05:00
|
|
|
&discrfield.iter().map(|f| *f as usize).collect::<Vec<_>>()[..]);
|
2017-02-06 10:27:09 -06:00
|
|
|
let llptr = bcx.load(llptrptr, alignment.to_align());
|
2016-08-28 19:44:19 -05:00
|
|
|
let cmp = if nndiscr == 0 { IntEQ } else { IntNE };
|
2016-12-11 09:59:20 -06:00
|
|
|
bcx.icmp(cmp, llptr, C_null(val_ty(llptr)))
|
2013-03-31 17:55:30 -05:00
|
|
|
}
|
|
|
|
|
2013-02-28 14:13:00 -06:00
|
|
|
/// Helper for cases where the discriminant is simply loaded.
|
2017-02-06 10:27:09 -06:00
|
|
|
fn load_discr(bcx: &Builder, ity: layout::Integer, ptr: ValueRef,
|
|
|
|
alignment: Alignment, min: u64, max: u64,
|
2015-10-23 00:07:19 -05:00
|
|
|
range_assert: bool)
|
2013-02-28 13:24:30 -06:00
|
|
|
-> ValueRef {
|
2016-12-19 17:25:00 -06:00
|
|
|
let llty = Type::from_integer(bcx.ccx, ity);
|
2013-07-01 00:42:30 -05:00
|
|
|
assert_eq!(val_ty(ptr), llty.ptr_to());
|
2016-08-28 19:44:19 -05:00
|
|
|
let bits = ity.size().bits();
|
2013-07-01 00:42:30 -05:00
|
|
|
assert!(bits <= 64);
|
2016-01-18 04:30:52 -06:00
|
|
|
let bits = bits as usize;
|
2016-08-28 19:44:19 -05:00
|
|
|
let mask = !0u64 >> (64 - bits);
|
2015-02-20 06:10:54 -06:00
|
|
|
// For a (max) discr of -1, max will be `-1 as usize`, which overflows.
|
|
|
|
// However, that is fine here (it would still represent the full range),
|
2016-08-28 19:44:19 -05:00
|
|
|
if max.wrapping_add(1) & mask == min & mask || !range_assert {
|
2013-02-28 13:24:30 -06:00
|
|
|
// i.e., if the range is everything. The lo==hi case would be
|
|
|
|
// rejected by the LLVM verifier (it would mean either an
|
|
|
|
// empty set, which is impossible, or the entire range of the
|
|
|
|
// type, which is pointless).
|
2017-02-06 10:27:09 -06:00
|
|
|
bcx.load(ptr, alignment.to_align())
|
2013-02-28 13:24:30 -06:00
|
|
|
} else {
|
|
|
|
// llvm::ConstantRange can deal with ranges that wrap around,
|
|
|
|
// so an overflow on (max + 1) is fine.
|
2017-02-06 10:27:09 -06:00
|
|
|
bcx.load_range_assert(ptr, min, max.wrapping_add(1), /* signed: */ True,
|
|
|
|
alignment.to_align())
|
2013-02-28 13:24:30 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-24 19:06:06 -06:00
|
|
|
/// Yield information about how to dispatch a case of the
|
|
|
|
/// discriminant-like value returned by `trans_switch`.
|
|
|
|
///
|
|
|
|
/// This should ideally be less tightly tied to `_match`.
|
2016-12-31 17:00:24 -06:00
|
|
|
pub fn trans_case<'a, 'tcx>(bcx: &Builder<'a, 'tcx>, t: Ty<'tcx>, value: Disr) -> ValueRef {
|
2016-12-19 17:25:00 -06:00
|
|
|
let l = bcx.ccx.layout_of(t);
|
2016-08-28 19:44:19 -05:00
|
|
|
match *l {
|
|
|
|
layout::CEnum { discr, .. }
|
|
|
|
| layout::General { discr, .. }=> {
|
2016-12-19 17:25:00 -06:00
|
|
|
C_integral(Type::from_integer(bcx.ccx, discr), value.0, true)
|
2013-02-18 16:16:21 -06:00
|
|
|
}
|
2016-08-28 19:44:19 -05:00
|
|
|
layout::RawNullablePointer { .. } |
|
2016-09-25 18:55:43 -05:00
|
|
|
layout::StructWrappedNullablePointer { .. } => {
|
2016-08-28 19:44:19 -05:00
|
|
|
assert!(value == Disr(0) || value == Disr(1));
|
2016-12-19 17:25:00 -06:00
|
|
|
C_bool(bcx.ccx, value != Disr(0))
|
2013-02-18 16:16:21 -06:00
|
|
|
}
|
2016-08-28 19:44:19 -05:00
|
|
|
_ => {
|
|
|
|
bug!("{} does not have a discriminant. Represented as {:#?}", t, l);
|
2013-03-31 17:55:30 -05:00
|
|
|
}
|
2013-02-18 16:16:21 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-24 19:06:06 -06:00
|
|
|
/// Set the discriminant for a new value of the given case of the given
|
|
|
|
/// representation.
|
2017-01-02 12:00:42 -06:00
|
|
|
pub fn trans_set_discr<'a, 'tcx>(bcx: &Builder<'a, 'tcx>, t: Ty<'tcx>, val: ValueRef, to: Disr) {
|
2016-12-19 17:25:00 -06:00
|
|
|
let l = bcx.ccx.layout_of(t);
|
2016-08-28 19:44:19 -05:00
|
|
|
match *l {
|
|
|
|
layout::CEnum{ discr, min, max, .. } => {
|
|
|
|
assert_discr_in_range(Disr(min), Disr(max), to);
|
2016-12-19 17:25:00 -06:00
|
|
|
bcx.store(C_integral(Type::from_integer(bcx.ccx, discr), to.0, true),
|
2016-12-28 19:20:26 -06:00
|
|
|
val, None);
|
2013-07-01 00:42:30 -05:00
|
|
|
}
|
2016-08-28 19:44:19 -05:00
|
|
|
layout::General{ discr, .. } => {
|
2016-12-19 17:25:00 -06:00
|
|
|
bcx.store(C_integral(Type::from_integer(bcx.ccx, discr), to.0, true),
|
2016-12-28 19:20:26 -06:00
|
|
|
bcx.struct_gep(val, 0), None);
|
2013-02-18 16:16:21 -06:00
|
|
|
}
|
2016-08-28 19:44:19 -05:00
|
|
|
layout::Univariant { .. }
|
|
|
|
| layout::UntaggedUnion { .. }
|
|
|
|
| layout::Vector { .. } => {
|
|
|
|
assert_eq!(to, Disr(0));
|
2016-08-18 07:44:00 -05:00
|
|
|
}
|
2016-08-28 19:44:19 -05:00
|
|
|
layout::RawNullablePointer { nndiscr, .. } => {
|
2016-12-19 17:25:00 -06:00
|
|
|
let nnty = compute_fields(bcx.ccx, t, nndiscr as usize, false)[0];
|
2016-08-28 19:44:19 -05:00
|
|
|
if to.0 != nndiscr {
|
2016-12-19 17:25:00 -06:00
|
|
|
let llptrty = type_of::sizing_type_of(bcx.ccx, nnty);
|
2016-12-28 19:20:26 -06:00
|
|
|
bcx.store(C_null(llptrty), val, None);
|
2014-05-15 19:55:23 -05:00
|
|
|
}
|
|
|
|
}
|
2016-08-28 19:44:19 -05:00
|
|
|
layout::StructWrappedNullablePointer { nndiscr, ref discrfield, ref nonnull, .. } => {
|
|
|
|
if to.0 != nndiscr {
|
2016-09-15 12:02:10 -05:00
|
|
|
if target_sets_discr_via_memset(bcx) {
|
|
|
|
// Issue #34427: As workaround for LLVM bug on
|
|
|
|
// ARM, use memset of 0 on whole struct rather
|
|
|
|
// than storing null to single target field.
|
2016-12-19 17:25:00 -06:00
|
|
|
let llptr = bcx.pointercast(val, Type::i8(bcx.ccx).ptr_to());
|
|
|
|
let fill_byte = C_u8(bcx.ccx, 0);
|
|
|
|
let size = C_uint(bcx.ccx, nonnull.stride().bytes());
|
|
|
|
let align = C_i32(bcx.ccx, nonnull.align.abi() as i32);
|
2016-12-10 21:32:44 -06:00
|
|
|
base::call_memset(bcx, llptr, fill_byte, size, align, false);
|
2016-09-15 12:02:10 -05:00
|
|
|
} else {
|
2016-08-28 19:44:19 -05:00
|
|
|
let path = discrfield.iter().map(|&i| i as usize).collect::<Vec<_>>();
|
2016-12-11 09:59:20 -06:00
|
|
|
let llptrptr = bcx.gepi(val, &path[..]);
|
2016-09-15 12:02:10 -05:00
|
|
|
let llptrty = val_ty(llptrptr).element_type();
|
2016-12-28 19:20:26 -06:00
|
|
|
bcx.store(C_null(llptrty), llptrptr, None);
|
2016-09-15 12:02:10 -05:00
|
|
|
}
|
2013-03-31 17:55:30 -05:00
|
|
|
}
|
|
|
|
}
|
2016-08-28 19:44:19 -05:00
|
|
|
_ => bug!("Cannot handle {} represented as {:#?}", t, l)
|
2013-02-18 16:16:21 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-31 17:00:24 -06:00
|
|
|
fn target_sets_discr_via_memset<'a, 'tcx>(bcx: &Builder<'a, 'tcx>) -> bool {
|
2017-01-01 09:46:34 -06:00
|
|
|
bcx.sess().target.target.arch == "arm" || bcx.sess().target.target.arch == "aarch64"
|
2016-09-15 12:02:10 -05:00
|
|
|
}
|
|
|
|
|
2017-01-02 12:00:42 -06:00
|
|
|
pub fn assert_discr_in_range(min: Disr, max: Disr, discr: Disr) {
|
2016-08-28 19:44:19 -05:00
|
|
|
if min <= max {
|
|
|
|
assert!(min <= discr && discr <= max)
|
|
|
|
} else {
|
|
|
|
assert!(min <= discr || discr <= max)
|
2013-07-01 00:42:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-26 02:43:42 -06:00
|
|
|
// FIXME this utility routine should be somewhere more general
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2014-10-14 15:36:11 -05:00
|
|
|
fn roundup(x: u64, a: u32) -> u64 { let a = a as u64; ((x + (a - 1)) / a) * a }
|
2013-02-18 16:16:21 -06:00
|
|
|
|
2014-11-24 19:06:06 -06:00
|
|
|
/// Extract a field of a constant value, as appropriate for its
|
|
|
|
/// representation.
|
|
|
|
///
|
|
|
|
/// (Not to be confused with `common::const_get_elt`, which operates on
|
|
|
|
/// raw LLVM-level structs and arrays.)
|
2016-08-28 19:44:19 -05:00
|
|
|
pub fn const_get_field<'a, 'tcx>(ccx: &CrateContext<'a, 'tcx>, t: Ty<'tcx>,
|
|
|
|
val: ValueRef, _discr: Disr,
|
2016-03-28 18:46:02 -05:00
|
|
|
ix: usize) -> ValueRef {
|
2016-08-28 19:44:19 -05:00
|
|
|
let l = ccx.layout_of(t);
|
|
|
|
match *l {
|
|
|
|
layout::CEnum { .. } => bug!("element access in C-like enum const"),
|
2016-11-18 12:41:21 -06:00
|
|
|
layout::Univariant { ref variant, .. } => {
|
2016-11-20 13:04:17 -06:00
|
|
|
const_struct_field(val, variant.memory_index[ix] as usize)
|
2016-11-18 12:41:21 -06:00
|
|
|
}
|
|
|
|
layout::Vector { .. } => const_struct_field(val, ix),
|
2016-08-28 19:44:19 -05:00
|
|
|
layout::UntaggedUnion { .. } => const_struct_field(val, 0),
|
|
|
|
_ => bug!("{} does not have fields.", t)
|
2013-02-18 16:16:21 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-28 13:24:30 -06:00
|
|
|
/// Extract field of struct-like const, skipping our alignment padding.
|
2016-02-18 11:49:45 -06:00
|
|
|
fn const_struct_field(val: ValueRef, ix: usize) -> ValueRef {
|
2013-02-18 16:16:21 -06:00
|
|
|
// Get the ix-th non-undef element of the struct.
|
|
|
|
let mut real_ix = 0; // actual position in the struct
|
|
|
|
let mut ix = ix; // logical index relative to real_ix
|
|
|
|
let mut field;
|
|
|
|
loop {
|
|
|
|
loop {
|
2016-02-18 11:49:45 -06:00
|
|
|
field = const_get_elt(val, &[real_ix]);
|
2013-02-18 16:16:21 -06:00
|
|
|
if !is_undef(field) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
real_ix = real_ix + 1;
|
|
|
|
}
|
|
|
|
if ix == 0 {
|
|
|
|
return field;
|
|
|
|
}
|
|
|
|
ix = ix - 1;
|
|
|
|
real_ix = real_ix + 1;
|
|
|
|
}
|
|
|
|
}
|