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
|
|
|
|
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};
|
2017-03-01 21:35:25 -06:00
|
|
|
use rustc::ty::{self, Ty};
|
2017-03-09 22:25:51 -06:00
|
|
|
use rustc::ty::layout::{self, LayoutTyper};
|
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-12-26 07:34:03 -06:00
|
|
|
ty::TyGenerator(def_id, substs, _) => {
|
|
|
|
if variant_index > 0 { bug!("{} is a generator, which only has one variant", t);}
|
|
|
|
substs.field_tys(def_id, cx.tcx()).map(|t| {
|
2017-10-16 13:39:32 -05:00
|
|
|
cx.tcx().fully_normalize_associated_types_in(&t)
|
2016-12-26 07:34:03 -06:00
|
|
|
}).collect()
|
|
|
|
},
|
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 {
|
2017-04-10 04:40:24 -05:00
|
|
|
generic_type_of(cx, t, None)
|
2013-11-22 03:16:17 -06:00
|
|
|
}
|
2015-07-27 07:45:20 -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 {
|
2017-04-10 04:40:24 -05:00
|
|
|
generic_type_of(cx, t, Some(name))
|
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);
|
2017-04-10 04:40:24 -05:00
|
|
|
llty.set_struct_body(&struct_llfields(cx, &fields, nonnull_variant),
|
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>,
|
2017-04-10 04:40:24 -05:00
|
|
|
name: Option<&str>) -> Type {
|
2016-08-28 19:44:19 -05:00
|
|
|
let l = cx.layout_of(t);
|
2017-04-10 04:40:24 -05:00
|
|
|
debug!("adt::generic_type_of t: {:?} name: {:?}", t, name);
|
2016-08-28 19:44:19 -05:00
|
|
|
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]);
|
2017-03-09 22:25:57 -06:00
|
|
|
if let layout::Scalar { value: layout::Pointer, .. } = *cx.layout_of(nnty) {
|
|
|
|
Type::i8p(cx)
|
|
|
|
} else {
|
|
|
|
type_of::type_of(cx, nnty)
|
|
|
|
}
|
2016-08-28 19:44:19 -05:00
|
|
|
}
|
|
|
|
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 => {
|
2017-04-10 04:40:24 -05:00
|
|
|
Type::struct_(cx, &struct_llfields(cx, &fields, nonnull),
|
2016-08-28 19:44:19 -05:00
|
|
|
nonnull.packed)
|
2015-07-27 07:45:20 -05:00
|
|
|
}
|
|
|
|
Some(name) => {
|
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 => {
|
2017-04-10 04:40:24 -05:00
|
|
|
let fields = struct_llfields(cx, &fields, &variant);
|
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.)
|
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::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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-21 18:38:23 -05:00
|
|
|
layout::General { discr, size, align, primitive_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();
|
2017-04-21 18:38:23 -05:00
|
|
|
let primitive_align = primitive_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;
|
2017-04-21 18:38:23 -05:00
|
|
|
let variant_fill = union_fill(cx, variant_part_size, primitive_align);
|
2016-08-28 19:44:19 -05:00
|
|
|
|
2017-04-21 18:38:23 -05:00
|
|
|
assert_eq!(machine::llalign_of_min(cx, variant_fill), primitive_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 => {
|
2017-03-24 03:31:26 -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);
|
2017-03-24 03:31:26 -05: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 layout_align = layout::Align::from_bytes(align, align).unwrap();
|
2017-03-09 22:25:51 -06:00
|
|
|
if let Some(ity) = layout::Integer::for_abi_align(cx, layout_align) {
|
2016-09-24 16:37:24 -05:00
|
|
|
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
|
|
|
|
2017-01-14 16:49:29 -06:00
|
|
|
// Double index to account for padding (FieldPath already uses `Struct::memory_index`)
|
|
|
|
fn struct_llfields_path(discrfield: &layout::FieldPath) -> Vec<usize> {
|
|
|
|
discrfield.iter().map(|&i| (i as usize) << 1).collect::<Vec<_>>()
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Lookup `Struct::memory_index` and double it to account for padding
|
|
|
|
pub fn struct_llfields_index(variant: &layout::Struct, index: usize) -> usize {
|
|
|
|
(variant.memory_index[index] as usize) << 1
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
pub fn struct_llfields<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>, field_tys: &Vec<Ty<'tcx>>,
|
2017-04-10 04:40:24 -05:00
|
|
|
variant: &layout::Struct) -> Vec<Type> {
|
2017-01-14 16:49:29 -06:00
|
|
|
debug!("struct_llfields: variant: {:?}", variant);
|
|
|
|
let mut first_field = true;
|
|
|
|
let mut min_offset = 0;
|
|
|
|
let mut result: Vec<Type> = Vec::with_capacity(field_tys.len() * 2);
|
|
|
|
let field_iter = variant.field_index_by_increasing_offset().map(|i| {
|
|
|
|
(i, field_tys[i as usize], variant.offsets[i as usize].bytes()) });
|
2017-04-10 04:40:24 -05:00
|
|
|
for (index, ty, target_offset) in field_iter {
|
2017-01-14 16:49:29 -06:00
|
|
|
if first_field {
|
|
|
|
debug!("struct_llfields: {} ty: {} min_offset: {} target_offset: {}",
|
|
|
|
index, ty, min_offset, target_offset);
|
|
|
|
first_field = false;
|
|
|
|
} else {
|
|
|
|
assert!(target_offset >= min_offset);
|
|
|
|
let padding_bytes = if variant.packed { 0 } else { target_offset - min_offset };
|
|
|
|
result.push(Type::array(&Type::i8(cx), padding_bytes));
|
|
|
|
debug!("struct_llfields: {} ty: {} pad_bytes: {} min_offset: {} target_offset: {}",
|
|
|
|
index, ty, padding_bytes, min_offset, target_offset);
|
|
|
|
}
|
|
|
|
let llty = type_of::in_memory_type_of(cx, ty);
|
|
|
|
result.push(llty);
|
|
|
|
let layout = cx.layout_of(ty);
|
|
|
|
let target_size = layout.size(&cx.tcx().data_layout).bytes();
|
|
|
|
min_offset = target_offset + target_size;
|
|
|
|
}
|
|
|
|
if variant.sized && !field_tys.is_empty() {
|
|
|
|
if variant.stride().bytes() < min_offset {
|
|
|
|
bug!("variant: {:?} stride: {} min_offset: {}", variant, variant.stride().bytes(),
|
|
|
|
min_offset);
|
|
|
|
}
|
|
|
|
let padding_bytes = variant.stride().bytes() - min_offset;
|
|
|
|
debug!("struct_llfields: pad_bytes: {} min_offset: {} min_size: {} stride: {}\n",
|
|
|
|
padding_bytes, min_offset, variant.min_size.bytes(), variant.stride().bytes());
|
|
|
|
result.push(Type::array(&Type::i8(cx), padding_bytes));
|
|
|
|
assert!(result.len() == (field_tys.len() * 2));
|
2013-03-11 03:04:08 -05:00
|
|
|
} else {
|
2017-01-14 16:49:29 -06:00
|
|
|
debug!("struct_llfields: min_offset: {} min_size: {} stride: {}\n",
|
|
|
|
min_offset, variant.min_size.bytes(), variant.stride().bytes());
|
2013-03-11 03:04:08 -05:00
|
|
|
}
|
2017-01-14 16:49:29 -06:00
|
|
|
|
|
|
|
result
|
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
|
|
|
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
|
|
|
}
|
2017-03-01 21:35:25 -06:00
|
|
|
layout::General { discr, ref variants, .. } => {
|
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,
|
2017-03-01 21:35:25 -06:00
|
|
|
0, 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 };
|
2017-03-01 21:35:25 -06:00
|
|
|
let discr = bcx.load(scrutinee, alignment.to_align());
|
|
|
|
bcx.icmp(cmp, discr, C_null(val_ty(discr)))
|
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,
|
2017-02-10 11:29:39 -06:00
|
|
|
Some(llty) => bcx.intcast(val, llty, is_discr_signed(&l))
|
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 {
|
2017-01-14 16:49:29 -06:00
|
|
|
let path = struct_llfields_path(discrfield);
|
|
|
|
let llptrptr = bcx.gepi(scrutinee, &path);
|
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
|
|
|
/// Set the discriminant for a new value of the given case of the given
|
|
|
|
/// representation.
|
2017-04-14 20:14:44 -05:00
|
|
|
pub fn trans_set_discr<'a, 'tcx>(bcx: &Builder<'a, 'tcx>, t: Ty<'tcx>, val: ValueRef, to: u64) {
|
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, .. } => {
|
2017-04-14 20:14:44 -05:00
|
|
|
assert_discr_in_range(min, max, to);
|
2017-08-05 04:27:28 -05:00
|
|
|
bcx.store(C_int(Type::from_integer(bcx.ccx, discr), to as i64),
|
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, .. } => {
|
2017-08-05 04:27:28 -05:00
|
|
|
bcx.store(C_int(Type::from_integer(bcx.ccx, discr), to as i64),
|
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 { .. } => {
|
2017-04-14 20:14:44 -05:00
|
|
|
assert_eq!(to, 0);
|
2016-08-18 07:44:00 -05:00
|
|
|
}
|
2016-08-28 19:44:19 -05:00
|
|
|
layout::RawNullablePointer { nndiscr, .. } => {
|
2017-04-14 20:14:44 -05:00
|
|
|
if to != nndiscr {
|
2017-03-01 21:35:25 -06:00
|
|
|
let llptrty = val_ty(val).element_type();
|
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, .. } => {
|
2017-04-14 20:14:44 -05:00
|
|
|
if to != 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);
|
2017-08-05 04:27:28 -05:00
|
|
|
let size = C_usize(bcx.ccx, nonnull.stride().bytes());
|
2016-12-19 17:25:00 -06:00
|
|
|
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 {
|
2017-01-14 16:49:29 -06:00
|
|
|
let path = struct_llfields_path(discrfield);
|
2017-03-24 03:31:26 -05: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-04-14 20:14:44 -05:00
|
|
|
pub fn assert_discr_in_range<D: PartialOrd>(min: D, max: D, discr: D) {
|
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>,
|
2017-04-14 20:14:44 -05:00
|
|
|
val: ValueRef,
|
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;
|
|
|
|
}
|
|
|
|
}
|