]> git.lizzy.rs Git - rust.git/blob - src/base.rs
Fix some FIXME's and add some new FIXME's
[rust.git] / src / base.rs
1 use rustc::ty::adjustment::PointerCast;
2 use rustc_index::vec::IndexVec;
3
4 use crate::prelude::*;
5
6 pub fn trans_fn<'clif, 'tcx, B: Backend + 'static>(
7     cx: &mut crate::CodegenCx<'clif, 'tcx, B>,
8     instance: Instance<'tcx>,
9     linkage: Linkage,
10 ) {
11     let tcx = cx.tcx;
12
13     let mir = *tcx.instance_mir(instance.def);
14
15     // Declare function
16     let (name, sig) = get_function_name_and_sig(tcx, cx.module.isa().triple(), instance, false);
17     let func_id = cx.module.declare_function(&name, linkage, &sig).unwrap();
18     let mut debug_context = cx
19         .debug_context
20         .as_mut()
21         .map(|debug_context| FunctionDebugContext::new(debug_context, instance, func_id, &name));
22
23     // Make FunctionBuilder
24     let context = &mut cx.cached_context;
25     context.clear();
26     context.func.name = ExternalName::user(0, func_id.as_u32());
27     context.func.signature = sig;
28     context.func.collect_debug_info();
29     let mut func_ctx = FunctionBuilderContext::new();
30     let mut bcx = FunctionBuilder::new(&mut context.func, &mut func_ctx);
31
32     // Predefine block's
33     let start_block = bcx.create_block();
34     let block_map: IndexVec<BasicBlock, Block> = (0..mir.basic_blocks().len()).map(|_| bcx.create_block()).collect();
35
36     // Make FunctionCx
37     let pointer_type = cx.module.target_config().pointer_type();
38     let clif_comments = crate::pretty_clif::CommentWriter::new(tcx, instance);
39
40     let mut fx = FunctionCx {
41         tcx,
42         module: cx.module,
43         pointer_type,
44
45         instance,
46         mir,
47
48         bcx,
49         block_map,
50         local_map: HashMap::new(),
51         caller_location: None, // set by `codegen_fn_prelude`
52         cold_blocks: EntitySet::new(),
53
54         clif_comments,
55         constants_cx: &mut cx.constants_cx,
56         vtables: &mut cx.vtables,
57         source_info_set: indexmap::IndexSet::new(),
58     };
59
60     let arg_uninhabited = fx.mir.args_iter().any(|arg| fx.layout_of(fx.monomorphize(&fx.mir.local_decls[arg].ty)).abi.is_uninhabited());
61     let is_call_once_for_box = name.starts_with("_ZN83_$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$A$GT$$GT$9call_once");
62
63     if arg_uninhabited {
64         fx.bcx.append_block_params_for_function_params(fx.block_map[START_BLOCK]);
65         fx.bcx.switch_to_block(fx.block_map[START_BLOCK]);
66         crate::trap::trap_unreachable(&mut fx, "function has uninhabited argument");
67     } else if is_call_once_for_box {
68         // HACK implement `<Box<F> as FnOnce>::call_once` without `alloca`.
69         tcx.sess.time("codegen prelude", || crate::abi::codegen_fn_prelude(&mut fx, start_block, false));
70         fx.bcx.switch_to_block(fx.block_map[START_BLOCK]);
71         let bb_data = &fx.mir.basic_blocks()[START_BLOCK];
72         let destination = match &bb_data.terminator().kind {
73             TerminatorKind::Call {
74                 func,
75                 args,
76                 destination,
77                 cleanup: _,
78                 from_hir_call: _,
79             } => {
80                 assert_eq!(args.len(), 2);
81
82                 let closure_arg = Local::new(1);
83                 let closure_local = args[0].place().unwrap().as_local().unwrap();
84                 assert_eq!(fx.mir.local_decls[closure_local].ty, fx.mir.local_decls[closure_arg].ty.builtin_deref(true).unwrap().ty);
85                 let closure_deref = fx.local_map[&closure_arg].place_deref(&mut fx);
86                 fx.local_map.insert(closure_local, closure_deref);
87
88                 let args_arg = Local::new(2);
89                 let args_local = args[1].place().unwrap().as_local().unwrap();
90                 assert_eq!(fx.mir.local_decls[args_local].ty, fx.mir.local_decls[args_arg].ty);
91                 fx.local_map.insert(args_local, fx.local_map[&args_arg]);
92
93                 fx.tcx.sess.time("codegen call", || crate::abi::codegen_terminator_call(
94                     &mut fx,
95                     bb_data.terminator().source_info.span,
96                     func,
97                     args,
98                     destination,
99                 ));
100                 destination.map(|(_ret_place, ret_block)| ret_block)
101             }
102             _ => unreachable!(),
103         };
104
105         let destination = if let Some(destination) = destination {
106             fx.bcx.switch_to_block(fx.block_map[destination]);
107             let bb_data = &fx.mir.basic_blocks()[destination];
108             match &bb_data.terminator().kind {
109                 TerminatorKind::Call {
110                     func,
111                     args,
112                     destination,
113                     cleanup: _,
114                     from_hir_call: _,
115                 } => {
116                     match destination {
117                         Some((ret_place, _ret_block)) => {
118                             fx.local_map.insert(ret_place.as_local().unwrap(), CPlace::no_place(fx.layout_of(fx.tcx.mk_unit())));
119                         }
120                         None => {}
121                     }
122
123                     assert_eq!(args.len(), 1);
124                     fx.tcx.sess.time("codegen call", || crate::abi::codegen_terminator_call(
125                         &mut fx,
126                         bb_data.terminator().source_info.span,
127                         func,
128                         args,
129                         destination,
130                     ));
131                     destination.map(|(_ret_place, ret_block)| ret_block)
132                 }
133                 _ => unreachable!(),
134             }
135         } else {
136             None
137         };
138
139         if let Some(destination) = destination {
140             fx.bcx.switch_to_block(fx.block_map[destination]);
141             let bb_data = &fx.mir.basic_blocks()[destination];
142             match &bb_data.terminator().kind {
143                 TerminatorKind::Return => crate::abi::codegen_return(&mut fx),
144                 _ => unreachable!(),
145             }
146         }
147     } else {
148         tcx.sess.time("codegen clif ir", || {
149             tcx.sess.time("codegen prelude", || crate::abi::codegen_fn_prelude(&mut fx, start_block, true));
150             codegen_fn_content(&mut fx);
151         });
152     }
153
154     // Recover all necessary data from fx, before accessing func will prevent future access to it.
155     let instance = fx.instance;
156     let mut clif_comments = fx.clif_comments;
157     let source_info_set = fx.source_info_set;
158     let local_map = fx.local_map;
159     let cold_blocks = fx.cold_blocks;
160
161     #[cfg(debug_assertions)]
162     crate::pretty_clif::write_clif_file(cx.tcx, "unopt", instance, &context.func, &clif_comments, None);
163
164     // Verify function
165     verify_func(tcx, &clif_comments, &context.func);
166
167     // Perform rust specific optimizations
168     tcx.sess.time("optimize clif ir", || {
169         crate::optimize::optimize_function(tcx, instance, context, &cold_blocks, &mut clif_comments);
170     });
171
172     // Define function
173     let module = &mut cx.module;
174     tcx.sess.time("define function", || module.define_function(func_id, context).unwrap());
175
176     // Write optimized function to file for debugging
177     #[cfg(debug_assertions)]
178     {
179         let value_ranges = context
180             .build_value_labels_ranges(cx.module.isa())
181             .expect("value location ranges");
182
183         crate::pretty_clif::write_clif_file(
184             cx.tcx,
185             "opt",
186             instance,
187             &context.func,
188             &clif_comments,
189             Some(&value_ranges),
190         );
191     }
192
193     // Define debuginfo for function
194     let isa = cx.module.isa();
195     tcx.sess.time("generate debug info", || {
196         debug_context
197             .as_mut()
198             .map(|x| x.define(context, isa, &source_info_set, local_map));
199     });
200
201     // Clear context to make it usable for the next function
202     context.clear();
203 }
204
205 pub fn verify_func(tcx: TyCtxt, writer: &crate::pretty_clif::CommentWriter, func: &Function) {
206     tcx.sess.time("verify clif ir", || {
207         let flags = settings::Flags::new(settings::builder());
208         match ::cranelift_codegen::verify_function(&func, &flags) {
209             Ok(_) => {}
210             Err(err) => {
211                 tcx.sess.err(&format!("{:?}", err));
212                 let pretty_error = ::cranelift_codegen::print_errors::pretty_verifier_error(
213                     &func,
214                     None,
215                     Some(Box::new(writer)),
216                     err,
217                 );
218                 tcx.sess
219                     .fatal(&format!("cranelift verify error:\n{}", pretty_error));
220             }
221         }
222     });
223 }
224
225 fn codegen_fn_content(fx: &mut FunctionCx<'_, '_, impl Backend>) {
226     for (bb, bb_data) in fx.mir.basic_blocks().iter_enumerated() {
227         let block = fx.get_block(bb);
228         fx.bcx.switch_to_block(block);
229
230         if bb_data.is_cleanup {
231             // Unwinding after panicking is not supported
232             continue;
233
234             // FIXME once unwinding is supported uncomment next lines
235             // // Unwinding is unlikely to happen, so mark cleanup block's as cold.
236             // fx.cold_blocks.insert(block);
237         }
238
239         fx.bcx.ins().nop();
240         for stmt in &bb_data.statements {
241             fx.set_debug_loc(stmt.source_info);
242             trans_stmt(fx, block, stmt);
243         }
244
245         #[cfg(debug_assertions)]
246         {
247             let mut terminator_head = "\n".to_string();
248             bb_data
249                 .terminator()
250                 .kind
251                 .fmt_head(&mut terminator_head)
252                 .unwrap();
253             let inst = fx.bcx.func.layout.last_inst(block).unwrap();
254             fx.add_comment(inst, terminator_head);
255         }
256
257         fx.set_debug_loc(bb_data.terminator().source_info);
258
259         match &bb_data.terminator().kind {
260             TerminatorKind::Goto { target } => {
261                 let block = fx.get_block(*target);
262                 fx.bcx.ins().jump(block, &[]);
263             }
264             TerminatorKind::Return => {
265                 crate::abi::codegen_return(fx);
266             }
267             TerminatorKind::Assert {
268                 cond,
269                 expected,
270                 msg,
271                 target,
272                 cleanup: _,
273             } => {
274                 if !fx.tcx.sess.overflow_checks() {
275                     if let mir::AssertKind::OverflowNeg = *msg {
276                         let target = fx.get_block(*target);
277                         fx.bcx.ins().jump(target, &[]);
278                         continue;
279                     }
280                 }
281                 let cond = trans_operand(fx, cond).load_scalar(fx);
282
283                 let target = fx.get_block(*target);
284                 let failure = fx.bcx.create_block();
285                 fx.cold_blocks.insert(failure);
286
287                 if *expected {
288                     fx.bcx.ins().brz(cond, failure, &[]);
289                 } else {
290                     fx.bcx.ins().brnz(cond, failure, &[]);
291                 };
292                 fx.bcx.ins().jump(target, &[]);
293
294                 fx.bcx.switch_to_block(failure);
295                 trap_panic(
296                     fx,
297                     format!(
298                         "[panic] Assert {:?} at {:?} failed.",
299                         msg,
300                         bb_data.terminator().source_info.span
301                     ),
302                 );
303             }
304
305             TerminatorKind::SwitchInt {
306                 discr,
307                 switch_ty: _,
308                 values,
309                 targets,
310             } => {
311                 let discr = trans_operand(fx, discr).load_scalar(fx);
312                 let mut switch = ::cranelift_frontend::Switch::new();
313                 for (i, value) in values.iter().enumerate() {
314                     let block = fx.get_block(targets[i]);
315                     switch.set_entry(*value as u64, block);
316                 }
317                 let otherwise_block = fx.get_block(targets[targets.len() - 1]);
318                 switch.emit(&mut fx.bcx, discr, otherwise_block);
319             }
320             TerminatorKind::Call {
321                 func,
322                 args,
323                 destination,
324                 cleanup: _,
325                 from_hir_call: _,
326             } => {
327                 fx.tcx.sess.time("codegen call", || crate::abi::codegen_terminator_call(
328                     fx,
329                     bb_data.terminator().source_info.span,
330                     func,
331                     args,
332                     destination,
333                 ));
334             }
335             TerminatorKind::Resume | TerminatorKind::Abort => {
336                 trap_unreachable(fx, "[corruption] Unwinding bb reached.");
337             }
338             TerminatorKind::Unreachable => {
339                 trap_unreachable(fx, "[corruption] Hit unreachable code.");
340             }
341             TerminatorKind::Yield { .. }
342             | TerminatorKind::FalseEdges { .. }
343             | TerminatorKind::FalseUnwind { .. }
344             | TerminatorKind::DropAndReplace { .. }
345             | TerminatorKind::GeneratorDrop => {
346                 bug!("shouldn't exist at trans {:?}", bb_data.terminator());
347             }
348             TerminatorKind::Drop {
349                 location,
350                 target,
351                 unwind: _,
352             } => {
353                 let drop_place = trans_place(fx, location);
354                 crate::abi::codegen_drop(fx, bb_data.terminator().source_info.span, drop_place);
355
356                 let target_block = fx.get_block(*target);
357                 fx.bcx.ins().jump(target_block, &[]);
358             }
359         };
360     }
361
362     fx.bcx.seal_all_blocks();
363     fx.bcx.finalize();
364 }
365
366 fn trans_stmt<'tcx>(
367     fx: &mut FunctionCx<'_, 'tcx, impl Backend>,
368     #[allow(unused_variables)]
369     cur_block: Block,
370     stmt: &Statement<'tcx>,
371 ) {
372     let _print_guard = PrintOnPanic(|| format!("stmt {:?}", stmt));
373
374     fx.set_debug_loc(stmt.source_info);
375
376     #[cfg(false_debug_assertions)]
377     match &stmt.kind {
378         StatementKind::StorageLive(..) | StatementKind::StorageDead(..) => {} // Those are not very useful
379         _ => {
380             let inst = fx.bcx.func.layout.last_inst(cur_block).unwrap();
381             fx.add_comment(inst, format!("{:?}", stmt));
382         }
383     }
384
385     match &stmt.kind {
386         StatementKind::SetDiscriminant {
387             place,
388             variant_index,
389         } => {
390             let place = trans_place(fx, place);
391             crate::discriminant::codegen_set_discriminant(fx, place, *variant_index);
392         }
393         StatementKind::Assign(to_place_and_rval) => {
394             let lval = trans_place(fx, &to_place_and_rval.0);
395             let dest_layout = lval.layout();
396             match &to_place_and_rval.1 {
397                 Rvalue::Use(operand) => {
398                     let val = trans_operand(fx, operand);
399                     lval.write_cvalue(fx, val);
400                 }
401                 Rvalue::Ref(_, _, place) | Rvalue::AddressOf(_, place) => {
402                     let place = trans_place(fx, place);
403                     place.write_place_ref(fx, lval);
404                 }
405                 Rvalue::BinaryOp(bin_op, lhs, rhs) => {
406                     let lhs = trans_operand(fx, lhs);
407                     let rhs = trans_operand(fx, rhs);
408
409                     let res = crate::num::codegen_binop(fx, *bin_op, lhs, rhs);
410                     lval.write_cvalue(fx, res);
411                 }
412                 Rvalue::CheckedBinaryOp(bin_op, lhs, rhs) => {
413                     let lhs = trans_operand(fx, lhs);
414                     let rhs = trans_operand(fx, rhs);
415
416                     let res = if !fx.tcx.sess.overflow_checks() {
417                         let val =
418                             crate::num::trans_int_binop(fx, *bin_op, lhs, rhs).load_scalar(fx);
419                         let is_overflow = fx.bcx.ins().iconst(types::I8, 0);
420                         CValue::by_val_pair(val, is_overflow, lval.layout())
421                     } else {
422                         crate::num::trans_checked_int_binop(fx, *bin_op, lhs, rhs)
423                     };
424
425                     lval.write_cvalue(fx, res);
426                 }
427                 Rvalue::UnaryOp(un_op, operand) => {
428                     let operand = trans_operand(fx, operand);
429                     let layout = operand.layout();
430                     let val = operand.load_scalar(fx);
431                     let res = match un_op {
432                         UnOp::Not => {
433                             match layout.ty.kind {
434                                 ty::Bool => {
435                                     let res = fx.bcx.ins().icmp_imm(IntCC::Equal, val, 0);
436                                     CValue::by_val(fx.bcx.ins().bint(types::I8, res), layout)
437                                 }
438                                 ty::Uint(_) | ty::Int(_) => {
439                                     CValue::by_val(fx.bcx.ins().bnot(val), layout)
440                                 }
441                                 _ => unreachable!("un op Not for {:?}", layout.ty),
442                             }
443                         }
444                         UnOp::Neg => match layout.ty.kind {
445                             ty::Int(IntTy::I128) => {
446                                 // FIXME remove this case once ineg.i128 works
447                                 let zero = CValue::const_val(fx, layout, 0);
448                                 crate::num::trans_int_binop(fx, BinOp::Sub, zero, operand)
449                             }
450                             ty::Int(_) => {
451                                 CValue::by_val(fx.bcx.ins().ineg(val), layout)
452                             }
453                             ty::Float(_) => {
454                                 CValue::by_val(fx.bcx.ins().fneg(val), layout)
455                             }
456                             _ => unreachable!("un op Neg for {:?}", layout.ty),
457                         },
458                     };
459                     lval.write_cvalue(fx, res);
460                 }
461                 Rvalue::Cast(CastKind::Pointer(PointerCast::ReifyFnPointer), operand, to_ty) => {
462                     let from_ty = fx.monomorphize(&operand.ty(&fx.mir.local_decls, fx.tcx));
463                     let to_layout = fx.layout_of(fx.monomorphize(to_ty));
464                     match from_ty.kind {
465                         ty::FnDef(def_id, substs) => {
466                             let func_ref = fx.get_function_ref(
467                                 Instance::resolve_for_fn_ptr(fx.tcx, ParamEnv::reveal_all(), def_id, substs)
468                                     .unwrap(),
469                             );
470                             let func_addr = fx.bcx.ins().func_addr(fx.pointer_type, func_ref);
471                             lval.write_cvalue(fx, CValue::by_val(func_addr, to_layout));
472                         }
473                         _ => bug!("Trying to ReifyFnPointer on non FnDef {:?}", from_ty),
474                     }
475                 }
476                 Rvalue::Cast(CastKind::Pointer(PointerCast::UnsafeFnPointer), operand, to_ty)
477                 | Rvalue::Cast(CastKind::Pointer(PointerCast::MutToConstPointer), operand, to_ty)
478                 | Rvalue::Cast(CastKind::Pointer(PointerCast::ArrayToPointer), operand, to_ty) => {
479                     let to_layout = fx.layout_of(fx.monomorphize(to_ty));
480                     let operand = trans_operand(fx, operand);
481                     lval.write_cvalue(fx, operand.unchecked_cast_to(to_layout));
482                 }
483                 Rvalue::Cast(CastKind::Misc, operand, to_ty) => {
484                     let operand = trans_operand(fx, operand);
485                     let from_ty = operand.layout().ty;
486                     let to_ty = fx.monomorphize(to_ty);
487
488                     fn is_fat_ptr<'tcx>(
489                         fx: &FunctionCx<'_, 'tcx, impl Backend>,
490                         ty: Ty<'tcx>,
491                     ) -> bool {
492                         ty.builtin_deref(true)
493                             .map(
494                                 |ty::TypeAndMut {
495                                      ty: pointee_ty,
496                                      mutbl: _,
497                                  }| has_ptr_meta(fx.tcx, pointee_ty),
498                             )
499                             .unwrap_or(false)
500                     }
501
502                     if is_fat_ptr(fx, from_ty) {
503                         if is_fat_ptr(fx, to_ty) {
504                             // fat-ptr -> fat-ptr
505                             lval.write_cvalue(fx, operand.unchecked_cast_to(dest_layout));
506                         } else {
507                             // fat-ptr -> thin-ptr
508                             let (ptr, _extra) = operand.load_scalar_pair(fx);
509                             lval.write_cvalue(fx, CValue::by_val(ptr, dest_layout))
510                         }
511                     } else if let ty::Adt(adt_def, _substs) = from_ty.kind {
512                         // enum -> discriminant value
513                         assert!(adt_def.is_enum());
514                         match to_ty.kind {
515                             ty::Uint(_) | ty::Int(_) => {}
516                             _ => unreachable!("cast adt {} -> {}", from_ty, to_ty),
517                         }
518
519                         let discr = crate::discriminant::codegen_get_discriminant(
520                             fx,
521                             operand,
522                             fx.layout_of(to_ty),
523                         );
524                         lval.write_cvalue(fx, discr);
525                     } else {
526                         let to_clif_ty = fx.clif_type(to_ty).unwrap();
527                         let from = operand.load_scalar(fx);
528
529                         let res = clif_int_or_float_cast(
530                             fx,
531                             from,
532                             type_sign(from_ty),
533                             to_clif_ty,
534                             type_sign(to_ty),
535                         );
536                         lval.write_cvalue(fx, CValue::by_val(res, dest_layout));
537                     }
538                 }
539                 Rvalue::Cast(CastKind::Pointer(PointerCast::ClosureFnPointer(_)), operand, _to_ty) => {
540                     let operand = trans_operand(fx, operand);
541                     match operand.layout().ty.kind {
542                         ty::Closure(def_id, substs) => {
543                             let instance = Instance::resolve_closure(
544                                 fx.tcx,
545                                 def_id,
546                                 substs,
547                                 ty::ClosureKind::FnOnce,
548                             );
549                             let func_ref = fx.get_function_ref(instance);
550                             let func_addr = fx.bcx.ins().func_addr(fx.pointer_type, func_ref);
551                             lval.write_cvalue(fx, CValue::by_val(func_addr, lval.layout()));
552                         }
553                         _ => bug!("{} cannot be cast to a fn ptr", operand.layout().ty),
554                     }
555                 }
556                 Rvalue::Cast(CastKind::Pointer(PointerCast::Unsize), operand, _to_ty) => {
557                     let operand = trans_operand(fx, operand);
558                     operand.unsize_value(fx, lval);
559                 }
560                 Rvalue::Discriminant(place) => {
561                     let place = trans_place(fx, place);
562                     let value = place.to_cvalue(fx);
563                     let discr =
564                         crate::discriminant::codegen_get_discriminant(fx, value, dest_layout);
565                     lval.write_cvalue(fx, discr);
566                 }
567                 Rvalue::Repeat(operand, times) => {
568                     let operand = trans_operand(fx, operand);
569                     for i in 0..*times {
570                         let index = fx.bcx.ins().iconst(fx.pointer_type, i as i64);
571                         let to = lval.place_index(fx, index);
572                         to.write_cvalue(fx, operand);
573                     }
574                 }
575                 Rvalue::Len(place) => {
576                     let place = trans_place(fx, place);
577                     let usize_layout = fx.layout_of(fx.tcx.types.usize);
578                     let len = codegen_array_len(fx, place);
579                     lval.write_cvalue(fx, CValue::by_val(len, usize_layout));
580                 }
581                 Rvalue::NullaryOp(NullOp::Box, content_ty) => {
582                     use rustc::middle::lang_items::ExchangeMallocFnLangItem;
583
584                     let usize_type = fx.clif_type(fx.tcx.types.usize).unwrap();
585                     let content_ty = fx.monomorphize(content_ty);
586                     let layout = fx.layout_of(content_ty);
587                     let llsize = fx.bcx.ins().iconst(usize_type, layout.size.bytes() as i64);
588                     let llalign = fx
589                         .bcx
590                         .ins()
591                         .iconst(usize_type, layout.align.abi.bytes() as i64);
592                     let box_layout = fx.layout_of(fx.tcx.mk_box(content_ty));
593
594                     // Allocate space:
595                     let def_id = match fx.tcx.lang_items().require(ExchangeMallocFnLangItem) {
596                         Ok(id) => id,
597                         Err(s) => {
598                             fx.tcx
599                                 .sess
600                                 .fatal(&format!("allocation of `{}` {}", box_layout.ty, s));
601                         }
602                     };
603                     let instance = ty::Instance::mono(fx.tcx, def_id);
604                     let func_ref = fx.get_function_ref(instance);
605                     let call = fx.bcx.ins().call(func_ref, &[llsize, llalign]);
606                     let ptr = fx.bcx.inst_results(call)[0];
607                     lval.write_cvalue(fx, CValue::by_val(ptr, box_layout));
608                 }
609                 Rvalue::NullaryOp(NullOp::SizeOf, ty) => {
610                     assert!(lval
611                         .layout()
612                         .ty
613                         .is_sized(fx.tcx.at(stmt.source_info.span), ParamEnv::reveal_all()));
614                     let ty_size = fx.layout_of(fx.monomorphize(ty)).size.bytes();
615                     let val = CValue::const_val(fx, fx.layout_of(fx.tcx.types.usize), ty_size.into());
616                     lval.write_cvalue(fx, val);
617                 }
618                 Rvalue::Aggregate(kind, operands) => match **kind {
619                     AggregateKind::Array(_ty) => {
620                         for (i, operand) in operands.into_iter().enumerate() {
621                             let operand = trans_operand(fx, operand);
622                             let index = fx.bcx.ins().iconst(fx.pointer_type, i as i64);
623                             let to = lval.place_index(fx, index);
624                             to.write_cvalue(fx, operand);
625                         }
626                     }
627                     _ => unreachable!("shouldn't exist at trans {:?}", to_place_and_rval.1),
628                 },
629             }
630         }
631         StatementKind::StorageLive(_)
632         | StatementKind::StorageDead(_)
633         | StatementKind::Nop
634         | StatementKind::FakeRead(..)
635         | StatementKind::Retag { .. }
636         | StatementKind::AscribeUserType(..) => {}
637
638         StatementKind::InlineAsm(asm) => {
639             use rustc_ast::ast::Name;
640             let InlineAsm {
641                 asm,
642                 outputs: _,
643                 inputs: _,
644             } = &**asm;
645             let rustc_hir::InlineAsmInner {
646                 asm: asm_code, // Name
647                 outputs,       // Vec<Name>
648                 inputs,        // Vec<Name>
649                 clobbers,      // Vec<Name>
650                 volatile,      // bool
651                 alignstack,    // bool
652                 dialect: _,    // rustc_ast::ast::AsmDialect
653                 asm_str_style: _,
654             } = asm;
655             match &*asm_code.as_str() {
656                 "" => {
657                     assert_eq!(inputs, &[Name::intern("r")]);
658                     assert!(outputs.is_empty(), "{:?}", outputs);
659
660                     // Black box
661                 }
662                 "cpuid" | "cpuid\n" => {
663                     assert_eq!(inputs, &[Name::intern("{eax}"), Name::intern("{ecx}")]);
664
665                     assert_eq!(outputs.len(), 4);
666                     for (i, c) in (&["={eax}", "={ebx}", "={ecx}", "={edx}"])
667                         .iter()
668                         .enumerate()
669                     {
670                         assert_eq!(&outputs[i].constraint.as_str(), c);
671                         assert!(!outputs[i].is_rw);
672                         assert!(!outputs[i].is_indirect);
673                     }
674
675                     assert_eq!(clobbers, &[Name::intern("rbx")]);
676
677                     assert!(!volatile);
678                     assert!(!alignstack);
679
680                     crate::trap::trap_unimplemented(
681                         fx,
682                         "__cpuid_count arch intrinsic is not supported",
683                     );
684                 }
685                 "xgetbv" => {
686                     assert_eq!(inputs, &[Name::intern("{ecx}")]);
687
688                     assert_eq!(outputs.len(), 2);
689                     for (i, c) in (&["={eax}", "={edx}"]).iter().enumerate() {
690                         assert_eq!(&outputs[i].constraint.as_str(), c);
691                         assert!(!outputs[i].is_rw);
692                         assert!(!outputs[i].is_indirect);
693                     }
694
695                     assert_eq!(clobbers, &[]);
696
697                     assert!(!volatile);
698                     assert!(!alignstack);
699
700                     crate::trap::trap_unimplemented(fx, "_xgetbv arch intrinsic is not supported");
701                 }
702                 _ => unimpl_fatal!(fx.tcx, stmt.source_info.span, "Inline assembly is not supported"),
703             }
704         }
705     }
706 }
707
708 fn codegen_array_len<'tcx>(
709     fx: &mut FunctionCx<'_, 'tcx, impl Backend>,
710     place: CPlace<'tcx>,
711 ) -> Value {
712     match place.layout().ty.kind {
713         ty::Array(_elem_ty, len) => {
714             let len = fx.monomorphize(&len)
715                 .eval(fx.tcx, ParamEnv::reveal_all())
716                 .eval_usize(fx.tcx, ParamEnv::reveal_all()) as i64;
717             fx.bcx.ins().iconst(fx.pointer_type, len)
718         }
719         ty::Slice(_elem_ty) => place
720             .to_ptr_maybe_unsized(fx)
721             .1
722             .expect("Length metadata for slice place"),
723         _ => bug!("Rvalue::Len({:?})", place),
724     }
725 }
726
727 pub fn trans_place<'tcx>(
728     fx: &mut FunctionCx<'_, 'tcx, impl Backend>,
729     place: &Place<'tcx>,
730 ) -> CPlace<'tcx> {
731     let mut cplace = fx.get_local_place(place.local);
732
733     for elem in &*place.projection {
734         match *elem {
735             PlaceElem::Deref => {
736                 cplace = cplace.place_deref(fx);
737             }
738             PlaceElem::Field(field, _ty) => {
739                 cplace = cplace.place_field(fx, field);
740             }
741             PlaceElem::Index(local) => {
742                 let index = fx.get_local_place(local).to_cvalue(fx).load_scalar(fx);
743                 cplace = cplace.place_index(fx, index);
744             }
745             PlaceElem::ConstantIndex {
746                 offset,
747                 min_length: _,
748                 from_end,
749             } => {
750                 let index = if !from_end {
751                     fx.bcx.ins().iconst(fx.pointer_type, offset as i64)
752                 } else {
753                     let len = codegen_array_len(fx, cplace);
754                     fx.bcx.ins().iadd_imm(len, -(offset as i64))
755                 };
756                 cplace = cplace.place_index(fx, index);
757             }
758             PlaceElem::Subslice { from, to, from_end } => {
759                 // These indices are generated by slice patterns.
760                 // slice[from:-to] in Python terms.
761
762                 match cplace.layout().ty.kind {
763                     ty::Array(elem_ty, _len) => {
764                         assert!(!from_end, "array subslices are never `from_end`");
765                         let elem_layout = fx.layout_of(elem_ty);
766                         let ptr = cplace.to_ptr(fx);
767                         cplace = CPlace::for_ptr(
768                             ptr.offset_i64(fx, elem_layout.size.bytes() as i64 * from as i64),
769                             fx.layout_of(fx.tcx.mk_array(elem_ty, to as u64 - from as u64)),
770                         );
771                     }
772                     ty::Slice(elem_ty) => {
773                         assert!(from_end, "slice subslices should be `from_end`");
774                         let elem_layout = fx.layout_of(elem_ty);
775                         let (ptr, len) = cplace.to_ptr_maybe_unsized(fx);
776                         let len = len.unwrap();
777                         cplace = CPlace::for_ptr_with_extra(
778                             ptr.offset_i64(fx, elem_layout.size.bytes() as i64 * from as i64),
779                             fx.bcx.ins().iadd_imm(len, -(from as i64 + to as i64)),
780                             cplace.layout(),
781                         );
782                     }
783                     _ => unreachable!(),
784                 }
785             }
786             PlaceElem::Downcast(_adt_def, variant) => {
787                 cplace = cplace.downcast_variant(fx, variant);
788             }
789         }
790     }
791
792     cplace
793 }
794
795 pub fn trans_operand<'tcx>(
796     fx: &mut FunctionCx<'_, 'tcx, impl Backend>,
797     operand: &Operand<'tcx>,
798 ) -> CValue<'tcx> {
799     match operand {
800         Operand::Move(place) | Operand::Copy(place) => {
801             let cplace = trans_place(fx, place);
802             cplace.to_cvalue(fx)
803         }
804         Operand::Constant(const_) => crate::constant::trans_constant(fx, const_),
805     }
806 }