2020-09-23 08:13:49 -05:00
|
|
|
//! Codegen of a single function
|
|
|
|
|
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;
|
2019-04-21 07:41:23 -05:00
|
|
|
|
2018-07-30 09:57:40 -05:00
|
|
|
use crate::prelude::*;
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2020-10-01 03:38:23 -05:00
|
|
|
pub(crate) fn trans_fn<'tcx>(
|
|
|
|
cx: &mut crate::CodegenCx<'tcx, impl Module>,
|
2018-07-31 05:25:16 -05:00
|
|
|
instance: Instance<'tcx>,
|
2018-12-23 12:11:17 -06:00
|
|
|
linkage: Linkage,
|
2018-08-17 05:57:41 -05:00
|
|
|
) {
|
2020-08-22 08:49:16 -05:00
|
|
|
let tcx = cx.tcx;
|
2018-12-18 11:28:02 -06:00
|
|
|
|
2020-04-25 04:42:46 -05:00
|
|
|
let mir = tcx.instance_mir(instance.def);
|
2018-08-14 11:52:43 -05:00
|
|
|
|
2019-05-14 09:12:58 -05:00
|
|
|
// Declare function
|
2020-08-22 08:49:16 -05:00
|
|
|
let (name, sig) = get_function_name_and_sig(tcx, cx.module.isa().triple(), instance, false);
|
|
|
|
let func_id = cx.module.declare_function(&name, linkage, &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();
|
2020-08-28 05:10:48 -05: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
|
2020-08-22 08:49:16 -05:00
|
|
|
let pointer_type = cx.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,
|
2020-08-22 09:45:50 -05:00
|
|
|
tcx,
|
2018-11-03 07:14:28 -05:00
|
|
|
pointer_type,
|
2018-12-01 04:49:44 -06:00
|
|
|
|
2018-06-23 11:54:15 -05:00
|
|
|
instance,
|
2018-06-20 08:15:28 -05:00
|
|
|
mir,
|
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`
|
2020-02-14 11:23:29 -06:00
|
|
|
cold_blocks: EntitySet::new(),
|
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
|
|
|
};
|
|
|
|
|
2020-08-28 05:10:48 -05: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
|
|
|
|
|
|
|
if arg_uninhabited {
|
2020-08-28 05:10:48 -05:00
|
|
|
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", || {
|
2020-08-28 05:10:48 -05: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;
|
2020-02-14 11:23:29 -06:00
|
|
|
let cold_blocks = fx.cold_blocks;
|
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;
|
|
|
|
|
2020-08-28 05:10:48 -05:00
|
|
|
crate::pretty_clif::write_clif_file(tcx, "unopt", None, 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
|
|
|
|
|
|
|
// Perform rust specific optimizations
|
2020-01-10 07:15:14 -06:00
|
|
|
tcx.sess.time("optimize clif ir", || {
|
2020-08-28 05:10:48 -05:00
|
|
|
crate::optimize::optimize_function(
|
|
|
|
tcx,
|
|
|
|
instance,
|
|
|
|
context,
|
|
|
|
&cold_blocks,
|
|
|
|
&mut clif_comments,
|
|
|
|
);
|
2020-01-10 07:15:14 -06:00
|
|
|
});
|
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();
|
2020-08-22 11:53:34 -05:00
|
|
|
context.eliminate_unreachable_code(cx.module.isa()).unwrap();
|
2020-08-30 06:02:53 -05:00
|
|
|
context.dce(cx.module.isa()).unwrap();
|
2020-03-30 11:44:14 -05:00
|
|
|
|
2019-12-28 05:41:03 -06:00
|
|
|
// Define function
|
2020-08-22 11:53:34 -05:00
|
|
|
let module = &mut cx.module;
|
2020-08-28 05:10:48 -05:00
|
|
|
tcx.sess.time("define function", || {
|
|
|
|
module
|
|
|
|
.define_function(
|
|
|
|
func_id,
|
|
|
|
context,
|
|
|
|
&mut cranelift_codegen::binemit::NullTrapSink {},
|
|
|
|
)
|
|
|
|
.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",
|
2020-08-22 11:53:34 -05:00
|
|
|
Some(cx.module.isa()),
|
2020-06-16 06:27:24 -05:00
|
|
|
instance,
|
|
|
|
&context,
|
|
|
|
&clif_comments,
|
|
|
|
);
|
2019-05-14 09:12:58 -05:00
|
|
|
|
|
|
|
// Define debuginfo for function
|
2020-08-22 11:53:34 -05:00
|
|
|
let isa = cx.module.isa();
|
|
|
|
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,
|
|
|
|
&name,
|
|
|
|
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,
|
|
|
|
);
|
|
|
|
tcx.sess
|
|
|
|
.fatal(&format!("cranelift verify error:\n{}", pretty_error));
|
|
|
|
}
|
2018-08-14 11:52:43 -05:00
|
|
|
}
|
2020-01-10 07:15:14 -06:00
|
|
|
});
|
2018-08-14 11:52:43 -05:00
|
|
|
}
|
|
|
|
|
2020-10-01 03:38:23 -05:00
|
|
|
fn codegen_fn_content(fx: &mut FunctionCx<'_, '_, impl Module>) {
|
2020-08-20 09:51:01 -05:00
|
|
|
crate::constant::check_constants(fx);
|
|
|
|
|
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;
|
|
|
|
|
2020-02-01 09:47:35 -06:00
|
|
|
// FIXME once unwinding is supported uncomment next lines
|
2020-02-14 11:23:29 -06:00
|
|
|
// // Unwinding is unlikely to happen, so mark cleanup block's as cold.
|
|
|
|
// fx.cold_blocks.insert(block);
|
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-02-14 11:23:29 -06:00
|
|
|
trans_stmt(fx, block, stmt);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
|
2018-12-28 10:07:40 -06:00
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
{
|
|
|
|
let mut terminator_head = "\n".to_string();
|
|
|
|
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
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
TerminatorKind::Assert {
|
|
|
|
cond,
|
|
|
|
expected,
|
2019-03-23 07:06:35 -05:00
|
|
|
msg,
|
2018-07-31 05:25:16 -05:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2019-01-02 06:37:56 -06:00
|
|
|
let cond = trans_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();
|
|
|
|
fx.cold_blocks.insert(failure);
|
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 } => {
|
|
|
|
let len = trans_operand(fx, len).load_scalar(fx);
|
|
|
|
let index = trans_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
|
|
|
}
|
|
|
|
|
2018-07-31 05:25:16 -05:00
|
|
|
TerminatorKind::SwitchInt {
|
|
|
|
discr,
|
2020-08-30 06:02:53 -05:00
|
|
|
switch_ty,
|
2018-07-31 05:25:16 -05:00
|
|
|
values,
|
|
|
|
targets,
|
|
|
|
} => {
|
2019-01-02 06:37:56 -06:00
|
|
|
let discr = trans_operand(fx, discr).load_scalar(fx);
|
2020-08-30 06:02:53 -05:00
|
|
|
|
2020-09-05 03:38:49 -05:00
|
|
|
if switch_ty.kind() == fx.tcx.types.bool.kind() {
|
2020-08-30 06:02:53 -05:00
|
|
|
assert_eq!(targets.len(), 2);
|
|
|
|
let then_block = fx.get_block(targets[0]);
|
|
|
|
let else_block = fx.get_block(targets[1]);
|
|
|
|
let test_zero = match **values {
|
|
|
|
[0] => true,
|
|
|
|
[1] => false,
|
|
|
|
_ => unreachable!("{:?}", values),
|
|
|
|
};
|
|
|
|
|
|
|
|
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);
|
|
|
|
let discr =
|
|
|
|
crate::optimize::peephole::make_branchable_value(&mut fx.bcx, discr);
|
|
|
|
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, &[]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let mut switch = ::cranelift_frontend::Switch::new();
|
|
|
|
for (i, value) in values.iter().enumerate() {
|
|
|
|
let block = fx.get_block(targets[i]);
|
|
|
|
switch.set_entry(*value, block);
|
|
|
|
}
|
|
|
|
let otherwise_block = fx.get_block(targets[targets.len() - 1]);
|
|
|
|
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", || {
|
|
|
|
crate::abi::codegen_terminator_call(
|
|
|
|
fx,
|
|
|
|
*fn_span,
|
|
|
|
block,
|
|
|
|
func,
|
|
|
|
args,
|
|
|
|
*destination,
|
|
|
|
)
|
|
|
|
});
|
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 => {
|
2018-06-18 11:39:07 -05:00
|
|
|
bug!("shouldn't exist at trans {:?}", bb_data.terminator());
|
|
|
|
}
|
2018-09-11 12:27:57 -05:00
|
|
|
TerminatorKind::Drop {
|
2020-06-20 04:10:27 -05:00
|
|
|
place,
|
2018-09-11 12:27:57 -05:00
|
|
|
target,
|
|
|
|
unwind: _,
|
|
|
|
} => {
|
2020-06-20 04:10:27 -05:00
|
|
|
let drop_place = trans_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
|
|
|
}
|
|
|
|
|
2019-08-18 09:52:07 -05:00
|
|
|
fn trans_stmt<'tcx>(
|
2020-10-01 03:38:23 -05:00
|
|
|
fx: &mut FunctionCx<'_, 'tcx, impl Module>,
|
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);
|
|
|
|
|
2020-01-13 14:38:46 -06:00
|
|
|
#[cfg(false_debug_assertions)]
|
2018-09-05 13:04:21 -05:00
|
|
|
match &stmt.kind {
|
|
|
|
StatementKind::StorageLive(..) | StatementKind::StorageDead(..) => {} // Those are not very useful
|
|
|
|
_ => {
|
2020-02-14 11:23:29 -06:00
|
|
|
let inst = fx.bcx.func.layout.last_inst(cur_block).unwrap();
|
2018-09-05 13:04:21 -05:00
|
|
|
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,
|
|
|
|
} => {
|
2020-04-02 10:23:15 -05:00
|
|
|
let place = trans_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-04-02 10:23:15 -05:00
|
|
|
let lval = trans_place(fx, to_place_and_rval.0);
|
2018-06-26 12:44:19 -05:00
|
|
|
let dest_layout = lval.layout();
|
2019-09-14 04:21:18 -05:00
|
|
|
match &to_place_and_rval.1 {
|
2018-06-20 08:29:50 -05:00
|
|
|
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
|
|
|
}
|
2019-12-21 04:22:12 -06:00
|
|
|
Rvalue::Ref(_, _, place) | Rvalue::AddressOf(_, place) => {
|
2020-04-02 10:23:15 -05:00
|
|
|
let place = trans_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) => {
|
|
|
|
let val = crate::constant::codegen_tls_ref(fx, *def_id, lval.layout());
|
|
|
|
lval.write_cvalue(fx, val);
|
|
|
|
}
|
2018-06-23 11:26:54 -05:00
|
|
|
Rvalue::BinaryOp(bin_op, lhs, rhs) => {
|
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
|
|
|
|
2019-08-14 08:03:52 -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
|
|
|
}
|
2018-06-20 08:29:50 -05:00
|
|
|
Rvalue::CheckedBinaryOp(bin_op, lhs, rhs) => {
|
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
|
|
|
|
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 =
|
|
|
|
crate::num::trans_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 {
|
2019-08-14 08:03:52 -05:00
|
|
|
crate::num::trans_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
|
|
|
}
|
2018-06-27 08:57:52 -05:00
|
|
|
Rvalue::UnaryOp(un_op, operand) => {
|
2018-09-14 12:49:33 -05:00
|
|
|
let operand = trans_operand(fx, operand);
|
|
|
|
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-01-15 06:17:09 -06:00
|
|
|
let zero = CValue::const_val(fx, layout, 0);
|
2019-10-06 08:51:43 -05:00
|
|
|
crate::num::trans_int_binop(fx, BinOp::Sub, zero, operand)
|
|
|
|
}
|
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
|
|
|
}
|
2019-12-17 09:58:34 -06:00
|
|
|
Rvalue::Cast(CastKind::Pointer(PointerCast::ReifyFnPointer), operand, to_ty) => {
|
2020-08-22 09:47:31 -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
|
|
|
}
|
2019-12-17 09:58:34 -06:00
|
|
|
Rvalue::Cast(CastKind::Pointer(PointerCast::UnsafeFnPointer), operand, to_ty)
|
|
|
|
| Rvalue::Cast(CastKind::Pointer(PointerCast::MutToConstPointer), operand, to_ty)
|
|
|
|
| Rvalue::Cast(CastKind::Pointer(PointerCast::ArrayToPointer), operand, to_ty) => {
|
|
|
|
let to_layout = fx.layout_of(fx.monomorphize(to_ty));
|
2018-06-20 08:29:50 -05:00
|
|
|
let operand = trans_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
|
|
|
}
|
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;
|
2019-09-14 10:53:36 -05:00
|
|
|
let to_ty = fx.monomorphize(to_ty);
|
2019-02-24 10:25:13 -06:00
|
|
|
|
2019-08-31 12:28:09 -05:00
|
|
|
fn is_fat_ptr<'tcx>(
|
2020-10-01 03:38:23 -05:00
|
|
|
fx: &FunctionCx<'_, 'tcx, impl Module>,
|
2019-08-31 12:28:09 -05:00
|
|
|
ty: Ty<'tcx>,
|
|
|
|
) -> bool {
|
|
|
|
ty.builtin_deref(true)
|
|
|
|
.map(
|
|
|
|
|ty::TypeAndMut {
|
|
|
|
ty: pointee_ty,
|
|
|
|
mutbl: _,
|
2020-08-28 05:10:48 -05:00
|
|
|
}| {
|
|
|
|
has_ptr_meta(fx.tcx, pointee_ty)
|
|
|
|
},
|
2019-08-31 12:28:09 -05:00
|
|
|
)
|
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
|
|
|
}
|
2019-02-24 10:25:13 -06:00
|
|
|
|
2020-08-28 05:10:48 -05:00
|
|
|
use rustc_target::abi::{Int, TagEncoding, Variants};
|
2020-05-01 10:06:59 -05:00
|
|
|
|
|
|
|
match &operand.layout().variants {
|
|
|
|
Variants::Single { index } => {
|
2020-08-28 05:10:48 -05:00
|
|
|
let discr = operand
|
|
|
|
.layout()
|
|
|
|
.ty
|
|
|
|
.discriminant_for_variant(fx.tcx, *index)
|
|
|
|
.unwrap();
|
2020-05-01 10:06:59 -05:00
|
|
|
let discr = if discr.ty.is_signed() {
|
2020-08-28 05:10:48 -05:00
|
|
|
rustc_middle::mir::interpret::sign_extend(
|
|
|
|
discr.val,
|
|
|
|
fx.layout_of(discr.ty).size,
|
|
|
|
)
|
2020-05-01 10:06:59 -05:00
|
|
|
} else {
|
|
|
|
discr.val
|
|
|
|
};
|
|
|
|
|
|
|
|
let discr = CValue::const_val(fx, fx.layout_of(to_ty), discr);
|
|
|
|
lval.write_cvalue(fx, discr);
|
|
|
|
}
|
|
|
|
Variants::Multiple {
|
|
|
|
tag,
|
|
|
|
tag_field,
|
|
|
|
tag_encoding: TagEncoding::Direct,
|
|
|
|
variants: _,
|
|
|
|
} => {
|
|
|
|
let cast_to = fx.clif_type(dest_layout.ty).unwrap();
|
|
|
|
|
|
|
|
// Read the tag/niche-encoded discriminant from memory.
|
2020-08-28 05:10:48 -05:00
|
|
|
let encoded_discr =
|
|
|
|
operand.value_field(fx, mir::Field::new(*tag_field));
|
2020-05-01 10:06:59 -05:00
|
|
|
let encoded_discr = encoded_discr.load_scalar(fx);
|
|
|
|
|
|
|
|
// Decode the discriminant (specifically if it's niche-encoded).
|
|
|
|
let signed = match tag.value {
|
|
|
|
Int(_, signed) => signed,
|
|
|
|
_ => false,
|
|
|
|
};
|
|
|
|
let val = clif_intcast(fx, encoded_discr, cast_to, signed);
|
|
|
|
let val = CValue::by_val(val, dest_layout);
|
|
|
|
lval.write_cvalue(fx, val);
|
|
|
|
}
|
2020-08-28 05:10:48 -05:00
|
|
|
Variants::Multiple { .. } => unreachable!(),
|
2020-05-01 10:06:59 -05:00
|
|
|
}
|
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(_)),
|
|
|
|
operand,
|
|
|
|
_to_ty,
|
|
|
|
) => {
|
2019-02-24 11:15:23 -06:00
|
|
|
let operand = trans_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
|
|
|
}
|
2019-12-17 09:58:34 -06:00
|
|
|
Rvalue::Cast(CastKind::Pointer(PointerCast::Unsize), operand, _to_ty) => {
|
2018-08-22 08:38:56 -05:00
|
|
|
let operand = trans_operand(fx, operand);
|
|
|
|
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-04-02 10:23:15 -05:00
|
|
|
let place = trans_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
|
|
|
}
|
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);
|
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();
|
2020-09-14 04:32:18 -05:00
|
|
|
if fx.clif_type(operand.layout().ty) == Some(types::I8) {
|
|
|
|
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);
|
2020-09-16 09:58:58 -05:00
|
|
|
fx.bcx
|
|
|
|
.call_memset(fx.cx.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-04-02 10:23:15 -05:00
|
|
|
let place = trans_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);
|
2018-11-24 05:47:53 -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:
|
2020-09-05 03:38:49 -05:00
|
|
|
let def_id = match fx
|
|
|
|
.tcx
|
|
|
|
.lang_items()
|
|
|
|
.require(rustc_hir::LangItem::ExchangeMalloc)
|
|
|
|
{
|
2018-09-04 12:04:25 -05:00
|
|
|
Ok(id) => id,
|
|
|
|
Err(s) => {
|
2020-08-22 09:47:31 -05:00
|
|
|
fx.tcx
|
2018-09-08 10:24:52 -05:00
|
|
|
.sess
|
|
|
|
.fatal(&format!("allocation of `{}` {}", box_layout.ty, s));
|
2018-09-04 12:04:25 -05:00
|
|
|
}
|
|
|
|
};
|
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
|
|
|
}
|
2018-08-08 05:44:41 -05:00
|
|
|
Rvalue::NullaryOp(NullOp::SizeOf, ty) => {
|
2018-11-07 06:32:02 -06:00
|
|
|
assert!(lval
|
|
|
|
.layout()
|
|
|
|
.ty
|
2020-08-22 09:47:31 -05:00
|
|
|
.is_sized(fx.tcx.at(stmt.source_info.span), ParamEnv::reveal_all()));
|
2019-12-17 09:58:34 -06:00
|
|
|
let ty_size = fx.layout_of(fx.monomorphize(ty)).size.bytes();
|
2020-08-28 05:10:48 -05:00
|
|
|
let val =
|
|
|
|
CValue::const_val(fx, fx.layout_of(fx.tcx.types.usize), ty_size.into());
|
2018-08-08 05:44:41 -05:00
|
|
|
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-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);
|
|
|
|
}
|
|
|
|
}
|
2019-10-06 10:31:46 -05:00
|
|
|
_ => unreachable!("shouldn't exist at trans {:?}", 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) => {
|
2020-05-18 04:35:23 -05:00
|
|
|
use rustc_span::symbol::Symbol;
|
2020-03-28 08:20:24 -05:00
|
|
|
let LlvmInlineAsm {
|
2019-08-31 12:28:09 -05:00
|
|
|
asm,
|
2020-08-15 11:55:32 -05:00
|
|
|
outputs,
|
|
|
|
inputs,
|
2019-08-31 12:28:09 -05:00
|
|
|
} = &**asm;
|
2020-03-28 08:20:24 -05:00
|
|
|
let rustc_hir::LlvmInlineAsmInner {
|
2020-08-28 05:10:48 -05:00
|
|
|
asm: asm_code, // Name
|
2020-08-15 11:55:32 -05:00
|
|
|
outputs: output_names, // Vec<LlvmInlineAsmOutput>
|
|
|
|
inputs: input_names, // Vec<Name>
|
2020-08-28 05:10:48 -05:00
|
|
|
clobbers, // Vec<Name>
|
|
|
|
volatile, // bool
|
|
|
|
alignstack, // bool
|
2020-08-15 11:55:32 -05:00
|
|
|
dialect: _,
|
2019-07-20 08:33:57 -05:00
|
|
|
asm_str_style: _,
|
|
|
|
} = asm;
|
2020-08-15 11:55:32 -05:00
|
|
|
match asm_code.as_str().trim() {
|
2020-07-03 09:39:36 -05:00
|
|
|
"" => {
|
|
|
|
// Black box
|
|
|
|
}
|
2020-08-15 11:55:32 -05:00
|
|
|
"mov %rbx, %rsi\n cpuid\n xchg %rbx, %rsi" => {
|
2020-08-28 05:10:48 -05:00
|
|
|
assert_eq!(
|
|
|
|
input_names,
|
|
|
|
&[Symbol::intern("{eax}"), Symbol::intern("{ecx}")]
|
|
|
|
);
|
2020-08-15 11:55:32 -05:00
|
|
|
assert_eq!(output_names.len(), 4);
|
2020-08-28 05:10:48 -05:00
|
|
|
for (i, c) in (&["={eax}", "={esi}", "={ecx}", "={edx}"])
|
|
|
|
.iter()
|
|
|
|
.enumerate()
|
|
|
|
{
|
2020-08-15 11:55:32 -05:00
|
|
|
assert_eq!(&output_names[i].constraint.as_str(), c);
|
|
|
|
assert!(!output_names[i].is_rw);
|
|
|
|
assert!(!output_names[i].is_indirect);
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!(clobbers, &[]);
|
|
|
|
|
|
|
|
assert!(!volatile);
|
|
|
|
assert!(!alignstack);
|
|
|
|
|
|
|
|
assert_eq!(inputs.len(), 2);
|
|
|
|
let leaf = trans_operand(fx, &inputs[0].1).load_scalar(fx); // %eax
|
|
|
|
let subleaf = trans_operand(fx, &inputs[1].1).load_scalar(fx); // %ecx
|
|
|
|
|
2020-08-28 05:10:48 -05:00
|
|
|
let (eax, ebx, ecx, edx) =
|
|
|
|
crate::intrinsics::codegen_cpuid_call(fx, leaf, subleaf);
|
2020-08-15 11:55:32 -05:00
|
|
|
|
|
|
|
assert_eq!(outputs.len(), 4);
|
2020-08-28 05:10:48 -05:00
|
|
|
trans_place(fx, outputs[0])
|
|
|
|
.write_cvalue(fx, CValue::by_val(eax, fx.layout_of(fx.tcx.types.u32)));
|
|
|
|
trans_place(fx, outputs[1])
|
|
|
|
.write_cvalue(fx, CValue::by_val(ebx, fx.layout_of(fx.tcx.types.u32)));
|
|
|
|
trans_place(fx, outputs[2])
|
|
|
|
.write_cvalue(fx, CValue::by_val(ecx, fx.layout_of(fx.tcx.types.u32)));
|
|
|
|
trans_place(fx, outputs[3])
|
|
|
|
.write_cvalue(fx, CValue::by_val(edx, fx.layout_of(fx.tcx.types.u32)));
|
2019-07-20 08:33:57 -05:00
|
|
|
}
|
|
|
|
"xgetbv" => {
|
2020-08-15 11:55:32 -05:00
|
|
|
assert_eq!(input_names, &[Symbol::intern("{ecx}")]);
|
2019-07-20 08:33:57 -05:00
|
|
|
|
2020-08-15 11:55:32 -05:00
|
|
|
assert_eq!(output_names.len(), 2);
|
2019-07-20 08:33:57 -05:00
|
|
|
for (i, c) in (&["={eax}", "={edx}"]).iter().enumerate() {
|
2020-08-15 11:55:32 -05:00
|
|
|
assert_eq!(&output_names[i].constraint.as_str(), c);
|
|
|
|
assert!(!output_names[i].is_rw);
|
|
|
|
assert!(!output_names[i].is_indirect);
|
2019-07-20 08:33:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!(clobbers, &[]);
|
|
|
|
|
|
|
|
assert!(!volatile);
|
|
|
|
assert!(!alignstack);
|
|
|
|
|
|
|
|
crate::trap::trap_unimplemented(fx, "_xgetbv arch intrinsic is not supported");
|
|
|
|
}
|
2020-06-16 04:36:39 -05:00
|
|
|
// ___chkstk, ___chkstk_ms and __alloca are only used on Windows
|
2020-08-28 05:10:48 -05:00
|
|
|
_ if fx
|
|
|
|
.tcx
|
|
|
|
.symbol_name(fx.instance)
|
|
|
|
.name
|
|
|
|
.starts_with("___chkstk") =>
|
|
|
|
{
|
2020-06-16 04:36:39 -05:00
|
|
|
crate::trap::trap_unimplemented(fx, "Stack probes are not supported");
|
|
|
|
}
|
2020-08-22 09:47:31 -05:00
|
|
|
_ if fx.tcx.symbol_name(fx.instance).name == "__alloca" => {
|
2020-06-16 04:36:39 -05:00
|
|
|
crate::trap::trap_unimplemented(fx, "Alloca is not supported");
|
|
|
|
}
|
|
|
|
// Used in sys::windows::abort_internal
|
|
|
|
"int $$0x29" => {
|
|
|
|
crate::trap::trap_unimplemented(fx, "Windows abort");
|
|
|
|
}
|
2020-08-28 05:10:48 -05:00
|
|
|
_ => fx
|
|
|
|
.tcx
|
|
|
|
.sess
|
|
|
|
.span_fatal(stmt.source_info.span, "Inline assembly is not supported"),
|
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"),
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-18 09:52:07 -05:00
|
|
|
fn codegen_array_len<'tcx>(
|
2020-10-01 03:38:23 -05:00
|
|
|
fx: &mut FunctionCx<'_, 'tcx, impl Module>,
|
2018-11-13 11:28:10 -06:00
|
|
|
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) => {
|
2020-08-28 05:10:48 -05:00
|
|
|
let len = fx
|
|
|
|
.monomorphize(&len)
|
2020-08-22 09:47:31 -05:00
|
|
|
.eval(fx.tcx, ParamEnv::reveal_all())
|
|
|
|
.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)
|
|
|
|
}
|
2019-02-21 08:06:09 -06:00
|
|
|
ty::Slice(_elem_ty) => place
|
2020-03-29 04:51:43 -05:00
|
|
|
.to_ptr_maybe_unsized()
|
2019-02-21 08:06:09 -06:00
|
|
|
.1
|
|
|
|
.expect("Length metadata for slice place"),
|
2018-11-13 11:28:10 -06:00
|
|
|
_ => bug!("Rvalue::Len({:?})", place),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-27 06:14:45 -05:00
|
|
|
pub(crate) fn trans_place<'tcx>(
|
2020-10-01 03:38:23 -05:00
|
|
|
fx: &mut FunctionCx<'_, 'tcx, impl Module>,
|
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);
|
|
|
|
}
|
|
|
|
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-08-22 09:47:31 -05:00
|
|
|
fx.layout_of(fx.tcx.mk_array(elem_ty, u64::from(to) - u64::from(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-03-27 06:14:45 -05:00
|
|
|
pub(crate) fn trans_operand<'tcx>(
|
2020-10-01 03:38:23 -05:00
|
|
|
fx: &mut FunctionCx<'_, 'tcx, impl Module>,
|
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-04-02 10:23:15 -05:00
|
|
|
let cplace = trans_place(fx, *place);
|
2018-06-20 08:15:28 -05:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2020-09-29 06:22:01 -05:00
|
|
|
|
|
|
|
pub(crate) fn codegen_panic<'tcx>(
|
2020-10-01 03:38:23 -05:00
|
|
|
fx: &mut FunctionCx<'_, 'tcx, impl Module>,
|
2020-09-29 06:22:01 -05:00
|
|
|
msg_str: &str,
|
|
|
|
span: Span,
|
|
|
|
) {
|
|
|
|
let location = fx.get_caller_location(span).load_scalar(fx);
|
|
|
|
|
|
|
|
let msg_ptr = fx.anonymous_str("assert", msg_str);
|
|
|
|
let msg_len = fx
|
|
|
|
.bcx
|
|
|
|
.ins()
|
|
|
|
.iconst(fx.pointer_type, i64::try_from(msg_str.len()).unwrap());
|
|
|
|
let args = [msg_ptr, msg_len, location];
|
|
|
|
|
|
|
|
codegen_panic_inner(fx, rustc_hir::LangItem::Panic, &args, span);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn codegen_panic_inner<'tcx>(
|
2020-10-01 03:38:23 -05:00
|
|
|
fx: &mut FunctionCx<'_, 'tcx, impl Module>,
|
2020-09-29 06:22:01 -05:00
|
|
|
lang_item: rustc_hir::LangItem,
|
|
|
|
args: &[Value],
|
|
|
|
span: Span,
|
|
|
|
) {
|
|
|
|
let def_id = fx
|
|
|
|
.tcx
|
|
|
|
.lang_items()
|
|
|
|
.require(lang_item)
|
|
|
|
.unwrap_or_else(|s| fx.tcx.sess.span_fatal(span, &s));
|
|
|
|
|
|
|
|
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,
|
|
|
|
vec![fx.pointer_type, fx.pointer_type, fx.pointer_type],
|
|
|
|
vec![],
|
|
|
|
args,
|
|
|
|
);
|
|
|
|
|
|
|
|
crate::trap::trap_unreachable(fx, "panic lang item returned");
|
|
|
|
}
|