1008945528
this has been replaced by `for`
217 lines
5.4 KiB
Rust
217 lines
5.4 KiB
Rust
// Copyright 2012-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.
|
|
|
|
|
|
use std::libc::c_uint;
|
|
use std::num;
|
|
use std::vec;
|
|
use lib::llvm::{llvm, Integer, Pointer, Float, Double, Struct, Array};
|
|
use lib::llvm::{Attribute, StructRetAttribute};
|
|
use middle::trans::context::task_llcx;
|
|
use middle::trans::cabi::*;
|
|
|
|
use middle::trans::type_::Type;
|
|
|
|
fn align_up_to(off: uint, a: uint) -> uint {
|
|
return (off + a - 1u) / a * a;
|
|
}
|
|
|
|
fn align(off: uint, ty: Type) -> uint {
|
|
let a = ty_align(ty);
|
|
return align_up_to(off, a);
|
|
}
|
|
|
|
fn ty_align(ty: Type) -> uint {
|
|
match ty.kind() {
|
|
Integer => {
|
|
unsafe {
|
|
((llvm::LLVMGetIntTypeWidth(ty.to_ref()) as uint) + 7) / 8
|
|
}
|
|
}
|
|
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)))
|
|
}
|
|
}
|
|
Array => {
|
|
let elt = ty.element_type();
|
|
ty_align(elt)
|
|
}
|
|
_ => fail!("ty_size: unhandled type")
|
|
}
|
|
}
|
|
|
|
fn ty_size(ty: Type) -> uint {
|
|
match ty.kind() {
|
|
Integer => {
|
|
unsafe {
|
|
((llvm::LLVMGetIntTypeWidth(ty.to_ref()) as uint) + 7) / 8
|
|
}
|
|
}
|
|
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)
|
|
}
|
|
}
|
|
Array => {
|
|
let len = ty.array_length();
|
|
let elt = ty.element_type();
|
|
let eltsz = ty_size(elt);
|
|
len * eltsz
|
|
}
|
|
_ => fail!("ty_size: unhandled type")
|
|
}
|
|
}
|
|
|
|
fn classify_ret_ty(ty: Type) -> (LLVMType, Option<Attribute>) {
|
|
return if is_reg_ty(ty) {
|
|
(LLVMType { cast: false, ty: ty }, None)
|
|
} else {
|
|
(LLVMType { cast: false, ty: ty.ptr_to() }, Some(StructRetAttribute))
|
|
};
|
|
}
|
|
|
|
fn classify_arg_ty(ty: Type, offset: &mut uint) -> (LLVMType, Option<Attribute>) {
|
|
let orig_offset = *offset;
|
|
let size = ty_size(ty) * 8;
|
|
let mut align = ty_align(ty);
|
|
|
|
align = num::min(num::max(align, 4), 8);
|
|
*offset = align_up_to(*offset, align);
|
|
*offset += align_up_to(size, align * 8) / 8;
|
|
|
|
let padding = padding_ty(align, orig_offset);
|
|
return if !is_reg_ty(ty) {
|
|
(LLVMType {
|
|
cast: true,
|
|
ty: struct_ty(ty, padding, true)
|
|
}, None)
|
|
} else if padding.is_some() {
|
|
(LLVMType {
|
|
cast: true,
|
|
ty: struct_ty(ty, padding, false)
|
|
}, None)
|
|
} else {
|
|
(LLVMType { cast: false, ty: ty }, None)
|
|
};
|
|
}
|
|
|
|
fn is_reg_ty(ty: Type) -> bool {
|
|
return match ty.kind() {
|
|
Integer
|
|
| Pointer
|
|
| Float
|
|
| Double => true,
|
|
_ => false
|
|
};
|
|
}
|
|
|
|
fn padding_ty(align: uint, offset: uint) -> Option<Type> {
|
|
if ((align - 1 ) & offset) > 0 {
|
|
return Some(Type::i32());
|
|
}
|
|
|
|
return None;
|
|
}
|
|
|
|
fn coerce_to_int(size: uint) -> ~[Type] {
|
|
let int_ty = Type::i32();
|
|
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 {
|
|
args.push(Type::from_ref(llvm::LLVMIntTypeInContext(task_llcx(), r as c_uint)));
|
|
}
|
|
}
|
|
|
|
args
|
|
}
|
|
|
|
fn struct_ty(ty: Type,
|
|
padding: Option<Type>,
|
|
coerce: bool) -> Type {
|
|
let size = ty_size(ty) * 8;
|
|
let mut fields = padding.map_default(~[], |p| ~[*p]);
|
|
|
|
if coerce {
|
|
fields = vec::append(fields, coerce_to_int(size));
|
|
} else {
|
|
fields.push(ty);
|
|
}
|
|
|
|
return Type::struct_(fields, false);
|
|
}
|
|
|
|
enum MIPS_ABIInfo { MIPS_ABIInfo }
|
|
|
|
impl ABIInfo for MIPS_ABIInfo {
|
|
fn compute_info(&self,
|
|
atys: &[Type],
|
|
rty: Type,
|
|
ret_def: bool) -> FnType {
|
|
let (ret_ty, ret_attr) = if ret_def {
|
|
classify_ret_ty(rty)
|
|
} else {
|
|
(LLVMType { cast: false, ty: Type::void() }, None)
|
|
};
|
|
|
|
let mut ret_ty = ret_ty;
|
|
|
|
let sret = ret_attr.is_some();
|
|
let mut arg_tys = ~[];
|
|
let mut attrs = ~[];
|
|
let mut offset = if sret { 4 } else { 0 };
|
|
|
|
for aty in atys.iter() {
|
|
let (ty, attr) = classify_arg_ty(*aty, &mut offset);
|
|
arg_tys.push(ty);
|
|
attrs.push(attr);
|
|
};
|
|
|
|
if sret {
|
|
arg_tys = vec::append(~[ret_ty], arg_tys);
|
|
attrs = vec::append(~[ret_attr], attrs);
|
|
ret_ty = LLVMType { cast: false, ty: Type::void() };
|
|
}
|
|
|
|
return FnType {
|
|
arg_tys: arg_tys,
|
|
ret_ty: ret_ty,
|
|
attrs: attrs,
|
|
sret: sret
|
|
};
|
|
}
|
|
}
|
|
|
|
pub fn abi_info() -> @ABIInfo {
|
|
return @MIPS_ABIInfo as @ABIInfo;
|
|
}
|