2020-09-23 08:13:49 -05:00
|
|
|
//! Codegen of a single function
|
|
|
|
|
2021-09-04 15:14:09 -05:00
|
|
|
use rustc_ast::InlineAsmOptions;
|
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-09-01 16:09:34 -05:00
|
|
|
use rustc_middle::ty::layout::FnAbiOf;
|
2022-03-20 10:55:21 -05:00
|
|
|
use rustc_middle::ty::print::with_no_trimmed_paths;
|
2019-04-21 07:41:23 -05:00
|
|
|
|
2022-10-23 09:22:55 -05:00
|
|
|
use cranelift_codegen::ir::UserFuncName;
|
|
|
|
|
2021-04-30 07:49:58 -05:00
|
|
|
use crate::constant::ConstantCx;
|
2022-08-24 11:40:58 -05:00
|
|
|
use crate::debuginfo::FunctionDebugContext;
|
2018-07-30 09:57:40 -05:00
|
|
|
use crate::prelude::*;
|
2022-02-23 04:49:34 -06:00
|
|
|
use crate::pretty_clif::CommentWriter;
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2022-08-24 11:40:58 -05:00
|
|
|
pub(crate) struct CodegenedFunction {
|
|
|
|
symbol_name: String,
|
|
|
|
func_id: FuncId,
|
|
|
|
func: Function,
|
|
|
|
clif_comments: CommentWriter,
|
|
|
|
func_debug_cx: Option<FunctionDebugContext>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn codegen_fn<'tcx>(
|
|
|
|
tcx: TyCtxt<'tcx>,
|
|
|
|
cx: &mut crate::CodegenCx,
|
|
|
|
cached_func: Function,
|
|
|
|
module: &mut dyn Module,
|
|
|
|
instance: Instance<'tcx>,
|
|
|
|
) -> CodegenedFunction {
|
2020-11-27 13:48:53 -06:00
|
|
|
debug_assert!(!instance.substs.needs_infer());
|
|
|
|
|
2023-02-09 05:38:16 -06:00
|
|
|
let symbol_name = tcx.symbol_name(instance).name.to_string();
|
|
|
|
let _timer = tcx.prof.generic_activity_with_arg("codegen fn", &*symbol_name);
|
|
|
|
|
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();
|
2022-03-20 10:55:21 -05:00
|
|
|
with_no_trimmed_paths!({
|
|
|
|
rustc_middle::mir::pretty::write_mir_fn(tcx, mir, &mut |_, _| Ok(()), &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
|
2022-12-14 12:30:46 -06:00
|
|
|
let sig = get_function_sig(tcx, module.target_config().default_call_conv, instance);
|
2022-08-24 11:40:58 -05:00
|
|
|
let func_id = module.declare_function(&symbol_name, Linkage::Local, &sig).unwrap();
|
2020-08-22 11:53:34 -05:00
|
|
|
|
2020-08-22 12:05:22 -05:00
|
|
|
// Make the FunctionBuilder
|
|
|
|
let mut func_ctx = FunctionBuilderContext::new();
|
2022-08-24 11:40:58 -05:00
|
|
|
let mut func = cached_func;
|
|
|
|
func.clear();
|
2022-10-23 09:22:55 -05:00
|
|
|
func.name = UserFuncName::user(0, func_id.as_u32());
|
2020-08-22 11:53:34 -05:00
|
|
|
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> =
|
2022-07-04 19:00:00 -05:00
|
|
|
(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-12-20 11:56:35 -06:00
|
|
|
let target_config = module.target_config();
|
|
|
|
let pointer_type = target_config.pointer_type();
|
2018-12-21 14:42:29 -06:00
|
|
|
let clif_comments = crate::pretty_clif::CommentWriter::new(tcx, instance);
|
|
|
|
|
2022-08-24 11:40:58 -05:00
|
|
|
let func_debug_cx = if let Some(debug_context) = &mut cx.debug_context {
|
|
|
|
Some(debug_context.define_function(tcx, &symbol_name, mir.span))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
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,
|
2021-12-20 11:56:35 -06:00
|
|
|
target_config,
|
2018-11-03 07:14:28 -05:00
|
|
|
pointer_type,
|
2021-04-30 07:49:58 -05:00
|
|
|
constants_cx: ConstantCx::new(),
|
2022-08-24 11:40:58 -05:00
|
|
|
func_debug_cx,
|
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-09-01 16:29:15 -05:00
|
|
|
fn_abi: Some(RevealAllLayoutCx(tcx).fn_abi_of_instance(instance, ty::List::empty())),
|
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,
|
2022-08-24 11:40:58 -05:00
|
|
|
last_source_file: None,
|
2020-06-27 04:58:44 -05:00
|
|
|
next_ssa_var: 0,
|
2018-06-20 08:15:28 -05:00
|
|
|
};
|
|
|
|
|
2023-02-09 05:38:16 -06:00
|
|
|
tcx.prof.generic_activity("codegen clif ir").run(|| codegen_fn_body(&mut fx, start_block));
|
2023-01-24 11:56:42 -06:00
|
|
|
fx.bcx.seal_all_blocks();
|
|
|
|
fx.bcx.finalize();
|
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.
|
2022-08-24 11:40:58 -05:00
|
|
|
let symbol_name = fx.symbol_name;
|
2022-02-23 04:49:34 -06:00
|
|
|
let clif_comments = fx.clif_comments;
|
2022-08-24 11:40:58 -05:00
|
|
|
let func_debug_cx = fx.func_debug_cx;
|
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
|
|
|
|
2022-08-24 11:40:58 -05:00
|
|
|
if cx.should_write_ir {
|
|
|
|
crate::pretty_clif::write_clif_file(
|
|
|
|
tcx.output_filenames(()),
|
|
|
|
&symbol_name,
|
|
|
|
"unopt",
|
|
|
|
module.isa(),
|
|
|
|
&func,
|
|
|
|
&clif_comments,
|
|
|
|
);
|
|
|
|
}
|
2018-08-14 11:52:43 -05:00
|
|
|
|
2019-05-14 09:12:58 -05:00
|
|
|
// Verify function
|
2022-02-23 04:49:34 -06:00
|
|
|
verify_func(tcx, &clif_comments, &func);
|
|
|
|
|
2022-08-24 11:40:58 -05:00
|
|
|
CodegenedFunction { symbol_name, func_id, func, clif_comments, func_debug_cx }
|
2022-02-23 04:49:34 -06:00
|
|
|
}
|
|
|
|
|
2022-08-24 11:40:58 -05:00
|
|
|
pub(crate) fn compile_fn(
|
|
|
|
cx: &mut crate::CodegenCx,
|
|
|
|
cached_context: &mut Context,
|
2022-02-23 04:49:34 -06:00
|
|
|
module: &mut dyn Module,
|
2022-08-24 11:40:58 -05:00
|
|
|
codegened_func: CodegenedFunction,
|
2022-02-23 04:49:34 -06:00
|
|
|
) {
|
2023-02-09 05:38:16 -06:00
|
|
|
let _timer =
|
|
|
|
cx.profiler.generic_activity_with_arg("compile function", &*codegened_func.symbol_name);
|
|
|
|
|
2022-08-24 11:40:58 -05:00
|
|
|
let clif_comments = codegened_func.clif_comments;
|
2022-02-23 04:49:34 -06:00
|
|
|
|
|
|
|
// Store function in context
|
2022-08-24 11:40:58 -05:00
|
|
|
let context = cached_context;
|
2022-02-23 04:49:34 -06:00
|
|
|
context.clear();
|
2022-08-24 11:40:58 -05:00
|
|
|
context.func = codegened_func.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
|
|
|
|
2022-07-25 09:07:57 -05:00
|
|
|
#[cfg(any())] // This is never true
|
|
|
|
let _clif_guard = {
|
|
|
|
use std::fmt::Write;
|
|
|
|
|
|
|
|
let func_clone = context.func.clone();
|
|
|
|
let clif_comments_clone = clif_comments.clone();
|
|
|
|
let mut clif = String::new();
|
|
|
|
for flag in module.isa().flags().iter() {
|
|
|
|
writeln!(clif, "set {}", flag).unwrap();
|
|
|
|
}
|
|
|
|
write!(clif, "target {}", module.isa().triple().architecture.to_string()).unwrap();
|
|
|
|
for isa_flag in module.isa().isa_flags().iter() {
|
|
|
|
write!(clif, " {}", isa_flag).unwrap();
|
|
|
|
}
|
|
|
|
writeln!(clif, "\n").unwrap();
|
|
|
|
crate::PrintOnPanic(move || {
|
|
|
|
let mut clif = clif.clone();
|
|
|
|
::cranelift_codegen::write::decorate_function(
|
|
|
|
&mut &clif_comments_clone,
|
|
|
|
&mut clif,
|
|
|
|
&func_clone,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
clif
|
|
|
|
})
|
|
|
|
};
|
|
|
|
|
2019-12-28 05:41:03 -06:00
|
|
|
// Define function
|
2023-02-09 05:38:16 -06:00
|
|
|
cx.profiler.generic_activity("define function").run(|| {
|
2022-08-24 11:40:58 -05:00
|
|
|
context.want_disasm = cx.should_write_ir;
|
|
|
|
module.define_function(codegened_func.func_id, context).unwrap();
|
2023-02-09 05:38:16 -06:00
|
|
|
|
|
|
|
if cx.profiler.enabled() {
|
|
|
|
let mut recording_args = false;
|
|
|
|
cx.profiler
|
|
|
|
.generic_activity_with_arg_recorder(
|
|
|
|
"define function (clif pass timings)",
|
|
|
|
|recorder| {
|
|
|
|
let pass_times = cranelift_codegen::timing::take_current();
|
|
|
|
// Replace newlines with | as measureme doesn't allow control characters like
|
|
|
|
// newlines inside strings.
|
2023-03-15 09:41:48 -05:00
|
|
|
recorder.record_arg(format!("{}", pass_times).replace('\n', " | "));
|
2023-02-09 05:38:16 -06:00
|
|
|
recording_args = true;
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.run(|| {
|
|
|
|
if recording_args {
|
|
|
|
// Wait a tiny bit to ensure chrome's profiler doesn't hide the event
|
|
|
|
std::thread::sleep(std::time::Duration::from_nanos(2))
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2020-08-28 05:10:48 -05:00
|
|
|
});
|
2019-02-18 11:26:59 -06:00
|
|
|
|
2022-08-24 11:40:58 -05:00
|
|
|
if cx.should_write_ir {
|
|
|
|
// Write optimized function to file for debugging
|
|
|
|
crate::pretty_clif::write_clif_file(
|
|
|
|
&cx.output_filenames,
|
|
|
|
&codegened_func.symbol_name,
|
|
|
|
"opt",
|
|
|
|
module.isa(),
|
|
|
|
&context.func,
|
|
|
|
&clif_comments,
|
|
|
|
);
|
|
|
|
|
|
|
|
if let Some(disasm) = &context.compiled_code().unwrap().disasm {
|
|
|
|
crate::pretty_clif::write_ir_file(
|
|
|
|
&cx.output_filenames,
|
|
|
|
&format!("{}.vcode", codegened_func.symbol_name),
|
|
|
|
|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;
|
2023-02-09 05:38:16 -06:00
|
|
|
cx.profiler.generic_activity("generate debug info").run(|| {
|
2020-06-13 10:03:34 -05:00
|
|
|
if let Some(debug_context) = debug_context {
|
2022-08-24 11:40:58 -05:00
|
|
|
codegened_func.func_debug_cx.unwrap().finalize(
|
|
|
|
debug_context,
|
|
|
|
codegened_func.func_id,
|
2020-08-28 05:10:48 -05:00
|
|
|
context,
|
|
|
|
);
|
2020-06-13 10:03:34 -05:00
|
|
|
}
|
2022-08-24 11:40:58 -05:00
|
|
|
unwind_context.add_function(codegened_func.func_id, &context, isa);
|
2020-01-10 07:15:14 -06:00
|
|
|
});
|
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,
|
|
|
|
) {
|
2023-02-09 05:38:16 -06:00
|
|
|
tcx.prof.generic_activity("verify clif ir").run(|| {
|
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,
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-08-24 11:40:58 -05:00
|
|
|
fn codegen_fn_body(fx: &mut FunctionCx<'_, '_, '_>, start_block: Block) {
|
|
|
|
if !crate::constant::check_constants(fx) {
|
|
|
|
fx.bcx.append_block_params_for_function_params(fx.block_map[START_BLOCK]);
|
|
|
|
fx.bcx.switch_to_block(fx.block_map[START_BLOCK]);
|
|
|
|
// compilation should have been aborted
|
|
|
|
fx.bcx.ins().trap(TrapCode::UnreachableCodeReached);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let arg_uninhabited = fx
|
|
|
|
.mir
|
|
|
|
.args_iter()
|
|
|
|
.any(|arg| fx.layout_of(fx.monomorphize(fx.mir.local_decls[arg].ty)).abi.is_uninhabited());
|
|
|
|
if arg_uninhabited {
|
|
|
|
fx.bcx.append_block_params_for_function_params(fx.block_map[START_BLOCK]);
|
|
|
|
fx.bcx.switch_to_block(fx.block_map[START_BLOCK]);
|
|
|
|
fx.bcx.ins().trap(TrapCode::UnreachableCodeReached);
|
|
|
|
return;
|
|
|
|
}
|
2023-02-09 05:38:16 -06:00
|
|
|
fx.tcx
|
|
|
|
.prof
|
|
|
|
.generic_activity("codegen prelude")
|
|
|
|
.run(|| crate::abi::codegen_fn_prelude(fx, start_block));
|
2022-08-24 11:40:58 -05:00
|
|
|
|
2022-07-04 19:00:00 -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();
|
2022-03-20 10:55:21 -05:00
|
|
|
with_no_trimmed_paths!({
|
|
|
|
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
|
|
|
|
2021-09-04 12:25:09 -05:00
|
|
|
let source_info = bb_data.terminator().source_info;
|
|
|
|
fx.set_debug_loc(source_info);
|
2019-01-17 11:07:27 -06:00
|
|
|
|
2023-01-24 11:56:42 -06:00
|
|
|
let _print_guard =
|
|
|
|
crate::PrintOnPanic(|| format!("terminator {:?}", bb_data.terminator().kind));
|
|
|
|
|
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
|
|
|
}
|
2022-10-08 17:47:59 -05:00
|
|
|
TerminatorKind::Assert { cond, expected, msg, target, unwind: _ } => {
|
2023-03-15 19:00:00 -05:00
|
|
|
if !fx.tcx.sess.overflow_checks() && msg.is_optional_overflow_check() {
|
|
|
|
let target = fx.get_block(*target);
|
|
|
|
fx.bcx.ins().jump(target, &[]);
|
|
|
|
continue;
|
2019-08-20 06:37:49 -05:00
|
|
|
}
|
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();
|
2022-03-20 10:55:21 -05:00
|
|
|
fx.bcx.set_cold_block(failure);
|
2020-01-11 10:57:18 -06:00
|
|
|
|
2018-07-20 06:51:34 -05:00
|
|
|
if *expected {
|
2023-03-15 09:41:48 -05:00
|
|
|
fx.bcx.ins().brif(cond, target, &[], failure, &[]);
|
2018-08-09 08:36:02 -05:00
|
|
|
} else {
|
2023-03-15 09:41:48 -05:00
|
|
|
fx.bcx.ins().brif(cond, failure, &[], target, &[]);
|
2018-06-30 09:27:11 -05:00
|
|
|
};
|
2020-01-10 05:14:28 -06:00
|
|
|
|
|
|
|
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);
|
2022-05-15 05:32:19 -05:00
|
|
|
let location = fx.get_caller_location(source_info).load_scalar(fx);
|
2020-09-29 06:22:01 -05:00
|
|
|
|
|
|
|
codegen_panic_inner(
|
|
|
|
fx,
|
|
|
|
rustc_hir::LangItem::PanicBoundsCheck,
|
|
|
|
&[index, len, location],
|
2021-09-04 12:25:09 -05:00
|
|
|
source_info.span,
|
2020-09-29 06:22:01 -05:00
|
|
|
);
|
2020-04-25 12:07:25 -05:00
|
|
|
}
|
2022-11-10 10:37:28 -06:00
|
|
|
AssertKind::MisalignedPointerDereference { ref required, ref found } => {
|
|
|
|
let required = codegen_operand(fx, required).load_scalar(fx);
|
|
|
|
let found = codegen_operand(fx, found).load_scalar(fx);
|
|
|
|
let location = fx.get_caller_location(source_info).load_scalar(fx);
|
|
|
|
|
|
|
|
codegen_panic_inner(
|
|
|
|
fx,
|
|
|
|
rustc_hir::LangItem::PanicBoundsCheck,
|
|
|
|
&[required, found, location],
|
|
|
|
source_info.span,
|
|
|
|
);
|
|
|
|
}
|
2020-04-25 12:07:25 -05:00
|
|
|
_ => {
|
|
|
|
let msg_str = msg.description();
|
2022-05-15 05:32:19 -05:00
|
|
|
codegen_panic(fx, msg_str, source_info);
|
2020-04-25 12:07:25 -05:00
|
|
|
}
|
2020-09-29 06:22:01 -05:00
|
|
|
}
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
|
2022-12-03 18:03:27 -06:00
|
|
|
TerminatorKind::SwitchInt { discr, targets } => {
|
|
|
|
let discr = codegen_operand(fx, discr);
|
|
|
|
let switch_ty = discr.layout().ty;
|
|
|
|
let discr = 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, is_inverted) =
|
|
|
|
crate::optimize::peephole::maybe_unwrap_bool_not(&mut fx.bcx, discr);
|
|
|
|
let test_zero = if is_inverted { !test_zero } else { test_zero };
|
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 {
|
2023-03-15 09:41:48 -05:00
|
|
|
fx.bcx.ins().brif(discr, else_block, &[], then_block, &[]);
|
2020-12-27 03:30:38 -06:00
|
|
|
} else {
|
2023-03-15 09:41:48 -05:00
|
|
|
fx.bcx.ins().brif(discr, then_block, &[], else_block, &[]);
|
2020-12-27 03:30:38 -06:00
|
|
|
}
|
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,
|
2022-04-16 08:27:54 -05:00
|
|
|
target,
|
2020-06-12 11:41:50 -05:00
|
|
|
fn_span,
|
2022-10-08 17:47:59 -05:00
|
|
|
unwind: _,
|
2018-10-05 12:23:26 -05:00
|
|
|
from_hir_call: _,
|
2018-07-31 05:25:16 -05:00
|
|
|
} => {
|
2023-02-09 05:38:16 -06:00
|
|
|
fx.tcx.prof.generic_activity("codegen call").run(|| {
|
2022-05-15 05:32:19 -05:00
|
|
|
crate::abi::codegen_terminator_call(
|
|
|
|
fx,
|
|
|
|
mir::SourceInfo { span: *fn_span, ..source_info },
|
|
|
|
func,
|
|
|
|
args,
|
|
|
|
*destination,
|
2022-04-16 08:27:54 -05:00
|
|
|
*target,
|
2022-05-15 05:32:19 -05:00
|
|
|
)
|
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: _,
|
2022-10-08 17:47:59 -05:00
|
|
|
unwind: _,
|
2020-05-18 04:35:23 -05:00
|
|
|
} => {
|
2021-09-04 15:14:09 -05:00
|
|
|
if options.contains(InlineAsmOptions::MAY_UNWIND) {
|
2021-09-04 12:25:09 -05:00
|
|
|
fx.tcx.sess.span_fatal(
|
|
|
|
source_info.span,
|
|
|
|
"cranelift doesn't support unwinding from inline assembly.",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-07-10 07:45:45 -05:00
|
|
|
crate::inline_asm::codegen_inline_asm(
|
|
|
|
fx,
|
2021-09-04 12:25:09 -05:00
|
|
|
source_info.span,
|
2020-07-10 07:45:45 -05:00
|
|
|
template,
|
|
|
|
operands,
|
|
|
|
*options,
|
2022-08-24 11:40:58 -05:00
|
|
|
*destination,
|
2020-07-10 07:45:45 -05:00
|
|
|
);
|
2020-05-18 04:35:23 -05:00
|
|
|
}
|
2022-10-30 20:01:24 -05:00
|
|
|
TerminatorKind::Terminate => {
|
2023-01-24 11:56:42 -06:00
|
|
|
codegen_panic_cannot_unwind(fx, source_info);
|
|
|
|
}
|
|
|
|
TerminatorKind::Resume => {
|
2022-03-20 10:55:21 -05:00
|
|
|
// FIXME implement unwinding
|
|
|
|
fx.bcx.ins().trap(TrapCode::UnreachableCodeReached);
|
2019-03-23 07:06:35 -05:00
|
|
|
}
|
|
|
|
TerminatorKind::Unreachable => {
|
2022-03-20 10:55:21 -05:00
|
|
|
fx.bcx.ins().trap(TrapCode::UnreachableCodeReached);
|
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::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);
|
2022-05-15 05:32:19 -05:00
|
|
|
crate::abi::codegen_drop(fx, source_info, 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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
2022-05-15 05:32:19 -05:00
|
|
|
#[cfg(any())] // This is never true
|
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
|
|
|
}
|
2022-06-13 08:37:41 -05:00
|
|
|
Rvalue::CopyForDeref(place) => {
|
|
|
|
let cplace = codegen_place(fx, place);
|
|
|
|
let val = cplace.to_cvalue(fx);
|
|
|
|
lval.write_cvalue(fx, val)
|
|
|
|
}
|
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
|
|
|
|
2023-02-15 12:46:56 -06:00
|
|
|
let res = crate::num::codegen_checked_int_binop(fx, bin_op, lhs, rhs);
|
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);
|
2022-12-14 12:30:46 -06:00
|
|
|
CValue::by_val(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-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
|
|
|
}
|
2022-06-01 12:24:44 -05:00
|
|
|
Rvalue::Cast(
|
2022-10-04 13:39:43 -05:00
|
|
|
CastKind::IntToInt
|
|
|
|
| CastKind::FloatToFloat
|
|
|
|
| CastKind::FloatToInt
|
|
|
|
| CastKind::IntToFloat
|
|
|
|
| CastKind::FnPtrToPtr
|
|
|
|
| CastKind::PtrToPtr
|
2022-06-02 08:05:37 -05:00
|
|
|
| CastKind::PointerExposeAddress
|
|
|
|
| CastKind::PointerFromExposedAddress,
|
2022-06-01 12:24:44 -05:00
|
|
|
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
|
|
|
}
|
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
|
|
|
)
|
2022-02-04 16:18:28 -06:00
|
|
|
.expect("failed to normalize and resolve closure during codegen")
|
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
|
|
|
}
|
2022-10-23 09:22:55 -05:00
|
|
|
Rvalue::Cast(CastKind::DynStar, ref operand, _) => {
|
|
|
|
let operand = codegen_operand(fx, operand);
|
|
|
|
operand.coerce_dyn_star(fx, lval);
|
2022-08-30 14:39:28 -05:00
|
|
|
}
|
2023-02-24 20:32:52 -06:00
|
|
|
Rvalue::Cast(CastKind::Transmute, ref operand, _to_ty) => {
|
|
|
|
let operand = codegen_operand(fx, operand);
|
|
|
|
lval.write_cvalue_transmute(fx, operand);
|
|
|
|
}
|
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);
|
2022-08-24 11:40:58 -05:00
|
|
|
crate::discriminant::codegen_get_discriminant(fx, lval, value, dest_layout);
|
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())
|
2022-06-09 20:18:06 -05:00
|
|
|
.kind()
|
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-12-20 11:56:35 -06:00
|
|
|
fx.bcx.call_memset(fx.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);
|
2023-03-15 09:41:48 -05:00
|
|
|
fx.bcx.ins().brif(done, done_block, &[], loop_block2, &[]);
|
2020-09-14 04:44:53 -05:00
|
|
|
|
|
|
|
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
|
|
|
}
|
2021-09-06 12:33:23 -05:00
|
|
|
Rvalue::ShallowInitBox(ref operand, content_ty) => {
|
|
|
|
let content_ty = fx.monomorphize(content_ty);
|
|
|
|
let box_layout = fx.layout_of(fx.tcx.mk_box(content_ty));
|
|
|
|
let operand = codegen_operand(fx, operand);
|
|
|
|
let operand = operand.load_scalar(fx);
|
|
|
|
lval.write_cvalue(fx, CValue::by_val(operand, box_layout));
|
|
|
|
}
|
2021-09-07 10:06:07 -05:00
|
|
|
Rvalue::NullaryOp(null_op, ty) => {
|
2022-10-27 09:32:17 -05:00
|
|
|
assert!(lval.layout().ty.is_sized(fx.tcx, 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(),
|
|
|
|
};
|
2021-12-20 11:56:35 -06:00
|
|
|
let val = 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
|
|
|
}
|
2023-02-09 05:38:16 -06:00
|
|
|
Rvalue::Aggregate(ref kind, ref operands) => {
|
|
|
|
let (variant_index, variant_dest, active_field_index) = match **kind {
|
|
|
|
mir::AggregateKind::Adt(_, variant_index, _, _, active_field_index) => {
|
|
|
|
let variant_dest = lval.downcast_variant(fx, variant_index);
|
|
|
|
(variant_index, variant_dest, active_field_index)
|
2018-08-09 04:41:34 -05:00
|
|
|
}
|
2023-03-25 20:43:03 -05:00
|
|
|
_ => (FIRST_VARIANT, lval, None),
|
2023-02-09 05:38:16 -06:00
|
|
|
};
|
|
|
|
if active_field_index.is_some() {
|
|
|
|
assert_eq!(operands.len(), 1);
|
|
|
|
}
|
2023-04-01 22:11:38 -05:00
|
|
|
for (i, operand) in operands.iter_enumerated() {
|
2023-02-09 05:38:16 -06:00
|
|
|
let operand = codegen_operand(fx, operand);
|
|
|
|
let field_index = active_field_index.unwrap_or(i);
|
|
|
|
let to = if let mir::AggregateKind::Array(_) = **kind {
|
2023-04-01 22:11:38 -05:00
|
|
|
let array_index = i64::from(field_index.as_u32());
|
|
|
|
let index = fx.bcx.ins().iconst(fx.pointer_type, array_index);
|
2023-02-09 05:38:16 -06:00
|
|
|
variant_dest.place_index(fx, index)
|
|
|
|
} else {
|
2023-04-01 22:11:38 -05:00
|
|
|
variant_dest.place_field(fx, field_index)
|
2023-02-09 05:38:16 -06:00
|
|
|
};
|
|
|
|
to.write_cvalue(fx, operand);
|
2018-08-09 04:41:34 -05:00
|
|
|
}
|
2023-02-09 05:38:16 -06:00
|
|
|
crate::discriminant::codegen_set_discriminant(fx, lval, variant_index);
|
|
|
|
}
|
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(_)
|
2022-04-05 16:14:59 -05:00
|
|
|
| StatementKind::Deinit(_)
|
2022-12-29 17:44:16 -06:00
|
|
|
| StatementKind::ConstEvalCounter
|
2018-07-31 05:25:16 -05:00
|
|
|
| StatementKind::Nop
|
2018-09-23 03:16:26 -05:00
|
|
|
| StatementKind::FakeRead(..)
|
2018-11-03 06:49:55 -05:00
|
|
|
| StatementKind::Retag { .. }
|
2022-09-06 11:41:01 -05:00
|
|
|
| StatementKind::PlaceMention(..)
|
2018-12-21 06:45:06 -06:00
|
|
|
| StatementKind::AscribeUserType(..) => {}
|
2018-08-09 08:08:54 -05:00
|
|
|
|
2020-08-23 04:36:28 -05:00
|
|
|
StatementKind::Coverage { .. } => fx.tcx.sess.fatal("-Zcoverage is unimplemented"),
|
2022-07-12 05:05:00 -05:00
|
|
|
StatementKind::Intrinsic(ref intrinsic) => match &**intrinsic {
|
|
|
|
// We ignore `assume` intrinsics, they are only useful for optimizations
|
|
|
|
NonDivergingIntrinsic::Assume(_) => {}
|
|
|
|
NonDivergingIntrinsic::CopyNonOverlapping(mir::CopyNonOverlapping {
|
|
|
|
src,
|
|
|
|
dst,
|
|
|
|
count,
|
|
|
|
}) => {
|
|
|
|
let dst = codegen_operand(fx, dst);
|
|
|
|
let pointee = dst
|
|
|
|
.layout()
|
|
|
|
.pointee_info_at(fx, rustc_target::abi::Size::ZERO)
|
|
|
|
.expect("Expected pointer");
|
|
|
|
let dst = dst.load_scalar(fx);
|
|
|
|
let src = codegen_operand(fx, src).load_scalar(fx);
|
|
|
|
let count = codegen_operand(fx, count).load_scalar(fx);
|
|
|
|
let elem_size: u64 = pointee.size.bytes();
|
|
|
|
let bytes = if elem_size != 1 {
|
|
|
|
fx.bcx.ins().imul_imm(count, elem_size as i64)
|
|
|
|
} else {
|
|
|
|
count
|
|
|
|
};
|
|
|
|
fx.bcx.call_memcpy(fx.target_config, dst, src, bytes);
|
|
|
|
}
|
|
|
|
},
|
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) => {
|
2023-02-14 02:51:19 -06:00
|
|
|
let len = fx.monomorphize(len).eval_target_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 => {
|
2022-07-25 09:07:57 -05:00
|
|
|
cplace = cplace.place_deref(fx);
|
2019-09-14 04:21:18 -05:00
|
|
|
}
|
2022-07-27 06:58:34 -05:00
|
|
|
PlaceElem::OpaqueCast(ty) => cplace = cplace.place_opaque_cast(fx, ty),
|
2019-09-14 04:21:18 -05:00
|
|
|
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`");
|
Overhaul `TyS` and `Ty`.
Specifically, change `Ty` from this:
```
pub type Ty<'tcx> = &'tcx TyS<'tcx>;
```
to this
```
pub struct Ty<'tcx>(Interned<'tcx, TyS<'tcx>>);
```
There are two benefits to this.
- It's now a first class type, so we can define methods on it. This
means we can move a lot of methods away from `TyS`, leaving `TyS` as a
barely-used type, which is appropriate given that it's not meant to
be used directly.
- The uniqueness requirement is now explicit, via the `Interned` type.
E.g. the pointer-based `Eq` and `Hash` comes from `Interned`, rather
than via `TyS`, which wasn't obvious at all.
Much of this commit is boring churn. The interesting changes are in
these files:
- compiler/rustc_middle/src/arena.rs
- compiler/rustc_middle/src/mir/visit.rs
- compiler/rustc_middle/src/ty/context.rs
- compiler/rustc_middle/src/ty/mod.rs
Specifically:
- Most mentions of `TyS` are removed. It's very much a dumb struct now;
`Ty` has all the smarts.
- `TyS` now has `crate` visibility instead of `pub`.
- `TyS::make_for_test` is removed in favour of the static `BOOL_TY`,
which just works better with the new structure.
- The `Eq`/`Ord`/`Hash` impls are removed from `TyS`. `Interned`s impls
of `Eq`/`Hash` now suffice. `Ord` is now partly on `Interned`
(pointer-based, for the `Equal` case) and partly on `TyS`
(contents-based, for the other cases).
- There are many tedious sigil adjustments, i.e. adding or removing `*`
or `&`. They seem to be unavoidable.
2022-01-24 21:13:38 -06: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)),
|
Overhaul `TyS` and `Ty`.
Specifically, change `Ty` from this:
```
pub type Ty<'tcx> = &'tcx TyS<'tcx>;
```
to this
```
pub struct Ty<'tcx>(Interned<'tcx, TyS<'tcx>>);
```
There are two benefits to this.
- It's now a first class type, so we can define methods on it. This
means we can move a lot of methods away from `TyS`, leaving `TyS` as a
barely-used type, which is appropriate given that it's not meant to
be used directly.
- The uniqueness requirement is now explicit, via the `Interned` type.
E.g. the pointer-based `Eq` and `Hash` comes from `Interned`, rather
than via `TyS`, which wasn't obvious at all.
Much of this commit is boring churn. The interesting changes are in
these files:
- compiler/rustc_middle/src/arena.rs
- compiler/rustc_middle/src/mir/visit.rs
- compiler/rustc_middle/src/ty/context.rs
- compiler/rustc_middle/src/ty/mod.rs
Specifically:
- Most mentions of `TyS` are removed. It's very much a dumb struct now;
`Ty` has all the smarts.
- `TyS` now has `crate` visibility instead of `pub`.
- `TyS::make_for_test` is removed in favour of the static `BOOL_TY`,
which just works better with the new structure.
- The `Eq`/`Ord`/`Hash` impls are removed from `TyS`. `Interned`s impls
of `Eq`/`Hash` now suffice. `Ord` is now partly on `Interned`
(pointer-based, for the `Equal` case) and partly on `TyS`
(contents-based, for the other cases).
- There are many tedious sigil adjustments, i.e. adding or removing `*`
or `&`. They seem to be unavoidable.
2022-01-24 21:13:38 -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`");
|
Overhaul `TyS` and `Ty`.
Specifically, change `Ty` from this:
```
pub type Ty<'tcx> = &'tcx TyS<'tcx>;
```
to this
```
pub struct Ty<'tcx>(Interned<'tcx, TyS<'tcx>>);
```
There are two benefits to this.
- It's now a first class type, so we can define methods on it. This
means we can move a lot of methods away from `TyS`, leaving `TyS` as a
barely-used type, which is appropriate given that it's not meant to
be used directly.
- The uniqueness requirement is now explicit, via the `Interned` type.
E.g. the pointer-based `Eq` and `Hash` comes from `Interned`, rather
than via `TyS`, which wasn't obvious at all.
Much of this commit is boring churn. The interesting changes are in
these files:
- compiler/rustc_middle/src/arena.rs
- compiler/rustc_middle/src/mir/visit.rs
- compiler/rustc_middle/src/ty/context.rs
- compiler/rustc_middle/src/ty/mod.rs
Specifically:
- Most mentions of `TyS` are removed. It's very much a dumb struct now;
`Ty` has all the smarts.
- `TyS` now has `crate` visibility instead of `pub`.
- `TyS::make_for_test` is removed in favour of the static `BOOL_TY`,
which just works better with the new structure.
- The `Eq`/`Ord`/`Hash` impls are removed from `TyS`. `Interned`s impls
of `Eq`/`Hash` now suffice. `Ord` is now partly on `Interned`
(pointer-based, for the `Equal` case) and partly on `TyS`
(contents-based, for the other cases).
- There are many tedious sigil adjustments, i.e. adding or removing `*`
or `&`. They seem to be unavoidable.
2022-01-24 21:13:38 -06: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
|
|
|
}
|
2022-10-23 09:22:55 -05:00
|
|
|
Operand::Constant(const_) => crate::constant::codegen_constant_operand(fx, const_),
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|
2020-09-29 06:22:01 -05:00
|
|
|
|
2022-05-15 05:32:19 -05:00
|
|
|
pub(crate) fn codegen_panic<'tcx>(
|
|
|
|
fx: &mut FunctionCx<'_, '_, 'tcx>,
|
|
|
|
msg_str: &str,
|
|
|
|
source_info: mir::SourceInfo,
|
|
|
|
) {
|
|
|
|
let location = fx.get_caller_location(source_info).load_scalar(fx);
|
2020-09-29 06:22:01 -05:00
|
|
|
|
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];
|
|
|
|
|
2022-05-15 05:32:19 -05:00
|
|
|
codegen_panic_inner(fx, rustc_hir::LangItem::Panic, &args, source_info.span);
|
2020-09-29 06:22:01 -05:00
|
|
|
}
|
|
|
|
|
2023-01-24 11:56:42 -06:00
|
|
|
pub(crate) fn codegen_panic_nounwind<'tcx>(
|
|
|
|
fx: &mut FunctionCx<'_, '_, 'tcx>,
|
|
|
|
msg_str: &str,
|
|
|
|
source_info: mir::SourceInfo,
|
|
|
|
) {
|
|
|
|
let msg_ptr = fx.anonymous_str(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];
|
|
|
|
|
|
|
|
codegen_panic_inner(fx, rustc_hir::LangItem::PanicNounwind, &args, source_info.span);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn codegen_panic_cannot_unwind<'tcx>(
|
|
|
|
fx: &mut FunctionCx<'_, '_, 'tcx>,
|
|
|
|
source_info: mir::SourceInfo,
|
|
|
|
) {
|
|
|
|
let args = [];
|
|
|
|
|
|
|
|
codegen_panic_inner(fx, rustc_hir::LangItem::PanicCannotUnwind, &args, source_info.span);
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
|
|
|
) {
|
2022-08-24 17:52:46 -05:00
|
|
|
let def_id = fx
|
|
|
|
.tcx
|
|
|
|
.lang_items()
|
|
|
|
.require(lang_item)
|
|
|
|
.unwrap_or_else(|e| fx.tcx.sess.span_fatal(span, e.to_string()));
|
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(
|
2023-03-15 09:41:48 -05:00
|
|
|
symbol_name,
|
2023-01-24 11:56:42 -06:00
|
|
|
args.iter().map(|&arg| AbiParam::new(fx.bcx.func.dfg.value_type(arg))).collect(),
|
2020-09-29 06:22:01 -05:00
|
|
|
vec![],
|
|
|
|
args,
|
|
|
|
);
|
|
|
|
|
2022-03-20 10:55:21 -05:00
|
|
|
fx.bcx.ins().trap(TrapCode::UnreachableCodeReached);
|
2020-09-29 06:22:01 -05:00
|
|
|
}
|