2020-09-23 08:13:49 -05:00
|
|
|
//! Codegen of a single function
|
|
|
|
|
2021-03-29 03:45:09 -05:00
|
|
|
use cranelift_codegen::binemit::{NullStackMapSink, NullTrapSink};
|
2020-01-04 06:23:42 -06:00
|
|
|
use rustc_index::vec::IndexVec;
|
2020-08-28 05:10:48 -05:00
|
|
|
use rustc_middle::ty::adjustment::PointerCast;
|
2021-02-01 03:11:46 -06:00
|
|
|
use rustc_middle::ty::layout::FnAbiExt;
|
|
|
|
use rustc_target::abi::call::FnAbi;
|
2019-04-21 07:41:23 -05:00
|
|
|
|
2021-04-30 07:49:58 -05:00
|
|
|
use crate::constant::ConstantCx;
|
2018-07-30 09:57:40 -05:00
|
|
|
use crate::prelude::*;
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2021-04-30 07:49:58 -05:00
|
|
|
pub(crate) fn codegen_fn<'tcx>(
|
|
|
|
cx: &mut crate::CodegenCx<'tcx>,
|
|
|
|
module: &mut dyn Module,
|
|
|
|
instance: Instance<'tcx>,
|
|
|
|
) {
|
2020-08-22 08:49:16 -05:00
|
|
|
let tcx = cx.tcx;
|
2018-12-18 11:28:02 -06:00
|
|
|
|
2020-11-27 13:48:53 -06:00
|
|
|
let _inst_guard =
|
|
|
|
crate::PrintOnPanic(|| format!("{:?} {}", instance, tcx.symbol_name(instance).name));
|
|
|
|
debug_assert!(!instance.substs.needs_infer());
|
|
|
|
|
2020-04-25 04:42:46 -05:00
|
|
|
let mir = tcx.instance_mir(instance.def);
|
2021-07-07 04:14:20 -05:00
|
|
|
let _mir_guard = crate::PrintOnPanic(|| {
|
|
|
|
let mut buf = Vec::new();
|
2021-01-05 12:53:07 -06:00
|
|
|
rustc_middle::mir::write_mir_pretty(tcx, Some(instance.def_id()), &mut buf).unwrap();
|
2021-07-07 04:14:20 -05:00
|
|
|
String::from_utf8_lossy(&buf).into_owned()
|
|
|
|
});
|
2018-08-14 11:52:43 -05:00
|
|
|
|
2019-05-14 09:12:58 -05:00
|
|
|
// Declare function
|
2021-04-30 07:49:58 -05:00
|
|
|
let symbol_name = tcx.symbol_name(instance);
|
|
|
|
let sig = get_function_sig(tcx, module.isa().triple(), instance);
|
|
|
|
let func_id = module.declare_function(symbol_name.name, Linkage::Local, &sig).unwrap();
|
2018-08-14 11:52:43 -05:00
|
|
|
|
2020-08-22 11:53:34 -05:00
|
|
|
cx.cached_context.clear();
|
|
|
|
|
2020-08-22 12:05:22 -05:00
|
|
|
// Make the FunctionBuilder
|
|
|
|
let mut func_ctx = FunctionBuilderContext::new();
|
2020-08-22 12:03:35 -05:00
|
|
|
let mut func = std::mem::replace(&mut cx.cached_context.func, Function::new());
|
2020-08-22 11:53:34 -05:00
|
|
|
func.name = ExternalName::user(0, func_id.as_u32());
|
|
|
|
func.signature = sig;
|
|
|
|
func.collect_debug_info();
|
|
|
|
|
2020-08-22 09:40:58 -05:00
|
|
|
let mut bcx = FunctionBuilder::new(&mut func, &mut func_ctx);
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2020-04-19 03:55:07 -05:00
|
|
|
// Predefine blocks
|
2020-02-14 11:23:29 -06:00
|
|
|
let start_block = bcx.create_block();
|
2021-03-05 12:12:59 -06:00
|
|
|
let block_map: IndexVec<BasicBlock, Block> =
|
|
|
|
(0..mir.basic_blocks().len()).map(|_| bcx.create_block()).collect();
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2019-05-14 09:12:58 -05:00
|
|
|
// Make FunctionCx
|
2021-04-30 07:49:58 -05:00
|
|
|
let pointer_type = module.target_config().pointer_type();
|
2018-12-21 14:42:29 -06:00
|
|
|
let clif_comments = crate::pretty_clif::CommentWriter::new(tcx, instance);
|
|
|
|
|
2018-06-20 08:15:28 -05:00
|
|
|
let mut fx = FunctionCx {
|
2020-08-22 09:17:58 -05:00
|
|
|
cx,
|
2021-04-30 07:49:58 -05:00
|
|
|
module,
|
2020-08-22 09:45:50 -05:00
|
|
|
tcx,
|
2018-11-03 07:14:28 -05:00
|
|
|
pointer_type,
|
2021-04-30 07:49:58 -05:00
|
|
|
constants_cx: ConstantCx::new(),
|
2018-12-01 04:49:44 -06:00
|
|
|
|
2018-06-23 11:54:15 -05:00
|
|
|
instance,
|
2021-04-30 07:49:58 -05:00
|
|
|
symbol_name,
|
2018-06-20 08:15:28 -05:00
|
|
|
mir,
|
2021-02-01 03:11:46 -06:00
|
|
|
fn_abi: Some(FnAbi::of_instance(&RevealAllLayoutCx(tcx), instance, &[])),
|
2018-12-01 04:49:44 -06:00
|
|
|
|
2018-06-23 11:54:15 -05:00
|
|
|
bcx,
|
2020-02-14 11:23:29 -06:00
|
|
|
block_map,
|
2020-09-16 11:45:19 -05:00
|
|
|
local_map: IndexVec::with_capacity(mir.local_decls.len()),
|
2020-01-11 09:49:42 -06:00
|
|
|
caller_location: None, // set by `codegen_fn_prelude`
|
2018-12-01 04:49:44 -06:00
|
|
|
|
2018-12-21 14:42:29 -06:00
|
|
|
clif_comments,
|
2019-01-19 05:18:39 -06:00
|
|
|
source_info_set: indexmap::IndexSet::new(),
|
2020-06-27 04:58:44 -05:00
|
|
|
next_ssa_var: 0,
|
2020-07-23 05:37:03 -05:00
|
|
|
|
|
|
|
inline_asm_index: 0,
|
2018-06-20 08:15:28 -05:00
|
|
|
};
|
|
|
|
|
2021-03-05 12:12:59 -06:00
|
|
|
let arg_uninhabited = fx
|
|
|
|
.mir
|
|
|
|
.args_iter()
|
|
|
|
.any(|arg| fx.layout_of(fx.monomorphize(&fx.mir.local_decls[arg].ty)).abi.is_uninhabited());
|
2020-03-10 14:48:58 -05:00
|
|
|
|
2021-03-05 12:12:59 -06:00
|
|
|
if !crate::constant::check_constants(&mut fx) {
|
|
|
|
fx.bcx.append_block_params_for_function_params(fx.block_map[START_BLOCK]);
|
|
|
|
fx.bcx.switch_to_block(fx.block_map[START_BLOCK]);
|
|
|
|
crate::trap::trap_unreachable(&mut fx, "compilation should have been aborted");
|
|
|
|
} else if arg_uninhabited {
|
|
|
|
fx.bcx.append_block_params_for_function_params(fx.block_map[START_BLOCK]);
|
2020-03-10 14:48:58 -05:00
|
|
|
fx.bcx.switch_to_block(fx.block_map[START_BLOCK]);
|
2019-12-28 04:10:21 -06:00
|
|
|
crate::trap::trap_unreachable(&mut fx, "function has uninhabited argument");
|
|
|
|
} else {
|
2020-01-10 07:15:14 -06:00
|
|
|
tcx.sess.time("codegen clif ir", || {
|
2021-03-05 12:12:59 -06:00
|
|
|
tcx.sess
|
|
|
|
.time("codegen prelude", || crate::abi::codegen_fn_prelude(&mut fx, start_block));
|
2020-01-10 07:15:14 -06:00
|
|
|
codegen_fn_content(&mut fx);
|
|
|
|
});
|
2019-12-28 04:10:21 -06:00
|
|
|
}
|
2018-08-14 11:52:43 -05:00
|
|
|
|
2019-05-14 09:12:58 -05:00
|
|
|
// Recover all necessary data from fx, before accessing func will prevent future access to it.
|
|
|
|
let instance = fx.instance;
|
2019-12-26 06:37:10 -06:00
|
|
|
let mut clif_comments = fx.clif_comments;
|
2019-05-14 09:12:58 -05:00
|
|
|
let source_info_set = fx.source_info_set;
|
2019-11-12 14:36:31 -06:00
|
|
|
let local_map = fx.local_map;
|
2021-04-30 07:49:58 -05:00
|
|
|
|
|
|
|
fx.constants_cx.finalize(fx.tcx, &mut *fx.module);
|
2019-05-14 09:12:58 -05:00
|
|
|
|
2020-08-22 11:53:34 -05:00
|
|
|
// Store function in context
|
|
|
|
let context = &mut cx.cached_context;
|
|
|
|
context.func = func;
|
|
|
|
|
2021-07-07 04:14:20 -05:00
|
|
|
crate::pretty_clif::write_clif_file(
|
|
|
|
tcx,
|
|
|
|
"unopt",
|
|
|
|
module.isa(),
|
|
|
|
instance,
|
|
|
|
&context,
|
|
|
|
&clif_comments,
|
|
|
|
);
|
2018-08-14 11:52:43 -05:00
|
|
|
|
2019-05-14 09:12:58 -05:00
|
|
|
// Verify function
|
2020-01-04 10:58:38 -06:00
|
|
|
verify_func(tcx, &clif_comments, &context.func);
|
2019-12-28 05:41:03 -06:00
|
|
|
|
2020-09-14 03:32:37 -05:00
|
|
|
// If the return block is not reachable, then the SSA builder may have inserted an `iconst.i128`
|
2020-03-30 11:44:14 -05:00
|
|
|
// instruction, which doesn't have an encoding.
|
|
|
|
context.compute_cfg();
|
|
|
|
context.compute_domtree();
|
2021-04-30 07:49:58 -05:00
|
|
|
context.eliminate_unreachable_code(module.isa()).unwrap();
|
|
|
|
context.dce(module.isa()).unwrap();
|
2021-02-01 03:11:46 -06:00
|
|
|
// Some Cranelift optimizations expect the domtree to not yet be computed and as such don't
|
|
|
|
// invalidate it when it would change.
|
|
|
|
context.domtree.clear();
|
2020-03-30 11:44:14 -05:00
|
|
|
|
2021-05-27 06:08:14 -05:00
|
|
|
// Perform rust specific optimizations
|
|
|
|
tcx.sess.time("optimize clif ir", || {
|
2021-07-07 04:14:20 -05:00
|
|
|
crate::optimize::optimize_function(
|
|
|
|
tcx,
|
|
|
|
module.isa(),
|
|
|
|
instance,
|
|
|
|
context,
|
|
|
|
&mut clif_comments,
|
|
|
|
);
|
2021-05-27 06:08:14 -05:00
|
|
|
});
|
2020-12-27 03:30:38 -06:00
|
|
|
|
2019-12-28 05:41:03 -06:00
|
|
|
// Define function
|
2020-08-28 05:10:48 -05:00
|
|
|
tcx.sess.time("define function", || {
|
2021-05-27 06:08:14 -05:00
|
|
|
context.want_disasm = crate::pretty_clif::should_write_ir(tcx);
|
2020-08-28 05:10:48 -05:00
|
|
|
module
|
2021-03-29 03:45:09 -05:00
|
|
|
.define_function(func_id, context, &mut NullTrapSink {}, &mut NullStackMapSink {})
|
2020-08-28 05:10:48 -05:00
|
|
|
.unwrap()
|
|
|
|
});
|
2019-02-18 11:26:59 -06:00
|
|
|
|
2019-05-14 09:12:58 -05:00
|
|
|
// Write optimized function to file for debugging
|
2020-06-16 06:27:24 -05:00
|
|
|
crate::pretty_clif::write_clif_file(
|
2020-08-22 11:53:34 -05:00
|
|
|
tcx,
|
2020-06-16 06:27:24 -05:00
|
|
|
"opt",
|
2021-07-07 04:14:20 -05:00
|
|
|
module.isa(),
|
2020-06-16 06:27:24 -05:00
|
|
|
instance,
|
|
|
|
&context,
|
|
|
|
&clif_comments,
|
|
|
|
);
|
2019-05-14 09:12:58 -05:00
|
|
|
|
2021-03-05 12:12:59 -06:00
|
|
|
if let Some(disasm) = &context.mach_compile_result.as_ref().unwrap().disasm {
|
|
|
|
crate::pretty_clif::write_ir_file(
|
|
|
|
tcx,
|
2021-04-30 07:49:58 -05:00
|
|
|
|| format!("{}.vcode", tcx.symbol_name(instance).name),
|
2021-03-05 12:12:59 -06:00
|
|
|
|file| file.write_all(disasm.as_bytes()),
|
|
|
|
)
|
2020-12-27 03:30:38 -06:00
|
|
|
}
|
|
|
|
|
2019-05-14 09:12:58 -05:00
|
|
|
// Define debuginfo for function
|
2021-04-30 07:49:58 -05:00
|
|
|
let isa = module.isa();
|
2020-08-22 11:53:34 -05:00
|
|
|
let debug_context = &mut cx.debug_context;
|
|
|
|
let unwind_context = &mut cx.unwind_context;
|
2020-01-10 07:15:14 -06:00
|
|
|
tcx.sess.time("generate debug info", || {
|
2020-06-13 10:03:34 -05:00
|
|
|
if let Some(debug_context) = debug_context {
|
2020-08-28 05:10:48 -05:00
|
|
|
debug_context.define_function(
|
|
|
|
instance,
|
|
|
|
func_id,
|
2021-04-30 07:49:58 -05:00
|
|
|
symbol_name.name,
|
2020-08-28 05:10:48 -05:00
|
|
|
isa,
|
|
|
|
context,
|
|
|
|
&source_info_set,
|
|
|
|
local_map,
|
|
|
|
);
|
2020-06-13 10:03:34 -05:00
|
|
|
}
|
2020-05-01 12:21:29 -05:00
|
|
|
unwind_context.add_function(func_id, &context, isa);
|
2020-01-10 07:15:14 -06:00
|
|
|
});
|
2019-02-18 11:26:59 -06:00
|
|
|
|
2019-05-14 09:12:58 -05:00
|
|
|
// Clear context to make it usable for the next function
|
|
|
|
context.clear();
|
2018-08-14 11:52:43 -05:00
|
|
|
}
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2020-08-28 05:10:48 -05:00
|
|
|
pub(crate) fn verify_func(
|
|
|
|
tcx: TyCtxt<'_>,
|
|
|
|
writer: &crate::pretty_clif::CommentWriter,
|
|
|
|
func: &Function,
|
|
|
|
) {
|
2020-01-10 07:15:14 -06:00
|
|
|
tcx.sess.time("verify clif ir", || {
|
2020-06-20 11:44:49 -05:00
|
|
|
let flags = cranelift_codegen::settings::Flags::new(cranelift_codegen::settings::builder());
|
|
|
|
match cranelift_codegen::verify_function(&func, &flags) {
|
2020-01-10 07:15:14 -06:00
|
|
|
Ok(_) => {}
|
|
|
|
Err(err) => {
|
|
|
|
tcx.sess.err(&format!("{:?}", err));
|
2020-06-20 11:44:49 -05:00
|
|
|
let pretty_error = cranelift_codegen::print_errors::pretty_verifier_error(
|
2020-01-10 07:15:14 -06:00
|
|
|
&func,
|
|
|
|
None,
|
|
|
|
Some(Box::new(writer)),
|
|
|
|
err,
|
|
|
|
);
|
2021-03-05 12:12:59 -06:00
|
|
|
tcx.sess.fatal(&format!("cranelift verify error:\n{}", pretty_error));
|
2020-01-10 07:15:14 -06:00
|
|
|
}
|
2018-08-14 11:52:43 -05:00
|
|
|
}
|
2020-01-10 07:15:14 -06:00
|
|
|
});
|
2018-08-14 11:52:43 -05:00
|
|
|
}
|
|
|
|
|
2021-03-05 12:12:59 -06:00
|
|
|
fn codegen_fn_content(fx: &mut FunctionCx<'_, '_, '_>) {
|
2018-08-14 11:52:43 -05:00
|
|
|
for (bb, bb_data) in fx.mir.basic_blocks().iter_enumerated() {
|
2020-02-14 11:23:29 -06:00
|
|
|
let block = fx.get_block(bb);
|
|
|
|
fx.bcx.switch_to_block(block);
|
2020-02-01 09:47:35 -06:00
|
|
|
|
2018-09-30 09:33:55 -05:00
|
|
|
if bb_data.is_cleanup {
|
|
|
|
// Unwinding after panicking is not supported
|
|
|
|
continue;
|
|
|
|
|
2021-04-30 07:49:58 -05:00
|
|
|
// FIXME Once unwinding is supported and Cranelift supports marking blocks as cold, do
|
|
|
|
// so for cleanup blocks.
|
2020-02-01 09:47:35 -06:00
|
|
|
}
|
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 {
|
2019-01-17 11:07:27 -06:00
|
|
|
fx.set_debug_loc(stmt.source_info);
|
2020-11-03 04:00:04 -06:00
|
|
|
codegen_stmt(fx, block, stmt);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
|
2021-03-29 03:45:09 -05:00
|
|
|
if fx.clif_comments.enabled() {
|
2018-12-28 10:07:40 -06:00
|
|
|
let mut terminator_head = "\n".to_string();
|
2021-03-05 12:12:59 -06:00
|
|
|
bb_data.terminator().kind.fmt_head(&mut terminator_head).unwrap();
|
2020-02-14 11:23:29 -06:00
|
|
|
let inst = fx.bcx.func.layout.last_inst(block).unwrap();
|
2018-12-28 10:07:40 -06:00
|
|
|
fx.add_comment(inst, terminator_head);
|
|
|
|
}
|
2018-07-20 06:51:34 -05:00
|
|
|
|
2019-01-17 11:07:27 -06:00
|
|
|
fx.set_debug_loc(bb_data.terminator().source_info);
|
|
|
|
|
2018-07-20 06:51:34 -05:00
|
|
|
match &bb_data.terminator().kind {
|
2018-06-17 11:05:11 -05:00
|
|
|
TerminatorKind::Goto { target } => {
|
2020-03-30 11:44:14 -05:00
|
|
|
if let TerminatorKind::Return = fx.mir[*target].terminator().kind {
|
|
|
|
let mut can_immediately_return = true;
|
|
|
|
for stmt in &fx.mir[*target].statements {
|
|
|
|
if let StatementKind::StorageDead(_) = stmt.kind {
|
|
|
|
} else {
|
|
|
|
// FIXME Can sometimes happen, see rust-lang/rust#70531
|
|
|
|
can_immediately_return = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if can_immediately_return {
|
|
|
|
crate::abi::codegen_return(fx);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-14 11:23:29 -06:00
|
|
|
let block = fx.get_block(*target);
|
|
|
|
fx.bcx.ins().jump(block, &[]);
|
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
|
|
|
}
|
2021-03-05 12:12:59 -06:00
|
|
|
TerminatorKind::Assert { cond, expected, msg, target, cleanup: _ } => {
|
2020-08-22 09:47:31 -05:00
|
|
|
if !fx.tcx.sess.overflow_checks() {
|
2020-06-27 04:29:39 -05:00
|
|
|
if let mir::AssertKind::OverflowNeg(_) = *msg {
|
2020-02-14 11:23:29 -06:00
|
|
|
let target = fx.get_block(*target);
|
2019-08-20 06:37:49 -05:00
|
|
|
fx.bcx.ins().jump(target, &[]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2020-11-03 04:00:04 -06:00
|
|
|
let cond = codegen_operand(fx, cond).load_scalar(fx);
|
2020-01-11 10:57:18 -06:00
|
|
|
|
2020-02-14 11:23:29 -06:00
|
|
|
let target = fx.get_block(*target);
|
|
|
|
let failure = fx.bcx.create_block();
|
2021-04-30 07:49:58 -05:00
|
|
|
// FIXME Mark failure block as cold once Cranelift supports it
|
2020-01-11 10:57:18 -06:00
|
|
|
|
2018-07-20 06:51:34 -05:00
|
|
|
if *expected {
|
2020-01-10 05:14:28 -06:00
|
|
|
fx.bcx.ins().brz(cond, failure, &[]);
|
2018-08-09 08:36:02 -05:00
|
|
|
} else {
|
2020-01-10 05:14:28 -06:00
|
|
|
fx.bcx.ins().brnz(cond, failure, &[]);
|
2018-06-30 09:27:11 -05:00
|
|
|
};
|
2020-01-10 05:14:28 -06:00
|
|
|
fx.bcx.ins().jump(target, &[]);
|
|
|
|
|
|
|
|
fx.bcx.switch_to_block(failure);
|
2020-09-21 07:56:19 -05:00
|
|
|
fx.bcx.ins().nop();
|
2020-04-25 12:07:25 -05:00
|
|
|
|
2020-09-29 06:22:01 -05:00
|
|
|
match msg {
|
2020-04-25 12:07:25 -05:00
|
|
|
AssertKind::BoundsCheck { ref len, ref index } => {
|
2020-11-03 04:00:04 -06:00
|
|
|
let len = codegen_operand(fx, len).load_scalar(fx);
|
|
|
|
let index = codegen_operand(fx, index).load_scalar(fx);
|
2020-09-29 06:22:01 -05:00
|
|
|
let location = fx
|
|
|
|
.get_caller_location(bb_data.terminator().source_info.span)
|
|
|
|
.load_scalar(fx);
|
|
|
|
|
|
|
|
codegen_panic_inner(
|
|
|
|
fx,
|
|
|
|
rustc_hir::LangItem::PanicBoundsCheck,
|
|
|
|
&[index, len, location],
|
|
|
|
bb_data.terminator().source_info.span,
|
|
|
|
);
|
2020-04-25 12:07:25 -05:00
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
let msg_str = msg.description();
|
2020-09-29 06:22:01 -05:00
|
|
|
codegen_panic(fx, msg_str, bb_data.terminator().source_info.span);
|
2020-04-25 12:07:25 -05:00
|
|
|
}
|
2020-09-29 06:22:01 -05:00
|
|
|
}
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
|
2021-03-05 12:12:59 -06:00
|
|
|
TerminatorKind::SwitchInt { discr, switch_ty, targets } => {
|
2020-11-03 04:00:04 -06:00
|
|
|
let discr = codegen_operand(fx, discr).load_scalar(fx);
|
2020-08-30 06:02:53 -05:00
|
|
|
|
2020-12-27 03:30:38 -06:00
|
|
|
let use_bool_opt = switch_ty.kind() == fx.tcx.types.bool.kind()
|
|
|
|
|| (targets.iter().count() == 1 && targets.iter().next().unwrap().0 == 0);
|
|
|
|
if use_bool_opt {
|
2020-10-15 03:34:13 -05:00
|
|
|
assert_eq!(targets.iter().count(), 1);
|
|
|
|
let (then_value, then_block) = targets.iter().next().unwrap();
|
|
|
|
let then_block = fx.get_block(then_block);
|
|
|
|
let else_block = fx.get_block(targets.otherwise());
|
|
|
|
let test_zero = match then_value {
|
|
|
|
0 => true,
|
|
|
|
1 => false,
|
|
|
|
_ => unreachable!("{:?}", targets),
|
2020-08-30 06:02:53 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
let discr = crate::optimize::peephole::maybe_unwrap_bint(&mut fx.bcx, discr);
|
|
|
|
let (discr, is_inverted) =
|
|
|
|
crate::optimize::peephole::maybe_unwrap_bool_not(&mut fx.bcx, discr);
|
|
|
|
let test_zero = if is_inverted { !test_zero } else { test_zero };
|
|
|
|
let discr = crate::optimize::peephole::maybe_unwrap_bint(&mut fx.bcx, discr);
|
2020-12-27 03:30:38 -06:00
|
|
|
if let Some(taken) = crate::optimize::peephole::maybe_known_branch_taken(
|
|
|
|
&fx.bcx, discr, test_zero,
|
|
|
|
) {
|
|
|
|
if taken {
|
|
|
|
fx.bcx.ins().jump(then_block, &[]);
|
|
|
|
} else {
|
|
|
|
fx.bcx.ins().jump(else_block, &[]);
|
|
|
|
}
|
2020-08-30 06:02:53 -05:00
|
|
|
} else {
|
2020-12-27 03:30:38 -06:00
|
|
|
if test_zero {
|
|
|
|
fx.bcx.ins().brz(discr, then_block, &[]);
|
|
|
|
fx.bcx.ins().jump(else_block, &[]);
|
|
|
|
} else {
|
|
|
|
fx.bcx.ins().brnz(discr, then_block, &[]);
|
|
|
|
fx.bcx.ins().jump(else_block, &[]);
|
|
|
|
}
|
2020-08-30 06:02:53 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let mut switch = ::cranelift_frontend::Switch::new();
|
2020-10-15 03:34:13 -05:00
|
|
|
for (value, block) in targets.iter() {
|
|
|
|
let block = fx.get_block(block);
|
|
|
|
switch.set_entry(value, block);
|
2020-08-30 06:02:53 -05:00
|
|
|
}
|
2020-10-15 03:34:13 -05:00
|
|
|
let otherwise_block = fx.get_block(targets.otherwise());
|
2020-08-30 06:02:53 -05:00
|
|
|
switch.emit(&mut fx.bcx, discr, otherwise_block);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
TerminatorKind::Call {
|
|
|
|
func,
|
|
|
|
args,
|
|
|
|
destination,
|
2020-06-12 11:41:50 -05:00
|
|
|
fn_span,
|
2018-07-31 05:25:16 -05:00
|
|
|
cleanup: _,
|
2018-10-05 12:23:26 -05:00
|
|
|
from_hir_call: _,
|
2018-07-31 05:25:16 -05:00
|
|
|
} => {
|
2020-08-28 05:10:48 -05:00
|
|
|
fx.tcx.sess.time("codegen call", || {
|
2021-04-30 07:49:58 -05:00
|
|
|
crate::abi::codegen_terminator_call(fx, *fn_span, func, args, *destination)
|
2020-08-28 05:10:48 -05:00
|
|
|
});
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
2020-05-18 04:35:23 -05:00
|
|
|
TerminatorKind::InlineAsm {
|
|
|
|
template,
|
|
|
|
operands,
|
2020-07-10 07:45:45 -05:00
|
|
|
options,
|
2020-05-18 04:35:23 -05:00
|
|
|
destination,
|
2020-06-04 12:57:12 -05:00
|
|
|
line_spans: _,
|
2020-05-18 04:35:23 -05:00
|
|
|
} => {
|
2020-07-10 07:45:45 -05:00
|
|
|
crate::inline_asm::codegen_inline_asm(
|
|
|
|
fx,
|
|
|
|
bb_data.terminator().source_info.span,
|
|
|
|
template,
|
|
|
|
operands,
|
|
|
|
*options,
|
|
|
|
);
|
2020-05-18 04:35:23 -05:00
|
|
|
|
2020-07-10 07:45:45 -05:00
|
|
|
match *destination {
|
|
|
|
Some(destination) => {
|
|
|
|
let destination_block = fx.get_block(destination);
|
|
|
|
fx.bcx.ins().jump(destination_block, &[]);
|
|
|
|
}
|
|
|
|
None => {
|
2020-08-28 05:10:48 -05:00
|
|
|
crate::trap::trap_unreachable(
|
|
|
|
fx,
|
|
|
|
"[corruption] Returned from noreturn inline asm",
|
|
|
|
);
|
2020-05-18 04:35:23 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-03-23 07:06:35 -05:00
|
|
|
TerminatorKind::Resume | TerminatorKind::Abort => {
|
|
|
|
trap_unreachable(fx, "[corruption] Unwinding bb reached.");
|
|
|
|
}
|
|
|
|
TerminatorKind::Unreachable => {
|
|
|
|
trap_unreachable(fx, "[corruption] Hit unreachable code.");
|
2018-06-17 12:10:00 -05:00
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
TerminatorKind::Yield { .. }
|
2020-06-11 06:12:35 -05:00
|
|
|
| TerminatorKind::FalseEdge { .. }
|
2018-09-11 12:27:57 -05:00
|
|
|
| TerminatorKind::FalseUnwind { .. }
|
2019-02-07 13:45:15 -06:00
|
|
|
| TerminatorKind::DropAndReplace { .. }
|
|
|
|
| TerminatorKind::GeneratorDrop => {
|
2020-11-03 04:00:04 -06:00
|
|
|
bug!("shouldn't exist at codegen {:?}", bb_data.terminator());
|
2018-06-18 11:39:07 -05:00
|
|
|
}
|
2021-03-05 12:12:59 -06:00
|
|
|
TerminatorKind::Drop { place, target, unwind: _ } => {
|
2020-11-03 04:00:04 -06:00
|
|
|
let drop_place = codegen_place(fx, *place);
|
2020-01-11 09:49:42 -06:00
|
|
|
crate::abi::codegen_drop(fx, bb_data.terminator().source_info.span, drop_place);
|
2018-09-11 12:27:57 -05:00
|
|
|
|
2020-02-14 11:23:29 -06:00
|
|
|
let target_block = fx.get_block(*target);
|
|
|
|
fx.bcx.ins().jump(target_block, &[]);
|
2018-06-28 13:27:43 -05:00
|
|
|
}
|
2018-06-30 09:27:11 -05:00
|
|
|
};
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
2019-09-28 10:59:27 -05:00
|
|
|
|
|
|
|
fx.bcx.seal_all_blocks();
|
|
|
|
fx.bcx.finalize();
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
|
2020-11-03 04:00:04 -06:00
|
|
|
fn codegen_stmt<'tcx>(
|
2021-03-05 12:12:59 -06:00
|
|
|
fx: &mut FunctionCx<'_, '_, 'tcx>,
|
2020-08-28 05:10:48 -05:00
|
|
|
#[allow(unused_variables)] cur_block: Block,
|
2018-08-14 13:31:16 -05:00
|
|
|
stmt: &Statement<'tcx>,
|
|
|
|
) {
|
2020-06-20 11:44:49 -05:00
|
|
|
let _print_guard = crate::PrintOnPanic(|| format!("stmt {:?}", stmt));
|
2018-07-14 09:39:49 -05:00
|
|
|
|
2019-01-17 11:07:27 -06:00
|
|
|
fx.set_debug_loc(stmt.source_info);
|
|
|
|
|
2021-03-29 03:45:09 -05:00
|
|
|
#[cfg(disabled)]
|
2018-09-05 13:04:21 -05:00
|
|
|
match &stmt.kind {
|
|
|
|
StatementKind::StorageLive(..) | StatementKind::StorageDead(..) => {} // Those are not very useful
|
|
|
|
_ => {
|
2021-03-29 03:45:09 -05:00
|
|
|
if fx.clif_comments.enabled() {
|
|
|
|
let inst = fx.bcx.func.layout.last_inst(cur_block).unwrap();
|
|
|
|
fx.add_comment(inst, format!("{:?}", stmt));
|
|
|
|
}
|
2018-09-05 13:04:21 -05:00
|
|
|
}
|
|
|
|
}
|
2018-06-30 09:27:11 -05:00
|
|
|
|
2018-06-17 11:05:11 -05:00
|
|
|
match &stmt.kind {
|
2021-03-05 12:12:59 -06:00
|
|
|
StatementKind::SetDiscriminant { place, variant_index } => {
|
2020-11-03 04:00:04 -06:00
|
|
|
let place = codegen_place(fx, **place);
|
2019-08-14 05:01:41 -05:00
|
|
|
crate::discriminant::codegen_set_discriminant(fx, place, *variant_index);
|
2018-06-24 07:29:56 -05:00
|
|
|
}
|
2019-09-14 04:21:18 -05:00
|
|
|
StatementKind::Assign(to_place_and_rval) => {
|
2020-11-03 04:00:04 -06:00
|
|
|
let lval = codegen_place(fx, to_place_and_rval.0);
|
2018-06-26 12:44:19 -05:00
|
|
|
let dest_layout = lval.layout();
|
2020-10-28 02:25:06 -05:00
|
|
|
match to_place_and_rval.1 {
|
|
|
|
Rvalue::Use(ref operand) => {
|
2020-11-03 04:00:04 -06:00
|
|
|
let val = codegen_operand(fx, operand);
|
2018-06-26 12:44:19 -05:00
|
|
|
lval.write_cvalue(fx, val);
|
2018-06-27 09:01:30 -05:00
|
|
|
}
|
2019-12-21 04:22:12 -06:00
|
|
|
Rvalue::Ref(_, _, place) | Rvalue::AddressOf(_, place) => {
|
2020-10-28 02:25:06 -05:00
|
|
|
let place = codegen_place(fx, place);
|
2020-08-25 11:31:59 -05:00
|
|
|
let ref_ = place.place_ref(fx, lval.layout());
|
|
|
|
lval.write_cvalue(fx, ref_);
|
2018-06-27 09:01:30 -05:00
|
|
|
}
|
2020-06-04 12:57:12 -05:00
|
|
|
Rvalue::ThreadLocalRef(def_id) => {
|
2020-10-28 02:25:06 -05:00
|
|
|
let val = crate::constant::codegen_tls_ref(fx, def_id, lval.layout());
|
2020-06-04 12:57:12 -05:00
|
|
|
lval.write_cvalue(fx, val);
|
|
|
|
}
|
2021-03-29 03:45:09 -05:00
|
|
|
Rvalue::BinaryOp(bin_op, ref lhs_rhs) => {
|
|
|
|
let lhs = codegen_operand(fx, &lhs_rhs.0);
|
|
|
|
let rhs = codegen_operand(fx, &lhs_rhs.1);
|
2018-06-23 11:26:54 -05:00
|
|
|
|
2020-10-28 02:25:06 -05:00
|
|
|
let res = crate::num::codegen_binop(fx, bin_op, lhs, rhs);
|
2018-06-27 08:47:58 -05:00
|
|
|
lval.write_cvalue(fx, res);
|
2018-06-23 11:26:54 -05:00
|
|
|
}
|
2021-03-29 03:45:09 -05:00
|
|
|
Rvalue::CheckedBinaryOp(bin_op, ref lhs_rhs) => {
|
|
|
|
let lhs = codegen_operand(fx, &lhs_rhs.0);
|
|
|
|
let rhs = codegen_operand(fx, &lhs_rhs.1);
|
2018-06-20 08:29:50 -05:00
|
|
|
|
2020-08-22 09:47:31 -05:00
|
|
|
let res = if !fx.tcx.sess.overflow_checks() {
|
2019-08-31 12:28:09 -05:00
|
|
|
let val =
|
2020-10-28 02:25:06 -05:00
|
|
|
crate::num::codegen_int_binop(fx, bin_op, lhs, rhs).load_scalar(fx);
|
2019-08-08 07:27:50 -05:00
|
|
|
let is_overflow = fx.bcx.ins().iconst(types::I8, 0);
|
|
|
|
CValue::by_val_pair(val, is_overflow, lval.layout())
|
|
|
|
} else {
|
2020-10-28 02:25:06 -05:00
|
|
|
crate::num::codegen_checked_int_binop(fx, bin_op, lhs, rhs)
|
2019-08-08 07:27:50 -05:00
|
|
|
};
|
|
|
|
|
2018-06-28 13:13:51 -05:00
|
|
|
lval.write_cvalue(fx, res);
|
2018-06-20 08:29:50 -05:00
|
|
|
}
|
2020-10-28 02:25:06 -05:00
|
|
|
Rvalue::UnaryOp(un_op, ref operand) => {
|
2020-11-03 04:00:04 -06:00
|
|
|
let operand = codegen_operand(fx, operand);
|
2018-09-14 12:49:33 -05:00
|
|
|
let layout = operand.layout();
|
2019-01-02 06:37:56 -06:00
|
|
|
let val = operand.load_scalar(fx);
|
2018-06-27 08:57:52 -05:00
|
|
|
let res = match un_op {
|
2020-09-05 03:38:49 -05:00
|
|
|
UnOp::Not => match layout.ty.kind() {
|
2020-08-28 05:10:48 -05:00
|
|
|
ty::Bool => {
|
|
|
|
let res = fx.bcx.ins().icmp_imm(IntCC::Equal, val, 0);
|
|
|
|
CValue::by_val(fx.bcx.ins().bint(types::I8, res), layout)
|
2018-09-14 12:49:33 -05:00
|
|
|
}
|
2020-08-28 05:10:48 -05:00
|
|
|
ty::Uint(_) | ty::Int(_) => {
|
|
|
|
CValue::by_val(fx.bcx.ins().bnot(val), layout)
|
|
|
|
}
|
|
|
|
_ => unreachable!("un op Not for {:?}", layout.ty),
|
|
|
|
},
|
2020-09-05 03:38:49 -05:00
|
|
|
UnOp::Neg => match layout.ty.kind() {
|
2020-02-15 04:59:38 -06:00
|
|
|
ty::Int(IntTy::I128) => {
|
|
|
|
// FIXME remove this case once ineg.i128 works
|
2020-11-27 13:48:53 -06:00
|
|
|
let zero =
|
|
|
|
CValue::const_val(fx, layout, ty::ScalarInt::null(layout.size));
|
2020-11-03 04:00:04 -06:00
|
|
|
crate::num::codegen_int_binop(fx, BinOp::Sub, zero, operand)
|
2019-10-06 08:51:43 -05:00
|
|
|
}
|
2020-08-28 05:10:48 -05:00
|
|
|
ty::Int(_) => CValue::by_val(fx.bcx.ins().ineg(val), layout),
|
|
|
|
ty::Float(_) => CValue::by_val(fx.bcx.ins().fneg(val), layout),
|
2020-01-25 09:24:48 -06:00
|
|
|
_ => unreachable!("un op Neg for {:?}", layout.ty),
|
2018-07-31 05:25:16 -05:00
|
|
|
},
|
2018-06-27 08:57:52 -05:00
|
|
|
};
|
2019-10-06 08:51:43 -05:00
|
|
|
lval.write_cvalue(fx, res);
|
2018-06-27 08:57:52 -05:00
|
|
|
}
|
2020-11-27 13:48:53 -06:00
|
|
|
Rvalue::Cast(
|
|
|
|
CastKind::Pointer(PointerCast::ReifyFnPointer),
|
|
|
|
ref operand,
|
|
|
|
to_ty,
|
|
|
|
) => {
|
2020-10-28 02:25:06 -05:00
|
|
|
let from_ty = fx.monomorphize(operand.ty(&fx.mir.local_decls, fx.tcx));
|
2019-12-17 09:58:34 -06:00
|
|
|
let to_layout = fx.layout_of(fx.monomorphize(to_ty));
|
2020-09-05 03:38:49 -05:00
|
|
|
match *from_ty.kind() {
|
2019-02-03 06:29:04 -06:00
|
|
|
ty::FnDef(def_id, substs) => {
|
|
|
|
let func_ref = fx.get_function_ref(
|
2020-08-28 05:10:48 -05:00
|
|
|
Instance::resolve_for_fn_ptr(
|
|
|
|
fx.tcx,
|
|
|
|
ParamEnv::reveal_all(),
|
|
|
|
def_id,
|
|
|
|
substs,
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
.polymorphize(fx.tcx),
|
2019-02-03 06:29:04 -06:00
|
|
|
);
|
|
|
|
let func_addr = fx.bcx.ins().func_addr(fx.pointer_type, func_ref);
|
2019-12-17 09:58:34 -06:00
|
|
|
lval.write_cvalue(fx, CValue::by_val(func_addr, to_layout));
|
2019-02-03 06:29:04 -06:00
|
|
|
}
|
2019-12-17 09:58:34 -06:00
|
|
|
_ => bug!("Trying to ReifyFnPointer on non FnDef {:?}", from_ty),
|
2019-02-03 06:29:04 -06:00
|
|
|
}
|
2018-06-20 08:29:50 -05:00
|
|
|
}
|
2020-11-27 13:48:53 -06:00
|
|
|
Rvalue::Cast(
|
|
|
|
CastKind::Pointer(PointerCast::UnsafeFnPointer),
|
|
|
|
ref operand,
|
|
|
|
to_ty,
|
|
|
|
)
|
|
|
|
| Rvalue::Cast(
|
|
|
|
CastKind::Pointer(PointerCast::MutToConstPointer),
|
|
|
|
ref operand,
|
|
|
|
to_ty,
|
|
|
|
)
|
|
|
|
| Rvalue::Cast(
|
|
|
|
CastKind::Pointer(PointerCast::ArrayToPointer),
|
|
|
|
ref operand,
|
|
|
|
to_ty,
|
|
|
|
) => {
|
2019-12-17 09:58:34 -06:00
|
|
|
let to_layout = fx.layout_of(fx.monomorphize(to_ty));
|
2020-11-03 04:00:04 -06:00
|
|
|
let operand = codegen_operand(fx, operand);
|
2020-03-29 04:52:30 -05:00
|
|
|
lval.write_cvalue(fx, operand.cast_pointer_to(to_layout));
|
2018-06-23 11:26:54 -05:00
|
|
|
}
|
2020-10-28 02:25:06 -05:00
|
|
|
Rvalue::Cast(CastKind::Misc, ref operand, to_ty) => {
|
2020-11-03 04:00:04 -06:00
|
|
|
let operand = codegen_operand(fx, operand);
|
2018-07-18 09:22:29 -05:00
|
|
|
let from_ty = operand.layout().ty;
|
2019-09-14 10:53:36 -05:00
|
|
|
let to_ty = fx.monomorphize(to_ty);
|
2019-02-24 10:25:13 -06:00
|
|
|
|
2021-03-05 12:12:59 -06:00
|
|
|
fn is_fat_ptr<'tcx>(fx: &FunctionCx<'_, '_, 'tcx>, ty: Ty<'tcx>) -> bool {
|
2019-08-31 12:28:09 -05:00
|
|
|
ty.builtin_deref(true)
|
2021-03-05 12:12:59 -06:00
|
|
|
.map(|ty::TypeAndMut { ty: pointee_ty, mutbl: _ }| {
|
|
|
|
has_ptr_meta(fx.tcx, pointee_ty)
|
|
|
|
})
|
2019-02-24 10:25:13 -06:00
|
|
|
.unwrap_or(false)
|
|
|
|
}
|
|
|
|
|
|
|
|
if is_fat_ptr(fx, from_ty) {
|
|
|
|
if is_fat_ptr(fx, to_ty) {
|
|
|
|
// fat-ptr -> fat-ptr
|
2020-03-29 04:52:30 -05:00
|
|
|
lval.write_cvalue(fx, operand.cast_pointer_to(dest_layout));
|
2019-02-24 10:25:13 -06:00
|
|
|
} else {
|
|
|
|
// fat-ptr -> thin-ptr
|
2019-03-02 14:09:28 -06:00
|
|
|
let (ptr, _extra) = operand.load_scalar_pair(fx);
|
2019-06-11 08:32:30 -05:00
|
|
|
lval.write_cvalue(fx, CValue::by_val(ptr, dest_layout))
|
2019-02-16 09:37:30 -06:00
|
|
|
}
|
2020-09-05 03:38:49 -05:00
|
|
|
} else if let ty::Adt(adt_def, _substs) = from_ty.kind() {
|
2019-02-24 10:25:13 -06:00
|
|
|
// enum -> discriminant value
|
|
|
|
assert!(adt_def.is_enum());
|
2020-09-05 03:38:49 -05:00
|
|
|
match to_ty.kind() {
|
2019-08-31 12:28:09 -05:00
|
|
|
ty::Uint(_) | ty::Int(_) => {}
|
2019-02-24 10:25:13 -06:00
|
|
|
_ => unreachable!("cast adt {} -> {}", from_ty, to_ty),
|
2018-07-18 09:22:29 -05:00
|
|
|
}
|
2021-03-05 12:12:59 -06:00
|
|
|
let to_clif_ty = fx.clif_type(to_ty).unwrap();
|
2019-02-24 10:25:13 -06:00
|
|
|
|
2021-03-05 12:12:59 -06:00
|
|
|
let discriminant = crate::discriminant::codegen_get_discriminant(
|
|
|
|
fx,
|
|
|
|
operand,
|
|
|
|
fx.layout_of(operand.layout().ty.discriminant_ty(fx.tcx)),
|
|
|
|
)
|
|
|
|
.load_scalar(fx);
|
|
|
|
|
|
|
|
let res = crate::cast::clif_intcast(
|
|
|
|
fx,
|
|
|
|
discriminant,
|
|
|
|
to_clif_ty,
|
|
|
|
to_ty.is_signed(),
|
|
|
|
);
|
|
|
|
lval.write_cvalue(fx, CValue::by_val(res, dest_layout));
|
2019-02-24 10:25:13 -06:00
|
|
|
} else {
|
|
|
|
let to_clif_ty = fx.clif_type(to_ty).unwrap();
|
|
|
|
let from = operand.load_scalar(fx);
|
|
|
|
|
2019-08-31 12:28:09 -05:00
|
|
|
let res = clif_int_or_float_cast(
|
|
|
|
fx,
|
|
|
|
from,
|
|
|
|
type_sign(from_ty),
|
|
|
|
to_clif_ty,
|
|
|
|
type_sign(to_ty),
|
|
|
|
);
|
2019-06-11 08:32:30 -05:00
|
|
|
lval.write_cvalue(fx, CValue::by_val(res, dest_layout));
|
2018-07-18 07:21:13 -05:00
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
}
|
2020-08-28 05:10:48 -05:00
|
|
|
Rvalue::Cast(
|
|
|
|
CastKind::Pointer(PointerCast::ClosureFnPointer(_)),
|
2020-10-28 02:25:06 -05:00
|
|
|
ref operand,
|
2020-08-28 05:10:48 -05:00
|
|
|
_to_ty,
|
|
|
|
) => {
|
2020-11-03 04:00:04 -06:00
|
|
|
let operand = codegen_operand(fx, operand);
|
2020-09-05 03:38:49 -05:00
|
|
|
match *operand.layout().ty.kind() {
|
2019-02-24 11:15:23 -06:00
|
|
|
ty::Closure(def_id, substs) => {
|
2019-06-06 13:31:09 -05:00
|
|
|
let instance = Instance::resolve_closure(
|
2020-08-22 09:47:31 -05:00
|
|
|
fx.tcx,
|
2019-02-24 11:15:23 -06:00
|
|
|
def_id,
|
|
|
|
substs,
|
|
|
|
ty::ClosureKind::FnOnce,
|
2020-08-28 05:10:48 -05:00
|
|
|
)
|
|
|
|
.polymorphize(fx.tcx);
|
2019-02-24 11:15:23 -06:00
|
|
|
let func_ref = fx.get_function_ref(instance);
|
|
|
|
let func_addr = fx.bcx.ins().func_addr(fx.pointer_type, func_ref);
|
2019-06-11 08:32:30 -05:00
|
|
|
lval.write_cvalue(fx, CValue::by_val(func_addr, lval.layout()));
|
2019-02-24 11:15:23 -06:00
|
|
|
}
|
2019-08-31 12:28:09 -05:00
|
|
|
_ => bug!("{} cannot be cast to a fn ptr", operand.layout().ty),
|
2019-02-24 11:15:23 -06:00
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
}
|
2020-10-28 02:25:06 -05:00
|
|
|
Rvalue::Cast(CastKind::Pointer(PointerCast::Unsize), ref operand, _to_ty) => {
|
2020-11-03 04:00:04 -06:00
|
|
|
let operand = codegen_operand(fx, operand);
|
2018-08-22 08:38:56 -05:00
|
|
|
operand.unsize_value(fx, lval);
|
2018-07-31 05:25:16 -05:00
|
|
|
}
|
2018-06-23 11:26:54 -05:00
|
|
|
Rvalue::Discriminant(place) => {
|
2020-10-28 02:25:06 -05:00
|
|
|
let place = codegen_place(fx, place);
|
2019-08-18 09:19:33 -05:00
|
|
|
let value = place.to_cvalue(fx);
|
2019-08-31 12:28:09 -05:00
|
|
|
let discr =
|
|
|
|
crate::discriminant::codegen_get_discriminant(fx, value, dest_layout);
|
2018-07-30 07:36:32 -05:00
|
|
|
lval.write_cvalue(fx, discr);
|
2018-06-20 08:29:50 -05:00
|
|
|
}
|
2020-10-28 02:25:06 -05:00
|
|
|
Rvalue::Repeat(ref operand, times) => {
|
2020-11-03 04:00:04 -06:00
|
|
|
let operand = codegen_operand(fx, operand);
|
2020-03-28 08:20:24 -05:00
|
|
|
let times = fx
|
|
|
|
.monomorphize(times)
|
2020-08-22 09:47:31 -05:00
|
|
|
.eval(fx.tcx, ParamEnv::reveal_all())
|
2020-03-28 08:20:24 -05:00
|
|
|
.val
|
2020-08-22 09:47:31 -05:00
|
|
|
.try_to_bits(fx.tcx.data_layout.pointer_size)
|
2020-03-28 08:20:24 -05:00
|
|
|
.unwrap();
|
2021-03-29 03:45:09 -05:00
|
|
|
if operand.layout().size.bytes() == 0 {
|
|
|
|
// Do nothing for ZST's
|
|
|
|
} else if fx.clif_type(operand.layout().ty) == Some(types::I8) {
|
2020-09-14 04:32:18 -05:00
|
|
|
let times = fx.bcx.ins().iconst(fx.pointer_type, times as i64);
|
|
|
|
// FIXME use emit_small_memset where possible
|
|
|
|
let addr = lval.to_ptr().get_addr(fx);
|
|
|
|
let val = operand.load_scalar(fx);
|
2021-04-30 07:49:58 -05:00
|
|
|
fx.bcx.call_memset(fx.module.target_config(), addr, val, times);
|
2020-09-14 04:32:18 -05:00
|
|
|
} else {
|
|
|
|
let loop_block = fx.bcx.create_block();
|
2020-09-14 04:44:53 -05:00
|
|
|
let loop_block2 = fx.bcx.create_block();
|
2020-09-14 04:32:18 -05:00
|
|
|
let done_block = fx.bcx.create_block();
|
|
|
|
let index = fx.bcx.append_block_param(loop_block, fx.pointer_type);
|
|
|
|
let zero = fx.bcx.ins().iconst(fx.pointer_type, 0);
|
|
|
|
fx.bcx.ins().jump(loop_block, &[zero]);
|
|
|
|
|
|
|
|
fx.bcx.switch_to_block(loop_block);
|
2020-09-14 04:44:53 -05:00
|
|
|
let done = fx.bcx.ins().icmp_imm(IntCC::Equal, index, times as i64);
|
|
|
|
fx.bcx.ins().brnz(done, done_block, &[]);
|
|
|
|
fx.bcx.ins().jump(loop_block2, &[]);
|
|
|
|
|
|
|
|
fx.bcx.switch_to_block(loop_block2);
|
2018-08-08 05:30:25 -05:00
|
|
|
let to = lval.place_index(fx, index);
|
|
|
|
to.write_cvalue(fx, operand);
|
2020-09-14 04:32:18 -05:00
|
|
|
let index = fx.bcx.ins().iadd_imm(index, 1);
|
2020-09-14 04:44:53 -05:00
|
|
|
fx.bcx.ins().jump(loop_block, &[index]);
|
2020-09-14 04:32:18 -05:00
|
|
|
|
|
|
|
fx.bcx.switch_to_block(done_block);
|
2020-09-21 07:56:19 -05:00
|
|
|
fx.bcx.ins().nop();
|
2018-08-08 05:30:25 -05:00
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
}
|
2018-08-22 10:58:25 -05:00
|
|
|
Rvalue::Len(place) => {
|
2020-10-28 02:25:06 -05:00
|
|
|
let place = codegen_place(fx, place);
|
2020-08-22 09:47:31 -05:00
|
|
|
let usize_layout = fx.layout_of(fx.tcx.types.usize);
|
2018-11-13 11:28:10 -06:00
|
|
|
let len = codegen_array_len(fx, place);
|
2019-06-11 08:32:30 -05:00
|
|
|
lval.write_cvalue(fx, CValue::by_val(len, usize_layout));
|
2018-08-22 10:58:25 -05:00
|
|
|
}
|
2018-09-04 12:04:25 -05:00
|
|
|
Rvalue::NullaryOp(NullOp::Box, content_ty) => {
|
2020-08-22 09:47:31 -05:00
|
|
|
let usize_type = fx.clif_type(fx.tcx.types.usize).unwrap();
|
2019-12-17 09:58:34 -06:00
|
|
|
let content_ty = fx.monomorphize(content_ty);
|
2018-11-24 04:23:49 -06:00
|
|
|
let layout = fx.layout_of(content_ty);
|
|
|
|
let llsize = fx.bcx.ins().iconst(usize_type, layout.size.bytes() as i64);
|
2021-03-05 12:12:59 -06:00
|
|
|
let llalign = fx.bcx.ins().iconst(usize_type, layout.align.abi.bytes() as i64);
|
2020-08-22 09:47:31 -05:00
|
|
|
let box_layout = fx.layout_of(fx.tcx.mk_box(content_ty));
|
2018-09-04 12:04:25 -05:00
|
|
|
|
|
|
|
// Allocate space:
|
2021-03-05 12:12:59 -06:00
|
|
|
let def_id =
|
|
|
|
match fx.tcx.lang_items().require(rustc_hir::LangItem::ExchangeMalloc) {
|
|
|
|
Ok(id) => id,
|
|
|
|
Err(s) => {
|
|
|
|
fx.tcx
|
|
|
|
.sess
|
|
|
|
.fatal(&format!("allocation of `{}` {}", box_layout.ty, s));
|
|
|
|
}
|
|
|
|
};
|
2020-08-22 09:47:31 -05:00
|
|
|
let instance = ty::Instance::mono(fx.tcx, def_id).polymorphize(fx.tcx);
|
2018-09-04 12:04:25 -05:00
|
|
|
let func_ref = fx.get_function_ref(instance);
|
|
|
|
let call = fx.bcx.ins().call(func_ref, &[llsize, llalign]);
|
|
|
|
let ptr = fx.bcx.inst_results(call)[0];
|
2019-06-11 08:32:30 -05:00
|
|
|
lval.write_cvalue(fx, CValue::by_val(ptr, box_layout));
|
2018-09-08 10:24:52 -05:00
|
|
|
}
|
2021-09-07 10:06:07 -05:00
|
|
|
Rvalue::NullaryOp(null_op, ty) => {
|
2021-03-05 12:12:59 -06:00
|
|
|
assert!(
|
|
|
|
lval.layout()
|
|
|
|
.ty
|
|
|
|
.is_sized(fx.tcx.at(stmt.source_info.span), ParamEnv::reveal_all())
|
|
|
|
);
|
2021-09-07 10:06:07 -05:00
|
|
|
let layout = fx.layout_of(fx.monomorphize(ty));
|
|
|
|
let val = match null_op {
|
|
|
|
NullOp::SizeOf => layout.size.bytes(),
|
|
|
|
NullOp::AlignOf => layout.align.abi.bytes(),
|
|
|
|
NullOp::Box => unreachable!(),
|
|
|
|
};
|
2020-08-28 05:10:48 -05:00
|
|
|
let val =
|
2021-09-07 10:06:07 -05:00
|
|
|
CValue::const_val(fx, fx.layout_of(fx.tcx.types.usize), val.into());
|
2018-08-08 05:44:41 -05:00
|
|
|
lval.write_cvalue(fx, val);
|
2018-08-08 05:45:34 -05:00
|
|
|
}
|
2020-10-28 02:25:06 -05:00
|
|
|
Rvalue::Aggregate(ref kind, ref operands) => match kind.as_ref() {
|
2018-08-09 04:41:34 -05:00
|
|
|
AggregateKind::Array(_ty) => {
|
2020-11-03 04:00:04 -06:00
|
|
|
for (i, operand) in operands.iter().enumerate() {
|
|
|
|
let operand = codegen_operand(fx, operand);
|
2018-11-03 07:14:28 -05:00
|
|
|
let index = fx.bcx.ins().iconst(fx.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);
|
|
|
|
}
|
|
|
|
}
|
2020-11-03 04:00:04 -06:00
|
|
|
_ => unreachable!("shouldn't exist at codegen {:?}", to_place_and_rval.1),
|
2018-08-09 04:41:34 -05:00
|
|
|
},
|
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
|
2018-09-23 03:16:26 -05:00
|
|
|
| StatementKind::FakeRead(..)
|
2018-11-03 06:49:55 -05:00
|
|
|
| StatementKind::Retag { .. }
|
2018-12-21 06:45:06 -06:00
|
|
|
| StatementKind::AscribeUserType(..) => {}
|
2018-08-09 08:08:54 -05:00
|
|
|
|
2020-03-28 08:20:24 -05:00
|
|
|
StatementKind::LlvmInlineAsm(asm) => {
|
2021-04-30 07:49:58 -05:00
|
|
|
match asm.asm.asm.as_str().trim() {
|
2020-07-03 09:39:36 -05:00
|
|
|
"" => {
|
|
|
|
// Black box
|
|
|
|
}
|
2021-04-30 07:49:58 -05:00
|
|
|
_ => fx.tcx.sess.span_fatal(
|
|
|
|
stmt.source_info.span,
|
|
|
|
"Legacy `llvm_asm!` inline assembly is not supported. \
|
|
|
|
Try using the new `asm!` instead.",
|
|
|
|
),
|
2019-07-20 08:33:57 -05:00
|
|
|
}
|
|
|
|
}
|
2020-08-23 04:36:28 -05:00
|
|
|
StatementKind::Coverage { .. } => fx.tcx.sess.fatal("-Zcoverage is unimplemented"),
|
2021-03-29 03:45:09 -05:00
|
|
|
StatementKind::CopyNonOverlapping(inner) => {
|
|
|
|
let dst = codegen_operand(fx, &inner.dst);
|
2021-01-22 21:55:41 -06:00
|
|
|
let pointee = dst
|
2021-03-29 03:45:09 -05:00
|
|
|
.layout()
|
|
|
|
.pointee_info_at(fx, rustc_target::abi::Size::ZERO)
|
|
|
|
.expect("Expected pointer");
|
2021-01-22 21:55:41 -06:00
|
|
|
let dst = dst.load_scalar(fx);
|
2021-03-29 03:45:09 -05:00
|
|
|
let src = codegen_operand(fx, &inner.src).load_scalar(fx);
|
|
|
|
let count = codegen_operand(fx, &inner.count).load_scalar(fx);
|
2021-01-22 21:55:41 -06:00
|
|
|
let elem_size: u64 = pointee.size.bytes();
|
2021-03-29 03:45:09 -05:00
|
|
|
let bytes =
|
|
|
|
if elem_size != 1 { fx.bcx.ins().imul_imm(count, elem_size as i64) } else { count };
|
2021-04-30 07:49:58 -05:00
|
|
|
fx.bcx.call_memcpy(fx.module.target_config(), dst, src, bytes);
|
2020-12-28 20:00:04 -06:00
|
|
|
}
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-05 12:12:59 -06:00
|
|
|
fn codegen_array_len<'tcx>(fx: &mut FunctionCx<'_, '_, 'tcx>, place: CPlace<'tcx>) -> Value {
|
2020-09-05 03:38:49 -05:00
|
|
|
match *place.layout().ty.kind() {
|
2018-11-13 11:28:10 -06:00
|
|
|
ty::Array(_elem_ty, len) => {
|
2021-03-05 12:12:59 -06:00
|
|
|
let len = fx.monomorphize(len).eval_usize(fx.tcx, ParamEnv::reveal_all()) as i64;
|
2018-11-13 11:28:10 -06:00
|
|
|
fx.bcx.ins().iconst(fx.pointer_type, len)
|
|
|
|
}
|
2021-03-05 12:12:59 -06:00
|
|
|
ty::Slice(_elem_ty) => {
|
|
|
|
place.to_ptr_maybe_unsized().1.expect("Length metadata for slice place")
|
|
|
|
}
|
2018-11-13 11:28:10 -06:00
|
|
|
_ => bug!("Rvalue::Len({:?})", place),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 04:00:04 -06:00
|
|
|
pub(crate) fn codegen_place<'tcx>(
|
2021-03-05 12:12:59 -06:00
|
|
|
fx: &mut FunctionCx<'_, '_, 'tcx>,
|
2020-04-02 10:23:15 -05:00
|
|
|
place: Place<'tcx>,
|
2018-07-31 05:25:16 -05:00
|
|
|
) -> CPlace<'tcx> {
|
2020-01-13 14:38:46 -06:00
|
|
|
let mut cplace = fx.get_local_place(place.local);
|
2019-07-24 04:56:24 -05:00
|
|
|
|
2020-04-02 10:23:15 -05:00
|
|
|
for elem in place.projection {
|
2020-06-04 12:57:12 -05:00
|
|
|
match elem {
|
2019-09-14 04:21:18 -05:00
|
|
|
PlaceElem::Deref => {
|
|
|
|
cplace = cplace.place_deref(fx);
|
|
|
|
}
|
|
|
|
PlaceElem::Field(field, _ty) => {
|
|
|
|
cplace = cplace.place_field(fx, field);
|
|
|
|
}
|
|
|
|
PlaceElem::Index(local) => {
|
|
|
|
let index = fx.get_local_place(local).to_cvalue(fx).load_scalar(fx);
|
|
|
|
cplace = cplace.place_index(fx, index);
|
|
|
|
}
|
2021-03-05 12:12:59 -06:00
|
|
|
PlaceElem::ConstantIndex { offset, min_length: _, from_end } => {
|
2020-09-05 03:38:49 -05:00
|
|
|
let offset: u64 = offset;
|
2019-09-14 04:21:18 -05:00
|
|
|
let index = if !from_end {
|
2020-09-05 03:38:49 -05:00
|
|
|
fx.bcx.ins().iconst(fx.pointer_type, offset as i64)
|
2019-09-14 04:21:18 -05:00
|
|
|
} else {
|
|
|
|
let len = codegen_array_len(fx, cplace);
|
2020-09-05 03:38:49 -05:00
|
|
|
fx.bcx.ins().iadd_imm(len, -(offset as i64))
|
2019-09-14 04:21:18 -05:00
|
|
|
};
|
|
|
|
cplace = cplace.place_index(fx, index);
|
|
|
|
}
|
2019-12-16 04:33:57 -06:00
|
|
|
PlaceElem::Subslice { from, to, from_end } => {
|
2019-09-14 04:21:18 -05:00
|
|
|
// These indices are generated by slice patterns.
|
|
|
|
// slice[from:-to] in Python terms.
|
|
|
|
|
2020-09-05 03:38:49 -05:00
|
|
|
let from: u64 = from;
|
|
|
|
let to: u64 = to;
|
|
|
|
|
|
|
|
match cplace.layout().ty.kind() {
|
2020-01-18 03:23:51 -06:00
|
|
|
ty::Array(elem_ty, _len) => {
|
|
|
|
assert!(!from_end, "array subslices are never `from_end`");
|
2019-09-14 04:21:18 -05:00
|
|
|
let elem_layout = fx.layout_of(elem_ty);
|
2020-03-29 04:51:43 -05:00
|
|
|
let ptr = cplace.to_ptr();
|
2019-12-20 09:02:47 -06:00
|
|
|
cplace = CPlace::for_ptr(
|
2020-09-05 03:38:49 -05:00
|
|
|
ptr.offset_i64(fx, elem_layout.size.bytes() as i64 * (from as i64)),
|
2020-11-03 04:00:04 -06:00
|
|
|
fx.layout_of(fx.tcx.mk_array(elem_ty, to - from)),
|
2019-09-14 04:21:18 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
ty::Slice(elem_ty) => {
|
2019-12-16 04:33:57 -06:00
|
|
|
assert!(from_end, "slice subslices should be `from_end`");
|
2019-09-14 04:21:18 -05:00
|
|
|
let elem_layout = fx.layout_of(elem_ty);
|
2020-03-29 04:51:43 -05:00
|
|
|
let (ptr, len) = cplace.to_ptr_maybe_unsized();
|
2019-09-14 04:21:18 -05:00
|
|
|
let len = len.unwrap();
|
2019-12-20 09:02:47 -06:00
|
|
|
cplace = CPlace::for_ptr_with_extra(
|
2020-09-05 03:38:49 -05:00
|
|
|
ptr.offset_i64(fx, elem_layout.size.bytes() as i64 * (from as i64)),
|
|
|
|
fx.bcx.ins().iadd_imm(len, -(from as i64 + to as i64)),
|
2019-09-14 04:21:18 -05:00
|
|
|
cplace.layout(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
_ => unreachable!(),
|
2019-02-24 05:38:06 -06:00
|
|
|
}
|
2019-09-14 04:21:18 -05:00
|
|
|
}
|
|
|
|
PlaceElem::Downcast(_adt_def, variant) => {
|
|
|
|
cplace = cplace.downcast_variant(fx, variant);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-14 04:21:18 -05:00
|
|
|
|
|
|
|
cplace
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
|
2020-11-03 04:00:04 -06:00
|
|
|
pub(crate) fn codegen_operand<'tcx>(
|
2021-03-05 12:12:59 -06:00
|
|
|
fx: &mut FunctionCx<'_, '_, 'tcx>,
|
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) => {
|
2020-11-03 04:00:04 -06:00
|
|
|
let cplace = codegen_place(fx, *place);
|
2018-06-20 08:15:28 -05:00
|
|
|
cplace.to_cvalue(fx)
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
2020-11-03 04:00:04 -06:00
|
|
|
Operand::Constant(const_) => crate::constant::codegen_constant(fx, const_),
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|
2020-09-29 06:22:01 -05:00
|
|
|
|
2021-03-05 12:12:59 -06:00
|
|
|
pub(crate) fn codegen_panic<'tcx>(fx: &mut FunctionCx<'_, '_, 'tcx>, msg_str: &str, span: Span) {
|
2020-09-29 06:22:01 -05:00
|
|
|
let location = fx.get_caller_location(span).load_scalar(fx);
|
|
|
|
|
2021-05-27 06:08:14 -05:00
|
|
|
let msg_ptr = fx.anonymous_str(msg_str);
|
2021-03-05 12:12:59 -06:00
|
|
|
let msg_len = fx.bcx.ins().iconst(fx.pointer_type, i64::try_from(msg_str.len()).unwrap());
|
2020-09-29 06:22:01 -05:00
|
|
|
let args = [msg_ptr, msg_len, location];
|
|
|
|
|
|
|
|
codegen_panic_inner(fx, rustc_hir::LangItem::Panic, &args, span);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn codegen_panic_inner<'tcx>(
|
2021-03-05 12:12:59 -06:00
|
|
|
fx: &mut FunctionCx<'_, '_, 'tcx>,
|
2020-09-29 06:22:01 -05:00
|
|
|
lang_item: rustc_hir::LangItem,
|
|
|
|
args: &[Value],
|
|
|
|
span: Span,
|
|
|
|
) {
|
2021-03-05 12:12:59 -06:00
|
|
|
let def_id =
|
|
|
|
fx.tcx.lang_items().require(lang_item).unwrap_or_else(|s| fx.tcx.sess.span_fatal(span, &s));
|
2020-09-29 06:22:01 -05:00
|
|
|
|
|
|
|
let instance = Instance::mono(fx.tcx, def_id).polymorphize(fx.tcx);
|
|
|
|
let symbol_name = fx.tcx.symbol_name(instance).name;
|
|
|
|
|
|
|
|
fx.lib_call(
|
|
|
|
&*symbol_name,
|
2021-02-01 03:11:46 -06:00
|
|
|
vec![
|
|
|
|
AbiParam::new(fx.pointer_type),
|
|
|
|
AbiParam::new(fx.pointer_type),
|
|
|
|
AbiParam::new(fx.pointer_type),
|
|
|
|
],
|
2020-09-29 06:22:01 -05:00
|
|
|
vec![],
|
|
|
|
args,
|
|
|
|
);
|
|
|
|
|
|
|
|
crate::trap::trap_unreachable(fx, "panic lang item returned");
|
|
|
|
}
|