rust/src/base.rs

521 lines
24 KiB
Rust
Raw Normal View History

2018-06-17 11:05:11 -05:00
use prelude::*;
2018-06-30 09:37:02 -05:00
pub fn trans_mono_item<'a, 'tcx: 'a>(cx: &mut CodegenCx<'a, 'tcx, CurrentBackend>, context: &mut Context, mono_item: MonoItem<'tcx>) {
let tcx = cx.tcx;
match mono_item {
MonoItem::Fn(inst) => match inst {
Instance {
def: InstanceDef::Item(def_id),
substs,
} => {
let mut mir = ::std::io::Cursor::new(Vec::new());
::rustc_mir::util::write_mir_pretty(tcx, Some(def_id), &mut mir).unwrap();
tcx.sess.warn(&format!("{:?}:\n\n{}", def_id, String::from_utf8_lossy(&mir.into_inner())));
2018-06-30 09:37:02 -05:00
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(|| {
2018-06-30 11:22:20 -05:00
let def_path_based_names = ::rustc_mir::monomorphize::item::DefPathBasedNames::new(tcx, false, false);
let mut name = String::new();
def_path_based_names.push_instance_as_string(inst, &mut name);
module.declare_function(&name, Linkage::Local, &sig).unwrap()
2018-06-30 09:37:02 -05:00
})
};
let mut f = Function::with_name_signature(ExternalName::user(0, func_id.index() as u32), sig);
::base::trans_fn(cx, &mut f, inst);
let mut cton = String::new();
::cretonne::codegen::write_function(&mut cton, &f, None).unwrap();
tcx.sess.warn(&cton);
let flags = settings::Flags::new(settings::builder());
match ::cretonne::codegen::verify_function(&f, &flags) {
Ok(_) => {}
Err(err) => {
let pretty_error = ::cretonne::codegen::print_errors::pretty_verifier_error(&f, None, &err);
tcx.sess.fatal(&format!("cretonne verify error:\n{}", pretty_error));
2018-06-22 12:08:59 -05:00
}
2018-06-19 12:51:29 -05:00
}
2018-06-23 11:26:54 -05:00
2018-06-30 09:37:02 -05:00
context.func = f;
cx.module.define_function(func_id, context).unwrap();
context.clear();
}
_ => {}
2018-06-22 12:08:59 -05:00
}
2018-06-30 09:37:02 -05:00
_ => {}
2018-06-22 12:08:59 -05:00
}
2018-06-19 12:51:29 -05:00
}
2018-06-30 09:37:02 -05:00
pub fn trans_fn<'a, 'tcx: 'a>(cx: &mut CodegenCx<'a, 'tcx, CurrentBackend>, f: &mut Function, instance: Instance<'tcx>) {
2018-06-23 11:54:15 -05:00
let mir = cx.tcx.optimized_mir(instance.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());
}
let mut fx = FunctionCx {
tcx: cx.tcx,
module: &mut cx.module,
def_id_fn_id_map: &mut cx.def_id_fn_id_map,
2018-06-23 11:54:15 -05:00
instance,
mir,
2018-06-23 11:54:15 -05:00
bcx,
param_substs: {
assert!(!instance.substs.needs_infer());
instance.substs
},
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| {
2018-06-24 07:01:41 -05:00
let layout = fx.layout_of(mir.local_decls[local].ty);
let stack_slot = fx.bcx.create_stack_slot(StackSlotData {
kind: StackSlotKind::ExplicitSlot,
size: layout.size.bytes() as u32,
offset: None,
});
let ty = mir.local_decls[local].ty;
let cton_type = fx.cton_type(ty).unwrap_or(types::I64);
(local, fx.bcx.append_ebb_param(start_ebb, cton_type), ty, stack_slot)
}).collect::<Vec<(Local, Value, Ty, StackSlot)>>();
let ret_layout = fx.layout_of(fx.instance.ty(fx.tcx).fn_sig(fx.tcx).skip_binder().output());
fx.local_map.insert(RETURN_PLACE, CPlace::Addr(ret_param, ret_layout));
for (local, ebb_param, ty, stack_slot) in func_params {
let place = CPlace::from_stack_slot(fx, stack_slot, ty);
if fx.cton_type(ty).is_some() {
place.write_cvalue(fx, CValue::ByVal(ebb_param, place.layout()));
} else {
place.write_cvalue(fx, CValue::ByRef(ebb_param, place.layout()));
}
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() {
let ty = mir.local_decls[local].ty;
let layout = fx.layout_of(ty);
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,
});
let place = CPlace::from_stack_slot(fx, stack_slot, ty);
2018-06-22 12:08:59 -05:00
fx.local_map.insert(local, place);
2018-06-17 11:05:11 -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
}
let inst = match &bb_data.terminator().kind {
2018-06-17 11:05:11 -05:00
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 => {
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: _ } => {
let cond = trans_operand(fx, cond).load_value(fx);
2018-06-19 12:51:29 -05:00
let target = fx.get_ebb(*target);
let inst = if *expected {
fx.bcx.ins().brz(cond, target, &[])
2018-06-17 11:05:11 -05:00
} else {
fx.bcx.ins().brnz(cond, target, &[])
};
2018-06-19 12:51:29 -05:00
fx.bcx.ins().trap(TrapCode::User(!0));
inst
2018-06-17 11:05:11 -05:00
}
2018-06-30 09:38:49 -05:00
TerminatorKind::SwitchInt { discr, switch_ty: _, values, targets } => {
let discr = trans_operand(fx, discr).load_value(fx);
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);
let inst = fx.bcx.ins().br_table(discr, jump_table);
2018-06-19 12:51:29 -05:00
let otherwise_ebb = fx.get_ebb(targets[targets.len() - 1]);
fx.bcx.ins().jump(otherwise_ebb, &[]);
inst
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 {
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-24 07:01:41 -05:00
if let Some(_) = fx.cton_type(ty) {
arg.load_value(fx)
} else {
arg.force_stack(fx)
}
2018-06-17 12:10:00 -05:00
})
).collect::<Vec<_>>();
let inst = match func {
CValue::Func(func, _) => {
fx.bcx.ins().call(func, &args)
2018-06-17 12:10:00 -05:00
}
2018-06-18 11:39:07 -05:00
func => {
let func = func.load_value(fx);
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-23 11:54:15 -05:00
let sig = fx.bcx.import_signature(cton_sig_from_fn_sig(fx.tcx, sig, fx.param_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
}
inst
2018-06-17 11:05:11 -05:00
}
2018-06-17 12:10:00 -05:00
TerminatorKind::Resume | TerminatorKind::Abort | TerminatorKind::Unreachable => {
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());
}
2018-06-28 13:27:43 -05:00
TerminatorKind::Drop { target, .. } | TerminatorKind::DropAndReplace { target, .. } => {
// TODO call drop impl
// unimplemented!("terminator {:?}", bb_data.terminator());
let target_ebb = fx.get_ebb(*target);
fx.bcx.ins().jump(target_ebb, &[])
2018-06-28 13:27:43 -05:00
}
TerminatorKind::GeneratorDrop => {
unimplemented!("terminator GeneratorDrop");
2018-06-18 11:39:07 -05:00
}
};
let mut terminator_head = "\n".to_string();
bb_data.terminator().kind.fmt_head(&mut terminator_head).unwrap();
fx.bcx.func.comments[inst] = terminator_head;
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>) {
let nop_inst = fx.bcx.ins().nop();
2018-06-17 11:05:11 -05:00
match &stmt.kind {
2018-06-24 07:29:56 -05:00
StatementKind::SetDiscriminant { place, variant_index } => {
let place = trans_place(fx, place);
let layout = place.layout();
2018-06-24 07:29:56 -05:00
if layout.for_variant(&*fx, *variant_index).abi == layout::Abi::Uninhabited {
2018-06-23 11:54:15 -05:00
return;
}
2018-06-24 07:29:56 -05:00
match layout.variants {
2018-06-23 11:54:15 -05:00
layout::Variants::Single { index } => {
2018-06-24 07:29:56 -05:00
assert_eq!(index, *variant_index);
2018-06-23 11:54:15 -05:00
}
layout::Variants::Tagged { .. } => {
let ptr = place.place_field(fx, mir::Field::new(0));
2018-06-24 07:29:56 -05:00
let to = layout.ty.ty_adt_def().unwrap()
.discriminant_for_variant(fx.tcx, *variant_index)
2018-06-23 11:54:15 -05:00
.val;
let discr = CValue::const_val(fx, ptr.layout().ty, to as u64 as i64);
ptr.write_cvalue(fx, discr);
2018-06-23 11:54:15 -05:00
}
layout::Variants::NicheFilling {
dataful_variant,
ref niche_variants,
niche_start,
..
} => {
2018-06-24 07:29:56 -05:00
if *variant_index != dataful_variant {
let niche = place.place_field(fx, mir::Field::new(0));
2018-06-24 07:29:56 -05:00
//let niche_llty = niche.layout.immediate_llvm_type(bx.cx);
2018-06-23 11:54:15 -05:00
let niche_value = ((variant_index - *niche_variants.start()) as u128)
.wrapping_add(niche_start);
// FIXME(eddyb) Check the actual primitive type here.
let niche_llval = if niche_value == 0 {
CValue::const_val(fx, niche.layout().ty, 0)
2018-06-23 11:54:15 -05:00
} else {
CValue::const_val(fx, niche.layout().ty, niche_value as u64 as i64)
2018-06-23 11:54:15 -05:00
};
niche.write_cvalue(fx, niche_llval);
2018-06-23 11:54:15 -05:00
}
}
}
2018-06-24 07:29:56 -05:00
}
2018-06-23 11:26:54 -05:00
StatementKind::Assign(to_place, rval) => {
let lval = trans_place(fx, to_place);
let dest_layout = lval.layout();
2018-06-20 08:29:50 -05:00
match rval {
Rvalue::Use(operand) => {
let val = trans_operand(fx, operand);
lval.write_cvalue(fx, val);
2018-06-27 09:01:30 -05:00
}
Rvalue::Ref(_, _, place) => {
let place = trans_place(fx, place);
let addr = place.expect_addr();
lval.write_cvalue(fx, CValue::ByVal(addr, dest_layout));
}
2018-06-23 11:26:54 -05:00
Rvalue::BinaryOp(bin_op, lhs, rhs) => {
2018-06-23 11:54:15 -05:00
let ty = fx.monomorphize(&lhs.ty(&fx.mir.local_decls, fx.tcx));
let lhs = trans_operand(fx, lhs).load_value(fx);
let rhs = trans_operand(fx, rhs).load_value(fx);
2018-06-23 11:26:54 -05:00
let res = match ty.sty {
TypeVariants::TyUint(_) => {
2018-06-27 08:47:58 -05:00
trans_int_binop(fx, *bin_op, lhs, rhs, ty, false, false)
2018-06-23 11:26:54 -05:00
}
2018-06-23 11:54:15 -05:00
TypeVariants::TyInt(_) => {
2018-06-27 08:47:58 -05:00
trans_int_binop(fx, *bin_op, lhs, rhs, ty, true, false)
2018-06-23 11:54:15 -05:00
}
2018-06-27 08:57:52 -05:00
_ => unimplemented!("bin op {:?} for {:?}", bin_op, ty),
2018-06-23 11:26:54 -05:00
};
2018-06-27 08:47:58 -05:00
lval.write_cvalue(fx, res);
2018-06-23 11:26:54 -05:00
}
2018-06-20 08:29:50 -05:00
Rvalue::CheckedBinaryOp(bin_op, lhs, rhs) => {
2018-06-23 11:54:15 -05:00
let ty = fx.monomorphize(&lhs.ty(&fx.mir.local_decls, fx.tcx));
let lhs = trans_operand(fx, lhs).load_value(fx);
let rhs = trans_operand(fx, rhs).load_value(fx);
2018-06-20 08:29:50 -05:00
let res = match ty.sty {
TypeVariants::TyUint(_) => {
2018-06-27 08:47:58 -05:00
trans_int_binop(fx, *bin_op, lhs, rhs, ty, false, true)
2018-06-20 08:29:50 -05:00
}
2018-06-24 07:29:56 -05:00
TypeVariants::TyInt(_) => {
2018-06-27 08:47:58 -05:00
trans_int_binop(fx, *bin_op, lhs, rhs, ty, true, true)
2018-06-24 07:29:56 -05:00
}
2018-06-27 08:57:52 -05:00
_ => unimplemented!("checked bin op {:?} for {:?}", bin_op, ty),
2018-06-20 08:29:50 -05:00
};
2018-06-23 11:26:54 -05:00
unimplemented!("checked bin op {:?}", bin_op);
2018-06-28 13:13:51 -05:00
lval.write_cvalue(fx, res);
2018-06-20 08:29:50 -05:00
}
2018-06-27 08:57:52 -05:00
Rvalue::UnaryOp(un_op, operand) => {
let ty = fx.monomorphize(&operand.ty(&fx.mir.local_decls, fx.tcx));
let layout = fx.layout_of(ty);
let val = trans_operand(fx, operand).load_value(fx);
let res = match un_op {
UnOp::Not => fx.bcx.ins().bnot(val),
UnOp::Neg => match ty.sty {
TypeVariants::TyFloat(_) => fx.bcx.ins().fneg(val),
2018-06-27 09:01:30 -05:00
_ => unimplemented!("un op Neg for {:?}", ty),
2018-06-27 08:57:52 -05:00
}
};
lval.write_cvalue(fx, CValue::ByVal(res, layout));
}
2018-06-20 08:29:50 -05:00
Rvalue::Cast(CastKind::ReifyFnPointer, operand, ty) => {
let operand = trans_operand(fx, operand);
let layout = fx.layout_of(ty);
lval.write_cvalue(fx, operand.unchecked_cast_to(layout));
2018-06-20 08:29:50 -05:00
}
Rvalue::Cast(CastKind::UnsafeFnPointer, operand, ty) => {
let operand = trans_operand(fx, operand);
let layout = fx.layout_of(ty);
lval.write_cvalue(fx, operand.unchecked_cast_to(layout));
2018-06-23 11:26:54 -05:00
}
Rvalue::Discriminant(place) => {
2018-06-26 13:29:32 -05:00
let place = trans_place(fx, place);
let dest_cton_ty = fx.cton_type(dest_layout.ty).unwrap();
let layout = lval.layout();
2018-06-23 11:26:54 -05:00
if layout.abi == layout::Abi::Uninhabited {
fx.bcx.ins().trap(TrapCode::User(!0));
}
match layout.variants {
layout::Variants::Single { index } => {
let discr_val = layout.ty.ty_adt_def().map_or(
index as u128,
|def| def.discriminant_for_variant(fx.tcx, index).val);
let val = CValue::const_val(fx, dest_layout.ty, discr_val as u64 as i64);
lval.write_cvalue(fx, val);
return;
2018-06-23 11:26:54 -05:00
}
layout::Variants::Tagged { .. } |
layout::Variants::NicheFilling { .. } => {},
}
2018-06-26 13:29:32 -05:00
let discr = place.to_cvalue(fx).value_field(fx, mir::Field::new(0));
let discr_ty = discr.layout().ty;
let lldiscr = discr.load_value(fx);
2018-06-23 11:26:54 -05:00
match layout.variants {
layout::Variants::Single { .. } => bug!(),
layout::Variants::Tagged { ref tag, .. } => {
let signed = match tag.value {
layout::Int(_, signed) => signed,
_ => false
};
let val = cton_intcast(fx, lldiscr, discr_ty, dest_layout.ty, signed);
lval.write_cvalue(fx, CValue::ByVal(val, dest_layout));
2018-06-23 11:26:54 -05:00
}
layout::Variants::NicheFilling {
dataful_variant,
ref niche_variants,
niche_start,
..
} => {
2018-06-24 07:01:41 -05:00
let niche_llty = fx.cton_type(discr_ty).unwrap();
2018-06-23 11:26:54 -05:00
if niche_variants.start() == niche_variants.end() {
let b = fx.bcx.ins().icmp_imm(IntCC::Equal, lldiscr, niche_start as u64 as i64);
2018-06-24 07:01:41 -05:00
let if_true = fx.bcx.ins().iconst(dest_cton_ty, *niche_variants.start() as u64 as i64);
let if_false = fx.bcx.ins().iconst(dest_cton_ty, dataful_variant as u64 as i64);
2018-06-23 11:26:54 -05:00
let val = fx.bcx.ins().select(b, if_true, if_false);
lval.write_cvalue(fx, CValue::ByVal(val, dest_layout));
2018-06-23 11:26:54 -05:00
} else {
// Rebase from niche values to discriminant values.
let delta = niche_start.wrapping_sub(*niche_variants.start() as u128);
let delta = fx.bcx.ins().iconst(niche_llty, delta as u64 as i64);
let lldiscr = fx.bcx.ins().isub(lldiscr, delta);
let b = fx.bcx.ins().icmp_imm(IntCC::UnsignedLessThanOrEqual, lldiscr, *niche_variants.end() as u64 as i64);
let if_true = cton_intcast(fx, lldiscr, discr_ty, dest_layout.ty, false);
2018-06-23 11:26:54 -05:00
let if_false = fx.bcx.ins().iconst(niche_llty, dataful_variant as u64 as i64);
let val = fx.bcx.ins().select(b, if_true, if_false);
lval.write_cvalue(fx, CValue::ByVal(val, dest_layout));
2018-06-23 11:26:54 -05:00
}
}
}
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 => {
fx.bcx.ins().nop();
}
2018-06-17 11:05:11 -05:00
_ => unimplemented!("stmt {:?}", stmt),
}
let inst = fx.bcx.func.layout.next_inst(nop_inst).unwrap();
fx.bcx.func.layout.remove_inst(nop_inst);
fx.bcx.func.comments[inst] = format!("{:?}", stmt);
2018-06-17 11:05:11 -05:00
}
2018-06-30 09:38:49 -05:00
fn trans_int_binop<'a, 'tcx: 'a>(fx: &mut FunctionCx<'a, 'tcx>, bin_op: BinOp, lhs: Value, rhs: Value, ty: Ty<'tcx>, signed: bool, _checked: bool) -> CValue<'tcx> {
2018-06-27 08:47:58 -05:00
let res = match (bin_op, signed) {
(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, false) => fx.bcx.ins().udiv(lhs, rhs),
(BinOp::Div, true) => fx.bcx.ins().sdiv(lhs, rhs),
(BinOp::Rem, false) => fx.bcx.ins().urem(lhs, rhs),
(BinOp::Rem, true) => fx.bcx.ins().srem(lhs, rhs),
(BinOp::BitXor, _) => fx.bcx.ins().bxor(lhs, rhs),
(BinOp::BitAnd, _) => fx.bcx.ins().band(lhs, rhs),
(BinOp::BitOr, _) => fx.bcx.ins().bor(lhs, rhs),
(BinOp::Shl, _) => fx.bcx.ins().ishl(lhs, rhs),
(BinOp::Shr, false) => fx.bcx.ins().ushr(lhs, rhs),
(BinOp::Shr, true) => fx.bcx.ins().sshr(lhs, rhs),
(BinOp::Eq, _) => fx.bcx.ins().icmp(IntCC::Equal , lhs, rhs),
(BinOp::Lt, false) => fx.bcx.ins().icmp(IntCC::UnsignedLessThan , lhs, rhs),
(BinOp::Lt, true) => fx.bcx.ins().icmp(IntCC::SignedLessThan , lhs, rhs),
(BinOp::Le, false) => fx.bcx.ins().icmp(IntCC::UnsignedLessThanOrEqual , lhs, rhs),
(BinOp::Le, true) => fx.bcx.ins().icmp(IntCC::SignedLessThanOrEqual , lhs, rhs),
(BinOp::Ne, _) => fx.bcx.ins().icmp(IntCC::NotEqual , lhs, rhs),
(BinOp::Ge, false) => fx.bcx.ins().icmp(IntCC::UnsignedGreaterThanOrEqual , lhs, rhs),
(BinOp::Ge, true) => fx.bcx.ins().icmp(IntCC::SignedGreaterThanOrEqual , lhs, rhs),
(BinOp::Gt, false) => fx.bcx.ins().icmp(IntCC::UnsignedGreaterThan , lhs, rhs),
(BinOp::Gt, true) => fx.bcx.ins().icmp(IntCC::SignedGreaterThan , lhs, rhs),
(BinOp::Offset, _) => bug!("bin op Offset on non ptr lhs: {:?} rhs: {:?}", lhs, rhs),
};
// TODO: return correct value for checked binops
CValue::ByVal(res, fx.layout_of(ty))
}
fn trans_place<'a, 'tcx: 'a>(fx: &mut FunctionCx<'a, 'tcx>, place: &Place<'tcx>) -> CPlace<'tcx> {
2018-06-17 11:05:11 -05:00
match place {
Place::Local(local) => fx.get_local_place(*local),
2018-06-17 11:05:11 -05:00
Place::Projection(projection) => {
2018-06-23 11:26:54 -05:00
let base = trans_place(fx, &projection.base);
2018-06-17 11:05:11 -05:00
match projection.elem {
2018-06-23 11:54:15 -05:00
ProjectionElem::Deref => {
CPlace::Addr(base.to_cvalue(fx).load_value(fx), fx.layout_of(place.ty(&*fx.mir, fx.tcx).to_ty(fx.tcx)))
2018-06-23 11:54:15 -05:00
}
2018-06-30 09:38:49 -05:00
ProjectionElem::Field(field, _ty) => {
base.place_field(fx, field)
2018-06-23 11:26:54 -05:00
}
2018-06-30 09:38:49 -05:00
ProjectionElem::Downcast(_adt_def, variant) => {
base.downcast_variant(fx, variant)
2018-06-17 11:05:11 -05:00
}
_ => unimplemented!("projection {:?}", projection),
}
}
place => unimplemented!("place {:?}", place),
}
}
fn trans_operand<'a, 'tcx>(fx: &mut FunctionCx<'a, 'tcx>, operand: &Operand<'tcx>) -> CValue<'tcx> {
2018-06-17 11:05:11 -05:00
match operand {
2018-06-18 11:39:07 -05:00
Operand::Move(place) |
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-24 07:01:41 -05:00
let layout = fx.layout_of(const_.ty);
2018-06-17 11:05:11 -05:00
match const_.ty.sty {
TypeVariants::TyBool => {
let bits = value.to_scalar().unwrap().to_bits(layout.size).unwrap();
CValue::const_val(fx, const_.ty, bits as u64 as i64)
}
2018-06-17 11:05:11 -05:00
TypeVariants::TyUint(_) => {
2018-06-17 12:10:00 -05:00
let bits = value.to_scalar().unwrap().to_bits(layout.size).unwrap();
CValue::const_val(fx, const_.ty, bits as u64 as i64)
2018-06-17 11:05:11 -05:00
}
2018-06-17 12:10:00 -05:00
TypeVariants::TyInt(_) => {
let bits = value.to_scalar().unwrap().to_bits(layout.size).unwrap();
CValue::const_val(fx, const_.ty, bits as i128 as i64)
2018-06-17 12:10:00 -05:00
}
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, fx.layout_of(const_.ty))
2018-06-17 12:10:00 -05:00
}
_ => unimplemented!("value {:?} ty {:?}", value, const_.ty),
2018-06-17 11:05:11 -05:00
}
}
_ => unimplemented!()
}
}
}
}