2018-07-30 09:57:40 -05:00
|
|
|
use crate::prelude::*;
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2018-08-15 09:17:59 -05:00
|
|
|
struct PrintOnPanic(String);
|
|
|
|
impl Drop for PrintOnPanic {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
if ::std::thread::panicking() {
|
|
|
|
println!("{}", self.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-17 06:01:56 -05:00
|
|
|
pub fn trans_mono_item<'a, 'tcx: 'a>(
|
2018-08-26 09:58:52 -05:00
|
|
|
tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
|
|
|
module: &mut Module<impl Backend>,
|
|
|
|
caches: &mut Caches,
|
|
|
|
ccx: &mut crate::constant::ConstantCx,
|
2018-08-17 06:01:56 -05:00
|
|
|
mono_item: MonoItem<'tcx>,
|
|
|
|
) {
|
2018-06-30 09:37:02 -05:00
|
|
|
match mono_item {
|
2018-08-22 11:53:57 -05:00
|
|
|
MonoItem::Fn(inst) => {
|
|
|
|
let _print_guard = PrintOnPanic(format!("{:?}", inst));
|
|
|
|
let mir = match inst.def {
|
2018-08-24 07:54:22 -05:00
|
|
|
InstanceDef::Item(_) | InstanceDef::DropGlue(_, _) | InstanceDef::Virtual(_, _) => {
|
2018-08-22 11:53:57 -05:00
|
|
|
let mut mir = ::std::io::Cursor::new(Vec::new());
|
2018-08-24 07:54:22 -05:00
|
|
|
::rustc_mir::util::write_mir_pretty(tcx, Some(inst.def_id()), &mut mir)
|
|
|
|
.unwrap();
|
2018-08-22 11:53:57 -05:00
|
|
|
mir.into_inner()
|
|
|
|
}
|
|
|
|
InstanceDef::FnPtrShim(_, _)
|
|
|
|
| InstanceDef::ClosureOnceShim { .. }
|
|
|
|
| InstanceDef::CloneShim(_, _) => {
|
|
|
|
// FIXME fix write_mir_pretty for these instances
|
2018-08-26 09:58:52 -05:00
|
|
|
format!("{:#?}", tcx.instance_mir(inst.def)).into_bytes()
|
2018-08-22 11:53:57 -05:00
|
|
|
}
|
|
|
|
InstanceDef::Intrinsic(_) => bug!("tried to codegen intrinsic"),
|
|
|
|
};
|
|
|
|
let mir_file_name =
|
|
|
|
"target/out/mir/".to_string() + &format!("{:?}", inst.def_id()).replace('/', "@");
|
|
|
|
::std::fs::write(mir_file_name, mir).unwrap();
|
2018-06-30 11:54:08 -05:00
|
|
|
|
2018-08-26 10:14:12 -05:00
|
|
|
trans_fn(tcx, module, ccx, caches, inst);
|
2018-08-24 07:54:22 -05:00
|
|
|
}
|
2018-08-13 05:13:43 -05:00
|
|
|
MonoItem::Static(def_id) => {
|
2018-08-26 09:58:52 -05:00
|
|
|
crate::constant::codegen_static(ccx, def_id);
|
2018-08-13 05:13:43 -05:00
|
|
|
}
|
2018-08-26 09:58:52 -05:00
|
|
|
MonoItem::GlobalAsm(node_id) => tcx
|
2018-07-31 05:25:16 -05:00
|
|
|
.sess
|
2018-08-11 05:04:54 -05:00
|
|
|
.fatal(&format!("Unimplemented global asm mono item {:?}", node_id)),
|
2018-06-22 12:08:59 -05:00
|
|
|
}
|
2018-06-19 12:51:29 -05:00
|
|
|
}
|
|
|
|
|
2018-08-14 11:52:43 -05:00
|
|
|
fn trans_fn<'a, 'tcx: 'a>(
|
|
|
|
tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
2018-08-14 13:58:24 -05:00
|
|
|
module: &mut Module<impl Backend>,
|
2018-08-14 11:52:43 -05:00
|
|
|
constants: &mut crate::constant::ConstantCx,
|
2018-08-26 10:14:12 -05:00
|
|
|
caches: &mut Caches,
|
2018-07-31 05:25:16 -05:00
|
|
|
instance: Instance<'tcx>,
|
2018-08-17 05:57:41 -05:00
|
|
|
) {
|
2018-08-14 11:52:43 -05:00
|
|
|
// Step 1. Get mir
|
2018-08-18 09:08:00 -05:00
|
|
|
let mir = tcx.instance_mir(instance.def);
|
2018-08-14 11:52:43 -05:00
|
|
|
|
|
|
|
// Step 2. Declare function
|
|
|
|
let (name, sig) = get_function_name_and_sig(tcx, instance);
|
|
|
|
let func_id = module
|
|
|
|
.declare_function(&name, Linkage::Export, &sig)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
// Step 3. Make FunctionBuilder
|
|
|
|
let mut func = Function::with_name_signature(ExternalName::user(0, 0), sig);
|
2018-06-17 11:05:11 -05:00
|
|
|
let mut func_ctx = FunctionBuilderContext::new();
|
2018-08-15 05:36:13 -05:00
|
|
|
let mut bcx: FunctionBuilder = FunctionBuilder::new(&mut func, &mut func_ctx);
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2018-08-14 11:52:43 -05:00
|
|
|
// Step 4. Predefine ebb's
|
2018-06-17 11:05:11 -05:00
|
|
|
let start_ebb = bcx.create_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-08-14 11:52:43 -05:00
|
|
|
// Step 5. Make FunctionCx
|
2018-06-20 08:15:28 -05:00
|
|
|
let mut fx = FunctionCx {
|
2018-08-14 11:52:43 -05:00
|
|
|
tcx,
|
|
|
|
module,
|
2018-06-23 11:54:15 -05:00
|
|
|
instance,
|
2018-06-20 08:15:28 -05:00
|
|
|
mir,
|
2018-06-23 11:54:15 -05:00
|
|
|
bcx,
|
|
|
|
param_substs: {
|
|
|
|
assert!(!instance.substs.needs_infer());
|
|
|
|
instance.substs
|
|
|
|
},
|
2018-06-20 08:15:28 -05:00
|
|
|
ebb_map,
|
|
|
|
local_map: HashMap::new(),
|
2018-07-14 04:59:42 -05:00
|
|
|
comments: HashMap::new(),
|
2018-08-14 11:52:43 -05:00
|
|
|
constants,
|
2018-08-26 10:14:12 -05:00
|
|
|
caches,
|
2018-08-15 09:17:59 -05:00
|
|
|
|
|
|
|
top_nop: None,
|
2018-06-20 08:15:28 -05:00
|
|
|
};
|
|
|
|
|
2018-08-14 11:52:43 -05:00
|
|
|
// Step 6. Codegen function
|
|
|
|
crate::abi::codegen_fn_prelude(&mut fx, start_ebb);
|
|
|
|
codegen_fn_content(&mut fx);
|
2018-08-15 07:36:45 -05:00
|
|
|
fx.bcx.seal_all_blocks();
|
|
|
|
fx.bcx.finalize();
|
2018-08-14 11:52:43 -05:00
|
|
|
|
|
|
|
// Step 7. Print function to terminal for debugging
|
|
|
|
let mut writer = crate::pretty_clif::CommentWriter(fx.comments);
|
|
|
|
let mut cton = String::new();
|
|
|
|
::cranelift::codegen::write::decorate_function(&mut writer, &mut cton, &func, None).unwrap();
|
2018-08-15 09:17:59 -05:00
|
|
|
let clif_file_name = "target/out/clif/".to_string() + &tcx.symbol_name(instance).as_str();
|
|
|
|
::std::fs::write(clif_file_name, cton.as_bytes()).unwrap();
|
2018-08-14 11:52:43 -05:00
|
|
|
|
|
|
|
// Step 8. Verify function
|
|
|
|
verify_func(tcx, writer, &func);
|
|
|
|
|
|
|
|
// Step 9. Define function
|
|
|
|
// TODO: cranelift doesn't yet support some of the things needed
|
2018-08-14 15:01:18 -05:00
|
|
|
if should_codegen(tcx.sess) {
|
2018-08-26 10:14:12 -05:00
|
|
|
caches.context.func = func;
|
2018-08-30 13:14:56 -05:00
|
|
|
module
|
|
|
|
.define_function(func_id, &mut caches.context)
|
|
|
|
.unwrap();
|
2018-08-26 10:14:12 -05:00
|
|
|
caches.context.clear();
|
2018-08-14 11:52:43 -05:00
|
|
|
}
|
|
|
|
}
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2018-08-14 11:52:43 -05:00
|
|
|
fn verify_func(tcx: TyCtxt, writer: crate::pretty_clif::CommentWriter, func: &Function) {
|
|
|
|
let flags = settings::Flags::new(settings::builder());
|
|
|
|
match ::cranelift::codegen::verify_function(&func, &flags) {
|
|
|
|
Ok(_) => {}
|
|
|
|
Err(err) => {
|
|
|
|
tcx.sess.err(&format!("{:?}", err));
|
|
|
|
let pretty_error = ::cranelift::codegen::print_errors::pretty_verifier_error(
|
|
|
|
&func,
|
|
|
|
None,
|
|
|
|
Some(Box::new(writer)),
|
2018-08-15 05:36:13 -05:00
|
|
|
err,
|
2018-08-14 11:52:43 -05:00
|
|
|
);
|
|
|
|
tcx.sess
|
|
|
|
.fatal(&format!("cretonne verify error:\n{}", pretty_error));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-14 13:31:16 -05:00
|
|
|
fn codegen_fn_content<'a, 'tcx: 'a>(fx: &mut FunctionCx<'a, 'tcx, impl Backend>) {
|
2018-08-14 11:52:43 -05:00
|
|
|
for (bb, bb_data) in fx.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
|
|
|
|
2018-07-20 06:51:34 -05:00
|
|
|
fx.bcx.ins().nop();
|
2018-06-17 11:05:11 -05:00
|
|
|
for stmt in &bb_data.statements {
|
2018-08-08 08:38:03 -05:00
|
|
|
trans_stmt(fx, ebb, stmt);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
|
2018-07-20 06:51:34 -05:00
|
|
|
let mut terminator_head = "\n".to_string();
|
2018-07-31 05:25:16 -05:00
|
|
|
bb_data
|
|
|
|
.terminator()
|
|
|
|
.kind
|
|
|
|
.fmt_head(&mut terminator_head)
|
|
|
|
.unwrap();
|
2018-07-20 06:51:34 -05:00
|
|
|
let inst = fx.bcx.func.layout.last_inst(ebb).unwrap();
|
|
|
|
fx.add_comment(inst, terminator_head);
|
|
|
|
|
|
|
|
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);
|
2018-07-20 06:51:34 -05:00
|
|
|
fx.bcx.ins().jump(ebb, &[]);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
TerminatorKind::Return => {
|
2018-08-11 04:01:48 -05:00
|
|
|
crate::abi::codegen_return(fx);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
TerminatorKind::Assert {
|
|
|
|
cond,
|
|
|
|
expected,
|
|
|
|
msg: _,
|
|
|
|
target,
|
|
|
|
cleanup: _,
|
|
|
|
} => {
|
2018-06-26 12:44:19 -05:00
|
|
|
let cond = trans_operand(fx, cond).load_value(fx);
|
2018-08-13 12:14:55 -05:00
|
|
|
// TODO HACK brz/brnz for i8/i16 is not yet implemented
|
|
|
|
let cond = fx.bcx.ins().uextend(types::I32, cond);
|
2018-06-19 12:51:29 -05:00
|
|
|
let target = fx.get_ebb(*target);
|
2018-07-20 06:51:34 -05:00
|
|
|
if *expected {
|
|
|
|
fx.bcx.ins().brnz(cond, target, &[]);
|
2018-08-09 08:36:02 -05:00
|
|
|
} else {
|
|
|
|
fx.bcx.ins().brz(cond, target, &[]);
|
2018-06-30 09:27: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
|
|
|
}
|
|
|
|
|
2018-07-31 05:25:16 -05:00
|
|
|
TerminatorKind::SwitchInt {
|
|
|
|
discr,
|
|
|
|
switch_ty: _,
|
|
|
|
values,
|
|
|
|
targets,
|
|
|
|
} => {
|
2018-08-08 05:53:09 -05:00
|
|
|
// TODO: prevent panics on large and negative disciminants
|
2018-08-14 15:01:18 -05:00
|
|
|
if should_codegen(fx.tcx.sess) {
|
2018-08-08 05:53:09 -05:00
|
|
|
let discr = trans_operand(fx, discr).load_value(fx);
|
|
|
|
let mut jt_data = JumpTableData::new();
|
|
|
|
for (i, value) in values.iter().enumerate() {
|
|
|
|
let ebb = fx.get_ebb(targets[i]);
|
|
|
|
jt_data.set_entry(*value as usize, ebb);
|
|
|
|
}
|
|
|
|
let 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-08-15 07:36:45 -05:00
|
|
|
} else {
|
|
|
|
fx.bcx.ins().trap(TrapCode::User(0));
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
TerminatorKind::Call {
|
|
|
|
func,
|
|
|
|
args,
|
|
|
|
destination,
|
|
|
|
cleanup: _,
|
|
|
|
} => {
|
2018-07-30 09:57:40 -05:00
|
|
|
crate::abi::codegen_call(fx, func, args, destination);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
2018-06-17 12:10:00 -05:00
|
|
|
TerminatorKind::Resume | TerminatorKind::Abort | TerminatorKind::Unreachable => {
|
2018-07-20 06:51:34 -05:00
|
|
|
fx.bcx.ins().trap(TrapCode::User(!0));
|
2018-06-17 12:10:00 -05:00
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
TerminatorKind::Yield { .. }
|
|
|
|
| TerminatorKind::FalseEdges { .. }
|
|
|
|
| TerminatorKind::FalseUnwind { .. } => {
|
2018-06-18 11:39:07 -05:00
|
|
|
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);
|
2018-07-20 06:51:34 -05:00
|
|
|
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
|
|
|
}
|
2018-06-30 09:27:11 -05:00
|
|
|
};
|
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-08-14 13:31:16 -05:00
|
|
|
fn trans_stmt<'a, 'tcx: 'a>(
|
|
|
|
fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
|
|
|
|
cur_ebb: Ebb,
|
|
|
|
stmt: &Statement<'tcx>,
|
|
|
|
) {
|
2018-08-15 09:17:59 -05:00
|
|
|
let _print_guard = PrintOnPanic(format!("stmt {:?}", stmt));
|
2018-07-14 09:39:49 -05:00
|
|
|
|
2018-07-20 06:51:34 -05:00
|
|
|
let inst = fx.bcx.func.layout.last_inst(cur_ebb).unwrap();
|
|
|
|
fx.add_comment(inst, format!("{:?}", stmt));
|
2018-06-30 09:27:11 -05:00
|
|
|
|
2018-06-17 11:05:11 -05:00
|
|
|
match &stmt.kind {
|
2018-07-31 05:25:16 -05:00
|
|
|
StatementKind::SetDiscriminant {
|
|
|
|
place,
|
|
|
|
variant_index,
|
|
|
|
} => {
|
2018-06-24 07:29:56 -05:00
|
|
|
let place = trans_place(fx, place);
|
2018-06-26 12:44:19 -05:00
|
|
|
let layout = place.layout();
|
2018-06-24 07:29:56 -05:00
|
|
|
if layout.for_variant(&*fx, *variant_index).abi == layout::Abi::Uninhabited {
|
2018-08-08 08:38:03 -05:00
|
|
|
return;
|
2018-06-23 11:54:15 -05:00
|
|
|
}
|
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 { .. } => {
|
2018-06-26 12:44:19 -05:00
|
|
|
let ptr = place.place_field(fx, mir::Field::new(0));
|
2018-07-31 05:25:16 -05:00
|
|
|
let to = layout
|
|
|
|
.ty
|
|
|
|
.ty_adt_def()
|
|
|
|
.unwrap()
|
2018-06-24 07:29:56 -05:00
|
|
|
.discriminant_for_variant(fx.tcx, *variant_index)
|
2018-06-23 11:54:15 -05:00
|
|
|
.val;
|
2018-06-26 12:44:19 -05:00
|
|
|
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 {
|
2018-06-26 12:44:19 -05:00
|
|
|
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 {
|
2018-06-26 12:44:19 -05:00
|
|
|
CValue::const_val(fx, niche.layout().ty, 0)
|
2018-06-23 11:54:15 -05:00
|
|
|
} else {
|
2018-06-26 12:44:19 -05:00
|
|
|
CValue::const_val(fx, niche.layout().ty, niche_value as u64 as i64)
|
2018-06-23 11:54:15 -05:00
|
|
|
};
|
2018-06-26 12:44:19 -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);
|
2018-06-26 12:44:19 -05:00
|
|
|
let dest_layout = lval.layout();
|
2018-06-20 08:29:50 -05:00
|
|
|
match rval {
|
|
|
|
Rvalue::Use(operand) => {
|
|
|
|
let val = trans_operand(fx, operand);
|
2018-06-26 12:44:19 -05:00
|
|
|
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));
|
2018-07-30 08:34:34 -05:00
|
|
|
let lhs = trans_operand(fx, lhs);
|
|
|
|
let rhs = trans_operand(fx, rhs);
|
2018-06-23 11:26:54 -05:00
|
|
|
|
|
|
|
let res = match ty.sty {
|
2018-08-24 07:54:22 -05:00
|
|
|
ty::Bool => trans_bool_binop(fx, *bin_op, lhs, rhs, lval.layout().ty),
|
2018-08-24 07:51:02 -05:00
|
|
|
ty::Uint(_) => {
|
2018-08-08 02:34:56 -05:00
|
|
|
trans_int_binop(fx, *bin_op, lhs, rhs, lval.layout().ty, false)
|
2018-06-23 11:26:54 -05:00
|
|
|
}
|
2018-08-24 07:51:02 -05:00
|
|
|
ty::Int(_) => {
|
2018-08-08 02:34:56 -05:00
|
|
|
trans_int_binop(fx, *bin_op, lhs, rhs, lval.layout().ty, true)
|
2018-06-23 11:54:15 -05:00
|
|
|
}
|
2018-08-24 07:54:22 -05:00
|
|
|
ty::Float(_) => trans_float_binop(fx, *bin_op, lhs, rhs, lval.layout().ty),
|
|
|
|
ty::Char => trans_char_binop(fx, *bin_op, lhs, rhs, lval.layout().ty),
|
|
|
|
ty::RawPtr(..) => trans_ptr_binop(fx, *bin_op, lhs, rhs, lval.layout().ty),
|
2018-08-08 02:34:56 -05:00
|
|
|
_ => unimplemented!("binop {:?} 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));
|
2018-07-30 08:34:34 -05:00
|
|
|
let lhs = trans_operand(fx, lhs);
|
|
|
|
let rhs = trans_operand(fx, rhs);
|
2018-06-20 08:29:50 -05:00
|
|
|
|
|
|
|
let res = match ty.sty {
|
2018-08-24 07:51:02 -05:00
|
|
|
ty::Uint(_) => {
|
2018-08-08 02:34:56 -05:00
|
|
|
trans_checked_int_binop(fx, *bin_op, lhs, rhs, lval.layout().ty, false)
|
2018-06-20 08:29:50 -05:00
|
|
|
}
|
2018-08-24 07:51:02 -05:00
|
|
|
ty::Int(_) => {
|
2018-08-08 02:34:56 -05:00
|
|
|
trans_checked_int_binop(fx, *bin_op, lhs, rhs, lval.layout().ty, true)
|
2018-06-24 07:29:56 -05:00
|
|
|
}
|
2018-08-08 02:34:56 -05:00
|
|
|
_ => unimplemented!("checked binop {:?} for {:?}", bin_op, ty),
|
2018-06-20 08:29:50 -05:00
|
|
|
};
|
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 {
|
2018-08-24 07:51:02 -05:00
|
|
|
ty::Int(_) => {
|
2018-08-08 07:39:46 -05:00
|
|
|
let clif_ty = fx.cton_type(ty).unwrap();
|
|
|
|
let zero = fx.bcx.ins().iconst(clif_ty, 0);
|
2018-08-08 03:39:10 -05:00
|
|
|
fx.bcx.ins().isub(zero, val)
|
2018-08-08 05:45:34 -05:00
|
|
|
}
|
2018-08-24 07:51:02 -05:00
|
|
|
ty::Float(_) => fx.bcx.ins().fneg(val),
|
2018-06-27 09:01:30 -05:00
|
|
|
_ => unimplemented!("un op Neg for {:?}", ty),
|
2018-07-31 05:25:16 -05:00
|
|
|
},
|
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);
|
2018-06-26 12:44:19 -05:00
|
|
|
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);
|
2018-06-26 12:44:19 -05:00
|
|
|
let layout = fx.layout_of(ty);
|
|
|
|
lval.write_cvalue(fx, operand.unchecked_cast_to(layout));
|
2018-06-23 11:26:54 -05:00
|
|
|
}
|
2018-07-18 09:22:29 -05:00
|
|
|
Rvalue::Cast(CastKind::Misc, operand, to_ty) => {
|
2018-07-18 07:21:13 -05:00
|
|
|
let operand = trans_operand(fx, operand);
|
2018-07-18 09:22:29 -05:00
|
|
|
let from_ty = operand.layout().ty;
|
|
|
|
match (&from_ty.sty, &to_ty.sty) {
|
2018-08-24 07:51:02 -05:00
|
|
|
(ty::Ref(..), ty::Ref(..))
|
|
|
|
| (ty::Ref(..), ty::RawPtr(..))
|
|
|
|
| (ty::RawPtr(..), ty::Ref(..))
|
|
|
|
| (ty::RawPtr(..), ty::RawPtr(..)) => {
|
2018-07-18 09:22:29 -05:00
|
|
|
lval.write_cvalue(fx, operand.unchecked_cast_to(dest_layout));
|
2018-07-18 07:21:13 -05:00
|
|
|
}
|
2018-08-24 07:54:22 -05:00
|
|
|
(ty::RawPtr(..), ty::Uint(_)) | (ty::FnPtr(..), ty::Uint(_))
|
2018-08-09 04:25:14 -05:00
|
|
|
if to_ty.sty == fx.tcx.types.usize.sty =>
|
|
|
|
{
|
2018-08-09 04:23:04 -05:00
|
|
|
lval.write_cvalue(fx, operand.unchecked_cast_to(dest_layout));
|
|
|
|
}
|
2018-08-24 07:54:22 -05:00
|
|
|
(ty::Uint(_), ty::RawPtr(..)) if from_ty.sty == fx.tcx.types.usize.sty => {
|
2018-08-09 04:07:10 -05:00
|
|
|
lval.write_cvalue(fx, operand.unchecked_cast_to(dest_layout));
|
|
|
|
}
|
2018-08-24 07:51:02 -05:00
|
|
|
(ty::Char, ty::Uint(_))
|
|
|
|
| (ty::Uint(_), ty::Char)
|
|
|
|
| (ty::Uint(_), ty::Int(_))
|
|
|
|
| (ty::Uint(_), ty::Uint(_)) => {
|
2018-07-18 09:22:29 -05:00
|
|
|
let from = operand.load_value(fx);
|
2018-08-14 05:13:07 -05:00
|
|
|
let res = crate::common::cton_intcast(
|
|
|
|
fx,
|
|
|
|
from,
|
|
|
|
fx.cton_type(to_ty).unwrap(),
|
|
|
|
false,
|
|
|
|
);
|
2018-07-18 09:22:29 -05:00
|
|
|
lval.write_cvalue(fx, CValue::ByVal(res, dest_layout));
|
|
|
|
}
|
2018-08-24 07:54:22 -05:00
|
|
|
(ty::Int(_), ty::Int(_)) | (ty::Int(_), ty::Uint(_)) => {
|
2018-07-18 09:22:29 -05:00
|
|
|
let from = operand.load_value(fx);
|
2018-08-14 05:13:07 -05:00
|
|
|
let res = crate::common::cton_intcast(
|
|
|
|
fx,
|
|
|
|
from,
|
|
|
|
fx.cton_type(to_ty).unwrap(),
|
|
|
|
true,
|
|
|
|
);
|
2018-07-18 09:22:29 -05:00
|
|
|
lval.write_cvalue(fx, CValue::ByVal(res, dest_layout));
|
|
|
|
}
|
2018-08-24 07:51:02 -05:00
|
|
|
(ty::Float(from_flt), ty::Float(to_flt)) => {
|
2018-08-09 04:16:46 -05:00
|
|
|
let from = operand.load_value(fx);
|
|
|
|
let res = match (from_flt, to_flt) {
|
|
|
|
(FloatTy::F32, FloatTy::F64) => {
|
|
|
|
fx.bcx.ins().fpromote(types::F64, from)
|
|
|
|
}
|
|
|
|
(FloatTy::F64, FloatTy::F32) => {
|
|
|
|
fx.bcx.ins().fdemote(types::F32, from)
|
|
|
|
}
|
|
|
|
_ => from,
|
|
|
|
};
|
|
|
|
lval.write_cvalue(fx, CValue::ByVal(res, dest_layout));
|
|
|
|
}
|
2018-08-24 07:51:02 -05:00
|
|
|
(ty::Int(_), ty::Float(_)) => {
|
2018-08-09 04:16:46 -05:00
|
|
|
let from = operand.load_value(fx);
|
|
|
|
let f_type = fx.cton_type(to_ty).unwrap();
|
|
|
|
let res = fx.bcx.ins().fcvt_from_sint(f_type, from);
|
|
|
|
lval.write_cvalue(fx, CValue::ByVal(res, dest_layout));
|
|
|
|
}
|
2018-08-24 07:51:02 -05:00
|
|
|
(ty::Uint(_), ty::Float(_)) => {
|
2018-08-09 04:16:46 -05:00
|
|
|
let from = operand.load_value(fx);
|
|
|
|
let f_type = fx.cton_type(to_ty).unwrap();
|
|
|
|
let res = fx.bcx.ins().fcvt_from_uint(f_type, from);
|
|
|
|
lval.write_cvalue(fx, CValue::ByVal(res, dest_layout));
|
|
|
|
}
|
2018-08-24 07:54:22 -05:00
|
|
|
(ty::Bool, ty::Uint(_)) | (ty::Bool, ty::Int(_)) => {
|
2018-08-09 08:44:01 -05:00
|
|
|
let to_ty = fx.cton_type(to_ty).unwrap();
|
|
|
|
let from = operand.load_value(fx);
|
|
|
|
let res = if to_ty != types::I8 {
|
|
|
|
fx.bcx.ins().uextend(to_ty, from)
|
|
|
|
} else {
|
|
|
|
from
|
|
|
|
};
|
|
|
|
lval.write_cvalue(fx, CValue::ByVal(res, dest_layout));
|
|
|
|
}
|
2018-08-09 04:07:10 -05:00
|
|
|
_ => unimpl!("rval misc {:?} {:?}", from_ty, to_ty),
|
2018-07-18 07:21:13 -05:00
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
}
|
|
|
|
Rvalue::Cast(CastKind::ClosureFnPointer, operand, ty) => {
|
|
|
|
unimplemented!("rval closure_fn_ptr {:?} {:?}", operand, ty)
|
|
|
|
}
|
|
|
|
Rvalue::Cast(CastKind::Unsize, operand, ty) => {
|
2018-08-08 08:38:03 -05:00
|
|
|
unimpl!("rval unsize {:?} {:?}", operand, ty);
|
2018-07-31 05:25:16 -05:00
|
|
|
}
|
2018-06-23 11:26:54 -05:00
|
|
|
Rvalue::Discriminant(place) => {
|
2018-07-30 07:36:32 -05:00
|
|
|
let place = trans_place(fx, place).to_cvalue(fx);
|
|
|
|
let discr = trans_get_discriminant(fx, place, dest_layout);
|
|
|
|
lval.write_cvalue(fx, discr);
|
2018-06-20 08:29:50 -05:00
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
Rvalue::Repeat(operand, times) => {
|
2018-08-08 05:30:25 -05:00
|
|
|
let operand = trans_operand(fx, operand);
|
|
|
|
for i in 0..*times {
|
2018-08-18 10:10:02 -05:00
|
|
|
let index = fx.bcx.ins().iconst(fx.module.pointer_type(), i as i64);
|
2018-08-08 05:30:25 -05:00
|
|
|
let to = lval.place_index(fx, index);
|
|
|
|
to.write_cvalue(fx, operand);
|
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
}
|
2018-08-08 08:38:03 -05:00
|
|
|
Rvalue::Len(lval) => unimpl!("rval len {:?}", lval),
|
2018-07-18 04:55:32 -05:00
|
|
|
Rvalue::NullaryOp(NullOp::Box, ty) => unimplemented!("rval box {:?}", ty),
|
2018-08-08 05:44:41 -05:00
|
|
|
Rvalue::NullaryOp(NullOp::SizeOf, ty) => {
|
2018-08-08 05:45:34 -05:00
|
|
|
assert!(
|
|
|
|
lval.layout()
|
|
|
|
.ty
|
|
|
|
.is_sized(fx.tcx.at(DUMMY_SP), ParamEnv::reveal_all())
|
|
|
|
);
|
2018-08-08 05:44:41 -05:00
|
|
|
let ty_size = fx.layout_of(ty).size.bytes();
|
|
|
|
let val = CValue::const_val(fx, fx.tcx.types.usize, ty_size as i64);
|
|
|
|
lval.write_cvalue(fx, val);
|
2018-08-08 05:45:34 -05:00
|
|
|
}
|
2018-08-09 04:41:34 -05:00
|
|
|
Rvalue::Aggregate(kind, operands) => match **kind {
|
|
|
|
AggregateKind::Array(_ty) => {
|
|
|
|
for (i, operand) in operands.into_iter().enumerate() {
|
|
|
|
let operand = trans_operand(fx, operand);
|
2018-08-18 10:10:02 -05:00
|
|
|
let index = fx.bcx.ins().iconst(fx.module.pointer_type(), i as i64);
|
2018-08-09 04:41:34 -05:00
|
|
|
let to = lval.place_index(fx, index);
|
|
|
|
to.write_cvalue(fx, operand);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => unimpl!("shouldn't exist at trans {:?}", rval),
|
|
|
|
},
|
2018-06-20 08:29:50 -05:00
|
|
|
}
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
StatementKind::StorageLive(_)
|
|
|
|
| StatementKind::StorageDead(_)
|
|
|
|
| StatementKind::Nop
|
|
|
|
| StatementKind::ReadForMatch(_)
|
|
|
|
| StatementKind::Validate(_, _)
|
|
|
|
| StatementKind::EndRegion(_)
|
|
|
|
| StatementKind::UserAssertTy(_, _) => {}
|
2018-08-09 08:08:54 -05:00
|
|
|
|
|
|
|
StatementKind::InlineAsm { .. } => unimpl!("Inline assembly is not supported"),
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-31 05:25:16 -05:00
|
|
|
pub fn trans_get_discriminant<'a, 'tcx: 'a>(
|
2018-08-14 13:31:16 -05:00
|
|
|
fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
|
2018-07-31 05:25:16 -05:00
|
|
|
value: CValue<'tcx>,
|
|
|
|
dest_layout: TyLayout<'tcx>,
|
|
|
|
) -> CValue<'tcx> {
|
2018-07-30 07:36:32 -05:00
|
|
|
let layout = value.layout();
|
|
|
|
|
|
|
|
if layout.abi == layout::Abi::Uninhabited {
|
|
|
|
fx.bcx.ins().trap(TrapCode::User(!0));
|
|
|
|
}
|
|
|
|
match layout.variants {
|
|
|
|
layout::Variants::Single { index } => {
|
2018-07-31 05:25:16 -05:00
|
|
|
let discr_val = layout.ty.ty_adt_def().map_or(index as u128, |def| {
|
|
|
|
def.discriminant_for_variant(fx.tcx, index).val
|
|
|
|
});
|
2018-07-30 07:36:32 -05:00
|
|
|
return CValue::const_val(fx, dest_layout.ty, discr_val as u64 as i64);
|
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
layout::Variants::Tagged { .. } | layout::Variants::NicheFilling { .. } => {}
|
2018-07-30 07:36:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
let discr = value.value_field(fx, mir::Field::new(0));
|
|
|
|
let discr_ty = discr.layout().ty;
|
|
|
|
let lldiscr = discr.load_value(fx);
|
|
|
|
match layout.variants {
|
|
|
|
layout::Variants::Single { .. } => bug!(),
|
|
|
|
layout::Variants::Tagged { ref tag, .. } => {
|
|
|
|
let signed = match tag.value {
|
|
|
|
layout::Int(_, signed) => signed,
|
2018-07-31 05:25:16 -05:00
|
|
|
_ => false,
|
2018-07-30 07:36:32 -05:00
|
|
|
};
|
2018-08-14 04:58:39 -05:00
|
|
|
let val = cton_intcast(fx, lldiscr, fx.cton_type(dest_layout.ty).unwrap(), signed);
|
2018-07-30 07:36:32 -05:00
|
|
|
return CValue::ByVal(val, dest_layout);
|
|
|
|
}
|
|
|
|
layout::Variants::NicheFilling {
|
|
|
|
dataful_variant,
|
|
|
|
ref niche_variants,
|
|
|
|
niche_start,
|
|
|
|
..
|
|
|
|
} => {
|
|
|
|
let niche_llty = fx.cton_type(discr_ty).unwrap();
|
2018-08-09 08:08:54 -05:00
|
|
|
let dest_cton_ty = fx.cton_type(dest_layout.ty).unwrap();
|
2018-07-30 07:36:32 -05:00
|
|
|
if niche_variants.start() == niche_variants.end() {
|
2018-07-31 05:25:16 -05:00
|
|
|
let b = fx
|
|
|
|
.bcx
|
|
|
|
.ins()
|
|
|
|
.icmp_imm(IntCC::Equal, lldiscr, niche_start as u64 as i64);
|
|
|
|
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-07-30 07:36:32 -05:00
|
|
|
let val = fx.bcx.ins().select(b, if_true, if_false);
|
|
|
|
return CValue::ByVal(val, dest_layout);
|
|
|
|
} 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);
|
2018-07-31 05:25:16 -05:00
|
|
|
let b = fx.bcx.ins().icmp_imm(
|
|
|
|
IntCC::UnsignedLessThanOrEqual,
|
|
|
|
lldiscr,
|
|
|
|
*niche_variants.end() as u64 as i64,
|
|
|
|
);
|
2018-08-14 05:13:07 -05:00
|
|
|
let if_true =
|
|
|
|
cton_intcast(fx, lldiscr, fx.cton_type(dest_layout.ty).unwrap(), false);
|
2018-07-31 05:25:16 -05:00
|
|
|
let if_false = fx
|
|
|
|
.bcx
|
|
|
|
.ins()
|
2018-08-09 08:08:54 -05:00
|
|
|
.iconst(dest_cton_ty, dataful_variant as u64 as i64);
|
2018-07-30 07:36:32 -05:00
|
|
|
let val = fx.bcx.ins().select(b, if_true, if_false);
|
|
|
|
return CValue::ByVal(val, dest_layout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-18 08:17:22 -05:00
|
|
|
macro_rules! binop_match {
|
2018-08-14 04:58:39 -05:00
|
|
|
(@single $fx:expr, $bug_fmt:expr, $var:expr, $signed:expr, $lhs:expr, $rhs:expr, $ret_ty:expr, bug) => {
|
2018-08-08 02:34:56 -05:00
|
|
|
bug!("binop {} on {} lhs: {:?} rhs: {:?}", stringify!($var), $bug_fmt, $lhs, $rhs)
|
2018-07-18 08:17:22 -05:00
|
|
|
};
|
2018-08-14 04:58:39 -05:00
|
|
|
(@single $fx:expr, $bug_fmt:expr, $var:expr, $signed:expr, $lhs:expr, $rhs:expr, $ret_ty:expr, icmp($cc:ident)) => {{
|
2018-07-30 08:34:34 -05:00
|
|
|
assert_eq!($fx.tcx.types.bool, $ret_ty);
|
|
|
|
let ret_layout = $fx.layout_of($ret_ty);
|
2018-08-14 04:58:39 -05:00
|
|
|
|
|
|
|
// TODO HACK no encoding for icmp.i8
|
|
|
|
use crate::common::cton_intcast;
|
|
|
|
let (lhs, rhs) = (
|
|
|
|
cton_intcast($fx, $lhs, types::I64, $signed),
|
|
|
|
cton_intcast($fx, $rhs, types::I64, $signed),
|
|
|
|
);
|
|
|
|
let b = $fx.bcx.ins().icmp(IntCC::$cc, lhs, rhs);
|
|
|
|
|
2018-07-30 08:34:34 -05:00
|
|
|
CValue::ByVal($fx.bcx.ins().bint(types::I8, b), ret_layout)
|
2018-07-18 08:17:22 -05:00
|
|
|
}};
|
2018-08-14 04:58:39 -05:00
|
|
|
(@single $fx:expr, $bug_fmt:expr, $var:expr, $signed:expr, $lhs:expr, $rhs:expr, $ret_ty:expr, fcmp($cc:ident)) => {{
|
2018-07-30 08:34:34 -05:00
|
|
|
assert_eq!($fx.tcx.types.bool, $ret_ty);
|
|
|
|
let ret_layout = $fx.layout_of($ret_ty);
|
2018-07-29 10:09:17 -05:00
|
|
|
let b = $fx.bcx.ins().fcmp(FloatCC::$cc, $lhs, $rhs);
|
2018-07-30 08:34:34 -05:00
|
|
|
CValue::ByVal($fx.bcx.ins().bint(types::I8, b), ret_layout)
|
|
|
|
}};
|
2018-08-14 04:58:39 -05:00
|
|
|
(@single $fx:expr, $bug_fmt:expr, $var:expr, $signed:expr, $lhs:expr, $rhs:expr, $ret_ty:expr, custom(|| $body:expr)) => {{
|
2018-07-30 08:34:34 -05:00
|
|
|
$body
|
|
|
|
}};
|
2018-08-14 04:58:39 -05:00
|
|
|
(@single $fx:expr, $bug_fmt:expr, $var:expr, $signed:expr, $lhs:expr, $rhs:expr, $ret_ty:expr, $name:ident) => {{
|
2018-07-30 08:34:34 -05:00
|
|
|
let ret_layout = $fx.layout_of($ret_ty);
|
|
|
|
CValue::ByVal($fx.bcx.ins().$name($lhs, $rhs), ret_layout)
|
2018-07-29 10:09:17 -05:00
|
|
|
}};
|
2018-07-18 08:17:22 -05:00
|
|
|
(
|
2018-07-30 08:34:34 -05:00
|
|
|
$fx:expr, $bin_op:expr, $signed:expr, $lhs:expr, $rhs:expr, $ret_ty:expr, $bug_fmt:expr;
|
2018-07-18 08:17:22 -05:00
|
|
|
$(
|
2018-07-30 08:34:34 -05:00
|
|
|
$var:ident ($sign:pat) $name:tt $( ( $($next:tt)* ) )? ;
|
2018-07-18 08:17:22 -05:00
|
|
|
)*
|
2018-07-30 08:34:34 -05:00
|
|
|
) => {{
|
|
|
|
let lhs = $lhs.load_value($fx);
|
|
|
|
let rhs = $rhs.load_value($fx);
|
2018-07-18 08:17:22 -05:00
|
|
|
match ($bin_op, $signed) {
|
|
|
|
$(
|
2018-08-14 04:58:39 -05:00
|
|
|
(BinOp::$var, $sign) => binop_match!(@single $fx, $bug_fmt, $var, $signed, lhs, rhs, $ret_ty, $name $( ( $($next)* ) )?),
|
2018-07-18 08:17:22 -05:00
|
|
|
)*
|
|
|
|
}
|
2018-07-30 08:34:34 -05:00
|
|
|
}}
|
2018-07-18 08:17:22 -05:00
|
|
|
}
|
|
|
|
|
2018-07-31 05:25:16 -05:00
|
|
|
fn trans_bool_binop<'a, 'tcx: 'a>(
|
2018-08-14 13:31:16 -05:00
|
|
|
fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
|
2018-07-31 05:25:16 -05:00
|
|
|
bin_op: BinOp,
|
|
|
|
lhs: CValue<'tcx>,
|
|
|
|
rhs: CValue<'tcx>,
|
|
|
|
ty: Ty<'tcx>,
|
|
|
|
) -> CValue<'tcx> {
|
2018-07-26 03:59:57 -05:00
|
|
|
let res = binop_match! {
|
2018-07-30 08:34:34 -05:00
|
|
|
fx, bin_op, false, lhs, rhs, ty, "bool";
|
2018-07-26 03:59:57 -05:00
|
|
|
Add (_) bug;
|
|
|
|
Sub (_) bug;
|
|
|
|
Mul (_) bug;
|
|
|
|
Div (_) bug;
|
|
|
|
Rem (_) bug;
|
|
|
|
BitXor (_) bxor;
|
|
|
|
BitAnd (_) band;
|
|
|
|
BitOr (_) bor;
|
|
|
|
Shl (_) bug;
|
|
|
|
Shr (_) bug;
|
|
|
|
|
|
|
|
Eq (_) icmp(Equal);
|
|
|
|
Lt (_) icmp(UnsignedLessThan);
|
|
|
|
Le (_) icmp(UnsignedLessThanOrEqual);
|
|
|
|
Ne (_) icmp(NotEqual);
|
|
|
|
Ge (_) icmp(UnsignedGreaterThanOrEqual);
|
|
|
|
Gt (_) icmp(UnsignedGreaterThan);
|
|
|
|
|
|
|
|
Offset (_) bug;
|
|
|
|
};
|
|
|
|
|
2018-07-30 08:34:34 -05:00
|
|
|
res
|
2018-07-26 03:59:57 -05:00
|
|
|
}
|
|
|
|
|
2018-07-31 05:25:16 -05:00
|
|
|
pub fn trans_int_binop<'a, 'tcx: 'a>(
|
2018-08-14 13:31:16 -05:00
|
|
|
fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
|
2018-07-31 05:25:16 -05:00
|
|
|
bin_op: BinOp,
|
|
|
|
lhs: CValue<'tcx>,
|
|
|
|
rhs: CValue<'tcx>,
|
2018-08-08 02:34:56 -05:00
|
|
|
out_ty: Ty<'tcx>,
|
2018-07-31 05:25:16 -05:00
|
|
|
signed: bool,
|
|
|
|
) -> CValue<'tcx> {
|
2018-08-08 02:34:56 -05:00
|
|
|
if bin_op != BinOp::Shl && bin_op != BinOp::Shr {
|
2018-08-08 05:45:34 -05:00
|
|
|
assert_eq!(
|
|
|
|
lhs.layout().ty,
|
|
|
|
rhs.layout().ty,
|
|
|
|
"int binop requires lhs and rhs of same type"
|
|
|
|
);
|
2018-08-08 02:34:56 -05:00
|
|
|
}
|
|
|
|
binop_match! {
|
|
|
|
fx, bin_op, signed, lhs, rhs, out_ty, "int/uint";
|
2018-07-18 08:17:22 -05:00
|
|
|
Add (_) iadd;
|
|
|
|
Sub (_) isub;
|
|
|
|
Mul (_) imul;
|
|
|
|
Div (false) udiv;
|
|
|
|
Div (true) sdiv;
|
|
|
|
Rem (false) urem;
|
|
|
|
Rem (true) srem;
|
|
|
|
BitXor (_) bxor;
|
|
|
|
BitAnd (_) band;
|
|
|
|
BitOr (_) bor;
|
|
|
|
Shl (_) ishl;
|
|
|
|
Shr (false) ushr;
|
|
|
|
Shr (true) sshr;
|
|
|
|
|
|
|
|
Eq (_) icmp(Equal);
|
|
|
|
Lt (false) icmp(UnsignedLessThan);
|
|
|
|
Lt (true) icmp(SignedLessThan);
|
|
|
|
Le (false) icmp(UnsignedLessThanOrEqual);
|
|
|
|
Le (true) icmp(SignedLessThanOrEqual);
|
|
|
|
Ne (_) icmp(NotEqual);
|
|
|
|
Ge (false) icmp(UnsignedGreaterThanOrEqual);
|
|
|
|
Ge (true) icmp(SignedGreaterThanOrEqual);
|
|
|
|
Gt (false) icmp(UnsignedGreaterThan);
|
|
|
|
Gt (true) icmp(SignedGreaterThan);
|
|
|
|
|
|
|
|
Offset (_) bug;
|
2018-08-08 02:34:56 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-08 02:49:42 -05:00
|
|
|
pub fn trans_checked_int_binop<'a, 'tcx: 'a>(
|
2018-08-14 13:31:16 -05:00
|
|
|
fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
|
2018-08-08 02:34:56 -05:00
|
|
|
bin_op: BinOp,
|
2018-08-22 05:35:07 -05:00
|
|
|
in_lhs: CValue<'tcx>,
|
|
|
|
in_rhs: CValue<'tcx>,
|
2018-08-08 02:34:56 -05:00
|
|
|
out_ty: Ty<'tcx>,
|
|
|
|
signed: bool,
|
|
|
|
) -> CValue<'tcx> {
|
|
|
|
if bin_op != BinOp::Shl && bin_op != BinOp::Shr {
|
2018-08-08 05:45:34 -05:00
|
|
|
assert_eq!(
|
2018-08-22 05:35:07 -05:00
|
|
|
in_lhs.layout().ty,
|
|
|
|
in_rhs.layout().ty,
|
2018-08-08 05:45:34 -05:00
|
|
|
"checked int binop requires lhs and rhs of same type"
|
|
|
|
);
|
2018-08-08 02:34:56 -05:00
|
|
|
}
|
|
|
|
let res_ty = match out_ty.sty {
|
2018-08-24 07:51:02 -05:00
|
|
|
ty::Tuple(tys) => tys[0],
|
2018-08-08 05:45:34 -05:00
|
|
|
_ => bug!(
|
|
|
|
"Checked int binop requires tuple as output, but got {:?}",
|
|
|
|
out_ty
|
|
|
|
),
|
2018-06-27 08:47:58 -05:00
|
|
|
};
|
2018-07-18 08:17:22 -05:00
|
|
|
|
2018-08-22 05:35:07 -05:00
|
|
|
let lhs = in_lhs.load_value(fx);
|
|
|
|
let rhs = in_rhs.load_value(fx);
|
|
|
|
let res = 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::Shl => fx.bcx.ins().ishl(lhs, rhs),
|
|
|
|
BinOp::Shr => if !signed {
|
|
|
|
fx.bcx.ins().ushr(lhs, rhs)
|
|
|
|
} else {
|
|
|
|
fx.bcx.ins().sshr(lhs, rhs)
|
|
|
|
},
|
|
|
|
_ => bug!(
|
|
|
|
"binop {:?} on checked int/uint lhs: {:?} rhs: {:?}",
|
|
|
|
bin_op,
|
|
|
|
in_lhs,
|
|
|
|
in_rhs
|
|
|
|
),
|
2018-08-08 02:34:56 -05:00
|
|
|
};
|
|
|
|
|
2018-08-08 02:49:42 -05:00
|
|
|
// TODO: check for overflow
|
2018-08-22 05:35:07 -05:00
|
|
|
let has_overflow = fx.bcx.ins().iconst(types::I8, 0);
|
2018-08-08 02:34:56 -05:00
|
|
|
|
|
|
|
let out_place = CPlace::temp(fx, out_ty);
|
2018-08-22 05:35:07 -05:00
|
|
|
let out_layout = out_place.layout();
|
|
|
|
out_place.write_cvalue(fx, CValue::ByValPair(res, has_overflow, out_layout));
|
2018-08-08 02:34:56 -05:00
|
|
|
|
|
|
|
out_place.to_cvalue(fx)
|
2018-07-18 08:17:22 -05:00
|
|
|
}
|
|
|
|
|
2018-07-31 05:25:16 -05:00
|
|
|
fn trans_float_binop<'a, 'tcx: 'a>(
|
2018-08-14 13:31:16 -05:00
|
|
|
fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
|
2018-07-31 05:25:16 -05:00
|
|
|
bin_op: BinOp,
|
|
|
|
lhs: CValue<'tcx>,
|
|
|
|
rhs: CValue<'tcx>,
|
|
|
|
ty: Ty<'tcx>,
|
|
|
|
) -> CValue<'tcx> {
|
2018-07-29 10:09:17 -05:00
|
|
|
let res = binop_match! {
|
2018-07-30 08:34:34 -05:00
|
|
|
fx, bin_op, false, lhs, rhs, ty, "float";
|
2018-07-29 10:09:17 -05:00
|
|
|
Add (_) fadd;
|
|
|
|
Sub (_) fsub;
|
|
|
|
Mul (_) fmul;
|
|
|
|
Div (_) fdiv;
|
2018-07-30 08:34:34 -05:00
|
|
|
Rem (_) custom(|| {
|
|
|
|
assert_eq!(lhs.layout().ty, ty);
|
|
|
|
assert_eq!(rhs.layout().ty, ty);
|
|
|
|
match ty.sty {
|
2018-08-24 07:51:02 -05:00
|
|
|
ty::Float(FloatTy::F32) => fx.easy_call("fmodf", &[lhs, rhs], ty),
|
|
|
|
ty::Float(FloatTy::F64) => fx.easy_call("fmod", &[lhs, rhs], ty),
|
2018-07-30 08:34:34 -05:00
|
|
|
_ => bug!(),
|
|
|
|
}
|
|
|
|
});
|
2018-07-29 10:09:17 -05:00
|
|
|
BitXor (_) bxor;
|
|
|
|
BitAnd (_) band;
|
|
|
|
BitOr (_) bor;
|
|
|
|
Shl (_) bug;
|
|
|
|
Shr (_) bug;
|
|
|
|
|
|
|
|
Eq (_) fcmp(Equal);
|
|
|
|
Lt (_) fcmp(LessThan);
|
|
|
|
Le (_) fcmp(LessThanOrEqual);
|
|
|
|
Ne (_) fcmp(NotEqual);
|
|
|
|
Ge (_) fcmp(GreaterThanOrEqual);
|
|
|
|
Gt (_) fcmp(GreaterThan);
|
|
|
|
|
|
|
|
Offset (_) bug;
|
|
|
|
};
|
|
|
|
|
2018-07-30 08:34:34 -05:00
|
|
|
res
|
2018-07-29 10:09:17 -05:00
|
|
|
}
|
|
|
|
|
2018-07-31 05:25:16 -05:00
|
|
|
fn trans_char_binop<'a, 'tcx: 'a>(
|
2018-08-14 13:31:16 -05:00
|
|
|
fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
|
2018-07-31 05:25:16 -05:00
|
|
|
bin_op: BinOp,
|
|
|
|
lhs: CValue<'tcx>,
|
|
|
|
rhs: CValue<'tcx>,
|
|
|
|
ty: Ty<'tcx>,
|
|
|
|
) -> CValue<'tcx> {
|
2018-07-26 03:48:50 -05:00
|
|
|
let res = binop_match! {
|
2018-07-30 08:34:34 -05:00
|
|
|
fx, bin_op, false, lhs, rhs, ty, "char";
|
2018-07-26 03:48:50 -05:00
|
|
|
Add (_) bug;
|
|
|
|
Sub (_) bug;
|
|
|
|
Mul (_) bug;
|
|
|
|
Div (_) bug;
|
|
|
|
Rem (_) bug;
|
|
|
|
BitXor (_) bug;
|
|
|
|
BitAnd (_) bug;
|
|
|
|
BitOr (_) bug;
|
|
|
|
Shl (_) bug;
|
|
|
|
Shr (_) bug;
|
|
|
|
|
|
|
|
Eq (_) icmp(Equal);
|
|
|
|
Lt (_) icmp(UnsignedLessThan);
|
|
|
|
Le (_) icmp(UnsignedLessThanOrEqual);
|
|
|
|
Ne (_) icmp(NotEqual);
|
|
|
|
Ge (_) icmp(UnsignedGreaterThanOrEqual);
|
|
|
|
Gt (_) icmp(UnsignedGreaterThan);
|
|
|
|
|
|
|
|
Offset (_) bug;
|
|
|
|
};
|
|
|
|
|
2018-07-30 08:34:34 -05:00
|
|
|
res
|
2018-07-26 03:48:50 -05:00
|
|
|
}
|
|
|
|
|
2018-07-31 05:25:16 -05:00
|
|
|
fn trans_ptr_binop<'a, 'tcx: 'a>(
|
2018-08-14 13:31:16 -05:00
|
|
|
fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
|
2018-07-31 05:25:16 -05:00
|
|
|
bin_op: BinOp,
|
|
|
|
lhs: CValue<'tcx>,
|
|
|
|
rhs: CValue<'tcx>,
|
|
|
|
ty: Ty<'tcx>,
|
|
|
|
) -> CValue<'tcx> {
|
2018-08-09 08:08:54 -05:00
|
|
|
match lhs.layout().ty.sty {
|
2018-08-24 07:51:02 -05:00
|
|
|
ty::RawPtr(TypeAndMut { ty, mutbl: _ }) => {
|
2018-08-09 08:08:54 -05:00
|
|
|
if !ty.is_sized(fx.tcx.at(DUMMY_SP), ParamEnv::reveal_all()) {
|
|
|
|
unimpl!("Unsized values are not yet implemented");
|
|
|
|
}
|
2018-08-10 12:20:13 -05:00
|
|
|
}
|
2018-08-09 08:08:54 -05:00
|
|
|
_ => bug!("trans_ptr_binop on non ptr"),
|
|
|
|
}
|
2018-07-30 08:34:34 -05:00
|
|
|
binop_match! {
|
|
|
|
fx, bin_op, false, lhs, rhs, ty, "ptr";
|
2018-07-18 08:17:22 -05:00
|
|
|
Add (_) bug;
|
|
|
|
Sub (_) bug;
|
|
|
|
Mul (_) bug;
|
|
|
|
Div (_) bug;
|
|
|
|
Rem (_) bug;
|
|
|
|
BitXor (_) bug;
|
|
|
|
BitAnd (_) bug;
|
|
|
|
BitOr (_) bug;
|
|
|
|
Shl (_) bug;
|
|
|
|
Shr (_) bug;
|
|
|
|
|
|
|
|
Eq (_) icmp(Equal);
|
|
|
|
Lt (_) icmp(UnsignedLessThan);
|
|
|
|
Le (_) icmp(UnsignedLessThanOrEqual);
|
|
|
|
Ne (_) icmp(NotEqual);
|
|
|
|
Ge (_) icmp(UnsignedGreaterThanOrEqual);
|
|
|
|
Gt (_) icmp(UnsignedGreaterThan);
|
|
|
|
|
|
|
|
Offset (_) iadd;
|
2018-07-30 08:34:34 -05:00
|
|
|
}
|
2018-06-27 08:47:58 -05:00
|
|
|
}
|
|
|
|
|
2018-07-31 05:25:16 -05:00
|
|
|
pub fn trans_place<'a, 'tcx: 'a>(
|
2018-08-14 13:31:16 -05:00
|
|
|
fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
|
2018-07-31 05:25:16 -05:00
|
|
|
place: &Place<'tcx>,
|
|
|
|
) -> CPlace<'tcx> {
|
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-07-30 09:57:40 -05:00
|
|
|
Place::Promoted(promoted) => crate::constant::trans_promoted(fx, promoted.0),
|
2018-08-13 05:13:43 -05:00
|
|
|
Place::Static(static_) => crate::constant::codegen_static_ref(fx, static_),
|
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-08-08 08:38:03 -05:00
|
|
|
ProjectionElem::Deref => {
|
|
|
|
let layout = fx.layout_of(place.ty(&*fx.mir, fx.tcx).to_ty(fx.tcx));
|
|
|
|
if layout.is_unsized() {
|
|
|
|
unimpl!("Unsized places are not yet implemented");
|
|
|
|
}
|
2018-08-08 12:33:37 -05:00
|
|
|
CPlace::Addr(base.to_cvalue(fx).load_value(fx), layout)
|
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
ProjectionElem::Field(field, _ty) => base.place_field(fx, field),
|
|
|
|
ProjectionElem::Index(local) => {
|
2018-08-08 05:22:16 -05:00
|
|
|
let index = fx.get_local_place(local).to_cvalue(fx).load_value(fx);
|
|
|
|
base.place_index(fx, index)
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
ProjectionElem::ConstantIndex {
|
|
|
|
offset,
|
|
|
|
min_length: _,
|
|
|
|
from_end: false,
|
|
|
|
} => unimplemented!(
|
|
|
|
"projection const index {:?} offset {:?} not from end",
|
|
|
|
projection.base,
|
|
|
|
offset
|
|
|
|
),
|
|
|
|
ProjectionElem::ConstantIndex {
|
|
|
|
offset,
|
|
|
|
min_length: _,
|
|
|
|
from_end: true,
|
|
|
|
} => unimplemented!(
|
|
|
|
"projection const index {:?} offset {:?} from end",
|
|
|
|
projection.base,
|
|
|
|
offset
|
|
|
|
),
|
|
|
|
ProjectionElem::Subslice { from, to } => unimplemented!(
|
|
|
|
"projection subslice {:?} from {} to {}",
|
|
|
|
projection.base,
|
|
|
|
from,
|
|
|
|
to
|
|
|
|
),
|
|
|
|
ProjectionElem::Downcast(_adt_def, variant) => base.downcast_variant(fx, variant),
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-31 05:25:16 -05:00
|
|
|
pub fn trans_operand<'a, 'tcx>(
|
2018-08-14 13:31:16 -05:00
|
|
|
fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
|
2018-07-31 05:25:16 -05:00
|
|
|
operand: &Operand<'tcx>,
|
|
|
|
) -> CValue<'tcx> {
|
2018-06-17 11:05:11 -05:00
|
|
|
match operand {
|
2018-07-31 05:25:16 -05:00
|
|
|
Operand::Move(place) | Operand::Copy(place) => {
|
2018-06-20 08:15:28 -05:00
|
|
|
let cplace = trans_place(fx, place);
|
|
|
|
cplace.to_cvalue(fx)
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
Operand::Constant(const_) => crate::constant::trans_constant(fx, const_),
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|