2019-04-21 07:41:23 -05:00
|
|
|
use rustc::ty::adjustment::PointerCast;
|
2020-01-04 06:23:42 -06:00
|
|
|
use rustc_index::vec::IndexVec;
|
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
|
|
|
|
2019-08-18 09:52:07 -05:00
|
|
|
pub fn trans_fn<'clif, 'tcx, B: Backend + 'static>(
|
2019-06-13 13:44:40 -05:00
|
|
|
cx: &mut crate::CodegenCx<'clif, 'tcx, B>,
|
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
|
|
|
) {
|
2018-12-18 11:28:02 -06:00
|
|
|
let tcx = cx.tcx;
|
|
|
|
|
2019-12-05 14:00:57 -06: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
|
2019-12-17 08:03:32 -06:00
|
|
|
let (name, sig) = get_function_name_and_sig(tcx, cx.module.isa().triple(), instance, false);
|
2019-02-21 08:06:09 -06:00
|
|
|
let func_id = cx.module.declare_function(&name, linkage, &sig).unwrap();
|
|
|
|
let mut debug_context = cx
|
|
|
|
.debug_context
|
|
|
|
.as_mut()
|
2019-11-12 14:36:31 -06:00
|
|
|
.map(|debug_context| FunctionDebugContext::new(debug_context, instance, func_id, &name));
|
2018-08-14 11:52:43 -05:00
|
|
|
|
2019-09-28 10:59:27 -05:00
|
|
|
// Make FunctionBuilder
|
2020-01-04 10:58:38 -06:00
|
|
|
let context = &mut cx.cached_context;
|
|
|
|
context.clear();
|
|
|
|
context.func.name = ExternalName::user(0, func_id.as_u32());
|
|
|
|
context.func.signature = sig;
|
|
|
|
context.func.collect_debug_info();
|
2019-09-28 10:59:27 -05:00
|
|
|
let mut func_ctx = FunctionBuilderContext::new();
|
2020-01-04 10:58:38 -06:00
|
|
|
let mut bcx = FunctionBuilder::new(&mut context.func, &mut func_ctx);
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2019-05-14 09:12:58 -05:00
|
|
|
// Predefine ebb's
|
2018-06-17 11:05:11 -05:00
|
|
|
let start_ebb = bcx.create_ebb();
|
2020-01-04 06:23:42 -06:00
|
|
|
let ebb_map: IndexVec<BasicBlock, Ebb> = (0..mir.basic_blocks().len()).map(|_| bcx.create_ebb()).collect();
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2019-05-14 09:12:58 -05:00
|
|
|
// Make FunctionCx
|
2018-12-18 11:28:02 -06: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 {
|
2018-08-14 11:52:43 -05:00
|
|
|
tcx,
|
2018-12-18 11:28:02 -06:00
|
|
|
module: cx.module,
|
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,
|
2018-06-20 08:15:28 -05:00
|
|
|
ebb_map,
|
|
|
|
local_map: HashMap::new(),
|
2018-12-01 04:49:44 -06:00
|
|
|
|
2018-12-21 14:42:29 -06:00
|
|
|
clif_comments,
|
2019-08-18 09:52:07 -05:00
|
|
|
constants_cx: &mut cx.constants_cx,
|
2020-01-04 10:58:38 -06:00
|
|
|
vtables: &mut cx.vtables,
|
2019-01-19 05:18:39 -06:00
|
|
|
source_info_set: indexmap::IndexSet::new(),
|
2018-06-20 08:15:28 -05:00
|
|
|
};
|
|
|
|
|
2019-12-28 04:10:21 -06:00
|
|
|
if fx.mir.args_iter().any(|arg| fx.layout_of(fx.monomorphize(&fx.mir.local_decls[arg].ty)).abi.is_uninhabited()) {
|
|
|
|
let entry_block = fx.bcx.create_ebb();
|
|
|
|
fx.bcx.append_ebb_params_for_function_params(entry_block);
|
|
|
|
fx.bcx.switch_to_block(entry_block);
|
|
|
|
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", || {
|
|
|
|
tcx.sess.time("codegen prelude", || crate::abi::codegen_fn_prelude(&mut fx, start_ebb));
|
|
|
|
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;
|
2019-05-14 09:12:58 -05:00
|
|
|
|
2018-12-28 10:07:40 -06:00
|
|
|
#[cfg(debug_assertions)]
|
2020-01-04 10:58:38 -06:00
|
|
|
crate::pretty_clif::write_clif_file(cx.tcx, "unopt", instance, &context.func, &clif_comments, None);
|
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", || {
|
|
|
|
crate::optimize::optimize_function(tcx, instance, context, &mut clif_comments);
|
|
|
|
});
|
2019-12-28 05:41:03 -06:00
|
|
|
|
|
|
|
// Define function
|
2020-01-10 07:15:14 -06:00
|
|
|
let module = &mut cx.module;
|
|
|
|
tcx.sess.time("define function", || module.define_function(func_id, context).unwrap());
|
2019-02-18 11:26:59 -06:00
|
|
|
|
2019-05-14 09:12:58 -05:00
|
|
|
// Write optimized function to file for debugging
|
|
|
|
#[cfg(debug_assertions)]
|
2019-11-28 13:34:55 -06:00
|
|
|
{
|
|
|
|
let value_ranges = context
|
|
|
|
.build_value_labels_ranges(cx.module.isa())
|
|
|
|
.expect("value location ranges");
|
|
|
|
|
|
|
|
crate::pretty_clif::write_clif_file(
|
|
|
|
cx.tcx,
|
|
|
|
"opt",
|
|
|
|
instance,
|
|
|
|
&context.func,
|
|
|
|
&clif_comments,
|
|
|
|
Some(&value_ranges),
|
|
|
|
);
|
|
|
|
}
|
2019-05-14 09:12:58 -05:00
|
|
|
|
|
|
|
// Define debuginfo for function
|
2019-02-18 11:26:59 -06:00
|
|
|
let isa = cx.module.isa();
|
2020-01-10 07:15:14 -06:00
|
|
|
tcx.sess.time("generate debug info", || {
|
|
|
|
debug_context
|
|
|
|
.as_mut()
|
|
|
|
.map(|x| x.define(context, isa, &source_info_set, local_map));
|
|
|
|
});
|
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
|
|
|
|
2019-12-26 06:37:10 -06:00
|
|
|
pub 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", || {
|
|
|
|
let flags = settings::Flags::new(settings::builder());
|
|
|
|
match ::cranelift_codegen::verify_function(&func, &flags) {
|
|
|
|
Ok(_) => {}
|
|
|
|
Err(err) => {
|
|
|
|
tcx.sess.err(&format!("{:?}", err));
|
|
|
|
let pretty_error = ::cranelift_codegen::print_errors::pretty_verifier_error(
|
|
|
|
&func,
|
|
|
|
None,
|
|
|
|
Some(Box::new(writer)),
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-08-18 09:52:07 -05:00
|
|
|
fn codegen_fn_content(fx: &mut FunctionCx<'_, '_, impl Backend>) {
|
2018-08-14 11:52:43 -05:00
|
|
|
for (bb, bb_data) in fx.mir.basic_blocks().iter_enumerated() {
|
2018-09-30 09:33:55 -05:00
|
|
|
if bb_data.is_cleanup {
|
|
|
|
// Unwinding after panicking is not supported
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-06-19 12:51:29 -05:00
|
|
|
let ebb = fx.get_ebb(bb);
|
|
|
|
fx.bcx.switch_to_block(ebb);
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2018-07-20 06:51:34 -05:00
|
|
|
fx.bcx.ins().nop();
|
2018-06-17 11:05:11 -05:00
|
|
|
for stmt in &bb_data.statements {
|
2019-01-17 11:07:27 -06:00
|
|
|
fx.set_debug_loc(stmt.source_info);
|
2018-08-08 08:38:03 -05:00
|
|
|
trans_stmt(fx, ebb, 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();
|
|
|
|
let inst = fx.bcx.func.layout.last_inst(ebb).unwrap();
|
|
|
|
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 } => {
|
2018-06-19 12:51:29 -05:00
|
|
|
let ebb = fx.get_ebb(*target);
|
2018-07-20 06:51:34 -05:00
|
|
|
fx.bcx.ins().jump(ebb, &[]);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
TerminatorKind::Return => {
|
2018-08-11 04:01:48 -05:00
|
|
|
crate::abi::codegen_return(fx);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
TerminatorKind::Assert {
|
|
|
|
cond,
|
|
|
|
expected,
|
2019-03-23 07:06:35 -05:00
|
|
|
msg,
|
2018-07-31 05:25:16 -05:00
|
|
|
target,
|
|
|
|
cleanup: _,
|
|
|
|
} => {
|
2019-08-20 06:37:49 -05:00
|
|
|
if !fx.tcx.sess.overflow_checks() {
|
|
|
|
if let mir::interpret::PanicInfo::OverflowNeg = *msg {
|
|
|
|
let target = fx.get_ebb(*target);
|
|
|
|
fx.bcx.ins().jump(target, &[]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2019-01-02 06:37:56 -06:00
|
|
|
let cond = trans_operand(fx, cond).load_scalar(fx);
|
2018-06-19 12:51:29 -05:00
|
|
|
let target = fx.get_ebb(*target);
|
2020-01-10 05:14:28 -06:00
|
|
|
let failure = fx.bcx.create_ebb();
|
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, &[]);
|
|
|
|
|
|
|
|
// FIXME insert bb after all other bb's to reduce the amount of jumps in the common
|
|
|
|
// case and improve code locality.
|
|
|
|
fx.bcx.switch_to_block(failure);
|
2019-08-31 12:28:09 -05:00
|
|
|
trap_panic(
|
|
|
|
fx,
|
|
|
|
format!(
|
|
|
|
"[panic] Assert {:?} at {:?} failed.",
|
|
|
|
msg,
|
|
|
|
bb_data.terminator().source_info.span
|
|
|
|
),
|
|
|
|
);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
|
2018-07-31 05:25:16 -05:00
|
|
|
TerminatorKind::SwitchInt {
|
|
|
|
discr,
|
|
|
|
switch_ty: _,
|
|
|
|
values,
|
|
|
|
targets,
|
|
|
|
} => {
|
2019-01-02 06:37:56 -06:00
|
|
|
let discr = trans_operand(fx, discr).load_scalar(fx);
|
2019-12-24 05:40:18 -06:00
|
|
|
let mut switch = ::cranelift_frontend::Switch::new();
|
2018-09-25 11:02:37 -05:00
|
|
|
for (i, value) in values.iter().enumerate() {
|
|
|
|
let ebb = fx.get_ebb(targets[i]);
|
|
|
|
switch.set_entry(*value as u64, ebb);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
2018-09-25 11:02:37 -05:00
|
|
|
let otherwise_ebb = fx.get_ebb(targets[targets.len() - 1]);
|
|
|
|
switch.emit(&mut fx.bcx, discr, otherwise_ebb);
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
TerminatorKind::Call {
|
|
|
|
func,
|
|
|
|
args,
|
|
|
|
destination,
|
|
|
|
cleanup: _,
|
2018-10-05 12:23:26 -05:00
|
|
|
from_hir_call: _,
|
2018-07-31 05:25:16 -05:00
|
|
|
} => {
|
2020-01-10 07:15:14 -06:00
|
|
|
fx.tcx.sess.time("codegen call", || crate::abi::codegen_terminator_call(
|
2019-11-09 04:14:18 -06:00
|
|
|
fx,
|
|
|
|
func,
|
|
|
|
args,
|
|
|
|
destination,
|
|
|
|
bb_data.terminator().source_info.span,
|
2020-01-10 07:15:14 -06:00
|
|
|
));
|
2018-06-17 11:05:11 -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 { .. }
|
|
|
|
| TerminatorKind::FalseEdges { .. }
|
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 {
|
|
|
|
location,
|
|
|
|
target,
|
|
|
|
unwind: _,
|
|
|
|
} => {
|
2019-06-16 08:57:53 -05:00
|
|
|
let drop_place = trans_place(fx, location);
|
|
|
|
crate::abi::codegen_drop(fx, drop_place);
|
2018-09-11 12:27:57 -05:00
|
|
|
|
2018-06-28 13:27:43 -05:00
|
|
|
let target_ebb = fx.get_ebb(*target);
|
2018-07-20 06:51:34 -05:00
|
|
|
fx.bcx.ins().jump(target_ebb, &[]);
|
2018-06-28 13:27:43 -05:00
|
|
|
}
|
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>(
|
|
|
|
fx: &mut FunctionCx<'_, 'tcx, impl Backend>,
|
2018-08-14 13:31:16 -05:00
|
|
|
cur_ebb: Ebb,
|
|
|
|
stmt: &Statement<'tcx>,
|
|
|
|
) {
|
2018-08-31 12:50:26 -05:00
|
|
|
let _print_guard = 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);
|
|
|
|
|
2019-12-31 08:59:49 -06:00
|
|
|
#[cfg(debug_assertions)]
|
2018-09-05 13:04:21 -05:00
|
|
|
match &stmt.kind {
|
|
|
|
StatementKind::StorageLive(..) | StatementKind::StorageDead(..) => {} // Those are not very useful
|
|
|
|
_ => {
|
|
|
|
let inst = fx.bcx.func.layout.last_inst(cur_ebb).unwrap();
|
|
|
|
fx.add_comment(inst, format!("{:?}", stmt));
|
|
|
|
}
|
|
|
|
}
|
2018-06-30 09:27:11 -05:00
|
|
|
|
2018-06-17 11:05:11 -05:00
|
|
|
match &stmt.kind {
|
2018-07-31 05:25:16 -05:00
|
|
|
StatementKind::SetDiscriminant {
|
|
|
|
place,
|
|
|
|
variant_index,
|
|
|
|
} => {
|
2018-06-24 07:29:56 -05:00
|
|
|
let place = trans_place(fx, place);
|
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) => {
|
|
|
|
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) => {
|
2018-06-27 09:01:30 -05:00
|
|
|
let place = trans_place(fx, place);
|
2018-08-22 08:38:10 -05:00
|
|
|
place.write_place_ref(fx, lval);
|
2018-06-27 09:01:30 -05:00
|
|
|
}
|
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
|
|
|
|
2019-08-08 07:27:50 -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 {
|
2018-09-14 12:49:33 -05:00
|
|
|
UnOp::Not => {
|
2019-09-28 04:13:40 -05:00
|
|
|
match layout.ty.kind {
|
2018-09-14 12:49:33 -05:00
|
|
|
ty::Bool => {
|
|
|
|
let val = fx.bcx.ins().uextend(types::I32, val); // WORKAROUND for CraneStation/cranelift#466
|
|
|
|
let res = fx.bcx.ins().icmp_imm(IntCC::Equal, val, 0);
|
2019-10-06 08:51:43 -05:00
|
|
|
CValue::by_val(fx.bcx.ins().bint(types::I8, res), layout)
|
|
|
|
}
|
|
|
|
ty::Uint(_) | ty::Int(_) => {
|
|
|
|
CValue::by_val(fx.bcx.ins().bnot(val), layout)
|
2018-09-14 12:49:33 -05:00
|
|
|
}
|
|
|
|
_ => unimplemented!("un op Not for {:?}", layout.ty),
|
|
|
|
}
|
2018-09-26 08:40:11 -05:00
|
|
|
}
|
2019-09-28 04:13:40 -05:00
|
|
|
UnOp::Neg => match layout.ty.kind {
|
2018-08-24 07:51:02 -05:00
|
|
|
ty::Int(_) => {
|
2019-10-06 08:51:43 -05:00
|
|
|
let zero = CValue::const_val(fx, layout.ty, 0);
|
|
|
|
crate::num::trans_int_binop(fx, BinOp::Sub, zero, operand)
|
|
|
|
}
|
|
|
|
ty::Float(_) => {
|
|
|
|
CValue::by_val(fx.bcx.ins().fneg(val), layout)
|
2018-08-08 05:45:34 -05:00
|
|
|
}
|
2018-09-14 12:49:33 -05:00
|
|
|
_ => unimplemented!("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) => {
|
|
|
|
let from_ty = fx.monomorphize(&operand.ty(&fx.mir.local_decls, fx.tcx));
|
|
|
|
let to_layout = fx.layout_of(fx.monomorphize(to_ty));
|
|
|
|
match from_ty.kind {
|
2019-02-03 06:29:04 -06:00
|
|
|
ty::FnDef(def_id, substs) => {
|
|
|
|
let func_ref = fx.get_function_ref(
|
2019-02-21 08:06:09 -06:00
|
|
|
Instance::resolve(fx.tcx, ParamEnv::reveal_all(), def_id, substs)
|
|
|
|
.unwrap(),
|
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);
|
2019-12-17 09:58:34 -06:00
|
|
|
lval.write_cvalue(fx, operand.unchecked_cast_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>(
|
|
|
|
fx: &FunctionCx<'_, 'tcx, impl Backend>,
|
|
|
|
ty: Ty<'tcx>,
|
|
|
|
) -> bool {
|
|
|
|
ty.builtin_deref(true)
|
|
|
|
.map(
|
|
|
|
|ty::TypeAndMut {
|
|
|
|
ty: pointee_ty,
|
|
|
|
mutbl: _,
|
2019-09-14 10:53:36 -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
|
2019-02-16 09:37:30 -06:00
|
|
|
lval.write_cvalue(fx, operand.unchecked_cast_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-09-28 04:13:40 -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());
|
2019-09-28 04:13:40 -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
|
|
|
|
2019-08-31 12:28:09 -05:00
|
|
|
let discr = crate::discriminant::codegen_get_discriminant(
|
|
|
|
fx,
|
|
|
|
operand,
|
|
|
|
fx.layout_of(to_ty),
|
|
|
|
);
|
2019-02-24 10:25:13 -06:00
|
|
|
lval.write_cvalue(fx, discr);
|
|
|
|
} 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
|
|
|
}
|
2019-12-17 09:58:34 -06:00
|
|
|
Rvalue::Cast(CastKind::Pointer(PointerCast::ClosureFnPointer(_)), operand, _to_ty) => {
|
2019-02-24 11:15:23 -06:00
|
|
|
let operand = trans_operand(fx, operand);
|
2019-09-28 04:13:40 -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(
|
2019-02-24 11:15:23 -06:00
|
|
|
fx.tcx,
|
|
|
|
def_id,
|
|
|
|
substs,
|
|
|
|
ty::ClosureKind::FnOnce,
|
|
|
|
);
|
|
|
|
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) => {
|
2019-02-16 10:18:38 -06: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);
|
|
|
|
for i in 0..*times {
|
2018-11-03 07:14:28 -05:00
|
|
|
let index = fx.bcx.ins().iconst(fx.pointer_type, i as i64);
|
2018-08-08 05:30:25 -05:00
|
|
|
let to = lval.place_index(fx, index);
|
|
|
|
to.write_cvalue(fx, operand);
|
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
}
|
2018-08-22 10:58:25 -05:00
|
|
|
Rvalue::Len(place) => {
|
|
|
|
let place = trans_place(fx, place);
|
|
|
|
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) => {
|
2018-11-07 06:29:38 -06:00
|
|
|
use rustc::middle::lang_items::ExchangeMallocFnLangItem;
|
2018-09-04 12:04:25 -05:00
|
|
|
|
2018-11-12 09:23:39 -06: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);
|
2018-09-04 12:04:25 -05:00
|
|
|
let box_layout = fx.layout_of(fx.tcx.mk_box(content_ty));
|
|
|
|
|
|
|
|
// Allocate space:
|
|
|
|
let def_id = match fx.tcx.lang_items().require(ExchangeMallocFnLangItem) {
|
|
|
|
Ok(id) => id,
|
|
|
|
Err(s) => {
|
2018-09-08 10:24:52 -05:00
|
|
|
fx.tcx
|
|
|
|
.sess
|
|
|
|
.fatal(&format!("allocation of `{}` {}", box_layout.ty, s));
|
2018-09-04 12:04:25 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
let instance = ty::Instance::mono(fx.tcx, def_id);
|
|
|
|
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-01-04 10:49:00 -06: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();
|
2019-07-24 10:16:31 -05:00
|
|
|
let val = CValue::const_val(fx, 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
|
|
|
|
2019-07-20 08:33:57 -05:00
|
|
|
StatementKind::InlineAsm(asm) => {
|
|
|
|
use syntax::ast::Name;
|
2019-08-31 12:28:09 -05:00
|
|
|
let InlineAsm {
|
|
|
|
asm,
|
|
|
|
outputs: _,
|
|
|
|
inputs: _,
|
|
|
|
} = &**asm;
|
2020-01-09 10:43:10 -06:00
|
|
|
let rustc_hir::InlineAsmInner {
|
2019-07-20 08:33:57 -05:00
|
|
|
asm: asm_code, // Name
|
2019-08-31 12:28:09 -05:00
|
|
|
outputs, // Vec<Name>
|
|
|
|
inputs, // Vec<Name>
|
|
|
|
clobbers, // Vec<Name>
|
|
|
|
volatile, // bool
|
|
|
|
alignstack, // bool
|
|
|
|
dialect: _, // syntax::ast::AsmDialect
|
2019-07-20 08:33:57 -05:00
|
|
|
asm_str_style: _,
|
|
|
|
} = asm;
|
|
|
|
match &*asm_code.as_str() {
|
2019-10-06 03:41:15 -05:00
|
|
|
"" => {
|
|
|
|
assert_eq!(inputs, &[Name::intern("r")]);
|
|
|
|
assert!(outputs.is_empty(), "{:?}", outputs);
|
|
|
|
|
|
|
|
// Black box
|
|
|
|
}
|
2019-07-20 08:33:57 -05:00
|
|
|
"cpuid" | "cpuid\n" => {
|
|
|
|
assert_eq!(inputs, &[Name::intern("{eax}"), Name::intern("{ecx}")]);
|
|
|
|
|
|
|
|
assert_eq!(outputs.len(), 4);
|
2019-08-31 12:28:09 -05:00
|
|
|
for (i, c) in (&["={eax}", "={ebx}", "={ecx}", "={edx}"])
|
|
|
|
.iter()
|
|
|
|
.enumerate()
|
|
|
|
{
|
2019-07-20 08:33:57 -05:00
|
|
|
assert_eq!(&outputs[i].constraint.as_str(), c);
|
|
|
|
assert!(!outputs[i].is_rw);
|
|
|
|
assert!(!outputs[i].is_indirect);
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!(clobbers, &[Name::intern("rbx")]);
|
|
|
|
|
|
|
|
assert!(!volatile);
|
|
|
|
assert!(!alignstack);
|
|
|
|
|
2019-08-31 12:28:09 -05:00
|
|
|
crate::trap::trap_unimplemented(
|
|
|
|
fx,
|
|
|
|
"__cpuid_count arch intrinsic is not supported",
|
|
|
|
);
|
2019-07-20 08:33:57 -05:00
|
|
|
}
|
|
|
|
"xgetbv" => {
|
|
|
|
assert_eq!(inputs, &[Name::intern("{ecx}")]);
|
|
|
|
|
|
|
|
assert_eq!(outputs.len(), 2);
|
|
|
|
for (i, c) in (&["={eax}", "={edx}"]).iter().enumerate() {
|
|
|
|
assert_eq!(&outputs[i].constraint.as_str(), c);
|
|
|
|
assert!(!outputs[i].is_rw);
|
|
|
|
assert!(!outputs[i].is_indirect);
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!(clobbers, &[]);
|
|
|
|
|
|
|
|
assert!(!volatile);
|
|
|
|
assert!(!alignstack);
|
|
|
|
|
|
|
|
crate::trap::trap_unimplemented(fx, "_xgetbv arch intrinsic is not supported");
|
|
|
|
}
|
2019-09-07 03:51:00 -05:00
|
|
|
_ if fx.tcx.symbol_name(fx.instance).name.as_str() == "__rust_probestack" => {
|
2019-06-27 13:49:39 -05:00
|
|
|
crate::trap::trap_unimplemented(fx, "__rust_probestack is not supported");
|
|
|
|
}
|
2019-07-20 08:33:57 -05:00
|
|
|
_ => unimpl!("Inline assembly is not supported"),
|
|
|
|
}
|
|
|
|
}
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-18 09:52:07 -05:00
|
|
|
fn codegen_array_len<'tcx>(
|
|
|
|
fx: &mut FunctionCx<'_, 'tcx, impl Backend>,
|
2018-11-13 11:28:10 -06:00
|
|
|
place: CPlace<'tcx>,
|
|
|
|
) -> Value {
|
2019-09-28 04:13:40 -05:00
|
|
|
match place.layout().ty.kind {
|
2018-11-13 11:28:10 -06:00
|
|
|
ty::Array(_elem_ty, len) => {
|
2019-08-07 05:35:49 -05:00
|
|
|
let len = crate::constant::force_eval_const(fx, len)
|
|
|
|
.eval_usize(fx.tcx, ParamEnv::reveal_all()) as i64;
|
2018-11-13 11:28:10 -06:00
|
|
|
fx.bcx.ins().iconst(fx.pointer_type, len)
|
|
|
|
}
|
2019-02-21 08:06:09 -06:00
|
|
|
ty::Slice(_elem_ty) => place
|
2019-12-20 09:02:47 -06:00
|
|
|
.to_ptr_maybe_unsized(fx)
|
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),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-18 09:52:07 -05:00
|
|
|
pub fn trans_place<'tcx>(
|
|
|
|
fx: &mut FunctionCx<'_, 'tcx, impl Backend>,
|
2018-07-31 05:25:16 -05:00
|
|
|
place: &Place<'tcx>,
|
|
|
|
) -> CPlace<'tcx> {
|
2019-09-14 04:21:18 -05:00
|
|
|
let mut cplace = match &place.base {
|
2019-07-24 04:56:24 -05:00
|
|
|
PlaceBase::Local(local) => fx.get_local_place(*local),
|
|
|
|
PlaceBase::Static(static_) => match static_.kind {
|
2019-08-27 04:01:36 -05:00
|
|
|
StaticKind::Static => {
|
2019-12-18 13:41:07 -06:00
|
|
|
// Statics can't be generic, so `static_.ty` doesn't need to be monomorphized.
|
2019-08-27 04:01:36 -05:00
|
|
|
crate::constant::codegen_static_ref(fx, static_.def_id, static_.ty)
|
2019-07-24 04:56:24 -05:00
|
|
|
}
|
2019-08-27 04:01:36 -05:00
|
|
|
StaticKind::Promoted(promoted, substs) => {
|
|
|
|
let instance = Instance::new(static_.def_id, fx.monomorphize(&substs));
|
2019-12-18 13:41:07 -06:00
|
|
|
let ty = fx.monomorphize(&static_.ty);
|
|
|
|
crate::constant::trans_promoted(fx, instance, promoted, ty)
|
2019-03-27 11:45:20 -05:00
|
|
|
}
|
2019-08-31 12:28:09 -05:00
|
|
|
},
|
2019-07-24 04:56:24 -05:00
|
|
|
};
|
|
|
|
|
2019-09-14 04:21:18 -05:00
|
|
|
for elem in &*place.projection {
|
|
|
|
match *elem {
|
|
|
|
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,
|
|
|
|
} => {
|
|
|
|
let index = if !from_end {
|
|
|
|
fx.bcx.ins().iconst(fx.pointer_type, offset as i64)
|
|
|
|
} else {
|
|
|
|
let len = codegen_array_len(fx, cplace);
|
|
|
|
fx.bcx.ins().iadd_imm(len, -(offset as i64))
|
|
|
|
};
|
|
|
|
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.
|
|
|
|
|
2019-09-28 04:13:40 -05:00
|
|
|
match cplace.layout().ty.kind {
|
2019-09-14 04:21:18 -05:00
|
|
|
ty::Array(elem_ty, len) => {
|
|
|
|
let elem_layout = fx.layout_of(elem_ty);
|
2019-12-20 09:02:47 -06:00
|
|
|
let ptr = cplace.to_ptr(fx);
|
2019-09-14 04:21:18 -05:00
|
|
|
let len = crate::constant::force_eval_const(fx, len)
|
|
|
|
.eval_usize(fx.tcx, ParamEnv::reveal_all());
|
2019-12-20 09:02:47 -06:00
|
|
|
cplace = CPlace::for_ptr(
|
|
|
|
ptr.offset_i64(fx, elem_layout.size.bytes() as i64 * from as i64),
|
2020-01-11 07:15:24 -06:00
|
|
|
fx.layout_of(fx.tcx.mk_array(elem_ty, to as u64 - from as u64)),
|
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);
|
2019-12-20 09:02:47 -06:00
|
|
|
let (ptr, len) = cplace.to_ptr_maybe_unsized(fx);
|
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(
|
|
|
|
ptr.offset_i64(fx, elem_layout.size.bytes() as i64 * from as i64),
|
2019-09-14 04:21:18 -05:00
|
|
|
fx.bcx.ins().iadd_imm(len, -(from as i64 + to as i64)),
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-08-18 09:52:07 -05:00
|
|
|
pub fn trans_operand<'tcx>(
|
|
|
|
fx: &mut FunctionCx<'_, 'tcx, impl Backend>,
|
2018-07-31 05:25:16 -05:00
|
|
|
operand: &Operand<'tcx>,
|
|
|
|
) -> CValue<'tcx> {
|
2018-06-17 11:05:11 -05:00
|
|
|
match operand {
|
2018-07-31 05:25:16 -05:00
|
|
|
Operand::Move(place) | Operand::Copy(place) => {
|
2018-06-20 08:15:28 -05:00
|
|
|
let cplace = trans_place(fx, place);
|
|
|
|
cplace.to_cvalue(fx)
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
2018-07-31 05:25:16 -05:00
|
|
|
Operand::Constant(const_) => crate::constant::trans_constant(fx, const_),
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|