2016-02-23 22:43:04 +02:00
|
|
|
// Copyright 2012-2016 The Rust Project Developers. See the COPYRIGHT
|
2013-01-25 14:56:56 -08: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.
|
|
|
|
|
2017-03-10 06:25:57 +02:00
|
|
|
use llvm::{self, ValueRef, AttributePlace};
|
2016-03-22 19:23:36 +02:00
|
|
|
use base;
|
2016-12-31 16:00:24 -07:00
|
|
|
use builder::Builder;
|
2017-03-14 01:08:21 +02:00
|
|
|
use common::{type_is_fat_ptr, C_uint};
|
2016-03-22 19:23:36 +02:00
|
|
|
use context::CrateContext;
|
|
|
|
use cabi_x86;
|
|
|
|
use cabi_x86_64;
|
|
|
|
use cabi_x86_win64;
|
|
|
|
use cabi_arm;
|
|
|
|
use cabi_aarch64;
|
|
|
|
use cabi_powerpc;
|
|
|
|
use cabi_powerpc64;
|
2016-09-09 23:00:23 +02:00
|
|
|
use cabi_s390x;
|
2016-03-22 19:23:36 +02:00
|
|
|
use cabi_mips;
|
2016-08-26 17:06:13 -05:00
|
|
|
use cabi_mips64;
|
2016-03-22 19:23:36 +02:00
|
|
|
use cabi_asmjs;
|
2016-11-13 11:03:44 -05:00
|
|
|
use cabi_msp430;
|
2016-12-12 12:41:45 -05:00
|
|
|
use cabi_sparc;
|
2016-12-03 10:55:50 -06:00
|
|
|
use cabi_sparc64;
|
2016-12-22 16:24:29 -05:00
|
|
|
use cabi_nvptx;
|
|
|
|
use cabi_nvptx64;
|
2017-04-09 02:03:31 -04:00
|
|
|
use cabi_hexagon;
|
2017-03-10 06:25:57 +02:00
|
|
|
use machine::llalign_of_min;
|
2016-03-22 19:23:36 +02:00
|
|
|
use type_::Type;
|
|
|
|
use type_of;
|
2016-02-23 21:55:19 +02:00
|
|
|
|
2016-03-29 08:50:44 +03:00
|
|
|
use rustc::hir;
|
2016-03-22 17:30:57 +02:00
|
|
|
use rustc::ty::{self, Ty};
|
2017-03-10 06:25:57 +02:00
|
|
|
use rustc::ty::layout::{self, Layout, LayoutTyper, TyLayout, Size};
|
2016-02-23 21:55:19 +02:00
|
|
|
|
2016-03-06 16:30:21 +02:00
|
|
|
use libc::c_uint;
|
2016-06-08 00:35:01 +03:00
|
|
|
use std::cmp;
|
2017-03-10 06:25:57 +02:00
|
|
|
use std::iter;
|
2016-03-06 16:30:21 +02:00
|
|
|
|
2016-02-23 22:43:04 +02:00
|
|
|
pub use syntax::abi::Abi;
|
2016-04-19 09:11:46 +03:00
|
|
|
pub use rustc::ty::layout::{FAT_PTR_ADDR, FAT_PTR_EXTRA};
|
2013-01-25 14:56:56 -08:00
|
|
|
|
2016-02-18 19:49:45 +02:00
|
|
|
#[derive(Clone, Copy, PartialEq, Debug)]
|
2016-02-25 19:35:40 +02:00
|
|
|
enum ArgKind {
|
2013-09-25 18:30:44 +08:00
|
|
|
/// Pass the argument directly using the normal converted
|
|
|
|
/// LLVM type or by coercing to another specified type
|
|
|
|
Direct,
|
|
|
|
/// Pass the argument indirectly via a hidden pointer
|
2014-03-09 15:42:22 +09:00
|
|
|
Indirect,
|
|
|
|
/// Ignore the argument (useful for empty struct)
|
|
|
|
Ignore,
|
2013-09-25 18:30:44 +08:00
|
|
|
}
|
|
|
|
|
2016-11-16 23:36:08 +01:00
|
|
|
// Hack to disable non_upper_case_globals only for the bitflags! and not for the rest
|
|
|
|
// of this module
|
|
|
|
pub use self::attr_impl::ArgAttribute;
|
|
|
|
|
|
|
|
#[allow(non_upper_case_globals)]
|
2017-03-14 01:08:21 +02:00
|
|
|
#[allow(unused)]
|
2016-11-16 23:36:08 +01:00
|
|
|
mod attr_impl {
|
|
|
|
// The subset of llvm::Attribute needed for arguments, packed into a bitfield.
|
|
|
|
bitflags! {
|
|
|
|
#[derive(Default, Debug)]
|
2016-12-21 21:42:10 +03:00
|
|
|
flags ArgAttribute : u16 {
|
2016-11-16 23:36:08 +01:00
|
|
|
const ByVal = 1 << 0,
|
|
|
|
const NoAlias = 1 << 1,
|
|
|
|
const NoCapture = 1 << 2,
|
|
|
|
const NonNull = 1 << 3,
|
|
|
|
const ReadOnly = 1 << 4,
|
|
|
|
const SExt = 1 << 5,
|
|
|
|
const StructRet = 1 << 6,
|
|
|
|
const ZExt = 1 << 7,
|
2016-12-21 21:42:10 +03:00
|
|
|
const InReg = 1 << 8,
|
2016-11-16 23:36:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! for_each_kind {
|
|
|
|
($flags: ident, $f: ident, $($kind: ident),+) => ({
|
|
|
|
$(if $flags.contains(ArgAttribute::$kind) { $f(llvm::Attribute::$kind) })+
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ArgAttribute {
|
|
|
|
fn for_each_kind<F>(&self, mut f: F) where F: FnMut(llvm::Attribute) {
|
|
|
|
for_each_kind!(self, f,
|
2016-12-21 21:42:10 +03:00
|
|
|
ByVal, NoAlias, NoCapture, NonNull, ReadOnly, SExt, StructRet, ZExt, InReg)
|
2016-11-16 23:36:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A compact representation of LLVM attributes (at least those relevant for this module)
|
|
|
|
/// that can be manipulated without interacting with LLVM's Attribute machinery.
|
|
|
|
#[derive(Copy, Clone, Debug, Default)]
|
|
|
|
pub struct ArgAttributes {
|
|
|
|
regular: ArgAttribute,
|
|
|
|
dereferenceable_bytes: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ArgAttributes {
|
|
|
|
pub fn set(&mut self, attr: ArgAttribute) -> &mut Self {
|
|
|
|
self.regular = self.regular | attr;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_dereferenceable(&mut self, bytes: u64) -> &mut Self {
|
|
|
|
self.dereferenceable_bytes = bytes;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn apply_llfn(&self, idx: AttributePlace, llfn: ValueRef) {
|
|
|
|
unsafe {
|
|
|
|
self.regular.for_each_kind(|attr| attr.apply_llfn(idx, llfn));
|
|
|
|
if self.dereferenceable_bytes != 0 {
|
|
|
|
llvm::LLVMRustAddDereferenceableAttr(llfn,
|
|
|
|
idx.as_uint(),
|
|
|
|
self.dereferenceable_bytes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn apply_callsite(&self, idx: AttributePlace, callsite: ValueRef) {
|
|
|
|
unsafe {
|
|
|
|
self.regular.for_each_kind(|attr| attr.apply_callsite(idx, callsite));
|
|
|
|
if self.dereferenceable_bytes != 0 {
|
|
|
|
llvm::LLVMRustAddDereferenceableCallSiteAttr(callsite,
|
|
|
|
idx.as_uint(),
|
|
|
|
self.dereferenceable_bytes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-03-10 06:25:57 +02:00
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
|
|
|
|
pub enum RegKind {
|
|
|
|
Integer,
|
|
|
|
Float,
|
|
|
|
Vector
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
|
|
|
|
pub struct Reg {
|
|
|
|
pub kind: RegKind,
|
|
|
|
pub size: Size,
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! reg_ctor {
|
|
|
|
($name:ident, $kind:ident, $bits:expr) => {
|
|
|
|
pub fn $name() -> Reg {
|
|
|
|
Reg {
|
|
|
|
kind: RegKind::$kind,
|
|
|
|
size: Size::from_bits($bits)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Reg {
|
|
|
|
reg_ctor!(i8, Integer, 8);
|
|
|
|
reg_ctor!(i16, Integer, 16);
|
|
|
|
reg_ctor!(i32, Integer, 32);
|
|
|
|
reg_ctor!(i64, Integer, 64);
|
|
|
|
|
|
|
|
reg_ctor!(f32, Float, 32);
|
|
|
|
reg_ctor!(f64, Float, 64);
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Reg {
|
|
|
|
fn llvm_type(&self, ccx: &CrateContext) -> Type {
|
|
|
|
match self.kind {
|
|
|
|
RegKind::Integer => Type::ix(ccx, self.size.bits()),
|
|
|
|
RegKind::Float => {
|
|
|
|
match self.size.bits() {
|
|
|
|
32 => Type::f32(ccx),
|
|
|
|
64 => Type::f64(ccx),
|
|
|
|
_ => bug!("unsupported float: {:?}", self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
RegKind::Vector => {
|
|
|
|
Type::vector(&Type::i8(ccx), self.size.bytes())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// An argument passed entirely registers with the
|
|
|
|
/// same kind (e.g. HFA / HVA on PPC64 and AArch64).
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct Uniform {
|
|
|
|
pub unit: Reg,
|
|
|
|
|
|
|
|
/// The total size of the argument, which can be:
|
|
|
|
/// * equal to `unit.size` (one scalar/vector)
|
|
|
|
/// * a multiple of `unit.size` (an array of scalar/vectors)
|
|
|
|
/// * if `unit.kind` is `Integer`, the last element
|
|
|
|
/// can be shorter, i.e. `{ i64, i64, i32 }` for
|
|
|
|
/// 64-bit integers with a total size of 20 bytes
|
|
|
|
pub total: Size,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Reg> for Uniform {
|
|
|
|
fn from(unit: Reg) -> Uniform {
|
|
|
|
Uniform {
|
|
|
|
unit,
|
|
|
|
total: unit.size
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Uniform {
|
|
|
|
fn llvm_type(&self, ccx: &CrateContext) -> Type {
|
|
|
|
let llunit = self.unit.llvm_type(ccx);
|
|
|
|
|
|
|
|
if self.total <= self.unit.size {
|
|
|
|
return llunit;
|
|
|
|
}
|
|
|
|
|
|
|
|
let count = self.total.bytes() / self.unit.size.bytes();
|
|
|
|
let rem_bytes = self.total.bytes() % self.unit.size.bytes();
|
|
|
|
|
|
|
|
if rem_bytes == 0 {
|
|
|
|
return Type::array(&llunit, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only integers can be really split further.
|
|
|
|
assert_eq!(self.unit.kind, RegKind::Integer);
|
|
|
|
|
|
|
|
let args: Vec<_> = (0..count).map(|_| llunit)
|
|
|
|
.chain(iter::once(Type::ix(ccx, rem_bytes * 8)))
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
Type::struct_(ccx, &args, false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait LayoutExt<'tcx> {
|
|
|
|
fn is_aggregate(&self) -> bool;
|
|
|
|
fn homogenous_aggregate<'a>(&self, ccx: &CrateContext<'a, 'tcx>) -> Option<Reg>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> LayoutExt<'tcx> for TyLayout<'tcx> {
|
|
|
|
fn is_aggregate(&self) -> bool {
|
|
|
|
match *self.layout {
|
|
|
|
Layout::Scalar { .. } |
|
|
|
|
Layout::RawNullablePointer { .. } |
|
|
|
|
Layout::CEnum { .. } |
|
|
|
|
Layout::Vector { .. } => false,
|
|
|
|
|
|
|
|
Layout::Array { .. } |
|
|
|
|
Layout::FatPointer { .. } |
|
|
|
|
Layout::Univariant { .. } |
|
|
|
|
Layout::UntaggedUnion { .. } |
|
|
|
|
Layout::General { .. } |
|
|
|
|
Layout::StructWrappedNullablePointer { .. } => true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn homogenous_aggregate<'a>(&self, ccx: &CrateContext<'a, 'tcx>) -> Option<Reg> {
|
|
|
|
match *self.layout {
|
|
|
|
// The primitives for this algorithm.
|
|
|
|
Layout::Scalar { value, .. } |
|
|
|
|
Layout::RawNullablePointer { value, .. } => {
|
|
|
|
let kind = match value {
|
|
|
|
layout::Int(_) |
|
|
|
|
layout::Pointer => RegKind::Integer,
|
|
|
|
layout::F32 |
|
|
|
|
layout::F64 => RegKind::Float
|
|
|
|
};
|
|
|
|
Some(Reg {
|
|
|
|
kind,
|
|
|
|
size: self.size(ccx)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
Layout::CEnum { .. } => {
|
|
|
|
Some(Reg {
|
|
|
|
kind: RegKind::Integer,
|
|
|
|
size: self.size(ccx)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
Layout::Vector { .. } => {
|
|
|
|
Some(Reg {
|
2017-04-11 01:04:33 +03:00
|
|
|
kind: RegKind::Vector,
|
2017-03-10 06:25:57 +02:00
|
|
|
size: self.size(ccx)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
Layout::Array { count, .. } => {
|
|
|
|
if count > 0 {
|
|
|
|
self.field(ccx, 0).homogenous_aggregate(ccx)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Layout::Univariant { ref variant, .. } => {
|
|
|
|
let mut unaligned_offset = Size::from_bytes(0);
|
|
|
|
let mut result = None;
|
|
|
|
|
|
|
|
for i in 0..self.field_count() {
|
|
|
|
if unaligned_offset != variant.offsets[i] {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
let field = self.field(ccx, i);
|
|
|
|
match (result, field.homogenous_aggregate(ccx)) {
|
|
|
|
// The field itself must be a homogenous aggregate.
|
|
|
|
(_, None) => return None,
|
|
|
|
// If this is the first field, record the unit.
|
|
|
|
(None, Some(unit)) => {
|
|
|
|
result = Some(unit);
|
|
|
|
}
|
|
|
|
// For all following fields, the unit must be the same.
|
|
|
|
(Some(prev_unit), Some(unit)) => {
|
|
|
|
if prev_unit != unit {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Keep track of the offset (without padding).
|
|
|
|
let size = field.size(ccx);
|
|
|
|
match unaligned_offset.checked_add(size, ccx) {
|
|
|
|
Some(offset) => unaligned_offset = offset,
|
|
|
|
None => return None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// There needs to be no padding.
|
|
|
|
if unaligned_offset != self.size(ccx) {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
result
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Layout::UntaggedUnion { .. } => {
|
|
|
|
let mut max = Size::from_bytes(0);
|
|
|
|
let mut result = None;
|
|
|
|
|
|
|
|
for i in 0..self.field_count() {
|
|
|
|
let field = self.field(ccx, i);
|
|
|
|
match (result, field.homogenous_aggregate(ccx)) {
|
|
|
|
// The field itself must be a homogenous aggregate.
|
|
|
|
(_, None) => return None,
|
|
|
|
// If this is the first field, record the unit.
|
|
|
|
(None, Some(unit)) => {
|
|
|
|
result = Some(unit);
|
|
|
|
}
|
|
|
|
// For all following fields, the unit must be the same.
|
|
|
|
(Some(prev_unit), Some(unit)) => {
|
|
|
|
if prev_unit != unit {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Keep track of the offset (without padding).
|
|
|
|
let size = field.size(ccx);
|
|
|
|
if size > max {
|
|
|
|
max = size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// There needs to be no padding.
|
|
|
|
if max != self.size(ccx) {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
result
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rust-specific types, which we can ignore for C ABIs.
|
|
|
|
Layout::FatPointer { .. } |
|
|
|
|
Layout::General { .. } |
|
|
|
|
Layout::StructWrappedNullablePointer { .. } => None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum CastTarget {
|
|
|
|
Uniform(Uniform),
|
|
|
|
Pair(Reg, Reg)
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Reg> for CastTarget {
|
|
|
|
fn from(unit: Reg) -> CastTarget {
|
|
|
|
CastTarget::Uniform(Uniform::from(unit))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Uniform> for CastTarget {
|
|
|
|
fn from(uniform: Uniform) -> CastTarget {
|
|
|
|
CastTarget::Uniform(uniform)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CastTarget {
|
|
|
|
fn llvm_type(&self, ccx: &CrateContext) -> Type {
|
|
|
|
match *self {
|
|
|
|
CastTarget::Uniform(u) => u.llvm_type(ccx),
|
|
|
|
CastTarget::Pair(a, b) => {
|
|
|
|
Type::struct_(ccx, &[
|
|
|
|
a.llvm_type(ccx),
|
|
|
|
b.llvm_type(ccx)
|
|
|
|
], false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-16 23:36:08 +01:00
|
|
|
|
2013-09-25 18:30:44 +08:00
|
|
|
/// Information about how a specific C type
|
|
|
|
/// should be passed to or returned from a function
|
|
|
|
///
|
|
|
|
/// This is borrowed from clang's ABIInfo.h
|
2016-02-18 19:49:45 +02:00
|
|
|
#[derive(Clone, Copy, Debug)]
|
2017-03-10 06:25:57 +02:00
|
|
|
pub struct ArgType<'tcx> {
|
2016-02-25 19:35:40 +02:00
|
|
|
kind: ArgKind,
|
2017-03-10 06:25:57 +02:00
|
|
|
pub layout: TyLayout<'tcx>,
|
2013-09-25 18:30:44 +08:00
|
|
|
/// Coerced LLVM Type
|
2016-02-23 21:55:19 +02:00
|
|
|
pub cast: Option<Type>,
|
2013-09-25 18:30:44 +08:00
|
|
|
/// Dummy argument, which is emitted before the real argument
|
2016-02-23 21:55:19 +02:00
|
|
|
pub pad: Option<Type>,
|
2016-02-25 19:35:40 +02:00
|
|
|
/// LLVM attributes of argument
|
2016-11-16 23:36:08 +01:00
|
|
|
pub attrs: ArgAttributes
|
2013-09-25 18:30:44 +08:00
|
|
|
}
|
|
|
|
|
2017-03-10 06:25:57 +02:00
|
|
|
impl<'a, 'tcx> ArgType<'tcx> {
|
|
|
|
fn new(layout: TyLayout<'tcx>) -> ArgType<'tcx> {
|
2013-09-25 18:30:44 +08:00
|
|
|
ArgType {
|
2016-02-25 19:35:40 +02:00
|
|
|
kind: ArgKind::Direct,
|
2017-03-10 06:25:57 +02:00
|
|
|
layout: layout,
|
2014-03-09 15:42:22 +09:00
|
|
|
cast: None,
|
|
|
|
pad: None,
|
2016-11-16 23:36:08 +01:00
|
|
|
attrs: ArgAttributes::default()
|
2014-03-09 15:42:22 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-10 06:25:57 +02:00
|
|
|
pub fn make_indirect(&mut self, ccx: &CrateContext<'a, 'tcx>) {
|
2016-03-06 12:36:39 +02:00
|
|
|
assert_eq!(self.kind, ArgKind::Direct);
|
|
|
|
|
2016-02-25 19:35:40 +02:00
|
|
|
// Wipe old attributes, likely not valid through indirection.
|
2016-11-16 23:36:08 +01:00
|
|
|
self.attrs = ArgAttributes::default();
|
2016-02-25 19:35:40 +02:00
|
|
|
|
2017-03-10 06:25:57 +02:00
|
|
|
let llarg_sz = self.layout.size(ccx).bytes();
|
2016-02-25 19:35:40 +02:00
|
|
|
|
|
|
|
// For non-immediate arguments the callee gets its own copy of
|
|
|
|
// the value on the stack, so there are no aliases. It's also
|
|
|
|
// program-invisible so can't possibly capture
|
2016-11-16 23:36:08 +01:00
|
|
|
self.attrs.set(ArgAttribute::NoAlias)
|
|
|
|
.set(ArgAttribute::NoCapture)
|
2016-02-25 19:35:40 +02:00
|
|
|
.set_dereferenceable(llarg_sz);
|
|
|
|
|
|
|
|
self.kind = ArgKind::Indirect;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn ignore(&mut self) {
|
2016-03-06 12:36:39 +02:00
|
|
|
assert_eq!(self.kind, ArgKind::Direct);
|
2016-02-25 19:35:40 +02:00
|
|
|
self.kind = ArgKind::Ignore;
|
|
|
|
}
|
|
|
|
|
2016-02-17 19:33:27 +13:00
|
|
|
pub fn extend_integer_width_to(&mut self, bits: u64) {
|
|
|
|
// Only integers have signedness
|
2017-03-10 06:25:57 +02:00
|
|
|
let (i, signed) = match *self.layout {
|
|
|
|
Layout::Scalar { value, .. } => {
|
|
|
|
match value {
|
|
|
|
layout::Int(i) => {
|
|
|
|
if self.layout.ty.is_integral() {
|
|
|
|
(i, self.layout.ty.is_signed())
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => return
|
|
|
|
}
|
2016-02-17 19:33:27 +13:00
|
|
|
}
|
2017-03-10 06:25:57 +02:00
|
|
|
|
|
|
|
// Rust enum types that map onto C enums also need to follow
|
|
|
|
// the target ABI zero-/sign-extension rules.
|
|
|
|
Layout::CEnum { discr, signed, .. } => (discr, signed),
|
|
|
|
|
|
|
|
_ => return
|
|
|
|
};
|
|
|
|
|
|
|
|
if i.size().bits() < bits {
|
|
|
|
self.attrs.set(if signed {
|
|
|
|
ArgAttribute::SExt
|
|
|
|
} else {
|
|
|
|
ArgAttribute::ZExt
|
|
|
|
});
|
2016-02-17 19:33:27 +13:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-10 06:25:57 +02:00
|
|
|
pub fn cast_to<T: Into<CastTarget>>(&mut self, ccx: &CrateContext, target: T) {
|
|
|
|
self.cast = Some(target.into().llvm_type(ccx));
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn pad_with(&mut self, ccx: &CrateContext, reg: Reg) {
|
|
|
|
self.pad = Some(reg.llvm_type(ccx));
|
|
|
|
}
|
|
|
|
|
2013-09-25 18:30:44 +08:00
|
|
|
pub fn is_indirect(&self) -> bool {
|
2016-02-25 19:35:40 +02:00
|
|
|
self.kind == ArgKind::Indirect
|
2013-09-25 18:30:44 +08:00
|
|
|
}
|
2014-03-09 15:42:22 +09:00
|
|
|
|
|
|
|
pub fn is_ignore(&self) -> bool {
|
2016-02-25 19:35:40 +02:00
|
|
|
self.kind == ArgKind::Ignore
|
2014-03-09 15:42:22 +09:00
|
|
|
}
|
2016-03-06 13:23:20 +02:00
|
|
|
|
2017-03-10 06:25:57 +02:00
|
|
|
/// Get the LLVM type for an lvalue of the original Rust type of
|
|
|
|
/// this argument/return, i.e. the result of `type_of::type_of`.
|
|
|
|
pub fn memory_ty(&self, ccx: &CrateContext<'a, 'tcx>) -> Type {
|
|
|
|
type_of::type_of(ccx, self.layout.ty)
|
|
|
|
}
|
|
|
|
|
2016-03-06 13:23:20 +02:00
|
|
|
/// Store a direct/indirect value described by this ArgType into a
|
|
|
|
/// lvalue for the original Rust type of this argument/return.
|
|
|
|
/// Can be used for both storing formal arguments into Rust variables
|
|
|
|
/// or results of call/invoke instructions into their destinations.
|
2017-03-10 06:25:57 +02:00
|
|
|
pub fn store(&self, bcx: &Builder<'a, 'tcx>, mut val: ValueRef, dst: ValueRef) {
|
2016-03-06 13:23:20 +02:00
|
|
|
if self.is_ignore() {
|
|
|
|
return;
|
|
|
|
}
|
2016-12-19 16:25:00 -07:00
|
|
|
let ccx = bcx.ccx;
|
2016-03-06 13:23:20 +02:00
|
|
|
if self.is_indirect() {
|
2017-03-10 06:25:57 +02:00
|
|
|
let llsz = C_uint(ccx, self.layout.size(ccx).bytes());
|
|
|
|
let llalign = self.layout.align(ccx).abi();
|
2016-06-08 00:35:01 +03:00
|
|
|
base::call_memcpy(bcx, dst, val, llsz, llalign as u32);
|
2016-03-06 13:23:20 +02:00
|
|
|
} else if let Some(ty) = self.cast {
|
2016-06-08 00:35:01 +03:00
|
|
|
// FIXME(eddyb): Figure out when the simpler Store is safe, clang
|
|
|
|
// uses it for i16 -> {i8, i8}, but not for i24 -> {i8, i8, i8}.
|
|
|
|
let can_store_through_cast_ptr = false;
|
|
|
|
if can_store_through_cast_ptr {
|
|
|
|
let cast_dst = bcx.pointercast(dst, ty.ptr_to());
|
2017-03-10 06:25:57 +02:00
|
|
|
let llalign = self.layout.align(ccx).abi();
|
|
|
|
bcx.store(val, cast_dst, Some(llalign as u32));
|
2016-06-08 00:35:01 +03:00
|
|
|
} else {
|
|
|
|
// The actual return type is a struct, but the ABI
|
|
|
|
// adaptation code has cast it into some scalar type. The
|
|
|
|
// code that follows is the only reliable way I have
|
|
|
|
// found to do a transform like i64 -> {i32,i32}.
|
|
|
|
// Basically we dump the data onto the stack then memcpy it.
|
|
|
|
//
|
|
|
|
// Other approaches I tried:
|
|
|
|
// - Casting rust ret pointer to the foreign type and using Store
|
|
|
|
// is (a) unsafe if size of foreign type > size of rust type and
|
|
|
|
// (b) runs afoul of strict aliasing rules, yielding invalid
|
|
|
|
// assembly under -O (specifically, the store gets removed).
|
|
|
|
// - Truncating foreign type to correct integral type and then
|
|
|
|
// bitcasting to the struct type yields invalid cast errors.
|
|
|
|
|
|
|
|
// We instead thus allocate some scratch space...
|
2017-01-15 09:49:29 +11:00
|
|
|
let llscratch = bcx.alloca(ty, "abi_cast", None);
|
2016-06-08 00:35:01 +03:00
|
|
|
base::Lifetime::Start.call(bcx, llscratch);
|
|
|
|
|
|
|
|
// ...where we first store the value...
|
2016-12-29 02:20:26 +01:00
|
|
|
bcx.store(val, llscratch, None);
|
2016-06-08 00:35:01 +03:00
|
|
|
|
|
|
|
// ...and then memcpy it to the intended destination.
|
|
|
|
base::call_memcpy(bcx,
|
|
|
|
bcx.pointercast(dst, Type::i8p(ccx)),
|
|
|
|
bcx.pointercast(llscratch, Type::i8p(ccx)),
|
2017-03-10 06:25:57 +02:00
|
|
|
C_uint(ccx, self.layout.size(ccx).bytes()),
|
|
|
|
cmp::min(self.layout.align(ccx).abi() as u32,
|
|
|
|
llalign_of_min(ccx, ty)));
|
2016-06-08 00:35:01 +03:00
|
|
|
|
|
|
|
base::Lifetime::End.call(bcx, llscratch);
|
2016-03-06 13:23:20 +02:00
|
|
|
}
|
|
|
|
} else {
|
2017-03-10 06:25:57 +02:00
|
|
|
if self.layout.ty == ccx.tcx().types.bool {
|
2016-06-08 00:35:01 +03:00
|
|
|
val = bcx.zext(val, Type::i8(ccx));
|
2016-03-06 13:23:20 +02:00
|
|
|
}
|
2016-12-29 02:20:26 +01:00
|
|
|
bcx.store(val, dst, None);
|
2016-03-06 13:23:20 +02:00
|
|
|
}
|
|
|
|
}
|
2016-03-06 16:30:21 +02:00
|
|
|
|
2017-03-10 06:25:57 +02:00
|
|
|
pub fn store_fn_arg(&self, bcx: &Builder<'a, 'tcx>, idx: &mut usize, dst: ValueRef) {
|
2016-03-06 16:30:21 +02:00
|
|
|
if self.pad.is_some() {
|
|
|
|
*idx += 1;
|
|
|
|
}
|
|
|
|
if self.is_ignore() {
|
|
|
|
return;
|
|
|
|
}
|
2016-12-31 16:00:24 -07:00
|
|
|
let val = llvm::get_param(bcx.llfn(), *idx as c_uint);
|
2016-03-06 16:30:21 +02:00
|
|
|
*idx += 1;
|
2016-03-09 14:20:22 +02:00
|
|
|
self.store(bcx, val, dst);
|
2016-03-06 16:30:21 +02:00
|
|
|
}
|
2013-01-25 14:56:56 -08:00
|
|
|
}
|
|
|
|
|
2013-05-21 15:25:44 -04:00
|
|
|
/// Metadata describing how the arguments to a native function
|
|
|
|
/// should be passed in order to respect the native ABI.
|
|
|
|
///
|
|
|
|
/// I will do my best to describe this structure, but these
|
|
|
|
/// comments are reverse-engineered and may be inaccurate. -NDM
|
2016-12-31 04:55:29 +02:00
|
|
|
#[derive(Clone, Debug)]
|
2017-03-10 06:25:57 +02:00
|
|
|
pub struct FnType<'tcx> {
|
2013-09-25 18:30:44 +08:00
|
|
|
/// The LLVM types of each argument.
|
2017-03-10 06:25:57 +02:00
|
|
|
pub args: Vec<ArgType<'tcx>>,
|
2013-01-25 14:56:56 -08:00
|
|
|
|
2013-05-21 15:25:44 -04:00
|
|
|
/// LLVM return type.
|
2017-03-10 06:25:57 +02:00
|
|
|
pub ret: ArgType<'tcx>,
|
2016-02-23 21:55:19 +02:00
|
|
|
|
|
|
|
pub variadic: bool,
|
|
|
|
|
|
|
|
pub cconv: llvm::CallConv
|
2013-05-21 15:25:44 -04:00
|
|
|
}
|
2013-04-18 15:53:29 -07:00
|
|
|
|
2017-03-10 06:25:57 +02:00
|
|
|
impl<'a, 'tcx> FnType<'tcx> {
|
|
|
|
pub fn new(ccx: &CrateContext<'a, 'tcx>,
|
|
|
|
sig: ty::FnSig<'tcx>,
|
|
|
|
extra_args: &[Ty<'tcx>]) -> FnType<'tcx> {
|
2017-02-13 10:51:06 +02:00
|
|
|
let mut fn_ty = FnType::unadjusted(ccx, sig, extra_args);
|
|
|
|
fn_ty.adjust_for_abi(ccx, sig);
|
2016-03-06 12:38:46 +02:00
|
|
|
fn_ty
|
|
|
|
}
|
|
|
|
|
2017-03-10 06:25:57 +02:00
|
|
|
pub fn new_vtable(ccx: &CrateContext<'a, 'tcx>,
|
|
|
|
sig: ty::FnSig<'tcx>,
|
|
|
|
extra_args: &[Ty<'tcx>]) -> FnType<'tcx> {
|
2017-03-08 18:33:21 +02:00
|
|
|
let mut fn_ty = FnType::unadjusted(ccx, sig, extra_args);
|
|
|
|
// Don't pass the vtable, it's not an argument of the virtual fn.
|
|
|
|
fn_ty.args[1].ignore();
|
|
|
|
fn_ty.adjust_for_abi(ccx, sig);
|
|
|
|
fn_ty
|
|
|
|
}
|
|
|
|
|
2017-03-10 06:25:57 +02:00
|
|
|
pub fn unadjusted(ccx: &CrateContext<'a, 'tcx>,
|
|
|
|
sig: ty::FnSig<'tcx>,
|
|
|
|
extra_args: &[Ty<'tcx>]) -> FnType<'tcx> {
|
2016-02-23 22:43:04 +02:00
|
|
|
use self::Abi::*;
|
2017-02-13 10:51:06 +02:00
|
|
|
let cconv = match ccx.sess().target.target.adjust_abi(sig.abi) {
|
2016-03-06 12:38:46 +02:00
|
|
|
RustIntrinsic | PlatformIntrinsic |
|
2016-02-24 19:37:22 +02:00
|
|
|
Rust | RustCall => llvm::CCallConv,
|
2016-02-23 21:55:19 +02:00
|
|
|
|
|
|
|
// It's the ABI's job to select this, not us.
|
2016-03-29 01:46:02 +02:00
|
|
|
System => bug!("system abi should be selected elsewhere"),
|
2016-02-23 21:55:19 +02:00
|
|
|
|
|
|
|
Stdcall => llvm::X86StdcallCallConv,
|
|
|
|
Fastcall => llvm::X86FastcallCallConv,
|
|
|
|
Vectorcall => llvm::X86_VectorCall,
|
2017-05-17 09:40:46 -04:00
|
|
|
Thiscall => llvm::X86_ThisCall,
|
2016-02-23 21:55:19 +02:00
|
|
|
C => llvm::CCallConv,
|
2016-12-23 10:05:41 +02:00
|
|
|
Unadjusted => llvm::CCallConv,
|
2016-02-23 21:55:19 +02:00
|
|
|
Win64 => llvm::X86_64_Win64,
|
2016-06-27 02:34:02 +02:00
|
|
|
SysV64 => llvm::X86_64_SysV,
|
2016-11-16 17:33:23 -05:00
|
|
|
Aapcs => llvm::ArmAapcsCallConv,
|
2016-12-22 16:24:29 -05:00
|
|
|
PtxKernel => llvm::PtxKernel,
|
2016-12-18 23:45:20 -05:00
|
|
|
Msp430Interrupt => llvm::Msp430Intr,
|
2017-02-14 21:39:42 +01:00
|
|
|
X86Interrupt => llvm::X86_Intr,
|
2016-02-23 21:55:19 +02:00
|
|
|
|
|
|
|
// These API constants ought to be more specific...
|
|
|
|
Cdecl => llvm::CCallConv,
|
|
|
|
};
|
|
|
|
|
2016-11-28 19:35:38 -07:00
|
|
|
let mut inputs = sig.inputs();
|
2017-02-13 10:51:06 +02:00
|
|
|
let extra_args = if sig.abi == RustCall {
|
2016-11-28 20:25:33 -07:00
|
|
|
assert!(!sig.variadic && extra_args.is_empty());
|
2016-02-24 19:37:22 +02:00
|
|
|
|
2016-11-28 19:35:38 -07:00
|
|
|
match sig.inputs().last().unwrap().sty {
|
2017-01-11 15:58:37 +08:00
|
|
|
ty::TyTuple(ref tupled_arguments, _) => {
|
2016-11-28 19:35:38 -07:00
|
|
|
inputs = &sig.inputs()[0..sig.inputs().len() - 1];
|
2017-03-29 23:52:45 -04:00
|
|
|
tupled_arguments
|
2016-02-24 19:37:22 +02:00
|
|
|
}
|
|
|
|
_ => {
|
2016-03-29 01:46:02 +02:00
|
|
|
bug!("argument to function with \"rust-call\" ABI \
|
|
|
|
is not a tuple");
|
2016-02-24 19:37:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2016-11-28 20:25:33 -07:00
|
|
|
assert!(sig.variadic || extra_args.is_empty());
|
2016-02-24 19:37:22 +02:00
|
|
|
extra_args
|
|
|
|
};
|
|
|
|
|
2016-03-18 14:28:11 +02:00
|
|
|
let target = &ccx.sess().target.target;
|
|
|
|
let win_x64_gnu = target.target_os == "windows"
|
|
|
|
&& target.arch == "x86_64"
|
|
|
|
&& target.target_env == "gnu";
|
2016-09-09 23:00:23 +02:00
|
|
|
let linux_s390x = target.target_os == "linux"
|
|
|
|
&& target.arch == "s390x"
|
|
|
|
&& target.target_env == "gnu";
|
2017-02-13 10:51:06 +02:00
|
|
|
let rust_abi = match sig.abi {
|
2016-03-18 14:28:11 +02:00
|
|
|
RustIntrinsic | PlatformIntrinsic | Rust | RustCall => true,
|
|
|
|
_ => false
|
|
|
|
};
|
|
|
|
|
|
|
|
let arg_of = |ty: Ty<'tcx>, is_return: bool| {
|
2017-03-10 06:25:57 +02:00
|
|
|
let mut arg = ArgType::new(ccx.layout_of(ty));
|
2016-02-25 15:35:47 +02:00
|
|
|
if ty.is_bool() {
|
2016-11-16 23:36:08 +01:00
|
|
|
arg.attrs.set(ArgAttribute::ZExt);
|
2016-02-25 15:35:47 +02:00
|
|
|
} else {
|
2017-03-10 06:25:57 +02:00
|
|
|
if arg.layout.size(ccx).bytes() == 0 {
|
2016-03-18 14:28:11 +02:00
|
|
|
// For some forsaken reason, x86_64-pc-windows-gnu
|
|
|
|
// doesn't ignore zero-sized struct arguments.
|
2016-09-09 23:00:23 +02:00
|
|
|
// The same is true for s390x-unknown-linux-gnu.
|
|
|
|
if is_return || rust_abi ||
|
|
|
|
(!win_x64_gnu && !linux_s390x) {
|
2016-03-18 14:28:11 +02:00
|
|
|
arg.ignore();
|
|
|
|
}
|
2016-03-06 12:36:39 +02:00
|
|
|
}
|
2016-02-25 15:35:47 +02:00
|
|
|
}
|
2017-03-10 06:25:57 +02:00
|
|
|
arg
|
2016-02-25 15:35:47 +02:00
|
|
|
};
|
|
|
|
|
2016-11-28 19:35:38 -07:00
|
|
|
let ret_ty = sig.output();
|
2016-03-18 14:28:11 +02:00
|
|
|
let mut ret = arg_of(ret_ty, true);
|
2016-03-06 12:36:39 +02:00
|
|
|
|
2016-12-18 11:50:07 -07:00
|
|
|
if !type_is_fat_ptr(ccx, ret_ty) {
|
2016-03-06 12:36:39 +02:00
|
|
|
// The `noalias` attribute on the return value is useful to a
|
|
|
|
// function ptr caller.
|
2017-01-21 17:40:31 +03:00
|
|
|
if ret_ty.is_box() {
|
2016-03-06 12:36:39 +02:00
|
|
|
// `Box` pointer return values never alias because ownership
|
|
|
|
// is transferred
|
2016-11-16 23:36:08 +01:00
|
|
|
ret.attrs.set(ArgAttribute::NoAlias);
|
2016-03-06 12:36:39 +02:00
|
|
|
}
|
2016-02-25 15:35:47 +02:00
|
|
|
|
2016-03-06 12:36:39 +02:00
|
|
|
// We can also mark the return value as `dereferenceable` in certain cases
|
|
|
|
match ret_ty.sty {
|
|
|
|
// These are not really pointers but pairs, (pointer, len)
|
2017-01-21 17:40:31 +03:00
|
|
|
ty::TyRef(_, ty::TypeAndMut { ty, .. }) => {
|
2017-03-02 05:35:25 +02:00
|
|
|
ret.attrs.set_dereferenceable(ccx.size_of(ty));
|
2016-02-26 01:10:40 +02:00
|
|
|
}
|
2017-01-21 17:40:31 +03:00
|
|
|
ty::TyAdt(def, _) if def.is_box() => {
|
2017-03-02 05:35:25 +02:00
|
|
|
ret.attrs.set_dereferenceable(ccx.size_of(ret_ty.boxed_ty()));
|
2017-01-21 17:40:31 +03:00
|
|
|
}
|
2016-03-06 12:36:39 +02:00
|
|
|
_ => {}
|
2016-02-26 01:10:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-24 19:37:22 +02:00
|
|
|
let mut args = Vec::with_capacity(inputs.len() + extra_args.len());
|
2016-02-26 01:10:40 +02:00
|
|
|
|
|
|
|
// Handle safe Rust thin and fat pointers.
|
|
|
|
let rust_ptr_attrs = |ty: Ty<'tcx>, arg: &mut ArgType| match ty.sty {
|
|
|
|
// `Box` pointer parameters never alias because ownership is transferred
|
2017-01-21 17:40:31 +03:00
|
|
|
ty::TyAdt(def, _) if def.is_box() => {
|
2016-11-16 23:36:08 +01:00
|
|
|
arg.attrs.set(ArgAttribute::NoAlias);
|
2017-01-21 17:40:31 +03:00
|
|
|
Some(ty.boxed_ty())
|
2016-02-26 01:10:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ty::TyRef(b, mt) => {
|
2016-03-22 17:30:57 +02:00
|
|
|
use rustc::ty::{BrAnon, ReLateBound};
|
2016-02-26 01:10:40 +02:00
|
|
|
|
|
|
|
// `&mut` pointer parameters never alias other parameters, or mutable global data
|
|
|
|
//
|
|
|
|
// `&T` where `T` contains no `UnsafeCell<U>` is immutable, and can be marked as
|
|
|
|
// both `readonly` and `noalias`, as LLVM's definition of `noalias` is based solely
|
|
|
|
// on memory dependencies rather than pointer equality
|
2017-04-17 21:18:56 +03:00
|
|
|
let is_freeze = ccx.shared().type_is_freeze(mt.ty);
|
2016-02-26 01:10:40 +02:00
|
|
|
|
2017-04-17 21:18:56 +03:00
|
|
|
if mt.mutbl != hir::MutMutable && is_freeze {
|
2016-11-16 23:36:08 +01:00
|
|
|
arg.attrs.set(ArgAttribute::NoAlias);
|
2016-02-26 01:10:40 +02:00
|
|
|
}
|
|
|
|
|
2017-04-17 21:18:56 +03:00
|
|
|
if mt.mutbl == hir::MutImmutable && is_freeze {
|
2016-11-16 23:36:08 +01:00
|
|
|
arg.attrs.set(ArgAttribute::ReadOnly);
|
2016-02-26 01:10:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// When a reference in an argument has no named lifetime, it's
|
|
|
|
// impossible for that reference to escape this function
|
|
|
|
// (returned or stored beyond the call by a closure).
|
|
|
|
if let ReLateBound(_, BrAnon(_)) = *b {
|
2016-11-16 23:36:08 +01:00
|
|
|
arg.attrs.set(ArgAttribute::NoCapture);
|
2016-02-26 01:10:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Some(mt.ty)
|
|
|
|
}
|
|
|
|
_ => None
|
|
|
|
};
|
|
|
|
|
2016-02-24 19:37:22 +02:00
|
|
|
for ty in inputs.iter().chain(extra_args.iter()) {
|
2016-03-18 14:28:11 +02:00
|
|
|
let mut arg = arg_of(ty, false);
|
2016-02-26 01:10:40 +02:00
|
|
|
|
2017-03-10 06:25:57 +02:00
|
|
|
if let ty::layout::FatPointer { .. } = *arg.layout {
|
|
|
|
let mut data = ArgType::new(arg.layout.field(ccx, 0));
|
|
|
|
let mut info = ArgType::new(arg.layout.field(ccx, 1));
|
2016-02-26 01:10:40 +02:00
|
|
|
|
|
|
|
if let Some(inner) = rust_ptr_attrs(ty, &mut data) {
|
2016-11-16 23:36:08 +01:00
|
|
|
data.attrs.set(ArgAttribute::NonNull);
|
2016-02-26 01:10:40 +02:00
|
|
|
if ccx.tcx().struct_tail(inner).is_trait() {
|
2017-02-21 21:08:06 +13:00
|
|
|
// vtables can be safely marked non-null, readonly
|
|
|
|
// and noalias.
|
2016-11-16 23:36:08 +01:00
|
|
|
info.attrs.set(ArgAttribute::NonNull);
|
2017-02-21 21:08:06 +13:00
|
|
|
info.attrs.set(ArgAttribute::ReadOnly);
|
|
|
|
info.attrs.set(ArgAttribute::NoAlias);
|
2016-02-26 01:10:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
args.push(data);
|
|
|
|
args.push(info);
|
2016-02-24 11:09:25 +02:00
|
|
|
} else {
|
2016-02-26 01:10:40 +02:00
|
|
|
if let Some(inner) = rust_ptr_attrs(ty, &mut arg) {
|
2017-03-02 05:35:25 +02:00
|
|
|
arg.attrs.set_dereferenceable(ccx.size_of(inner));
|
2016-02-26 01:10:40 +02:00
|
|
|
}
|
2016-02-25 15:35:47 +02:00
|
|
|
args.push(arg);
|
2016-02-24 11:09:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-06 12:38:46 +02:00
|
|
|
FnType {
|
2016-02-24 11:09:25 +02:00
|
|
|
args: args,
|
2016-02-25 15:35:47 +02:00
|
|
|
ret: ret,
|
2016-11-28 20:25:33 -07:00
|
|
|
variadic: sig.variadic,
|
2016-02-23 21:55:19 +02:00
|
|
|
cconv: cconv
|
2016-03-06 12:38:46 +02:00
|
|
|
}
|
|
|
|
}
|
2016-02-23 21:55:19 +02:00
|
|
|
|
2017-03-10 06:25:57 +02:00
|
|
|
fn adjust_for_abi(&mut self,
|
|
|
|
ccx: &CrateContext<'a, 'tcx>,
|
|
|
|
sig: ty::FnSig<'tcx>) {
|
2017-02-13 10:51:06 +02:00
|
|
|
let abi = sig.abi;
|
2016-12-23 10:05:41 +02:00
|
|
|
if abi == Abi::Unadjusted { return }
|
|
|
|
|
2016-03-06 12:38:46 +02:00
|
|
|
if abi == Abi::Rust || abi == Abi::RustCall ||
|
|
|
|
abi == Abi::RustIntrinsic || abi == Abi::PlatformIntrinsic {
|
2017-03-10 06:25:57 +02:00
|
|
|
let fixup = |arg: &mut ArgType<'tcx>| {
|
|
|
|
if !arg.layout.is_aggregate() {
|
|
|
|
return;
|
2016-03-18 01:01:47 +02:00
|
|
|
}
|
|
|
|
|
2017-03-10 06:25:57 +02:00
|
|
|
let size = arg.layout.size(ccx);
|
|
|
|
|
|
|
|
if let Some(unit) = arg.layout.homogenous_aggregate(ccx) {
|
|
|
|
// Replace newtypes with their inner-most type.
|
|
|
|
if unit.size == size {
|
2016-03-18 01:01:47 +02:00
|
|
|
// Needs a cast as we've unpacked a newtype.
|
2017-03-10 06:25:57 +02:00
|
|
|
arg.cast_to(ccx, unit);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pairs of floats.
|
|
|
|
if unit.kind == RegKind::Float {
|
|
|
|
if unit.size.checked_mul(2, ccx) == Some(size) {
|
|
|
|
// FIXME(eddyb) This should be using Uniform instead of a pair,
|
|
|
|
// but the resulting [2 x float/double] breaks emscripten.
|
|
|
|
// See https://github.com/kripken/emscripten-fastcomp/issues/178.
|
|
|
|
arg.cast_to(ccx, CastTarget::Pair(unit, unit));
|
|
|
|
return;
|
|
|
|
}
|
2016-03-18 01:01:47 +02:00
|
|
|
}
|
2016-02-24 19:37:22 +02:00
|
|
|
}
|
2016-03-18 01:01:47 +02:00
|
|
|
|
2017-03-10 06:25:57 +02:00
|
|
|
if size > layout::Pointer.size(ccx) {
|
2016-02-25 19:35:40 +02:00
|
|
|
arg.make_indirect(ccx);
|
2017-03-10 06:25:57 +02:00
|
|
|
} else {
|
2016-02-24 19:37:22 +02:00
|
|
|
// We want to pass small aggregates as immediates, but using
|
|
|
|
// a LLVM aggregate type for this leads to bad optimizations,
|
|
|
|
// so we pick an appropriately sized integer type instead.
|
2017-03-10 06:25:57 +02:00
|
|
|
arg.cast_to(ccx, Reg {
|
|
|
|
kind: RegKind::Integer,
|
|
|
|
size
|
|
|
|
});
|
2016-02-24 19:37:22 +02:00
|
|
|
}
|
|
|
|
};
|
2016-03-06 12:38:46 +02:00
|
|
|
// Fat pointers are returned by-value.
|
|
|
|
if !self.ret.is_ignore() {
|
2016-12-18 11:50:07 -07:00
|
|
|
if !type_is_fat_ptr(ccx, sig.output()) {
|
2016-03-06 12:38:46 +02:00
|
|
|
fixup(&mut self.ret);
|
2016-02-24 19:37:22 +02:00
|
|
|
}
|
2016-02-25 15:35:47 +02:00
|
|
|
}
|
2016-03-06 12:38:46 +02:00
|
|
|
for arg in &mut self.args {
|
|
|
|
if arg.is_ignore() { continue; }
|
2016-02-24 19:37:22 +02:00
|
|
|
fixup(arg);
|
|
|
|
}
|
2016-03-06 12:38:46 +02:00
|
|
|
if self.ret.is_indirect() {
|
2016-11-16 23:36:08 +01:00
|
|
|
self.ret.attrs.set(ArgAttribute::StructRet);
|
2016-02-25 19:35:40 +02:00
|
|
|
}
|
2016-03-06 12:38:46 +02:00
|
|
|
return;
|
2016-02-24 19:37:22 +02:00
|
|
|
}
|
|
|
|
|
2016-02-23 21:55:19 +02:00
|
|
|
match &ccx.sess().target.target.arch[..] {
|
2016-12-21 21:42:10 +03:00
|
|
|
"x86" => {
|
|
|
|
let flavor = if abi == Abi::Fastcall {
|
|
|
|
cabi_x86::Flavor::Fastcall
|
|
|
|
} else {
|
|
|
|
cabi_x86::Flavor::General
|
|
|
|
};
|
|
|
|
cabi_x86::compute_abi_info(ccx, self, flavor);
|
|
|
|
},
|
2016-08-30 03:54:29 +02:00
|
|
|
"x86_64" => if abi == Abi::SysV64 {
|
|
|
|
cabi_x86_64::compute_abi_info(ccx, self);
|
|
|
|
} else if abi == Abi::Win64 || ccx.sess().target.target.options.is_like_windows {
|
2016-03-06 12:38:46 +02:00
|
|
|
cabi_x86_win64::compute_abi_info(ccx, self);
|
2016-02-23 21:55:19 +02:00
|
|
|
} else {
|
2016-03-06 12:38:46 +02:00
|
|
|
cabi_x86_64::compute_abi_info(ccx, self);
|
2016-02-23 21:55:19 +02:00
|
|
|
},
|
2016-03-06 12:38:46 +02:00
|
|
|
"aarch64" => cabi_aarch64::compute_abi_info(ccx, self),
|
2017-03-10 06:25:57 +02:00
|
|
|
"arm" => cabi_arm::compute_abi_info(ccx, self),
|
2016-03-06 12:38:46 +02:00
|
|
|
"mips" => cabi_mips::compute_abi_info(ccx, self),
|
2016-08-26 17:06:13 -05:00
|
|
|
"mips64" => cabi_mips64::compute_abi_info(ccx, self),
|
2016-03-06 12:38:46 +02:00
|
|
|
"powerpc" => cabi_powerpc::compute_abi_info(ccx, self),
|
|
|
|
"powerpc64" => cabi_powerpc64::compute_abi_info(ccx, self),
|
2016-09-09 23:00:23 +02:00
|
|
|
"s390x" => cabi_s390x::compute_abi_info(ccx, self),
|
2016-03-06 12:38:46 +02:00
|
|
|
"asmjs" => cabi_asmjs::compute_abi_info(ccx, self),
|
2016-09-06 00:41:50 +00:00
|
|
|
"wasm32" => cabi_asmjs::compute_abi_info(ccx, self),
|
2016-11-13 11:03:44 -05:00
|
|
|
"msp430" => cabi_msp430::compute_abi_info(ccx, self),
|
2016-12-12 12:41:45 -05:00
|
|
|
"sparc" => cabi_sparc::compute_abi_info(ccx, self),
|
2016-12-03 10:55:50 -06:00
|
|
|
"sparc64" => cabi_sparc64::compute_abi_info(ccx, self),
|
2016-12-22 16:24:29 -05:00
|
|
|
"nvptx" => cabi_nvptx::compute_abi_info(ccx, self),
|
|
|
|
"nvptx64" => cabi_nvptx64::compute_abi_info(ccx, self),
|
2017-04-09 02:03:31 -04:00
|
|
|
"hexagon" => cabi_hexagon::compute_abi_info(ccx, self),
|
2016-02-23 21:55:19 +02:00
|
|
|
a => ccx.sess().fatal(&format!("unrecognized arch \"{}\" in target specification", a))
|
|
|
|
}
|
|
|
|
|
2016-03-06 12:38:46 +02:00
|
|
|
if self.ret.is_indirect() {
|
2016-11-16 23:36:08 +01:00
|
|
|
self.ret.attrs.set(ArgAttribute::StructRet);
|
2016-02-25 19:35:40 +02:00
|
|
|
}
|
2016-02-23 21:55:19 +02:00
|
|
|
}
|
|
|
|
|
2017-03-10 06:25:57 +02:00
|
|
|
pub fn llvm_type(&self, ccx: &CrateContext<'a, 'tcx>) -> Type {
|
2016-02-23 21:55:19 +02:00
|
|
|
let mut llargument_tys = Vec::new();
|
|
|
|
|
2016-03-06 12:36:39 +02:00
|
|
|
let llreturn_ty = if self.ret.is_ignore() {
|
|
|
|
Type::void(ccx)
|
|
|
|
} else if self.ret.is_indirect() {
|
2017-03-10 06:25:57 +02:00
|
|
|
llargument_tys.push(self.ret.memory_ty(ccx).ptr_to());
|
2016-02-23 21:55:19 +02:00
|
|
|
Type::void(ccx)
|
2014-07-23 11:56:36 -07:00
|
|
|
} else {
|
2017-03-10 06:25:57 +02:00
|
|
|
self.ret.cast.unwrap_or_else(|| {
|
|
|
|
type_of::immediate_type_of(ccx, self.ret.layout.ty)
|
|
|
|
})
|
2016-02-23 21:55:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
for arg in &self.args {
|
|
|
|
if arg.is_ignore() {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// add padding
|
|
|
|
if let Some(ty) = arg.pad {
|
|
|
|
llargument_tys.push(ty);
|
|
|
|
}
|
|
|
|
|
|
|
|
let llarg_ty = if arg.is_indirect() {
|
2017-03-10 06:25:57 +02:00
|
|
|
arg.memory_ty(ccx).ptr_to()
|
2015-01-09 18:18:23 +02:00
|
|
|
} else {
|
2017-03-10 06:25:57 +02:00
|
|
|
arg.cast.unwrap_or_else(|| {
|
|
|
|
type_of::immediate_type_of(ccx, arg.layout.ty)
|
|
|
|
})
|
2015-01-09 18:18:23 +02:00
|
|
|
};
|
2016-02-23 21:55:19 +02:00
|
|
|
|
|
|
|
llargument_tys.push(llarg_ty);
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.variadic {
|
|
|
|
Type::variadic_func(&llargument_tys, &llreturn_ty)
|
|
|
|
} else {
|
|
|
|
Type::func(&llargument_tys, &llreturn_ty)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-26 01:10:40 +02:00
|
|
|
pub fn apply_attrs_llfn(&self, llfn: ValueRef) {
|
|
|
|
let mut i = if self.ret.is_indirect() { 1 } else { 0 };
|
2016-03-06 12:36:39 +02:00
|
|
|
if !self.ret.is_ignore() {
|
2016-08-03 00:25:19 +03:00
|
|
|
self.ret.attrs.apply_llfn(llvm::AttributePlace::Argument(i), llfn);
|
2016-03-06 12:36:39 +02:00
|
|
|
}
|
2016-02-26 01:10:40 +02:00
|
|
|
i += 1;
|
|
|
|
for arg in &self.args {
|
|
|
|
if !arg.is_ignore() {
|
|
|
|
if arg.pad.is_some() { i += 1; }
|
2016-08-03 00:25:19 +03:00
|
|
|
arg.attrs.apply_llfn(llvm::AttributePlace::Argument(i), llfn);
|
2016-02-26 01:10:40 +02:00
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn apply_attrs_callsite(&self, callsite: ValueRef) {
|
2016-02-25 12:11:02 +02:00
|
|
|
let mut i = if self.ret.is_indirect() { 1 } else { 0 };
|
2016-03-06 12:36:39 +02:00
|
|
|
if !self.ret.is_ignore() {
|
2016-08-03 00:25:19 +03:00
|
|
|
self.ret.attrs.apply_callsite(llvm::AttributePlace::Argument(i), callsite);
|
2016-03-06 12:36:39 +02:00
|
|
|
}
|
2016-02-23 21:55:19 +02:00
|
|
|
i += 1;
|
|
|
|
for arg in &self.args {
|
2016-02-25 19:35:40 +02:00
|
|
|
if !arg.is_ignore() {
|
|
|
|
if arg.pad.is_some() { i += 1; }
|
2016-08-03 00:25:19 +03:00
|
|
|
arg.attrs.apply_callsite(llvm::AttributePlace::Argument(i), callsite);
|
2016-02-25 19:35:40 +02:00
|
|
|
i += 1;
|
2016-02-23 21:55:19 +02:00
|
|
|
}
|
|
|
|
}
|
2016-03-06 12:34:31 +02:00
|
|
|
|
|
|
|
if self.cconv != llvm::CCallConv {
|
|
|
|
llvm::SetInstructionCallConv(callsite, self.cconv);
|
|
|
|
}
|
2013-01-25 14:56:56 -08:00
|
|
|
}
|
|
|
|
}
|
2016-09-24 18:19:56 -06:00
|
|
|
|
2017-03-10 06:25:57 +02:00
|
|
|
pub fn align_up_to(off: u64, a: u64) -> u64 {
|
|
|
|
(off + a - 1) / a * a
|
2016-09-24 18:19:56 -06:00
|
|
|
}
|