rust/src/librustc/middle/trans/cabi_mips.rs

185 lines
4.5 KiB
Rust
Raw Normal View History

// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2013-01-29 11:31:50 -06: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.
#[allow(non_uppercase_pattern_statics)];
use std::libc::c_uint;
use std::num;
2013-06-15 09:29:52 -05:00
use lib::llvm::{llvm, Integer, Pointer, Float, Double, Struct, Array};
use lib::llvm::StructRetAttribute;
use middle::trans::context::CrateContext;
2013-06-14 00:38:17 -05:00
use middle::trans::context::task_llcx;
2013-01-29 11:31:50 -06:00
use middle::trans::cabi::*;
2013-06-16 05:52:44 -05:00
use middle::trans::type_::Type;
2013-01-29 11:31:50 -06:00
fn align_up_to(off: uint, a: uint) -> uint {
return (off + a - 1u) / a * a;
}
2013-06-15 09:29:52 -05:00
fn align(off: uint, ty: Type) -> uint {
2013-01-29 11:31:50 -06:00
let a = ty_align(ty);
return align_up_to(off, a);
}
2013-06-15 22:45:48 -05:00
fn ty_align(ty: Type) -> uint {
2013-06-16 05:52:44 -05:00
match ty.kind() {
Integer => {
unsafe {
((llvm::LLVMGetIntTypeWidth(ty.to_ref()) as uint) + 7) / 8
2013-01-29 11:31:50 -06:00
}
2013-06-16 05:52:44 -05:00
}
Pointer => 4,
Float => 4,
Double => 8,
Struct => {
if ty.is_packed() {
1
} else {
let str_tys = ty.field_types();
str_tys.iter().fold(1, |a, t| num::max(a, ty_align(*t)))
2013-06-16 05:52:44 -05:00
}
}
Array => {
let elt = ty.element_type();
ty_align(elt)
}
_ => fail!("ty_size: unhandled type")
2013-01-29 11:31:50 -06:00
}
}
2013-06-16 05:52:44 -05:00
fn ty_size(ty: Type) -> uint {
match ty.kind() {
Integer => {
unsafe {
((llvm::LLVMGetIntTypeWidth(ty.to_ref()) as uint) + 7) / 8
2013-01-29 11:31:50 -06:00
}
2013-06-16 05:52:44 -05:00
}
Pointer => 4,
Float => 4,
Double => 8,
Struct => {
if ty.is_packed() {
let str_tys = ty.field_types();
str_tys.iter().fold(0, |s, t| s + ty_size(*t))
} else {
let str_tys = ty.field_types();
let size = str_tys.iter().fold(0, |s, t| align(s, *t) + ty_size(*t));
align(size, ty)
2013-01-29 11:31:50 -06:00
}
2013-06-16 05:52:44 -05:00
}
Array => {
let len = ty.array_length();
let elt = ty.element_type();
let eltsz = ty_size(elt);
len * eltsz
}
_ => fail!("ty_size: unhandled type")
2013-01-29 11:31:50 -06:00
}
}
fn classify_ret_ty(ty: Type) -> ArgType {
if is_reg_ty(ty) {
ArgType::direct(ty, None, None, None)
2013-01-29 11:31:50 -06:00
} else {
ArgType::indirect(ty, Some(StructRetAttribute))
}
2013-01-29 11:31:50 -06:00
}
fn classify_arg_ty(ty: Type, offset: &mut uint) -> ArgType {
2013-01-29 11:31:50 -06:00
let orig_offset = *offset;
let size = ty_size(ty) * 8;
let mut align = ty_align(ty);
align = num::min(num::max(align, 4), 8);
2013-01-29 11:31:50 -06:00
*offset = align_up_to(*offset, align);
*offset += align_up_to(size, align * 8) / 8;
if is_reg_ty(ty) {
ArgType::direct(ty, None, None, None)
2013-01-29 11:31:50 -06:00
} else {
ArgType::direct(
ty,
Some(struct_ty(ty)),
padding_ty(align, orig_offset),
None
)
}
2013-01-29 11:31:50 -06:00
}
2013-06-16 05:52:44 -05:00
fn is_reg_ty(ty: Type) -> bool {
2013-06-16 06:11:17 -05:00
return match ty.kind() {
Integer
| Pointer
| Float
| Double => true,
_ => false
};
2013-01-29 11:31:50 -06:00
}
2013-06-15 22:45:48 -05:00
fn padding_ty(align: uint, offset: uint) -> Option<Type> {
2013-01-29 11:31:50 -06:00
if ((align - 1 ) & offset) > 0 {
2013-06-15 22:45:48 -05:00
return Some(Type::i32());
2013-01-29 11:31:50 -06:00
}
return None;
}
2013-06-15 22:45:48 -05:00
fn coerce_to_int(size: uint) -> ~[Type] {
let int_ty = Type::i32();
2013-01-29 11:31:50 -06:00
let mut args = ~[];
let mut n = size / 32;
while n > 0 {
args.push(int_ty);
n -= 1;
}
let r = size % 32;
if r > 0 {
unsafe {
2013-06-16 05:52:44 -05:00
args.push(Type::from_ref(llvm::LLVMIntTypeInContext(task_llcx(), r as c_uint)));
2013-01-29 11:31:50 -06:00
}
}
2013-06-16 05:52:44 -05:00
args
2013-01-29 11:31:50 -06:00
}
fn struct_ty(ty: Type) -> Type {
2013-01-29 11:31:50 -06:00
let size = ty_size(ty) * 8;
let fields = coerce_to_int(size);
2013-06-15 22:45:48 -05:00
return Type::struct_(fields, false);
2013-01-29 11:31:50 -06:00
}
pub fn compute_abi_info(_ccx: &mut CrateContext,
atys: &[Type],
rty: Type,
ret_def: bool) -> FnType {
let ret_ty = if ret_def {
classify_ret_ty(rty)
} else {
ArgType::direct(Type::void(), None, None, None)
};
let sret = ret_ty.is_indirect();
let mut arg_tys = ~[];
let mut offset = if sret { 4 } else { 0 };
2013-01-29 11:31:50 -06:00
for aty in atys.iter() {
let ty = classify_arg_ty(*aty, &mut offset);
arg_tys.push(ty);
};
return FnType {
arg_tys: arg_tys,
ret_ty: ret_ty,
};
2013-01-29 11:31:50 -06:00
}