]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_cranelift/src/base.rs
Rollup merge of #93755 - ChayimFriedman2:allow-comparing-vecs-with-different-allocato...
[rust.git] / compiler / rustc_codegen_cranelift / src / base.rs
1 //! Codegen of a single function
2
3 use rustc_ast::InlineAsmOptions;
4 use rustc_index::vec::IndexVec;
5 use rustc_middle::ty::adjustment::PointerCast;
6 use rustc_middle::ty::layout::FnAbiOf;
7 use rustc_middle::ty::print::with_no_trimmed_paths;
8
9 use indexmap::IndexSet;
10
11 use crate::constant::ConstantCx;
12 use crate::prelude::*;
13 use crate::pretty_clif::CommentWriter;
14
15 pub(crate) fn codegen_fn<'tcx>(
16     cx: &mut crate::CodegenCx<'tcx>,
17     module: &mut dyn Module,
18     instance: Instance<'tcx>,
19 ) {
20     let tcx = cx.tcx;
21
22     let _inst_guard =
23         crate::PrintOnPanic(|| format!("{:?} {}", instance, tcx.symbol_name(instance).name));
24     debug_assert!(!instance.substs.needs_infer());
25
26     let mir = tcx.instance_mir(instance.def);
27     let _mir_guard = crate::PrintOnPanic(|| {
28         let mut buf = Vec::new();
29         with_no_trimmed_paths!({
30             rustc_middle::mir::pretty::write_mir_fn(tcx, mir, &mut |_, _| Ok(()), &mut buf)
31                 .unwrap();
32         });
33         String::from_utf8_lossy(&buf).into_owned()
34     });
35
36     // Declare function
37     let symbol_name = tcx.symbol_name(instance);
38     let sig = get_function_sig(tcx, module.isa().triple(), instance);
39     let func_id = module.declare_function(symbol_name.name, Linkage::Local, &sig).unwrap();
40
41     cx.cached_context.clear();
42
43     // Make the FunctionBuilder
44     let mut func_ctx = FunctionBuilderContext::new();
45     let mut func = std::mem::replace(&mut cx.cached_context.func, Function::new());
46     func.name = ExternalName::user(0, func_id.as_u32());
47     func.signature = sig;
48     func.collect_debug_info();
49
50     let mut bcx = FunctionBuilder::new(&mut func, &mut func_ctx);
51
52     // Predefine blocks
53     let start_block = bcx.create_block();
54     let block_map: IndexVec<BasicBlock, Block> =
55         (0..mir.basic_blocks().len()).map(|_| bcx.create_block()).collect();
56
57     // Make FunctionCx
58     let target_config = module.target_config();
59     let pointer_type = target_config.pointer_type();
60     let clif_comments = crate::pretty_clif::CommentWriter::new(tcx, instance);
61
62     let mut fx = FunctionCx {
63         cx,
64         module,
65         tcx,
66         target_config,
67         pointer_type,
68         constants_cx: ConstantCx::new(),
69
70         instance,
71         symbol_name,
72         mir,
73         fn_abi: Some(RevealAllLayoutCx(tcx).fn_abi_of_instance(instance, ty::List::empty())),
74
75         bcx,
76         block_map,
77         local_map: IndexVec::with_capacity(mir.local_decls.len()),
78         caller_location: None, // set by `codegen_fn_prelude`
79
80         clif_comments,
81         source_info_set: indexmap::IndexSet::new(),
82         next_ssa_var: 0,
83     };
84
85     let arg_uninhabited = fx
86         .mir
87         .args_iter()
88         .any(|arg| fx.layout_of(fx.monomorphize(fx.mir.local_decls[arg].ty)).abi.is_uninhabited());
89
90     if !crate::constant::check_constants(&mut fx) {
91         fx.bcx.append_block_params_for_function_params(fx.block_map[START_BLOCK]);
92         fx.bcx.switch_to_block(fx.block_map[START_BLOCK]);
93         crate::trap::trap_unreachable(&mut fx, "compilation should have been aborted");
94     } else if arg_uninhabited {
95         fx.bcx.append_block_params_for_function_params(fx.block_map[START_BLOCK]);
96         fx.bcx.switch_to_block(fx.block_map[START_BLOCK]);
97         fx.bcx.ins().trap(TrapCode::UnreachableCodeReached);
98     } else {
99         tcx.sess.time("codegen clif ir", || {
100             tcx.sess
101                 .time("codegen prelude", || crate::abi::codegen_fn_prelude(&mut fx, start_block));
102             codegen_fn_content(&mut fx);
103         });
104     }
105
106     // Recover all necessary data from fx, before accessing func will prevent future access to it.
107     let instance = fx.instance;
108     let clif_comments = fx.clif_comments;
109     let source_info_set = fx.source_info_set;
110     let local_map = fx.local_map;
111
112     fx.constants_cx.finalize(fx.tcx, &mut *fx.module);
113
114     crate::pretty_clif::write_clif_file(
115         tcx,
116         "unopt",
117         module.isa(),
118         instance,
119         &func,
120         &clif_comments,
121     );
122
123     // Verify function
124     verify_func(tcx, &clif_comments, &func);
125
126     compile_fn(
127         cx,
128         module,
129         instance,
130         symbol_name.name,
131         func_id,
132         func,
133         clif_comments,
134         source_info_set,
135         local_map,
136     );
137 }
138
139 fn compile_fn<'tcx>(
140     cx: &mut crate::CodegenCx<'tcx>,
141     module: &mut dyn Module,
142     instance: Instance<'tcx>,
143     symbol_name: &str,
144     func_id: FuncId,
145     func: Function,
146     mut clif_comments: CommentWriter,
147     source_info_set: IndexSet<SourceInfo>,
148     local_map: IndexVec<mir::Local, CPlace<'tcx>>,
149 ) {
150     let tcx = cx.tcx;
151
152     // Store function in context
153     let context = &mut cx.cached_context;
154     context.clear();
155     context.func = func;
156
157     // If the return block is not reachable, then the SSA builder may have inserted an `iconst.i128`
158     // instruction, which doesn't have an encoding.
159     context.compute_cfg();
160     context.compute_domtree();
161     context.eliminate_unreachable_code(module.isa()).unwrap();
162     context.dce(module.isa()).unwrap();
163     // Some Cranelift optimizations expect the domtree to not yet be computed and as such don't
164     // invalidate it when it would change.
165     context.domtree.clear();
166
167     // Perform rust specific optimizations
168     tcx.sess.time("optimize clif ir", || {
169         crate::optimize::optimize_function(
170             tcx,
171             module.isa(),
172             instance,
173             context,
174             &mut clif_comments,
175         );
176     });
177
178     // Define function
179     tcx.sess.time("define function", || {
180         context.want_disasm = crate::pretty_clif::should_write_ir(tcx);
181         module.define_function(func_id, context).unwrap()
182     });
183
184     // Write optimized function to file for debugging
185     crate::pretty_clif::write_clif_file(
186         tcx,
187         "opt",
188         module.isa(),
189         instance,
190         &context.func,
191         &clif_comments,
192     );
193
194     if let Some(disasm) = &context.mach_compile_result.as_ref().unwrap().disasm {
195         crate::pretty_clif::write_ir_file(
196             tcx,
197             || format!("{}.vcode", tcx.symbol_name(instance).name),
198             |file| file.write_all(disasm.as_bytes()),
199         )
200     }
201
202     // Define debuginfo for function
203     let isa = module.isa();
204     let debug_context = &mut cx.debug_context;
205     let unwind_context = &mut cx.unwind_context;
206     tcx.sess.time("generate debug info", || {
207         if let Some(debug_context) = debug_context {
208             debug_context.define_function(
209                 instance,
210                 func_id,
211                 symbol_name,
212                 isa,
213                 context,
214                 &source_info_set,
215                 local_map,
216             );
217         }
218         unwind_context.add_function(func_id, &context, isa);
219     });
220 }
221
222 pub(crate) fn verify_func(
223     tcx: TyCtxt<'_>,
224     writer: &crate::pretty_clif::CommentWriter,
225     func: &Function,
226 ) {
227     tcx.sess.time("verify clif ir", || {
228         let flags = cranelift_codegen::settings::Flags::new(cranelift_codegen::settings::builder());
229         match cranelift_codegen::verify_function(&func, &flags) {
230             Ok(_) => {}
231             Err(err) => {
232                 tcx.sess.err(&format!("{:?}", err));
233                 let pretty_error = cranelift_codegen::print_errors::pretty_verifier_error(
234                     &func,
235                     Some(Box::new(writer)),
236                     err,
237                 );
238                 tcx.sess.fatal(&format!("cranelift verify error:\n{}", pretty_error));
239             }
240         }
241     });
242 }
243
244 fn codegen_fn_content(fx: &mut FunctionCx<'_, '_, '_>) {
245     for (bb, bb_data) in fx.mir.basic_blocks().iter_enumerated() {
246         let block = fx.get_block(bb);
247         fx.bcx.switch_to_block(block);
248
249         if bb_data.is_cleanup {
250             // Unwinding after panicking is not supported
251             continue;
252
253             // FIXME Once unwinding is supported and Cranelift supports marking blocks as cold, do
254             // so for cleanup blocks.
255         }
256
257         fx.bcx.ins().nop();
258         for stmt in &bb_data.statements {
259             fx.set_debug_loc(stmt.source_info);
260             codegen_stmt(fx, block, stmt);
261         }
262
263         if fx.clif_comments.enabled() {
264             let mut terminator_head = "\n".to_string();
265             with_no_trimmed_paths!({
266                 bb_data.terminator().kind.fmt_head(&mut terminator_head).unwrap();
267             });
268             let inst = fx.bcx.func.layout.last_inst(block).unwrap();
269             fx.add_comment(inst, terminator_head);
270         }
271
272         let source_info = bb_data.terminator().source_info;
273         fx.set_debug_loc(source_info);
274
275         match &bb_data.terminator().kind {
276             TerminatorKind::Goto { target } => {
277                 if let TerminatorKind::Return = fx.mir[*target].terminator().kind {
278                     let mut can_immediately_return = true;
279                     for stmt in &fx.mir[*target].statements {
280                         if let StatementKind::StorageDead(_) = stmt.kind {
281                         } else {
282                             // FIXME Can sometimes happen, see rust-lang/rust#70531
283                             can_immediately_return = false;
284                             break;
285                         }
286                     }
287
288                     if can_immediately_return {
289                         crate::abi::codegen_return(fx);
290                         continue;
291                     }
292                 }
293
294                 let block = fx.get_block(*target);
295                 fx.bcx.ins().jump(block, &[]);
296             }
297             TerminatorKind::Return => {
298                 crate::abi::codegen_return(fx);
299             }
300             TerminatorKind::Assert { cond, expected, msg, target, cleanup: _ } => {
301                 if !fx.tcx.sess.overflow_checks() {
302                     if let mir::AssertKind::OverflowNeg(_) = *msg {
303                         let target = fx.get_block(*target);
304                         fx.bcx.ins().jump(target, &[]);
305                         continue;
306                     }
307                 }
308                 let cond = codegen_operand(fx, cond).load_scalar(fx);
309
310                 let target = fx.get_block(*target);
311                 let failure = fx.bcx.create_block();
312                 fx.bcx.set_cold_block(failure);
313
314                 if *expected {
315                     fx.bcx.ins().brz(cond, failure, &[]);
316                 } else {
317                     fx.bcx.ins().brnz(cond, failure, &[]);
318                 };
319                 fx.bcx.ins().jump(target, &[]);
320
321                 fx.bcx.switch_to_block(failure);
322                 fx.bcx.ins().nop();
323
324                 match msg {
325                     AssertKind::BoundsCheck { ref len, ref index } => {
326                         let len = codegen_operand(fx, len).load_scalar(fx);
327                         let index = codegen_operand(fx, index).load_scalar(fx);
328                         let location = fx.get_caller_location(source_info.span).load_scalar(fx);
329
330                         codegen_panic_inner(
331                             fx,
332                             rustc_hir::LangItem::PanicBoundsCheck,
333                             &[index, len, location],
334                             source_info.span,
335                         );
336                     }
337                     _ => {
338                         let msg_str = msg.description();
339                         codegen_panic(fx, msg_str, source_info.span);
340                     }
341                 }
342             }
343
344             TerminatorKind::SwitchInt { discr, switch_ty, targets } => {
345                 let discr = codegen_operand(fx, discr).load_scalar(fx);
346
347                 let use_bool_opt = switch_ty.kind() == fx.tcx.types.bool.kind()
348                     || (targets.iter().count() == 1 && targets.iter().next().unwrap().0 == 0);
349                 if use_bool_opt {
350                     assert_eq!(targets.iter().count(), 1);
351                     let (then_value, then_block) = targets.iter().next().unwrap();
352                     let then_block = fx.get_block(then_block);
353                     let else_block = fx.get_block(targets.otherwise());
354                     let test_zero = match then_value {
355                         0 => true,
356                         1 => false,
357                         _ => unreachable!("{:?}", targets),
358                     };
359
360                     let discr = crate::optimize::peephole::maybe_unwrap_bint(&mut fx.bcx, discr);
361                     let (discr, is_inverted) =
362                         crate::optimize::peephole::maybe_unwrap_bool_not(&mut fx.bcx, discr);
363                     let test_zero = if is_inverted { !test_zero } else { test_zero };
364                     let discr = crate::optimize::peephole::maybe_unwrap_bint(&mut fx.bcx, discr);
365                     if let Some(taken) = crate::optimize::peephole::maybe_known_branch_taken(
366                         &fx.bcx, discr, test_zero,
367                     ) {
368                         if taken {
369                             fx.bcx.ins().jump(then_block, &[]);
370                         } else {
371                             fx.bcx.ins().jump(else_block, &[]);
372                         }
373                     } else {
374                         if test_zero {
375                             fx.bcx.ins().brz(discr, then_block, &[]);
376                             fx.bcx.ins().jump(else_block, &[]);
377                         } else {
378                             fx.bcx.ins().brnz(discr, then_block, &[]);
379                             fx.bcx.ins().jump(else_block, &[]);
380                         }
381                     }
382                 } else {
383                     let mut switch = ::cranelift_frontend::Switch::new();
384                     for (value, block) in targets.iter() {
385                         let block = fx.get_block(block);
386                         switch.set_entry(value, block);
387                     }
388                     let otherwise_block = fx.get_block(targets.otherwise());
389                     switch.emit(&mut fx.bcx, discr, otherwise_block);
390                 }
391             }
392             TerminatorKind::Call {
393                 func,
394                 args,
395                 destination,
396                 fn_span,
397                 cleanup: _,
398                 from_hir_call: _,
399             } => {
400                 fx.tcx.sess.time("codegen call", || {
401                     crate::abi::codegen_terminator_call(fx, *fn_span, func, args, *destination)
402                 });
403             }
404             TerminatorKind::InlineAsm {
405                 template,
406                 operands,
407                 options,
408                 destination,
409                 line_spans: _,
410                 cleanup: _,
411             } => {
412                 if options.contains(InlineAsmOptions::MAY_UNWIND) {
413                     fx.tcx.sess.span_fatal(
414                         source_info.span,
415                         "cranelift doesn't support unwinding from inline assembly.",
416                     );
417                 }
418
419                 crate::inline_asm::codegen_inline_asm(
420                     fx,
421                     source_info.span,
422                     template,
423                     operands,
424                     *options,
425                 );
426
427                 match *destination {
428                     Some(destination) => {
429                         let destination_block = fx.get_block(destination);
430                         fx.bcx.ins().jump(destination_block, &[]);
431                     }
432                     None => {
433                         fx.bcx.ins().trap(TrapCode::UnreachableCodeReached);
434                     }
435                 }
436             }
437             TerminatorKind::Resume | TerminatorKind::Abort => {
438                 // FIXME implement unwinding
439                 fx.bcx.ins().trap(TrapCode::UnreachableCodeReached);
440             }
441             TerminatorKind::Unreachable => {
442                 fx.bcx.ins().trap(TrapCode::UnreachableCodeReached);
443             }
444             TerminatorKind::Yield { .. }
445             | TerminatorKind::FalseEdge { .. }
446             | TerminatorKind::FalseUnwind { .. }
447             | TerminatorKind::DropAndReplace { .. }
448             | TerminatorKind::GeneratorDrop => {
449                 bug!("shouldn't exist at codegen {:?}", bb_data.terminator());
450             }
451             TerminatorKind::Drop { place, target, unwind: _ } => {
452                 let drop_place = codegen_place(fx, *place);
453                 crate::abi::codegen_drop(fx, source_info.span, drop_place);
454
455                 let target_block = fx.get_block(*target);
456                 fx.bcx.ins().jump(target_block, &[]);
457             }
458         };
459     }
460
461     fx.bcx.seal_all_blocks();
462     fx.bcx.finalize();
463 }
464
465 fn codegen_stmt<'tcx>(
466     fx: &mut FunctionCx<'_, '_, 'tcx>,
467     #[allow(unused_variables)] cur_block: Block,
468     stmt: &Statement<'tcx>,
469 ) {
470     let _print_guard = crate::PrintOnPanic(|| format!("stmt {:?}", stmt));
471
472     fx.set_debug_loc(stmt.source_info);
473
474     #[cfg(disabled)]
475     match &stmt.kind {
476         StatementKind::StorageLive(..) | StatementKind::StorageDead(..) => {} // Those are not very useful
477         _ => {
478             if fx.clif_comments.enabled() {
479                 let inst = fx.bcx.func.layout.last_inst(cur_block).unwrap();
480                 fx.add_comment(inst, format!("{:?}", stmt));
481             }
482         }
483     }
484
485     match &stmt.kind {
486         StatementKind::SetDiscriminant { place, variant_index } => {
487             let place = codegen_place(fx, **place);
488             crate::discriminant::codegen_set_discriminant(fx, place, *variant_index);
489         }
490         StatementKind::Assign(to_place_and_rval) => {
491             let lval = codegen_place(fx, to_place_and_rval.0);
492             let dest_layout = lval.layout();
493             match to_place_and_rval.1 {
494                 Rvalue::Use(ref operand) => {
495                     let val = codegen_operand(fx, operand);
496                     lval.write_cvalue(fx, val);
497                 }
498                 Rvalue::Ref(_, _, place) | Rvalue::AddressOf(_, place) => {
499                     let place = codegen_place(fx, place);
500                     let ref_ = place.place_ref(fx, lval.layout());
501                     lval.write_cvalue(fx, ref_);
502                 }
503                 Rvalue::ThreadLocalRef(def_id) => {
504                     let val = crate::constant::codegen_tls_ref(fx, def_id, lval.layout());
505                     lval.write_cvalue(fx, val);
506                 }
507                 Rvalue::BinaryOp(bin_op, ref lhs_rhs) => {
508                     let lhs = codegen_operand(fx, &lhs_rhs.0);
509                     let rhs = codegen_operand(fx, &lhs_rhs.1);
510
511                     let res = crate::num::codegen_binop(fx, bin_op, lhs, rhs);
512                     lval.write_cvalue(fx, res);
513                 }
514                 Rvalue::CheckedBinaryOp(bin_op, ref lhs_rhs) => {
515                     let lhs = codegen_operand(fx, &lhs_rhs.0);
516                     let rhs = codegen_operand(fx, &lhs_rhs.1);
517
518                     let res = if !fx.tcx.sess.overflow_checks() {
519                         let val =
520                             crate::num::codegen_int_binop(fx, bin_op, lhs, rhs).load_scalar(fx);
521                         let is_overflow = fx.bcx.ins().iconst(types::I8, 0);
522                         CValue::by_val_pair(val, is_overflow, lval.layout())
523                     } else {
524                         crate::num::codegen_checked_int_binop(fx, bin_op, lhs, rhs)
525                     };
526
527                     lval.write_cvalue(fx, res);
528                 }
529                 Rvalue::UnaryOp(un_op, ref operand) => {
530                     let operand = codegen_operand(fx, operand);
531                     let layout = operand.layout();
532                     let val = operand.load_scalar(fx);
533                     let res = match un_op {
534                         UnOp::Not => match layout.ty.kind() {
535                             ty::Bool => {
536                                 let res = fx.bcx.ins().icmp_imm(IntCC::Equal, val, 0);
537                                 CValue::by_val(fx.bcx.ins().bint(types::I8, res), layout)
538                             }
539                             ty::Uint(_) | ty::Int(_) => {
540                                 CValue::by_val(fx.bcx.ins().bnot(val), layout)
541                             }
542                             _ => unreachable!("un op Not for {:?}", layout.ty),
543                         },
544                         UnOp::Neg => match layout.ty.kind() {
545                             ty::Int(IntTy::I128) => {
546                                 // FIXME remove this case once ineg.i128 works
547                                 let zero =
548                                     CValue::const_val(fx, layout, ty::ScalarInt::null(layout.size));
549                                 crate::num::codegen_int_binop(fx, BinOp::Sub, zero, operand)
550                             }
551                             ty::Int(_) => CValue::by_val(fx.bcx.ins().ineg(val), layout),
552                             ty::Float(_) => CValue::by_val(fx.bcx.ins().fneg(val), layout),
553                             _ => unreachable!("un op Neg for {:?}", layout.ty),
554                         },
555                     };
556                     lval.write_cvalue(fx, res);
557                 }
558                 Rvalue::Cast(
559                     CastKind::Pointer(PointerCast::ReifyFnPointer),
560                     ref operand,
561                     to_ty,
562                 ) => {
563                     let from_ty = fx.monomorphize(operand.ty(&fx.mir.local_decls, fx.tcx));
564                     let to_layout = fx.layout_of(fx.monomorphize(to_ty));
565                     match *from_ty.kind() {
566                         ty::FnDef(def_id, substs) => {
567                             let func_ref = fx.get_function_ref(
568                                 Instance::resolve_for_fn_ptr(
569                                     fx.tcx,
570                                     ParamEnv::reveal_all(),
571                                     def_id,
572                                     substs,
573                                 )
574                                 .unwrap()
575                                 .polymorphize(fx.tcx),
576                             );
577                             let func_addr = fx.bcx.ins().func_addr(fx.pointer_type, func_ref);
578                             lval.write_cvalue(fx, CValue::by_val(func_addr, to_layout));
579                         }
580                         _ => bug!("Trying to ReifyFnPointer on non FnDef {:?}", from_ty),
581                     }
582                 }
583                 Rvalue::Cast(
584                     CastKind::Pointer(PointerCast::UnsafeFnPointer),
585                     ref operand,
586                     to_ty,
587                 )
588                 | Rvalue::Cast(
589                     CastKind::Pointer(PointerCast::MutToConstPointer),
590                     ref operand,
591                     to_ty,
592                 )
593                 | Rvalue::Cast(
594                     CastKind::Pointer(PointerCast::ArrayToPointer),
595                     ref operand,
596                     to_ty,
597                 ) => {
598                     let to_layout = fx.layout_of(fx.monomorphize(to_ty));
599                     let operand = codegen_operand(fx, operand);
600                     lval.write_cvalue(fx, operand.cast_pointer_to(to_layout));
601                 }
602                 Rvalue::Cast(CastKind::Misc, ref operand, to_ty) => {
603                     let operand = codegen_operand(fx, operand);
604                     let from_ty = operand.layout().ty;
605                     let to_ty = fx.monomorphize(to_ty);
606
607                     fn is_fat_ptr<'tcx>(fx: &FunctionCx<'_, '_, 'tcx>, ty: Ty<'tcx>) -> bool {
608                         ty.builtin_deref(true)
609                             .map(|ty::TypeAndMut { ty: pointee_ty, mutbl: _ }| {
610                                 has_ptr_meta(fx.tcx, pointee_ty)
611                             })
612                             .unwrap_or(false)
613                     }
614
615                     if is_fat_ptr(fx, from_ty) {
616                         if is_fat_ptr(fx, to_ty) {
617                             // fat-ptr -> fat-ptr
618                             lval.write_cvalue(fx, operand.cast_pointer_to(dest_layout));
619                         } else {
620                             // fat-ptr -> thin-ptr
621                             let (ptr, _extra) = operand.load_scalar_pair(fx);
622                             lval.write_cvalue(fx, CValue::by_val(ptr, dest_layout))
623                         }
624                     } else if let ty::Adt(adt_def, _substs) = from_ty.kind() {
625                         // enum -> discriminant value
626                         assert!(adt_def.is_enum());
627                         match to_ty.kind() {
628                             ty::Uint(_) | ty::Int(_) => {}
629                             _ => unreachable!("cast adt {} -> {}", from_ty, to_ty),
630                         }
631                         let to_clif_ty = fx.clif_type(to_ty).unwrap();
632
633                         let discriminant = crate::discriminant::codegen_get_discriminant(
634                             fx,
635                             operand,
636                             fx.layout_of(operand.layout().ty.discriminant_ty(fx.tcx)),
637                         )
638                         .load_scalar(fx);
639
640                         let res = crate::cast::clif_intcast(
641                             fx,
642                             discriminant,
643                             to_clif_ty,
644                             to_ty.is_signed(),
645                         );
646                         lval.write_cvalue(fx, CValue::by_val(res, dest_layout));
647                     } else {
648                         let to_clif_ty = fx.clif_type(to_ty).unwrap();
649                         let from = operand.load_scalar(fx);
650
651                         let res = clif_int_or_float_cast(
652                             fx,
653                             from,
654                             type_sign(from_ty),
655                             to_clif_ty,
656                             type_sign(to_ty),
657                         );
658                         lval.write_cvalue(fx, CValue::by_val(res, dest_layout));
659                     }
660                 }
661                 Rvalue::Cast(
662                     CastKind::Pointer(PointerCast::ClosureFnPointer(_)),
663                     ref operand,
664                     _to_ty,
665                 ) => {
666                     let operand = codegen_operand(fx, operand);
667                     match *operand.layout().ty.kind() {
668                         ty::Closure(def_id, substs) => {
669                             let instance = Instance::resolve_closure(
670                                 fx.tcx,
671                                 def_id,
672                                 substs,
673                                 ty::ClosureKind::FnOnce,
674                             )
675                             .polymorphize(fx.tcx);
676                             let func_ref = fx.get_function_ref(instance);
677                             let func_addr = fx.bcx.ins().func_addr(fx.pointer_type, func_ref);
678                             lval.write_cvalue(fx, CValue::by_val(func_addr, lval.layout()));
679                         }
680                         _ => bug!("{} cannot be cast to a fn ptr", operand.layout().ty),
681                     }
682                 }
683                 Rvalue::Cast(CastKind::Pointer(PointerCast::Unsize), ref operand, _to_ty) => {
684                     let operand = codegen_operand(fx, operand);
685                     operand.unsize_value(fx, lval);
686                 }
687                 Rvalue::Discriminant(place) => {
688                     let place = codegen_place(fx, place);
689                     let value = place.to_cvalue(fx);
690                     let discr =
691                         crate::discriminant::codegen_get_discriminant(fx, value, dest_layout);
692                     lval.write_cvalue(fx, discr);
693                 }
694                 Rvalue::Repeat(ref operand, times) => {
695                     let operand = codegen_operand(fx, operand);
696                     let times = fx
697                         .monomorphize(times)
698                         .eval(fx.tcx, ParamEnv::reveal_all())
699                         .val()
700                         .try_to_bits(fx.tcx.data_layout.pointer_size)
701                         .unwrap();
702                     if operand.layout().size.bytes() == 0 {
703                         // Do nothing for ZST's
704                     } else if fx.clif_type(operand.layout().ty) == Some(types::I8) {
705                         let times = fx.bcx.ins().iconst(fx.pointer_type, times as i64);
706                         // FIXME use emit_small_memset where possible
707                         let addr = lval.to_ptr().get_addr(fx);
708                         let val = operand.load_scalar(fx);
709                         fx.bcx.call_memset(fx.target_config, addr, val, times);
710                     } else {
711                         let loop_block = fx.bcx.create_block();
712                         let loop_block2 = fx.bcx.create_block();
713                         let done_block = fx.bcx.create_block();
714                         let index = fx.bcx.append_block_param(loop_block, fx.pointer_type);
715                         let zero = fx.bcx.ins().iconst(fx.pointer_type, 0);
716                         fx.bcx.ins().jump(loop_block, &[zero]);
717
718                         fx.bcx.switch_to_block(loop_block);
719                         let done = fx.bcx.ins().icmp_imm(IntCC::Equal, index, times as i64);
720                         fx.bcx.ins().brnz(done, done_block, &[]);
721                         fx.bcx.ins().jump(loop_block2, &[]);
722
723                         fx.bcx.switch_to_block(loop_block2);
724                         let to = lval.place_index(fx, index);
725                         to.write_cvalue(fx, operand);
726                         let index = fx.bcx.ins().iadd_imm(index, 1);
727                         fx.bcx.ins().jump(loop_block, &[index]);
728
729                         fx.bcx.switch_to_block(done_block);
730                         fx.bcx.ins().nop();
731                     }
732                 }
733                 Rvalue::Len(place) => {
734                     let place = codegen_place(fx, place);
735                     let usize_layout = fx.layout_of(fx.tcx.types.usize);
736                     let len = codegen_array_len(fx, place);
737                     lval.write_cvalue(fx, CValue::by_val(len, usize_layout));
738                 }
739                 Rvalue::ShallowInitBox(ref operand, content_ty) => {
740                     let content_ty = fx.monomorphize(content_ty);
741                     let box_layout = fx.layout_of(fx.tcx.mk_box(content_ty));
742                     let operand = codegen_operand(fx, operand);
743                     let operand = operand.load_scalar(fx);
744                     lval.write_cvalue(fx, CValue::by_val(operand, box_layout));
745                 }
746                 Rvalue::NullaryOp(null_op, ty) => {
747                     assert!(
748                         lval.layout()
749                             .ty
750                             .is_sized(fx.tcx.at(stmt.source_info.span), ParamEnv::reveal_all())
751                     );
752                     let layout = fx.layout_of(fx.monomorphize(ty));
753                     let val = match null_op {
754                         NullOp::SizeOf => layout.size.bytes(),
755                         NullOp::AlignOf => layout.align.abi.bytes(),
756                     };
757                     let val = CValue::const_val(fx, fx.layout_of(fx.tcx.types.usize), val.into());
758                     lval.write_cvalue(fx, val);
759                 }
760                 Rvalue::Aggregate(ref kind, ref operands) => match kind.as_ref() {
761                     AggregateKind::Array(_ty) => {
762                         for (i, operand) in operands.iter().enumerate() {
763                             let operand = codegen_operand(fx, operand);
764                             let index = fx.bcx.ins().iconst(fx.pointer_type, i as i64);
765                             let to = lval.place_index(fx, index);
766                             to.write_cvalue(fx, operand);
767                         }
768                     }
769                     _ => unreachable!("shouldn't exist at codegen {:?}", to_place_and_rval.1),
770                 },
771             }
772         }
773         StatementKind::StorageLive(_)
774         | StatementKind::StorageDead(_)
775         | StatementKind::Nop
776         | StatementKind::FakeRead(..)
777         | StatementKind::Retag { .. }
778         | StatementKind::AscribeUserType(..) => {}
779
780         StatementKind::Coverage { .. } => fx.tcx.sess.fatal("-Zcoverage is unimplemented"),
781         StatementKind::CopyNonOverlapping(inner) => {
782             let dst = codegen_operand(fx, &inner.dst);
783             let pointee = dst
784                 .layout()
785                 .pointee_info_at(fx, rustc_target::abi::Size::ZERO)
786                 .expect("Expected pointer");
787             let dst = dst.load_scalar(fx);
788             let src = codegen_operand(fx, &inner.src).load_scalar(fx);
789             let count = codegen_operand(fx, &inner.count).load_scalar(fx);
790             let elem_size: u64 = pointee.size.bytes();
791             let bytes =
792                 if elem_size != 1 { fx.bcx.ins().imul_imm(count, elem_size as i64) } else { count };
793             fx.bcx.call_memcpy(fx.target_config, dst, src, bytes);
794         }
795     }
796 }
797
798 fn codegen_array_len<'tcx>(fx: &mut FunctionCx<'_, '_, 'tcx>, place: CPlace<'tcx>) -> Value {
799     match *place.layout().ty.kind() {
800         ty::Array(_elem_ty, len) => {
801             let len = fx.monomorphize(len).eval_usize(fx.tcx, ParamEnv::reveal_all()) as i64;
802             fx.bcx.ins().iconst(fx.pointer_type, len)
803         }
804         ty::Slice(_elem_ty) => {
805             place.to_ptr_maybe_unsized().1.expect("Length metadata for slice place")
806         }
807         _ => bug!("Rvalue::Len({:?})", place),
808     }
809 }
810
811 pub(crate) fn codegen_place<'tcx>(
812     fx: &mut FunctionCx<'_, '_, 'tcx>,
813     place: Place<'tcx>,
814 ) -> CPlace<'tcx> {
815     let mut cplace = fx.get_local_place(place.local);
816
817     for elem in place.projection {
818         match elem {
819             PlaceElem::Deref => {
820                 if cplace.layout().ty.is_box() {
821                     cplace = cplace
822                         .place_field(fx, Field::new(0)) // Box<T> -> Unique<T>
823                         .place_field(fx, Field::new(0)) // Unique<T> -> *const T
824                         .place_deref(fx);
825                 } else {
826                     cplace = cplace.place_deref(fx);
827                 }
828             }
829             PlaceElem::Field(field, _ty) => {
830                 cplace = cplace.place_field(fx, field);
831             }
832             PlaceElem::Index(local) => {
833                 let index = fx.get_local_place(local).to_cvalue(fx).load_scalar(fx);
834                 cplace = cplace.place_index(fx, index);
835             }
836             PlaceElem::ConstantIndex { offset, min_length: _, from_end } => {
837                 let offset: u64 = offset;
838                 let index = if !from_end {
839                     fx.bcx.ins().iconst(fx.pointer_type, offset as i64)
840                 } else {
841                     let len = codegen_array_len(fx, cplace);
842                     fx.bcx.ins().iadd_imm(len, -(offset as i64))
843                 };
844                 cplace = cplace.place_index(fx, index);
845             }
846             PlaceElem::Subslice { from, to, from_end } => {
847                 // These indices are generated by slice patterns.
848                 // slice[from:-to] in Python terms.
849
850                 let from: u64 = from;
851                 let to: u64 = to;
852
853                 match cplace.layout().ty.kind() {
854                     ty::Array(elem_ty, _len) => {
855                         assert!(!from_end, "array subslices are never `from_end`");
856                         let elem_layout = fx.layout_of(*elem_ty);
857                         let ptr = cplace.to_ptr();
858                         cplace = CPlace::for_ptr(
859                             ptr.offset_i64(fx, elem_layout.size.bytes() as i64 * (from as i64)),
860                             fx.layout_of(fx.tcx.mk_array(*elem_ty, to - from)),
861                         );
862                     }
863                     ty::Slice(elem_ty) => {
864                         assert!(from_end, "slice subslices should be `from_end`");
865                         let elem_layout = fx.layout_of(*elem_ty);
866                         let (ptr, len) = cplace.to_ptr_maybe_unsized();
867                         let len = len.unwrap();
868                         cplace = CPlace::for_ptr_with_extra(
869                             ptr.offset_i64(fx, elem_layout.size.bytes() as i64 * (from as i64)),
870                             fx.bcx.ins().iadd_imm(len, -(from as i64 + to as i64)),
871                             cplace.layout(),
872                         );
873                     }
874                     _ => unreachable!(),
875                 }
876             }
877             PlaceElem::Downcast(_adt_def, variant) => {
878                 cplace = cplace.downcast_variant(fx, variant);
879             }
880         }
881     }
882
883     cplace
884 }
885
886 pub(crate) fn codegen_operand<'tcx>(
887     fx: &mut FunctionCx<'_, '_, 'tcx>,
888     operand: &Operand<'tcx>,
889 ) -> CValue<'tcx> {
890     match operand {
891         Operand::Move(place) | Operand::Copy(place) => {
892             let cplace = codegen_place(fx, *place);
893             cplace.to_cvalue(fx)
894         }
895         Operand::Constant(const_) => crate::constant::codegen_constant(fx, const_),
896     }
897 }
898
899 pub(crate) fn codegen_panic<'tcx>(fx: &mut FunctionCx<'_, '_, 'tcx>, msg_str: &str, span: Span) {
900     let location = fx.get_caller_location(span).load_scalar(fx);
901
902     let msg_ptr = fx.anonymous_str(msg_str);
903     let msg_len = fx.bcx.ins().iconst(fx.pointer_type, i64::try_from(msg_str.len()).unwrap());
904     let args = [msg_ptr, msg_len, location];
905
906     codegen_panic_inner(fx, rustc_hir::LangItem::Panic, &args, span);
907 }
908
909 pub(crate) fn codegen_panic_inner<'tcx>(
910     fx: &mut FunctionCx<'_, '_, 'tcx>,
911     lang_item: rustc_hir::LangItem,
912     args: &[Value],
913     span: Span,
914 ) {
915     let def_id =
916         fx.tcx.lang_items().require(lang_item).unwrap_or_else(|s| fx.tcx.sess.span_fatal(span, &s));
917
918     let instance = Instance::mono(fx.tcx, def_id).polymorphize(fx.tcx);
919     let symbol_name = fx.tcx.symbol_name(instance).name;
920
921     fx.lib_call(
922         &*symbol_name,
923         vec![
924             AbiParam::new(fx.pointer_type),
925             AbiParam::new(fx.pointer_type),
926             AbiParam::new(fx.pointer_type),
927         ],
928         vec![],
929         args,
930     );
931
932     fx.bcx.ins().trap(TrapCode::UnreachableCodeReached);
933 }