2018-06-17 11:05:11 -05:00
|
|
|
use rustc_mir::monomorphize::MonoItem;
|
|
|
|
|
2018-06-19 12:51:29 -05:00
|
|
|
use cretonne_module::{Module, Backend, FuncId, Linkage};
|
|
|
|
use cretonne_simplejit::{SimpleJITBuilder, SimpleJITBackend};
|
|
|
|
|
2018-06-17 11:05:11 -05:00
|
|
|
use std::any::Any;
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
|
|
|
use prelude::*;
|
|
|
|
|
|
|
|
pub fn trans_crate<'a, 'tcx: 'a>(tcx: TyCtxt<'a, 'tcx, 'tcx>) -> Box<Any> {
|
|
|
|
let link_meta = ::build_link_meta(tcx.crate_hash(LOCAL_CRATE));
|
|
|
|
let metadata = tcx.encode_metadata(&link_meta);
|
|
|
|
|
2018-06-22 12:08:59 -05:00
|
|
|
let mut module: Module<SimpleJITBackend> = Module::new(SimpleJITBuilder::new());
|
|
|
|
let mut context = Context::new();
|
|
|
|
let mut def_id_fn_id_map = HashMap::new();
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2018-06-22 12:08:59 -05:00
|
|
|
{
|
|
|
|
let mut cx = CodegenCx {
|
2018-06-17 11:05:11 -05:00
|
|
|
tcx,
|
2018-06-22 12:08:59 -05:00
|
|
|
module: &mut module,
|
|
|
|
def_id_fn_id_map: &mut def_id_fn_id_map,
|
|
|
|
};
|
|
|
|
let cx = &mut cx;
|
|
|
|
|
|
|
|
for mono_item in
|
|
|
|
collector::collect_crate_mono_items(
|
|
|
|
tcx,
|
|
|
|
collector::MonoItemCollectionMode::Eager
|
|
|
|
).0 {
|
|
|
|
match mono_item {
|
|
|
|
MonoItem::Fn(inst) => match inst {
|
|
|
|
Instance {
|
|
|
|
def: InstanceDef::Item(def_id),
|
|
|
|
substs,
|
|
|
|
} => {
|
|
|
|
let sig = tcx.fn_sig(def_id);
|
|
|
|
let sig = cton_sig_from_fn_sig(tcx, sig, substs);
|
|
|
|
let func_id = {
|
|
|
|
let module = &mut cx.module;
|
|
|
|
*cx.def_id_fn_id_map.entry(inst).or_insert_with(|| {
|
|
|
|
module.declare_function(&tcx.absolute_item_path_str(def_id), Linkage::Local, &sig).unwrap()
|
|
|
|
})
|
|
|
|
};
|
2018-06-19 12:51:29 -05:00
|
|
|
|
2018-06-22 12:08:59 -05:00
|
|
|
let mut f = Function::with_name_signature(ext_name_from_did(def_id), sig);
|
2018-06-19 12:51:29 -05:00
|
|
|
|
2018-06-22 12:08:59 -05:00
|
|
|
trans_fn(cx, &mut f, def_id, substs);
|
2018-06-19 12:51:29 -05:00
|
|
|
|
2018-06-22 12:08:59 -05:00
|
|
|
let mut mir = ::std::io::Cursor::new(Vec::new());
|
|
|
|
::rustc_mir::util::write_mir_pretty(cx.tcx, Some(def_id), &mut mir).unwrap();
|
|
|
|
let mut cton = String::new();
|
|
|
|
::cretonne::codegen::write_function(&mut cton, &f, None).unwrap();
|
|
|
|
tcx.sess.warn(&format!("{:?}:\n\n{}\n\n{}", def_id, String::from_utf8_lossy(&mir.into_inner()), cton));
|
2018-06-20 08:15:28 -05:00
|
|
|
|
2018-06-22 12:08:59 -05:00
|
|
|
let flags = settings::Flags::new(settings::builder());
|
|
|
|
match ::cretonne::codegen::verify_function(&f, &flags) {
|
|
|
|
Ok(_) => {}
|
|
|
|
Err(err) => {
|
|
|
|
tcx.sess.fatal(&format!("cretonne verify error: {}", err));
|
|
|
|
}
|
2018-06-20 08:15:28 -05:00
|
|
|
}
|
2018-06-19 12:51:29 -05:00
|
|
|
|
2018-06-22 12:08:59 -05:00
|
|
|
context.func = f;
|
|
|
|
cx.module.define_function(func_id, &mut context).unwrap();
|
|
|
|
context.clear();
|
|
|
|
}
|
|
|
|
_ => {}
|
2018-06-19 12:51:29 -05:00
|
|
|
}
|
|
|
|
_ => {}
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-22 12:08:59 -05:00
|
|
|
module.finalize_all();
|
|
|
|
|
|
|
|
for (inst, func_id) in def_id_fn_id_map.iter() {
|
|
|
|
if tcx.absolute_item_path_str(inst.def_id()) != "example::ret_42" {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let finalized_function: *const u8 = module.finalize_function(*func_id);
|
|
|
|
let f: extern "C" fn(&mut u32) = unsafe { ::std::mem::transmute(finalized_function) };
|
|
|
|
let mut res = 0u32;
|
|
|
|
f(&mut res);
|
|
|
|
tcx.sess.warn(&format!("ret_42 returned {}", res));
|
|
|
|
}
|
|
|
|
|
|
|
|
module.finish();
|
2018-06-19 12:51:29 -05:00
|
|
|
|
2018-06-20 08:15:28 -05:00
|
|
|
tcx.sess.fatal("unimplemented");
|
|
|
|
|
2018-06-17 11:05:11 -05:00
|
|
|
Box::new(::OngoingCodegen {
|
|
|
|
metadata: metadata,
|
2018-06-19 12:51:29 -05:00
|
|
|
//translated_module: Module::new(::cretonne_faerie::FaerieBuilder::new(,
|
2018-06-17 11:05:11 -05:00
|
|
|
crate_name: tcx.crate_name(LOCAL_CRATE),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-06-22 12:08:59 -05:00
|
|
|
struct CodegenCx<'a, 'tcx: 'a, B: Backend + 'a> {
|
2018-06-19 12:51:29 -05:00
|
|
|
tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
2018-06-22 12:08:59 -05:00
|
|
|
module: &'a mut Module<B>,
|
|
|
|
def_id_fn_id_map: &'a mut HashMap<Instance<'tcx>, FuncId>,
|
2018-06-19 12:51:29 -05:00
|
|
|
}
|
|
|
|
|
2018-06-22 12:08:59 -05:00
|
|
|
fn trans_fn<'a, 'tcx: 'a>(cx: &mut CodegenCx<'a, 'tcx, CurrentBackend>, f: &mut Function, def_id: DefId, substs: &Substs<'tcx>) {
|
2018-06-19 12:51:29 -05:00
|
|
|
let mir = cx.tcx.optimized_mir(def_id);
|
2018-06-17 11:05:11 -05:00
|
|
|
let mut func_ctx = FunctionBuilderContext::new();
|
|
|
|
let mut bcx: FunctionBuilder<Variable> = FunctionBuilder::new(f, &mut func_ctx);
|
|
|
|
|
|
|
|
let start_ebb = bcx.create_ebb();
|
|
|
|
bcx.switch_to_block(start_ebb);
|
|
|
|
let mut ebb_map: HashMap<BasicBlock, Ebb> = HashMap::new();
|
|
|
|
for (bb, _bb_data) in mir.basic_blocks().iter_enumerated() {
|
|
|
|
ebb_map.insert(bb, bcx.create_ebb());
|
|
|
|
}
|
|
|
|
|
2018-06-20 08:15:28 -05:00
|
|
|
let mut fx = FunctionCx {
|
|
|
|
tcx: cx.tcx,
|
|
|
|
module: &mut cx.module,
|
|
|
|
def_id_fn_id_map: &mut cx.def_id_fn_id_map,
|
|
|
|
bcx,
|
|
|
|
mir,
|
|
|
|
ebb_map,
|
|
|
|
local_map: HashMap::new(),
|
|
|
|
};
|
|
|
|
let fx = &mut fx;
|
|
|
|
|
|
|
|
let ret_param = fx.bcx.append_ebb_param(start_ebb, types::I64);
|
|
|
|
let _ = fx.bcx.create_stack_slot(StackSlotData {
|
|
|
|
kind: StackSlotKind::ExplicitSlot,
|
|
|
|
size: 0,
|
|
|
|
offset: None,
|
|
|
|
}); // Dummy stack slot for debugging
|
|
|
|
|
|
|
|
let func_params = mir.args_iter().map(|local| {
|
|
|
|
let layout = fx.tcx.layout_of(ParamEnv::reveal_all().and(mir.local_decls[local].ty)).unwrap();
|
|
|
|
let stack_slot = fx.bcx.create_stack_slot(StackSlotData {
|
|
|
|
kind: StackSlotKind::ExplicitSlot,
|
|
|
|
size: layout.size.bytes() as u32,
|
|
|
|
offset: None,
|
|
|
|
});
|
|
|
|
let ty = cton_type_from_ty(mir.local_decls[local].ty);
|
|
|
|
(local, fx.bcx.append_ebb_param(start_ebb, ty.unwrap_or(types::I64)), ty, stack_slot)
|
|
|
|
}).collect::<Vec<(Local, Value, Option<Type>, StackSlot)>>();
|
|
|
|
|
|
|
|
fx.local_map.insert(RETURN_PLACE, CPlace::Addr(ret_param));
|
|
|
|
|
|
|
|
for (local, ebb_param, ty, stack_slot) in func_params {
|
2018-06-22 12:08:59 -05:00
|
|
|
let place = CPlace::from_stack_slot(fx, stack_slot);
|
2018-06-20 08:15:28 -05:00
|
|
|
if ty.is_some() {
|
|
|
|
fx.bcx.ins().stack_store(ebb_param, stack_slot, 0);
|
|
|
|
} else {
|
2018-06-22 12:08:59 -05:00
|
|
|
place.write_cvalue(fx, CValue::ByRef(ebb_param), mir.local_decls[local].ty);
|
2018-06-20 08:15:28 -05:00
|
|
|
}
|
2018-06-22 12:08:59 -05:00
|
|
|
fx.local_map.insert(local, place);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
for local in mir.vars_and_temps_iter() {
|
2018-06-19 12:51:29 -05:00
|
|
|
let layout = cx.tcx.layout_of(ParamEnv::reveal_all().and(mir.local_decls[local].ty)).unwrap();
|
2018-06-20 08:15:28 -05:00
|
|
|
let stack_slot = fx.bcx.create_stack_slot(StackSlotData {
|
2018-06-17 11:05:11 -05:00
|
|
|
kind: StackSlotKind::ExplicitSlot,
|
|
|
|
size: layout.size.bytes() as u32,
|
|
|
|
offset: None,
|
|
|
|
});
|
2018-06-22 12:08:59 -05:00
|
|
|
let place = CPlace::from_stack_slot(fx, stack_slot);
|
|
|
|
fx.local_map.insert(local, place);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
|
2018-06-20 08:15:28 -05:00
|
|
|
fx.bcx.ins().jump(*fx.ebb_map.get(&START_BLOCK).unwrap(), &[]);
|
2018-06-17 11:05:11 -05:00
|
|
|
|
|
|
|
for (bb, bb_data) in mir.basic_blocks().iter_enumerated() {
|
2018-06-19 12:51:29 -05:00
|
|
|
let ebb = fx.get_ebb(bb);
|
|
|
|
fx.bcx.switch_to_block(ebb);
|
2018-06-17 11:05:11 -05:00
|
|
|
|
|
|
|
for stmt in &bb_data.statements {
|
2018-06-19 12:51:29 -05:00
|
|
|
trans_stmt(fx, stmt);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
match &bb_data.terminator().kind {
|
|
|
|
TerminatorKind::Goto { target } => {
|
2018-06-19 12:51:29 -05:00
|
|
|
let ebb = fx.get_ebb(*target);
|
|
|
|
fx.bcx.ins().jump(ebb, &[]);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
TerminatorKind::Return => {
|
2018-06-19 12:51:29 -05:00
|
|
|
fx.bcx.ins().return_(&[]);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
2018-06-18 11:39:07 -05:00
|
|
|
TerminatorKind::Assert { cond, expected, msg: _, target, cleanup: _ } => {
|
2018-06-19 12:51:29 -05:00
|
|
|
let cond_ty = cond.ty(&fx.mir.local_decls, fx.tcx);
|
|
|
|
let cond = trans_operand(fx, cond).load_value(fx, cond_ty);
|
|
|
|
let target = fx.get_ebb(*target);
|
2018-06-17 11:05:11 -05:00
|
|
|
if *expected {
|
2018-06-19 12:51:29 -05:00
|
|
|
fx.bcx.ins().brz(cond, target, &[]);
|
2018-06-17 11:05:11 -05:00
|
|
|
} else {
|
2018-06-19 12:51:29 -05:00
|
|
|
fx.bcx.ins().brnz(cond, target, &[]);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
2018-06-19 12:51:29 -05:00
|
|
|
fx.bcx.ins().trap(TrapCode::User(!0));
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
TerminatorKind::SwitchInt { discr, switch_ty, values, targets } => {
|
2018-06-19 12:51:29 -05:00
|
|
|
let discr_ty = discr.ty(&fx.mir.local_decls, fx.tcx);
|
|
|
|
let discr = trans_operand(fx, discr).load_value(fx, discr_ty);
|
2018-06-17 11:05:11 -05:00
|
|
|
let mut jt_data = JumpTableData::new();
|
|
|
|
for (i, value) in values.iter().enumerate() {
|
2018-06-19 12:51:29 -05:00
|
|
|
let ebb = fx.get_ebb(targets[i]);
|
2018-06-17 11:05:11 -05:00
|
|
|
jt_data.set_entry(*value as usize, ebb);
|
|
|
|
}
|
2018-06-19 12:51:29 -05:00
|
|
|
let mut jump_table = fx.bcx.create_jump_table(jt_data);
|
|
|
|
fx.bcx.ins().br_table(discr, jump_table);
|
|
|
|
let otherwise_ebb = fx.get_ebb(targets[targets.len() - 1]);
|
|
|
|
fx.bcx.ins().jump(otherwise_ebb, &[]);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
2018-06-17 12:10:00 -05:00
|
|
|
TerminatorKind::Call { func, args, destination, cleanup: _ } => {
|
2018-06-19 12:51:29 -05:00
|
|
|
let func_ty = func.ty(&fx.mir.local_decls, fx.tcx);
|
|
|
|
let func = trans_operand(fx, func);
|
2018-06-17 12:10:00 -05:00
|
|
|
let return_place = if let Some((place, _)) = destination {
|
2018-06-20 08:15:28 -05:00
|
|
|
trans_place(fx, place).expect_addr()
|
2018-06-17 12:10:00 -05:00
|
|
|
} else {
|
2018-06-19 12:51:29 -05:00
|
|
|
fx.bcx.ins().iconst(types::I64, 0)
|
2018-06-17 12:10:00 -05:00
|
|
|
};
|
|
|
|
let args = Some(return_place)
|
|
|
|
.into_iter()
|
|
|
|
.chain(
|
|
|
|
args
|
|
|
|
.into_iter()
|
|
|
|
.map(|arg| {
|
2018-06-19 12:51:29 -05:00
|
|
|
let ty = arg.ty(&fx.mir.local_decls, fx.tcx);
|
|
|
|
let arg = trans_operand(fx, arg);
|
2018-06-20 08:15:28 -05:00
|
|
|
if let Some(_) = cton_type_from_ty(ty) {
|
|
|
|
arg.load_value(fx, ty)
|
|
|
|
} else {
|
|
|
|
arg.force_stack(fx, ty)
|
|
|
|
}
|
2018-06-17 12:10:00 -05:00
|
|
|
})
|
|
|
|
).collect::<Vec<_>>();
|
|
|
|
match func {
|
|
|
|
CValue::Func(func) => {
|
2018-06-19 12:51:29 -05:00
|
|
|
fx.bcx.ins().call(func, &args);
|
2018-06-17 12:10:00 -05:00
|
|
|
}
|
2018-06-18 11:39:07 -05:00
|
|
|
func => {
|
2018-06-19 12:51:29 -05:00
|
|
|
let func = func.load_value(fx, func_ty);
|
2018-06-18 11:39:07 -05:00
|
|
|
let sig = match func_ty.sty {
|
2018-06-19 12:51:29 -05:00
|
|
|
TypeVariants::TyFnDef(def_id, _substs) => fx.tcx.fn_sig(def_id),
|
2018-06-18 11:39:07 -05:00
|
|
|
TypeVariants::TyFnPtr(fn_sig) => fn_sig,
|
|
|
|
_ => bug!("Calling non function type {:?}", func_ty),
|
|
|
|
};
|
2018-06-19 12:51:29 -05:00
|
|
|
let sig = fx.bcx.import_signature(cton_sig_from_fn_sig(fx.tcx, sig, substs));
|
|
|
|
fx.bcx.ins().call_indirect(sig, func, &args);
|
2018-06-18 11:39:07 -05:00
|
|
|
}
|
2018-06-17 12:10:00 -05:00
|
|
|
}
|
|
|
|
if let Some((_, dest)) = *destination {
|
2018-06-19 12:51:29 -05:00
|
|
|
let ret_ebb = fx.get_ebb(dest);
|
|
|
|
fx.bcx.ins().jump(ret_ebb, &[]);
|
2018-06-17 12:10:00 -05:00
|
|
|
} else {
|
2018-06-19 12:51:29 -05:00
|
|
|
fx.bcx.ins().trap(TrapCode::User(!0));
|
2018-06-17 12:10:00 -05:00
|
|
|
}
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
2018-06-17 12:10:00 -05:00
|
|
|
TerminatorKind::Resume | TerminatorKind::Abort | TerminatorKind::Unreachable => {
|
2018-06-19 12:51:29 -05:00
|
|
|
fx.bcx.ins().trap(TrapCode::User(!0));
|
2018-06-17 12:10:00 -05:00
|
|
|
}
|
2018-06-18 11:39:07 -05:00
|
|
|
TerminatorKind::Yield { .. } |
|
|
|
|
TerminatorKind::FalseEdges { .. } |
|
|
|
|
TerminatorKind::FalseUnwind { .. } => {
|
|
|
|
bug!("shouldn't exist at trans {:?}", bb_data.terminator());
|
|
|
|
}
|
|
|
|
TerminatorKind::Drop { .. } | TerminatorKind::DropAndReplace { .. } | TerminatorKind::GeneratorDrop { .. } => {
|
|
|
|
unimplemented!("terminator {:?}", bb_data.terminator());
|
|
|
|
}
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-19 12:51:29 -05:00
|
|
|
fx.bcx.seal_all_blocks();
|
|
|
|
fx.bcx.finalize();
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
|
2018-06-19 12:51:29 -05:00
|
|
|
fn trans_stmt<'a, 'tcx: 'a>(fx: &mut FunctionCx<'a, 'tcx>, stmt: &Statement<'tcx>) {
|
2018-06-17 11:05:11 -05:00
|
|
|
match &stmt.kind {
|
|
|
|
StatementKind::Assign(place, rval) => {
|
2018-06-19 12:51:29 -05:00
|
|
|
let ty = place.ty(&fx.mir.local_decls, fx.tcx).to_ty(fx.tcx);
|
|
|
|
let lval = trans_place(fx, place);
|
2018-06-20 08:29:50 -05:00
|
|
|
match rval {
|
|
|
|
Rvalue::Use(operand) => {
|
|
|
|
let val = trans_operand(fx, operand);
|
2018-06-22 12:08:59 -05:00
|
|
|
lval.write_cvalue(fx, val, ty);
|
2018-06-20 08:29:50 -05:00
|
|
|
},
|
|
|
|
Rvalue::CheckedBinaryOp(bin_op, lhs, rhs) => {
|
|
|
|
let ty = lhs.ty(&fx.mir.local_decls, fx.tcx);
|
|
|
|
let lhs_ty = lhs.ty(&fx.mir.local_decls, fx.tcx);
|
|
|
|
let lhs = trans_operand(fx, lhs).load_value(fx, lhs_ty);
|
|
|
|
let rhs_ty = rhs.ty(&fx.mir.local_decls, fx.tcx);
|
|
|
|
let rhs = trans_operand(fx, rhs).load_value(fx, rhs_ty);
|
|
|
|
|
|
|
|
let res = match ty.sty {
|
|
|
|
TypeVariants::TyUint(_) => {
|
|
|
|
match bin_op {
|
|
|
|
BinOp::Add => fx.bcx.ins().iadd(lhs, rhs),
|
|
|
|
BinOp::Sub => fx.bcx.ins().isub(lhs, rhs),
|
|
|
|
BinOp::Mul => fx.bcx.ins().imul(lhs, rhs),
|
|
|
|
BinOp::Div => fx.bcx.ins().udiv(lhs, rhs),
|
|
|
|
bin_op => unimplemented!("checked uint bin op {:?} {:?} {:?}", bin_op, lhs, rhs),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => unimplemented!(),
|
|
|
|
};
|
2018-06-22 12:08:59 -05:00
|
|
|
lval.write_cvalue(fx, CValue::ByVal(res), ty);
|
2018-06-20 08:29:50 -05:00
|
|
|
}
|
|
|
|
Rvalue::Cast(CastKind::ReifyFnPointer, operand, ty) => {
|
|
|
|
let operand = trans_operand(fx, operand);
|
2018-06-22 12:08:59 -05:00
|
|
|
lval.write_cvalue(fx, operand, ty);
|
2018-06-20 08:29:50 -05:00
|
|
|
}
|
|
|
|
Rvalue::Cast(CastKind::UnsafeFnPointer, operand, ty) => {
|
|
|
|
let operand = trans_operand(fx, operand);
|
2018-06-22 12:08:59 -05:00
|
|
|
lval.write_cvalue(fx, operand, ty);
|
2018-06-20 08:29:50 -05:00
|
|
|
}
|
|
|
|
rval => unimplemented!("rval {:?}", rval),
|
|
|
|
}
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
StatementKind::StorageLive(_) | StatementKind::StorageDead(_) | StatementKind::Nop => {}
|
|
|
|
_ => unimplemented!("stmt {:?}", stmt),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-20 08:15:28 -05:00
|
|
|
fn trans_place<'a, 'tcx: 'a>(fx: &mut FunctionCx<'a, 'tcx>, place: &Place<'tcx>) -> CPlace {
|
2018-06-17 11:05:11 -05:00
|
|
|
match place {
|
2018-06-20 08:15:28 -05:00
|
|
|
Place::Local(local) => fx.get_local_place(*local),
|
2018-06-17 11:05:11 -05:00
|
|
|
Place::Projection(projection) => {
|
2018-06-20 08:15:28 -05:00
|
|
|
let base = trans_place(fx, &projection.base).expect_addr();
|
2018-06-17 11:05:11 -05:00
|
|
|
match projection.elem {
|
|
|
|
ProjectionElem::Field(field, ty) => {
|
2018-06-19 12:51:29 -05:00
|
|
|
let layout = fx.tcx.layout_of(ParamEnv::empty().and(ty)).unwrap();
|
2018-06-17 11:46:11 -05:00
|
|
|
let field_offset = layout.fields.offset(field.index());
|
2018-06-20 08:15:28 -05:00
|
|
|
if field_offset.bytes() > 0 {
|
|
|
|
let field_offset = fx.bcx.ins().iconst(types::I64, field_offset.bytes() as i64);
|
|
|
|
CPlace::Addr(fx.bcx.ins().iadd(base, field_offset))
|
|
|
|
} else {
|
|
|
|
CPlace::Addr(base)
|
|
|
|
}
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
_ => unimplemented!("projection {:?}", projection),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
place => unimplemented!("place {:?}", place),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-19 12:51:29 -05:00
|
|
|
fn trans_operand<'a, 'tcx>(fx: &mut FunctionCx<'a, 'tcx>, operand: &Operand<'tcx>) -> CValue {
|
2018-06-17 11:05:11 -05:00
|
|
|
match operand {
|
2018-06-18 11:39:07 -05:00
|
|
|
Operand::Move(place) |
|
2018-06-20 08:15:28 -05:00
|
|
|
Operand::Copy(place) => {
|
|
|
|
let cplace = trans_place(fx, place);
|
|
|
|
cplace.to_cvalue(fx)
|
|
|
|
},
|
2018-06-17 11:05:11 -05:00
|
|
|
Operand::Constant(const_) => {
|
|
|
|
match const_.literal {
|
|
|
|
Literal::Value { value } => {
|
2018-06-19 12:51:29 -05:00
|
|
|
let layout = fx.tcx.layout_of(ParamEnv::empty().and(const_.ty)).unwrap();
|
2018-06-17 11:05:11 -05:00
|
|
|
match const_.ty.sty {
|
|
|
|
TypeVariants::TyUint(_) => {
|
2018-06-17 12:10:00 -05:00
|
|
|
let bits = value.to_scalar().unwrap().to_bits(layout.size).unwrap();
|
2018-06-19 12:51:29 -05:00
|
|
|
let iconst = fx.bcx.ins().iconst(cton_type_from_ty(const_.ty).unwrap(), bits as u64 as i64);
|
2018-06-17 11:05:11 -05:00
|
|
|
CValue::ByVal(iconst)
|
|
|
|
}
|
2018-06-17 12:10:00 -05:00
|
|
|
TypeVariants::TyInt(_) => {
|
|
|
|
let bits = value.to_scalar().unwrap().to_bits(layout.size).unwrap();
|
2018-06-19 12:51:29 -05:00
|
|
|
let iconst = fx.bcx.ins().iconst(cton_type_from_ty(const_.ty).unwrap(), bits as i128 as i64);
|
2018-06-17 12:10:00 -05:00
|
|
|
CValue::ByVal(iconst)
|
|
|
|
}
|
|
|
|
TypeVariants::TyFnDef(def_id, substs) => {
|
2018-06-19 12:51:29 -05:00
|
|
|
let func_ref = fx.get_function_ref(Instance::new(def_id, substs));
|
|
|
|
CValue::Func(func_ref)
|
2018-06-17 12:10:00 -05:00
|
|
|
}
|
|
|
|
_ => unimplemented!("value {:?} ty {:?}", value, const_.ty),
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|