2018-06-24 07:25:29 -05:00
|
|
|
extern crate rustc_target;
|
|
|
|
|
2018-07-14 04:59:42 -05:00
|
|
|
use std::borrow::Cow;
|
2018-07-14 05:21:45 -05:00
|
|
|
use std::fmt;
|
2018-07-14 04:59:42 -05:00
|
|
|
|
2018-06-22 12:18:53 -05:00
|
|
|
use syntax::ast::{IntTy, UintTy};
|
2018-06-24 07:25:29 -05:00
|
|
|
use self::rustc_target::spec::{HasTargetSpec, Target};
|
2018-06-22 12:18:53 -05:00
|
|
|
|
2018-07-14 04:59:42 -05:00
|
|
|
use cranelift_module::{Module, Linkage, FuncId};
|
2018-06-22 12:18:53 -05:00
|
|
|
|
|
|
|
use prelude::*;
|
|
|
|
|
2018-07-14 04:59:42 -05:00
|
|
|
pub type CurrentBackend = ::cranelift_simplejit::SimpleJITBackend;
|
2018-06-22 12:18:53 -05:00
|
|
|
|
|
|
|
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
|
|
|
|
pub struct Variable(Local);
|
|
|
|
|
|
|
|
impl EntityRef for Variable {
|
|
|
|
fn new(u: usize) -> Self {
|
|
|
|
Variable(Local::new(u))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn index(self) -> usize {
|
|
|
|
self.0.index()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-24 07:01:41 -05:00
|
|
|
fn cton_type_from_ty(ty: Ty) -> Option<types::Type> {
|
2018-06-22 12:18:53 -05:00
|
|
|
Some(match ty.sty {
|
|
|
|
TypeVariants::TyBool => types::I8,
|
|
|
|
TypeVariants::TyUint(size) => {
|
|
|
|
match size {
|
|
|
|
UintTy::U8 => types::I8,
|
|
|
|
UintTy::U16 => types::I16,
|
|
|
|
UintTy::U32 => types::I32,
|
|
|
|
UintTy::U64 => types::I64,
|
2018-06-28 13:27:43 -05:00
|
|
|
UintTy::U128 => unimplemented!("u128"),
|
2018-06-23 11:26:54 -05:00
|
|
|
UintTy::Usize => types::I64,
|
2018-06-22 12:18:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
TypeVariants::TyInt(size) => {
|
|
|
|
match size {
|
|
|
|
IntTy::I8 => types::I8,
|
|
|
|
IntTy::I16 => types::I16,
|
|
|
|
IntTy::I32 => types::I32,
|
|
|
|
IntTy::I64 => types::I64,
|
2018-06-28 13:27:43 -05:00
|
|
|
IntTy::I128 => unimplemented!("i128"),
|
2018-06-23 11:26:54 -05:00
|
|
|
IntTy::Isize => types::I64,
|
2018-06-22 12:18:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
TypeVariants::TyFnPtr(_) => types::I64,
|
2018-06-23 11:54:15 -05:00
|
|
|
TypeVariants::TyRef(..) | TypeVariants::TyRawPtr(..) => types::I64,
|
2018-06-30 11:54:08 -05:00
|
|
|
TypeVariants::TyParam(_) => bug!("{:?}", ty),
|
2018-06-22 12:18:53 -05:00
|
|
|
_ => return None,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-06-23 11:26:54 -05:00
|
|
|
#[derive(Debug, Copy, Clone)]
|
2018-06-26 12:44:19 -05:00
|
|
|
pub enum CValue<'tcx> {
|
|
|
|
ByRef(Value, TyLayout<'tcx>),
|
|
|
|
ByVal(Value, TyLayout<'tcx>),
|
|
|
|
Func(FuncRef, TyLayout<'tcx>),
|
2018-06-22 12:18:53 -05:00
|
|
|
}
|
|
|
|
|
2018-06-26 12:44:19 -05:00
|
|
|
impl<'tcx> CValue<'tcx> {
|
|
|
|
pub fn layout(&self) -> TyLayout<'tcx> {
|
|
|
|
match *self {
|
|
|
|
CValue::ByRef(_, layout) |
|
|
|
|
CValue::ByVal(_, layout) |
|
|
|
|
CValue::Func(_, layout) => layout
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn force_stack<'a>(self, fx: &mut FunctionCx<'a, 'tcx>) -> Value where 'tcx: 'a {
|
2018-06-22 12:18:53 -05:00
|
|
|
match self {
|
2018-06-26 12:44:19 -05:00
|
|
|
CValue::ByRef(value, _layout) => value,
|
|
|
|
CValue::ByVal(value, layout) => {
|
2018-06-22 12:18:53 -05:00
|
|
|
let stack_slot = fx.bcx.create_stack_slot(StackSlotData {
|
|
|
|
kind: StackSlotKind::ExplicitSlot,
|
|
|
|
size: layout.size.bytes() as u32,
|
|
|
|
offset: None,
|
|
|
|
});
|
|
|
|
fx.bcx.ins().stack_store(value, stack_slot, 0);
|
|
|
|
fx.bcx.ins().stack_addr(types::I64, stack_slot, 0)
|
|
|
|
}
|
2018-06-26 12:44:19 -05:00
|
|
|
CValue::Func(func, ty) => {
|
2018-06-22 12:18:53 -05:00
|
|
|
let func = fx.bcx.ins().func_addr(types::I64, func);
|
2018-06-26 12:44:19 -05:00
|
|
|
CValue::ByVal(func, ty).force_stack(fx)
|
2018-06-22 12:18:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-26 12:44:19 -05:00
|
|
|
pub fn load_value<'a>(self, fx: &mut FunctionCx<'a, 'tcx>) -> Value where 'tcx: 'a{
|
2018-06-22 12:18:53 -05:00
|
|
|
match self {
|
2018-06-30 09:27:11 -05:00
|
|
|
CValue::ByRef(addr, layout) => {
|
2018-06-26 12:44:19 -05:00
|
|
|
let cton_ty = fx.cton_type(layout.ty).expect(&format!("{:?}", layout.ty));
|
2018-06-30 09:27:11 -05:00
|
|
|
fx.bcx.ins().load(cton_ty, MemFlags::new(), addr, 0)
|
2018-06-22 12:18:53 -05:00
|
|
|
}
|
2018-06-26 12:44:19 -05:00
|
|
|
CValue::ByVal(value, _layout) => value,
|
|
|
|
CValue::Func(func, _layout) => {
|
2018-06-22 12:18:53 -05:00
|
|
|
fx.bcx.ins().func_addr(types::I64, func)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-26 12:44:19 -05:00
|
|
|
pub fn expect_byref(self) -> (Value, TyLayout<'tcx>) {
|
2018-06-22 12:18:53 -05:00
|
|
|
match self {
|
2018-06-26 12:44:19 -05:00
|
|
|
CValue::ByRef(value, layout) => (value, layout),
|
|
|
|
CValue::ByVal(_, _) => bug!("Expected CValue::ByRef, found CValue::ByVal"),
|
|
|
|
CValue::Func(_, _) => bug!("Expected CValue::ByRef, found CValue::Func"),
|
2018-06-22 12:18:53 -05:00
|
|
|
}
|
|
|
|
}
|
2018-06-23 11:26:54 -05:00
|
|
|
|
2018-06-26 12:44:19 -05:00
|
|
|
pub fn value_field<'a>(self, fx: &mut FunctionCx<'a, 'tcx>, field: mir::Field) -> CValue<'tcx> where 'tcx: 'a {
|
|
|
|
use rustc::ty::util::IntTypeExt;
|
|
|
|
|
|
|
|
let (base, layout) = match self {
|
|
|
|
CValue::ByRef(addr, layout) => (addr, layout),
|
2018-06-23 11:26:54 -05:00
|
|
|
_ => bug!("place_field for {:?}", self),
|
|
|
|
};
|
|
|
|
let field_offset = layout.fields.offset(field.index());
|
2018-06-26 12:44:19 -05:00
|
|
|
let field_layout = if field.index() == 0 {
|
|
|
|
fx.layout_of(if let ty::TyAdt(adt_def, _) = layout.ty.sty {
|
|
|
|
adt_def.repr.discr_type().to_ty(fx.tcx)
|
|
|
|
} else {
|
|
|
|
// This can only be `0`, for now, so `u8` will suffice.
|
|
|
|
fx.tcx.types.u8
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
layout.field(&*fx, field.index())
|
|
|
|
};
|
2018-06-23 11:26:54 -05:00
|
|
|
if field_offset.bytes() > 0 {
|
|
|
|
let field_offset = fx.bcx.ins().iconst(types::I64, field_offset.bytes() as i64);
|
2018-06-26 12:44:19 -05:00
|
|
|
CValue::ByRef(fx.bcx.ins().iadd(base, field_offset), field_layout)
|
2018-06-23 11:26:54 -05:00
|
|
|
} else {
|
2018-06-26 12:44:19 -05:00
|
|
|
CValue::ByRef(base, field_layout)
|
2018-06-23 11:26:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-26 12:44:19 -05:00
|
|
|
pub fn const_val<'a>(fx: &mut FunctionCx<'a, 'tcx>, ty: Ty<'tcx>, const_val: i64) -> CValue<'tcx> where 'tcx: 'a {
|
|
|
|
let cton_ty = fx.cton_type(ty).unwrap();
|
|
|
|
let layout = fx.layout_of(ty);
|
|
|
|
CValue::ByVal(fx.bcx.ins().iconst(cton_ty, const_val), layout)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn unchecked_cast_to(self, layout: TyLayout<'tcx>) -> Self {
|
|
|
|
match self {
|
|
|
|
CValue::ByRef(addr, _) => CValue::ByRef(addr, layout),
|
|
|
|
CValue::ByVal(val, _) => CValue::ByVal(val, layout),
|
|
|
|
CValue::Func(fun, _) => CValue::Func(fun, layout),
|
|
|
|
}
|
2018-06-23 11:26:54 -05:00
|
|
|
}
|
2018-06-22 12:18:53 -05:00
|
|
|
}
|
|
|
|
|
2018-06-23 11:26:54 -05:00
|
|
|
#[derive(Debug, Copy, Clone)]
|
2018-06-26 12:44:19 -05:00
|
|
|
pub enum CPlace<'tcx> {
|
|
|
|
Var(Variable, TyLayout<'tcx>),
|
|
|
|
Addr(Value, TyLayout<'tcx>),
|
2018-06-22 12:18:53 -05:00
|
|
|
}
|
|
|
|
|
2018-06-26 12:44:19 -05:00
|
|
|
impl<'a, 'tcx: 'a> CPlace<'tcx> {
|
|
|
|
pub fn layout(&self) -> TyLayout<'tcx> {
|
|
|
|
match *self {
|
|
|
|
CPlace::Var(_, layout) |
|
|
|
|
CPlace::Addr(_, layout) => layout
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_stack_slot(fx: &mut FunctionCx<'a, 'tcx>, stack_slot: StackSlot, ty: Ty<'tcx>) -> CPlace<'tcx> {
|
|
|
|
let layout = fx.layout_of(ty);
|
|
|
|
CPlace::Addr(fx.bcx.ins().stack_addr(types::I64, stack_slot, 0), layout)
|
2018-06-22 12:18:53 -05:00
|
|
|
}
|
|
|
|
|
2018-06-26 12:44:19 -05:00
|
|
|
pub fn to_cvalue(self, fx: &mut FunctionCx<'a, 'tcx>) -> CValue<'tcx> {
|
2018-06-22 12:18:53 -05:00
|
|
|
match self {
|
2018-06-26 12:44:19 -05:00
|
|
|
CPlace::Var(var, layout) => CValue::ByVal(fx.bcx.use_var(var), layout),
|
|
|
|
CPlace::Addr(addr, layout) => CValue::ByRef(addr, layout),
|
2018-06-22 12:18:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn expect_addr(self) -> Value {
|
|
|
|
match self {
|
2018-06-26 12:44:19 -05:00
|
|
|
CPlace::Addr(addr, _layout) => addr,
|
|
|
|
CPlace::Var(_, _) => bug!("Expected CPlace::Addr, found CPlace::Var"),
|
2018-06-22 12:18:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-26 12:44:19 -05:00
|
|
|
pub fn write_cvalue(self, fx: &mut FunctionCx<'a, 'tcx>, from: CValue<'tcx>) {
|
2018-06-28 13:27:43 -05:00
|
|
|
assert_eq!(
|
|
|
|
self.layout().ty, from.layout().ty,
|
2018-07-14 05:21:45 -05:00
|
|
|
"Can't write value of incompatible type to place {:?} {:?}\n\n{:#?}",
|
|
|
|
self.layout().ty.sty, from.layout().ty.sty,
|
|
|
|
fx,
|
2018-06-28 13:27:43 -05:00
|
|
|
);
|
2018-06-26 12:44:19 -05:00
|
|
|
|
2018-06-22 12:18:53 -05:00
|
|
|
match self {
|
2018-06-26 12:44:19 -05:00
|
|
|
CPlace::Var(var, _) => {
|
|
|
|
let data = from.load_value(fx);
|
2018-06-22 12:18:53 -05:00
|
|
|
fx.bcx.def_var(var, data)
|
|
|
|
},
|
2018-06-26 12:44:19 -05:00
|
|
|
CPlace::Addr(addr, layout) => {
|
|
|
|
let size = layout.size.bytes() as i32;
|
|
|
|
|
2018-06-30 09:38:49 -05:00
|
|
|
if let Some(_) = fx.cton_type(layout.ty) {
|
2018-06-26 12:44:19 -05:00
|
|
|
let data = from.load_value(fx);
|
2018-06-30 09:27:11 -05:00
|
|
|
fx.bcx.ins().store(MemFlags::new(), data, addr, 0);
|
2018-06-22 12:18:53 -05:00
|
|
|
} else {
|
|
|
|
for i in 0..size {
|
|
|
|
let from = from.expect_byref();
|
2018-06-30 09:27:11 -05:00
|
|
|
let byte = fx.bcx.ins().load(types::I8, MemFlags::new(), from.0, i);
|
|
|
|
fx.bcx.ins().store(MemFlags::new(), byte, addr, i);
|
2018-06-22 12:18:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-26 12:44:19 -05:00
|
|
|
pub fn place_field(self, fx: &mut FunctionCx<'a, 'tcx>, field: mir::Field) -> CPlace<'tcx> {
|
2018-06-23 11:26:54 -05:00
|
|
|
let base = self.expect_addr();
|
2018-06-26 12:44:19 -05:00
|
|
|
let layout = self.layout();
|
2018-06-23 11:26:54 -05:00
|
|
|
let field_offset = layout.fields.offset(field.index());
|
2018-06-26 12:44:19 -05:00
|
|
|
let field_ty = layout.field(&*fx, field.index());
|
2018-06-23 11:26:54 -05:00
|
|
|
if field_offset.bytes() > 0 {
|
|
|
|
let field_offset = fx.bcx.ins().iconst(types::I64, field_offset.bytes() as i64);
|
2018-06-26 12:44:19 -05:00
|
|
|
CPlace::Addr(fx.bcx.ins().iadd(base, field_offset), field_ty)
|
2018-06-23 11:26:54 -05:00
|
|
|
} else {
|
2018-06-26 12:44:19 -05:00
|
|
|
CPlace::Addr(base, field_ty)
|
2018-06-23 11:26:54 -05:00
|
|
|
}
|
|
|
|
}
|
2018-06-26 12:44:19 -05:00
|
|
|
|
|
|
|
pub fn unchecked_cast_to(self, layout: TyLayout<'tcx>) -> Self {
|
|
|
|
match self {
|
|
|
|
CPlace::Var(var, _) => CPlace::Var(var, layout),
|
|
|
|
CPlace::Addr(addr, _) => CPlace::Addr(addr, layout),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn downcast_variant(self, fx: &FunctionCx<'a, 'tcx>, variant: usize) -> Self {
|
|
|
|
let layout = self.layout().for_variant(fx, variant);
|
|
|
|
self.unchecked_cast_to(layout)
|
|
|
|
}
|
2018-06-22 12:18:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn cton_sig_from_fn_sig<'a, 'tcx: 'a>(tcx: TyCtxt<'a, 'tcx, 'tcx>, sig: PolyFnSig<'tcx>, substs: &Substs<'tcx>) -> Signature {
|
|
|
|
let sig = tcx.subst_and_normalize_erasing_regions(substs, ParamEnv::reveal_all(), &sig);
|
|
|
|
cton_sig_from_mono_fn_sig(sig)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn cton_sig_from_instance<'a, 'tcx: 'a>(tcx: TyCtxt<'a, 'tcx, 'tcx>, inst: Instance<'tcx>) -> Signature {
|
|
|
|
let fn_ty = inst.ty(tcx);
|
|
|
|
let sig = fn_ty.fn_sig(tcx);
|
|
|
|
cton_sig_from_mono_fn_sig(sig)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn cton_sig_from_mono_fn_sig<'a ,'tcx: 'a>(sig: PolyFnSig<'tcx>) -> Signature {
|
|
|
|
let sig = sig.skip_binder();
|
|
|
|
let inputs = sig.inputs();
|
|
|
|
let _output = sig.output();
|
|
|
|
assert!(!sig.variadic, "Variadic function are not yet supported");
|
|
|
|
let call_conv = match sig.abi {
|
|
|
|
_ => CallConv::SystemV,
|
|
|
|
};
|
|
|
|
Signature {
|
|
|
|
params: Some(types::I64).into_iter() // First param is place to put return val
|
2018-06-30 09:27:11 -05:00
|
|
|
.chain(inputs.into_iter().map(|ty| cton_type_from_ty(ty).unwrap_or(types::I64)))
|
2018-06-22 12:18:53 -05:00
|
|
|
.map(AbiParam::new).collect(),
|
|
|
|
returns: vec![],
|
|
|
|
call_conv,
|
|
|
|
argument_bytes: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-23 11:26:54 -05:00
|
|
|
pub fn cton_intcast<'a, 'tcx: 'a>(fx: &mut FunctionCx<'a, 'tcx>, val: Value, from: Ty<'tcx>, to: Ty<'tcx>, signed: bool) -> Value {
|
2018-06-24 07:01:41 -05:00
|
|
|
let from = fx.cton_type(from).unwrap();
|
|
|
|
let to = fx.cton_type(to).unwrap();
|
2018-06-23 11:26:54 -05:00
|
|
|
if from == to {
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
if from.wider_or_equal(to) {
|
|
|
|
if signed {
|
|
|
|
fx.bcx.ins().sextend(to, val)
|
|
|
|
} else {
|
|
|
|
fx.bcx.ins().uextend(to, val)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fx.bcx.ins().ireduce(to, val)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-22 12:18:53 -05:00
|
|
|
pub struct FunctionCx<'a, 'tcx: 'a> {
|
|
|
|
pub tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
|
|
|
pub module: &'a mut Module<CurrentBackend>,
|
|
|
|
pub def_id_fn_id_map: &'a mut HashMap<Instance<'tcx>, FuncId>,
|
2018-06-23 11:54:15 -05:00
|
|
|
pub instance: Instance<'tcx>,
|
2018-06-22 12:18:53 -05:00
|
|
|
pub mir: &'tcx Mir<'tcx>,
|
2018-06-23 11:54:15 -05:00
|
|
|
pub param_substs: &'tcx Substs<'tcx>,
|
|
|
|
pub bcx: FunctionBuilder<'a, Variable>,
|
2018-06-22 12:18:53 -05:00
|
|
|
pub ebb_map: HashMap<BasicBlock, Ebb>,
|
2018-06-26 12:44:19 -05:00
|
|
|
pub local_map: HashMap<Local, CPlace<'tcx>>,
|
2018-07-14 04:59:42 -05:00
|
|
|
pub comments: HashMap<Inst, String>,
|
2018-06-22 12:18:53 -05:00
|
|
|
}
|
|
|
|
|
2018-07-14 05:21:45 -05:00
|
|
|
impl<'a, 'tcx: 'a> fmt::Debug for FunctionCx<'a, 'tcx> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
writeln!(f, "{:?}", self.def_id_fn_id_map)?;
|
|
|
|
writeln!(f, "{:?}", self.param_substs)?;
|
|
|
|
writeln!(f, "{:?}", self.local_map)?;
|
|
|
|
|
|
|
|
let mut clif = String::new();
|
|
|
|
let mut writer = ::pretty_clif::CommentWriter(self.comments.clone());
|
|
|
|
::cranelift::codegen::write::decorate_function(
|
|
|
|
&mut writer,
|
|
|
|
&mut clif,
|
|
|
|
&self.bcx.func,
|
|
|
|
None,
|
|
|
|
).unwrap();
|
|
|
|
writeln!(f, "\n{}", clif)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-24 07:01:41 -05:00
|
|
|
impl<'a, 'tcx: 'a> LayoutOf for &'a FunctionCx<'a, 'tcx> {
|
|
|
|
type Ty = Ty<'tcx>;
|
|
|
|
type TyLayout = TyLayout<'tcx>;
|
|
|
|
|
|
|
|
fn layout_of(self, ty: Ty<'tcx>) -> TyLayout<'tcx> {
|
|
|
|
let ty = self.monomorphize(&ty);
|
|
|
|
self.tcx.layout_of(ParamEnv::reveal_all().and(&ty)).unwrap()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-24 07:25:29 -05:00
|
|
|
impl<'a, 'tcx> layout::HasTyCtxt<'tcx> for &'a FunctionCx<'a, 'tcx> {
|
|
|
|
fn tcx<'b>(&'b self) -> TyCtxt<'b, 'tcx, 'tcx> {
|
|
|
|
self.tcx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx> layout::HasDataLayout for &'a FunctionCx<'a, 'tcx> {
|
|
|
|
fn data_layout(&self) -> &layout::TargetDataLayout {
|
|
|
|
&self.tcx.data_layout
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx> HasTargetSpec for &'a FunctionCx<'a, 'tcx> {
|
|
|
|
fn target_spec(&self) -> &Target {
|
|
|
|
&self.tcx.sess.target.target
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-26 12:44:19 -05:00
|
|
|
impl<'a, 'tcx: 'a> FunctionCx<'a, 'tcx> {
|
2018-06-23 11:54:15 -05:00
|
|
|
pub fn monomorphize<T>(&self, value: &T) -> T
|
|
|
|
where T: TypeFoldable<'tcx>
|
|
|
|
{
|
|
|
|
self.tcx.subst_and_normalize_erasing_regions(
|
|
|
|
self.param_substs,
|
|
|
|
ty::ParamEnv::reveal_all(),
|
|
|
|
value,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2018-06-24 07:01:41 -05:00
|
|
|
pub fn cton_type(&self, ty: Ty<'tcx>) -> Option<Type> {
|
|
|
|
cton_type_from_ty(self.monomorphize(&ty))
|
|
|
|
}
|
|
|
|
|
2018-06-22 12:18:53 -05:00
|
|
|
pub fn get_ebb(&self, bb: BasicBlock) -> Ebb {
|
|
|
|
*self.ebb_map.get(&bb).unwrap()
|
|
|
|
}
|
|
|
|
|
2018-06-26 12:44:19 -05:00
|
|
|
pub fn get_local_place(&mut self, local: Local) -> CPlace<'tcx> {
|
2018-06-22 12:18:53 -05:00
|
|
|
*self.local_map.get(&local).unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_function_ref(&mut self, inst: Instance<'tcx>) -> FuncRef {
|
|
|
|
let tcx = self.tcx;
|
|
|
|
let module = &mut self.module;
|
|
|
|
let func_id = *self.def_id_fn_id_map.entry(inst).or_insert_with(|| {
|
|
|
|
let sig = cton_sig_from_instance(tcx, inst);
|
|
|
|
module.declare_function(&tcx.absolute_item_path_str(inst.def_id()), Linkage::Local, &sig).unwrap()
|
|
|
|
});
|
|
|
|
module.declare_func_in_func(func_id, &mut self.bcx.func)
|
|
|
|
}
|
2018-07-14 04:59:42 -05:00
|
|
|
|
|
|
|
pub fn add_comment<'s, S: Into<Cow<'s, str>>>(&mut self, inst: Inst, comment: S) {
|
|
|
|
use std::collections::hash_map::Entry;
|
|
|
|
match self.comments.entry(inst) {
|
|
|
|
Entry::Occupied(mut occ) => {
|
|
|
|
occ.get_mut().push('\n');
|
|
|
|
occ.get_mut().push_str(comment.into().as_ref());
|
|
|
|
}
|
|
|
|
Entry::Vacant(vac) => {
|
|
|
|
vac.insert(comment.into().into_owned());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-06-22 12:18:53 -05:00
|
|
|
}
|